
    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_868e49945e773e4afaa5d659.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_868e49945e773e4afaa5d659.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_f9b464e05178f210678f137b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_303441c66f0cdea09c960ba6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_53d208d9c85314143dd1ded9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_b00af5137b75c992d960e621.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.928471;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_f6fd277c42f188416f26f295.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.990000;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_c6d7161d3ba60294b1218bea.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_db42db16c6627bf28af9534c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.974000;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_589dbb707361320681ab28e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.700000;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_04d4d3f31ee05c9fcc5cda5a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707000;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_fbb016fe464109c813d0d736.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.940000;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_e643e79eb06def85e0b132e5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.692871;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_9221627bb849e173396c3e4d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_f9b464e05178f210678f137b.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_629abc09a93909fa3f9e1f1f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.945813;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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:66.312000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws3a{word-spacing:-60.048000px;}
.ws10{word-spacing:-59.976000px;}
.ws2f{word-spacing:-56.448000px;}
.ws42{word-spacing:-56.232000px;}
.ws75{word-spacing:-54.936000px;}
.ws1f{word-spacing:-54.072000px;}
.wsa{word-spacing:-53.712000px;}
.ws65{word-spacing:-52.704000px;}
.ws2e{word-spacing:-50.616000px;}
.ws61{word-spacing:-50.544000px;}
.ws41{word-spacing:-49.752000px;}
.ws8{word-spacing:-49.248000px;}
.ws6c{word-spacing:-48.816000px;}
.ws21{word-spacing:-48.672000px;}
.ws6a{word-spacing:-48.528000px;}
.ws11{word-spacing:-48.384000px;}
.ws18{word-spacing:-48.312000px;}
.ws7{word-spacing:-47.520000px;}
.ws27{word-spacing:-46.800000px;}
.ws79{word-spacing:-46.584000px;}
.ws6f{word-spacing:-45.792000px;}
.ws50{word-spacing:-45.504000px;}
.ws56{word-spacing:-45.151200px;}
.ws5c{word-spacing:-44.856000px;}
.ws2d{word-spacing:-44.712000px;}
.ws62{word-spacing:-41.976000px;}
.ws1c{word-spacing:-41.688000px;}
.ws63{word-spacing:-41.544000px;}
.ws53{word-spacing:-40.824000px;}
.ws57{word-spacing:-39.744000px;}
.ws5a{word-spacing:-39.672000px;}
.ws45{word-spacing:-38.988000px;}
.ws4d{word-spacing:-38.160000px;}
.wsd{word-spacing:-37.224000px;}
.ws39{word-spacing:-36.936000px;}
.ws52{word-spacing:-36.864000px;}
.ws19{word-spacing:-34.344000px;}
.ws6{word-spacing:-33.480000px;}
.ws54{word-spacing:-32.328000px;}
.ws77{word-spacing:-31.968000px;}
.ws49{word-spacing:-31.082400px;}
.wse{word-spacing:-30.672000px;}
.ws4f{word-spacing:-30.600000px;}
.ws2a{word-spacing:-30.384000px;}
.ws48{word-spacing:-29.448000px;}
.wsb{word-spacing:-29.088000px;}
.ws40{word-spacing:-28.008000px;}
.ws1d{word-spacing:-26.928000px;}
.wsf{word-spacing:-26.496000px;}
.ws5e{word-spacing:-25.992000px;}
.ws74{word-spacing:-23.904000px;}
.ws59{word-spacing:-22.536000px;}
.ws1e{word-spacing:-20.016000px;}
.ws58{word-spacing:-18.648000px;}
.ws2b{word-spacing:-17.496000px;}
.ws3f{word-spacing:-16.272000px;}
.ws23{word-spacing:-15.984000px;}
.ws5f{word-spacing:-15.120000px;}
.ws51{word-spacing:-13.968000px;}
.ws73{word-spacing:-13.536000px;}
.ws33{word-spacing:-13.104000px;}
.ws66{word-spacing:-12.888000px;}
.ws28{word-spacing:-12.528000px;}
.ws76{word-spacing:-12.168000px;}
.ws44{word-spacing:-11.880000px;}
.ws4c{word-spacing:-11.304000px;}
.ws34{word-spacing:-10.080000px;}
.ws43{word-spacing:-7.560000px;}
.ws38{word-spacing:-6.840000px;}
.ws9{word-spacing:-6.717600px;}
.ws46{word-spacing:-5.760000px;}
.ws17{word-spacing:-5.680800px;}
.wsc{word-spacing:-3.024000px;}
.ws3b{word-spacing:-1.800000px;}
.ws5b{word-spacing:-1.008000px;}
.ws13{word-spacing:-0.060000px;}
.ws14{word-spacing:0.000000px;}
.ws6d{word-spacing:0.288000px;}
.ws1{word-spacing:0.720000px;}
.ws2{word-spacing:2.160000px;}
.ws22{word-spacing:2.520000px;}
.ws1b{word-spacing:3.312000px;}
.ws64{word-spacing:5.256000px;}
.ws4b{word-spacing:5.904000px;}
.ws3d{word-spacing:6.480000px;}
.ws20{word-spacing:6.696000px;}
.ws6e{word-spacing:7.200000px;}
.ws1a{word-spacing:7.344000px;}
.ws5{word-spacing:8.208000px;}
.ws2c{word-spacing:9.216000px;}
.ws47{word-spacing:9.432000px;}
.ws37{word-spacing:10.440000px;}
.ws12{word-spacing:14.976000px;}
.ws25{word-spacing:16.344000px;}
.ws3e{word-spacing:17.568000px;}
.ws4e{word-spacing:18.936000px;}
.ws60{word-spacing:25.344000px;}
.ws30{word-spacing:27.000000px;}
.ws26{word-spacing:31.896000px;}
.ws15{word-spacing:33.621000px;}
.ws4{word-spacing:36.360000px;}
.ws35{word-spacing:37.080000px;}
.ws24{word-spacing:38.808000px;}
.ws3c{word-spacing:44.712000px;}
.ws72{word-spacing:46.440000px;}
.ws68{word-spacing:48.168000px;}
.ws70{word-spacing:49.392000px;}
.ws4a{word-spacing:67.608000px;}
.ws67{word-spacing:71.280000px;}
.ws5d{word-spacing:72.648000px;}
.ws69{word-spacing:79.848000px;}
.ws31{word-spacing:82.728000px;}
.ws78{word-spacing:86.760000px;}
.ws55{word-spacing:96.912000px;}
.ws36{word-spacing:106.632000px;}
.ws6b{word-spacing:121.536000px;}
.ws29{word-spacing:128.376000px;}
.ws32{word-spacing:205.056000px;}
.ws71{word-spacing:245.592000px;}
.ws16{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._5{margin-left:-18.720000px;}
._13{margin-left:-10.944000px;}
._12{margin-left:-9.624000px;}
._d{margin-left:-8.232000px;}
._7{margin-left:-6.600000px;}
._6{margin-left:-5.496000px;}
._2{margin-left:-4.386000px;}
._9{margin-left:-3.276000px;}
._4{margin-left:-2.256000px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._b{width:2.424000px;}
._a{width:3.744000px;}
._10{width:5.760000px;}
._14{width:7.444800px;}
._8{width:8.589600px;}
._f{width:9.720000px;}
._3{width:65.282400px;}
._e{width:66.319200px;}
._11{width:78.616800px;}
._c{width:199.864800px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y32{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y59{bottom:87.258150px;}
.yd4{bottom:89.412150px;}
.y28{bottom:92.443050px;}
.ya9{bottom:100.944150px;}
.y7f{bottom:110.376150px;}
.y58{bottom:110.514150px;}
.yd3{bottom:111.912150px;}
.y27{bottom:114.943050px;}
.ya8{bottom:122.688150px;}
.y7e{bottom:133.632150px;}
.yd2{bottom:133.656150px;}
.y57{bottom:133.770150px;}
.y26{bottom:137.443050px;}
.ya7{bottom:144.432150px;}
.yd1{bottom:154.662150px;}
.y7d{bottom:156.888150px;}
.y56{bottom:157.026150px;}
.y25{bottom:159.943050px;}
.ya6{bottom:166.176150px;}
.yd0{bottom:175.668150px;}
.y7c{bottom:180.144150px;}
.y55{bottom:180.282150px;}
.y24{bottom:182.443050px;}
.ya5{bottom:187.920150px;}
.ycf{bottom:196.674150px;}
.y7b{bottom:203.400150px;}
.y54{bottom:203.538150px;}
.y23{bottom:204.943050px;}
.ya4{bottom:209.664150px;}
.yce{bottom:217.680150px;}
.y7a{bottom:226.656150px;}
.y53{bottom:226.794150px;}
.y22{bottom:227.443050px;}
.ya3{bottom:231.408150px;}
.ycd{bottom:238.686150px;}
.y79{bottom:249.912150px;}
.y21{bottom:249.943050px;}
.y52{bottom:250.050150px;}
.ya2{bottom:253.152150px;}
.ycc{bottom:259.692150px;}
.y20{bottom:272.443050px;}
.y78{bottom:273.168150px;}
.y51{bottom:273.306150px;}
.ya1{bottom:274.896150px;}
.ycb{bottom:280.698150px;}
.y1f{bottom:294.943050px;}
.y77{bottom:296.424150px;}
.y50{bottom:296.562150px;}
.ya0{bottom:296.640150px;}
.yca{bottom:301.704150px;}
.y9f{bottom:318.384150px;}
.y76{bottom:319.680150px;}
.yc9{bottom:322.710150px;}
.y1e{bottom:339.943050px;}
.y9e{bottom:340.128150px;}
.y75{bottom:342.936150px;}
.y4f{bottom:343.038150px;}
.yc7{bottom:343.704150px;}
.yc8{bottom:343.710150px;}
.y9d{bottom:361.872150px;}
.y1d{bottom:362.443050px;}
.y74{bottom:366.192150px;}
.y4e{bottom:366.294150px;}
.yc6{bottom:366.960150px;}
.y9c{bottom:383.616150px;}
.y1c{bottom:384.943050px;}
.y73{bottom:389.448150px;}
.y4d{bottom:389.550150px;}
.yc5{bottom:402.210150px;}
.y9b{bottom:405.360150px;}
.y1b{bottom:407.443050px;}
.y72{bottom:412.704150px;}
.y4c{bottom:412.806150px;}
.yc4{bottom:423.858150px;}
.y9a{bottom:427.104150px;}
.y1a{bottom:429.943050px;}
.y71{bottom:435.960150px;}
.y4b{bottom:436.062150px;}
.yc3{bottom:444.864150px;}
.y99{bottom:448.848150px;}
.y19{bottom:452.443050px;}
.y31{bottom:456.139950px;}
.y70{bottom:459.216150px;}
.y4a{bottom:459.312150px;}
.yc2{bottom:465.870150px;}
.y98{bottom:470.592150px;}
.y18{bottom:474.943050px;}
.y30{bottom:478.639950px;}
.y6f{bottom:482.472150px;}
.y49{bottom:482.508150px;}
.yc1{bottom:486.876150px;}
.y97{bottom:492.336150px;}
.y17{bottom:497.443050px;}
.y2f{bottom:501.139950px;}
.y6e{bottom:505.728150px;}
.y48{bottom:505.764150px;}
.yc0{bottom:507.882150px;}
.y96{bottom:514.080150px;}
.y16{bottom:519.943050px;}
.ybf{bottom:528.888150px;}
.y6d{bottom:528.984150px;}
.y47{bottom:529.020150px;}
.y95{bottom:535.824150px;}
.y2e{bottom:541.639950px;}
.ybe{bottom:549.894150px;}
.y6c{bottom:552.240150px;}
.y46{bottom:552.276150px;}
.y94{bottom:557.568150px;}
.y15{bottom:564.943050px;}
.ybd{bottom:570.900150px;}
.y6b{bottom:575.496150px;}
.y45{bottom:575.532150px;}
.y93{bottom:579.312150px;}
.y2d{bottom:586.639950px;}
.y14{bottom:587.443050px;}
.ybc{bottom:591.906150px;}
.y6a{bottom:598.752150px;}
.y44{bottom:598.788150px;}
.y92{bottom:601.056150px;}
.y13{bottom:609.943050px;}
.ybb{bottom:612.912150px;}
.y69{bottom:622.008150px;}
.y43{bottom:622.044150px;}
.y91{bottom:622.800150px;}
.y2c{bottom:627.139950px;}
.y12{bottom:632.443050px;}
.yba{bottom:633.918150px;}
.y90{bottom:644.544150px;}
.y68{bottom:645.264150px;}
.y42{bottom:645.300150px;}
.yb9{bottom:654.924150px;}
.y11{bottom:654.943050px;}
.y2b{bottom:663.139950px;}
.y8f{bottom:666.288150px;}
.y67{bottom:668.520150px;}
.y41{bottom:668.556150px;}
.yb8{bottom:675.930150px;}
.y10{bottom:677.443050px;}
.y8e{bottom:688.032150px;}
.y66{bottom:691.776150px;}
.y40{bottom:691.812150px;}
.yb7{bottom:696.936150px;}
.y2a{bottom:699.139950px;}
.yf{bottom:699.943050px;}
.y8d{bottom:709.776150px;}
.y65{bottom:715.032150px;}
.yb6{bottom:717.942150px;}
.ye{bottom:722.443050px;}
.y8c{bottom:731.520150px;}
.y29{bottom:735.139950px;}
.y3f{bottom:738.246150px;}
.y64{bottom:738.288150px;}
.yb5{bottom:738.948150px;}
.yd{bottom:744.943050px;}
.y8b{bottom:753.264150px;}
.yb4{bottom:759.954150px;}
.y3e{bottom:761.502150px;}
.y63{bottom:761.544150px;}
.yc{bottom:767.443050px;}
.y8a{bottom:775.008150px;}
.yb3{bottom:783.210150px;}
.y3d{bottom:784.758150px;}
.y62{bottom:784.800150px;}
.yb{bottom:789.943050px;}
.y89{bottom:796.752150px;}
.y3c{bottom:808.014150px;}
.y61{bottom:808.056150px;}
.y88{bottom:818.496150px;}
.yb2{bottom:818.730150px;}
.y3b{bottom:831.270150px;}
.y60{bottom:831.312150px;}
.ya{bottom:834.929550px;}
.y87{bottom:840.240150px;}
.yb1{bottom:841.986150px;}
.y3a{bottom:854.526150px;}
.y5f{bottom:854.550150px;}
.y9{bottom:855.934050px;}
.y86{bottom:861.984150px;}
.yb0{bottom:863.730150px;}
.y8{bottom:876.938550px;}
.y39{bottom:877.782150px;}
.y5e{bottom:877.806150px;}
.y85{bottom:883.728150px;}
.yaf{bottom:885.474150px;}
.y7{bottom:897.943050px;}
.y38{bottom:901.038150px;}
.y5d{bottom:901.062150px;}
.y84{bottom:905.472150px;}
.yae{bottom:907.218150px;}
.y6{bottom:918.943050px;}
.y37{bottom:924.294150px;}
.y83{bottom:927.216150px;}
.yad{bottom:928.962150px;}
.y5c{bottom:947.496150px;}
.y36{bottom:947.550150px;}
.y82{bottom:948.960150px;}
.yac{bottom:950.706150px;}
.y5{bottom:968.443050px;}
.y81{bottom:970.704150px;}
.y5b{bottom:970.752150px;}
.y35{bottom:970.806150px;}
.yab{bottom:972.450150px;}
.y80{bottom:993.960150px;}
.y5a{bottom:994.008150px;}
.y34{bottom:994.062150px;}
.yaa{bottom:994.194150px;}
.y4{bottom:1024.374150px;}
.y33{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.ha{height:40.634766px;}
.hb{height:41.660156px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.hd{height:52.492611px;}
.hc{height:53.467611px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xe{left:65.202600px;}
.xd{left:71.253150px;}
.xc{left:73.559100px;}
.xb{left:224.187900px;}
.x5{left:239.884650px;}
.x9{left:312.739350px;}
.x8{left:343.412850px;}
.xf{left:400.019550px;}
.x4{left:412.272150px;}
.x11{left:421.195650px;}
.x6{left:537.463200px;}
.xa{left:585.236850px;}
.x3{left:614.196150px;}
.x7{left:621.487350px;}
.x2{left:632.875800px;}
.x10{left:710.580450px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:58.944000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws3a{word-spacing:-53.376000pt;}
.ws10{word-spacing:-53.312000pt;}
.ws2f{word-spacing:-50.176000pt;}
.ws42{word-spacing:-49.984000pt;}
.ws75{word-spacing:-48.832000pt;}
.ws1f{word-spacing:-48.064000pt;}
.wsa{word-spacing:-47.744000pt;}
.ws65{word-spacing:-46.848000pt;}
.ws2e{word-spacing:-44.992000pt;}
.ws61{word-spacing:-44.928000pt;}
.ws41{word-spacing:-44.224000pt;}
.ws8{word-spacing:-43.776000pt;}
.ws6c{word-spacing:-43.392000pt;}
.ws21{word-spacing:-43.264000pt;}
.ws6a{word-spacing:-43.136000pt;}
.ws11{word-spacing:-43.008000pt;}
.ws18{word-spacing:-42.944000pt;}
.ws7{word-spacing:-42.240000pt;}
.ws27{word-spacing:-41.600000pt;}
.ws79{word-spacing:-41.408000pt;}
.ws6f{word-spacing:-40.704000pt;}
.ws50{word-spacing:-40.448000pt;}
.ws56{word-spacing:-40.134400pt;}
.ws5c{word-spacing:-39.872000pt;}
.ws2d{word-spacing:-39.744000pt;}
.ws62{word-spacing:-37.312000pt;}
.ws1c{word-spacing:-37.056000pt;}
.ws63{word-spacing:-36.928000pt;}
.ws53{word-spacing:-36.288000pt;}
.ws57{word-spacing:-35.328000pt;}
.ws5a{word-spacing:-35.264000pt;}
.ws45{word-spacing:-34.656000pt;}
.ws4d{word-spacing:-33.920000pt;}
.wsd{word-spacing:-33.088000pt;}
.ws39{word-spacing:-32.832000pt;}
.ws52{word-spacing:-32.768000pt;}
.ws19{word-spacing:-30.528000pt;}
.ws6{word-spacing:-29.760000pt;}
.ws54{word-spacing:-28.736000pt;}
.ws77{word-spacing:-28.416000pt;}
.ws49{word-spacing:-27.628800pt;}
.wse{word-spacing:-27.264000pt;}
.ws4f{word-spacing:-27.200000pt;}
.ws2a{word-spacing:-27.008000pt;}
.ws48{word-spacing:-26.176000pt;}
.wsb{word-spacing:-25.856000pt;}
.ws40{word-spacing:-24.896000pt;}
.ws1d{word-spacing:-23.936000pt;}
.wsf{word-spacing:-23.552000pt;}
.ws5e{word-spacing:-23.104000pt;}
.ws74{word-spacing:-21.248000pt;}
.ws59{word-spacing:-20.032000pt;}
.ws1e{word-spacing:-17.792000pt;}
.ws58{word-spacing:-16.576000pt;}
.ws2b{word-spacing:-15.552000pt;}
.ws3f{word-spacing:-14.464000pt;}
.ws23{word-spacing:-14.208000pt;}
.ws5f{word-spacing:-13.440000pt;}
.ws51{word-spacing:-12.416000pt;}
.ws73{word-spacing:-12.032000pt;}
.ws33{word-spacing:-11.648000pt;}
.ws66{word-spacing:-11.456000pt;}
.ws28{word-spacing:-11.136000pt;}
.ws76{word-spacing:-10.816000pt;}
.ws44{word-spacing:-10.560000pt;}
.ws4c{word-spacing:-10.048000pt;}
.ws34{word-spacing:-8.960000pt;}
.ws43{word-spacing:-6.720000pt;}
.ws38{word-spacing:-6.080000pt;}
.ws9{word-spacing:-5.971200pt;}
.ws46{word-spacing:-5.120000pt;}
.ws17{word-spacing:-5.049600pt;}
.wsc{word-spacing:-2.688000pt;}
.ws3b{word-spacing:-1.600000pt;}
.ws5b{word-spacing:-0.896000pt;}
.ws13{word-spacing:-0.053333pt;}
.ws14{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.256000pt;}
.ws1{word-spacing:0.640000pt;}
.ws2{word-spacing:1.920000pt;}
.ws22{word-spacing:2.240000pt;}
.ws1b{word-spacing:2.944000pt;}
.ws64{word-spacing:4.672000pt;}
.ws4b{word-spacing:5.248000pt;}
.ws3d{word-spacing:5.760000pt;}
.ws20{word-spacing:5.952000pt;}
.ws6e{word-spacing:6.400000pt;}
.ws1a{word-spacing:6.528000pt;}
.ws5{word-spacing:7.296000pt;}
.ws2c{word-spacing:8.192000pt;}
.ws47{word-spacing:8.384000pt;}
.ws37{word-spacing:9.280000pt;}
.ws12{word-spacing:13.312000pt;}
.ws25{word-spacing:14.528000pt;}
.ws3e{word-spacing:15.616000pt;}
.ws4e{word-spacing:16.832000pt;}
.ws60{word-spacing:22.528000pt;}
.ws30{word-spacing:24.000000pt;}
.ws26{word-spacing:28.352000pt;}
.ws15{word-spacing:29.885333pt;}
.ws4{word-spacing:32.320000pt;}
.ws35{word-spacing:32.960000pt;}
.ws24{word-spacing:34.496000pt;}
.ws3c{word-spacing:39.744000pt;}
.ws72{word-spacing:41.280000pt;}
.ws68{word-spacing:42.816000pt;}
.ws70{word-spacing:43.904000pt;}
.ws4a{word-spacing:60.096000pt;}
.ws67{word-spacing:63.360000pt;}
.ws5d{word-spacing:64.576000pt;}
.ws69{word-spacing:70.976000pt;}
.ws31{word-spacing:73.536000pt;}
.ws78{word-spacing:77.120000pt;}
.ws55{word-spacing:86.144000pt;}
.ws36{word-spacing:94.784000pt;}
.ws6b{word-spacing:108.032000pt;}
.ws29{word-spacing:114.112000pt;}
.ws32{word-spacing:182.272000pt;}
.ws71{word-spacing:218.304000pt;}
.ws16{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._5{margin-left:-16.640000pt;}
._13{margin-left:-9.728000pt;}
._12{margin-left:-8.554667pt;}
._d{margin-left:-7.317333pt;}
._7{margin-left:-5.866667pt;}
._6{margin-left:-4.885333pt;}
._2{margin-left:-3.898667pt;}
._9{margin-left:-2.912000pt;}
._4{margin-left:-2.005333pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._b{width:2.154667pt;}
._a{width:3.328000pt;}
._10{width:5.120000pt;}
._14{width:6.617600pt;}
._8{width:7.635200pt;}
._f{width:8.640000pt;}
._3{width:58.028800pt;}
._e{width:58.950400pt;}
._11{width:69.881600pt;}
._c{width:177.657600pt;}
.fs1{font-size:42.666667pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y32{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y59{bottom:77.562800pt;}
.yd4{bottom:79.477467pt;}
.y28{bottom:82.171600pt;}
.ya9{bottom:89.728133pt;}
.y7f{bottom:98.112133pt;}
.y58{bottom:98.234800pt;}
.yd3{bottom:99.477467pt;}
.y27{bottom:102.171600pt;}
.ya8{bottom:109.056133pt;}
.y7e{bottom:118.784133pt;}
.yd2{bottom:118.805467pt;}
.y57{bottom:118.906800pt;}
.y26{bottom:122.171600pt;}
.ya7{bottom:128.384133pt;}
.yd1{bottom:137.477467pt;}
.y7d{bottom:139.456133pt;}
.y56{bottom:139.578800pt;}
.y25{bottom:142.171600pt;}
.ya6{bottom:147.712133pt;}
.yd0{bottom:156.149467pt;}
.y7c{bottom:160.128133pt;}
.y55{bottom:160.250800pt;}
.y24{bottom:162.171600pt;}
.ya5{bottom:167.040133pt;}
.ycf{bottom:174.821467pt;}
.y7b{bottom:180.800133pt;}
.y54{bottom:180.922800pt;}
.y23{bottom:182.171600pt;}
.ya4{bottom:186.368133pt;}
.yce{bottom:193.493467pt;}
.y7a{bottom:201.472133pt;}
.y53{bottom:201.594800pt;}
.y22{bottom:202.171600pt;}
.ya3{bottom:205.696133pt;}
.ycd{bottom:212.165467pt;}
.y79{bottom:222.144133pt;}
.y21{bottom:222.171600pt;}
.y52{bottom:222.266800pt;}
.ya2{bottom:225.024133pt;}
.ycc{bottom:230.837467pt;}
.y20{bottom:242.171600pt;}
.y78{bottom:242.816133pt;}
.y51{bottom:242.938800pt;}
.ya1{bottom:244.352133pt;}
.ycb{bottom:249.509467pt;}
.y1f{bottom:262.171600pt;}
.y77{bottom:263.488133pt;}
.y50{bottom:263.610800pt;}
.ya0{bottom:263.680133pt;}
.yca{bottom:268.181467pt;}
.y9f{bottom:283.008133pt;}
.y76{bottom:284.160133pt;}
.yc9{bottom:286.853467pt;}
.y1e{bottom:302.171600pt;}
.y9e{bottom:302.336133pt;}
.y75{bottom:304.832133pt;}
.y4f{bottom:304.922800pt;}
.yc7{bottom:305.514800pt;}
.yc8{bottom:305.520133pt;}
.y9d{bottom:321.664133pt;}
.y1d{bottom:322.171600pt;}
.y74{bottom:325.504133pt;}
.y4e{bottom:325.594800pt;}
.yc6{bottom:326.186800pt;}
.y9c{bottom:340.992133pt;}
.y1c{bottom:342.171600pt;}
.y73{bottom:346.176133pt;}
.y4d{bottom:346.266800pt;}
.yc5{bottom:357.520133pt;}
.y9b{bottom:360.320133pt;}
.y1b{bottom:362.171600pt;}
.y72{bottom:366.848133pt;}
.y4c{bottom:366.938800pt;}
.yc4{bottom:376.762800pt;}
.y9a{bottom:379.648133pt;}
.y1a{bottom:382.171600pt;}
.y71{bottom:387.520133pt;}
.y4b{bottom:387.610800pt;}
.yc3{bottom:395.434800pt;}
.y99{bottom:398.976133pt;}
.y19{bottom:402.171600pt;}
.y31{bottom:405.457733pt;}
.y70{bottom:408.192133pt;}
.y4a{bottom:408.277467pt;}
.yc2{bottom:414.106800pt;}
.y98{bottom:418.304133pt;}
.y18{bottom:422.171600pt;}
.y30{bottom:425.457733pt;}
.y6f{bottom:428.864133pt;}
.y49{bottom:428.896133pt;}
.yc1{bottom:432.778800pt;}
.y97{bottom:437.632133pt;}
.y17{bottom:442.171600pt;}
.y2f{bottom:445.457733pt;}
.y6e{bottom:449.536133pt;}
.y48{bottom:449.568133pt;}
.yc0{bottom:451.450800pt;}
.y96{bottom:456.960133pt;}
.y16{bottom:462.171600pt;}
.ybf{bottom:470.122800pt;}
.y6d{bottom:470.208133pt;}
.y47{bottom:470.240133pt;}
.y95{bottom:476.288133pt;}
.y2e{bottom:481.457733pt;}
.ybe{bottom:488.794800pt;}
.y6c{bottom:490.880133pt;}
.y46{bottom:490.912133pt;}
.y94{bottom:495.616133pt;}
.y15{bottom:502.171600pt;}
.ybd{bottom:507.466800pt;}
.y6b{bottom:511.552133pt;}
.y45{bottom:511.584133pt;}
.y93{bottom:514.944133pt;}
.y2d{bottom:521.457733pt;}
.y14{bottom:522.171600pt;}
.ybc{bottom:526.138800pt;}
.y6a{bottom:532.224133pt;}
.y44{bottom:532.256133pt;}
.y92{bottom:534.272133pt;}
.y13{bottom:542.171600pt;}
.ybb{bottom:544.810800pt;}
.y69{bottom:552.896133pt;}
.y43{bottom:552.928133pt;}
.y91{bottom:553.600133pt;}
.y2c{bottom:557.457733pt;}
.y12{bottom:562.171600pt;}
.yba{bottom:563.482800pt;}
.y90{bottom:572.928133pt;}
.y68{bottom:573.568133pt;}
.y42{bottom:573.600133pt;}
.yb9{bottom:582.154800pt;}
.y11{bottom:582.171600pt;}
.y2b{bottom:589.457733pt;}
.y8f{bottom:592.256133pt;}
.y67{bottom:594.240133pt;}
.y41{bottom:594.272133pt;}
.yb8{bottom:600.826800pt;}
.y10{bottom:602.171600pt;}
.y8e{bottom:611.584133pt;}
.y66{bottom:614.912133pt;}
.y40{bottom:614.944133pt;}
.yb7{bottom:619.498800pt;}
.y2a{bottom:621.457733pt;}
.yf{bottom:622.171600pt;}
.y8d{bottom:630.912133pt;}
.y65{bottom:635.584133pt;}
.yb6{bottom:638.170800pt;}
.ye{bottom:642.171600pt;}
.y8c{bottom:650.240133pt;}
.y29{bottom:653.457733pt;}
.y3f{bottom:656.218800pt;}
.y64{bottom:656.256133pt;}
.yb5{bottom:656.842800pt;}
.yd{bottom:662.171600pt;}
.y8b{bottom:669.568133pt;}
.yb4{bottom:675.514800pt;}
.y3e{bottom:676.890800pt;}
.y63{bottom:676.928133pt;}
.yc{bottom:682.171600pt;}
.y8a{bottom:688.896133pt;}
.yb3{bottom:696.186800pt;}
.y3d{bottom:697.562800pt;}
.y62{bottom:697.600133pt;}
.yb{bottom:702.171600pt;}
.y89{bottom:708.224133pt;}
.y3c{bottom:718.234800pt;}
.y61{bottom:718.272133pt;}
.y88{bottom:727.552133pt;}
.yb2{bottom:727.760133pt;}
.y3b{bottom:738.906800pt;}
.y60{bottom:738.944133pt;}
.ya{bottom:742.159600pt;}
.y87{bottom:746.880133pt;}
.yb1{bottom:748.432133pt;}
.y3a{bottom:759.578800pt;}
.y5f{bottom:759.600133pt;}
.y9{bottom:760.830267pt;}
.y86{bottom:766.208133pt;}
.yb0{bottom:767.760133pt;}
.y8{bottom:779.500933pt;}
.y39{bottom:780.250800pt;}
.y5e{bottom:780.272133pt;}
.y85{bottom:785.536133pt;}
.yaf{bottom:787.088133pt;}
.y7{bottom:798.171600pt;}
.y38{bottom:800.922800pt;}
.y5d{bottom:800.944133pt;}
.y84{bottom:804.864133pt;}
.yae{bottom:806.416133pt;}
.y6{bottom:816.838267pt;}
.y37{bottom:821.594800pt;}
.y83{bottom:824.192133pt;}
.yad{bottom:825.744133pt;}
.y5c{bottom:842.218800pt;}
.y36{bottom:842.266800pt;}
.y82{bottom:843.520133pt;}
.yac{bottom:845.072133pt;}
.y5{bottom:860.838267pt;}
.y81{bottom:862.848133pt;}
.y5b{bottom:862.890800pt;}
.y35{bottom:862.938800pt;}
.yab{bottom:864.400133pt;}
.y80{bottom:883.520133pt;}
.y5a{bottom:883.562800pt;}
.y34{bottom:883.610800pt;}
.yaa{bottom:883.728133pt;}
.y4{bottom:910.554800pt;}
.y33{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.ha{height:36.119792pt;}
.hb{height:37.031250pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.hd{height:46.660099pt;}
.hc{height:47.526765pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xe{left:57.957867pt;}
.xd{left:63.336133pt;}
.xc{left:65.385867pt;}
.xb{left:199.278133pt;}
.x5{left:213.230800pt;}
.x9{left:277.990533pt;}
.x8{left:305.255867pt;}
.xf{left:355.572933pt;}
.x4{left:366.464133pt;}
.x11{left:374.396133pt;}
.x6{left:477.745067pt;}
.xa{left:520.210533pt;}
.x3{left:545.952133pt;}
.x7{left:552.433200pt;}
.x2{left:562.556267pt;}
.x10{left:631.627067pt;}
}




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