
    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_c0833ab45693454abb03a0b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_4a2fb719bb8d0d6710f03b3a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_11edfae8e1f56a853b908394.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.197000;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_c57e231e8fc87572fdf19be8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_4c3bba8b16a8226acb22105f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_5d34bb6d4b774d0dd516656c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_d27dedfbdee5bdb5fcc86518.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.213000;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_dc970594fda0583d59e9d7ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.222000;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_0590857523ec3f2dfb89cb8e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.722656;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_3106422b9fd9323530dca6fb.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_dd85c639339fe16a964a871e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.891602;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_7aef8d9efef3d61f88e604f9.woff2')format("woff");}.fff{font-family:fff;line-height:0.750000;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_7804dbbb897a24ede36d1018.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_c1622dd712bec0381d48ad2d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.303000;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);}
.v2{vertical-align:-19.199983px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:3.360000px;}
.ls2{letter-spacing:30.703191px;}
.ls3{letter-spacing:53.390978px;}
.ls4{letter-spacing:53.391569px;}
.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;}
}
.ws4{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.332000px;}
.ws1{word-spacing:-13.296000px;}
.ws5{word-spacing:-12.420000px;}
.ws7{word-spacing:-12.000000px;}
.ws2{word-spacing:-9.408000px;}
.ws69{word-spacing:-9.216000px;}
.ws6{word-spacing:-8.694000px;}
.ws8{word-spacing:-8.400000px;}
.ws4d{word-spacing:-2.940000px;}
.ws16{word-spacing:-2.760000px;}
.ws36{word-spacing:-2.640000px;}
.ws3c{word-spacing:-2.460000px;}
.ws47{word-spacing:-2.340000px;}
.ws72{word-spacing:-2.112000px;}
.ws4c{word-spacing:-2.100000px;}
.ws67{word-spacing:-2.040000px;}
.ws30{word-spacing:-1.860000px;}
.ws52{word-spacing:-1.680000px;}
.ws3a{word-spacing:-1.620000px;}
.ws41{word-spacing:-1.560000px;}
.ws48{word-spacing:-1.380000px;}
.ws32{word-spacing:-1.320000px;}
.ws78{word-spacing:-1.296000px;}
.ws76{word-spacing:-1.200000px;}
.ws66{word-spacing:-1.080000px;}
.ws49{word-spacing:-1.020000px;}
.ws4e{word-spacing:-0.960000px;}
.ws11{word-spacing:-0.864000px;}
.ws2b{word-spacing:-0.720000px;}
.ws33{word-spacing:-0.660000px;}
.ws26{word-spacing:-0.480000px;}
.ws2a{word-spacing:-0.300000px;}
.ws68{word-spacing:-0.240000px;}
.ws40{word-spacing:-0.180000px;}
.ws0{word-spacing:0.000000px;}
.ws39{word-spacing:0.060000px;}
.ws75{word-spacing:0.096000px;}
.ws24{word-spacing:0.120000px;}
.ws3e{word-spacing:0.180000px;}
.ws38{word-spacing:0.240000px;}
.ws1f{word-spacing:0.300000px;}
.ws44{word-spacing:0.420000px;}
.ws55{word-spacing:0.480000px;}
.ws4b{word-spacing:0.600000px;}
.ws34{word-spacing:0.660000px;}
.ws18{word-spacing:0.780000px;}
.ws3d{word-spacing:0.840000px;}
.ws6f{word-spacing:0.912000px;}
.ws70{word-spacing:1.008000px;}
.ws6e{word-spacing:1.056000px;}
.ws4a{word-spacing:1.140000px;}
.ws73{word-spacing:1.200000px;}
.ws74{word-spacing:1.248000px;}
.ws31{word-spacing:1.320000px;}
.ws37{word-spacing:1.440000px;}
.ws2f{word-spacing:1.500000px;}
.ws71{word-spacing:1.536000px;}
.ws19{word-spacing:1.620000px;}
.ws63{word-spacing:1.680000px;}
.ws4f{word-spacing:1.740000px;}
.ws6c{word-spacing:1.776000px;}
.ws25{word-spacing:1.800000px;}
.ws79{word-spacing:1.824000px;}
.ws5b{word-spacing:1.860000px;}
.ws27{word-spacing:1.980000px;}
.ws1e{word-spacing:2.040000px;}
.ws3b{word-spacing:2.100000px;}
.ws62{word-spacing:2.160000px;}
.ws64{word-spacing:2.220000px;}
.ws2d{word-spacing:2.460000px;}
.ws17{word-spacing:2.760000px;}
.ws12{word-spacing:2.832000px;}
.ws43{word-spacing:2.880000px;}
.wsb{word-spacing:2.940000px;}
.ws59{word-spacing:3.120000px;}
.ws1a{word-spacing:3.180000px;}
.ws1b{word-spacing:3.300000px;}
.wsc{word-spacing:3.360000px;}
.ws42{word-spacing:3.540000px;}
.ws5f{word-spacing:3.660000px;}
.ws51{word-spacing:3.780000px;}
.ws1c{word-spacing:3.840000px;}
.ws77{word-spacing:4.368000px;}
.ws5c{word-spacing:4.380000px;}
.ws58{word-spacing:4.440000px;}
.ws21{word-spacing:4.500000px;}
.ws22{word-spacing:4.620000px;}
.ws29{word-spacing:4.800000px;}
.ws13{word-spacing:4.860000px;}
.ws5a{word-spacing:4.980000px;}
.ws28{word-spacing:5.280000px;}
.ws5e{word-spacing:5.520000px;}
.ws60{word-spacing:5.580000px;}
.ws45{word-spacing:5.640000px;}
.wse{word-spacing:5.700000px;}
.ws23{word-spacing:5.820000px;}
.ws10{word-spacing:6.000000px;}
.ws2e{word-spacing:6.060000px;}
.ws46{word-spacing:6.180000px;}
.ws50{word-spacing:6.300000px;}
.ws6a{word-spacing:6.360000px;}
.ws2c{word-spacing:6.480000px;}
.ws6d{word-spacing:6.624000px;}
.ws6b{word-spacing:6.780000px;}
.wsd{word-spacing:6.840000px;}
.wsa{word-spacing:6.900000px;}
.ws1d{word-spacing:7.020000px;}
.ws3f{word-spacing:7.380000px;}
.ws9{word-spacing:7.680000px;}
.ws61{word-spacing:7.740000px;}
.ws53{word-spacing:7.860000px;}
.ws56{word-spacing:7.920000px;}
.ws65{word-spacing:8.040000px;}
.ws57{word-spacing:8.280000px;}
.ws54{word-spacing:8.400000px;}
.ws35{word-spacing:8.760000px;}
.ws5d{word-spacing:8.820000px;}
.wsf{word-spacing:9.060000px;}
.ws15{word-spacing:10.680000px;}
.ws14{word-spacing:10.980000px;}
.ws20{word-spacing:12.960000px;}
._a{margin-left:-66.351585px;}
._13{margin-left:-51.240010px;}
._14{margin-left:-12.110406px;}
._4{margin-left:-6.642000px;}
._b{margin-left:-5.308800px;}
._d{margin-left:-4.267200px;}
._9{margin-left:-2.885397px;}
._0{margin-left:-1.344000px;}
._1{width:1.195200px;}
._5{width:2.437781px;}
._7{width:3.930001px;}
._3{width:4.962000px;}
._6{width:6.486000px;}
._e{width:7.885837px;}
._8{width:9.065388px;}
._f{width:10.914000px;}
._10{width:11.944759px;}
._12{width:13.410000px;}
._17{width:15.238800px;}
._11{width:17.094000px;}
._2{width:19.668000px;}
._15{width:24.294000px;}
._16{width:25.321201px;}
._c{width:56.255991px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs9{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y45{bottom:46.736100px;}
.y71{bottom:46.771650px;}
.y5{bottom:66.525004px;}
.y75{bottom:90.001350px;}
.y70{bottom:90.425102px;}
.y44{bottom:94.801352px;}
.y9f{bottom:94.925102px;}
.y4{bottom:97.125005px;}
.y6f{bottom:108.425102px;}
.y9e{bottom:109.175102px;}
.y43{bottom:116.551346px;}
.y9d{bottom:123.425102px;}
.yd7{bottom:126.354904px;}
.y6e{bottom:126.425102px;}
.y9c{bottom:137.675102px;}
.y42{bottom:138.301346px;}
.y21{bottom:139.264499px;}
.yd6{bottom:140.604904px;}
.y6d{bottom:144.425102px;}
.y9b{bottom:151.925102px;}
.yd5{bottom:154.854904px;}
.y41{bottom:160.051346px;}
.y74{bottom:162.425102px;}
.y9a{bottom:166.175102px;}
.yd4{bottom:169.104904px;}
.y6c{bottom:180.425102px;}
.y40{bottom:181.801346px;}
.yd3{bottom:183.354904px;}
.y99{bottom:194.675102px;}
.y18{bottom:196.933500px;}
.yd2{bottom:197.604904px;}
.y73{bottom:198.425102px;}
.y3f{bottom:206.133293px;}
.y98{bottom:208.925102px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yd1{bottom:211.854904px;}
.y72{bottom:216.425102px;}
.y3e{bottom:220.383293px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y97{bottom:223.175102px;}
.yd0{bottom:226.104904px;}
.y6b{bottom:234.425102px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y96{bottom:237.425102px;}
.ycf{bottom:240.354904px;}
.y3d{bottom:242.133293px;}
.y95{bottom:251.675102px;}
.y6a{bottom:252.425102px;}
.yce{bottom:254.604904px;}
.y3c{bottom:256.383293px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y94{bottom:265.925102px;}
.ycd{bottom:268.854904px;}
.y69{bottom:270.425102px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y3b{bottom:278.133293px;}
.y93{bottom:280.175102px;}
.ycc{bottom:283.104904px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y68{bottom:288.425102px;}
.y3a{bottom:292.383293px;}
.y92{bottom:294.425102px;}
.ycb{bottom:297.354904px;}
.y67{bottom:306.425102px;}
.y91{bottom:308.675102px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yca{bottom:311.604904px;}
.y39{bottom:314.133293px;}
.y19{bottom:322.918500px;}
.y90{bottom:322.925102px;}
.y10{bottom:322.933500px;}
.y66{bottom:324.425102px;}
.yc9{bottom:325.854904px;}
.y38{bottom:328.383293px;}
.y8f{bottom:337.175102px;}
.yc8{bottom:340.104904px;}
.y65{bottom:342.425102px;}
.yf{bottom:348.133500px;}
.y8e{bottom:351.425102px;}
.yc7{bottom:354.354904px;}
.y64{bottom:360.425102px;}
.y8d{bottom:365.675102px;}
.yc6{bottom:368.604904px;}
.y63{bottom:378.425102px;}
.y8c{bottom:379.925102px;}
.yc5{bottom:382.854904px;}
.ye{bottom:386.785499px;}
.y8b{bottom:394.175079px;}
.y62{bottom:396.425079px;}
.yc4{bottom:397.104904px;}
.yd{bottom:408.044999px;}
.y8a{bottom:408.425079px;}
.y32{bottom:410.173187px;}
.yc3{bottom:411.354904px;}
.y61{bottom:414.425079px;}
.y89{bottom:422.675079px;}
.yc2{bottom:425.604904px;}
.y31{bottom:428.173187px;}
.y76{bottom:428.881668px;}
.y60{bottom:432.425079px;}
.y88{bottom:436.925079px;}
.yc1{bottom:439.854904px;}
.y30{bottom:446.173187px;}
.y5f{bottom:450.425079px;}
.y87{bottom:451.175079px;}
.yc0{bottom:454.104904px;}
.y2f{bottom:464.173187px;}
.y86{bottom:465.425079px;}
.ybf{bottom:468.354904px;}
.y5e{bottom:468.425079px;}
.y85{bottom:479.675079px;}
.y2e{bottom:482.173187px;}
.ybe{bottom:482.604904px;}
.y5d{bottom:486.425079px;}
.y84{bottom:493.925079px;}
.ybd{bottom:496.854904px;}
.y2d{bottom:500.173187px;}
.yc{bottom:502.864502px;}
.y5c{bottom:504.425079px;}
.y83{bottom:508.175079px;}
.ybc{bottom:511.104904px;}
.y2c{bottom:518.173187px;}
.yb{bottom:520.864502px;}
.y5b{bottom:522.425079px;}
.ybb{bottom:525.354904px;}
.y2b{bottom:536.173187px;}
.ya{bottom:538.864499px;}
.yba{bottom:539.604904px;}
.y5a{bottom:540.425079px;}
.yb9{bottom:553.854904px;}
.y2a{bottom:554.173187px;}
.y9{bottom:556.864499px;}
.y59{bottom:558.425079px;}
.yb8{bottom:568.104904px;}
.y29{bottom:572.173187px;}
.y58{bottom:576.425079px;}
.yb7{bottom:582.354904px;}
.y28{bottom:590.173187px;}
.y57{bottom:594.425079px;}
.y82{bottom:595.926590px;}
.yb6{bottom:596.604904px;}
.y27{bottom:608.173187px;}
.y81{bottom:610.176590px;}
.yb5{bottom:610.854904px;}
.y56{bottom:612.425079px;}
.y80{bottom:624.426590px;}
.yb4{bottom:625.104904px;}
.y55{bottom:630.425079px;}
.y7f{bottom:638.676590px;}
.yb3{bottom:639.354904px;}
.y26{bottom:644.173187px;}
.y8{bottom:645.510000px;}
.y54{bottom:648.425079px;}
.y7e{bottom:652.926590px;}
.yb2{bottom:653.604904px;}
.y77{bottom:660.304642px;}
.y25{bottom:662.173187px;}
.y53{bottom:666.425079px;}
.y7{bottom:666.771000px;}
.y7d{bottom:667.176590px;}
.yb1{bottom:667.854904px;}
.y7c{bottom:681.426590px;}
.yb0{bottom:682.104904px;}
.yd9{bottom:682.479904px;}
.y52{bottom:684.425079px;}
.y7b{bottom:695.676590px;}
.yaf{bottom:696.354904px;}
.yd8{bottom:696.729904px;}
.y51{bottom:702.425079px;}
.y7a{bottom:709.926590px;}
.yae{bottom:710.604904px;}
.y50{bottom:720.425079px;}
.yad{bottom:724.854904px;}
.y34{bottom:725.096420px;}
.y6{bottom:726.298500px;}
.y4f{bottom:738.425079px;}
.yac{bottom:739.104904px;}
.y33{bottom:739.346420px;}
.y79{bottom:742.175079px;}
.y3{bottom:752.599495px;}
.yab{bottom:753.354904px;}
.y4e{bottom:756.425079px;}
.yaa{bottom:767.604904px;}
.y4d{bottom:774.425079px;}
.y37{bottom:781.237244px;}
.ya9{bottom:781.854858px;}
.y4c{bottom:792.425079px;}
.ya8{bottom:796.104858px;}
.ya7{bottom:810.354858px;}
.y4b{bottom:810.425079px;}
.y36{bottom:823.686035px;}
.ya6{bottom:824.604858px;}
.y4a{bottom:828.425079px;}
.ya5{bottom:838.854858px;}
.y35{bottom:846.186035px;}
.y49{bottom:846.425079px;}
.ya4{bottom:853.104858px;}
.y48{bottom:864.425079px;}
.ya3{bottom:867.354858px;}
.y2{bottom:879.369000px;}
.ya2{bottom:881.604858px;}
.y47{bottom:882.425079px;}
.ya1{bottom:895.854858px;}
.y22{bottom:899.681122px;}
.y46{bottom:900.425079px;}
.y78{bottom:905.944611px;}
.ya0{bottom:910.104858px;}
.y24{bottom:924.938965px;}
.y23{bottom:939.188965px;}
.y1{bottom:966.726000px;}
.h12{height:23.346094px;}
.h7{height:32.130000px;}
.h11{height:33.351562px;}
.h10{height:34.687500px;}
.h16{height:41.660156px;}
.hd{height:41.689453px;}
.h17{height:45.000000px;}
.hb{height:45.456000px;}
.h6{height:45.900000px;}
.h14{height:46.224000px;}
.ha{height:46.656000px;}
.h19{height:47.472000px;}
.h3{height:48.195000px;}
.h15{height:50.027344px;}
.h2{height:55.080000px;}
.h18{height:60.600000px;}
.hf{height:64.824000px;}
.hc{height:65.274000px;}
.h13{height:72.000000px;}
.he{height:75.114000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x5{left:80.907303px;}
.xd{left:85.595552px;}
.x7{left:90.123299px;}
.xb{left:93.543303px;}
.x8{left:97.795200px;}
.xe{left:98.943295px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x3{left:454.959000px;}
.xa{left:493.704300px;}
.x9{left:521.162704px;}
.xc{left:565.923019px;}
@media print{
.v2{vertical-align:-17.066652pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.986667pt;}
.ls2{letter-spacing:27.291725pt;}
.ls3{letter-spacing:47.458647pt;}
.ls4{letter-spacing:47.459172pt;}
.ws4{word-spacing:-13.333333pt;}
.ws3{word-spacing:-11.850667pt;}
.ws1{word-spacing:-11.818667pt;}
.ws5{word-spacing:-11.040000pt;}
.ws7{word-spacing:-10.666667pt;}
.ws2{word-spacing:-8.362667pt;}
.ws69{word-spacing:-8.192000pt;}
.ws6{word-spacing:-7.728000pt;}
.ws8{word-spacing:-7.466667pt;}
.ws4d{word-spacing:-2.613333pt;}
.ws16{word-spacing:-2.453333pt;}
.ws36{word-spacing:-2.346667pt;}
.ws3c{word-spacing:-2.186667pt;}
.ws47{word-spacing:-2.080000pt;}
.ws72{word-spacing:-1.877333pt;}
.ws4c{word-spacing:-1.866667pt;}
.ws67{word-spacing:-1.813333pt;}
.ws30{word-spacing:-1.653333pt;}
.ws52{word-spacing:-1.493333pt;}
.ws3a{word-spacing:-1.440000pt;}
.ws41{word-spacing:-1.386667pt;}
.ws48{word-spacing:-1.226667pt;}
.ws32{word-spacing:-1.173333pt;}
.ws78{word-spacing:-1.152000pt;}
.ws76{word-spacing:-1.066667pt;}
.ws66{word-spacing:-0.960000pt;}
.ws49{word-spacing:-0.906667pt;}
.ws4e{word-spacing:-0.853333pt;}
.ws11{word-spacing:-0.768000pt;}
.ws2b{word-spacing:-0.640000pt;}
.ws33{word-spacing:-0.586667pt;}
.ws26{word-spacing:-0.426667pt;}
.ws2a{word-spacing:-0.266667pt;}
.ws68{word-spacing:-0.213333pt;}
.ws40{word-spacing:-0.160000pt;}
.ws0{word-spacing:0.000000pt;}
.ws39{word-spacing:0.053333pt;}
.ws75{word-spacing:0.085333pt;}
.ws24{word-spacing:0.106667pt;}
.ws3e{word-spacing:0.160000pt;}
.ws38{word-spacing:0.213333pt;}
.ws1f{word-spacing:0.266667pt;}
.ws44{word-spacing:0.373333pt;}
.ws55{word-spacing:0.426667pt;}
.ws4b{word-spacing:0.533333pt;}
.ws34{word-spacing:0.586667pt;}
.ws18{word-spacing:0.693333pt;}
.ws3d{word-spacing:0.746667pt;}
.ws6f{word-spacing:0.810667pt;}
.ws70{word-spacing:0.896000pt;}
.ws6e{word-spacing:0.938667pt;}
.ws4a{word-spacing:1.013333pt;}
.ws73{word-spacing:1.066667pt;}
.ws74{word-spacing:1.109333pt;}
.ws31{word-spacing:1.173333pt;}
.ws37{word-spacing:1.280000pt;}
.ws2f{word-spacing:1.333333pt;}
.ws71{word-spacing:1.365333pt;}
.ws19{word-spacing:1.440000pt;}
.ws63{word-spacing:1.493333pt;}
.ws4f{word-spacing:1.546667pt;}
.ws6c{word-spacing:1.578667pt;}
.ws25{word-spacing:1.600000pt;}
.ws79{word-spacing:1.621333pt;}
.ws5b{word-spacing:1.653333pt;}
.ws27{word-spacing:1.760000pt;}
.ws1e{word-spacing:1.813333pt;}
.ws3b{word-spacing:1.866667pt;}
.ws62{word-spacing:1.920000pt;}
.ws64{word-spacing:1.973333pt;}
.ws2d{word-spacing:2.186667pt;}
.ws17{word-spacing:2.453333pt;}
.ws12{word-spacing:2.517333pt;}
.ws43{word-spacing:2.560000pt;}
.wsb{word-spacing:2.613333pt;}
.ws59{word-spacing:2.773333pt;}
.ws1a{word-spacing:2.826667pt;}
.ws1b{word-spacing:2.933333pt;}
.wsc{word-spacing:2.986667pt;}
.ws42{word-spacing:3.146667pt;}
.ws5f{word-spacing:3.253333pt;}
.ws51{word-spacing:3.360000pt;}
.ws1c{word-spacing:3.413333pt;}
.ws77{word-spacing:3.882667pt;}
.ws5c{word-spacing:3.893333pt;}
.ws58{word-spacing:3.946667pt;}
.ws21{word-spacing:4.000000pt;}
.ws22{word-spacing:4.106667pt;}
.ws29{word-spacing:4.266667pt;}
.ws13{word-spacing:4.320000pt;}
.ws5a{word-spacing:4.426667pt;}
.ws28{word-spacing:4.693333pt;}
.ws5e{word-spacing:4.906667pt;}
.ws60{word-spacing:4.960000pt;}
.ws45{word-spacing:5.013333pt;}
.wse{word-spacing:5.066667pt;}
.ws23{word-spacing:5.173333pt;}
.ws10{word-spacing:5.333333pt;}
.ws2e{word-spacing:5.386667pt;}
.ws46{word-spacing:5.493333pt;}
.ws50{word-spacing:5.600000pt;}
.ws6a{word-spacing:5.653333pt;}
.ws2c{word-spacing:5.760000pt;}
.ws6d{word-spacing:5.888000pt;}
.ws6b{word-spacing:6.026667pt;}
.wsd{word-spacing:6.080000pt;}
.wsa{word-spacing:6.133333pt;}
.ws1d{word-spacing:6.240000pt;}
.ws3f{word-spacing:6.560000pt;}
.ws9{word-spacing:6.826667pt;}
.ws61{word-spacing:6.880000pt;}
.ws53{word-spacing:6.986667pt;}
.ws56{word-spacing:7.040000pt;}
.ws65{word-spacing:7.146667pt;}
.ws57{word-spacing:7.360000pt;}
.ws54{word-spacing:7.466667pt;}
.ws35{word-spacing:7.786667pt;}
.ws5d{word-spacing:7.840000pt;}
.wsf{word-spacing:8.053333pt;}
.ws15{word-spacing:9.493333pt;}
.ws14{word-spacing:9.760000pt;}
.ws20{word-spacing:11.520000pt;}
._a{margin-left:-58.979187pt;}
._13{margin-left:-45.546675pt;}
._14{margin-left:-10.764806pt;}
._4{margin-left:-5.904000pt;}
._b{margin-left:-4.718933pt;}
._d{margin-left:-3.793067pt;}
._9{margin-left:-2.564797pt;}
._0{margin-left:-1.194667pt;}
._1{width:1.062400pt;}
._5{width:2.166917pt;}
._7{width:3.493334pt;}
._3{width:4.410667pt;}
._6{width:5.765333pt;}
._e{width:7.009633pt;}
._8{width:8.058123pt;}
._f{width:9.701333pt;}
._10{width:10.617563pt;}
._12{width:11.920000pt;}
._17{width:13.545600pt;}
._11{width:15.194667pt;}
._2{width:17.482667pt;}
._15{width:21.594666pt;}
._16{width:22.507735pt;}
._c{width:50.005325pt;}
.fs8{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs9{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:41.543200pt;}
.y71{bottom:41.574800pt;}
.y5{bottom:59.133337pt;}
.y75{bottom:80.001200pt;}
.y70{bottom:80.377869pt;}
.y44{bottom:84.267868pt;}
.y9f{bottom:84.377869pt;}
.y4{bottom:86.333337pt;}
.y6f{bottom:96.377869pt;}
.y9e{bottom:97.044535pt;}
.y43{bottom:103.601196pt;}
.y9d{bottom:109.711202pt;}
.yd7{bottom:112.315470pt;}
.y6e{bottom:112.377869pt;}
.y9c{bottom:122.377869pt;}
.y42{bottom:122.934530pt;}
.y21{bottom:123.790666pt;}
.yd6{bottom:124.982137pt;}
.y6d{bottom:128.377869pt;}
.y9b{bottom:135.044535pt;}
.yd5{bottom:137.648804pt;}
.y41{bottom:142.267863pt;}
.y74{bottom:144.377869pt;}
.y9a{bottom:147.711202pt;}
.yd4{bottom:150.315470pt;}
.y6c{bottom:160.377869pt;}
.y40{bottom:161.601196pt;}
.yd3{bottom:162.982137pt;}
.y99{bottom:173.044535pt;}
.y18{bottom:175.052000pt;}
.yd2{bottom:175.648804pt;}
.y73{bottom:176.377869pt;}
.y3f{bottom:183.229594pt;}
.y98{bottom:185.711202pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yd1{bottom:188.315470pt;}
.y72{bottom:192.377869pt;}
.y3e{bottom:195.896261pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y97{bottom:198.377869pt;}
.yd0{bottom:200.982137pt;}
.y6b{bottom:208.377869pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y96{bottom:211.044535pt;}
.ycf{bottom:213.648804pt;}
.y3d{bottom:215.229594pt;}
.y95{bottom:223.711202pt;}
.y6a{bottom:224.377869pt;}
.yce{bottom:226.315470pt;}
.y3c{bottom:227.896261pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y94{bottom:236.377869pt;}
.ycd{bottom:238.982137pt;}
.y69{bottom:240.377869pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y3b{bottom:247.229594pt;}
.y93{bottom:249.044535pt;}
.ycc{bottom:251.648804pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y68{bottom:256.377869pt;}
.y3a{bottom:259.896261pt;}
.y92{bottom:261.711202pt;}
.ycb{bottom:264.315470pt;}
.y67{bottom:272.377869pt;}
.y91{bottom:274.377869pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yca{bottom:276.982137pt;}
.y39{bottom:279.229594pt;}
.y19{bottom:287.038667pt;}
.y90{bottom:287.044535pt;}
.y10{bottom:287.052000pt;}
.y66{bottom:288.377869pt;}
.yc9{bottom:289.648804pt;}
.y38{bottom:291.896261pt;}
.y8f{bottom:299.711202pt;}
.yc8{bottom:302.315470pt;}
.y65{bottom:304.377869pt;}
.yf{bottom:309.452000pt;}
.y8e{bottom:312.377869pt;}
.yc7{bottom:314.982137pt;}
.y64{bottom:320.377869pt;}
.y8d{bottom:325.044535pt;}
.yc6{bottom:327.648804pt;}
.y63{bottom:336.377869pt;}
.y8c{bottom:337.711202pt;}
.yc5{bottom:340.315470pt;}
.ye{bottom:343.809333pt;}
.y8b{bottom:350.377848pt;}
.y62{bottom:352.377848pt;}
.yc4{bottom:352.982137pt;}
.yd{bottom:362.706666pt;}
.y8a{bottom:363.044515pt;}
.y32{bottom:364.598389pt;}
.yc3{bottom:365.648804pt;}
.y61{bottom:368.377848pt;}
.y89{bottom:375.711182pt;}
.yc2{bottom:378.315470pt;}
.y31{bottom:380.598389pt;}
.y76{bottom:381.228149pt;}
.y60{bottom:384.377848pt;}
.y88{bottom:388.377848pt;}
.yc1{bottom:390.982137pt;}
.y30{bottom:396.598389pt;}
.y5f{bottom:400.377848pt;}
.y87{bottom:401.044515pt;}
.yc0{bottom:403.648804pt;}
.y2f{bottom:412.598389pt;}
.y86{bottom:413.711182pt;}
.ybf{bottom:416.315470pt;}
.y5e{bottom:416.377848pt;}
.y85{bottom:426.377848pt;}
.y2e{bottom:428.598389pt;}
.ybe{bottom:428.982137pt;}
.y5d{bottom:432.377848pt;}
.y84{bottom:439.044515pt;}
.ybd{bottom:441.648804pt;}
.y2d{bottom:444.598389pt;}
.yc{bottom:446.990669pt;}
.y5c{bottom:448.377848pt;}
.y83{bottom:451.711182pt;}
.ybc{bottom:454.315470pt;}
.y2c{bottom:460.598389pt;}
.yb{bottom:462.990669pt;}
.y5b{bottom:464.377848pt;}
.ybb{bottom:466.982137pt;}
.y2b{bottom:476.598389pt;}
.ya{bottom:478.990666pt;}
.yba{bottom:479.648804pt;}
.y5a{bottom:480.377848pt;}
.yb9{bottom:492.315470pt;}
.y2a{bottom:492.598389pt;}
.y9{bottom:494.990666pt;}
.y59{bottom:496.377848pt;}
.yb8{bottom:504.982137pt;}
.y29{bottom:508.598389pt;}
.y58{bottom:512.377848pt;}
.yb7{bottom:517.648804pt;}
.y28{bottom:524.598389pt;}
.y57{bottom:528.377848pt;}
.y82{bottom:529.712524pt;}
.yb6{bottom:530.315470pt;}
.y27{bottom:540.598389pt;}
.y81{bottom:542.379191pt;}
.yb5{bottom:542.982137pt;}
.y56{bottom:544.377848pt;}
.y80{bottom:555.045858pt;}
.yb4{bottom:555.648804pt;}
.y55{bottom:560.377848pt;}
.y7f{bottom:567.712524pt;}
.yb3{bottom:568.315470pt;}
.y26{bottom:572.598389pt;}
.y8{bottom:573.786667pt;}
.y54{bottom:576.377848pt;}
.y7e{bottom:580.379191pt;}
.yb2{bottom:580.982137pt;}
.y77{bottom:586.937459pt;}
.y25{bottom:588.598389pt;}
.y53{bottom:592.377848pt;}
.y7{bottom:592.685334pt;}
.y7d{bottom:593.045858pt;}
.yb1{bottom:593.648804pt;}
.y7c{bottom:605.712524pt;}
.yb0{bottom:606.315470pt;}
.yd9{bottom:606.648804pt;}
.y52{bottom:608.377848pt;}
.y7b{bottom:618.379191pt;}
.yaf{bottom:618.982137pt;}
.yd8{bottom:619.315470pt;}
.y51{bottom:624.377848pt;}
.y7a{bottom:631.045858pt;}
.yae{bottom:631.648804pt;}
.y50{bottom:640.377848pt;}
.yad{bottom:644.315470pt;}
.y34{bottom:644.530151pt;}
.y6{bottom:645.598667pt;}
.y4f{bottom:656.377848pt;}
.yac{bottom:656.982137pt;}
.y33{bottom:657.196818pt;}
.y79{bottom:659.711182pt;}
.y3{bottom:668.977329pt;}
.yab{bottom:669.648804pt;}
.y4e{bottom:672.377848pt;}
.yaa{bottom:682.315470pt;}
.y4d{bottom:688.377848pt;}
.y37{bottom:694.433105pt;}
.ya9{bottom:694.982096pt;}
.y4c{bottom:704.377848pt;}
.ya8{bottom:707.648763pt;}
.ya7{bottom:720.315430pt;}
.y4b{bottom:720.377848pt;}
.y36{bottom:732.165365pt;}
.ya6{bottom:732.982096pt;}
.y4a{bottom:736.377848pt;}
.ya5{bottom:745.648763pt;}
.y35{bottom:752.165365pt;}
.y49{bottom:752.377848pt;}
.ya4{bottom:758.315430pt;}
.y48{bottom:768.377848pt;}
.ya3{bottom:770.982096pt;}
.y2{bottom:781.661334pt;}
.ya2{bottom:783.648763pt;}
.y47{bottom:784.377848pt;}
.ya1{bottom:796.315430pt;}
.y22{bottom:799.716553pt;}
.y46{bottom:800.377848pt;}
.y78{bottom:805.284098pt;}
.ya0{bottom:808.982096pt;}
.y24{bottom:822.167969pt;}
.y23{bottom:834.834635pt;}
.y1{bottom:859.312000pt;}
.h12{height:20.752083pt;}
.h7{height:28.560000pt;}
.h11{height:29.645833pt;}
.h10{height:30.833333pt;}
.h16{height:37.031250pt;}
.hd{height:37.057292pt;}
.h17{height:40.000000pt;}
.hb{height:40.405333pt;}
.h6{height:40.800000pt;}
.h14{height:41.088000pt;}
.ha{height:41.472000pt;}
.h19{height:42.197333pt;}
.h3{height:42.840000pt;}
.h15{height:44.468750pt;}
.h2{height:48.960000pt;}
.h18{height:53.866667pt;}
.hf{height:57.621333pt;}
.hc{height:58.021333pt;}
.h13{height:64.000000pt;}
.he{height:66.768000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x5{left:71.917603pt;}
.xd{left:76.084936pt;}
.x7{left:80.109599pt;}
.xb{left:83.149602pt;}
.x8{left:86.929067pt;}
.xe{left:87.949595pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x3{left:404.408000pt;}
.xa{left:438.848267pt;}
.x9{left:463.255737pt;}
.xc{left:503.042684pt;}
}




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