
    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_ea72d525a7d8f5ac6155436a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905762;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_b714fd791ae1002f6dda6668.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;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_33767ab1dde72c4bc819552f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_83755a5c1ac2f6ccce5efd7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;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_9f056dfe8ef38de09b88cbcc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8b8a8ce283938c21368a79c3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_ebcc6cca8ac7867909e44246.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_2c8a09a67b076fc51bd45350.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_671182f6eebf75090319b34f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8eda340cadeb62220ec57e0d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.705078;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_5e876c9bf925fff8d2e8aa92.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.069336;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_3a020cf3cf491f29c65bd1c9.woff2')format("woff");}.ffc{font-family:ffc;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.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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls42{letter-spacing:-13.320000px;}
.ls45{letter-spacing:-12.870000px;}
.ls50{letter-spacing:-11.115000px;}
.ls28{letter-spacing:-10.845000px;}
.ls52{letter-spacing:-10.215000px;}
.ls2a{letter-spacing:-9.990000px;}
.ls51{letter-spacing:-9.450000px;}
.ls29{letter-spacing:-9.180000px;}
.ls44{letter-spacing:-8.685000px;}
.ls27{letter-spacing:-8.325000px;}
.ls43{letter-spacing:-4.995000px;}
.lsb{letter-spacing:-0.330000px;}
.ls4f{letter-spacing:-0.300000px;}
.ls14{letter-spacing:-0.264000px;}
.ls1b{letter-spacing:-0.198000px;}
.ls1c{letter-spacing:-0.132000px;}
.ls15{letter-spacing:-0.066000px;}
.ls4{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000600px;}
.ls40{letter-spacing:0.007800px;}
.ls2b{letter-spacing:0.009000px;}
.ls26{letter-spacing:0.010200px;}
.ls24{letter-spacing:0.045000px;}
.ls3{letter-spacing:0.048000px;}
.ls23{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.066000px;}
.ls21{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.132000px;}
.ls20{letter-spacing:0.135000px;}
.ls1f{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.198000px;}
.ls35{letter-spacing:0.240000px;}
.lse{letter-spacing:0.264000px;}
.ls34{letter-spacing:0.300000px;}
.ls32{letter-spacing:0.309000px;}
.ls33{letter-spacing:0.315000px;}
.ls6{letter-spacing:0.330000px;}
.ls1e{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.374400px;}
.ls3e{letter-spacing:0.376200px;}
.ls4a{letter-spacing:0.378600px;}
.lsa{letter-spacing:0.396000px;}
.ls13{letter-spacing:0.462000px;}
.ls37{letter-spacing:0.477000px;}
.ls38{letter-spacing:0.480000px;}
.lsd{letter-spacing:0.528000px;}
.ls48{letter-spacing:0.600000px;}
.ls47{letter-spacing:0.630000px;}
.ls46{letter-spacing:0.633000px;}
.ls8{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.675000px;}
.ls4c{letter-spacing:0.693000px;}
.ls53{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.726000px;}
.ls17{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.858000px;}
.ls1a{letter-spacing:0.924000px;}
.ls3a{letter-spacing:0.945000px;}
.ls2f{letter-spacing:0.960000px;}
.ls39{letter-spacing:0.965400px;}
.ls18{letter-spacing:1.122000px;}
.ls19{letter-spacing:1.188000px;}
.ls3c{letter-spacing:1.500000px;}
.ls16{letter-spacing:1.716000px;}
.ls3d{letter-spacing:2.027400px;}
.ls3f{letter-spacing:2.224200px;}
.ls11{letter-spacing:3.102000px;}
.ls2d{letter-spacing:3.285000px;}
.ls2c{letter-spacing:3.294600px;}
.ls2e{letter-spacing:3.300000px;}
.ls41{letter-spacing:6.570600px;}
.ls22{letter-spacing:7.513800px;}
.ls25{letter-spacing:7.538400px;}
.ls36{letter-spacing:7.729800px;}
.ls4b{letter-spacing:7.868400px;}
.ls49{letter-spacing:8.153400px;}
.ls4e{letter-spacing:8.184000px;}
.ls3b{letter-spacing:8.455800px;}
.ls30{letter-spacing:8.487000px;}
.ls1{letter-spacing:10.656000px;}
.ls2{letter-spacing:12.510000px;}
.ls5{letter-spacing:1341.729600px;}
.ls0{letter-spacing:1890.921600px;}
.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;}
}
.ws5{word-spacing:-17.358000px;}
.ws4{word-spacing:-16.632000px;}
.ws6{word-spacing:-16.302000px;}
.ws12{word-spacing:-15.960000px;}
.ws21{word-spacing:-15.720000px;}
.ws1e{word-spacing:-15.660000px;}
.ws1f{word-spacing:-15.360000px;}
.ws15{word-spacing:-15.240000px;}
.wse{word-spacing:-15.060000px;}
.ws1{word-spacing:-15.000000px;}
.ws1a{word-spacing:-14.700000px;}
.ws11{word-spacing:-14.535000px;}
.ws18{word-spacing:-12.195000px;}
.ws2{word-spacing:-12.000000px;}
.ws20{word-spacing:-11.925000px;}
.ws1c{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.610000px;}
.ws14{word-spacing:-11.565000px;}
.ws8{word-spacing:-11.385000px;}
.wsd{word-spacing:-11.295000px;}
.wsf{word-spacing:-11.250000px;}
.ws0{word-spacing:-9.324000px;}
.ws13{word-spacing:-6.255000px;}
.ws3{word-spacing:0.000000px;}
.ws9{word-spacing:5.400000px;}
.ws16{word-spacing:6.570000px;}
.wsb{word-spacing:7.110000px;}
.ws1b{word-spacing:7.335000px;}
.wsc{word-spacing:8.730000px;}
.ws1d{word-spacing:9.810000px;}
.wsa{word-spacing:10.440000px;}
.ws19{word-spacing:10.665000px;}
.ws17{word-spacing:14.940000px;}
.ws10{word-spacing:15.390000px;}
._10{margin-left:-882.160200px;}
._11{margin-left:-410.413800px;}
._12{margin-left:-253.458600px;}
._d{margin-left:-16.594200px;}
._1{margin-left:-10.662600px;}
._5{margin-left:-9.324000px;}
._f{margin-left:-2.904000px;}
._b{margin-left:-1.320000px;}
._3{width:1.302000px;}
._4{width:2.940000px;}
._6{width:4.356000px;}
._7{width:6.000000px;}
._8{width:7.986000px;}
._9{width:9.456000px;}
._e{width:10.476000px;}
._2{width:11.676000px;}
._0{width:13.344000px;}
._13{width:29.607000px;}
._14{width:31.107000px;}
._a{width:44.739600px;}
._c{width:1157.565600px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:27.000000px;}
.fs0{font-size:36.000000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fsb{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y1{bottom:85.039350px;}
.y35{bottom:85.039500px;}
.y115{bottom:85.039800px;}
.y11{bottom:119.055150px;}
.y81{bottom:119.579400px;}
.y56{bottom:119.930850px;}
.yea{bottom:120.231900px;}
.ya4{bottom:120.380400px;}
.yc9{bottom:120.811050px;}
.y99{bottom:120.970050px;}
.y10{bottom:131.055150px;}
.y80{bottom:137.175900px;}
.y114{bottom:137.345250px;}
.y55{bottom:137.527350px;}
.ya3{bottom:137.976900px;}
.ye9{bottom:138.047400px;}
.yc8{bottom:138.407550px;}
.yf{bottom:149.433000px;}
.y7f{bottom:154.772400px;}
.y54{bottom:155.123850px;}
.ya2{bottom:155.573400px;}
.y113{bottom:155.635500px;}
.ye8{bottom:155.862900px;}
.yc7{bottom:156.004050px;}
.ye{bottom:167.811000px;}
.y7e{bottom:172.368900px;}
.y53{bottom:172.720350px;}
.ya1{bottom:173.169900px;}
.yc6{bottom:173.600550px;}
.ye7{bottom:173.678400px;}
.y112{bottom:173.925600px;}
.yd{bottom:184.062900px;}
.y7d{bottom:189.965400px;}
.y52{bottom:190.316850px;}
.ya0{bottom:190.766400px;}
.yc5{bottom:191.197050px;}
.ye6{bottom:191.493900px;}
.y111{bottom:192.215700px;}
.yc{bottom:195.243900px;}
.yb{bottom:206.424900px;}
.y7c{bottom:207.561900px;}
.y51{bottom:207.913350px;}
.yc4{bottom:208.793550px;}
.ye5{bottom:209.309400px;}
.y110{bottom:210.505800px;}
.y9f{bottom:217.160250px;}
.ya{bottom:223.983900px;}
.y7b{bottom:225.158400px;}
.y50{bottom:225.509850px;}
.yc3{bottom:226.390050px;}
.ye4{bottom:227.124900px;}
.y10f{bottom:228.796050px;}
.y9{bottom:235.164900px;}
.y7a{bottom:242.754900px;}
.y4f{bottom:243.106350px;}
.ye3{bottom:244.940400px;}
.y8{bottom:246.345900px;}
.y10e{bottom:247.086150px;}
.y79{bottom:260.351400px;}
.yc2{bottom:261.581250px;}
.ye2{bottom:262.755900px;}
.y10d{bottom:265.376250px;}
.y34{bottom:267.294450px;}
.y4e{bottom:269.500200px;}
.y78{bottom:277.947900px;}
.ye1{bottom:280.571550px;}
.y9e{bottom:283.258950px;}
.y10c{bottom:283.666500px;}
.y4d{bottom:287.096700px;}
.y33{bottom:289.680750px;}
.ye0{bottom:298.387050px;}
.y9d{bottom:299.245950px;}
.y10b{bottom:301.956600px;}
.y32{bottom:304.073250px;}
.y4c{bottom:304.693200px;}
.y75{bottom:305.571450px;}
.y77{bottom:313.138950px;}
.yc1{bottom:314.367000px;}
.y98{bottom:314.927850px;}
.ydf{bottom:316.202550px;}
.y31{bottom:318.465750px;}
.y10a{bottom:320.246700px;}
.y4b{bottom:322.289700px;}
.y74{bottom:323.167950px;}
.yc0{bottom:331.963500px;}
.y97{bottom:332.524350px;}
.y30{bottom:332.858250px;}
.yde{bottom:334.017900px;}
.y109{bottom:338.536950px;}
.y4a{bottom:339.886200px;}
.y73{bottom:340.764450px;}
.y2f{bottom:347.250750px;}
.ybf{bottom:349.560000px;}
.y96{bottom:350.120850px;}
.ydd{bottom:351.833400px;}
.y108{bottom:356.827050px;}
.y49{bottom:357.482700px;}
.y72{bottom:358.360950px;}
.y2e{bottom:361.643250px;}
.ybe{bottom:367.156500px;}
.y95{bottom:367.717350px;}
.ydc{bottom:369.648900px;}
.y48{bottom:375.079200px;}
.y107{bottom:375.117150px;}
.y71{bottom:375.957450px;}
.y2d{bottom:376.035750px;}
.ybd{bottom:384.753000px;}
.y76{bottom:385.058550px;}
.y94{bottom:385.313850px;}
.ydb{bottom:387.464400px;}
.y2c{bottom:390.428250px;}
.y47{bottom:392.675700px;}
.y106{bottom:393.407250px;}
.y70{bottom:393.553950px;}
.ybc{bottom:402.349500px;}
.y93{bottom:402.910350px;}
.y2b{bottom:404.820750px;}
.yda{bottom:405.279900px;}
.y6f{bottom:411.150450px;}
.y105{bottom:411.697500px;}
.y2a{bottom:419.213250px;}
.ybb{bottom:419.946000px;}
.y92{bottom:420.506850px;}
.yd9{bottom:423.095550px;}
.y6e{bottom:428.746950px;}
.y104{bottom:429.987600px;}
.y29{bottom:433.605750px;}
.yba{bottom:437.542500px;}
.y91{bottom:438.103350px;}
.yd8{bottom:440.910900px;}
.y46{bottom:445.461450px;}
.y6d{bottom:446.343450px;}
.y28{bottom:447.998250px;}
.y103{bottom:448.277700px;}
.yb9{bottom:455.139000px;}
.y90{bottom:455.699850px;}
.yd7{bottom:458.726550px;}
.y45{bottom:461.448450px;}
.y6c{bottom:463.939950px;}
.y102{bottom:466.567800px;}
.yb8{bottom:472.735500px;}
.yd6{bottom:476.541900px;}
.y44{bottom:477.435450px;}
.y27{bottom:478.378050px;}
.y6b{bottom:481.536450px;}
.y8f{bottom:482.093700px;}
.y101{bottom:484.857900px;}
.yb7{bottom:490.332000px;}
.y8e{bottom:499.690200px;}
.y26{bottom:500.764350px;}
.y100{bottom:503.148150px;}
.yb6{bottom:507.928500px;}
.y6a{bottom:507.930300px;}
.yd5{bottom:511.952100px;}
.y25{bottom:515.156850px;}
.y8d{bottom:517.286700px;}
.yff{bottom:521.438250px;}
.yb5{bottom:525.525000px;}
.y69{bottom:525.526800px;}
.y24{bottom:529.549350px;}
.y8c{bottom:534.883200px;}
.yfe{bottom:539.728350px;}
.yb4{bottom:543.121500px;}
.y68{bottom:543.123300px;}
.y23{bottom:543.941850px;}
.y8b{bottom:552.479700px;}
.yfd{bottom:558.018600px;}
.y22{bottom:558.334200px;}
.y67{bottom:560.719800px;}
.y12a{bottom:566.562450px;}
.yb3{bottom:569.515350px;}
.yd4{bottom:569.517150px;}
.y8a{bottom:570.076200px;}
.y21{bottom:572.726700px;}
.yfc{bottom:576.308700px;}
.y66{bottom:578.316300px;}
.y129{bottom:584.377800px;}
.yb2{bottom:587.111850px;}
.yd3{bottom:587.113650px;}
.y20{bottom:587.119200px;}
.y89{bottom:587.672700px;}
.yfb{bottom:594.598800px;}
.y65{bottom:595.912800px;}
.y1f{bottom:601.511700px;}
.y128{bottom:602.193300px;}
.yb1{bottom:604.708350px;}
.yd2{bottom:604.710150px;}
.y88{bottom:605.269200px;}
.yfa{bottom:612.889050px;}
.y64{bottom:613.509300px;}
.y1e{bottom:615.904200px;}
.y127{bottom:620.008800px;}
.yb0{bottom:622.304850px;}
.yd1{bottom:622.306650px;}
.y87{bottom:622.865700px;}
.y1d{bottom:630.296700px;}
.y63{bottom:631.105800px;}
.yf9{bottom:631.179150px;}
.y126{bottom:637.824300px;}
.y9c{bottom:639.665700px;}
.yaf{bottom:639.901350px;}
.y86{bottom:640.462200px;}
.y1c{bottom:644.689200px;}
.y62{bottom:648.702300px;}
.yf8{bottom:649.469250px;}
.y125{bottom:655.639950px;}
.y9b{bottom:657.262200px;}
.yd0{bottom:657.497700px;}
.yae{bottom:657.497850px;}
.y85{bottom:658.058700px;}
.y1b{bottom:659.081700px;}
.yf7{bottom:667.759350px;}
.y124{bottom:673.455300px;}
.y1a{bottom:673.474200px;}
.y43{bottom:674.858700px;}
.yad{bottom:675.094350px;}
.y61{bottom:675.096150px;}
.y84{bottom:675.655200px;}
.yf6{bottom:686.049600px;}
.y19{bottom:687.866850px;}
.y123{bottom:691.270800px;}
.y42{bottom:692.455200px;}
.yac{bottom:692.690850px;}
.y60{bottom:692.692650px;}
.y83{bottom:693.251700px;}
.yf5{bottom:704.339700px;}
.y122{bottom:709.086300px;}
.y41{bottom:710.051700px;}
.ycf{bottom:710.283600px;}
.yab{bottom:710.287350px;}
.y5f{bottom:710.289150px;}
.yf4{bottom:722.629800px;}
.y121{bottom:726.901950px;}
.y40{bottom:727.648200px;}
.yce{bottom:727.880100px;}
.yaa{bottom:727.883850px;}
.y5e{bottom:727.885650px;}
.y18{bottom:732.023100px;}
.yf3{bottom:740.920050px;}
.y120{bottom:744.717300px;}
.y3f{bottom:745.244700px;}
.ycd{bottom:745.476600px;}
.ya9{bottom:745.480350px;}
.y5d{bottom:745.482150px;}
.y82{bottom:746.037450px;}
.y17{bottom:756.807450px;}
.yf2{bottom:759.210150px;}
.y11f{bottom:762.532800px;}
.y3e{bottom:762.841200px;}
.ycc{bottom:763.073100px;}
.y5c{bottom:763.078650px;}
.ya8{bottom:771.874200px;}
.y16{bottom:774.403950px;}
.yf1{bottom:777.500250px;}
.y11e{bottom:780.348300px;}
.y3d{bottom:780.437700px;}
.ycb{bottom:780.669600px;}
.y5b{bottom:780.675150px;}
.yf0{bottom:795.790350px;}
.y3c{bottom:798.034200px;}
.y11d{bottom:798.163950px;}
.yca{bottom:798.266100px;}
.y15{bottom:809.008350px;}
.yef{bottom:814.080450px;}
.y3b{bottom:815.630700px;}
.ya7{bottom:815.862600px;}
.y5a{bottom:815.866200px;}
.y11c{bottom:815.979450px;}
.y14{bottom:830.608200px;}
.yee{bottom:832.370700px;}
.y3a{bottom:833.227350px;}
.ya6{bottom:833.459100px;}
.y11b{bottom:833.794950px;}
.yed{bottom:850.660800px;}
.y39{bottom:850.823700px;}
.ya5{bottom:851.055600px;}
.y11a{bottom:851.610300px;}
.y13{bottom:856.460250px;}
.y9a{bottom:868.418400px;}
.y59{bottom:868.652100px;}
.yec{bottom:868.950900px;}
.y119{bottom:869.425800px;}
.y12{bottom:881.960250px;}
.y38{bottom:886.014900px;}
.y58{bottom:886.248600px;}
.yeb{bottom:887.241000px;}
.y118{bottom:887.241450px;}
.y5{bottom:920.367150px;}
.y37{bottom:931.878150px;}
.y117{bottom:931.878450px;}
.y4{bottom:939.027750px;}
.y3{bottom:945.477750px;}
.y57{bottom:949.474500px;}
.y36{bottom:949.474650px;}
.y116{bottom:949.474950px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.890700px;}
.y6{bottom:971.390700px;}
.h4{height:19.602000px;}
.h6{height:31.206000px;}
.hd{height:32.882812px;}
.hc{height:32.976562px;}
.hb{height:33.328125px;}
.h7{height:33.435000px;}
.h5{height:35.328000px;}
.ha{height:37.098633px;}
.h2{height:41.220703px;}
.h11{height:41.660156px;}
.he{height:45.213867px;}
.h10{height:45.342773px;}
.hf{height:45.826172px;}
.h9{height:49.464844px;}
.h12{height:53.466797px;}
.h8{height:62.490234px;}
.h3{height:104.850000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:110.551200px;}
.x1{left:113.476500px;}
.x10{left:131.176200px;}
.xb{left:136.063050px;}
.x4{left:138.988350px;}
.xe{left:142.440900px;}
.x11{left:146.692950px;}
.x7{left:147.774150px;}
.x12{left:149.618250px;}
.xc{left:168.252450px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.xf{left:204.790350px;}
.x9{left:316.509450px;}
.xd{left:405.625350px;}
.x3{left:441.045750px;}
.x8{left:463.557900px;}
.x2{left:521.280900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls42{letter-spacing:-11.840000pt;}
.ls45{letter-spacing:-11.440000pt;}
.ls50{letter-spacing:-9.880000pt;}
.ls28{letter-spacing:-9.640000pt;}
.ls52{letter-spacing:-9.080000pt;}
.ls2a{letter-spacing:-8.880000pt;}
.ls51{letter-spacing:-8.400000pt;}
.ls29{letter-spacing:-8.160000pt;}
.ls44{letter-spacing:-7.720000pt;}
.ls27{letter-spacing:-7.400000pt;}
.ls43{letter-spacing:-4.440000pt;}
.lsb{letter-spacing:-0.293333pt;}
.ls4f{letter-spacing:-0.266667pt;}
.ls14{letter-spacing:-0.234667pt;}
.ls1b{letter-spacing:-0.176000pt;}
.ls1c{letter-spacing:-0.117333pt;}
.ls15{letter-spacing:-0.058667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000533pt;}
.ls40{letter-spacing:0.006933pt;}
.ls2b{letter-spacing:0.008000pt;}
.ls26{letter-spacing:0.009067pt;}
.ls24{letter-spacing:0.040000pt;}
.ls3{letter-spacing:0.042667pt;}
.ls23{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.058667pt;}
.ls21{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.117333pt;}
.ls20{letter-spacing:0.120000pt;}
.ls1f{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.176000pt;}
.ls35{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.234667pt;}
.ls34{letter-spacing:0.266667pt;}
.ls32{letter-spacing:0.274667pt;}
.ls33{letter-spacing:0.280000pt;}
.ls6{letter-spacing:0.293333pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.332800pt;}
.ls3e{letter-spacing:0.334400pt;}
.ls4a{letter-spacing:0.336533pt;}
.lsa{letter-spacing:0.352000pt;}
.ls13{letter-spacing:0.410667pt;}
.ls37{letter-spacing:0.424000pt;}
.ls38{letter-spacing:0.426667pt;}
.lsd{letter-spacing:0.469333pt;}
.ls48{letter-spacing:0.533333pt;}
.ls47{letter-spacing:0.560000pt;}
.ls46{letter-spacing:0.562667pt;}
.ls8{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.600000pt;}
.ls4c{letter-spacing:0.616000pt;}
.ls53{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.645333pt;}
.ls17{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.762667pt;}
.ls1a{letter-spacing:0.821333pt;}
.ls3a{letter-spacing:0.840000pt;}
.ls2f{letter-spacing:0.853333pt;}
.ls39{letter-spacing:0.858133pt;}
.ls18{letter-spacing:0.997333pt;}
.ls19{letter-spacing:1.056000pt;}
.ls3c{letter-spacing:1.333333pt;}
.ls16{letter-spacing:1.525333pt;}
.ls3d{letter-spacing:1.802133pt;}
.ls3f{letter-spacing:1.977067pt;}
.ls11{letter-spacing:2.757333pt;}
.ls2d{letter-spacing:2.920000pt;}
.ls2c{letter-spacing:2.928533pt;}
.ls2e{letter-spacing:2.933333pt;}
.ls41{letter-spacing:5.840533pt;}
.ls22{letter-spacing:6.678933pt;}
.ls25{letter-spacing:6.700800pt;}
.ls36{letter-spacing:6.870933pt;}
.ls4b{letter-spacing:6.994133pt;}
.ls49{letter-spacing:7.247467pt;}
.ls4e{letter-spacing:7.274667pt;}
.ls3b{letter-spacing:7.516267pt;}
.ls30{letter-spacing:7.544000pt;}
.ls1{letter-spacing:9.472000pt;}
.ls2{letter-spacing:11.120000pt;}
.ls5{letter-spacing:1192.648533pt;}
.ls0{letter-spacing:1680.819200pt;}
.ws5{word-spacing:-15.429333pt;}
.ws4{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.490667pt;}
.ws12{word-spacing:-14.186667pt;}
.ws21{word-spacing:-13.973333pt;}
.ws1e{word-spacing:-13.920000pt;}
.ws1f{word-spacing:-13.653333pt;}
.ws15{word-spacing:-13.546667pt;}
.wse{word-spacing:-13.386667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws1a{word-spacing:-13.066667pt;}
.ws11{word-spacing:-12.920000pt;}
.ws18{word-spacing:-10.840000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws20{word-spacing:-10.600000pt;}
.ws1c{word-spacing:-10.560000pt;}
.ws7{word-spacing:-10.320000pt;}
.ws14{word-spacing:-10.280000pt;}
.ws8{word-spacing:-10.120000pt;}
.wsd{word-spacing:-10.040000pt;}
.wsf{word-spacing:-10.000000pt;}
.ws0{word-spacing:-8.288000pt;}
.ws13{word-spacing:-5.560000pt;}
.ws3{word-spacing:0.000000pt;}
.ws9{word-spacing:4.800000pt;}
.ws16{word-spacing:5.840000pt;}
.wsb{word-spacing:6.320000pt;}
.ws1b{word-spacing:6.520000pt;}
.wsc{word-spacing:7.760000pt;}
.ws1d{word-spacing:8.720000pt;}
.wsa{word-spacing:9.280000pt;}
.ws19{word-spacing:9.480000pt;}
.ws17{word-spacing:13.280000pt;}
.ws10{word-spacing:13.680000pt;}
._10{margin-left:-784.142400pt;}
._11{margin-left:-364.812267pt;}
._12{margin-left:-225.296533pt;}
._d{margin-left:-14.750400pt;}
._1{margin-left:-9.477867pt;}
._5{margin-left:-8.288000pt;}
._f{margin-left:-2.581333pt;}
._b{margin-left:-1.173333pt;}
._3{width:1.157333pt;}
._4{width:2.613333pt;}
._6{width:3.872000pt;}
._7{width:5.333333pt;}
._8{width:7.098667pt;}
._9{width:8.405333pt;}
._e{width:9.312000pt;}
._2{width:10.378667pt;}
._0{width:11.861333pt;}
._13{width:26.317333pt;}
._14{width:27.650667pt;}
._a{width:39.768533pt;}
._c{width:1028.947200pt;}
.fs3{font-size:24.000000pt;}
.fs0{font-size:32.000000pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fsb{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:75.590533pt;}
.y35{bottom:75.590667pt;}
.y115{bottom:75.590933pt;}
.y11{bottom:105.826800pt;}
.y81{bottom:106.292800pt;}
.y56{bottom:106.605200pt;}
.yea{bottom:106.872800pt;}
.ya4{bottom:107.004800pt;}
.yc9{bottom:107.387600pt;}
.y99{bottom:107.528933pt;}
.y10{bottom:116.493467pt;}
.y80{bottom:121.934133pt;}
.y114{bottom:122.084667pt;}
.y55{bottom:122.246533pt;}
.ya3{bottom:122.646133pt;}
.ye9{bottom:122.708800pt;}
.yc8{bottom:123.028933pt;}
.yf{bottom:132.829333pt;}
.y7f{bottom:137.575467pt;}
.y54{bottom:137.887867pt;}
.ya2{bottom:138.287467pt;}
.y113{bottom:138.342667pt;}
.ye8{bottom:138.544800pt;}
.yc7{bottom:138.670267pt;}
.ye{bottom:149.165333pt;}
.y7e{bottom:153.216800pt;}
.y53{bottom:153.529200pt;}
.ya1{bottom:153.928800pt;}
.yc6{bottom:154.311600pt;}
.ye7{bottom:154.380800pt;}
.y112{bottom:154.600533pt;}
.yd{bottom:163.611467pt;}
.y7d{bottom:168.858133pt;}
.y52{bottom:169.170533pt;}
.ya0{bottom:169.570133pt;}
.yc5{bottom:169.952933pt;}
.ye6{bottom:170.216800pt;}
.y111{bottom:170.858400pt;}
.yc{bottom:173.550133pt;}
.yb{bottom:183.488800pt;}
.y7c{bottom:184.499467pt;}
.y51{bottom:184.811867pt;}
.yc4{bottom:185.594267pt;}
.ye5{bottom:186.052800pt;}
.y110{bottom:187.116267pt;}
.y9f{bottom:193.031333pt;}
.ya{bottom:199.096800pt;}
.y7b{bottom:200.140800pt;}
.y50{bottom:200.453200pt;}
.yc3{bottom:201.235600pt;}
.ye4{bottom:201.888800pt;}
.y10f{bottom:203.374267pt;}
.y9{bottom:209.035467pt;}
.y7a{bottom:215.782133pt;}
.y4f{bottom:216.094533pt;}
.ye3{bottom:217.724800pt;}
.y8{bottom:218.974133pt;}
.y10e{bottom:219.632133pt;}
.y79{bottom:231.423467pt;}
.yc2{bottom:232.516667pt;}
.ye2{bottom:233.560800pt;}
.y10d{bottom:235.890000pt;}
.y34{bottom:237.595067pt;}
.y4e{bottom:239.555733pt;}
.y78{bottom:247.064800pt;}
.ye1{bottom:249.396933pt;}
.y9e{bottom:251.785733pt;}
.y10c{bottom:252.148000pt;}
.y4d{bottom:255.197067pt;}
.y33{bottom:257.494000pt;}
.ye0{bottom:265.232933pt;}
.y9d{bottom:265.996400pt;}
.y10b{bottom:268.405867pt;}
.y32{bottom:270.287333pt;}
.y4c{bottom:270.838400pt;}
.y75{bottom:271.619067pt;}
.y77{bottom:278.345733pt;}
.yc1{bottom:279.437333pt;}
.y98{bottom:279.935867pt;}
.ydf{bottom:281.068933pt;}
.y31{bottom:283.080667pt;}
.y10a{bottom:284.663733pt;}
.y4b{bottom:286.479733pt;}
.y74{bottom:287.260400pt;}
.yc0{bottom:295.078667pt;}
.y97{bottom:295.577200pt;}
.y30{bottom:295.874000pt;}
.yde{bottom:296.904800pt;}
.y109{bottom:300.921733pt;}
.y4a{bottom:302.121067pt;}
.y73{bottom:302.901733pt;}
.y2f{bottom:308.667333pt;}
.ybf{bottom:310.720000pt;}
.y96{bottom:311.218533pt;}
.ydd{bottom:312.740800pt;}
.y108{bottom:317.179600pt;}
.y49{bottom:317.762400pt;}
.y72{bottom:318.543067pt;}
.y2e{bottom:321.460667pt;}
.ybe{bottom:326.361333pt;}
.y95{bottom:326.859867pt;}
.ydc{bottom:328.576800pt;}
.y48{bottom:333.403733pt;}
.y107{bottom:333.437467pt;}
.y71{bottom:334.184400pt;}
.y2d{bottom:334.254000pt;}
.ybd{bottom:342.002667pt;}
.y76{bottom:342.274267pt;}
.y94{bottom:342.501200pt;}
.ydb{bottom:344.412800pt;}
.y2c{bottom:347.047333pt;}
.y47{bottom:349.045067pt;}
.y106{bottom:349.695333pt;}
.y70{bottom:349.825733pt;}
.ybc{bottom:357.644000pt;}
.y93{bottom:358.142533pt;}
.y2b{bottom:359.840667pt;}
.yda{bottom:360.248800pt;}
.y6f{bottom:365.467067pt;}
.y105{bottom:365.953333pt;}
.y2a{bottom:372.634000pt;}
.ybb{bottom:373.285333pt;}
.y92{bottom:373.783867pt;}
.yd9{bottom:376.084933pt;}
.y6e{bottom:381.108400pt;}
.y104{bottom:382.211200pt;}
.y29{bottom:385.427333pt;}
.yba{bottom:388.926667pt;}
.y91{bottom:389.425200pt;}
.yd8{bottom:391.920800pt;}
.y46{bottom:395.965733pt;}
.y6d{bottom:396.749733pt;}
.y28{bottom:398.220667pt;}
.y103{bottom:398.469067pt;}
.yb9{bottom:404.568000pt;}
.y90{bottom:405.066533pt;}
.yd7{bottom:407.756933pt;}
.y45{bottom:410.176400pt;}
.y6c{bottom:412.391067pt;}
.y102{bottom:414.726933pt;}
.yb8{bottom:420.209333pt;}
.yd6{bottom:423.592800pt;}
.y44{bottom:424.387067pt;}
.y27{bottom:425.224933pt;}
.y6b{bottom:428.032400pt;}
.y8f{bottom:428.527733pt;}
.y101{bottom:430.984800pt;}
.yb7{bottom:435.850667pt;}
.y8e{bottom:444.169067pt;}
.y26{bottom:445.123867pt;}
.y100{bottom:447.242800pt;}
.yb6{bottom:451.492000pt;}
.y6a{bottom:451.493600pt;}
.yd5{bottom:455.068533pt;}
.y25{bottom:457.917200pt;}
.y8d{bottom:459.810400pt;}
.yff{bottom:463.500667pt;}
.yb5{bottom:467.133333pt;}
.y69{bottom:467.134933pt;}
.y24{bottom:470.710533pt;}
.y8c{bottom:475.451733pt;}
.yfe{bottom:479.758533pt;}
.yb4{bottom:482.774667pt;}
.y68{bottom:482.776267pt;}
.y23{bottom:483.503867pt;}
.y8b{bottom:491.093067pt;}
.yfd{bottom:496.016533pt;}
.y22{bottom:496.297067pt;}
.y67{bottom:498.417600pt;}
.y12a{bottom:503.611067pt;}
.yb3{bottom:506.235867pt;}
.yd4{bottom:506.237467pt;}
.y8a{bottom:506.734400pt;}
.y21{bottom:509.090400pt;}
.yfc{bottom:512.274400pt;}
.y66{bottom:514.058933pt;}
.y129{bottom:519.446933pt;}
.yb2{bottom:521.877200pt;}
.yd3{bottom:521.878800pt;}
.y20{bottom:521.883733pt;}
.y89{bottom:522.375733pt;}
.yfb{bottom:528.532267pt;}
.y65{bottom:529.700267pt;}
.y1f{bottom:534.677067pt;}
.y128{bottom:535.282933pt;}
.yb1{bottom:537.518533pt;}
.yd2{bottom:537.520133pt;}
.y88{bottom:538.017067pt;}
.yfa{bottom:544.790267pt;}
.y64{bottom:545.341600pt;}
.y1e{bottom:547.470400pt;}
.y127{bottom:551.118933pt;}
.yb0{bottom:553.159867pt;}
.yd1{bottom:553.161467pt;}
.y87{bottom:553.658400pt;}
.y1d{bottom:560.263733pt;}
.y63{bottom:560.982933pt;}
.yf9{bottom:561.048133pt;}
.y126{bottom:566.954933pt;}
.y9c{bottom:568.591733pt;}
.yaf{bottom:568.801200pt;}
.y86{bottom:569.299733pt;}
.y1c{bottom:573.057067pt;}
.y62{bottom:576.624267pt;}
.yf8{bottom:577.306000pt;}
.y125{bottom:582.791067pt;}
.y9b{bottom:584.233067pt;}
.yd0{bottom:584.442400pt;}
.yae{bottom:584.442533pt;}
.y85{bottom:584.941067pt;}
.y1b{bottom:585.850400pt;}
.yf7{bottom:593.563867pt;}
.y124{bottom:598.626933pt;}
.y1a{bottom:598.643733pt;}
.y43{bottom:599.874400pt;}
.yad{bottom:600.083867pt;}
.y61{bottom:600.085467pt;}
.y84{bottom:600.582400pt;}
.yf6{bottom:609.821867pt;}
.y19{bottom:611.437200pt;}
.y123{bottom:614.462933pt;}
.y42{bottom:615.515733pt;}
.yac{bottom:615.725200pt;}
.y60{bottom:615.726800pt;}
.y83{bottom:616.223733pt;}
.yf5{bottom:626.079733pt;}
.y122{bottom:630.298933pt;}
.y41{bottom:631.157067pt;}
.ycf{bottom:631.363200pt;}
.yab{bottom:631.366533pt;}
.y5f{bottom:631.368133pt;}
.yf4{bottom:642.337600pt;}
.y121{bottom:646.135067pt;}
.y40{bottom:646.798400pt;}
.yce{bottom:647.004533pt;}
.yaa{bottom:647.007867pt;}
.y5e{bottom:647.009467pt;}
.y18{bottom:650.687200pt;}
.yf3{bottom:658.595600pt;}
.y120{bottom:661.970933pt;}
.y3f{bottom:662.439733pt;}
.ycd{bottom:662.645867pt;}
.ya9{bottom:662.649200pt;}
.y5d{bottom:662.650800pt;}
.y82{bottom:663.144400pt;}
.y17{bottom:672.717733pt;}
.yf2{bottom:674.853467pt;}
.y11f{bottom:677.806933pt;}
.y3e{bottom:678.081067pt;}
.ycc{bottom:678.287200pt;}
.y5c{bottom:678.292133pt;}
.ya8{bottom:686.110400pt;}
.y16{bottom:688.359067pt;}
.yf1{bottom:691.111333pt;}
.y11e{bottom:693.642933pt;}
.y3d{bottom:693.722400pt;}
.ycb{bottom:693.928533pt;}
.y5b{bottom:693.933467pt;}
.yf0{bottom:707.369200pt;}
.y3c{bottom:709.363733pt;}
.y11d{bottom:709.479067pt;}
.yca{bottom:709.569867pt;}
.y15{bottom:719.118533pt;}
.yef{bottom:723.627067pt;}
.y3b{bottom:725.005067pt;}
.ya7{bottom:725.211200pt;}
.y5a{bottom:725.214400pt;}
.y11c{bottom:725.315067pt;}
.y14{bottom:738.318400pt;}
.yee{bottom:739.885067pt;}
.y3a{bottom:740.646533pt;}
.ya6{bottom:740.852533pt;}
.y11b{bottom:741.151067pt;}
.yed{bottom:756.142933pt;}
.y39{bottom:756.287733pt;}
.ya5{bottom:756.493867pt;}
.y11a{bottom:756.986933pt;}
.y13{bottom:761.298000pt;}
.y9a{bottom:771.927467pt;}
.y59{bottom:772.135200pt;}
.yec{bottom:772.400800pt;}
.y119{bottom:772.822933pt;}
.y12{bottom:783.964667pt;}
.y38{bottom:787.568800pt;}
.y58{bottom:787.776533pt;}
.yeb{bottom:788.658667pt;}
.y118{bottom:788.659067pt;}
.y5{bottom:818.104133pt;}
.y37{bottom:828.336133pt;}
.y117{bottom:828.336400pt;}
.y4{bottom:834.691333pt;}
.y3{bottom:840.424667pt;}
.y57{bottom:843.977333pt;}
.y36{bottom:843.977467pt;}
.y116{bottom:843.977733pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458400pt;}
.y6{bottom:863.458400pt;}
.h4{height:17.424000pt;}
.h6{height:27.738667pt;}
.hd{height:29.229167pt;}
.hc{height:29.312500pt;}
.hb{height:29.625000pt;}
.h7{height:29.720000pt;}
.h5{height:31.402667pt;}
.ha{height:32.976562pt;}
.h2{height:36.640625pt;}
.h11{height:37.031250pt;}
.he{height:40.190104pt;}
.h10{height:40.304688pt;}
.hf{height:40.734375pt;}
.h9{height:43.968750pt;}
.h12{height:47.526042pt;}
.h8{height:55.546875pt;}
.h3{height:93.200000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:98.267733pt;}
.x1{left:100.868000pt;}
.x10{left:116.601067pt;}
.xb{left:120.944933pt;}
.x4{left:123.545200pt;}
.xe{left:126.614133pt;}
.x11{left:130.393733pt;}
.x7{left:131.354800pt;}
.x12{left:132.994000pt;}
.xc{left:149.557733pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.xf{left:182.035867pt;}
.x9{left:281.341733pt;}
.xd{left:360.555867pt;}
.x3{left:392.040667pt;}
.x8{left:412.051467pt;}
.x2{left:463.360800pt;}
}




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