
    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_cb91cba403ac826941c23c10.woff')format("woff");}.ff1{font-family:ff1;line-height:1.127000;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_05d89855e15a375a4583f3ab.woff')format("woff");}.ff2{font-family:ff2;line-height:0.892578;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_d056df01a93ea49f665084c9.woff')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_e1cba20926f540d5e133c074.woff')format("woff");}.ff4{font-family:ff4;line-height:1.124118;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_ed323ad950c27ee9edc1a4e4.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105000;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_b1e07dbfa3e03d77aa41c69f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000048;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_8886e6e10badfbad09aa53c4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.089000;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_da5e6b112851c9bb21d71868.woff')format("woff");}.ff8{font-family:ff8;line-height:1.050000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d81ca92e8140d79033b5fef6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.892578;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_3817be2de43ba07b6455b4c6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.052000;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_3080551e5ca282c6ec55e0bb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.105000;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_d056df01a93ea49f665084c9.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1cbd24dbdea2ea6049fdbd66.woff')format("woff");}.ffd{font-family:ffd;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-2.157600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.154600px;}
.v3{vertical-align:19.116000px;}
.ls4{letter-spacing:-0.960000px;}
.ls9{letter-spacing:-0.684000px;}
.ls6{letter-spacing:-0.171000px;}
.ls3{letter-spacing:-0.114000px;}
.ls5{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.057000px;}
.lsa{letter-spacing:0.171000px;}
.ls8{letter-spacing:0.228000px;}
.ls7{letter-spacing:0.342000px;}
.ls0{letter-spacing:1.260000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-15.000000px;}
.ws2d{word-spacing:-12.540000px;}
.ws87{word-spacing:-12.483000px;}
.ws86{word-spacing:-11.628000px;}
.ws2{word-spacing:-11.457000px;}
.ws14{word-spacing:-11.400000px;}
.ws4b{word-spacing:-11.343000px;}
.ws15{word-spacing:-11.286000px;}
.ws1{word-spacing:-11.280000px;}
.ws13{word-spacing:-11.250000px;}
.ws4c{word-spacing:-11.229000px;}
.ws2e{word-spacing:-10.800000px;}
.ws6c{word-spacing:-10.716000px;}
.ws2f{word-spacing:-7.310820px;}
.ws45{word-spacing:-3.705000px;}
.ws33{word-spacing:-3.534000px;}
.ws81{word-spacing:-3.192000px;}
.ws47{word-spacing:-3.021000px;}
.ws1b{word-spacing:-2.850000px;}
.ws74{word-spacing:-2.565000px;}
.ws5c{word-spacing:-2.394000px;}
.wsd{word-spacing:-2.166000px;}
.ws62{word-spacing:-2.052000px;}
.ws1c{word-spacing:-1.881000px;}
.ws32{word-spacing:-1.836000px;}
.ws1a{word-spacing:-1.824000px;}
.ws21{word-spacing:-1.653000px;}
.ws79{word-spacing:-1.596000px;}
.ws49{word-spacing:-1.482000px;}
.ws56{word-spacing:-1.425000px;}
.ws72{word-spacing:-1.350000px;}
.wsf{word-spacing:-1.197000px;}
.ws48{word-spacing:-1.140000px;}
.ws8c{word-spacing:-1.083000px;}
.ws2b{word-spacing:-0.855000px;}
.ws20{word-spacing:-0.798000px;}
.ws4{word-spacing:-0.630000px;}
.ws16{word-spacing:-0.450000px;}
.ws71{word-spacing:-0.432000px;}
.ws6a{word-spacing:-0.342000px;}
.ws82{word-spacing:-0.162000px;}
.ws7f{word-spacing:-0.114000px;}
.ws6d{word-spacing:-0.108000px;}
.ws3{word-spacing:0.000000px;}
.ws17{word-spacing:0.057000px;}
.ws4d{word-spacing:0.114000px;}
.ws35{word-spacing:0.171000px;}
.ws60{word-spacing:0.216000px;}
.ws66{word-spacing:0.228000px;}
.wsb{word-spacing:0.285000px;}
.ws64{word-spacing:0.324000px;}
.ws19{word-spacing:0.648000px;}
.ws63{word-spacing:0.702000px;}
.ws18{word-spacing:0.756000px;}
.ws7{word-spacing:0.798000px;}
.ws68{word-spacing:0.855000px;}
.ws3d{word-spacing:0.912000px;}
.ws2a{word-spacing:1.140000px;}
.ws29{word-spacing:1.311000px;}
.ws7e{word-spacing:1.368000px;}
.ws34{word-spacing:1.482000px;}
.ws59{word-spacing:1.539000px;}
.ws23{word-spacing:1.566000px;}
.ws55{word-spacing:1.596000px;}
.ws54{word-spacing:1.710000px;}
.ws80{word-spacing:1.824000px;}
.ws69{word-spacing:1.881000px;}
.wse{word-spacing:1.995000px;}
.ws5b{word-spacing:2.109000px;}
.ws41{word-spacing:2.214000px;}
.ws5a{word-spacing:2.337000px;}
.ws83{word-spacing:2.376000px;}
.ws77{word-spacing:2.451000px;}
.ws51{word-spacing:2.565000px;}
.ws22{word-spacing:2.679000px;}
.ws1f{word-spacing:2.736000px;}
.ws76{word-spacing:2.850000px;}
.wsc{word-spacing:2.907000px;}
.ws25{word-spacing:2.916000px;}
.ws36{word-spacing:2.964000px;}
.ws9{word-spacing:3.078000px;}
.ws24{word-spacing:3.240000px;}
.ws75{word-spacing:3.363000px;}
.ws8e{word-spacing:3.456000px;}
.ws84{word-spacing:3.564000px;}
.ws3f{word-spacing:3.705000px;}
.ws58{word-spacing:3.762000px;}
.ws46{word-spacing:3.933000px;}
.ws61{word-spacing:3.942000px;}
.ws30{word-spacing:3.996000px;}
.ws4a{word-spacing:4.047000px;}
.ws57{word-spacing:4.104000px;}
.ws37{word-spacing:4.161000px;}
.ws52{word-spacing:4.218000px;}
.ws3e{word-spacing:4.275000px;}
.ws3b{word-spacing:4.332000px;}
.ws4e{word-spacing:4.389000px;}
.ws6f{word-spacing:4.428000px;}
.ws7c{word-spacing:4.446000px;}
.ws53{word-spacing:4.503000px;}
.ws8d{word-spacing:4.560000px;}
.ws50{word-spacing:4.617000px;}
.ws7d{word-spacing:4.731000px;}
.ws65{word-spacing:4.788000px;}
.ws27{word-spacing:4.845000px;}
.ws11{word-spacing:4.902000px;}
.ws6e{word-spacing:4.914000px;}
.ws6b{word-spacing:4.959000px;}
.ws67{word-spacing:5.073000px;}
.ws43{word-spacing:5.184000px;}
.ws1e{word-spacing:5.358000px;}
.ws31{word-spacing:5.400000px;}
.ws3a{word-spacing:5.472000px;}
.ws5f{word-spacing:5.508000px;}
.ws8{word-spacing:5.529000px;}
.ws7b{word-spacing:5.700000px;}
.ws28{word-spacing:5.814000px;}
.ws8b{word-spacing:6.042000px;}
.ws88{word-spacing:6.048000px;}
.ws5{word-spacing:6.384000px;}
.ws78{word-spacing:6.669000px;}
.ws26{word-spacing:6.750000px;}
.ws4f{word-spacing:6.783000px;}
.ws70{word-spacing:6.912000px;}
.ws10{word-spacing:7.011000px;}
.ws5e{word-spacing:7.020000px;}
.ws5d{word-spacing:7.125000px;}
.ws38{word-spacing:7.182000px;}
.ws39{word-spacing:7.410000px;}
.ws91{word-spacing:7.560000px;}
.ws89{word-spacing:8.208000px;}
.ws85{word-spacing:9.177000px;}
.ws90{word-spacing:9.288000px;}
.ws8a{word-spacing:10.032000px;}
.ws44{word-spacing:10.530000px;}
.ws8f{word-spacing:11.016000px;}
.ws73{word-spacing:11.457000px;}
.ws7a{word-spacing:12.027000px;}
.wsa{word-spacing:12.198000px;}
.ws40{word-spacing:12.312000px;}
.ws3c{word-spacing:12.939000px;}
.ws42{word-spacing:13.770000px;}
.ws6{word-spacing:15.219000px;}
.ws1d{word-spacing:18.525000px;}
.ws12{word-spacing:98.010000px;}
.ws2c{word-spacing:594.434400px;}
._5{margin-left:-10.920000px;}
._4{margin-left:-5.558400px;}
._1{margin-left:-3.870000px;}
._0{margin-left:-2.148600px;}
._2{margin-left:-1.010400px;}
._3{width:1.182600px;}
._7{width:2.262000px;}
._9{width:4.470600px;}
._8{width:7.151100px;}
._6{width:14.535000px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:33.231000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.815000px;}
.y48{bottom:56.126700px;}
.y22{bottom:56.665350px;}
.y20{bottom:108.712350px;}
.y70{bottom:122.885250px;}
.y1f{bottom:125.969100px;}
.y98{bottom:138.796950px;}
.y46{bottom:138.816150px;}
.y6f{bottom:140.142000px;}
.y1e{bottom:143.225850px;}
.y97{bottom:156.053700px;}
.y45{bottom:156.072900px;}
.y6e{bottom:157.398750px;}
.ybb{bottom:158.161950px;}
.y1d{bottom:160.482600px;}
.y96{bottom:173.310450px;}
.y44{bottom:173.329650px;}
.y6d{bottom:174.655500px;}
.yba{bottom:175.418700px;}
.y1c{bottom:177.739350px;}
.y95{bottom:190.567200px;}
.y43{bottom:190.586400px;}
.y6c{bottom:191.912250px;}
.y1b{bottom:194.996100px;}
.y94{bottom:207.823950px;}
.y42{bottom:207.843150px;}
.y6b{bottom:209.169000px;}
.yb9{bottom:209.928000px;}
.y1a{bottom:212.252850px;}
.y93{bottom:225.080700px;}
.y41{bottom:225.099900px;}
.yb8{bottom:226.425000px;}
.y19{bottom:229.509600px;}
.y92{bottom:242.337450px;}
.y40{bottom:242.356650px;}
.yb7{bottom:242.922000px;}
.y6a{bottom:243.687150px;}
.y18{bottom:246.766350px;}
.yb6{bottom:259.419000px;}
.y91{bottom:259.594200px;}
.y3f{bottom:259.613400px;}
.y69{bottom:260.184150px;}
.y17{bottom:264.023100px;}
.y68{bottom:276.681150px;}
.y90{bottom:276.850950px;}
.y16{bottom:281.279850px;}
.yb5{bottom:293.169000px;}
.y67{bottom:293.178150px;}
.y8f{bottom:294.107700px;}
.y3e{bottom:294.113700px;}
.y15{bottom:298.536600px;}
.y66{bottom:309.675150px;}
.y8e{bottom:311.364450px;}
.y14{bottom:315.793350px;}
.y65{bottom:326.172150px;}
.yb4{bottom:327.672150px;}
.y3d{bottom:327.863700px;}
.y13{bottom:333.050100px;}
.y64{bottom:342.669150px;}
.yb3{bottom:344.169150px;}
.y8d{bottom:345.888600px;}
.y3c{bottom:362.367000px;}
.y8c{bottom:362.385600px;}
.y12{bottom:367.548150px;}
.y63{bottom:376.405650px;}
.yb2{bottom:377.770950px;}
.y3b{bottom:378.864000px;}
.y8b{bottom:378.882600px;}
.y11{bottom:384.045150px;}
.y62{bottom:393.662400px;}
.yb1{bottom:395.027700px;}
.y8a{bottom:395.379600px;}
.y61{bottom:410.919150px;}
.y89{bottom:411.876600px;}
.yb0{bottom:412.284450px;}
.y3a{bottom:412.614150px;}
.y88{bottom:428.373600px;}
.yaf{bottom:429.541200px;}
.y87{bottom:444.870600px;}
.y60{bottom:445.419450px;}
.yae{bottom:446.797950px;}
.y39{bottom:447.120450px;}
.y10{bottom:460.320150px;}
.y86{bottom:461.367600px;}
.y38{bottom:463.617450px;}
.yad{bottom:464.054700px;}
.y85{bottom:477.864600px;}
.y5f{bottom:479.041050px;}
.yf{bottom:479.572050px;}
.y37{bottom:480.114450px;}
.yac{bottom:481.311450px;}
.ycc{bottom:482.911950px;}
.y5e{bottom:496.297800px;}
.yab{bottom:498.568200px;}
.ycb{bottom:500.168700px;}
.ye{bottom:504.772050px;}
.y84{bottom:511.472850px;}
.y5d{bottom:513.554550px;}
.y36{bottom:513.769950px;}
.yaa{bottom:515.824950px;}
.y83{bottom:528.729600px;}
.yd{bottom:529.972050px;}
.y5c{bottom:530.811300px;}
.y35{bottom:531.026700px;}
.ya9{bottom:533.081700px;}
.yca{bottom:534.674850px;}
.y82{bottom:545.986350px;}
.y5b{bottom:548.068050px;}
.y34{bottom:548.283450px;}
.ya8{bottom:550.338450px;}
.yc9{bottom:551.171850px;}
.yc{bottom:555.172050px;}
.y81{bottom:563.243100px;}
.y5a{bottom:565.324800px;}
.y33{bottom:565.540200px;}
.ya7{bottom:567.595200px;}
.yc8{bottom:567.668850px;}
.yb{bottom:580.372050px;}
.y80{bottom:580.499850px;}
.y59{bottom:582.581550px;}
.y32{bottom:582.796950px;}
.ya6{bottom:584.851950px;}
.y7f{bottom:597.756600px;}
.y58{bottom:599.838300px;}
.y31{bottom:600.053700px;}
.yc7{bottom:601.418850px;}
.ya5{bottom:602.108700px;}
.y7e{bottom:615.013350px;}
.y57{bottom:617.095050px;}
.y30{bottom:617.310450px;}
.ya4{bottom:619.365450px;}
.y7d{bottom:632.270100px;}
.y56{bottom:634.351800px;}
.y2f{bottom:634.567200px;}
.yc6{bottom:635.925150px;}
.ya3{bottom:636.622200px;}
.y7c{bottom:649.526850px;}
.y55{bottom:651.608550px;}
.y2e{bottom:651.823950px;}
.yc5{bottom:652.422150px;}
.ya2{bottom:653.878950px;}
.y7b{bottom:666.783600px;}
.y54{bottom:668.865300px;}
.yc4{bottom:668.919150px;}
.y2d{bottom:669.080700px;}
.ya{bottom:669.354600px;}
.ya1{bottom:671.135700px;}
.y7a{bottom:684.040350px;}
.y9{bottom:684.353100px;}
.y53{bottom:686.122050px;}
.y2c{bottom:686.337450px;}
.ya0{bottom:688.392450px;}
.y79{bottom:701.297100px;}
.yc3{bottom:702.622050px;}
.y52{bottom:703.378800px;}
.y2b{bottom:703.594200px;}
.y8{bottom:703.605000px;}
.y9f{bottom:705.649200px;}
.y78{bottom:718.553850px;}
.yc2{bottom:719.878800px;}
.y51{bottom:720.635550px;}
.y2a{bottom:720.850950px;}
.y9e{bottom:722.905950px;}
.y7{bottom:731.608950px;}
.y77{bottom:735.810600px;}
.yc1{bottom:737.135550px;}
.y50{bottom:737.892300px;}
.y29{bottom:738.107700px;}
.y9d{bottom:740.162700px;}
.y76{bottom:753.067350px;}
.yc0{bottom:754.392300px;}
.y4f{bottom:755.149050px;}
.y28{bottom:755.364450px;}
.y9c{bottom:757.419450px;}
.y6{bottom:758.608950px;}
.y75{bottom:770.324100px;}
.ybf{bottom:771.649050px;}
.y4e{bottom:772.405800px;}
.y5{bottom:785.608950px;}
.y74{bottom:787.580850px;}
.ybe{bottom:788.905800px;}
.y4d{bottom:789.662550px;}
.y27{bottom:789.870600px;}
.y9b{bottom:791.934600px;}
.y73{bottom:804.837600px;}
.ybd{bottom:806.162550px;}
.y26{bottom:806.367600px;}
.y4c{bottom:806.919300px;}
.y9a{bottom:808.431600px;}
.y72{bottom:822.094350px;}
.y25{bottom:822.864600px;}
.ybc{bottom:823.419300px;}
.y99{bottom:824.928600px;}
.y71{bottom:839.351100px;}
.y4b{bottom:841.425600px;}
.y24{bottom:856.607850px;}
.y4a{bottom:857.922600px;}
.y4{bottom:867.772950px;}
.y23{bottom:873.864600px;}
.y49{bottom:874.419600px;}
.y3{bottom:885.772950px;}
.y2{bottom:903.772950px;}
.y47{bottom:916.970700px;}
.y21{bottom:917.533200px;}
.h4{height:36.000000px;}
.h9{height:37.305000px;}
.hb{height:39.792000px;}
.h7{height:46.170000px;}
.h2{height:46.332000px;}
.ha{height:48.108000px;}
.hc{height:48.486600px;}
.h8{height:48.735000px;}
.hd{height:48.870000px;}
.h3{height:52.646484px;}
.h6{height:72.072000px;}
.h5{height:78.580588px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1b{left:63.775050px;}
.x12{left:72.279000px;}
.xd{left:81.140100px;}
.x14{left:85.198800px;}
.x13{left:89.403750px;}
.x6{left:92.988750px;}
.x11{left:102.047250px;}
.xc{left:105.626100px;}
.x5{left:109.773750px;}
.x17{left:119.055150px;}
.x1a{left:123.307050px;}
.xb{left:139.919100px;}
.x16{left:148.815150px;}
.x1c{left:153.070800px;}
.x10{left:161.573100px;}
.xa{left:169.510800px;}
.x7{left:176.013750px;}
.x15{left:178.582650px;}
.x2{left:201.609900px;}
.xe{left:207.707100px;}
.x19{left:235.884750px;}
.x9{left:251.577300px;}
.x8{left:262.378200px;}
.xf{left:277.416600px;}
.x1{left:338.727750px;}
.x4{left:392.146950px;}
.x3{left:406.918950px;}
.x18{left:537.480750px;}
@media print{
.v1{vertical-align:-1.917867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.915200pt;}
.v3{vertical-align:16.992000pt;}
.ls4{letter-spacing:-0.853333pt;}
.ls9{letter-spacing:-0.608000pt;}
.ls6{letter-spacing:-0.152000pt;}
.ls3{letter-spacing:-0.101333pt;}
.ls5{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.050667pt;}
.lsa{letter-spacing:0.152000pt;}
.ls8{letter-spacing:0.202667pt;}
.ls7{letter-spacing:0.304000pt;}
.ls0{letter-spacing:1.120000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws2d{word-spacing:-11.146667pt;}
.ws87{word-spacing:-11.096000pt;}
.ws86{word-spacing:-10.336000pt;}
.ws2{word-spacing:-10.184000pt;}
.ws14{word-spacing:-10.133333pt;}
.ws4b{word-spacing:-10.082667pt;}
.ws15{word-spacing:-10.032000pt;}
.ws1{word-spacing:-10.026667pt;}
.ws13{word-spacing:-10.000000pt;}
.ws4c{word-spacing:-9.981333pt;}
.ws2e{word-spacing:-9.600000pt;}
.ws6c{word-spacing:-9.525333pt;}
.ws2f{word-spacing:-6.498507pt;}
.ws45{word-spacing:-3.293333pt;}
.ws33{word-spacing:-3.141333pt;}
.ws81{word-spacing:-2.837333pt;}
.ws47{word-spacing:-2.685333pt;}
.ws1b{word-spacing:-2.533333pt;}
.ws74{word-spacing:-2.280000pt;}
.ws5c{word-spacing:-2.128000pt;}
.wsd{word-spacing:-1.925333pt;}
.ws62{word-spacing:-1.824000pt;}
.ws1c{word-spacing:-1.672000pt;}
.ws32{word-spacing:-1.632000pt;}
.ws1a{word-spacing:-1.621333pt;}
.ws21{word-spacing:-1.469333pt;}
.ws79{word-spacing:-1.418667pt;}
.ws49{word-spacing:-1.317333pt;}
.ws56{word-spacing:-1.266667pt;}
.ws72{word-spacing:-1.200000pt;}
.wsf{word-spacing:-1.064000pt;}
.ws48{word-spacing:-1.013333pt;}
.ws8c{word-spacing:-0.962667pt;}
.ws2b{word-spacing:-0.760000pt;}
.ws20{word-spacing:-0.709333pt;}
.ws4{word-spacing:-0.560000pt;}
.ws16{word-spacing:-0.400000pt;}
.ws71{word-spacing:-0.384000pt;}
.ws6a{word-spacing:-0.304000pt;}
.ws82{word-spacing:-0.144000pt;}
.ws7f{word-spacing:-0.101333pt;}
.ws6d{word-spacing:-0.096000pt;}
.ws3{word-spacing:0.000000pt;}
.ws17{word-spacing:0.050667pt;}
.ws4d{word-spacing:0.101333pt;}
.ws35{word-spacing:0.152000pt;}
.ws60{word-spacing:0.192000pt;}
.ws66{word-spacing:0.202667pt;}
.wsb{word-spacing:0.253333pt;}
.ws64{word-spacing:0.288000pt;}
.ws19{word-spacing:0.576000pt;}
.ws63{word-spacing:0.624000pt;}
.ws18{word-spacing:0.672000pt;}
.ws7{word-spacing:0.709333pt;}
.ws68{word-spacing:0.760000pt;}
.ws3d{word-spacing:0.810667pt;}
.ws2a{word-spacing:1.013333pt;}
.ws29{word-spacing:1.165333pt;}
.ws7e{word-spacing:1.216000pt;}
.ws34{word-spacing:1.317333pt;}
.ws59{word-spacing:1.368000pt;}
.ws23{word-spacing:1.392000pt;}
.ws55{word-spacing:1.418667pt;}
.ws54{word-spacing:1.520000pt;}
.ws80{word-spacing:1.621333pt;}
.ws69{word-spacing:1.672000pt;}
.wse{word-spacing:1.773333pt;}
.ws5b{word-spacing:1.874667pt;}
.ws41{word-spacing:1.968000pt;}
.ws5a{word-spacing:2.077333pt;}
.ws83{word-spacing:2.112000pt;}
.ws77{word-spacing:2.178667pt;}
.ws51{word-spacing:2.280000pt;}
.ws22{word-spacing:2.381333pt;}
.ws1f{word-spacing:2.432000pt;}
.ws76{word-spacing:2.533333pt;}
.wsc{word-spacing:2.584000pt;}
.ws25{word-spacing:2.592000pt;}
.ws36{word-spacing:2.634667pt;}
.ws9{word-spacing:2.736000pt;}
.ws24{word-spacing:2.880000pt;}
.ws75{word-spacing:2.989333pt;}
.ws8e{word-spacing:3.072000pt;}
.ws84{word-spacing:3.168000pt;}
.ws3f{word-spacing:3.293333pt;}
.ws58{word-spacing:3.344000pt;}
.ws46{word-spacing:3.496000pt;}
.ws61{word-spacing:3.504000pt;}
.ws30{word-spacing:3.552000pt;}
.ws4a{word-spacing:3.597333pt;}
.ws57{word-spacing:3.648000pt;}
.ws37{word-spacing:3.698667pt;}
.ws52{word-spacing:3.749333pt;}
.ws3e{word-spacing:3.800000pt;}
.ws3b{word-spacing:3.850667pt;}
.ws4e{word-spacing:3.901333pt;}
.ws6f{word-spacing:3.936000pt;}
.ws7c{word-spacing:3.952000pt;}
.ws53{word-spacing:4.002667pt;}
.ws8d{word-spacing:4.053333pt;}
.ws50{word-spacing:4.104000pt;}
.ws7d{word-spacing:4.205333pt;}
.ws65{word-spacing:4.256000pt;}
.ws27{word-spacing:4.306667pt;}
.ws11{word-spacing:4.357333pt;}
.ws6e{word-spacing:4.368000pt;}
.ws6b{word-spacing:4.408000pt;}
.ws67{word-spacing:4.509333pt;}
.ws43{word-spacing:4.608000pt;}
.ws1e{word-spacing:4.762667pt;}
.ws31{word-spacing:4.800000pt;}
.ws3a{word-spacing:4.864000pt;}
.ws5f{word-spacing:4.896000pt;}
.ws8{word-spacing:4.914667pt;}
.ws7b{word-spacing:5.066667pt;}
.ws28{word-spacing:5.168000pt;}
.ws8b{word-spacing:5.370667pt;}
.ws88{word-spacing:5.376000pt;}
.ws5{word-spacing:5.674667pt;}
.ws78{word-spacing:5.928000pt;}
.ws26{word-spacing:6.000000pt;}
.ws4f{word-spacing:6.029333pt;}
.ws70{word-spacing:6.144000pt;}
.ws10{word-spacing:6.232000pt;}
.ws5e{word-spacing:6.240000pt;}
.ws5d{word-spacing:6.333333pt;}
.ws38{word-spacing:6.384000pt;}
.ws39{word-spacing:6.586667pt;}
.ws91{word-spacing:6.720000pt;}
.ws89{word-spacing:7.296000pt;}
.ws85{word-spacing:8.157333pt;}
.ws90{word-spacing:8.256000pt;}
.ws8a{word-spacing:8.917333pt;}
.ws44{word-spacing:9.360000pt;}
.ws8f{word-spacing:9.792000pt;}
.ws73{word-spacing:10.184000pt;}
.ws7a{word-spacing:10.690667pt;}
.wsa{word-spacing:10.842667pt;}
.ws40{word-spacing:10.944000pt;}
.ws3c{word-spacing:11.501333pt;}
.ws42{word-spacing:12.240000pt;}
.ws6{word-spacing:13.528000pt;}
.ws1d{word-spacing:16.466667pt;}
.ws12{word-spacing:87.120000pt;}
.ws2c{word-spacing:528.386133pt;}
._5{margin-left:-9.706667pt;}
._4{margin-left:-4.940800pt;}
._1{margin-left:-3.440000pt;}
._0{margin-left:-1.909867pt;}
._2{margin-left:-0.898133pt;}
._3{width:1.051200pt;}
._7{width:2.010667pt;}
._9{width:3.973867pt;}
._8{width:6.356533pt;}
._6{width:12.920000pt;}
.fs7{font-size:29.538667pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.613333pt;}
.y48{bottom:49.890400pt;}
.y22{bottom:50.369200pt;}
.y20{bottom:96.633200pt;}
.y70{bottom:109.231333pt;}
.y1f{bottom:111.972533pt;}
.y98{bottom:123.375067pt;}
.y46{bottom:123.392133pt;}
.y6f{bottom:124.570667pt;}
.y1e{bottom:127.311867pt;}
.y97{bottom:138.714400pt;}
.y45{bottom:138.731467pt;}
.y6e{bottom:139.910000pt;}
.ybb{bottom:140.588400pt;}
.y1d{bottom:142.651200pt;}
.y96{bottom:154.053733pt;}
.y44{bottom:154.070800pt;}
.y6d{bottom:155.249333pt;}
.yba{bottom:155.927733pt;}
.y1c{bottom:157.990533pt;}
.y95{bottom:169.393067pt;}
.y43{bottom:169.410133pt;}
.y6c{bottom:170.588667pt;}
.y1b{bottom:173.329867pt;}
.y94{bottom:184.732400pt;}
.y42{bottom:184.749467pt;}
.y6b{bottom:185.928000pt;}
.yb9{bottom:186.602667pt;}
.y1a{bottom:188.669200pt;}
.y93{bottom:200.071733pt;}
.y41{bottom:200.088800pt;}
.yb8{bottom:201.266667pt;}
.y19{bottom:204.008533pt;}
.y92{bottom:215.411067pt;}
.y40{bottom:215.428133pt;}
.yb7{bottom:215.930667pt;}
.y6a{bottom:216.610800pt;}
.y18{bottom:219.347867pt;}
.yb6{bottom:230.594667pt;}
.y91{bottom:230.750400pt;}
.y3f{bottom:230.767467pt;}
.y69{bottom:231.274800pt;}
.y17{bottom:234.687200pt;}
.y68{bottom:245.938800pt;}
.y90{bottom:246.089733pt;}
.y16{bottom:250.026533pt;}
.yb5{bottom:260.594667pt;}
.y67{bottom:260.602800pt;}
.y8f{bottom:261.429067pt;}
.y3e{bottom:261.434400pt;}
.y15{bottom:265.365867pt;}
.y66{bottom:275.266800pt;}
.y8e{bottom:276.768400pt;}
.y14{bottom:280.705200pt;}
.y65{bottom:289.930800pt;}
.yb4{bottom:291.264133pt;}
.y3d{bottom:291.434400pt;}
.y13{bottom:296.044533pt;}
.y64{bottom:304.594800pt;}
.yb3{bottom:305.928133pt;}
.y8d{bottom:307.456533pt;}
.y3c{bottom:322.104000pt;}
.y8c{bottom:322.120533pt;}
.y12{bottom:326.709467pt;}
.y63{bottom:334.582800pt;}
.yb2{bottom:335.796400pt;}
.y3b{bottom:336.768000pt;}
.y8b{bottom:336.784533pt;}
.y11{bottom:341.373467pt;}
.y62{bottom:349.922133pt;}
.yb1{bottom:351.135733pt;}
.y8a{bottom:351.448533pt;}
.y61{bottom:365.261467pt;}
.y89{bottom:366.112533pt;}
.yb0{bottom:366.475067pt;}
.y3a{bottom:366.768133pt;}
.y88{bottom:380.776533pt;}
.yaf{bottom:381.814400pt;}
.y87{bottom:395.440533pt;}
.y60{bottom:395.928400pt;}
.yae{bottom:397.153733pt;}
.y39{bottom:397.440400pt;}
.y10{bottom:409.173467pt;}
.y86{bottom:410.104533pt;}
.y38{bottom:412.104400pt;}
.yad{bottom:412.493067pt;}
.y85{bottom:424.768533pt;}
.y5f{bottom:425.814267pt;}
.yf{bottom:426.286267pt;}
.y37{bottom:426.768400pt;}
.yac{bottom:427.832400pt;}
.ycc{bottom:429.255067pt;}
.y5e{bottom:441.153600pt;}
.yab{bottom:443.171733pt;}
.ycb{bottom:444.594400pt;}
.ye{bottom:448.686267pt;}
.y84{bottom:454.642533pt;}
.y5d{bottom:456.492933pt;}
.y36{bottom:456.684400pt;}
.yaa{bottom:458.511067pt;}
.y83{bottom:469.981867pt;}
.yd{bottom:471.086267pt;}
.y5c{bottom:471.832267pt;}
.y35{bottom:472.023733pt;}
.ya9{bottom:473.850400pt;}
.yca{bottom:475.266533pt;}
.y82{bottom:485.321200pt;}
.y5b{bottom:487.171600pt;}
.y34{bottom:487.363067pt;}
.ya8{bottom:489.189733pt;}
.yc9{bottom:489.930533pt;}
.yc{bottom:493.486267pt;}
.y81{bottom:500.660533pt;}
.y5a{bottom:502.510933pt;}
.y33{bottom:502.702400pt;}
.ya7{bottom:504.529067pt;}
.yc8{bottom:504.594533pt;}
.yb{bottom:515.886267pt;}
.y80{bottom:515.999867pt;}
.y59{bottom:517.850267pt;}
.y32{bottom:518.041733pt;}
.ya6{bottom:519.868400pt;}
.y7f{bottom:531.339200pt;}
.y58{bottom:533.189600pt;}
.y31{bottom:533.381067pt;}
.yc7{bottom:534.594533pt;}
.ya5{bottom:535.207733pt;}
.y7e{bottom:546.678533pt;}
.y57{bottom:548.528933pt;}
.y30{bottom:548.720400pt;}
.ya4{bottom:550.547067pt;}
.y7d{bottom:562.017867pt;}
.y56{bottom:563.868267pt;}
.y2f{bottom:564.059733pt;}
.yc6{bottom:565.266800pt;}
.ya3{bottom:565.886400pt;}
.y7c{bottom:577.357200pt;}
.y55{bottom:579.207600pt;}
.y2e{bottom:579.399067pt;}
.yc5{bottom:579.930800pt;}
.ya2{bottom:581.225733pt;}
.y7b{bottom:592.696533pt;}
.y54{bottom:594.546933pt;}
.yc4{bottom:594.594800pt;}
.y2d{bottom:594.738400pt;}
.ya{bottom:594.981867pt;}
.ya1{bottom:596.565067pt;}
.y7a{bottom:608.035867pt;}
.y9{bottom:608.313867pt;}
.y53{bottom:609.886267pt;}
.y2c{bottom:610.077733pt;}
.ya0{bottom:611.904400pt;}
.y79{bottom:623.375200pt;}
.yc3{bottom:624.552933pt;}
.y52{bottom:625.225600pt;}
.y2b{bottom:625.417067pt;}
.y8{bottom:625.426667pt;}
.y9f{bottom:627.243733pt;}
.y78{bottom:638.714533pt;}
.yc2{bottom:639.892267pt;}
.y51{bottom:640.564933pt;}
.y2a{bottom:640.756400pt;}
.y9e{bottom:642.583067pt;}
.y7{bottom:650.319067pt;}
.y77{bottom:654.053867pt;}
.yc1{bottom:655.231600pt;}
.y50{bottom:655.904267pt;}
.y29{bottom:656.095733pt;}
.y9d{bottom:657.922400pt;}
.y76{bottom:669.393200pt;}
.yc0{bottom:670.570933pt;}
.y4f{bottom:671.243600pt;}
.y28{bottom:671.435067pt;}
.y9c{bottom:673.261733pt;}
.y6{bottom:674.319067pt;}
.y75{bottom:684.732533pt;}
.ybf{bottom:685.910267pt;}
.y4e{bottom:686.582933pt;}
.y5{bottom:698.319067pt;}
.y74{bottom:700.071867pt;}
.ybe{bottom:701.249600pt;}
.y4d{bottom:701.922267pt;}
.y27{bottom:702.107200pt;}
.y9b{bottom:703.941867pt;}
.y73{bottom:715.411200pt;}
.ybd{bottom:716.588933pt;}
.y26{bottom:716.771200pt;}
.y4c{bottom:717.261600pt;}
.y9a{bottom:718.605867pt;}
.y72{bottom:730.750533pt;}
.y25{bottom:731.435200pt;}
.ybc{bottom:731.928267pt;}
.y99{bottom:733.269867pt;}
.y71{bottom:746.089867pt;}
.y4b{bottom:747.933867pt;}
.y24{bottom:761.429200pt;}
.y4a{bottom:762.597867pt;}
.y4{bottom:771.353733pt;}
.y23{bottom:776.768533pt;}
.y49{bottom:777.261867pt;}
.y3{bottom:787.353733pt;}
.y2{bottom:803.353733pt;}
.y47{bottom:815.085067pt;}
.y21{bottom:815.585067pt;}
.h4{height:32.000000pt;}
.h9{height:33.160000pt;}
.hb{height:35.370667pt;}
.h7{height:41.040000pt;}
.h2{height:41.184000pt;}
.ha{height:42.762667pt;}
.hc{height:43.099200pt;}
.h8{height:43.320000pt;}
.hd{height:43.440000pt;}
.h3{height:46.796875pt;}
.h6{height:64.064000pt;}
.h5{height:69.849412pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1b{left:56.688933pt;}
.x12{left:64.248000pt;}
.xd{left:72.124533pt;}
.x14{left:75.732267pt;}
.x13{left:79.470000pt;}
.x6{left:82.656667pt;}
.x11{left:90.708667pt;}
.xc{left:93.889867pt;}
.x5{left:97.576667pt;}
.x17{left:105.826800pt;}
.x1a{left:109.606267pt;}
.xb{left:124.372533pt;}
.x16{left:132.280133pt;}
.x1c{left:136.062933pt;}
.x10{left:143.620533pt;}
.xa{left:150.676267pt;}
.x7{left:156.456667pt;}
.x15{left:158.740133pt;}
.x2{left:179.208800pt;}
.xe{left:184.628533pt;}
.x19{left:209.675333pt;}
.x9{left:223.624267pt;}
.x8{left:233.225067pt;}
.xf{left:246.592533pt;}
.x1{left:301.091333pt;}
.x4{left:348.575067pt;}
.x3{left:361.705733pt;}
.x18{left:477.760667pt;}
}




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