
    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_ed70de605ac8e23dc63feb90.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_14e24790c08d3525e4edf03a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_e6f124aa389e0f5721324e4f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_beff3d630886c27f9116520c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_364f70982eb0863b950bef6e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.835000;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_7c84e2200c7883adaf8d998f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_4b33d3a977591cc91136f4e7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_a4995e9b1737250cf21fa21e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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_2130910c77c59513f550ba0d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.973633;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_0865a1a1c50712ec95dd2292.woff')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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_1ebaa48e5a1af8be2b359c83.woff')format("woff");}.ffe{font-family:ffe;line-height:0.886719;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_3ad9ee1ea168ed2ebf85d0dd.woff')format("woff");}.fff{font-family:fff;line-height:1.035156;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_e37d3339b2e997ca04895f39.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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:ff11;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_5832bc052232843ffd4faeaf.woff')format("woff");}.ff12{font-family:ff12;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_039722c5306bdeb5451392c3.woff')format("woff");}.ff13{font-family:ff13;line-height:0.938965;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:75.600000px;}
.ls19{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.414600px;}
.ls18{letter-spacing:-0.262200px;}
.ls7{letter-spacing:-0.190200px;}
.ls9{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.114000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls8{letter-spacing:0.078000px;}
.lsf{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.152400px;}
.lsa{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.lsb{letter-spacing:0.262200px;}
.lsc{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.576000px;}
.ls1b{letter-spacing:6.785280px;}
.lsd{letter-spacing:39.881280px;}
.ls1a{letter-spacing:39.905280px;}
.ls10{letter-spacing:55.362720px;}
.ls16{letter-spacing:59.321280px;}
.ls12{letter-spacing:59.345280px;}
.lse{letter-spacing:64.002720px;}
.ls11{letter-spacing:64.026720px;}
.ls15{letter-spacing:1445.340000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-66.240000px;}
.wsc{word-spacing:-59.760000px;}
.ws0{word-spacing:-24.062880px;}
.ws7{word-spacing:-19.457280px;}
.ws1{word-spacing:-19.010880px;}
.ws3{word-spacing:-18.532800px;}
.ws2{word-spacing:-18.342600px;}
.wsb{word-spacing:-16.974600px;}
.ws9{word-spacing:-16.865400px;}
.wse{word-spacing:-16.712400px;}
.ws8{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.297800px;}
.ws5{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.696000px;}
.ws4{word-spacing:-14.650800px;}
.wsa{word-spacing:0.000000px;}
._2d{margin-left:-2.118240px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._7{width:3.113280px;}
._8{width:4.309920px;}
._c{width:5.356800px;}
._b{width:6.425280px;}
._9{width:8.412480px;}
._6{width:9.831840px;}
._5{width:10.863360px;}
._a{width:12.320640px;}
._14{width:13.711680px;}
._d{width:15.212880px;}
._4{width:18.017280px;}
._16{width:19.275840px;}
._28{width:20.872080px;}
._13{width:22.190400px;}
._3{width:24.212880px;}
._2{width:25.405200px;}
._24{width:26.959680px;}
._12{width:28.946880px;}
._15{width:30.042000px;}
._1f{width:32.060160px;}
._17{width:33.384960px;}
._18{width:34.546320px;}
._23{width:36.365760px;}
._2f{width:38.154240px;}
._30{width:39.779280px;}
._37{width:41.857920px;}
._31{width:43.355520px;}
._2c{width:44.383680px;}
._20{width:46.434240px;}
._21{width:47.728080px;}
._10{width:49.348800px;}
._f{width:50.541120px;}
._2e{width:52.660800px;}
._e{width:54.118080px;}
._38{width:55.706400px;}
._29{width:57.035520px;}
._2a{width:58.786320px;}
._1e{width:59.786880px;}
._26{width:61.167360px;}
._3c{width:67.697280px;}
._36{width:69.287040px;}
._1d{width:70.651440px;}
._1c{width:71.737920px;}
._35{width:73.575360px;}
._11{width:75.513600px;}
._32{width:84.306240px;}
._33{width:87.935040px;}
._34{width:89.134560px;}
._22{width:94.458240px;}
._3b{width:97.240320px;}
._3a{width:98.314560px;}
._27{width:111.609360px;}
._25{width:119.995920px;}
._2b{width:125.064000px;}
._39{width:147.755280px;}
._1b{width:152.893440px;}
._3d{width:184.579920px;}
._19{width:189.617520px;}
._1a{width:197.647200px;}
._3e{width:847.596000px;}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:38.880000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs7{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y11{bottom:1.800000px;}
.y3{bottom:3.420000px;}
.y8c{bottom:3.600000px;}
.y96{bottom:3.780000px;}
.y90{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.yf{bottom:7.560000px;}
.y6{bottom:8.460000px;}
.y92{bottom:13.680000px;}
.y95{bottom:22.680000px;}
.y8f{bottom:23.040000px;}
.y16{bottom:26.505000px;}
.y91{bottom:32.580000px;}
.y5{bottom:33.120000px;}
.ye{bottom:33.300000px;}
.y8e{bottom:41.760000px;}
.y15{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y14{bottom:71.865000px;}
.y41{bottom:75.240000px;}
.y13{bottom:95.265000px;}
.y3e{bottom:114.660000px;}
.y3b{bottom:115.020000px;}
.y89{bottom:124.740000px;}
.yd5{bottom:129.960000px;}
.y6b{bottom:134.100000px;}
.yb8{bottom:134.460000px;}
.y3d{bottom:139.320000px;}
.y3a{bottom:139.680000px;}
.y88{bottom:143.640000px;}
.yd4{bottom:154.620000px;}
.y6a{bottom:158.760000px;}
.yb7{bottom:159.480000px;}
.y87{bottom:162.720000px;}
.y39{bottom:164.340000px;}
.yd3{bottom:179.280000px;}
.y86{bottom:181.620000px;}
.y69{bottom:183.420000px;}
.yb6{bottom:184.140000px;}
.y38{bottom:189.000000px;}
.y85{bottom:200.700000px;}
.yd2{bottom:203.580000px;}
.y68{bottom:208.110000px;}
.yb5{bottom:208.830000px;}
.y37{bottom:213.690000px;}
.y84{bottom:225.750000px;}
.yd1{bottom:228.270000px;}
.y67{bottom:232.770000px;}
.yb4{bottom:233.490000px;}
.y36{bottom:238.350000px;}
.y83{bottom:250.410000px;}
.yd0{bottom:253.470000px;}
.y66{bottom:257.430000px;}
.yb3{bottom:258.150000px;}
.y35{bottom:263.010000px;}
.y82{bottom:275.070000px;}
.ycf{bottom:278.130000px;}
.y65{bottom:282.090000px;}
.yb2{bottom:282.810000px;}
.y34{bottom:287.670000px;}
.y81{bottom:299.730000px;}
.yce{bottom:302.790000px;}
.y64{bottom:306.750000px;}
.yb1{bottom:308.550000px;}
.y33{bottom:312.330000px;}
.y80{bottom:324.390000px;}
.ycd{bottom:328.530000px;}
.y63{bottom:331.410000px;}
.yb0{bottom:333.210000px;}
.y32{bottom:336.990000px;}
.y7f{bottom:349.050000px;}
.ycc{bottom:353.190000px;}
.y62{bottom:356.070000px;}
.yaf{bottom:358.050000px;}
.y31{bottom:361.650000px;}
.y7e{bottom:374.790000px;}
.ycb{bottom:378.030000px;}
.y61{bottom:380.370000px;}
.yae{bottom:383.790000px;}
.y30{bottom:386.310000px;}
.y7d{bottom:399.630000px;}
.yca{bottom:403.770000px;}
.y60{bottom:405.390000px;}
.yad{bottom:408.630000px;}
.y2f{bottom:410.970000px;}
.y7c{bottom:424.290000px;}
.yc9{bottom:428.430000px;}
.y5f{bottom:430.050000px;}
.yac{bottom:434.010000px;}
.y2e{bottom:435.630000px;}
.y7b{bottom:450.075000px;}
.yc8{bottom:454.215000px;}
.yd9{bottom:454.395000px;}
.y5e{bottom:454.755000px;}
.yab{bottom:458.715000px;}
.y2d{bottom:460.155000px;}
.y3c{bottom:460.515000px;}
.y7a{bottom:474.735000px;}
.yc7{bottom:479.055000px;}
.y5d{bottom:479.595000px;}
.yaa{bottom:483.375000px;}
.y2c{bottom:484.815000px;}
.y79{bottom:499.575000px;}
.yc6{bottom:503.715000px;}
.y5c{bottom:504.255000px;}
.ya9{bottom:508.395000px;}
.y2b{bottom:508.755000px;}
.y78{bottom:524.955000px;}
.y5b{bottom:528.915000px;}
.yc5{bottom:529.095000px;}
.y2a{bottom:530.715000px;}
.ya8{bottom:533.055000px;}
.y77{bottom:549.615000px;}
.y5a{bottom:553.575000px;}
.yc4{bottom:553.755000px;}
.y29{bottom:557.355000px;}
.ya7{bottom:557.715000px;}
.y76{bottom:574.635000px;}
.y59{bottom:578.235000px;}
.yc3{bottom:578.775000px;}
.y28{bottom:579.135000px;}
.ya6{bottom:582.375000px;}
.y75{bottom:599.475000px;}
.y27{bottom:600.915000px;}
.y58{bottom:602.895000px;}
.yc2{bottom:603.435000px;}
.ya5{bottom:607.035000px;}
.y26{bottom:622.695000px;}
.y74{bottom:625.215000px;}
.y57{bottom:627.555000px;}
.yc1{bottom:628.095000px;}
.ya4{bottom:631.695000px;}
.y25{bottom:644.655000px;}
.y73{bottom:649.875000px;}
.y56{bottom:652.215000px;}
.yc0{bottom:652.755000px;}
.ya3{bottom:656.355000px;}
.y24{bottom:666.435000px;}
.y72{bottom:675.615000px;}
.y55{bottom:676.905000px;}
.ybf{bottom:677.445000px;}
.ya2{bottom:681.045000px;}
.y23{bottom:688.245000px;}
.y71{bottom:700.485000px;}
.y54{bottom:701.205000px;}
.yd8{bottom:701.565000px;}
.ybe{bottom:702.285000px;}
.ya1{bottom:705.345000px;}
.y22{bottom:710.025000px;}
.y53{bottom:725.865000px;}
.yd7{bottom:726.225000px;}
.ybd{bottom:728.025000px;}
.ya0{bottom:730.005000px;}
.y21{bottom:731.805000px;}
.y70{bottom:750.525000px;}
.y52{bottom:750.885000px;}
.ybc{bottom:752.865000px;}
.y20{bottom:753.765000px;}
.y9f{bottom:755.025000px;}
.y6f{bottom:775.185000px;}
.y1f{bottom:775.545000px;}
.ybb{bottom:778.605000px;}
.y9e{bottom:779.685000px;}
.y1e{bottom:797.325000px;}
.y51{bottom:800.205000px;}
.yba{bottom:803.265000px;}
.y9d{bottom:804.345000px;}
.y1d{bottom:819.105000px;}
.y50{bottom:824.865000px;}
.y9c{bottom:829.005000px;}
.y1c{bottom:841.065000px;}
.y4f{bottom:849.525000px;}
.y9b{bottom:853.665000px;}
.y1b{bottom:862.485000px;}
.y4e{bottom:873.825000px;}
.y6e{bottom:874.185000px;}
.yb9{bottom:877.965000px;}
.y9a{bottom:878.325000px;}
.y1a{bottom:881.745000px;}
.y18{bottom:890.385000px;}
.y12{bottom:897.585000px;}
.y4d{bottom:898.485000px;}
.y6d{bottom:898.845000px;}
.y17{bottom:902.092868px;}
.y99{bottom:902.625000px;}
.y6c{bottom:923.190000px;}
.y4c{bottom:923.550000px;}
.y98{bottom:927.330000px;}
.y97{bottom:947.490000px;}
.y4b{bottom:948.210000px;}
.y94{bottom:972.510000px;}
.y4a{bottom:972.870000px;}
.y49{bottom:997.530000px;}
.y93{bottom:1016.430000px;}
.y10{bottom:1018.590000px;}
.y48{bottom:1022.190000px;}
.yd{bottom:1025.070000px;}
.y47{bottom:1046.850000px;}
.y8d{bottom:1060.350000px;}
.y46{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y45{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y44{bottom:1120.830000px;}
.y8b{bottom:1123.350000px;}
.y7{bottom:1128.570000px;}
.y43{bottom:1145.520000px;}
.y8a{bottom:1150.920000px;}
.y4{bottom:1156.860000px;}
.y42{bottom:1169.820000px;}
.yd6{bottom:1170.180000px;}
.y40{bottom:1187.280000px;}
.y3f{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.465000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h23{height:18.885000px;}
.h11{height:19.008000px;}
.h26{height:19.065000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1d{height:30.480469px;}
.h18{height:36.861328px;}
.h25{height:37.965000px;}
.h21{height:47.901094px;}
.h1a{height:48.418594px;}
.he{height:51.465000px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h24{height:57.045000px;}
.hb{height:60.960938px;}
.h20{height:61.423863px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1c{height:65.010937px;}
.h1e{height:65.499609px;}
.h1b{height:66.757500px;}
.h1f{height:68.084282px;}
.h14{height:70.628906px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.530000px;}
.h12{height:120.982500px;}
.h22{height:142.357500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w8{width:243.919500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w9{width:441.615000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:1.069500px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.x13{left:41.203500px;}
.x25{left:43.549500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x24{left:101.926500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1e{left:123.516000px;}
.x1d{left:135.036000px;}
.x1f{left:150.510000px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x17{left:180.028500px;}
.x18{left:193.528500px;}
.x6{left:209.010000px;}
.x15{left:255.988500px;}
.x16{left:263.368500px;}
.x14{left:286.768500px;}
.x19{left:324.965515px;}
.x12{left:335.578500px;}
.x26{left:349.635000px;}
.xa{left:445.620000px;}
.x1c{left:473.505000px;}
.x20{left:488.985000px;}
.x22{left:500.505000px;}
.x21{left:515.985000px;}
.x23{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:67.200000pt;}
.ls19{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.368533pt;}
.ls18{letter-spacing:-0.233067pt;}
.ls7{letter-spacing:-0.169067pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls8{letter-spacing:0.069333pt;}
.lsf{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.135467pt;}
.lsa{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.lsb{letter-spacing:0.233067pt;}
.lsc{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls1b{letter-spacing:6.031360pt;}
.lsd{letter-spacing:35.450027pt;}
.ls1a{letter-spacing:35.471360pt;}
.ls10{letter-spacing:49.211307pt;}
.ls16{letter-spacing:52.730027pt;}
.ls12{letter-spacing:52.751360pt;}
.lse{letter-spacing:56.891307pt;}
.ls11{letter-spacing:56.912640pt;}
.ls15{letter-spacing:1284.746667pt;}
.wsd{word-spacing:-58.880000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws0{word-spacing:-21.389227pt;}
.ws7{word-spacing:-17.295360pt;}
.ws1{word-spacing:-16.898560pt;}
.ws3{word-spacing:-16.473600pt;}
.ws2{word-spacing:-16.304533pt;}
.wsb{word-spacing:-15.088533pt;}
.ws9{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.855467pt;}
.ws8{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.486933pt;}
.ws5{word-spacing:-14.144000pt;}
.ws6{word-spacing:-13.952000pt;}
.ws4{word-spacing:-13.022933pt;}
.wsa{word-spacing:0.000000pt;}
._2d{margin-left:-1.882880pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._7{width:2.767360pt;}
._8{width:3.831040pt;}
._c{width:4.761600pt;}
._b{width:5.711360pt;}
._9{width:7.477760pt;}
._6{width:8.739413pt;}
._5{width:9.656320pt;}
._a{width:10.951680pt;}
._14{width:12.188160pt;}
._d{width:13.522560pt;}
._4{width:16.015360pt;}
._16{width:17.134080pt;}
._28{width:18.552960pt;}
._13{width:19.724800pt;}
._3{width:21.522560pt;}
._2{width:22.582400pt;}
._24{width:23.964160pt;}
._12{width:25.730560pt;}
._15{width:26.704000pt;}
._1f{width:28.497920pt;}
._17{width:29.675520pt;}
._18{width:30.707840pt;}
._23{width:32.325120pt;}
._2f{width:33.914880pt;}
._30{width:35.359360pt;}
._37{width:37.207040pt;}
._31{width:38.538240pt;}
._2c{width:39.452160pt;}
._20{width:41.274880pt;}
._21{width:42.424960pt;}
._10{width:43.865600pt;}
._f{width:44.925440pt;}
._2e{width:46.809600pt;}
._e{width:48.104960pt;}
._38{width:49.516800pt;}
._29{width:50.698240pt;}
._2a{width:52.254507pt;}
._1e{width:53.143893pt;}
._26{width:54.370987pt;}
._3c{width:60.175360pt;}
._36{width:61.588480pt;}
._1d{width:62.801280pt;}
._1c{width:63.767040pt;}
._35{width:65.400320pt;}
._11{width:67.123200pt;}
._32{width:74.938880pt;}
._33{width:78.164480pt;}
._34{width:79.230720pt;}
._22{width:83.962880pt;}
._3b{width:86.435840pt;}
._3a{width:87.390720pt;}
._27{width:99.208320pt;}
._25{width:106.663040pt;}
._2b{width:111.168000pt;}
._39{width:131.338027pt;}
._1b{width:135.905280pt;}
._3d{width:164.071040pt;}
._19{width:168.548907pt;}
._1a{width:175.686400pt;}
._3e{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:34.560000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs7{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y11{bottom:1.600000pt;}
.y3{bottom:3.040000pt;}
.y8c{bottom:3.200000pt;}
.y96{bottom:3.360000pt;}
.y90{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.yf{bottom:6.720000pt;}
.y6{bottom:7.520000pt;}
.y92{bottom:12.160000pt;}
.y95{bottom:20.160000pt;}
.y8f{bottom:20.480000pt;}
.y16{bottom:23.560000pt;}
.y91{bottom:28.960000pt;}
.y5{bottom:29.440000pt;}
.ye{bottom:29.600000pt;}
.y8e{bottom:37.120000pt;}
.y15{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:63.880000pt;}
.y41{bottom:66.880000pt;}
.y13{bottom:84.680000pt;}
.y3e{bottom:101.920000pt;}
.y3b{bottom:102.240000pt;}
.y89{bottom:110.880000pt;}
.yd5{bottom:115.520000pt;}
.y6b{bottom:119.200000pt;}
.yb8{bottom:119.520000pt;}
.y3d{bottom:123.840000pt;}
.y3a{bottom:124.160000pt;}
.y88{bottom:127.680000pt;}
.yd4{bottom:137.440000pt;}
.y6a{bottom:141.120000pt;}
.yb7{bottom:141.760000pt;}
.y87{bottom:144.640000pt;}
.y39{bottom:146.080000pt;}
.yd3{bottom:159.360000pt;}
.y86{bottom:161.440000pt;}
.y69{bottom:163.040000pt;}
.yb6{bottom:163.680000pt;}
.y38{bottom:168.000000pt;}
.y85{bottom:178.400000pt;}
.yd2{bottom:180.960000pt;}
.y68{bottom:184.986667pt;}
.yb5{bottom:185.626667pt;}
.y37{bottom:189.946667pt;}
.y84{bottom:200.666667pt;}
.yd1{bottom:202.906667pt;}
.y67{bottom:206.906667pt;}
.yb4{bottom:207.546667pt;}
.y36{bottom:211.866667pt;}
.y83{bottom:222.586667pt;}
.yd0{bottom:225.306667pt;}
.y66{bottom:228.826667pt;}
.yb3{bottom:229.466667pt;}
.y35{bottom:233.786667pt;}
.y82{bottom:244.506667pt;}
.ycf{bottom:247.226667pt;}
.y65{bottom:250.746667pt;}
.yb2{bottom:251.386667pt;}
.y34{bottom:255.706667pt;}
.y81{bottom:266.426667pt;}
.yce{bottom:269.146667pt;}
.y64{bottom:272.666667pt;}
.yb1{bottom:274.266667pt;}
.y33{bottom:277.626667pt;}
.y80{bottom:288.346667pt;}
.ycd{bottom:292.026667pt;}
.y63{bottom:294.586667pt;}
.yb0{bottom:296.186667pt;}
.y32{bottom:299.546667pt;}
.y7f{bottom:310.266667pt;}
.ycc{bottom:313.946667pt;}
.y62{bottom:316.506667pt;}
.yaf{bottom:318.266667pt;}
.y31{bottom:321.466667pt;}
.y7e{bottom:333.146667pt;}
.ycb{bottom:336.026667pt;}
.y61{bottom:338.106667pt;}
.yae{bottom:341.146667pt;}
.y30{bottom:343.386667pt;}
.y7d{bottom:355.226667pt;}
.yca{bottom:358.906667pt;}
.y60{bottom:360.346667pt;}
.yad{bottom:363.226667pt;}
.y2f{bottom:365.306667pt;}
.y7c{bottom:377.146667pt;}
.yc9{bottom:380.826667pt;}
.y5f{bottom:382.266667pt;}
.yac{bottom:385.786667pt;}
.y2e{bottom:387.226667pt;}
.y7b{bottom:400.066667pt;}
.yc8{bottom:403.746667pt;}
.yd9{bottom:403.906667pt;}
.y5e{bottom:404.226667pt;}
.yab{bottom:407.746667pt;}
.y2d{bottom:409.026667pt;}
.y3c{bottom:409.346667pt;}
.y7a{bottom:421.986667pt;}
.yc7{bottom:425.826667pt;}
.y5d{bottom:426.306667pt;}
.yaa{bottom:429.666667pt;}
.y2c{bottom:430.946667pt;}
.y79{bottom:444.066667pt;}
.yc6{bottom:447.746667pt;}
.y5c{bottom:448.226667pt;}
.ya9{bottom:451.906667pt;}
.y2b{bottom:452.226667pt;}
.y78{bottom:466.626667pt;}
.y5b{bottom:470.146667pt;}
.yc5{bottom:470.306667pt;}
.y2a{bottom:471.746667pt;}
.ya8{bottom:473.826667pt;}
.y77{bottom:488.546667pt;}
.y5a{bottom:492.066667pt;}
.yc4{bottom:492.226667pt;}
.y29{bottom:495.426667pt;}
.ya7{bottom:495.746667pt;}
.y76{bottom:510.786667pt;}
.y59{bottom:513.986667pt;}
.yc3{bottom:514.466667pt;}
.y28{bottom:514.786667pt;}
.ya6{bottom:517.666667pt;}
.y75{bottom:532.866667pt;}
.y27{bottom:534.146667pt;}
.y58{bottom:535.906667pt;}
.yc2{bottom:536.386667pt;}
.ya5{bottom:539.586667pt;}
.y26{bottom:553.506667pt;}
.y74{bottom:555.746667pt;}
.y57{bottom:557.826667pt;}
.yc1{bottom:558.306667pt;}
.ya4{bottom:561.506667pt;}
.y25{bottom:573.026667pt;}
.y73{bottom:577.666667pt;}
.y56{bottom:579.746667pt;}
.yc0{bottom:580.226667pt;}
.ya3{bottom:583.426667pt;}
.y24{bottom:592.386667pt;}
.y72{bottom:600.546667pt;}
.y55{bottom:601.693333pt;}
.ybf{bottom:602.173333pt;}
.ya2{bottom:605.373333pt;}
.y23{bottom:611.773333pt;}
.y71{bottom:622.653333pt;}
.y54{bottom:623.293333pt;}
.yd8{bottom:623.613333pt;}
.ybe{bottom:624.253333pt;}
.ya1{bottom:626.973333pt;}
.y22{bottom:631.133333pt;}
.y53{bottom:645.213333pt;}
.yd7{bottom:645.533333pt;}
.ybd{bottom:647.133333pt;}
.ya0{bottom:648.893333pt;}
.y21{bottom:650.493333pt;}
.y70{bottom:667.133333pt;}
.y52{bottom:667.453333pt;}
.ybc{bottom:669.213333pt;}
.y20{bottom:670.013333pt;}
.y9f{bottom:671.133333pt;}
.y6f{bottom:689.053333pt;}
.y1f{bottom:689.373333pt;}
.ybb{bottom:692.093333pt;}
.y9e{bottom:693.053333pt;}
.y1e{bottom:708.733333pt;}
.y51{bottom:711.293333pt;}
.yba{bottom:714.013333pt;}
.y9d{bottom:714.973333pt;}
.y1d{bottom:728.093333pt;}
.y50{bottom:733.213333pt;}
.y9c{bottom:736.893333pt;}
.y1c{bottom:747.613333pt;}
.y4f{bottom:755.133333pt;}
.y9b{bottom:758.813333pt;}
.y1b{bottom:766.653333pt;}
.y4e{bottom:776.733333pt;}
.y6e{bottom:777.053333pt;}
.yb9{bottom:780.413333pt;}
.y9a{bottom:780.733333pt;}
.y1a{bottom:783.773333pt;}
.y18{bottom:791.453333pt;}
.y12{bottom:797.853333pt;}
.y4d{bottom:798.653333pt;}
.y6d{bottom:798.973333pt;}
.y17{bottom:801.860327pt;}
.y99{bottom:802.333333pt;}
.y6c{bottom:820.613333pt;}
.y4c{bottom:820.933333pt;}
.y98{bottom:824.293333pt;}
.y97{bottom:842.213333pt;}
.y4b{bottom:842.853333pt;}
.y94{bottom:864.453333pt;}
.y4a{bottom:864.773333pt;}
.y49{bottom:886.693333pt;}
.y93{bottom:903.493333pt;}
.y10{bottom:905.413333pt;}
.y48{bottom:908.613333pt;}
.yd{bottom:911.173333pt;}
.y47{bottom:930.533333pt;}
.y8d{bottom:942.533333pt;}
.y46{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y45{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y44{bottom:996.293333pt;}
.y8b{bottom:998.533333pt;}
.y7{bottom:1003.173333pt;}
.y43{bottom:1018.240000pt;}
.y8a{bottom:1023.040000pt;}
.y4{bottom:1028.320000pt;}
.y42{bottom:1039.840000pt;}
.yd6{bottom:1040.160000pt;}
.y40{bottom:1055.360000pt;}
.y3f{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.746667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h23{height:16.786667pt;}
.h11{height:16.896000pt;}
.h26{height:16.946667pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1d{height:27.093750pt;}
.h18{height:32.765625pt;}
.h25{height:33.746667pt;}
.h21{height:42.578750pt;}
.h1a{height:43.038750pt;}
.he{height:45.746667pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h24{height:50.706667pt;}
.hb{height:54.187500pt;}
.h20{height:54.598989pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1c{height:57.787500pt;}
.h1e{height:58.221875pt;}
.h1b{height:59.340000pt;}
.h1f{height:60.519362pt;}
.h14{height:62.781250pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:92.026667pt;}
.h12{height:107.540000pt;}
.h22{height:126.540000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w8{width:216.817333pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w9{width:392.546667pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:0.950667pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.x13{left:36.625333pt;}
.x25{left:38.710667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x24{left:90.601333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1e{left:109.792000pt;}
.x1d{left:120.032000pt;}
.x1f{left:133.786667pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x17{left:160.025333pt;}
.x18{left:172.025333pt;}
.x6{left:185.786667pt;}
.x15{left:227.545333pt;}
.x16{left:234.105333pt;}
.x14{left:254.905333pt;}
.x19{left:288.858236pt;}
.x12{left:298.292000pt;}
.x26{left:310.786667pt;}
.xa{left:396.106667pt;}
.x1c{left:420.893333pt;}
.x20{left:434.653333pt;}
.x22{left:444.893333pt;}
.x21{left:458.653333pt;}
.x23{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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