
    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_3cc0902b04821965461b58bb.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_39fc5f96faa9bdc76fda509b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_3282f804a48e9d8c0cbba906.woff')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_51ea8100cefb4c58d22c5faf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_525441a2c01b8dca4ed1c1f5.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3526b877dba5d4c3122a1bc8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_efb6b025b48feebc0ab4781e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.902344;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v4{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:22.128000px;}
.v3{vertical-align:26.640000px;}
.v2{vertical-align:88.200000px;}
.lsb{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.864000px;}
.lsd{letter-spacing:-0.792000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.648000px;}
.ls26{letter-spacing:-0.576000px;}
.ls1b{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.360000px;}
.ls27{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.126600px;}
.ls14{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.285000px;}
.ls5{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls1e{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.648000px;}
.ls10{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.792000px;}
.lse{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.936000px;}
.ls24{letter-spacing:1.080000px;}
.ls23{letter-spacing:1.224000px;}
.ls29{letter-spacing:2.016000px;}
.ls2a{letter-spacing:3.744000px;}
.ls0{letter-spacing:4.200000px;}
.ls3{letter-spacing:4.275600px;}
.ls1f{letter-spacing:5.328000px;}
.ls1d{letter-spacing:5.616000px;}
.lsf{letter-spacing:5.976000px;}
.ls2b{letter-spacing:6.000000px;}
.ls28{letter-spacing:6.264000px;}
.ls21{letter-spacing:6.336000px;}
.ls1{letter-spacing:6.600000px;}
.ls22{letter-spacing:7.560000px;}
.ls2{letter-spacing:10.200000px;}
.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;}
}
.ws30{word-spacing:-20.232000px;}
.ws29{word-spacing:-18.360000px;}
.ws10{word-spacing:-17.784000px;}
.ws28{word-spacing:-17.568000px;}
.ws1{word-spacing:-16.920000px;}
.ws0{word-spacing:-16.860000px;}
.ws32{word-spacing:-14.820000px;}
.ws3{word-spacing:-14.079000px;}
.ws2{word-spacing:-12.139200px;}
.ws7{word-spacing:-10.200000px;}
.ws25{word-spacing:-7.560000px;}
.ws6{word-spacing:-6.600000px;}
.ws24{word-spacing:-6.336000px;}
.ws31{word-spacing:-6.264000px;}
.ws33{word-spacing:-6.000000px;}
.ws14{word-spacing:-5.976000px;}
.ws21{word-spacing:-5.616000px;}
.ws22{word-spacing:-5.328000px;}
.ws5{word-spacing:-4.200000px;}
.ws27{word-spacing:-1.224000px;}
.ws2b{word-spacing:-1.080000px;}
.ws15{word-spacing:-0.936000px;}
.ws12{word-spacing:-0.864000px;}
.ws1a{word-spacing:-0.792000px;}
.ws11{word-spacing:-0.720000px;}
.ws1e{word-spacing:-0.648000px;}
.ws26{word-spacing:-0.576000px;}
.ws18{word-spacing:-0.504000px;}
.wsf{word-spacing:-0.432000px;}
.ws9{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.288000px;}
.ws2f{word-spacing:-0.285000px;}
.ws16{word-spacing:-0.216000px;}
.ws1b{word-spacing:-0.144000px;}
.ws23{word-spacing:-0.072000px;}
.ws2c{word-spacing:-0.036000px;}
.ws4{word-spacing:0.000000px;}
.wsd{word-spacing:0.072000px;}
.ws13{word-spacing:0.144000px;}
.ws19{word-spacing:0.216000px;}
.ws2e{word-spacing:0.288000px;}
.ws8{word-spacing:0.360000px;}
.ws1c{word-spacing:0.432000px;}
.ws1f{word-spacing:0.504000px;}
.ws2d{word-spacing:0.576000px;}
.ws1d{word-spacing:0.648000px;}
.ws20{word-spacing:0.720000px;}
.wse{word-spacing:0.792000px;}
.wsc{word-spacing:0.864000px;}
.wsb{word-spacing:0.936000px;}
.ws2a{word-spacing:3.528000px;}
.ws17{word-spacing:5.976000px;}
._16{margin-left:-20.073600px;}
._9{margin-left:-10.342800px;}
._b{margin-left:-8.160000px;}
._4{margin-left:-6.646200px;}
._7{margin-left:-5.508000px;}
._3{margin-left:-4.283400px;}
._e{margin-left:-2.362800px;}
._1{margin-left:-1.333200px;}
._6{width:1.534800px;}
._d{width:2.858400px;}
._0{width:4.200000px;}
._10{width:5.486400px;}
._5{width:6.600000px;}
._c{width:7.634400px;}
._f{width:9.105000px;}
._a{width:10.200000px;}
._2{width:11.259600px;}
._12{width:12.806400px;}
._13{width:14.176800px;}
._15{width:16.110000px;}
._8{width:17.401200px;}
._14{width:19.030200px;}
._17{width:24.142500px;}
._11{width:56.923200px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(0,177,71);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs9{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.fs5{font-size:213.784800px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.934500px;}
.y1{bottom:76.339350px;}
.y23{bottom:78.334500px;}
.y22{bottom:140.308950px;}
.yf5{bottom:140.313450px;}
.y49{bottom:144.930300px;}
.y6e{bottom:145.164300px;}
.yb4{bottom:145.254300px;}
.y91{bottom:145.864950px;}
.y117{bottom:145.866300px;}
.y21{bottom:156.810450px;}
.yf4{bottom:162.364950px;}
.y6d{bottom:166.314300px;}
.y48{bottom:166.674300px;}
.yb3{bottom:167.610300px;}
.y116{bottom:168.222300px;}
.y20{bottom:173.311950px;}
.y6c{bottom:187.464300px;}
.y47{bottom:188.418300px;}
.y1f{bottom:189.813450px;}
.yb2{bottom:189.966300px;}
.y115{bottom:190.578300px;}
.y90{bottom:193.314300px;}
.yd5{bottom:195.126300px;}
.y6b{bottom:208.614300px;}
.yf3{bottom:210.144300px;}
.y46{bottom:210.162300px;}
.y1e{bottom:211.864950px;}
.yb1{bottom:212.322300px;}
.y114{bottom:212.934300px;}
.y8f{bottom:214.914300px;}
.yd4{bottom:217.320300px;}
.y1d{bottom:228.364950px;}
.y6a{bottom:229.764300px;}
.yf2{bottom:231.888300px;}
.y45{bottom:231.906300px;}
.yb0{bottom:234.678300px;}
.y113{bottom:235.290300px;}
.y8e{bottom:236.514300px;}
.y1c{bottom:239.313450px;}
.yd3{bottom:239.700300px;}
.y69{bottom:250.914300px;}
.yf1{bottom:253.632300px;}
.y44{bottom:253.650300px;}
.yaf{bottom:257.034300px;}
.y112{bottom:257.646300px;}
.y8d{bottom:258.114300px;}
.y1b{bottom:261.364950px;}
.yd2{bottom:261.894300px;}
.y68{bottom:272.064300px;}
.yf0{bottom:275.376300px;}
.y43{bottom:275.394300px;}
.yae{bottom:279.390300px;}
.y8c{bottom:279.714300px;}
.y111{bottom:280.002300px;}
.yd1{bottom:284.088300px;}
.y67{bottom:293.214300px;}
.yef{bottom:297.120300px;}
.y42{bottom:297.138300px;}
.y8b{bottom:301.314300px;}
.yad{bottom:301.746300px;}
.y110{bottom:302.358300px;}
.y1a{bottom:303.792900px;}
.yd0{bottom:306.282300px;}
.y66{bottom:314.364300px;}
.yee{bottom:318.864300px;}
.y41{bottom:318.882300px;}
.y8a{bottom:322.914300px;}
.yac{bottom:324.102300px;}
.y10f{bottom:324.714300px;}
.y19{bottom:325.842900px;}
.ycf{bottom:328.476300px;}
.y65{bottom:335.514300px;}
.yed{bottom:340.608300px;}
.y40{bottom:340.626300px;}
.y89{bottom:344.514300px;}
.yab{bottom:346.458300px;}
.y10e{bottom:347.070300px;}
.y18{bottom:347.892900px;}
.yce{bottom:350.670300px;}
.y64{bottom:356.664300px;}
.yec{bottom:362.352300px;}
.y3f{bottom:362.370300px;}
.y88{bottom:366.114300px;}
.yaa{bottom:368.814300px;}
.y10d{bottom:369.426300px;}
.y17{bottom:369.942900px;}
.ycd{bottom:372.864300px;}
.y63{bottom:377.814300px;}
.yeb{bottom:384.096300px;}
.y3e{bottom:384.114300px;}
.y87{bottom:387.714300px;}
.ya9{bottom:391.170300px;}
.y10c{bottom:391.782300px;}
.y16{bottom:391.992900px;}
.ycc{bottom:395.058300px;}
.y62{bottom:398.964300px;}
.yea{bottom:405.840300px;}
.y3d{bottom:405.858300px;}
.y86{bottom:409.314300px;}
.ya8{bottom:413.526300px;}
.y15{bottom:414.042900px;}
.y10b{bottom:414.138300px;}
.ycb{bottom:417.252300px;}
.y61{bottom:420.114300px;}
.ye9{bottom:427.584300px;}
.y3c{bottom:427.602300px;}
.y85{bottom:430.914300px;}
.ya7{bottom:435.882300px;}
.y14{bottom:436.092900px;}
.y10a{bottom:436.494300px;}
.yca{bottom:439.446300px;}
.y60{bottom:441.264300px;}
.ye8{bottom:449.328300px;}
.y3b{bottom:449.346300px;}
.y84{bottom:452.514300px;}
.y13{bottom:458.142900px;}
.ya6{bottom:458.238300px;}
.y109{bottom:458.850300px;}
.yc9{bottom:461.640300px;}
.y5f{bottom:462.414300px;}
.ye7{bottom:471.072300px;}
.y3a{bottom:471.090300px;}
.y83{bottom:474.114300px;}
.y12{bottom:480.192900px;}
.ya5{bottom:480.594300px;}
.y108{bottom:481.206300px;}
.y5e{bottom:483.564300px;}
.yc8{bottom:483.834300px;}
.ye6{bottom:492.816300px;}
.y39{bottom:492.834300px;}
.y82{bottom:495.714300px;}
.y11{bottom:502.242900px;}
.ya4{bottom:502.950300px;}
.y107{bottom:503.562300px;}
.y5d{bottom:504.714300px;}
.yc7{bottom:506.028300px;}
.ye5{bottom:514.560300px;}
.y38{bottom:514.578300px;}
.y81{bottom:517.314300px;}
.y10{bottom:524.292900px;}
.ya3{bottom:525.306300px;}
.y5c{bottom:525.864300px;}
.y106{bottom:525.918300px;}
.yc6{bottom:528.222300px;}
.ye4{bottom:536.304300px;}
.y37{bottom:536.322300px;}
.y80{bottom:538.914300px;}
.yf{bottom:546.342900px;}
.y5b{bottom:547.014300px;}
.ya2{bottom:547.662300px;}
.y105{bottom:548.274300px;}
.yc5{bottom:550.416300px;}
.ye3{bottom:558.048300px;}
.y36{bottom:558.066300px;}
.y7f{bottom:560.514300px;}
.y5a{bottom:568.164300px;}
.ye{bottom:568.392900px;}
.ya1{bottom:570.018300px;}
.y104{bottom:570.630300px;}
.yc4{bottom:572.610300px;}
.ye2{bottom:579.792300px;}
.y35{bottom:579.810300px;}
.y7e{bottom:582.114300px;}
.y59{bottom:589.314300px;}
.yd{bottom:590.442900px;}
.ya0{bottom:592.374300px;}
.y103{bottom:592.986300px;}
.yc3{bottom:594.804300px;}
.ye1{bottom:601.536300px;}
.y34{bottom:601.554300px;}
.y7d{bottom:603.714300px;}
.y58{bottom:610.464300px;}
.yc{bottom:612.492900px;}
.y9f{bottom:614.730300px;}
.y102{bottom:615.342300px;}
.yc2{bottom:616.998300px;}
.ye0{bottom:623.280300px;}
.y33{bottom:623.298300px;}
.y7c{bottom:625.314300px;}
.y57{bottom:631.614300px;}
.y122{bottom:632.664300px;}
.yb{bottom:634.542900px;}
.y9e{bottom:637.086300px;}
.y101{bottom:637.698300px;}
.yc1{bottom:639.192300px;}
.ydf{bottom:645.024300px;}
.y32{bottom:645.042300px;}
.y7b{bottom:646.914300px;}
.y121{bottom:650.664300px;}
.y56{bottom:652.764300px;}
.ya{bottom:656.592900px;}
.y9d{bottom:659.442300px;}
.y100{bottom:660.054300px;}
.yc0{bottom:661.386300px;}
.yde{bottom:666.768300px;}
.y31{bottom:666.786300px;}
.y7a{bottom:668.514300px;}
.y120{bottom:668.664300px;}
.y55{bottom:673.914300px;}
.y9c{bottom:681.798300px;}
.yff{bottom:682.410300px;}
.ybf{bottom:683.580300px;}
.y11f{bottom:686.664300px;}
.ydd{bottom:688.512300px;}
.y30{bottom:688.530300px;}
.y79{bottom:690.114300px;}
.y54{bottom:695.064300px;}
.y9b{bottom:704.154300px;}
.yfe{bottom:704.766300px;}
.ybe{bottom:705.774300px;}
.ydc{bottom:710.256300px;}
.y2f{bottom:710.274300px;}
.y78{bottom:711.714300px;}
.y53{bottom:716.214300px;}
.y9{bottom:722.724900px;}
.y11e{bottom:726.264300px;}
.y9a{bottom:726.510300px;}
.yfd{bottom:727.122300px;}
.ybd{bottom:727.968300px;}
.ydb{bottom:732.000300px;}
.y2e{bottom:732.018300px;}
.y77{bottom:733.314300px;}
.y52{bottom:737.364300px;}
.y99{bottom:748.866300px;}
.yfc{bottom:749.478300px;}
.ybc{bottom:750.162300px;}
.yda{bottom:753.744300px;}
.y2d{bottom:753.762300px;}
.y8{bottom:753.783900px;}
.y11d{bottom:753.870300px;}
.y76{bottom:754.914300px;}
.y51{bottom:758.514300px;}
.y98{bottom:771.222300px;}
.yfb{bottom:771.834300px;}
.ybb{bottom:772.356300px;}
.y11c{bottom:775.470300px;}
.yd9{bottom:775.488300px;}
.y2c{bottom:775.506300px;}
.y75{bottom:776.514300px;}
.y50{bottom:779.664300px;}
.y7{bottom:784.842900px;}
.y97{bottom:793.578300px;}
.yfa{bottom:794.190300px;}
.yba{bottom:794.550300px;}
.y11b{bottom:797.070300px;}
.yd8{bottom:797.232300px;}
.y2b{bottom:797.250300px;}
.y74{bottom:798.114300px;}
.y4f{bottom:800.814300px;}
.y96{bottom:815.934300px;}
.yf9{bottom:816.546300px;}
.yb9{bottom:816.744300px;}
.y11a{bottom:818.670300px;}
.yd7{bottom:818.976300px;}
.y2a{bottom:818.994300px;}
.y73{bottom:819.714300px;}
.y4e{bottom:821.964300px;}
.y95{bottom:838.290300px;}
.yf8{bottom:838.902300px;}
.yb8{bottom:838.938300px;}
.y119{bottom:840.270300px;}
.y6{bottom:840.556800px;}
.yd6{bottom:840.720300px;}
.y29{bottom:840.738300px;}
.y72{bottom:841.314300px;}
.y4d{bottom:843.114300px;}
.y5{bottom:858.556800px;}
.y94{bottom:860.646300px;}
.yb7{bottom:861.132300px;}
.yf7{bottom:861.258300px;}
.y118{bottom:861.870300px;}
.y28{bottom:862.482300px;}
.y71{bottom:862.914300px;}
.y4c{bottom:864.264300px;}
.y4{bottom:876.556800px;}
.y93{bottom:883.002300px;}
.yb6{bottom:883.326300px;}
.yf6{bottom:883.614300px;}
.y27{bottom:884.226300px;}
.y70{bottom:884.514300px;}
.y4b{bottom:885.414300px;}
.y92{bottom:905.358300px;}
.yb5{bottom:905.520300px;}
.y26{bottom:905.970300px;}
.y6f{bottom:906.114300px;}
.y4a{bottom:906.564300px;}
.y3{bottom:910.711800px;}
.y25{bottom:927.714300px;}
.y2{bottom:928.711800px;}
.h9{height:30.568359px;}
.h3{height:35.663086px;}
.hb{height:40.757812px;}
.ha{height:48.399902px;}
.h2{height:50.947266px;}
.h4{height:56.041992px;}
.h7{height:61.136719px;}
.hc{height:62.578031px;}
.h8{height:63.322031px;}
.h5{height:86.610352px;}
.h6{height:181.529183px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:76.535400px;}
.x1{left:97.795350px;}
.x4{left:119.049900px;}
.x3{left:125.587350px;}
.x2{left:150.670350px;}
.x6{left:237.489150px;}
.x7{left:417.771600px;}
.x9{left:540.203550px;}
.x5{left:602.539350px;}
@media print{
.v4{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:19.669333pt;}
.v3{vertical-align:23.680000pt;}
.v2{vertical-align:78.400000pt;}
.lsb{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.768000pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls26{letter-spacing:-0.512000pt;}
.ls1b{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls27{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.112533pt;}
.ls14{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.253333pt;}
.ls5{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls1e{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.576000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.704000pt;}
.lse{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.832000pt;}
.ls24{letter-spacing:0.960000pt;}
.ls23{letter-spacing:1.088000pt;}
.ls29{letter-spacing:1.792000pt;}
.ls2a{letter-spacing:3.328000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls3{letter-spacing:3.800533pt;}
.ls1f{letter-spacing:4.736000pt;}
.ls1d{letter-spacing:4.992000pt;}
.lsf{letter-spacing:5.312000pt;}
.ls2b{letter-spacing:5.333333pt;}
.ls28{letter-spacing:5.568000pt;}
.ls21{letter-spacing:5.632000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls22{letter-spacing:6.720000pt;}
.ls2{letter-spacing:9.066667pt;}
.ws30{word-spacing:-17.984000pt;}
.ws29{word-spacing:-16.320000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws28{word-spacing:-15.616000pt;}
.ws1{word-spacing:-15.040000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws32{word-spacing:-13.173333pt;}
.ws3{word-spacing:-12.514667pt;}
.ws2{word-spacing:-10.790400pt;}
.ws7{word-spacing:-9.066667pt;}
.ws25{word-spacing:-6.720000pt;}
.ws6{word-spacing:-5.866667pt;}
.ws24{word-spacing:-5.632000pt;}
.ws31{word-spacing:-5.568000pt;}
.ws33{word-spacing:-5.333333pt;}
.ws14{word-spacing:-5.312000pt;}
.ws21{word-spacing:-4.992000pt;}
.ws22{word-spacing:-4.736000pt;}
.ws5{word-spacing:-3.733333pt;}
.ws27{word-spacing:-1.088000pt;}
.ws2b{word-spacing:-0.960000pt;}
.ws15{word-spacing:-0.832000pt;}
.ws12{word-spacing:-0.768000pt;}
.ws1a{word-spacing:-0.704000pt;}
.ws11{word-spacing:-0.640000pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws26{word-spacing:-0.512000pt;}
.ws18{word-spacing:-0.448000pt;}
.wsf{word-spacing:-0.384000pt;}
.ws9{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.256000pt;}
.ws2f{word-spacing:-0.253333pt;}
.ws16{word-spacing:-0.192000pt;}
.ws1b{word-spacing:-0.128000pt;}
.ws23{word-spacing:-0.064000pt;}
.ws2c{word-spacing:-0.032000pt;}
.ws4{word-spacing:0.000000pt;}
.wsd{word-spacing:0.064000pt;}
.ws13{word-spacing:0.128000pt;}
.ws19{word-spacing:0.192000pt;}
.ws2e{word-spacing:0.256000pt;}
.ws8{word-spacing:0.320000pt;}
.ws1c{word-spacing:0.384000pt;}
.ws1f{word-spacing:0.448000pt;}
.ws2d{word-spacing:0.512000pt;}
.ws1d{word-spacing:0.576000pt;}
.ws20{word-spacing:0.640000pt;}
.wse{word-spacing:0.704000pt;}
.wsc{word-spacing:0.768000pt;}
.wsb{word-spacing:0.832000pt;}
.ws2a{word-spacing:3.136000pt;}
.ws17{word-spacing:5.312000pt;}
._16{margin-left:-17.843200pt;}
._9{margin-left:-9.193600pt;}
._b{margin-left:-7.253333pt;}
._4{margin-left:-5.907733pt;}
._7{margin-left:-4.896000pt;}
._3{margin-left:-3.807467pt;}
._e{margin-left:-2.100267pt;}
._1{margin-left:-1.185067pt;}
._6{width:1.364267pt;}
._d{width:2.540800pt;}
._0{width:3.733333pt;}
._10{width:4.876800pt;}
._5{width:5.866667pt;}
._c{width:6.786133pt;}
._f{width:8.093333pt;}
._a{width:9.066667pt;}
._2{width:10.008533pt;}
._12{width:11.383467pt;}
._13{width:12.601600pt;}
._15{width:14.320000pt;}
._8{width:15.467733pt;}
._14{width:16.915733pt;}
._17{width:21.460000pt;}
._11{width:50.598400pt;}
.fs8{font-size:32.000000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs9{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.fs5{font-size:190.030933pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.830667pt;}
.y1{bottom:67.857200pt;}
.y23{bottom:69.630667pt;}
.y22{bottom:124.719067pt;}
.yf5{bottom:124.723067pt;}
.y49{bottom:128.826933pt;}
.y6e{bottom:129.034933pt;}
.yb4{bottom:129.114933pt;}
.y91{bottom:129.657733pt;}
.y117{bottom:129.658933pt;}
.y21{bottom:139.387067pt;}
.yf4{bottom:144.324400pt;}
.y6d{bottom:147.834933pt;}
.y48{bottom:148.154933pt;}
.yb3{bottom:148.986933pt;}
.y116{bottom:149.530933pt;}
.y20{bottom:154.055067pt;}
.y6c{bottom:166.634933pt;}
.y47{bottom:167.482933pt;}
.y1f{bottom:168.723067pt;}
.yb2{bottom:168.858933pt;}
.y115{bottom:169.402933pt;}
.y90{bottom:171.834933pt;}
.yd5{bottom:173.445600pt;}
.y6b{bottom:185.434933pt;}
.yf3{bottom:186.794933pt;}
.y46{bottom:186.810933pt;}
.y1e{bottom:188.324400pt;}
.yb1{bottom:188.730933pt;}
.y114{bottom:189.274933pt;}
.y8f{bottom:191.034933pt;}
.yd4{bottom:193.173600pt;}
.y1d{bottom:202.991067pt;}
.y6a{bottom:204.234933pt;}
.yf2{bottom:206.122933pt;}
.y45{bottom:206.138933pt;}
.yb0{bottom:208.602933pt;}
.y113{bottom:209.146933pt;}
.y8e{bottom:210.234933pt;}
.y1c{bottom:212.723067pt;}
.yd3{bottom:213.066933pt;}
.y69{bottom:223.034933pt;}
.yf1{bottom:225.450933pt;}
.y44{bottom:225.466933pt;}
.yaf{bottom:228.474933pt;}
.y112{bottom:229.018933pt;}
.y8d{bottom:229.434933pt;}
.y1b{bottom:232.324400pt;}
.yd2{bottom:232.794933pt;}
.y68{bottom:241.834933pt;}
.yf0{bottom:244.778933pt;}
.y43{bottom:244.794933pt;}
.yae{bottom:248.346933pt;}
.y8c{bottom:248.634933pt;}
.y111{bottom:248.890933pt;}
.yd1{bottom:252.522933pt;}
.y67{bottom:260.634933pt;}
.yef{bottom:264.106933pt;}
.y42{bottom:264.122933pt;}
.y8b{bottom:267.834933pt;}
.yad{bottom:268.218933pt;}
.y110{bottom:268.762933pt;}
.y1a{bottom:270.038133pt;}
.yd0{bottom:272.250933pt;}
.y66{bottom:279.434933pt;}
.yee{bottom:283.434933pt;}
.y41{bottom:283.450933pt;}
.y8a{bottom:287.034933pt;}
.yac{bottom:288.090933pt;}
.y10f{bottom:288.634933pt;}
.y19{bottom:289.638133pt;}
.ycf{bottom:291.978933pt;}
.y65{bottom:298.234933pt;}
.yed{bottom:302.762933pt;}
.y40{bottom:302.778933pt;}
.y89{bottom:306.234933pt;}
.yab{bottom:307.962933pt;}
.y10e{bottom:308.506933pt;}
.y18{bottom:309.238133pt;}
.yce{bottom:311.706933pt;}
.y64{bottom:317.034933pt;}
.yec{bottom:322.090933pt;}
.y3f{bottom:322.106933pt;}
.y88{bottom:325.434933pt;}
.yaa{bottom:327.834933pt;}
.y10d{bottom:328.378933pt;}
.y17{bottom:328.838133pt;}
.ycd{bottom:331.434933pt;}
.y63{bottom:335.834933pt;}
.yeb{bottom:341.418933pt;}
.y3e{bottom:341.434933pt;}
.y87{bottom:344.634933pt;}
.ya9{bottom:347.706933pt;}
.y10c{bottom:348.250933pt;}
.y16{bottom:348.438133pt;}
.ycc{bottom:351.162933pt;}
.y62{bottom:354.634933pt;}
.yea{bottom:360.746933pt;}
.y3d{bottom:360.762933pt;}
.y86{bottom:363.834933pt;}
.ya8{bottom:367.578933pt;}
.y15{bottom:368.038133pt;}
.y10b{bottom:368.122933pt;}
.ycb{bottom:370.890933pt;}
.y61{bottom:373.434933pt;}
.ye9{bottom:380.074933pt;}
.y3c{bottom:380.090933pt;}
.y85{bottom:383.034933pt;}
.ya7{bottom:387.450933pt;}
.y14{bottom:387.638133pt;}
.y10a{bottom:387.994933pt;}
.yca{bottom:390.618933pt;}
.y60{bottom:392.234933pt;}
.ye8{bottom:399.402933pt;}
.y3b{bottom:399.418933pt;}
.y84{bottom:402.234933pt;}
.y13{bottom:407.238133pt;}
.ya6{bottom:407.322933pt;}
.y109{bottom:407.866933pt;}
.yc9{bottom:410.346933pt;}
.y5f{bottom:411.034933pt;}
.ye7{bottom:418.730933pt;}
.y3a{bottom:418.746933pt;}
.y83{bottom:421.434933pt;}
.y12{bottom:426.838133pt;}
.ya5{bottom:427.194933pt;}
.y108{bottom:427.738933pt;}
.y5e{bottom:429.834933pt;}
.yc8{bottom:430.074933pt;}
.ye6{bottom:438.058933pt;}
.y39{bottom:438.074933pt;}
.y82{bottom:440.634933pt;}
.y11{bottom:446.438133pt;}
.ya4{bottom:447.066933pt;}
.y107{bottom:447.610933pt;}
.y5d{bottom:448.634933pt;}
.yc7{bottom:449.802933pt;}
.ye5{bottom:457.386933pt;}
.y38{bottom:457.402933pt;}
.y81{bottom:459.834933pt;}
.y10{bottom:466.038133pt;}
.ya3{bottom:466.938933pt;}
.y5c{bottom:467.434933pt;}
.y106{bottom:467.482933pt;}
.yc6{bottom:469.530933pt;}
.ye4{bottom:476.714933pt;}
.y37{bottom:476.730933pt;}
.y80{bottom:479.034933pt;}
.yf{bottom:485.638133pt;}
.y5b{bottom:486.234933pt;}
.ya2{bottom:486.810933pt;}
.y105{bottom:487.354933pt;}
.yc5{bottom:489.258933pt;}
.ye3{bottom:496.042933pt;}
.y36{bottom:496.058933pt;}
.y7f{bottom:498.234933pt;}
.y5a{bottom:505.034933pt;}
.ye{bottom:505.238133pt;}
.ya1{bottom:506.682933pt;}
.y104{bottom:507.226933pt;}
.yc4{bottom:508.986933pt;}
.ye2{bottom:515.370933pt;}
.y35{bottom:515.386933pt;}
.y7e{bottom:517.434933pt;}
.y59{bottom:523.834933pt;}
.yd{bottom:524.838133pt;}
.ya0{bottom:526.554933pt;}
.y103{bottom:527.098933pt;}
.yc3{bottom:528.714933pt;}
.ye1{bottom:534.698933pt;}
.y34{bottom:534.714933pt;}
.y7d{bottom:536.634933pt;}
.y58{bottom:542.634933pt;}
.yc{bottom:544.438133pt;}
.y9f{bottom:546.426933pt;}
.y102{bottom:546.970933pt;}
.yc2{bottom:548.442933pt;}
.ye0{bottom:554.026933pt;}
.y33{bottom:554.042933pt;}
.y7c{bottom:555.834933pt;}
.y57{bottom:561.434933pt;}
.y122{bottom:562.368267pt;}
.yb{bottom:564.038133pt;}
.y9e{bottom:566.298933pt;}
.y101{bottom:566.842933pt;}
.yc1{bottom:568.170933pt;}
.ydf{bottom:573.354933pt;}
.y32{bottom:573.370933pt;}
.y7b{bottom:575.034933pt;}
.y121{bottom:578.368267pt;}
.y56{bottom:580.234933pt;}
.ya{bottom:583.638133pt;}
.y9d{bottom:586.170933pt;}
.y100{bottom:586.714933pt;}
.yc0{bottom:587.898933pt;}
.yde{bottom:592.682933pt;}
.y31{bottom:592.698933pt;}
.y7a{bottom:594.234933pt;}
.y120{bottom:594.368267pt;}
.y55{bottom:599.034933pt;}
.y9c{bottom:606.042933pt;}
.yff{bottom:606.586933pt;}
.ybf{bottom:607.626933pt;}
.y11f{bottom:610.368267pt;}
.ydd{bottom:612.010933pt;}
.y30{bottom:612.026933pt;}
.y79{bottom:613.434933pt;}
.y54{bottom:617.834933pt;}
.y9b{bottom:625.914933pt;}
.yfe{bottom:626.458933pt;}
.ybe{bottom:627.354933pt;}
.ydc{bottom:631.338933pt;}
.y2f{bottom:631.354933pt;}
.y78{bottom:632.634933pt;}
.y53{bottom:636.634933pt;}
.y9{bottom:642.422133pt;}
.y11e{bottom:645.568267pt;}
.y9a{bottom:645.786933pt;}
.yfd{bottom:646.330933pt;}
.ybd{bottom:647.082933pt;}
.ydb{bottom:650.666933pt;}
.y2e{bottom:650.682933pt;}
.y77{bottom:651.834933pt;}
.y52{bottom:655.434933pt;}
.y99{bottom:665.658933pt;}
.yfc{bottom:666.202933pt;}
.ybc{bottom:666.810933pt;}
.yda{bottom:669.994933pt;}
.y2d{bottom:670.010933pt;}
.y8{bottom:670.030133pt;}
.y11d{bottom:670.106933pt;}
.y76{bottom:671.034933pt;}
.y51{bottom:674.234933pt;}
.y98{bottom:685.530933pt;}
.yfb{bottom:686.074933pt;}
.ybb{bottom:686.538933pt;}
.y11c{bottom:689.306933pt;}
.yd9{bottom:689.322933pt;}
.y2c{bottom:689.338933pt;}
.y75{bottom:690.234933pt;}
.y50{bottom:693.034933pt;}
.y7{bottom:697.638133pt;}
.y97{bottom:705.402933pt;}
.yfa{bottom:705.946933pt;}
.yba{bottom:706.266933pt;}
.y11b{bottom:708.506933pt;}
.yd8{bottom:708.650933pt;}
.y2b{bottom:708.666933pt;}
.y74{bottom:709.434933pt;}
.y4f{bottom:711.834933pt;}
.y96{bottom:725.274933pt;}
.yf9{bottom:725.818933pt;}
.yb9{bottom:725.994933pt;}
.y11a{bottom:727.706933pt;}
.yd7{bottom:727.978933pt;}
.y2a{bottom:727.994933pt;}
.y73{bottom:728.634933pt;}
.y4e{bottom:730.634933pt;}
.y95{bottom:745.146933pt;}
.yf8{bottom:745.690933pt;}
.yb8{bottom:745.722933pt;}
.y119{bottom:746.906933pt;}
.y6{bottom:747.161600pt;}
.yd6{bottom:747.306933pt;}
.y29{bottom:747.322933pt;}
.y72{bottom:747.834933pt;}
.y4d{bottom:749.434933pt;}
.y5{bottom:763.161600pt;}
.y94{bottom:765.018933pt;}
.yb7{bottom:765.450933pt;}
.yf7{bottom:765.562933pt;}
.y118{bottom:766.106933pt;}
.y28{bottom:766.650933pt;}
.y71{bottom:767.034933pt;}
.y4c{bottom:768.234933pt;}
.y4{bottom:779.161600pt;}
.y93{bottom:784.890933pt;}
.yb6{bottom:785.178933pt;}
.yf6{bottom:785.434933pt;}
.y27{bottom:785.978933pt;}
.y70{bottom:786.234933pt;}
.y4b{bottom:787.034933pt;}
.y92{bottom:804.762933pt;}
.yb5{bottom:804.906933pt;}
.y26{bottom:805.306933pt;}
.y6f{bottom:805.434933pt;}
.y4a{bottom:805.834933pt;}
.y3{bottom:809.521600pt;}
.y25{bottom:824.634933pt;}
.y2{bottom:825.521600pt;}
.h9{height:27.171875pt;}
.h3{height:31.700521pt;}
.hb{height:36.229167pt;}
.ha{height:43.022135pt;}
.h2{height:45.286458pt;}
.h4{height:49.815104pt;}
.h7{height:54.343750pt;}
.hc{height:55.624917pt;}
.h8{height:56.286250pt;}
.h5{height:76.986979pt;}
.h6{height:161.359274pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:68.031467pt;}
.x1{left:86.929200pt;}
.x4{left:105.822133pt;}
.x3{left:111.633200pt;}
.x2{left:133.929200pt;}
.x6{left:211.101467pt;}
.x7{left:371.352533pt;}
.x9{left:480.180933pt;}
.x5{left:535.590533pt;}
}




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