
    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_37a1828f831e390da2b7a163.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_6f0632f817d03bd0178fcbc1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_c52eebf5069c811e8f0c2220.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_1b7b7729e9fa8f0c54c93f10.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.024902;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_50be6eea0f3828f8471df62c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002000;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_a4e3a86bc75c267b695038cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914000;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_8f58e3b548d3632d2cafa410.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.074000;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_fedf8b11ad3e280b5054924c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.891113;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_7f07eb65877035fdb56e3744.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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;}
.m1{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,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);}
.m2{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;}
.ls1{letter-spacing:-1.344000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws14{word-spacing:-22.935000px;}
.ws4{word-spacing:-16.500000px;}
.ws3b{word-spacing:-16.302000px;}
.ws2{word-spacing:-15.990000px;}
.ws4b{word-spacing:-15.462900px;}
.ws64{word-spacing:-7.576200px;}
.ws69{word-spacing:-7.514100px;}
.ws63{word-spacing:-6.582600px;}
.ws52{word-spacing:-5.278500px;}
.ws51{word-spacing:-5.030100px;}
.ws23{word-spacing:-4.657500px;}
.ws65{word-spacing:-3.353400px;}
.ws29{word-spacing:-3.291300px;}
.ws68{word-spacing:-3.167100px;}
.ws73{word-spacing:-2.760000px;}
.ws35{word-spacing:-2.670300px;}
.ws11{word-spacing:-2.508000px;}
.ws16{word-spacing:-2.484000px;}
.wsf{word-spacing:-2.319900px;}
.ws15{word-spacing:-2.235600px;}
.wse{word-spacing:-2.194500px;}
.ws1a{word-spacing:-2.111400px;}
.ws60{word-spacing:-1.863000px;}
.ws40{word-spacing:-1.800900px;}
.ws55{word-spacing:-1.614600px;}
.ws7{word-spacing:-1.504800px;}
.ws20{word-spacing:-1.490400px;}
.wsc{word-spacing:-1.442100px;}
.ws4d{word-spacing:-1.428300px;}
.ws6c{word-spacing:-1.366200px;}
.ws56{word-spacing:-1.304100px;}
.ws12{word-spacing:-1.254000px;}
.ws3c{word-spacing:-1.179900px;}
.ws25{word-spacing:-1.117800px;}
.wsd{word-spacing:-1.003200px;}
.ws46{word-spacing:-0.745200px;}
.ws26{word-spacing:-0.683100px;}
.ws42{word-spacing:-0.627000px;}
.ws3e{word-spacing:-0.621000px;}
.ws3a{word-spacing:-0.558900px;}
.ws53{word-spacing:-0.496800px;}
.ws9{word-spacing:-0.438900px;}
.ws66{word-spacing:-0.372600px;}
.ws58{word-spacing:-0.310500px;}
.ws4e{word-spacing:-0.124200px;}
.ws3{word-spacing:-0.066000px;}
.wsa{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.ws5d{word-spacing:0.124200px;}
.ws61{word-spacing:0.310500px;}
.ws62{word-spacing:0.313500px;}
.ws1c{word-spacing:0.372600px;}
.ws22{word-spacing:0.434700px;}
.ws5{word-spacing:0.501600px;}
.ws36{word-spacing:0.558900px;}
.ws1f{word-spacing:0.745200px;}
.wsb{word-spacing:0.752400px;}
.ws17{word-spacing:0.807300px;}
.ws1e{word-spacing:0.869400px;}
.ws5f{word-spacing:0.931500px;}
.ws18{word-spacing:0.993600px;}
.ws70{word-spacing:1.020000px;}
.ws3d{word-spacing:1.117800px;}
.ws74{word-spacing:1.200000px;}
.ws6e{word-spacing:1.215000px;}
.ws1{word-spacing:1.344000px;}
.ws6b{word-spacing:1.552500px;}
.ws34{word-spacing:1.614600px;}
.ws5a{word-spacing:1.676700px;}
.ws21{word-spacing:1.863000px;}
.ws43{word-spacing:2.484000px;}
.ws44{word-spacing:2.633400px;}
.ws41{word-spacing:3.042900px;}
.ws54{word-spacing:3.167100px;}
.ws38{word-spacing:3.353400px;}
.ws50{word-spacing:3.415500px;}
.ws19{word-spacing:3.477600px;}
.ws1b{word-spacing:3.601800px;}
.ws71{word-spacing:3.720000px;}
.ws6{word-spacing:3.887400px;}
.ws39{word-spacing:3.974400px;}
.ws59{word-spacing:4.160700px;}
.ws45{word-spacing:4.222800px;}
.ws10{word-spacing:4.389000px;}
.ws27{word-spacing:4.533300px;}
.ws6f{word-spacing:4.545000px;}
.ws67{word-spacing:4.595400px;}
.ws24{word-spacing:4.719600px;}
.ws6a{word-spacing:5.092200px;}
.ws37{word-spacing:5.402700px;}
.ws13{word-spacing:5.454900px;}
.ws28{word-spacing:5.713200px;}
.ws6d{word-spacing:5.961600px;}
.ws57{word-spacing:6.396300px;}
.ws72{word-spacing:6.540000px;}
.ws48{word-spacing:6.582600px;}
.ws5e{word-spacing:6.893100px;}
.ws4c{word-spacing:7.265700px;}
.ws4a{word-spacing:7.327800px;}
.ws8{word-spacing:7.774800px;}
.ws3f{word-spacing:7.948800px;}
.ws2b{word-spacing:8.259300px;}
.ws5c{word-spacing:8.445600px;}
.ws30{word-spacing:8.507700px;}
.ws1d{word-spacing:8.818200px;}
.ws5b{word-spacing:8.942400px;}
.ws2e{word-spacing:9.439200px;}
.ws2d{word-spacing:9.811800px;}
.ws47{word-spacing:10.619100px;}
.ws4f{word-spacing:10.681200px;}
.ws31{word-spacing:11.426400px;}
.ws49{word-spacing:12.854700px;}
.ws2f{word-spacing:13.537800px;}
.ws2c{word-spacing:14.158800px;}
.ws32{word-spacing:15.525000px;}
.ws2a{word-spacing:17.263800px;}
.ws33{word-spacing:17.946900px;}
._10{margin-left:-23.268210px;}
._6{margin-left:-7.824600px;}
._5{margin-left:-5.930400px;}
._3{margin-left:-4.687200px;}
._2{margin-left:-3.242400px;}
._0{margin-left:-1.545600px;}
._4{width:1.932000px;}
._1{width:3.141600px;}
._9{width:4.503570px;}
._8{width:6.304800px;}
._a{width:7.706610px;}
._c{width:9.364680px;}
._e{width:12.728100px;}
._f{width:14.085600px;}
._d{width:504.702000px;}
._b{width:506.880000px;}
._7{width:520.146000px;}
.fc4{color:rgb(245,174,43);}
.fc2{color:rgb(74,114,132);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(246,174,45);}
.fs9{font-size:45.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:61.500000px;}
.fs7{font-size:62.100000px;}
.fs3{font-size:62.700000px;}
.fs5{font-size:66.000000px;}
.fs8{font-size:83.400000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:122.680832px;}
.fs0{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:47.337000px;}
.yce{bottom:82.903200px;}
.ycd{bottom:96.403200px;}
.ycc{bottom:109.903200px;}
.ya8{bottom:129.200925px;}
.ycb{bottom:136.903200px;}
.y4a{bottom:142.216725px;}
.y68{bottom:147.273675px;}
.yca{bottom:150.403200px;}
.y21{bottom:152.650650px;}
.ya7{bottom:154.708500px;}
.y3f{bottom:162.432900px;}
.y49{bottom:167.724300px;}
.y20{bottom:172.146150px;}
.ya6{bottom:180.206475px;}
.y67{bottom:180.222525px;}
.y3e{bottom:187.902600px;}
.y1f{bottom:191.641650px;}
.y48{bottom:193.216725px;}
.y28{bottom:206.292225px;}
.y66{bottom:211.055250px;}
.y3d{bottom:213.410175px;}
.y47{bottom:218.724300px;}
.ya5{bottom:222.822600px;}
.y1e{bottom:226.143150px;}
.y27{bottom:231.795450px;}
.y3c{bottom:238.917750px;}
.y46{bottom:244.221075px;}
.y1d{bottom:245.638650px;}
.ya4{bottom:248.307450px;}
.y26{bottom:257.295450px;}
.y89{bottom:260.162400px;}
.y3b{bottom:264.425325px;}
.y45{bottom:269.694000px;}
.ya3{bottom:273.815025px;}
.y1c{bottom:280.140150px;}
.y88{bottom:285.669975px;}
.y3a{bottom:289.932900px;}
.y44{bottom:295.201575px;}
.ya2{bottom:299.322600px;}
.y25{bottom:304.084200px;}
.y87{bottom:311.177550px;}
.y1b{bottom:314.641650px;}
.y39{bottom:315.432900px;}
.y43{bottom:320.709150px;}
.y5{bottom:321.712650px;}
.ya1{bottom:324.799875px;}
.y24{bottom:329.587425px;}
.y86{bottom:336.685125px;}
.y38{bottom:340.899600px;}
.y42{bottom:346.216725px;}
.y1a{bottom:349.143150px;}
.ya0{bottom:350.307450px;}
.y23{bottom:355.090650px;}
.yb5{bottom:355.846800px;}
.y85{bottom:362.189475px;}
.y37{bottom:366.407175px;}
.y41{bottom:371.724300px;}
.y9f{bottom:375.815025px;}
.yb4{bottom:381.354375px;}
.y19{bottom:383.644650px;}
.y84{bottom:387.677550px;}
.y36{bottom:391.914750px;}
.y18{bottom:399.240300px;}
.y9e{bottom:401.315025px;}
.yb3{bottom:406.861950px;}
.y65{bottom:409.211550px;}
.y22{bottom:410.264400px;}
.y83{bottom:413.185125px;}
.y35{bottom:417.422325px;}
.y17{bottom:424.737075px;}
.y9d{bottom:426.822600px;}
.yb2{bottom:432.346800px;}
.y82{bottom:438.692700px;}
.y16{bottom:450.240300px;}
.yb1{bottom:457.854375px;}
.y34{bottom:467.226525px;}
.y9c{bottom:470.481300px;}
.y57{bottom:472.842675px;}
.y15{bottom:475.733250px;}
.yb0{bottom:483.361950px;}
.y81{bottom:487.662075px;}
.y33{bottom:492.734100px;}
.y9b{bottom:495.988875px;}
.y56{bottom:498.350250px;}
.yaf{bottom:508.858725px;}
.y80{bottom:513.169650px;}
.y32{bottom:518.218950px;}
.y9a{bottom:521.496450px;}
.y14{bottom:523.087425px;}
.y55{bottom:523.812375px;}
.yae{bottom:534.361950px;}
.y7f{bottom:538.677225px;}
.y31{bottom:543.726525px;}
.y99{bottom:547.004025px;}
.y13{bottom:548.590650px;}
.y54{bottom:549.319950px;}
.y3{bottom:560.949450px;}
.y7e{bottom:564.184800px;}
.y30{bottom:569.234100px;}
.y98{bottom:572.488875px;}
.y12{bottom:574.090650px;}
.y53{bottom:574.827525px;}
.y7d{bottom:589.677225px;}
.yc4{bottom:589.795425px;}
.y2f{bottom:594.718950px;}
.y97{bottom:597.996450px;}
.y11{bottom:599.561775px;}
.y52{bottom:600.335100px;}
.y2{bottom:613.449450px;}
.y7c{bottom:615.184800px;}
.yc3{bottom:615.299775px;}
.y2e{bottom:620.226525px;}
.y96{bottom:623.504025px;}
.y10{bottom:625.065000px;}
.y51{bottom:625.842675px;}
.y7b{bottom:640.681575px;}
.yc2{bottom:640.765125px;}
.y2d{bottom:645.734100px;}
.y95{bottom:648.996450px;}
.y50{bottom:651.350250px;}
.y1{bottom:665.949450px;}
.y7a{bottom:666.177225px;}
.yc1{bottom:666.272700px;}
.yf{bottom:670.820325px;}
.y2c{bottom:671.226525px;}
.y94{bottom:674.504025px;}
.y4f{bottom:676.850250px;}
.y79{bottom:691.684800px;}
.yc0{bottom:691.780275px;}
.ye{bottom:696.323550px;}
.y2b{bottom:696.734100px;}
.y93{bottom:700.011600px;}
.y4e{bottom:702.327525px;}
.ybf{bottom:717.287850px;}
.yd{bottom:721.826775px;}
.y4d{bottom:727.835100px;}
.y40{bottom:728.107650px;}
.y4{bottom:735.952650px;}
.y92{bottom:740.641500px;}
.y78{bottom:742.776075px;}
.ybe{bottom:742.795425px;}
.yc{bottom:747.330000px;}
.y4c{bottom:753.342675px;}
.y91{bottom:766.126350px;}
.ybd{bottom:768.257550px;}
.y77{bottom:768.264150px;}
.yb{bottom:772.833225px;}
.yd7{bottom:776.425950px;}
.y4b{bottom:778.850250px;}
.y90{bottom:791.633925px;}
.ybc{bottom:793.765125px;}
.y76{bottom:793.771725px;}
.yd6{bottom:794.425950px;}
.yd5{bottom:812.425950px;}
.ya{bottom:816.989700px;}
.y8f{bottom:817.141500px;}
.ybb{bottom:819.272700px;}
.y75{bottom:819.279300px;}
.yd4{bottom:830.425950px;}
.y63{bottom:831.028875px;}
.y9{bottom:842.492925px;}
.y8e{bottom:842.633925px;}
.y74{bottom:844.779300px;}
.yba{bottom:844.780275px;}
.y62{bottom:856.536450px;}
.y8{bottom:867.996150px;}
.y8d{bottom:868.141500px;}
.y73{bottom:870.271725px;}
.yb9{bottom:870.287850px;}
.y61{bottom:882.044025px;}
.yd3{bottom:892.360950px;}
.y7{bottom:893.496150px;}
.y72{bottom:895.779300px;}
.yb8{bottom:895.795425px;}
.yad{bottom:898.292700px;}
.y60{bottom:907.551600px;}
.yd2{bottom:910.360950px;}
.yb7{bottom:921.295425px;}
.yac{bottom:925.292700px;}
.yd1{bottom:928.360950px;}
.y5f{bottom:933.059175px;}
.y71{bottom:944.725950px;}
.yd0{bottom:946.360950px;}
.yb6{bottom:946.803000px;}
.y6{bottom:950.877300px;}
.y5e{bottom:958.566750px;}
.ycf{bottom:964.360950px;}
.y70{bottom:970.233525px;}
.y5d{bottom:984.066750px;}
.y8c{bottom:984.555225px;}
.y6f{bottom:995.741100px;}
.yc9{bottom:995.756250px;}
.y5c{bottom:1009.551600px;}
.y8b{bottom:1010.062800px;}
.y6e{bottom:1021.248675px;}
.yc8{bottom:1021.263825px;}
.y5b{bottom:1035.059175px;}
.y8a{bottom:1035.562800px;}
.y6d{bottom:1046.756250px;}
.yc7{bottom:1046.771400px;}
.y5a{bottom:1060.566750px;}
.yc6{bottom:1072.256250px;}
.y6c{bottom:1072.263825px;}
.y59{bottom:1086.049125px;}
.yab{bottom:1087.497375px;}
.yc5{bottom:1097.763825px;}
.y6b{bottom:1097.771400px;}
.y29{bottom:1108.318800px;}
.y58{bottom:1111.556700px;}
.yaa{bottom:1116.198300px;}
.y6a{bottom:1123.271400px;}
.y64{bottom:1147.989600px;}
.ya9{bottom:1148.614200px;}
.y69{bottom:1148.771400px;}
.h1e{height:35.947266px;}
.h1f{height:47.929688px;}
.hb{height:49.434000px;}
.he{height:49.607227px;}
.h1b{height:49.615327px;}
.h15{height:49.620127px;}
.hf{height:49.637527px;}
.h11{height:49.667827px;}
.h18{height:49.677727px;}
.h16{height:49.698127px;}
.h13{height:49.728427px;}
.h12{height:49.740427px;}
.h17{height:49.758727px;}
.h1d{height:49.789027px;}
.h6{height:50.086523px;}
.h9{height:50.099423px;}
.h8{height:50.114723px;}
.h7{height:50.202023px;}
.ha{height:50.430000px;}
.hc{height:50.642182px;}
.h1c{height:51.414000px;}
.h1a{height:51.444300px;}
.h19{height:51.474600px;}
.h10{height:51.608496px;}
.hd{height:55.704000px;}
.h14{height:70.392633px;}
.h5{height:73.431164px;}
.h3{height:91.029178px;}
.h4{height:103.547084px;}
.h2{height:141.798109px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:33.108825px;}
.xb{left:51.481950px;}
.x9{left:57.478200px;}
.x7{left:60.276450px;}
.x2{left:64.002600px;}
.x13{left:65.920200px;}
.xe{left:67.098000px;}
.x1{left:85.128600px;}
.x4{left:87.044400px;}
.xa{left:99.713325px;}
.xd{left:102.542325px;}
.xc{left:118.563075px;}
.x15{left:149.620200px;}
.x3{left:154.134600px;}
.x14{left:167.245200px;}
.x10{left:170.314950px;}
.x12{left:216.198975px;}
.x11{left:217.500000px;}
.x6{left:222.754950px;}
.x5{left:470.325617px;}
.xf{left:547.228350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.194667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws14{word-spacing:-20.386667pt;}
.ws4{word-spacing:-14.666667pt;}
.ws3b{word-spacing:-14.490667pt;}
.ws2{word-spacing:-14.213333pt;}
.ws4b{word-spacing:-13.744800pt;}
.ws64{word-spacing:-6.734400pt;}
.ws69{word-spacing:-6.679200pt;}
.ws63{word-spacing:-5.851200pt;}
.ws52{word-spacing:-4.692000pt;}
.ws51{word-spacing:-4.471200pt;}
.ws23{word-spacing:-4.140000pt;}
.ws65{word-spacing:-2.980800pt;}
.ws29{word-spacing:-2.925600pt;}
.ws68{word-spacing:-2.815200pt;}
.ws73{word-spacing:-2.453333pt;}
.ws35{word-spacing:-2.373600pt;}
.ws11{word-spacing:-2.229333pt;}
.ws16{word-spacing:-2.208000pt;}
.wsf{word-spacing:-2.062133pt;}
.ws15{word-spacing:-1.987200pt;}
.wse{word-spacing:-1.950667pt;}
.ws1a{word-spacing:-1.876800pt;}
.ws60{word-spacing:-1.656000pt;}
.ws40{word-spacing:-1.600800pt;}
.ws55{word-spacing:-1.435200pt;}
.ws7{word-spacing:-1.337600pt;}
.ws20{word-spacing:-1.324800pt;}
.wsc{word-spacing:-1.281867pt;}
.ws4d{word-spacing:-1.269600pt;}
.ws6c{word-spacing:-1.214400pt;}
.ws56{word-spacing:-1.159200pt;}
.ws12{word-spacing:-1.114667pt;}
.ws3c{word-spacing:-1.048800pt;}
.ws25{word-spacing:-0.993600pt;}
.wsd{word-spacing:-0.891733pt;}
.ws46{word-spacing:-0.662400pt;}
.ws26{word-spacing:-0.607200pt;}
.ws42{word-spacing:-0.557333pt;}
.ws3e{word-spacing:-0.552000pt;}
.ws3a{word-spacing:-0.496800pt;}
.ws53{word-spacing:-0.441600pt;}
.ws9{word-spacing:-0.390133pt;}
.ws66{word-spacing:-0.331200pt;}
.ws58{word-spacing:-0.276000pt;}
.ws4e{word-spacing:-0.110400pt;}
.ws3{word-spacing:-0.058667pt;}
.wsa{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.110400pt;}
.ws61{word-spacing:0.276000pt;}
.ws62{word-spacing:0.278667pt;}
.ws1c{word-spacing:0.331200pt;}
.ws22{word-spacing:0.386400pt;}
.ws5{word-spacing:0.445867pt;}
.ws36{word-spacing:0.496800pt;}
.ws1f{word-spacing:0.662400pt;}
.wsb{word-spacing:0.668800pt;}
.ws17{word-spacing:0.717600pt;}
.ws1e{word-spacing:0.772800pt;}
.ws5f{word-spacing:0.828000pt;}
.ws18{word-spacing:0.883200pt;}
.ws70{word-spacing:0.906667pt;}
.ws3d{word-spacing:0.993600pt;}
.ws74{word-spacing:1.066667pt;}
.ws6e{word-spacing:1.080000pt;}
.ws1{word-spacing:1.194667pt;}
.ws6b{word-spacing:1.380000pt;}
.ws34{word-spacing:1.435200pt;}
.ws5a{word-spacing:1.490400pt;}
.ws21{word-spacing:1.656000pt;}
.ws43{word-spacing:2.208000pt;}
.ws44{word-spacing:2.340800pt;}
.ws41{word-spacing:2.704800pt;}
.ws54{word-spacing:2.815200pt;}
.ws38{word-spacing:2.980800pt;}
.ws50{word-spacing:3.036000pt;}
.ws19{word-spacing:3.091200pt;}
.ws1b{word-spacing:3.201600pt;}
.ws71{word-spacing:3.306667pt;}
.ws6{word-spacing:3.455467pt;}
.ws39{word-spacing:3.532800pt;}
.ws59{word-spacing:3.698400pt;}
.ws45{word-spacing:3.753600pt;}
.ws10{word-spacing:3.901333pt;}
.ws27{word-spacing:4.029600pt;}
.ws6f{word-spacing:4.040000pt;}
.ws67{word-spacing:4.084800pt;}
.ws24{word-spacing:4.195200pt;}
.ws6a{word-spacing:4.526400pt;}
.ws37{word-spacing:4.802400pt;}
.ws13{word-spacing:4.848800pt;}
.ws28{word-spacing:5.078400pt;}
.ws6d{word-spacing:5.299200pt;}
.ws57{word-spacing:5.685600pt;}
.ws72{word-spacing:5.813333pt;}
.ws48{word-spacing:5.851200pt;}
.ws5e{word-spacing:6.127200pt;}
.ws4c{word-spacing:6.458400pt;}
.ws4a{word-spacing:6.513600pt;}
.ws8{word-spacing:6.910933pt;}
.ws3f{word-spacing:7.065600pt;}
.ws2b{word-spacing:7.341600pt;}
.ws5c{word-spacing:7.507200pt;}
.ws30{word-spacing:7.562400pt;}
.ws1d{word-spacing:7.838400pt;}
.ws5b{word-spacing:7.948800pt;}
.ws2e{word-spacing:8.390400pt;}
.ws2d{word-spacing:8.721600pt;}
.ws47{word-spacing:9.439200pt;}
.ws4f{word-spacing:9.494400pt;}
.ws31{word-spacing:10.156800pt;}
.ws49{word-spacing:11.426400pt;}
.ws2f{word-spacing:12.033600pt;}
.ws2c{word-spacing:12.585600pt;}
.ws32{word-spacing:13.800000pt;}
.ws2a{word-spacing:15.345600pt;}
.ws33{word-spacing:15.952800pt;}
._10{margin-left:-20.682853pt;}
._6{margin-left:-6.955200pt;}
._5{margin-left:-5.271467pt;}
._3{margin-left:-4.166400pt;}
._2{margin-left:-2.882133pt;}
._0{margin-left:-1.373867pt;}
._4{width:1.717333pt;}
._1{width:2.792533pt;}
._9{width:4.003173pt;}
._8{width:5.604267pt;}
._a{width:6.850320pt;}
._c{width:8.324160pt;}
._e{width:11.313867pt;}
._f{width:12.520533pt;}
._d{width:448.624000pt;}
._b{width:450.560000pt;}
._7{width:462.352000pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:54.666667pt;}
.fs7{font-size:55.200000pt;}
.fs3{font-size:55.733333pt;}
.fs5{font-size:58.666667pt;}
.fs8{font-size:74.133333pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:109.049629pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:42.077333pt;}
.yce{bottom:73.691733pt;}
.ycd{bottom:85.691733pt;}
.ycc{bottom:97.691733pt;}
.ya8{bottom:114.845267pt;}
.ycb{bottom:121.691733pt;}
.y4a{bottom:126.414867pt;}
.y68{bottom:130.909933pt;}
.yca{bottom:133.691733pt;}
.y21{bottom:135.689467pt;}
.ya7{bottom:137.518667pt;}
.y3f{bottom:144.384800pt;}
.y49{bottom:149.088267pt;}
.y20{bottom:153.018800pt;}
.ya6{bottom:160.183533pt;}
.y67{bottom:160.197800pt;}
.y3e{bottom:167.024533pt;}
.y1f{bottom:170.348133pt;}
.y48{bottom:171.748200pt;}
.y28{bottom:183.370867pt;}
.y66{bottom:187.604667pt;}
.y3d{bottom:189.697933pt;}
.y47{bottom:194.421600pt;}
.ya5{bottom:198.064533pt;}
.y1e{bottom:201.016133pt;}
.y27{bottom:206.040400pt;}
.y3c{bottom:212.371333pt;}
.y46{bottom:217.085400pt;}
.y1d{bottom:218.345467pt;}
.ya4{bottom:220.717733pt;}
.y26{bottom:228.707067pt;}
.y89{bottom:231.255467pt;}
.y3b{bottom:235.044733pt;}
.y45{bottom:239.728000pt;}
.ya3{bottom:243.391133pt;}
.y1c{bottom:249.013467pt;}
.y88{bottom:253.928867pt;}
.y3a{bottom:257.718133pt;}
.y44{bottom:262.401400pt;}
.ya2{bottom:266.064533pt;}
.y25{bottom:270.297067pt;}
.y87{bottom:276.602267pt;}
.y1b{bottom:279.681467pt;}
.y39{bottom:280.384800pt;}
.y43{bottom:285.074800pt;}
.y5{bottom:285.966800pt;}
.ya1{bottom:288.711000pt;}
.y24{bottom:292.966600pt;}
.y86{bottom:299.275667pt;}
.y38{bottom:303.021867pt;}
.y42{bottom:307.748200pt;}
.y1a{bottom:310.349467pt;}
.ya0{bottom:311.384400pt;}
.y23{bottom:315.636133pt;}
.yb5{bottom:316.308267pt;}
.y85{bottom:321.946200pt;}
.y37{bottom:325.695267pt;}
.y41{bottom:330.421600pt;}
.y9f{bottom:334.057800pt;}
.yb4{bottom:338.981667pt;}
.y19{bottom:341.017467pt;}
.y84{bottom:344.602267pt;}
.y36{bottom:348.368667pt;}
.y18{bottom:354.880267pt;}
.y9e{bottom:356.724467pt;}
.yb3{bottom:361.655067pt;}
.y65{bottom:363.743600pt;}
.y22{bottom:364.679467pt;}
.y83{bottom:367.275667pt;}
.y35{bottom:371.042067pt;}
.y17{bottom:377.544067pt;}
.y9d{bottom:379.397867pt;}
.yb2{bottom:384.308267pt;}
.y82{bottom:389.949067pt;}
.y16{bottom:400.213600pt;}
.yb1{bottom:406.981667pt;}
.y34{bottom:415.312467pt;}
.y9c{bottom:418.205600pt;}
.y57{bottom:420.304600pt;}
.y15{bottom:422.874000pt;}
.yb0{bottom:429.655067pt;}
.y81{bottom:433.477400pt;}
.y33{bottom:437.985867pt;}
.y9b{bottom:440.879000pt;}
.y56{bottom:442.978000pt;}
.yaf{bottom:452.318867pt;}
.y80{bottom:456.150800pt;}
.y32{bottom:460.639067pt;}
.y9a{bottom:463.552400pt;}
.y14{bottom:464.966600pt;}
.y55{bottom:465.611000pt;}
.yae{bottom:474.988400pt;}
.y7f{bottom:478.824200pt;}
.y31{bottom:483.312467pt;}
.y99{bottom:486.225800pt;}
.y13{bottom:487.636133pt;}
.y54{bottom:488.284400pt;}
.y3{bottom:498.621733pt;}
.y7e{bottom:501.497600pt;}
.y30{bottom:505.985867pt;}
.y98{bottom:508.879000pt;}
.y12{bottom:510.302800pt;}
.y53{bottom:510.957800pt;}
.y7d{bottom:524.157533pt;}
.yc4{bottom:524.262600pt;}
.y2f{bottom:528.639067pt;}
.y97{bottom:531.552400pt;}
.y11{bottom:532.943800pt;}
.y52{bottom:533.631200pt;}
.y2{bottom:545.288400pt;}
.y7c{bottom:546.830933pt;}
.yc3{bottom:546.933133pt;}
.y2e{bottom:551.312467pt;}
.y96{bottom:554.225800pt;}
.y10{bottom:555.613333pt;}
.y51{bottom:556.304600pt;}
.y7b{bottom:569.494733pt;}
.yc2{bottom:569.569000pt;}
.y2d{bottom:573.985867pt;}
.y95{bottom:576.885733pt;}
.y50{bottom:578.978000pt;}
.y1{bottom:591.955067pt;}
.y7a{bottom:592.157533pt;}
.yc1{bottom:592.242400pt;}
.yf{bottom:596.284733pt;}
.y2c{bottom:596.645800pt;}
.y94{bottom:599.559133pt;}
.y4f{bottom:601.644667pt;}
.y79{bottom:614.830933pt;}
.yc0{bottom:614.915800pt;}
.ye{bottom:618.954267pt;}
.y2b{bottom:619.319200pt;}
.y93{bottom:622.232533pt;}
.y4e{bottom:624.291133pt;}
.ybf{bottom:637.589200pt;}
.yd{bottom:641.623800pt;}
.y4d{bottom:646.964533pt;}
.y40{bottom:647.206800pt;}
.y4{bottom:654.180133pt;}
.y92{bottom:658.348000pt;}
.y78{bottom:660.245400pt;}
.ybe{bottom:660.262600pt;}
.yc{bottom:664.293333pt;}
.y4c{bottom:669.637933pt;}
.y91{bottom:681.001200pt;}
.ybd{bottom:682.895600pt;}
.y77{bottom:682.901467pt;}
.yb{bottom:686.962867pt;}
.yd7{bottom:690.156400pt;}
.y4b{bottom:692.311333pt;}
.y90{bottom:703.674600pt;}
.ybc{bottom:705.569000pt;}
.y76{bottom:705.574867pt;}
.yd6{bottom:706.156400pt;}
.yd5{bottom:722.156400pt;}
.ya{bottom:726.213067pt;}
.y8f{bottom:726.348000pt;}
.ybb{bottom:728.242400pt;}
.y75{bottom:728.248267pt;}
.yd4{bottom:738.156400pt;}
.y63{bottom:738.692333pt;}
.y9{bottom:748.882600pt;}
.y8e{bottom:749.007933pt;}
.y74{bottom:750.914933pt;}
.yba{bottom:750.915800pt;}
.y62{bottom:761.365733pt;}
.y8{bottom:771.552133pt;}
.y8d{bottom:771.681333pt;}
.y73{bottom:773.574867pt;}
.yb9{bottom:773.589200pt;}
.y61{bottom:784.039133pt;}
.yd3{bottom:793.209733pt;}
.y7{bottom:794.218800pt;}
.y72{bottom:796.248267pt;}
.yb8{bottom:796.262600pt;}
.yad{bottom:798.482400pt;}
.y60{bottom:806.712533pt;}
.yd2{bottom:809.209733pt;}
.yb7{bottom:818.929267pt;}
.yac{bottom:822.482400pt;}
.yd1{bottom:825.209733pt;}
.y5f{bottom:829.385933pt;}
.y71{bottom:839.756400pt;}
.yd0{bottom:841.209733pt;}
.yb6{bottom:841.602667pt;}
.y6{bottom:845.224267pt;}
.y5e{bottom:852.059333pt;}
.ycf{bottom:857.209733pt;}
.y70{bottom:862.429800pt;}
.y5d{bottom:874.726000pt;}
.y8c{bottom:875.160200pt;}
.y6f{bottom:885.103200pt;}
.yc9{bottom:885.116667pt;}
.y5c{bottom:897.379200pt;}
.y8b{bottom:897.833600pt;}
.y6e{bottom:907.776600pt;}
.yc8{bottom:907.790067pt;}
.y5b{bottom:920.052600pt;}
.y8a{bottom:920.500267pt;}
.y6d{bottom:930.450000pt;}
.yc7{bottom:930.463467pt;}
.y5a{bottom:942.726000pt;}
.yc6{bottom:953.116667pt;}
.y6c{bottom:953.123400pt;}
.y59{bottom:965.377000pt;}
.yab{bottom:966.664333pt;}
.yc5{bottom:975.790067pt;}
.y6b{bottom:975.796800pt;}
.y29{bottom:985.172267pt;}
.y58{bottom:988.050400pt;}
.yaa{bottom:992.176267pt;}
.y6a{bottom:998.463467pt;}
.y64{bottom:1020.435200pt;}
.ya9{bottom:1020.990400pt;}
.y69{bottom:1021.130133pt;}
.h1e{height:31.953125pt;}
.h1f{height:42.604167pt;}
.hb{height:43.941333pt;}
.he{height:44.095313pt;}
.h1b{height:44.102512pt;}
.h15{height:44.106779pt;}
.hf{height:44.122246pt;}
.h11{height:44.149179pt;}
.h18{height:44.157979pt;}
.h16{height:44.176112pt;}
.h13{height:44.203046pt;}
.h12{height:44.213713pt;}
.h17{height:44.229979pt;}
.h1d{height:44.256912pt;}
.h6{height:44.521354pt;}
.h9{height:44.532821pt;}
.h8{height:44.546421pt;}
.h7{height:44.624021pt;}
.ha{height:44.826667pt;}
.hc{height:45.015273pt;}
.h1c{height:45.701333pt;}
.h1a{height:45.728267pt;}
.h19{height:45.755200pt;}
.h10{height:45.874219pt;}
.hd{height:49.514667pt;}
.h14{height:62.571229pt;}
.h5{height:65.272145pt;}
.h3{height:80.914825pt;}
.h4{height:92.041852pt;}
.h2{height:126.042764pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:29.430067pt;}
.xb{left:45.761733pt;}
.x9{left:51.091733pt;}
.x7{left:53.579067pt;}
.x2{left:56.891200pt;}
.x13{left:58.595733pt;}
.xe{left:59.642667pt;}
.x1{left:75.669867pt;}
.x4{left:77.372800pt;}
.xa{left:88.634067pt;}
.xd{left:91.148733pt;}
.xc{left:105.389400pt;}
.x15{left:132.995733pt;}
.x3{left:137.008533pt;}
.x14{left:148.662400pt;}
.x10{left:151.391067pt;}
.x12{left:192.176867pt;}
.x11{left:193.333333pt;}
.x6{left:198.004400pt;}
.x5{left:418.067215pt;}
.xf{left:486.425200pt;}
}




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