
    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_8617bf16cce7c924fd51018a.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_ea0ee9aee58409b4ad495e1b.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_49a828ccaacc9f9c1bd396e3.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_9fa19f391f67930d4339abd8.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_a617d58e28703e9e0f736bd2.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_fa154933985accb7e1004506.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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_1af147ac9879c5bddb3c1532.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_3c3e245761ff2e205a3340aa.woff')format("woff");}.ffc{font-family:ffc;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d31e8165374c7b7be054c511.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_23eef9af58709e7d725caaf8.woff')format("woff");}.ffe{font-family:ffe;line-height:0.884766;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_dde4f6924971fbf3c7eff357.woff')format("woff");}.fff{font-family:fff;line-height:1.040039;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_8c2964f3539a9310dd209e61.woff')format("woff");}.ff10{font-family:ff10;line-height:0.758789;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_3fc017b90ea9634dccad3e66.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b7769a3abdc9cbef993e2a65.woff')format("woff");}.ff12{font-family:ff12;line-height:0.914062;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_0c9d0011e9c2563ae388dff8.woff')format("woff");}.ff14{font-family:ff14;line-height:0.921387;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:33.120000px;}
.ls18{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.190200px;}
.lsa{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.114000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.lsc{letter-spacing:0.020160px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078000px;}
.ls5{letter-spacing:0.149760px;}
.ls17{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.567600px;}
.ls3{letter-spacing:0.576000px;}
.ls16{letter-spacing:6.785280px;}
.ls15{letter-spacing:24.480000px;}
.lsd{letter-spacing:30.545280px;}
.lsf{letter-spacing:39.905280px;}
.ls10{letter-spacing:59.345280px;}
.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;}
}
.wsb{word-spacing:-66.240000px;}
.ws9{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.wsa{word-spacing:-17.127600px;}
.wsc{word-spacing:-16.865400px;}
.wse{word-spacing:-16.822200px;}
.wsd{word-spacing:-16.712400px;}
.ws7{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.912000px;}
.wsf{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws6{word-spacing:-12.060000px;}
.ws8{word-spacing:0.000000px;}
._12{margin-left:-2.098800px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._b{width:2.517120px;}
._c{width:3.709440px;}
._6{width:5.135760px;}
._5{width:6.292800px;}
._8{width:8.217120px;}
._7{width:9.671040px;}
._a{width:10.929600px;}
._9{width:12.055680px;}
._e{width:13.446720px;}
._20{width:14.904000px;}
._2f{width:17.619840px;}
._2d{width:18.914880px;}
._1b{width:20.314800px;}
._14{width:21.726720px;}
._d{width:23.780160px;}
._13{width:24.840000px;}
._22{width:25.873680px;}
._3{width:26.964000px;}
._2{width:28.019520px;}
._4{width:29.379600px;}
._21{width:30.471120px;}
._16{width:31.591440px;}
._3e{width:32.713200px;}
._3d{width:33.859200px;}
._15{width:35.990640px;}
._10{width:37.001520px;}
._f{width:38.220480px;}
._2a{width:39.860400px;}
._24{width:41.333760px;}
._25{width:42.505200px;}
._2b{width:43.850880px;}
._2c{width:45.241920px;}
._36{width:46.301760px;}
._32{width:47.560320px;}
._4f{width:48.593280px;}
._17{width:49.608720px;}
._18{width:50.657760px;}
._35{width:51.759360px;}
._3f{width:53.276400px;}
._28{width:54.449280px;}
._29{width:55.641600px;}
._41{width:57.576960px;}
._26{width:58.622400px;}
._27{width:59.793840px;}
._53{width:61.139520px;}
._40{width:62.732880px;}
._4e{width:63.893520px;}
._39{width:65.149200px;}
._3a{width:66.316320px;}
._34{width:67.543920px;}
._33{width:68.558400px;}
._42{width:69.883200px;}
._54{width:71.009280px;}
._23{width:73.044480px;}
._4b{width:74.387520px;}
._44{width:77.295600px;}
._43{width:78.480000px;}
._4a{width:81.011520px;}
._49{width:82.800000px;}
._11{width:84.191040px;}
._38{width:85.350000px;}
._37{width:88.012080px;}
._19{width:91.543680px;}
._1a{width:92.759040px;}
._1c{width:94.060800px;}
._30{width:97.041600px;}
._50{width:98.401680px;}
._46{width:100.149840px;}
._31{width:101.347200px;}
._3b{width:103.798080px;}
._3c{width:105.102000px;}
._55{width:108.098640px;}
._47{width:111.216960px;}
._48{width:112.322160px;}
._57{width:113.999040px;}
._56{width:115.901760px;}
._2e{width:121.788480px;}
._51{width:127.247040px;}
._52{width:128.301840px;}
._4d{width:137.911680px;}
._4c{width:139.811760px;}
._1f{width:152.893440px;}
._45{width:159.235920px;}
._1d{width:189.617520px;}
._1e{width:197.647200px;}
._58{width:275.690880px;}
.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;}
.fsa{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs9{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y19{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y16{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.y15{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y14{bottom:70.785000px;}
.y3e{bottom:75.240000px;}
.y13{bottom:93.465000px;}
.y12{bottom:116.145000px;}
.y38{bottom:118.260000px;}
.y9d{bottom:130.140000px;}
.y69{bottom:134.100000px;}
.yc8{bottom:135.000000px;}
.y37{bottom:143.100000px;}
.y9c{bottom:154.800000px;}
.yc7{bottom:156.960000px;}
.y68{bottom:158.400000px;}
.y72{bottom:158.760000px;}
.y36{bottom:167.760000px;}
.yc6{bottom:178.740000px;}
.y9b{bottom:179.460000px;}
.y7a{bottom:183.060000px;}
.y67{bottom:183.420000px;}
.y35{bottom:192.420000px;}
.yc5{bottom:200.520000px;}
.y9a{bottom:204.480000px;}
.y79{bottom:207.750000px;}
.y66{bottom:208.110000px;}
.y3b{bottom:216.750000px;}
.y34{bottom:217.110000px;}
.yc4{bottom:222.330000px;}
.y99{bottom:229.170000px;}
.y65{bottom:232.770000px;}
.y3a{bottom:241.410000px;}
.y33{bottom:241.770000px;}
.yc3{bottom:244.110000px;}
.y98{bottom:254.010000px;}
.y64{bottom:257.070000px;}
.y71{bottom:257.430000px;}
.yc2{bottom:266.070000px;}
.y32{bottom:266.430000px;}
.y97{bottom:278.670000px;}
.y63{bottom:281.730000px;}
.y70{bottom:282.090000px;}
.yc1{bottom:287.850000px;}
.y31{bottom:291.090000px;}
.y96{bottom:303.330000px;}
.ya1{bottom:306.390000px;}
.y62{bottom:306.750000px;}
.yc0{bottom:309.630000px;}
.y30{bottom:315.750000px;}
.y95{bottom:327.990000px;}
.y61{bottom:331.410000px;}
.y2f{bottom:340.410000px;}
.y94{bottom:352.650000px;}
.ybf{bottom:353.370000px;}
.y60{bottom:356.070000px;}
.y2e{bottom:365.070000px;}
.ybe{bottom:375.150000px;}
.y93{bottom:377.310000px;}
.y5f{bottom:380.730000px;}
.y2d{bottom:389.730000px;}
.ybd{bottom:396.930000px;}
.y92{bottom:401.970000px;}
.y5e{bottom:405.390000px;}
.y2c{bottom:414.390000px;}
.ybc{bottom:418.710000px;}
.y91{bottom:426.630000px;}
.y5d{bottom:430.050000px;}
.y2b{bottom:439.050000px;}
.ybb{bottom:440.490000px;}
.y90{bottom:451.335000px;}
.y6f{bottom:454.395000px;}
.y5c{bottom:454.755000px;}
.yba{bottom:462.495000px;}
.y2a{bottom:463.755000px;}
.y8f{bottom:475.995000px;}
.y6e{bottom:479.235000px;}
.y5b{bottom:479.595000px;}
.yb9{bottom:484.275000px;}
.y29{bottom:488.415000px;}
.y8e{bottom:500.655000px;}
.y5a{bottom:503.895000px;}
.y78{bottom:504.255000px;}
.yb8{bottom:506.055000px;}
.y28{bottom:513.075000px;}
.y8d{bottom:525.315000px;}
.yb7{bottom:527.835000px;}
.ya6{bottom:528.555000px;}
.y59{bottom:528.915000px;}
.y27{bottom:537.735000px;}
.yb6{bottom:549.795000px;}
.y8c{bottom:551.055000px;}
.ya2{bottom:553.215000px;}
.y58{bottom:553.575000px;}
.y26{bottom:562.395000px;}
.yb5{bottom:571.575000px;}
.y8b{bottom:575.715000px;}
.y77{bottom:577.875000px;}
.y57{bottom:578.235000px;}
.y25{bottom:587.055000px;}
.yb4{bottom:593.355000px;}
.y8a{bottom:600.555000px;}
.y56{bottom:602.535000px;}
.y6d{bottom:602.895000px;}
.y24{bottom:611.355000px;}
.y39{bottom:611.715000px;}
.yb3{bottom:615.135000px;}
.y89{bottom:625.215000px;}
.y55{bottom:627.555000px;}
.y23{bottom:636.015000px;}
.yb2{bottom:636.915000px;}
.y88{bottom:649.875000px;}
.y54{bottom:652.215000px;}
.yb1{bottom:658.875000px;}
.y22{bottom:662.835000px;}
.y87{bottom:674.535000px;}
.y53{bottom:676.905000px;}
.yb0{bottom:680.685000px;}
.y21{bottom:692.565000px;}
.y86{bottom:699.225000px;}
.ya0{bottom:701.205000px;}
.y52{bottom:701.565000px;}
.yaf{bottom:702.465000px;}
.y20{bottom:717.225000px;}
.y85{bottom:723.885000px;}
.yae{bottom:724.245000px;}
.ya3{bottom:725.865000px;}
.y51{bottom:726.225000px;}
.y1f{bottom:741.885000px;}
.yad{bottom:746.025000px;}
.y84{bottom:748.545000px;}
.y6c{bottom:750.525000px;}
.y50{bottom:750.885000px;}
.y1e{bottom:766.545000px;}
.yac{bottom:767.985000px;}
.y83{bottom:772.845000px;}
.y4f{bottom:775.545000px;}
.yab{bottom:789.765000px;}
.y1d{bottom:791.205000px;}
.y82{bottom:798.945000px;}
.y4e{bottom:800.205000px;}
.yaa{bottom:811.545000px;}
.y1c{bottom:815.865000px;}
.y81{bottom:823.605000px;}
.y4d{bottom:824.865000px;}
.ya9{bottom:833.325000px;}
.y1b{bottom:840.525000px;}
.y80{bottom:848.265000px;}
.ya4{bottom:849.165000px;}
.y4c{bottom:849.525000px;}
.ya8{bottom:855.285000px;}
.y1a{bottom:864.825000px;}
.y7f{bottom:872.925000px;}
.y4b{bottom:873.825000px;}
.y6b{bottom:874.185000px;}
.ya7{bottom:877.065000px;}
.y18{bottom:880.125000px;}
.y11{bottom:887.325000px;}
.y17{bottom:891.291275px;}
.y7e{bottom:897.585000px;}
.y76{bottom:898.485000px;}
.y4a{bottom:898.845000px;}
.y7d{bottom:922.290000px;}
.y75{bottom:923.190000px;}
.y49{bottom:923.550000px;}
.y7c{bottom:947.130000px;}
.y48{bottom:948.210000px;}
.y7b{bottom:971.790000px;}
.ya5{bottom:972.510000px;}
.y47{bottom:972.870000px;}
.y46{bottom:997.170000px;}
.y74{bottom:997.530000px;}
.y45{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.y9f{bottom:1046.490000px;}
.y44{bottom:1046.850000px;}
.y43{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y42{bottom:1095.810000px;}
.y6a{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y41{bottom:1120.470000px;}
.y73{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y40{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y9e{bottom:1169.820000px;}
.y3f{bottom:1170.180000px;}
.y3d{bottom:1187.280000px;}
.y3c{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h17{height:7.200000px;}
.hd{height:13.324219px;}
.h18{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1c{height:30.480469px;}
.he{height:41.025000px;}
.h1f{height:46.251562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1d{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h19{height:64.978594px;}
.h1b{height:65.010937px;}
.h1a{height:66.757500px;}
.h14{height:67.803750px;}
.h1e{height:68.084282px;}
.h6{height:71.324297px;}
.h16{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h13{height:81.736875px;}
.h3{height:103.530000px;}
.h12{height:141.862500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.x13{left:90.883500px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x15{left:112.483500px;}
.x14{left:126.523500px;}
.x1e{left:140.076000px;}
.x16{left:147.403500px;}
.x1b{left:162.030000px;}
.x4{left:168.885000px;}
.x18{left:170.668500px;}
.x17{left:192.988500px;}
.x6{left:209.010000px;}
.x19{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1c{left:473.505000px;}
.x20{left:478.545000px;}
.x21{left:500.505000px;}
.x1f{left:505.545000px;}
.x1d{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:761.010000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.169067pt;}
.lsa{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.101333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.lsc{letter-spacing:0.017920pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls5{letter-spacing:0.133120pt;}
.ls17{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.504533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls16{letter-spacing:6.031360pt;}
.ls15{letter-spacing:21.760000pt;}
.lsd{letter-spacing:27.151360pt;}
.lsf{letter-spacing:35.471360pt;}
.ls10{letter-spacing:52.751360pt;}
.wsb{word-spacing:-58.880000pt;}
.ws9{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.wsa{word-spacing:-15.224533pt;}
.wsc{word-spacing:-14.991467pt;}
.wse{word-spacing:-14.953067pt;}
.wsd{word-spacing:-14.855467pt;}
.ws7{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.144000pt;}
.wsf{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws6{word-spacing:-10.720000pt;}
.ws8{word-spacing:0.000000pt;}
._12{margin-left:-1.865600pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._b{width:2.237440pt;}
._c{width:3.297280pt;}
._6{width:4.565120pt;}
._5{width:5.593600pt;}
._8{width:7.304107pt;}
._7{width:8.596480pt;}
._a{width:9.715200pt;}
._9{width:10.716160pt;}
._e{width:11.952640pt;}
._20{width:13.248000pt;}
._2f{width:15.662080pt;}
._2d{width:16.813227pt;}
._1b{width:18.057600pt;}
._14{width:19.312640pt;}
._d{width:21.137920pt;}
._13{width:22.080000pt;}
._22{width:22.998827pt;}
._3{width:23.968000pt;}
._2{width:24.906240pt;}
._4{width:26.115200pt;}
._21{width:27.085440pt;}
._16{width:28.081280pt;}
._3e{width:29.078400pt;}
._3d{width:30.097067pt;}
._15{width:31.991680pt;}
._10{width:32.890240pt;}
._f{width:33.973760pt;}
._2a{width:35.431467pt;}
._24{width:36.741120pt;}
._25{width:37.782400pt;}
._2b{width:38.978560pt;}
._2c{width:40.215040pt;}
._36{width:41.157120pt;}
._32{width:42.275840pt;}
._4f{width:43.194027pt;}
._17{width:44.096640pt;}
._18{width:45.029120pt;}
._35{width:46.008320pt;}
._3f{width:47.356800pt;}
._28{width:48.399360pt;}
._29{width:49.459200pt;}
._41{width:51.179520pt;}
._26{width:52.108800pt;}
._27{width:53.150080pt;}
._53{width:54.346240pt;}
._40{width:55.762560pt;}
._4e{width:56.794240pt;}
._39{width:57.910400pt;}
._3a{width:58.947840pt;}
._34{width:60.039040pt;}
._33{width:60.940800pt;}
._42{width:62.118400pt;}
._54{width:63.119360pt;}
._23{width:64.928427pt;}
._4b{width:66.122240pt;}
._44{width:68.707200pt;}
._43{width:69.760000pt;}
._4a{width:72.010240pt;}
._49{width:73.600000pt;}
._11{width:74.836480pt;}
._38{width:75.866667pt;}
._37{width:78.232960pt;}
._19{width:81.372160pt;}
._1a{width:82.452480pt;}
._1c{width:83.609600pt;}
._30{width:86.259200pt;}
._50{width:87.468160pt;}
._46{width:89.022080pt;}
._31{width:90.086400pt;}
._3b{width:92.264960pt;}
._3c{width:93.424000pt;}
._55{width:96.087680pt;}
._47{width:98.859520pt;}
._48{width:99.841920pt;}
._57{width:101.332480pt;}
._56{width:103.023787pt;}
._2e{width:108.256427pt;}
._51{width:113.108480pt;}
._52{width:114.046080pt;}
._4d{width:122.588160pt;}
._4c{width:124.277120pt;}
._1f{width:135.905280pt;}
._45{width:141.543040pt;}
._1d{width:168.548907pt;}
._1e{width:175.686400pt;}
._58{width:245.058560pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs9{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y19{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y16{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.y15{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:62.920000pt;}
.y3e{bottom:66.880000pt;}
.y13{bottom:83.080000pt;}
.y12{bottom:103.240000pt;}
.y38{bottom:105.120000pt;}
.y9d{bottom:115.680000pt;}
.y69{bottom:119.200000pt;}
.yc8{bottom:120.000000pt;}
.y37{bottom:127.200000pt;}
.y9c{bottom:137.600000pt;}
.yc7{bottom:139.520000pt;}
.y68{bottom:140.800000pt;}
.y72{bottom:141.120000pt;}
.y36{bottom:149.120000pt;}
.yc6{bottom:158.880000pt;}
.y9b{bottom:159.520000pt;}
.y7a{bottom:162.720000pt;}
.y67{bottom:163.040000pt;}
.y35{bottom:171.040000pt;}
.yc5{bottom:178.240000pt;}
.y9a{bottom:181.760000pt;}
.y79{bottom:184.666667pt;}
.y66{bottom:184.986667pt;}
.y3b{bottom:192.666667pt;}
.y34{bottom:192.986667pt;}
.yc4{bottom:197.626667pt;}
.y99{bottom:203.706667pt;}
.y65{bottom:206.906667pt;}
.y3a{bottom:214.586667pt;}
.y33{bottom:214.906667pt;}
.yc3{bottom:216.986667pt;}
.y98{bottom:225.786667pt;}
.y64{bottom:228.506667pt;}
.y71{bottom:228.826667pt;}
.yc2{bottom:236.506667pt;}
.y32{bottom:236.826667pt;}
.y97{bottom:247.706667pt;}
.y63{bottom:250.426667pt;}
.y70{bottom:250.746667pt;}
.yc1{bottom:255.866667pt;}
.y31{bottom:258.746667pt;}
.y96{bottom:269.626667pt;}
.ya1{bottom:272.346667pt;}
.y62{bottom:272.666667pt;}
.yc0{bottom:275.226667pt;}
.y30{bottom:280.666667pt;}
.y95{bottom:291.546667pt;}
.y61{bottom:294.586667pt;}
.y2f{bottom:302.586667pt;}
.y94{bottom:313.466667pt;}
.ybf{bottom:314.106667pt;}
.y60{bottom:316.506667pt;}
.y2e{bottom:324.506667pt;}
.ybe{bottom:333.466667pt;}
.y93{bottom:335.386667pt;}
.y5f{bottom:338.426667pt;}
.y2d{bottom:346.426667pt;}
.ybd{bottom:352.826667pt;}
.y92{bottom:357.306667pt;}
.y5e{bottom:360.346667pt;}
.y2c{bottom:368.346667pt;}
.ybc{bottom:372.186667pt;}
.y91{bottom:379.226667pt;}
.y5d{bottom:382.266667pt;}
.y2b{bottom:390.266667pt;}
.ybb{bottom:391.546667pt;}
.y90{bottom:401.186667pt;}
.y6f{bottom:403.906667pt;}
.y5c{bottom:404.226667pt;}
.yba{bottom:411.106667pt;}
.y2a{bottom:412.226667pt;}
.y8f{bottom:423.106667pt;}
.y6e{bottom:425.986667pt;}
.y5b{bottom:426.306667pt;}
.yb9{bottom:430.466667pt;}
.y29{bottom:434.146667pt;}
.y8e{bottom:445.026667pt;}
.y5a{bottom:447.906667pt;}
.y78{bottom:448.226667pt;}
.yb8{bottom:449.826667pt;}
.y28{bottom:456.066667pt;}
.y8d{bottom:466.946667pt;}
.yb7{bottom:469.186667pt;}
.ya6{bottom:469.826667pt;}
.y59{bottom:470.146667pt;}
.y27{bottom:477.986667pt;}
.yb6{bottom:488.706667pt;}
.y8c{bottom:489.826667pt;}
.ya2{bottom:491.746667pt;}
.y58{bottom:492.066667pt;}
.y26{bottom:499.906667pt;}
.yb5{bottom:508.066667pt;}
.y8b{bottom:511.746667pt;}
.y77{bottom:513.666667pt;}
.y57{bottom:513.986667pt;}
.y25{bottom:521.826667pt;}
.yb4{bottom:527.426667pt;}
.y8a{bottom:533.826667pt;}
.y56{bottom:535.586667pt;}
.y6d{bottom:535.906667pt;}
.y24{bottom:543.426667pt;}
.y39{bottom:543.746667pt;}
.yb3{bottom:546.786667pt;}
.y89{bottom:555.746667pt;}
.y55{bottom:557.826667pt;}
.y23{bottom:565.346667pt;}
.yb2{bottom:566.146667pt;}
.y88{bottom:577.666667pt;}
.y54{bottom:579.746667pt;}
.yb1{bottom:585.666667pt;}
.y22{bottom:589.186667pt;}
.y87{bottom:599.586667pt;}
.y53{bottom:601.693333pt;}
.yb0{bottom:605.053333pt;}
.y21{bottom:615.613333pt;}
.y86{bottom:621.533333pt;}
.ya0{bottom:623.293333pt;}
.y52{bottom:623.613333pt;}
.yaf{bottom:624.413333pt;}
.y20{bottom:637.533333pt;}
.y85{bottom:643.453333pt;}
.yae{bottom:643.773333pt;}
.ya3{bottom:645.213333pt;}
.y51{bottom:645.533333pt;}
.y1f{bottom:659.453333pt;}
.yad{bottom:663.133333pt;}
.y84{bottom:665.373333pt;}
.y6c{bottom:667.133333pt;}
.y50{bottom:667.453333pt;}
.y1e{bottom:681.373333pt;}
.yac{bottom:682.653333pt;}
.y83{bottom:686.973333pt;}
.y4f{bottom:689.373333pt;}
.yab{bottom:702.013333pt;}
.y1d{bottom:703.293333pt;}
.y82{bottom:710.173333pt;}
.y4e{bottom:711.293333pt;}
.yaa{bottom:721.373333pt;}
.y1c{bottom:725.213333pt;}
.y81{bottom:732.093333pt;}
.y4d{bottom:733.213333pt;}
.ya9{bottom:740.733333pt;}
.y1b{bottom:747.133333pt;}
.y80{bottom:754.013333pt;}
.ya4{bottom:754.813333pt;}
.y4c{bottom:755.133333pt;}
.ya8{bottom:760.253333pt;}
.y1a{bottom:768.733333pt;}
.y7f{bottom:775.933333pt;}
.y4b{bottom:776.733333pt;}
.y6b{bottom:777.053333pt;}
.ya7{bottom:779.613333pt;}
.y18{bottom:782.333333pt;}
.y11{bottom:788.733333pt;}
.y17{bottom:792.258911pt;}
.y7e{bottom:797.853333pt;}
.y76{bottom:798.653333pt;}
.y4a{bottom:798.973333pt;}
.y7d{bottom:819.813333pt;}
.y75{bottom:820.613333pt;}
.y49{bottom:820.933333pt;}
.y7c{bottom:841.893333pt;}
.y48{bottom:842.853333pt;}
.y7b{bottom:863.813333pt;}
.ya5{bottom:864.453333pt;}
.y47{bottom:864.773333pt;}
.y46{bottom:886.373333pt;}
.y74{bottom:886.693333pt;}
.y45{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.y9f{bottom:930.213333pt;}
.y44{bottom:930.533333pt;}
.y43{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y42{bottom:974.053333pt;}
.y6a{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y41{bottom:995.973333pt;}
.y73{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y40{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y9e{bottom:1039.840000pt;}
.y3f{bottom:1040.160000pt;}
.y3d{bottom:1055.360000pt;}
.y3c{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h17{height:6.400000pt;}
.hd{height:11.843750pt;}
.h18{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1c{height:27.093750pt;}
.he{height:36.466667pt;}
.h1f{height:41.112500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1d{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h19{height:57.758750pt;}
.h1b{height:57.787500pt;}
.h1a{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1e{height:60.519362pt;}
.h6{height:63.399375pt;}
.h16{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h13{height:72.655000pt;}
.h3{height:92.026667pt;}
.h12{height:126.100000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.x13{left:80.785333pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x15{left:99.985333pt;}
.x14{left:112.465333pt;}
.x1e{left:124.512000pt;}
.x16{left:131.025333pt;}
.x1b{left:144.026667pt;}
.x4{left:150.120000pt;}
.x18{left:151.705333pt;}
.x17{left:171.545333pt;}
.x6{left:185.786667pt;}
.x19{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1c{left:420.893333pt;}
.x20{left:425.373333pt;}
.x21{left:444.893333pt;}
.x1f{left:449.373333pt;}
.x1d{left:468.893333pt;}
.x7{left:642.213333pt;}
.x1{left:676.453333pt;}
}




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