
    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_c91a751c858653372c934fa5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_c91a751c858653372c934fa5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.969000;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_4061f33409eddc9b182b1062.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_dcfc21ac72a53495ce7b8b66.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720000;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_b6f9cfbb1e02c4bced7a488a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.969000;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_c9958397082f6adb5a1d1efe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927500;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_426ab5e2b96b7dfe3c38eade.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.990000;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_11e6fef29a0b6fc62db40638.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6a163dddb86c1c4032097415.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972000;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_6b62fb5f84e1cd95d3d03405.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_98ab2a27a6363b58b3f0d32e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971000;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_bb4ef0ce89fe2611a8ec2017.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.707000;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_fbcf9325a673c59ad025cf88.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940000;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_126a24691a8309cd7cd96446.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.692871;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_4061f33409eddc9b182b1062.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_26dbd7ff9b056ad088e67890.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.945813;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;}
.m5{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.222499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222499,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.619400px;}
.v2{vertical-align:23.976000px;}
.ls2{letter-spacing:-0.768000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.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;}
}
.ws12{word-spacing:-18.720000px;}
.ws32{word-spacing:-13.392000px;}
.ws1d{word-spacing:-11.016000px;}
.ws3{word-spacing:-10.913760px;}
.ws68{word-spacing:-10.368000px;}
.ws18{word-spacing:-10.152000px;}
.ws46{word-spacing:-7.776000px;}
.ws19{word-spacing:-7.416000px;}
.ws7a{word-spacing:-6.912000px;}
.wsd{word-spacing:-6.840000px;}
.ws65{word-spacing:-6.768000px;}
.ws37{word-spacing:-6.480000px;}
.ws55{word-spacing:-5.904000px;}
.ws56{word-spacing:-5.760000px;}
.ws22{word-spacing:-4.896000px;}
.ws43{word-spacing:-4.608000px;}
.ws5b{word-spacing:-4.464000px;}
.ws67{word-spacing:-4.320000px;}
.ws2a{word-spacing:-4.032000px;}
.ws2d{word-spacing:-3.456000px;}
.wse{word-spacing:-3.096000px;}
.ws53{word-spacing:-3.024000px;}
.ws1e{word-spacing:-2.952000px;}
.ws1a{word-spacing:-2.520000px;}
.ws31{word-spacing:-2.304000px;}
.ws24{word-spacing:-2.160000px;}
.ws70{word-spacing:-1.440000px;}
.ws44{word-spacing:-1.296000px;}
.ws5e{word-spacing:-1.224000px;}
.ws1c{word-spacing:-1.008000px;}
.ws79{word-spacing:-0.864000px;}
.ws5a{word-spacing:-0.288000px;}
.ws5c{word-spacing:-0.072000px;}
.ws4{word-spacing:-0.060000px;}
.ws2{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws78{word-spacing:0.216000px;}
.ws21{word-spacing:0.576000px;}
.ws1{word-spacing:0.720000px;}
.ws4d{word-spacing:0.864000px;}
.ws16{word-spacing:1.512000px;}
.ws4c{word-spacing:3.456000px;}
.ws49{word-spacing:5.400000px;}
.ws69{word-spacing:5.688000px;}
.ws7d{word-spacing:5.832000px;}
.ws64{word-spacing:5.976000px;}
.ws66{word-spacing:7.272000px;}
.ws5f{word-spacing:7.992000px;}
.ws6f{word-spacing:8.136000px;}
.ws3c{word-spacing:9.432000px;}
.ws7{word-spacing:9.720000px;}
.ws7b{word-spacing:10.152000px;}
.ws41{word-spacing:10.800000px;}
.ws77{word-spacing:11.160000px;}
.ws74{word-spacing:11.520000px;}
.ws59{word-spacing:12.096000px;}
.ws34{word-spacing:16.632000px;}
.ws50{word-spacing:18.792000px;}
.ws73{word-spacing:20.088000px;}
.ws25{word-spacing:20.592000px;}
.ws3f{word-spacing:21.240000px;}
.ws14{word-spacing:21.456000px;}
.ws58{word-spacing:21.888000px;}
.ws63{word-spacing:24.192000px;}
.ws29{word-spacing:24.984000px;}
.ws30{word-spacing:25.848000px;}
.ws71{word-spacing:27.144000px;}
.ws3e{word-spacing:29.808000px;}
.ws23{word-spacing:30.168000px;}
.ws52{word-spacing:30.384000px;}
.ws6c{word-spacing:31.896000px;}
.ws4b{word-spacing:32.544000px;}
.ws10{word-spacing:33.621000px;}
.ws39{word-spacing:34.056000px;}
.ws20{word-spacing:35.784000px;}
.ws35{word-spacing:36.072000px;}
.ws4a{word-spacing:36.504000px;}
.wsb{word-spacing:37.368000px;}
.wsf{word-spacing:37.440000px;}
.wsa{word-spacing:40.464000px;}
.ws72{word-spacing:41.256000px;}
.ws40{word-spacing:41.472000px;}
.ws9{word-spacing:41.616000px;}
.ws15{word-spacing:43.488000px;}
.ws3d{word-spacing:43.560000px;}
.ws2c{word-spacing:43.992000px;}
.ws26{word-spacing:44.064000px;}
.ws38{word-spacing:45.360000px;}
.ws1b{word-spacing:45.504000px;}
.ws54{word-spacing:47.160000px;}
.ws2e{word-spacing:48.744000px;}
.ws28{word-spacing:49.680000px;}
.ws57{word-spacing:50.472000px;}
.ws62{word-spacing:51.480000px;}
.ws6b{word-spacing:52.344000px;}
.ws2f{word-spacing:56.952000px;}
.ws47{word-spacing:60.264000px;}
.wsc{word-spacing:60.408000px;}
.ws75{word-spacing:61.272000px;}
.ws3b{word-spacing:61.704000px;}
.ws48{word-spacing:62.136000px;}
.ws6{word-spacing:62.280000px;}
.ws8{word-spacing:64.368000px;}
.ws1f{word-spacing:65.448000px;}
.ws2b{word-spacing:66.816000px;}
.ws3a{word-spacing:70.056000px;}
.ws45{word-spacing:74.736000px;}
.ws36{word-spacing:77.328000px;}
.ws13{word-spacing:77.472000px;}
.ws42{word-spacing:77.616000px;}
.ws6e{word-spacing:80.064000px;}
.ws33{word-spacing:81.720000px;}
.ws4e{word-spacing:83.592000px;}
.ws6d{word-spacing:84.456000px;}
.ws7c{word-spacing:94.032000px;}
.ws17{word-spacing:95.256000px;}
.ws27{word-spacing:95.832000px;}
.ws6a{word-spacing:106.560000px;}
.ws60{word-spacing:108.576000px;}
.ws51{word-spacing:132.048000px;}
.ws4f{word-spacing:137.448000px;}
.ws61{word-spacing:168.840000px;}
.ws76{word-spacing:173.088000px;}
.ws5d{word-spacing:200.304000px;}
.ws11{word-spacing:386.314800px;}
.ws0{word-spacing:1699.977600px;}
._23{margin-left:-150.840000px;}
._1e{margin-left:-93.464400px;}
._10{margin-left:-64.347600px;}
._19{margin-left:-54.792000px;}
._2b{margin-left:-38.887200px;}
._14{margin-left:-19.296000px;}
._2d{margin-left:-17.863200px;}
._27{margin-left:-14.400000px;}
._d{margin-left:-11.160000px;}
._11{margin-left:-7.855200px;}
._b{margin-left:-6.811200px;}
._17{margin-left:-5.472000px;}
._2{margin-left:-4.386000px;}
._8{margin-left:-2.570400px;}
._0{margin-left:-1.140000px;}
._1{width:1.380000px;}
._13{width:2.647200px;}
._9{width:4.032000px;}
._3{width:5.644800px;}
._6{width:6.847200px;}
._22{width:7.869600px;}
._18{width:9.360000px;}
._16{width:10.360800px;}
._5{width:11.469600px;}
._26{width:14.832000px;}
._20{width:16.077600px;}
._e{width:17.092800px;}
._1a{width:20.952000px;}
._15{width:23.529600px;}
._4{width:27.518400px;}
._c{width:28.872000px;}
._12{width:30.528000px;}
._21{width:33.768000px;}
._a{width:37.461600px;}
._2c{width:40.975200px;}
._2a{width:46.224000px;}
._28{width:53.618400px;}
._29{width:54.684000px;}
._7{width:56.246400px;}
._1f{width:60.248400px;}
._1c{width:66.312000px;}
._25{width:69.336000px;}
._f{width:73.728000px;}
._1b{width:87.343200px;}
._1d{width:98.820000px;}
._24{width:102.492000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:41.976000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:63.438750px;}
.y2{bottom:64.760550px;}
.y1{bottom:65.586600px;}
.y5b{bottom:93.492300px;}
.y84{bottom:93.960150px;}
.y27{bottom:99.943050px;}
.y5a{bottom:115.992300px;}
.y83{bottom:116.460150px;}
.y59{bottom:138.492300px;}
.y82{bottom:138.960150px;}
.y26{bottom:144.943050px;}
.y58{bottom:160.992300px;}
.y81{bottom:161.460150px;}
.y25{bottom:167.443050px;}
.y57{bottom:183.492300px;}
.y80{bottom:183.960150px;}
.y24{bottom:189.943050px;}
.y56{bottom:205.992300px;}
.y7f{bottom:206.460150px;}
.y55{bottom:228.492300px;}
.y7e{bottom:228.960150px;}
.y23{bottom:234.943050px;}
.y54{bottom:250.992300px;}
.y7d{bottom:251.460150px;}
.y22{bottom:257.443050px;}
.y53{bottom:273.492300px;}
.y7c{bottom:273.960150px;}
.y21{bottom:279.943050px;}
.y52{bottom:295.992300px;}
.y7b{bottom:296.460150px;}
.y20{bottom:302.443050px;}
.y51{bottom:318.492300px;}
.y7a{bottom:318.960150px;}
.y1f{bottom:324.943050px;}
.y50{bottom:340.992300px;}
.y79{bottom:341.460150px;}
.y1e{bottom:347.443050px;}
.y4f{bottom:363.492300px;}
.y78{bottom:363.960150px;}
.y1d{bottom:369.943050px;}
.y4e{bottom:385.992300px;}
.y77{bottom:386.460150px;}
.y1c{bottom:392.443050px;}
.y4d{bottom:408.492300px;}
.y76{bottom:408.960150px;}
.y1b{bottom:414.943050px;}
.y4c{bottom:430.992300px;}
.y75{bottom:431.460150px;}
.y1a{bottom:437.443050px;}
.y4b{bottom:453.492300px;}
.y74{bottom:453.960150px;}
.y30{bottom:456.139950px;}
.y19{bottom:459.943050px;}
.y4a{bottom:475.992300px;}
.y73{bottom:476.460150px;}
.y2f{bottom:478.639950px;}
.y18{bottom:482.443050px;}
.y49{bottom:498.492300px;}
.y72{bottom:498.960150px;}
.y2e{bottom:501.139950px;}
.y17{bottom:504.943050px;}
.y48{bottom:520.992300px;}
.y71{bottom:521.460150px;}
.y16{bottom:527.443050px;}
.y2d{bottom:541.639950px;}
.y47{bottom:543.492300px;}
.y70{bottom:543.960150px;}
.y15{bottom:549.943050px;}
.y46{bottom:565.992300px;}
.y6f{bottom:566.460150px;}
.y14{bottom:572.443050px;}
.y2c{bottom:586.639950px;}
.y45{bottom:588.492300px;}
.y6e{bottom:588.960150px;}
.y13{bottom:594.943050px;}
.y44{bottom:610.992300px;}
.y6d{bottom:611.460150px;}
.y12{bottom:617.443050px;}
.y2b{bottom:627.139950px;}
.y43{bottom:633.492300px;}
.y6c{bottom:633.960150px;}
.y11{bottom:639.943050px;}
.y42{bottom:655.992300px;}
.y6b{bottom:656.460150px;}
.y10{bottom:662.443050px;}
.y2a{bottom:663.139950px;}
.y41{bottom:678.492300px;}
.y6a{bottom:678.960150px;}
.y29{bottom:699.139950px;}
.y40{bottom:700.992300px;}
.y69{bottom:701.460150px;}
.yf{bottom:707.407050px;}
.y3f{bottom:723.492300px;}
.y68{bottom:723.960150px;}
.ye{bottom:728.413050px;}
.y28{bottom:735.139950px;}
.y3e{bottom:745.992300px;}
.y85{bottom:746.460150px;}
.yd{bottom:749.419050px;}
.y3d{bottom:768.492300px;}
.y67{bottom:768.960150px;}
.yc{bottom:770.425050px;}
.y3c{bottom:790.992300px;}
.yb{bottom:791.431050px;}
.y66{bottom:791.460150px;}
.ya{bottom:812.437050px;}
.y3b{bottom:813.492300px;}
.y65{bottom:813.960150px;}
.y9{bottom:833.443050px;}
.y3a{bottom:835.992300px;}
.y64{bottom:836.460150px;}
.y39{bottom:858.492300px;}
.y63{bottom:858.960150px;}
.y86{bottom:864.954000px;}
.y8{bottom:876.938550px;}
.y38{bottom:880.992300px;}
.y62{bottom:881.460150px;}
.y7{bottom:897.943050px;}
.y37{bottom:903.492300px;}
.y60{bottom:903.960150px;}
.y61{bottom:909.954000px;}
.y6{bottom:918.943050px;}
.y36{bottom:925.992300px;}
.y5f{bottom:926.460150px;}
.y35{bottom:948.492300px;}
.y5e{bottom:948.960150px;}
.y5{bottom:968.443050px;}
.y34{bottom:970.992300px;}
.y5d{bottom:971.460150px;}
.y33{bottom:993.492300px;}
.y5c{bottom:993.960150px;}
.y4{bottom:1024.374150px;}
.y32{bottom:1027.506750px;}
.y3{bottom:1039.374150px;}
.hf{height:29.383200px;}
.h5{height:34.176000px;}
.h4{height:34.560000px;}
.hb{height:40.634766px;}
.hc{height:41.660156px;}
.h3{height:42.000000px;}
.h2{height:42.720000px;}
.h8{height:46.200000px;}
.h9{height:50.400000px;}
.he{height:52.492611px;}
.h10{height:53.358600px;}
.ha{height:53.359200px;}
.hd{height:53.467611px;}
.h7{height:54.600000px;}
.h6{height:63.000000px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xd{left:65.202600px;}
.xc{left:71.253150px;}
.xb{left:73.027500px;}
.xf{left:85.039350px;}
.x9{left:223.656300px;}
.xa{left:250.656450px;}
.x5{left:262.370250px;}
.x14{left:364.272000px;}
.x13{left:369.352650px;}
.xe{left:374.424150px;}
.x10{left:399.930150px;}
.x4{left:412.272150px;}
.x11{left:421.195650px;}
.x15{left:426.935850px;}
.x8{left:461.551050px;}
.x7{left:488.066550px;}
.x6{left:538.609200px;}
.x3{left:614.196150px;}
.x2{left:632.875800px;}
.x12{left:710.580450px;}
@media print{
.v1{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.439467pt;}
.v2{vertical-align:21.312000pt;}
.ls2{letter-spacing:-0.682667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ws12{word-spacing:-16.640000pt;}
.ws32{word-spacing:-11.904000pt;}
.ws1d{word-spacing:-9.792000pt;}
.ws3{word-spacing:-9.701120pt;}
.ws68{word-spacing:-9.216000pt;}
.ws18{word-spacing:-9.024000pt;}
.ws46{word-spacing:-6.912000pt;}
.ws19{word-spacing:-6.592000pt;}
.ws7a{word-spacing:-6.144000pt;}
.wsd{word-spacing:-6.080000pt;}
.ws65{word-spacing:-6.016000pt;}
.ws37{word-spacing:-5.760000pt;}
.ws55{word-spacing:-5.248000pt;}
.ws56{word-spacing:-5.120000pt;}
.ws22{word-spacing:-4.352000pt;}
.ws43{word-spacing:-4.096000pt;}
.ws5b{word-spacing:-3.968000pt;}
.ws67{word-spacing:-3.840000pt;}
.ws2a{word-spacing:-3.584000pt;}
.ws2d{word-spacing:-3.072000pt;}
.wse{word-spacing:-2.752000pt;}
.ws53{word-spacing:-2.688000pt;}
.ws1e{word-spacing:-2.624000pt;}
.ws1a{word-spacing:-2.240000pt;}
.ws31{word-spacing:-2.048000pt;}
.ws24{word-spacing:-1.920000pt;}
.ws70{word-spacing:-1.280000pt;}
.ws44{word-spacing:-1.152000pt;}
.ws5e{word-spacing:-1.088000pt;}
.ws1c{word-spacing:-0.896000pt;}
.ws79{word-spacing:-0.768000pt;}
.ws5a{word-spacing:-0.256000pt;}
.ws5c{word-spacing:-0.064000pt;}
.ws4{word-spacing:-0.053333pt;}
.ws2{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws78{word-spacing:0.192000pt;}
.ws21{word-spacing:0.512000pt;}
.ws1{word-spacing:0.640000pt;}
.ws4d{word-spacing:0.768000pt;}
.ws16{word-spacing:1.344000pt;}
.ws4c{word-spacing:3.072000pt;}
.ws49{word-spacing:4.800000pt;}
.ws69{word-spacing:5.056000pt;}
.ws7d{word-spacing:5.184000pt;}
.ws64{word-spacing:5.312000pt;}
.ws66{word-spacing:6.464000pt;}
.ws5f{word-spacing:7.104000pt;}
.ws6f{word-spacing:7.232000pt;}
.ws3c{word-spacing:8.384000pt;}
.ws7{word-spacing:8.640000pt;}
.ws7b{word-spacing:9.024000pt;}
.ws41{word-spacing:9.600000pt;}
.ws77{word-spacing:9.920000pt;}
.ws74{word-spacing:10.240000pt;}
.ws59{word-spacing:10.752000pt;}
.ws34{word-spacing:14.784000pt;}
.ws50{word-spacing:16.704000pt;}
.ws73{word-spacing:17.856000pt;}
.ws25{word-spacing:18.304000pt;}
.ws3f{word-spacing:18.880000pt;}
.ws14{word-spacing:19.072000pt;}
.ws58{word-spacing:19.456000pt;}
.ws63{word-spacing:21.504000pt;}
.ws29{word-spacing:22.208000pt;}
.ws30{word-spacing:22.976000pt;}
.ws71{word-spacing:24.128000pt;}
.ws3e{word-spacing:26.496000pt;}
.ws23{word-spacing:26.816000pt;}
.ws52{word-spacing:27.008000pt;}
.ws6c{word-spacing:28.352000pt;}
.ws4b{word-spacing:28.928000pt;}
.ws10{word-spacing:29.885333pt;}
.ws39{word-spacing:30.272000pt;}
.ws20{word-spacing:31.808000pt;}
.ws35{word-spacing:32.064000pt;}
.ws4a{word-spacing:32.448000pt;}
.wsb{word-spacing:33.216000pt;}
.wsf{word-spacing:33.280000pt;}
.wsa{word-spacing:35.968000pt;}
.ws72{word-spacing:36.672000pt;}
.ws40{word-spacing:36.864000pt;}
.ws9{word-spacing:36.992000pt;}
.ws15{word-spacing:38.656000pt;}
.ws3d{word-spacing:38.720000pt;}
.ws2c{word-spacing:39.104000pt;}
.ws26{word-spacing:39.168000pt;}
.ws38{word-spacing:40.320000pt;}
.ws1b{word-spacing:40.448000pt;}
.ws54{word-spacing:41.920000pt;}
.ws2e{word-spacing:43.328000pt;}
.ws28{word-spacing:44.160000pt;}
.ws57{word-spacing:44.864000pt;}
.ws62{word-spacing:45.760000pt;}
.ws6b{word-spacing:46.528000pt;}
.ws2f{word-spacing:50.624000pt;}
.ws47{word-spacing:53.568000pt;}
.wsc{word-spacing:53.696000pt;}
.ws75{word-spacing:54.464000pt;}
.ws3b{word-spacing:54.848000pt;}
.ws48{word-spacing:55.232000pt;}
.ws6{word-spacing:55.360000pt;}
.ws8{word-spacing:57.216000pt;}
.ws1f{word-spacing:58.176000pt;}
.ws2b{word-spacing:59.392000pt;}
.ws3a{word-spacing:62.272000pt;}
.ws45{word-spacing:66.432000pt;}
.ws36{word-spacing:68.736000pt;}
.ws13{word-spacing:68.864000pt;}
.ws42{word-spacing:68.992000pt;}
.ws6e{word-spacing:71.168000pt;}
.ws33{word-spacing:72.640000pt;}
.ws4e{word-spacing:74.304000pt;}
.ws6d{word-spacing:75.072000pt;}
.ws7c{word-spacing:83.584000pt;}
.ws17{word-spacing:84.672000pt;}
.ws27{word-spacing:85.184000pt;}
.ws6a{word-spacing:94.720000pt;}
.ws60{word-spacing:96.512000pt;}
.ws51{word-spacing:117.376000pt;}
.ws4f{word-spacing:122.176000pt;}
.ws61{word-spacing:150.080000pt;}
.ws76{word-spacing:153.856000pt;}
.ws5d{word-spacing:178.048000pt;}
.ws11{word-spacing:343.390933pt;}
.ws0{word-spacing:1511.091200pt;}
._23{margin-left:-134.080000pt;}
._1e{margin-left:-83.079467pt;}
._10{margin-left:-57.197867pt;}
._19{margin-left:-48.704000pt;}
._2b{margin-left:-34.566400pt;}
._14{margin-left:-17.152000pt;}
._2d{margin-left:-15.878400pt;}
._27{margin-left:-12.800000pt;}
._d{margin-left:-9.920000pt;}
._11{margin-left:-6.982400pt;}
._b{margin-left:-6.054400pt;}
._17{margin-left:-4.864000pt;}
._2{margin-left:-3.898667pt;}
._8{margin-left:-2.284800pt;}
._0{margin-left:-1.013333pt;}
._1{width:1.226667pt;}
._13{width:2.353067pt;}
._9{width:3.584000pt;}
._3{width:5.017600pt;}
._6{width:6.086400pt;}
._22{width:6.995200pt;}
._18{width:8.320000pt;}
._16{width:9.209600pt;}
._5{width:10.195200pt;}
._26{width:13.184000pt;}
._20{width:14.291200pt;}
._e{width:15.193600pt;}
._1a{width:18.624000pt;}
._15{width:20.915200pt;}
._4{width:24.460800pt;}
._c{width:25.664000pt;}
._12{width:27.136000pt;}
._21{width:30.016000pt;}
._a{width:33.299200pt;}
._2c{width:36.422400pt;}
._2a{width:41.088000pt;}
._28{width:47.660800pt;}
._29{width:48.608000pt;}
._7{width:49.996800pt;}
._1f{width:53.554133pt;}
._1c{width:58.944000pt;}
._25{width:61.632000pt;}
._f{width:65.536000pt;}
._1b{width:77.638400pt;}
._1d{width:87.840000pt;}
._24{width:91.104000pt;}
.fs7{font-size:37.312000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:56.390000pt;}
.y2{bottom:57.564933pt;}
.y1{bottom:58.299200pt;}
.y5b{bottom:83.104267pt;}
.y84{bottom:83.520133pt;}
.y27{bottom:88.838267pt;}
.y5a{bottom:103.104267pt;}
.y83{bottom:103.520133pt;}
.y59{bottom:123.104267pt;}
.y82{bottom:123.520133pt;}
.y26{bottom:128.838267pt;}
.y58{bottom:143.104267pt;}
.y81{bottom:143.520133pt;}
.y25{bottom:148.838267pt;}
.y57{bottom:163.104267pt;}
.y80{bottom:163.520133pt;}
.y24{bottom:168.838267pt;}
.y56{bottom:183.104267pt;}
.y7f{bottom:183.520133pt;}
.y55{bottom:203.104267pt;}
.y7e{bottom:203.520133pt;}
.y23{bottom:208.838267pt;}
.y54{bottom:223.104267pt;}
.y7d{bottom:223.520133pt;}
.y22{bottom:228.838267pt;}
.y53{bottom:243.104267pt;}
.y7c{bottom:243.520133pt;}
.y21{bottom:248.838267pt;}
.y52{bottom:263.104267pt;}
.y7b{bottom:263.520133pt;}
.y20{bottom:268.838267pt;}
.y51{bottom:283.104267pt;}
.y7a{bottom:283.520133pt;}
.y1f{bottom:288.838267pt;}
.y50{bottom:303.104267pt;}
.y79{bottom:303.520133pt;}
.y1e{bottom:308.838267pt;}
.y4f{bottom:323.104267pt;}
.y78{bottom:323.520133pt;}
.y1d{bottom:328.838267pt;}
.y4e{bottom:343.104267pt;}
.y77{bottom:343.520133pt;}
.y1c{bottom:348.838267pt;}
.y4d{bottom:363.104267pt;}
.y76{bottom:363.520133pt;}
.y1b{bottom:368.838267pt;}
.y4c{bottom:383.104267pt;}
.y75{bottom:383.520133pt;}
.y1a{bottom:388.838267pt;}
.y4b{bottom:403.104267pt;}
.y74{bottom:403.520133pt;}
.y30{bottom:405.457733pt;}
.y19{bottom:408.838267pt;}
.y4a{bottom:423.104267pt;}
.y73{bottom:423.520133pt;}
.y2f{bottom:425.457733pt;}
.y18{bottom:428.838267pt;}
.y49{bottom:443.104267pt;}
.y72{bottom:443.520133pt;}
.y2e{bottom:445.457733pt;}
.y17{bottom:448.838267pt;}
.y48{bottom:463.104267pt;}
.y71{bottom:463.520133pt;}
.y16{bottom:468.838267pt;}
.y2d{bottom:481.457733pt;}
.y47{bottom:483.104267pt;}
.y70{bottom:483.520133pt;}
.y15{bottom:488.838267pt;}
.y46{bottom:503.104267pt;}
.y6f{bottom:503.520133pt;}
.y14{bottom:508.838267pt;}
.y2c{bottom:521.457733pt;}
.y45{bottom:523.104267pt;}
.y6e{bottom:523.520133pt;}
.y13{bottom:528.838267pt;}
.y44{bottom:543.104267pt;}
.y6d{bottom:543.520133pt;}
.y12{bottom:548.838267pt;}
.y2b{bottom:557.457733pt;}
.y43{bottom:563.104267pt;}
.y6c{bottom:563.520133pt;}
.y11{bottom:568.838267pt;}
.y42{bottom:583.104267pt;}
.y6b{bottom:583.520133pt;}
.y10{bottom:588.838267pt;}
.y2a{bottom:589.457733pt;}
.y41{bottom:603.104267pt;}
.y6a{bottom:603.520133pt;}
.y29{bottom:621.457733pt;}
.y40{bottom:623.104267pt;}
.y69{bottom:623.520133pt;}
.yf{bottom:628.806267pt;}
.y3f{bottom:643.104267pt;}
.y68{bottom:643.520133pt;}
.ye{bottom:647.478267pt;}
.y28{bottom:653.457733pt;}
.y3e{bottom:663.104267pt;}
.y85{bottom:663.520133pt;}
.yd{bottom:666.150267pt;}
.y3d{bottom:683.104267pt;}
.y67{bottom:683.520133pt;}
.yc{bottom:684.822267pt;}
.y3c{bottom:703.104267pt;}
.yb{bottom:703.494267pt;}
.y66{bottom:703.520133pt;}
.ya{bottom:722.166267pt;}
.y3b{bottom:723.104267pt;}
.y65{bottom:723.520133pt;}
.y9{bottom:740.838267pt;}
.y3a{bottom:743.104267pt;}
.y64{bottom:743.520133pt;}
.y39{bottom:763.104267pt;}
.y63{bottom:763.520133pt;}
.y86{bottom:768.848000pt;}
.y8{bottom:779.500933pt;}
.y38{bottom:783.104267pt;}
.y62{bottom:783.520133pt;}
.y7{bottom:798.171600pt;}
.y37{bottom:803.104267pt;}
.y60{bottom:803.520133pt;}
.y61{bottom:808.848000pt;}
.y6{bottom:816.838267pt;}
.y36{bottom:823.104267pt;}
.y5f{bottom:823.520133pt;}
.y35{bottom:843.104267pt;}
.y5e{bottom:843.520133pt;}
.y5{bottom:860.838267pt;}
.y34{bottom:863.104267pt;}
.y5d{bottom:863.520133pt;}
.y33{bottom:883.104267pt;}
.y5c{bottom:883.520133pt;}
.y4{bottom:910.554800pt;}
.y32{bottom:913.339333pt;}
.y3{bottom:923.888133pt;}
.hf{height:26.118400pt;}
.h5{height:30.378667pt;}
.h4{height:30.720000pt;}
.hb{height:36.119792pt;}
.hc{height:37.031250pt;}
.h3{height:37.333333pt;}
.h2{height:37.973333pt;}
.h8{height:41.066667pt;}
.h9{height:44.800000pt;}
.he{height:46.660099pt;}
.h10{height:47.429867pt;}
.ha{height:47.430400pt;}
.hd{height:47.526765pt;}
.h7{height:48.533333pt;}
.h6{height:56.000000pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xd{left:57.957867pt;}
.xc{left:63.336133pt;}
.xb{left:64.913333pt;}
.xf{left:75.590533pt;}
.x9{left:198.805600pt;}
.xa{left:222.805733pt;}
.x5{left:233.218000pt;}
.x14{left:323.797333pt;}
.x13{left:328.313467pt;}
.xe{left:332.821467pt;}
.x10{left:355.493467pt;}
.x4{left:366.464133pt;}
.x11{left:374.396133pt;}
.x15{left:379.498533pt;}
.x8{left:410.267600pt;}
.x7{left:433.836933pt;}
.x6{left:478.763733pt;}
.x3{left:545.952133pt;}
.x2{left:562.556267pt;}
.x12{left:631.627067pt;}
}




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