
    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_fc86535d58721878d8d01269.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_36dcc330fc805621c5b9dc60.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_a82b607b7406be4fcc884bce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_c60d09fefec3737f09360216.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_5a9474a42be1d61c2eb24c4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_a723e3e65844aba20522c106.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_c8fa4726668fc1972eaabd91.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_634c51e0c49cb4ab801a3067.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.012000;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_60d6889a152a03e6ef1cb5f5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bb1d57b1f6a589869275b36f.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_4dd59e9eed517eddd4eada74.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.971191;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_e921060a67e279dc3f9a0f36.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fc86535d58721878d8d01269.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.948000;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_3dc82d1e0e3ad84112ccfafe.woff2')format("woff");}.fff{font-family:fff;line-height:0.936000;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_d606b1728e52f11a9fbce954.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.041000;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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;}
.ls39{letter-spacing:-1.800000px;}
.ls35{letter-spacing:-0.864000px;}
.ls27{letter-spacing:-0.720000px;}
.ls3d{letter-spacing:-0.648000px;}
.ls31{letter-spacing:-0.612000px;}
.ls38{letter-spacing:-0.596400px;}
.ls32{letter-spacing:-0.588000px;}
.ls2{letter-spacing:-0.576000px;}
.ls29{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.480000px;}
.lsf{letter-spacing:-0.478800px;}
.ls10{letter-spacing:-0.456000px;}
.ls2d{letter-spacing:-0.432000px;}
.ls33{letter-spacing:-0.417600px;}
.ls1a{letter-spacing:-0.374400px;}
.ls28{letter-spacing:-0.360000px;}
.ls24{letter-spacing:-0.309600px;}
.ls18{letter-spacing:-0.302400px;}
.ls17{letter-spacing:-0.288000px;}
.ls19{letter-spacing:-0.093600px;}
.ls23{letter-spacing:-0.060000px;}
.ls15{letter-spacing:-0.050400px;}
.lse{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.014400px;}
.ls1b{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.102000px;}
.ls9{letter-spacing:0.138000px;}
.ls30{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.228000px;}
.ls8{letter-spacing:0.258000px;}
.ls36{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.374400px;}
.ls6{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.417600px;}
.ls3c{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.450000px;}
.lsc{letter-spacing:0.468000px;}
.ls20{letter-spacing:0.480000px;}
.ls2e{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.546000px;}
.ls37{letter-spacing:0.576000px;}
.ls34{letter-spacing:0.633600px;}
.ls1{letter-spacing:0.636000px;}
.ls2b{letter-spacing:0.648000px;}
.ls5{letter-spacing:0.684000px;}
.ls2f{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.734400px;}
.ls3a{letter-spacing:0.756000px;}
.ls3b{letter-spacing:0.814800px;}
.lsa{letter-spacing:0.828000px;}
.ls25{letter-spacing:0.864000px;}
.ls3e{letter-spacing:1.130400px;}
.ls1c{letter-spacing:1.368000px;}
.ls21{letter-spacing:7.404000px;}
.ls1e{letter-spacing:53.820000px;}
.ls1f{letter-spacing:55.320000px;}
.ls1d{letter-spacing:62.820000px;}
.ls12{letter-spacing:64.320000px;}
.lsd{letter-spacing:843.450000px;}
.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;}
}
.wsc{word-spacing:-60.000000px;}
.wsb{word-spacing:-35.700000px;}
.ws22{word-spacing:-35.640000px;}
.wsa{word-spacing:-35.160000px;}
.ws9{word-spacing:-34.680000px;}
.ws1b{word-spacing:-30.048000px;}
.ws26{word-spacing:-27.106800px;}
.ws25{word-spacing:-27.048000px;}
.ws1c{word-spacing:-25.704000px;}
.ws23{word-spacing:-25.695600px;}
.ws28{word-spacing:-23.666400px;}
.ws14{word-spacing:-23.400000px;}
.ws4{word-spacing:-23.220000px;}
.ws21{word-spacing:-23.184000px;}
.ws27{word-spacing:-22.968000px;}
.wse{word-spacing:-22.752000px;}
.ws29{word-spacing:-22.680000px;}
.ws7{word-spacing:-22.536000px;}
.ws11{word-spacing:-22.442400px;}
.wsf{word-spacing:-22.248000px;}
.ws10{word-spacing:-22.233600px;}
.ws13{word-spacing:-22.226400px;}
.ws15{word-spacing:-22.176000px;}
.ws12{word-spacing:-22.161600px;}
.ws1d{word-spacing:-22.118400px;}
.ws18{word-spacing:-21.830400px;}
.ws17{word-spacing:-21.744000px;}
.ws1f{word-spacing:-21.729600px;}
.ws2{word-spacing:-21.513600px;}
.ws19{word-spacing:-21.470400px;}
.ws20{word-spacing:-21.384000px;}
.ws16{word-spacing:-21.312000px;}
.wsd{word-spacing:-21.096000px;}
.ws3{word-spacing:-21.060000px;}
.ws24{word-spacing:-20.736000px;}
.ws1a{word-spacing:-20.664000px;}
.ws1{word-spacing:-20.520000px;}
.ws1e{word-spacing:-20.232000px;}
.ws8{word-spacing:-18.069000px;}
.ws5{word-spacing:-17.841000px;}
.ws6{word-spacing:-17.362200px;}
.ws0{word-spacing:0.000000px;}
._a{margin-left:-21.540000px;}
._b{margin-left:-18.467107px;}
._6{margin-left:-15.649517px;}
._9{margin-left:-14.363208px;}
._8{margin-left:-13.295208px;}
._c{margin-left:-10.360416px;}
._7{margin-left:-7.296000px;}
._3{margin-left:-6.079631px;}
._4{margin-left:-4.327624px;}
._0{margin-left:-3.141626px;}
._1{margin-left:-1.653101px;}
._2{width:1.652309px;}
._d{width:2.975477px;}
._e{width:4.925594px;}
._11{width:6.525101px;}
._14{width:7.749101px;}
._16{width:8.920013px;}
._f{width:10.641691px;}
._10{width:11.728231px;}
._15{width:12.862099px;}
._12{width:14.137901px;}
._13{width:15.441101px;}
._1f{width:18.849947px;}
._18{width:19.909179px;}
._17{width:21.357101px;}
._19{width:25.461101px;}
._21{width:28.224000px;}
._22{width:29.342174px;}
._1b{width:30.667517px;}
._1a{width:31.968792px;}
._20{width:33.258994px;}
._1e{width:34.272000px;}
._1d{width:35.858194px;}
._1c{width:37.704000px;}
._5{width:841.914000px;}
.fc6{color:transparent;}
.fc5{color:rgb(236,28,36);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(234,32,44);}
.fc8{color:rgb(208,8,19);}
.fc7{color:rgb(227,6,19);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(234,33,45);}
.fc0{color:rgb(97,105,122);}
.fs6{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fsb{font-size:75.893905px;}
.fs0{font-size:82.649894px;}
.fs7{font-size:84.000000px;}
.fs2{font-size:84.001651px;}
.fsc{font-size:84.856973px;}
.fsa{font-size:96.000000px;}
.fs8{font-size:120.000000px;}
.fs1{font-size:132.034750px;}
.fs5{font-size:156.000000px;}
.fs4{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y3c{bottom:5.250000px;}
.y27{bottom:12.375000px;}
.y29{bottom:12.750000px;}
.y3d{bottom:20.250000px;}
.y28{bottom:30.375000px;}
.y3b{bottom:31.125000px;}
.y26{bottom:43.125000px;}
.y2{bottom:94.779831px;}
.y101{bottom:95.145096px;}
.y82{bottom:103.912500px;}
.y100{bottom:124.406122px;}
.y81{bottom:125.662500px;}
.y9a{bottom:135.787500px;}
.y5d{bottom:143.662500px;}
.yff{bottom:153.667147px;}
.y80{bottom:156.420000px;}
.y99{bottom:157.545000px;}
.y24{bottom:163.920000px;}
.y5c{bottom:165.405000px;}
.y7f{bottom:178.200000px;}
.yfe{bottom:182.928172px;}
.y5b{bottom:187.200000px;}
.y98{bottom:189.450000px;}
.ybf{bottom:190.200000px;}
.y23{bottom:194.700000px;}
.y6{bottom:196.019947px;}
.y7e{bottom:199.950000px;}
.yf7{bottom:202.950000px;}
.y5a{bottom:208.950000px;}
.ybe{bottom:211.950000px;}
.yf6{bottom:224.700000px;}
.y5{bottom:225.280972px;}
.y22{bottom:225.450000px;}
.y7d{bottom:230.325000px;}
.y59{bottom:230.700000px;}
.ybd{bottom:233.700000px;}
.y97{bottom:244.200000px;}
.yf5{bottom:251.700000px;}
.y58{bottom:252.450000px;}
.ybc{bottom:255.450000px;}
.y21{bottom:256.200000px;}
.y7c{bottom:261.075000px;}
.y4{bottom:261.938710px;}
.y96{bottom:265.950000px;}
.yd8{bottom:272.700000px;}
.y57{bottom:274.200000px;}
.ybb{bottom:277.200000px;}
.y20{bottom:286.950000px;}
.y7b{bottom:287.325000px;}
.yf4{bottom:294.450000px;}
.y56{bottom:295.950000px;}
.y95{bottom:296.700000px;}
.yba{bottom:298.950000px;}
.y3{bottom:299.077704px;}
.yd7{bottom:303.120000px;}
.y7a{bottom:313.620000px;}
.yf3{bottom:316.245000px;}
.y1f{bottom:317.730000px;}
.y94{bottom:318.495000px;}
.yb9{bottom:320.730000px;}
.yd6{bottom:333.870000px;}
.y55{bottom:339.495000px;}
.y79{bottom:339.870000px;}
.y93{bottom:340.245000px;}
.yb8{bottom:342.495000px;}
.yf2{bottom:342.870000px;}
.y1e{bottom:348.480000px;}
.yd5{bottom:355.620000px;}
.y92{bottom:361.980000px;}
.yb7{bottom:364.245000px;}
.y78{bottom:366.120000px;}
.y54{bottom:369.870000px;}
.y1d{bottom:379.245000px;}
.y91{bottom:383.745000px;}
.yf1{bottom:385.605000px;}
.yb6{bottom:385.995000px;}
.yd4{bottom:386.370000px;}
.y77{bottom:392.355000px;}
.y53{bottom:400.620000px;}
.y90{bottom:405.495000px;}
.yf0{bottom:407.370000px;}
.yb5{bottom:407.745000px;}
.yd3{bottom:408.120000px;}
.y1c{bottom:409.995000px;}
.y76{bottom:418.620000px;}
.y52{bottom:422.370000px;}
.y8f{bottom:427.245000px;}
.yef{bottom:429.120000px;}
.yb4{bottom:429.495000px;}
.y1b{bottom:440.775000px;}
.y75{bottom:444.900000px;}
.y8e{bottom:448.650000px;}
.yd2{bottom:450.525000px;}
.yee{bottom:450.900000px;}
.yb3{bottom:456.150000px;}
.y51{bottom:464.775000px;}
.y74{bottom:471.150000px;}
.y1a{bottom:471.525000px;}
.yed{bottom:472.650000px;}
.y8d{bottom:480.900000px;}
.yec{bottom:494.400000px;}
.y73{bottom:497.400000px;}
.yb2{bottom:498.900000px;}
.y19{bottom:516.150000px;}
.yb1{bottom:520.650000px;}
.y72{bottom:528.150000px;}
.yd1{bottom:529.275000px;}
.y8c{bottom:531.900000px;}
.yeb{bottom:537.900000px;}
.yb0{bottom:542.400000px;}
.y50{bottom:543.525000px;}
.y71{bottom:549.900000px;}
.yd0{bottom:551.025000px;}
.yea{bottom:559.650000px;}
.yaf{bottom:564.195000px;}
.y18{bottom:566.820000px;}
.ycf{bottom:572.820000px;}
.y4f{bottom:574.320000px;}
.y70{bottom:580.695000px;}
.ye9{bottom:581.445000px;}
.yae{bottom:585.945000px;}
.y4e{bottom:596.070000px;}
.ye8{bottom:603.195000px;}
.yce{bottom:603.570000px;}
.yad{bottom:607.695000px;}
.y6f{bottom:611.445000px;}
.y3a{bottom:613.695000px;}
.y17{bottom:617.445000px;}
.y4d{bottom:617.820000px;}
.ye7{bottom:624.945000px;}
.yfd{bottom:625.262556px;}
.yac{bottom:629.445000px;}
.ycd{bottom:633.945000px;}
.y4c{bottom:639.570000px;}
.y6e{bottom:642.195000px;}
.y39{bottom:646.695000px;}
.yab{bottom:651.195000px;}
.ycc{bottom:655.695000px;}
.y4b{bottom:661.320000px;}
.ye6{bottom:668.445000px;}
.y6d{bottom:672.570000px;}
.yaa{bottom:672.945000px;}
.y38{bottom:677.445000px;}
.y4a{bottom:682.695000px;}
.ye5{bottom:689.850000px;}
.y6c{bottom:694.350000px;}
.y16{bottom:708.225000px;}
.y49{bottom:713.475000px;}
.ye4{bottom:716.850000px;}
.ycb{bottom:719.850000px;}
.ya9{bottom:721.350000px;}
.y6b{bottom:726.600000px;}
.y15{bottom:738.975000px;}
.ye3{bottom:742.350000px;}
.y48{bottom:755.850000px;}
.y37{bottom:760.725000px;}
.ya8{bottom:764.100000px;}
.y14{bottom:769.725000px;}
.y6a{bottom:781.350000px;}
.y36{bottom:782.475000px;}
.ye2{bottom:785.100000px;}
.ya7{bottom:794.850000px;}
.yca{bottom:798.600000px;}
.y13{bottom:800.475000px;}
.y69{bottom:803.100000px;}
.y35{bottom:804.225000px;}
.ye1{bottom:806.850000px;}
.ya6{bottom:816.600000px;}
.y8b{bottom:823.380000px;}
.y68{bottom:824.880000px;}
.y34{bottom:826.005000px;}
.ye0{bottom:828.255000px;}
.yc9{bottom:829.380000px;}
.y12{bottom:831.255000px;}
.y47{bottom:834.630000px;}
.y33{bottom:847.755000px;}
.ya5{bottom:848.505000px;}
.y67{bottom:855.255000px;}
.y46{bottom:856.395000px;}
.yc8{bottom:860.130000px;}
.y11{bottom:862.005000px;}
.y32{bottom:869.505000px;}
.y66{bottom:877.005000px;}
.y8a{bottom:880.755000px;}
.y45{bottom:887.130000px;}
.yc7{bottom:890.880000px;}
.y10{bottom:892.755000px;}
.ydf{bottom:898.005000px;}
.y31{bottom:899.880000px;}
.ya4{bottom:903.255000px;}
.y65{bottom:907.755000px;}
.y44{bottom:908.880000px;}
.yc6{bottom:921.630000px;}
.yf{bottom:923.505000px;}
.ya3{bottom:925.005000px;}
.y30{bottom:930.630000px;}
.y64{bottom:938.505000px;}
.yc5{bottom:943.380000px;}
.y2f{bottom:952.425000px;}
.ye{bottom:954.300000px;}
.ya2{bottom:955.800000px;}
.y89{bottom:959.550000px;}
.y63{bottom:960.300000px;}
.yde{bottom:967.425000px;}
.yc4{bottom:973.800000px;}
.y43{bottom:974.175000px;}
.ya1{bottom:977.550000px;}
.y88{bottom:981.300000px;}
.y62{bottom:982.050000px;}
.y2e{bottom:983.175000px;}
.yd{bottom:985.050000px;}
.ydd{bottom:989.175000px;}
.y42{bottom:995.550000px;}
.ya0{bottom:999.300000px;}
.ydc{bottom:1010.925000px;}
.y87{bottom:1012.050000px;}
.y61{bottom:1012.800000px;}
.y2d{bottom:1013.925000px;}
.yc{bottom:1015.800000px;}
.yc3{bottom:1017.300000px;}
.yfc{bottom:1022.550000px;}
.y41{bottom:1026.300000px;}
.y9f{bottom:1030.050000px;}
.ydb{bottom:1032.675000px;}
.y86{bottom:1033.800000px;}
.y60{bottom:1034.550000px;}
.y2c{bottom:1044.675000px;}
.yb{bottom:1046.550000px;}
.y40{bottom:1048.050000px;}
.y9e{bottom:1051.800000px;}
.yda{bottom:1054.425000px;}
.y85{bottom:1055.550000px;}
.yfb{bottom:1065.300000px;}
.y5f{bottom:1066.425000px;}
.y9d{bottom:1073.550000px;}
.y2b{bottom:1075.455000px;}
.ya{bottom:1077.330000px;}
.yc2{bottom:1078.830000px;}
.yd9{bottom:1081.455000px;}
.y84{bottom:1086.330000px;}
.yfa{bottom:1087.080000px;}
.y3f{bottom:1090.455000px;}
.y9c{bottom:1095.330000px;}
.yc1{bottom:1100.580000px;}
.y9{bottom:1107.705000px;}
.yf9{bottom:1108.830000px;}
.y83{bottom:1116.705000px;}
.y9b{bottom:1117.080000px;}
.y2a{bottom:1117.455000px;}
.y5e{bottom:1126.455000px;}
.y3e{bottom:1126.830000px;}
.yc0{bottom:1132.455000px;}
.yf8{bottom:1135.455000px;}
.y8{bottom:1138.455000px;}
.y25{bottom:1169.580000px;}
.y7{bottom:1200.330000px;}
.h9{height:30.787500px;}
.h7{height:55.054688px;}
.hc{height:55.986328px;}
.hf{height:58.032156px;}
.h3{height:61.326222px;}
.h5{height:62.749233px;}
.h11{height:62.963874px;}
.h10{height:64.230469px;}
.hb{height:71.148000px;}
.h12{height:71.449572px;}
.he{height:73.406250px;}
.hd{height:91.757812px;}
.h4{height:106.155939px;}
.ha{height:119.285156px;}
.h8{height:128.460938px;}
.h6{height:1263.000000px;}
.h2{height:1263.374979px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w3{width:9.750000px;}
.w2{width:892.499987px;}
.w1{width:892.500000px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:66.625965px;}
.x2{left:70.386720px;}
.x4{left:106.537487px;}
.x8{left:124.537487px;}
.xb{left:133.574987px;}
.x9{left:142.574987px;}
.xc{left:160.574987px;}
.xd{left:187.949987px;}
.xa{left:248.369987px;}
.x3{left:255.119987px;}
.x10{left:260.225550px;}
.x11{left:304.308444px;}
.x12{left:316.635355px;}
.x14{left:333.903580px;}
.x13{left:340.849551px;}
.x7{left:441.570000px;}
.x5{left:557.099987px;}
.xe{left:574.724987px;}
.xf{left:580.379987px;}
.x6{left:786.719987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls39{letter-spacing:-1.600000pt;}
.ls35{letter-spacing:-0.768000pt;}
.ls27{letter-spacing:-0.640000pt;}
.ls3d{letter-spacing:-0.576000pt;}
.ls31{letter-spacing:-0.544000pt;}
.ls38{letter-spacing:-0.530133pt;}
.ls32{letter-spacing:-0.522667pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls29{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.426667pt;}
.lsf{letter-spacing:-0.425600pt;}
.ls10{letter-spacing:-0.405333pt;}
.ls2d{letter-spacing:-0.384000pt;}
.ls33{letter-spacing:-0.371200pt;}
.ls1a{letter-spacing:-0.332800pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls24{letter-spacing:-0.275200pt;}
.ls18{letter-spacing:-0.268800pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls19{letter-spacing:-0.083200pt;}
.ls23{letter-spacing:-0.053333pt;}
.ls15{letter-spacing:-0.044800pt;}
.lse{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.012800pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.090667pt;}
.ls9{letter-spacing:0.122667pt;}
.ls30{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.202667pt;}
.ls8{letter-spacing:0.229333pt;}
.ls36{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.332800pt;}
.ls6{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.371200pt;}
.ls3c{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.400000pt;}
.lsc{letter-spacing:0.416000pt;}
.ls20{letter-spacing:0.426667pt;}
.ls2e{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.485333pt;}
.ls37{letter-spacing:0.512000pt;}
.ls34{letter-spacing:0.563200pt;}
.ls1{letter-spacing:0.565333pt;}
.ls2b{letter-spacing:0.576000pt;}
.ls5{letter-spacing:0.608000pt;}
.ls2f{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.652800pt;}
.ls3a{letter-spacing:0.672000pt;}
.ls3b{letter-spacing:0.724267pt;}
.lsa{letter-spacing:0.736000pt;}
.ls25{letter-spacing:0.768000pt;}
.ls3e{letter-spacing:1.004800pt;}
.ls1c{letter-spacing:1.216000pt;}
.ls21{letter-spacing:6.581333pt;}
.ls1e{letter-spacing:47.840000pt;}
.ls1f{letter-spacing:49.173333pt;}
.ls1d{letter-spacing:55.840000pt;}
.ls12{letter-spacing:57.173333pt;}
.lsd{letter-spacing:749.733333pt;}
.wsc{word-spacing:-53.333333pt;}
.wsb{word-spacing:-31.733333pt;}
.ws22{word-spacing:-31.680000pt;}
.wsa{word-spacing:-31.253333pt;}
.ws9{word-spacing:-30.826667pt;}
.ws1b{word-spacing:-26.709333pt;}
.ws26{word-spacing:-24.094933pt;}
.ws25{word-spacing:-24.042667pt;}
.ws1c{word-spacing:-22.848000pt;}
.ws23{word-spacing:-22.840533pt;}
.ws28{word-spacing:-21.036800pt;}
.ws14{word-spacing:-20.800000pt;}
.ws4{word-spacing:-20.640000pt;}
.ws21{word-spacing:-20.608000pt;}
.ws27{word-spacing:-20.416000pt;}
.wse{word-spacing:-20.224000pt;}
.ws29{word-spacing:-20.160000pt;}
.ws7{word-spacing:-20.032000pt;}
.ws11{word-spacing:-19.948800pt;}
.wsf{word-spacing:-19.776000pt;}
.ws10{word-spacing:-19.763200pt;}
.ws13{word-spacing:-19.756800pt;}
.ws15{word-spacing:-19.712000pt;}
.ws12{word-spacing:-19.699200pt;}
.ws1d{word-spacing:-19.660800pt;}
.ws18{word-spacing:-19.404800pt;}
.ws17{word-spacing:-19.328000pt;}
.ws1f{word-spacing:-19.315200pt;}
.ws2{word-spacing:-19.123200pt;}
.ws19{word-spacing:-19.084800pt;}
.ws20{word-spacing:-19.008000pt;}
.ws16{word-spacing:-18.944000pt;}
.wsd{word-spacing:-18.752000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws24{word-spacing:-18.432000pt;}
.ws1a{word-spacing:-18.368000pt;}
.ws1{word-spacing:-18.240000pt;}
.ws1e{word-spacing:-17.984000pt;}
.ws8{word-spacing:-16.061333pt;}
.ws5{word-spacing:-15.858667pt;}
.ws6{word-spacing:-15.433067pt;}
.ws0{word-spacing:0.000000pt;}
._a{margin-left:-19.146667pt;}
._b{margin-left:-16.415206pt;}
._6{margin-left:-13.910682pt;}
._9{margin-left:-12.767296pt;}
._8{margin-left:-11.817963pt;}
._c{margin-left:-9.209259pt;}
._7{margin-left:-6.485333pt;}
._3{margin-left:-5.404116pt;}
._4{margin-left:-3.846777pt;}
._0{margin-left:-2.792556pt;}
._1{margin-left:-1.469423pt;}
._2{width:1.468719pt;}
._d{width:2.644869pt;}
._e{width:4.378306pt;}
._11{width:5.800090pt;}
._14{width:6.888090pt;}
._16{width:7.928900pt;}
._f{width:9.459281pt;}
._10{width:10.425094pt;}
._15{width:11.432977pt;}
._12{width:12.567023pt;}
._13{width:13.725423pt;}
._1f{width:16.755509pt;}
._18{width:17.697048pt;}
._17{width:18.984090pt;}
._19{width:22.632090pt;}
._21{width:25.088000pt;}
._22{width:26.081932pt;}
._1b{width:27.260015pt;}
._1a{width:28.416704pt;}
._20{width:29.563551pt;}
._1e{width:30.464000pt;}
._1d{width:31.873951pt;}
._1c{width:33.514667pt;}
._5{width:748.368000pt;}
.fs6{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fsb{font-size:67.461249pt;}
.fs0{font-size:73.466573pt;}
.fs7{font-size:74.666667pt;}
.fs2{font-size:74.668134pt;}
.fsc{font-size:75.428421pt;}
.fsa{font-size:85.333333pt;}
.fs8{font-size:106.666667pt;}
.fs1{font-size:117.364222pt;}
.fs5{font-size:138.666667pt;}
.fs4{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y3c{bottom:4.666667pt;}
.y27{bottom:11.000000pt;}
.y29{bottom:11.333333pt;}
.y3d{bottom:18.000000pt;}
.y28{bottom:27.000000pt;}
.y3b{bottom:27.666667pt;}
.y26{bottom:38.333333pt;}
.y2{bottom:84.248738pt;}
.y101{bottom:84.573419pt;}
.y82{bottom:92.366667pt;}
.y100{bottom:110.583219pt;}
.y81{bottom:111.700000pt;}
.y9a{bottom:120.700000pt;}
.y5d{bottom:127.700000pt;}
.yff{bottom:136.593020pt;}
.y80{bottom:139.040000pt;}
.y99{bottom:140.040000pt;}
.y24{bottom:145.706667pt;}
.y5c{bottom:147.026667pt;}
.y7f{bottom:158.400000pt;}
.yfe{bottom:162.602820pt;}
.y5b{bottom:166.400000pt;}
.y98{bottom:168.400000pt;}
.ybf{bottom:169.066667pt;}
.y23{bottom:173.066667pt;}
.y6{bottom:174.239953pt;}
.y7e{bottom:177.733333pt;}
.yf7{bottom:180.400000pt;}
.y5a{bottom:185.733333pt;}
.ybe{bottom:188.400000pt;}
.yf6{bottom:199.733333pt;}
.y5{bottom:200.249753pt;}
.y22{bottom:200.400000pt;}
.y7d{bottom:204.733333pt;}
.y59{bottom:205.066667pt;}
.ybd{bottom:207.733333pt;}
.y97{bottom:217.066667pt;}
.yf5{bottom:223.733333pt;}
.y58{bottom:224.400000pt;}
.ybc{bottom:227.066667pt;}
.y21{bottom:227.733333pt;}
.y7c{bottom:232.066667pt;}
.y4{bottom:232.834409pt;}
.y96{bottom:236.400000pt;}
.yd8{bottom:242.400000pt;}
.y57{bottom:243.733333pt;}
.ybb{bottom:246.400000pt;}
.y20{bottom:255.066667pt;}
.y7b{bottom:255.400000pt;}
.yf4{bottom:261.733333pt;}
.y56{bottom:263.066667pt;}
.y95{bottom:263.733333pt;}
.yba{bottom:265.733333pt;}
.y3{bottom:265.846848pt;}
.yd7{bottom:269.440000pt;}
.y7a{bottom:278.773333pt;}
.yf3{bottom:281.106667pt;}
.y1f{bottom:282.426667pt;}
.y94{bottom:283.106667pt;}
.yb9{bottom:285.093333pt;}
.yd6{bottom:296.773333pt;}
.y55{bottom:301.773333pt;}
.y79{bottom:302.106667pt;}
.y93{bottom:302.440000pt;}
.yb8{bottom:304.440000pt;}
.yf2{bottom:304.773333pt;}
.y1e{bottom:309.760000pt;}
.yd5{bottom:316.106667pt;}
.y92{bottom:321.760000pt;}
.yb7{bottom:323.773333pt;}
.y78{bottom:325.440000pt;}
.y54{bottom:328.773333pt;}
.y1d{bottom:337.106667pt;}
.y91{bottom:341.106667pt;}
.yf1{bottom:342.760000pt;}
.yb6{bottom:343.106667pt;}
.yd4{bottom:343.440000pt;}
.y77{bottom:348.760000pt;}
.y53{bottom:356.106667pt;}
.y90{bottom:360.440000pt;}
.yf0{bottom:362.106667pt;}
.yb5{bottom:362.440000pt;}
.yd3{bottom:362.773333pt;}
.y1c{bottom:364.440000pt;}
.y76{bottom:372.106667pt;}
.y52{bottom:375.440000pt;}
.y8f{bottom:379.773333pt;}
.yef{bottom:381.440000pt;}
.yb4{bottom:381.773333pt;}
.y1b{bottom:391.800000pt;}
.y75{bottom:395.466667pt;}
.y8e{bottom:398.800000pt;}
.yd2{bottom:400.466667pt;}
.yee{bottom:400.800000pt;}
.yb3{bottom:405.466667pt;}
.y51{bottom:413.133333pt;}
.y74{bottom:418.800000pt;}
.y1a{bottom:419.133333pt;}
.yed{bottom:420.133333pt;}
.y8d{bottom:427.466667pt;}
.yec{bottom:439.466667pt;}
.y73{bottom:442.133333pt;}
.yb2{bottom:443.466667pt;}
.y19{bottom:458.800000pt;}
.yb1{bottom:462.800000pt;}
.y72{bottom:469.466667pt;}
.yd1{bottom:470.466667pt;}
.y8c{bottom:472.800000pt;}
.yeb{bottom:478.133333pt;}
.yb0{bottom:482.133333pt;}
.y50{bottom:483.133333pt;}
.y71{bottom:488.800000pt;}
.yd0{bottom:489.800000pt;}
.yea{bottom:497.466667pt;}
.yaf{bottom:501.506667pt;}
.y18{bottom:503.840000pt;}
.ycf{bottom:509.173333pt;}
.y4f{bottom:510.506667pt;}
.y70{bottom:516.173333pt;}
.ye9{bottom:516.840000pt;}
.yae{bottom:520.840000pt;}
.y4e{bottom:529.840000pt;}
.ye8{bottom:536.173333pt;}
.yce{bottom:536.506667pt;}
.yad{bottom:540.173333pt;}
.y6f{bottom:543.506667pt;}
.y3a{bottom:545.506667pt;}
.y17{bottom:548.840000pt;}
.y4d{bottom:549.173333pt;}
.ye7{bottom:555.506667pt;}
.yfd{bottom:555.788938pt;}
.yac{bottom:559.506667pt;}
.ycd{bottom:563.506667pt;}
.y4c{bottom:568.506667pt;}
.y6e{bottom:570.840000pt;}
.y39{bottom:574.840000pt;}
.yab{bottom:578.840000pt;}
.ycc{bottom:582.840000pt;}
.y4b{bottom:587.840000pt;}
.ye6{bottom:594.173333pt;}
.y6d{bottom:597.840000pt;}
.yaa{bottom:598.173333pt;}
.y38{bottom:602.173333pt;}
.y4a{bottom:606.840000pt;}
.ye5{bottom:613.200000pt;}
.y6c{bottom:617.200000pt;}
.y16{bottom:629.533333pt;}
.y49{bottom:634.200000pt;}
.ye4{bottom:637.200000pt;}
.ycb{bottom:639.866667pt;}
.ya9{bottom:641.200000pt;}
.y6b{bottom:645.866667pt;}
.y15{bottom:656.866667pt;}
.ye3{bottom:659.866667pt;}
.y48{bottom:671.866667pt;}
.y37{bottom:676.200000pt;}
.ya8{bottom:679.200000pt;}
.y14{bottom:684.200000pt;}
.y6a{bottom:694.533333pt;}
.y36{bottom:695.533333pt;}
.ye2{bottom:697.866667pt;}
.ya7{bottom:706.533333pt;}
.yca{bottom:709.866667pt;}
.y13{bottom:711.533333pt;}
.y69{bottom:713.866667pt;}
.y35{bottom:714.866667pt;}
.ye1{bottom:717.200000pt;}
.ya6{bottom:725.866667pt;}
.y8b{bottom:731.893333pt;}
.y68{bottom:733.226667pt;}
.y34{bottom:734.226667pt;}
.ye0{bottom:736.226667pt;}
.yc9{bottom:737.226667pt;}
.y12{bottom:738.893333pt;}
.y47{bottom:741.893333pt;}
.y33{bottom:753.560000pt;}
.ya5{bottom:754.226667pt;}
.y67{bottom:760.226667pt;}
.y46{bottom:761.240000pt;}
.yc8{bottom:764.560000pt;}
.y11{bottom:766.226667pt;}
.y32{bottom:772.893333pt;}
.y66{bottom:779.560000pt;}
.y8a{bottom:782.893333pt;}
.y45{bottom:788.560000pt;}
.yc7{bottom:791.893333pt;}
.y10{bottom:793.560000pt;}
.ydf{bottom:798.226667pt;}
.y31{bottom:799.893333pt;}
.ya4{bottom:802.893333pt;}
.y65{bottom:806.893333pt;}
.y44{bottom:807.893333pt;}
.yc6{bottom:819.226667pt;}
.yf{bottom:820.893333pt;}
.ya3{bottom:822.226667pt;}
.y30{bottom:827.226667pt;}
.y64{bottom:834.226667pt;}
.yc5{bottom:838.560000pt;}
.y2f{bottom:846.600000pt;}
.ye{bottom:848.266667pt;}
.ya2{bottom:849.600000pt;}
.y89{bottom:852.933333pt;}
.y63{bottom:853.600000pt;}
.yde{bottom:859.933333pt;}
.yc4{bottom:865.600000pt;}
.y43{bottom:865.933333pt;}
.ya1{bottom:868.933333pt;}
.y88{bottom:872.266667pt;}
.y62{bottom:872.933333pt;}
.y2e{bottom:873.933333pt;}
.yd{bottom:875.600000pt;}
.ydd{bottom:879.266667pt;}
.y42{bottom:884.933333pt;}
.ya0{bottom:888.266667pt;}
.ydc{bottom:898.600000pt;}
.y87{bottom:899.600000pt;}
.y61{bottom:900.266667pt;}
.y2d{bottom:901.266667pt;}
.yc{bottom:902.933333pt;}
.yc3{bottom:904.266667pt;}
.yfc{bottom:908.933333pt;}
.y41{bottom:912.266667pt;}
.y9f{bottom:915.600000pt;}
.ydb{bottom:917.933333pt;}
.y86{bottom:918.933333pt;}
.y60{bottom:919.600000pt;}
.y2c{bottom:928.600000pt;}
.yb{bottom:930.266667pt;}
.y40{bottom:931.600000pt;}
.y9e{bottom:934.933333pt;}
.yda{bottom:937.266667pt;}
.y85{bottom:938.266667pt;}
.yfb{bottom:946.933333pt;}
.y5f{bottom:947.933333pt;}
.y9d{bottom:954.266667pt;}
.y2b{bottom:955.960000pt;}
.ya{bottom:957.626667pt;}
.yc2{bottom:958.960000pt;}
.yd9{bottom:961.293333pt;}
.y84{bottom:965.626667pt;}
.yfa{bottom:966.293333pt;}
.y3f{bottom:969.293333pt;}
.y9c{bottom:973.626667pt;}
.yc1{bottom:978.293333pt;}
.y9{bottom:984.626667pt;}
.yf9{bottom:985.626667pt;}
.y83{bottom:992.626667pt;}
.y9b{bottom:992.960000pt;}
.y2a{bottom:993.293333pt;}
.y5e{bottom:1001.293333pt;}
.y3e{bottom:1001.626667pt;}
.yc0{bottom:1006.626667pt;}
.yf8{bottom:1009.293333pt;}
.y8{bottom:1011.960000pt;}
.y25{bottom:1039.626667pt;}
.y7{bottom:1066.960000pt;}
.h9{height:27.366667pt;}
.h7{height:48.937500pt;}
.hc{height:49.765625pt;}
.hf{height:51.584139pt;}
.h3{height:54.512197pt;}
.h5{height:55.777096pt;}
.h11{height:55.967888pt;}
.h10{height:57.093750pt;}
.hb{height:63.242667pt;}
.h12{height:63.510730pt;}
.he{height:65.250000pt;}
.hd{height:81.562500pt;}
.h4{height:94.360834pt;}
.ha{height:106.031250pt;}
.h8{height:114.187500pt;}
.h6{height:1122.666667pt;}
.h2{height:1122.999982pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w3{width:8.666667pt;}
.w2{width:793.333322pt;}
.w1{width:793.333333pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:59.223080pt;}
.x2{left:62.565973pt;}
.x4{left:94.699988pt;}
.x8{left:110.699988pt;}
.xb{left:118.733322pt;}
.x9{left:126.733322pt;}
.xc{left:142.733322pt;}
.xd{left:167.066655pt;}
.xa{left:220.773322pt;}
.x3{left:226.773322pt;}
.x10{left:231.311600pt;}
.x11{left:270.496395pt;}
.x12{left:281.453649pt;}
.x14{left:296.803182pt;}
.x13{left:302.977378pt;}
.x7{left:392.506667pt;}
.x5{left:495.199988pt;}
.xe{left:510.866655pt;}
.xf{left:515.893322pt;}
.x6{left:699.306655pt;}
}




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