
    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_17d223b5e4f60aee5d5f80ed.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_57ecbcf952a5692465b08d64.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ce897f0ce53dbe42c6bf841e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_b0f6089f77d2f5ab4fea0f0b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_338fb2e8f398ef392a73346a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.894000;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_64a117ebad30f297f856f6c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.637000;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_bac91aa5a5178834cd0ab073.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.688000;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_890f1bd1de911f372c0b17cd.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_1b4209878ad8d2de3f95f052.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.001000;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_6e8b4eed4622cc0f4d707497.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910000;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:16.617617px;}
.ls2{letter-spacing:23.910240px;}
.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;}
}
.ws41{word-spacing:-29.881822px;}
.ws89{word-spacing:-16.013883px;}
.wse{word-spacing:-15.321784px;}
.ws4d{word-spacing:-15.236800px;}
.ws4e{word-spacing:-15.177025px;}
.ws2b{word-spacing:-14.997698px;}
.ws27{word-spacing:-14.937922px;}
.ws5c{word-spacing:-14.622405px;}
.ws3a{word-spacing:-14.340166px;}
.ws8{word-spacing:-13.923026px;}
.ws52{word-spacing:-13.921737px;}
.ws2a{word-spacing:-13.861962px;}
.ws71{word-spacing:-13.682635px;}
.ws35{word-spacing:-13.622859px;}
.ws90{word-spacing:-13.492639px;}
.ws0{word-spacing:-13.442427px;}
.ws2e{word-spacing:-13.264206px;}
.ws16{word-spacing:-13.144654px;}
.ws9{word-spacing:-13.008453px;}
.ws63{word-spacing:-12.845776px;}
.ws38{word-spacing:-12.726225px;}
.ws62{word-spacing:-12.666450px;}
.ws33{word-spacing:-12.546898px;}
.ws3c{word-spacing:-12.427347px;}
.wsa{word-spacing:-12.362872px;}
.ws72{word-spacing:-12.248020px;}
.ws84{word-spacing:-12.188245px;}
.ws15{word-spacing:-12.068694px;}
.ws54{word-spacing:-11.889367px;}
.ws5e{word-spacing:-11.824888px;}
.ws4{word-spacing:-11.663493px;}
.ws21{word-spacing:-11.351386px;}
.ws78{word-spacing:-11.233106px;}
.ws2d{word-spacing:-11.172060px;}
.ws34{word-spacing:-11.052508px;}
.ws83{word-spacing:-10.932957px;}
.ws7{word-spacing:-10.910316px;}
.ws28{word-spacing:-10.873182px;}
.ws3b{word-spacing:-10.753630px;}
.ws6e{word-spacing:-10.335201px;}
.ws46{word-spacing:-10.275426px;}
.ws10{word-spacing:-10.264735px;}
.ws13{word-spacing:-10.103340px;}
.ws1a{word-spacing:-9.976548px;}
.ws36{word-spacing:-9.916772px;}
.ws74{word-spacing:-9.834348px;}
.ws25{word-spacing:-9.737445px;}
.ws5b{word-spacing:-9.726751px;}
.ws55{word-spacing:-9.677670px;}
.ws88{word-spacing:-9.558118px;}
.ws58{word-spacing:-9.498343px;}
.ws5a{word-spacing:-9.457759px;}
.ws73{word-spacing:-9.403960px;}
.ws3{word-spacing:-9.242565px;}
.ws8f{word-spacing:-9.188767px;}
.ws26{word-spacing:-9.079914px;}
.ws56{word-spacing:-8.906564px;}
.wsc{word-spacing:-8.812178px;}
.ws5d{word-spacing:-8.704581px;}
.ws31{word-spacing:-8.601709px;}
.ws61{word-spacing:-8.422382px;}
.ws67{word-spacing:-7.884402px;}
.ws40{word-spacing:-7.764850px;}
.ws57{word-spacing:-7.585524px;}
.ws4a{word-spacing:-7.286646px;}
.ws79{word-spacing:-7.252024px;}
.ws66{word-spacing:-7.047543px;}
.ws19{word-spacing:-6.748665px;}
.ws51{word-spacing:-6.688890px;}
.ws24{word-spacing:-6.569338px;}
.ws76{word-spacing:-6.498847px;}
.ws3f{word-spacing:-6.330236px;}
.ws29{word-spacing:-6.210685px;}
.ws50{word-spacing:-6.156887px;}
.ws43{word-spacing:-5.911807px;}
.ws5f{word-spacing:-5.745669px;}
.ws60{word-spacing:-5.493378px;}
.ws3d{word-spacing:-5.433602px;}
.ws6{word-spacing:-5.315282px;}
.ws53{word-spacing:-5.314051px;}
.ws59{word-spacing:-5.046290px;}
.ws8a{word-spacing:-4.955397px;}
.ws80{word-spacing:-4.835846px;}
.ws4b{word-spacing:-4.596744px;}
.ws12{word-spacing:-4.562104px;}
.ws42{word-spacing:-4.536968px;}
.ws6b{word-spacing:-4.058763px;}
.ws1d{word-spacing:-3.998988px;}
.wsf{word-spacing:-3.970322px;}
.wsd{word-spacing:-3.808927px;}
.ws8b{word-spacing:-3.755128px;}
.wsb{word-spacing:-3.701330px;}
.ws17{word-spacing:-3.401232px;}
.ws64{word-spacing:-3.341456px;}
.ws75{word-spacing:-3.163346px;}
.ws7a{word-spacing:-3.162129px;}
.ws6a{word-spacing:-2.803476px;}
.ws11{word-spacing:-2.410168px;}
.ws65{word-spacing:-2.385046px;}
.ws2c{word-spacing:-2.086168px;}
.ws70{word-spacing:-1.966617px;}
.ws37{word-spacing:-1.906842px;}
.ws5{word-spacing:-1.603192px;}
.ws77{word-spacing:-1.387999px;}
.ws82{word-spacing:-1.249310px;}
.ws6f{word-spacing:-1.129759px;}
.ws45{word-spacing:-1.010208px;}
.ws18{word-spacing:-0.711330px;}
.ws87{word-spacing:-0.053798px;}
.ws8d{word-spacing:-0.043039px;}
.ws44{word-spacing:0.000000px;}
.ws1e{word-spacing:0.304856px;}
.ws86{word-spacing:0.543958px;}
.ws32{word-spacing:1.380816px;}
.ws69{word-spacing:1.500368px;}
.ws85{word-spacing:1.859021px;}
.ws47{word-spacing:1.918797px;}
.ws6c{word-spacing:1.978572px;}
.ws30{word-spacing:2.934982px;}
.ws81{word-spacing:3.114309px;}
.ws8e{word-spacing:3.669051px;}
.ws68{word-spacing:3.831616px;}
.ws1{word-spacing:4.548923px;}
.ws7c{word-spacing:4.788026px;}
.ws4c{word-spacing:4.847801px;}
.ws4f{word-spacing:5.917784px;}
.ws20{word-spacing:6.401967px;}
.ws23{word-spacing:7.238825px;}
.ws1f{word-spacing:9.091869px;}
.ws6d{word-spacing:9.271196px;}
.ws7f{word-spacing:10.765586px;}
.ws7e{word-spacing:11.781771px;}
.ws91{word-spacing:15.762931px;}
.ws39{word-spacing:16.498066px;}
.ws22{word-spacing:18.596189px;}
.ws2f{word-spacing:21.142771px;}
.ws3e{word-spacing:21.196570px;}
.ws7d{word-spacing:21.286091px;}
.ws92{word-spacing:21.519360px;}
.ws8c{word-spacing:27.490982px;}
.ws48{word-spacing:27.496776px;}
.ws2{word-spacing:28.190362px;}
.ws49{word-spacing:29.230268px;}
.ws93{word-spacing:31.579661px;}
.ws1c{word-spacing:34.137845px;}
.ws1b{word-spacing:40.175181px;}
.ws7b{word-spacing:40.772937px;}
.ws14{word-spacing:63.589709px;}
._2{margin-left:-6.742733px;}
._17{margin-left:-5.630899px;}
._1{margin-left:-4.519066px;}
._4{margin-left:-3.425165px;}
._0{margin-left:-2.223667px;}
._7{margin-left:-1.075968px;}
._14{width:1.183542px;}
._6{width:2.223667px;}
._e{width:3.837619px;}
._d{width:13.557197px;}
._24{width:15.601536px;}
._8{width:17.125824px;}
._1d{width:18.494600px;}
._18{width:19.994976px;}
._25{width:21.895972px;}
._b{width:23.294707px;}
._5{width:24.585869px;}
._15{width:25.805186px;}
._9{width:27.275789px;}
._10{width:28.572464px;}
._19{width:30.067127px;}
._1c{width:31.202863px;}
._22{width:32.691494px;}
._1a{width:33.785184px;}
._3{width:35.793869px;}
._1f{width:37.132625px;}
._f{width:38.573453px;}
._12{width:39.601373px;}
._c{width:41.030246px;}
._a{width:47.378458px;}
._1e{width:49.255094px;}
._21{width:53.511132px;}
._13{width:55.591308px;}
._11{width:57.217226px;}
._20{width:61.580838px;}
._16{width:64.235312px;}
._1b{width:74.241792px;}
._23{width:92.425048px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y37{bottom:103.411500px;}
.y76{bottom:105.654000px;}
.y4e{bottom:120.597000px;}
.y75{bottom:122.839500px;}
.y36{bottom:122.995500px;}
.y98{bottom:140.025000px;}
.y35{bottom:140.181000px;}
.y4d{bottom:153.817500px;}
.y97{bottom:157.210500px;}
.y34{bottom:157.366500px;}
.y74{bottom:161.434500px;}
.y4c{bottom:171.003000px;}
.y96{bottom:174.396000px;}
.y33{bottom:174.552000px;}
.y32{bottom:191.737500px;}
.y95{bottom:193.335000px;}
.y4b{bottom:203.203500px;}
.y31{bottom:208.923000px;}
.y94{bottom:210.520500px;}
.y73{bottom:211.938000px;}
.y4a{bottom:220.389000px;}
.y93{bottom:227.706000px;}
.y30{bottom:228.507000px;}
.y72{bottom:229.123500px;}
.y49{bottom:237.574500px;}
.y92{bottom:244.891500px;}
.y2f{bottom:245.692500px;}
.y71{bottom:246.309000px;}
.y91{bottom:262.077000px;}
.y2e{bottom:262.878000px;}
.y70{bottom:275.899500px;}
.y48{bottom:277.039500px;}
.y90{bottom:279.262500px;}
.y2d{bottom:280.063500px;}
.y6f{bottom:293.085000px;}
.y8f{bottom:296.448000px;}
.y2c{bottom:297.249000px;}
.y6e{bottom:310.270500px;}
.y2b{bottom:314.436000px;}
.y47{bottom:315.010500px;}
.y8e{bottom:315.387000px;}
.y2a{bottom:331.621500px;}
.y8d{bottom:332.572500px;}
.y6d{bottom:340.012500px;}
.y29{bottom:348.807000px;}
.y8c{bottom:349.758000px;}
.y8b{bottom:366.943500px;}
.y28{bottom:368.389500px;}
.y6c{bottom:369.753000px;}
.y46{bottom:370.126500px;}
.yb7{bottom:377.889000px;}
.y8a{bottom:384.129000px;}
.y27{bottom:385.575000px;}
.y45{bottom:387.312000px;}
.yb6{bottom:393.580500px;}
.y6b{bottom:399.493500px;}
.y89{bottom:401.314500px;}
.y26{bottom:402.762000px;}
.y44{bottom:404.497500px;}
.yb5{bottom:409.272000px;}
.y25{bottom:419.947500px;}
.y43{bottom:421.683000px;}
.yb4{bottom:424.962000px;}
.y6a{bottom:429.085500px;}
.y24{bottom:437.133000px;}
.y42{bottom:439.888500px;}
.yb3{bottom:440.653500px;}
.y88{bottom:441.513000px;}
.y69{bottom:446.271000px;}
.y23{bottom:454.318500px;}
.yb2{bottom:456.345000px;}
.y41{bottom:457.074000px;}
.y22{bottom:471.504000px;}
.y40{bottom:474.259500px;}
.y68{bottom:484.866000px;}
.y21{bottom:488.689500px;}
.y3f{bottom:491.445000px;}
.y87{bottom:500.520000px;}
.y20{bottom:505.875000px;}
.y3e{bottom:509.650500px;}
.y86{bottom:517.705500px;}
.y1f{bottom:525.459000px;}
.y3d{bottom:526.836000px;}
.y85{bottom:534.891000px;}
.y67{bottom:535.369500px;}
.yb1{bottom:536.482500px;}
.y1e{bottom:542.644500px;}
.y3c{bottom:544.021500px;}
.y84{bottom:552.076500px;}
.y66{bottom:552.555000px;}
.yb0{bottom:553.668000px;}
.y1d{bottom:559.830000px;}
.y3b{bottom:561.208500px;}
.y65{bottom:569.740500px;}
.yaf{bottom:570.853500px;}
.y83{bottom:571.015500px;}
.y1c{bottom:577.015500px;}
.y3a{bottom:578.394000px;}
.y64{bottom:586.926000px;}
.yae{bottom:588.039000px;}
.y82{bottom:588.201000px;}
.y1b{bottom:594.201000px;}
.y39{bottom:595.579500px;}
.y63{bottom:604.261500px;}
.y81{bottom:605.386500px;}
.y1a{bottom:611.386500px;}
.y38{bottom:612.765000px;}
.y62{bottom:621.447000px;}
.y80{bottom:622.572000px;}
.yad{bottom:626.484000px;}
.y61{bottom:638.632500px;}
.y7f{bottom:639.757500px;}
.y19{bottom:652.230000px;}
.y60{bottom:655.818000px;}
.yac{bottom:676.191000px;}
.yab{bottom:693.378000px;}
.y7e{bottom:693.699000px;}
.y5f{bottom:694.413000px;}
.y18{bottom:698.929500px;}
.y7d{bottom:709.390500px;}
.yaa{bottom:710.563500px;}
.y17{bottom:714.619500px;}
.y7c{bottom:725.082000px;}
.ya9{bottom:727.749000px;}
.y16{bottom:730.311000px;}
.y7b{bottom:740.772000px;}
.y5e{bottom:744.916500px;}
.ya8{bottom:744.934500px;}
.y15{bottom:746.002500px;}
.y7a{bottom:756.463500px;}
.y14{bottom:761.694000px;}
.y5d{bottom:762.102000px;}
.ya7{bottom:762.120000px;}
.y79{bottom:772.155000px;}
.y13{bottom:777.384000px;}
.y5c{bottom:779.287500px;}
.y78{bottom:787.846500px;}
.y12{bottom:793.075500px;}
.ya6{bottom:800.565000px;}
.y77{bottom:803.536500px;}
.y11{bottom:808.767000px;}
.y5b{bottom:808.879500px;}
.y10{bottom:824.458500px;}
.y5a{bottom:826.065000px;}
.yf{bottom:840.150000px;}
.y59{bottom:843.250500px;}
.ya5{bottom:850.272000px;}
.ye{bottom:855.840000px;}
.ya4{bottom:867.457500px;}
.yd{bottom:871.531500px;}
.y58{bottom:872.991000px;}
.ya3{bottom:884.643000px;}
.yc{bottom:887.223000px;}
.y57{bottom:890.176500px;}
.ya2{bottom:901.828500px;}
.yb{bottom:902.914500px;}
.ya{bottom:918.604500px;}
.ya1{bottom:919.014000px;}
.y56{bottom:919.767000px;}
.y9{bottom:934.296000px;}
.ya0{bottom:936.199500px;}
.y55{bottom:937.102500px;}
.y8{bottom:949.987500px;}
.y9f{bottom:953.385000px;}
.y54{bottom:954.289500px;}
.y7{bottom:965.679000px;}
.y9e{bottom:970.570500px;}
.y53{bottom:971.475000px;}
.y6{bottom:981.370500px;}
.y9d{bottom:987.756000px;}
.y52{bottom:988.660500px;}
.y9c{bottom:1004.941500px;}
.y5{bottom:1006.774500px;}
.y9b{bottom:1022.127000px;}
.y4{bottom:1022.466000px;}
.y51{bottom:1027.255500px;}
.y3{bottom:1038.157500px;}
.y9a{bottom:1039.312500px;}
.y99{bottom:1056.498000px;}
.y2{bottom:1074.022500px;}
.y50{bottom:1077.759000px;}
.y1{bottom:1094.944500px;}
.y4f{bottom:1133.799000px;}
.h4{height:37.712678px;}
.h3{height:40.402598px;}
.h5{height:42.201574px;}
.h2{height:44.891476px;}
.h1{height:50.283571px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:81.000000px;}
.x1{left:82.042500px;}
.x9{left:95.944500px;}
.x1c{left:101.565000px;}
.x14{left:104.911500px;}
.x15{left:118.360500px;}
.x13{left:128.935500px;}
.x17{left:148.719000px;}
.x16{left:152.050500px;}
.x7{left:163.192500px;}
.x6{left:177.012000px;}
.x8{left:186.502500px;}
.x2{left:281.250000px;}
.x4{left:310.714500px;}
.x5{left:376.248000px;}
.x3{left:414.645000px;}
.xd{left:475.521000px;}
.xc{left:490.464000px;}
.x10{left:495.282000px;}
.x11{left:512.880000px;}
.xe{left:516.883500px;}
.xb{left:528.199500px;}
.xf{left:564.385500px;}
.x1b{left:570.118500px;}
.x1a{left:579.537000px;}
.x19{left:587.539500px;}
.x18{left:604.381500px;}
.x12{left:835.672500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:14.771215pt;}
.ls2{letter-spacing:21.253547pt;}
.ws41{word-spacing:-26.561620pt;}
.ws89{word-spacing:-14.234563pt;}
.wse{word-spacing:-13.619364pt;}
.ws4d{word-spacing:-13.543823pt;}
.ws4e{word-spacing:-13.490689pt;}
.ws2b{word-spacing:-13.331287pt;}
.ws27{word-spacing:-13.278153pt;}
.ws5c{word-spacing:-12.997693pt;}
.ws3a{word-spacing:-12.746815pt;}
.ws8{word-spacing:-12.376023pt;}
.ws52{word-spacing:-12.374878pt;}
.ws2a{word-spacing:-12.321744pt;}
.ws71{word-spacing:-12.162342pt;}
.ws35{word-spacing:-12.109208pt;}
.ws90{word-spacing:-11.993457pt;}
.ws0{word-spacing:-11.948824pt;}
.ws2e{word-spacing:-11.790405pt;}
.ws16{word-spacing:-11.684137pt;}
.ws9{word-spacing:-11.563069pt;}
.ws63{word-spacing:-11.418468pt;}
.ws38{word-spacing:-11.312200pt;}
.ws62{word-spacing:-11.259066pt;}
.ws33{word-spacing:-11.152799pt;}
.ws3c{word-spacing:-11.046531pt;}
.wsa{word-spacing:-10.989220pt;}
.ws72{word-spacing:-10.887129pt;}
.ws84{word-spacing:-10.833995pt;}
.ws15{word-spacing:-10.727728pt;}
.ws54{word-spacing:-10.568326pt;}
.ws5e{word-spacing:-10.511012pt;}
.ws4{word-spacing:-10.367549pt;}
.ws21{word-spacing:-10.090121pt;}
.ws78{word-spacing:-9.984983pt;}
.ws2d{word-spacing:-9.930720pt;}
.ws34{word-spacing:-9.824452pt;}
.ws83{word-spacing:-9.718184pt;}
.ws7{word-spacing:-9.698058pt;}
.ws28{word-spacing:-9.665050pt;}
.ws3b{word-spacing:-9.558783pt;}
.ws6e{word-spacing:-9.186846pt;}
.ws46{word-spacing:-9.133712pt;}
.ws10{word-spacing:-9.124209pt;}
.ws13{word-spacing:-8.980746pt;}
.ws1a{word-spacing:-8.868042pt;}
.ws36{word-spacing:-8.814908pt;}
.ws74{word-spacing:-8.741642pt;}
.ws25{word-spacing:-8.655507pt;}
.ws5b{word-spacing:-8.646001pt;}
.ws55{word-spacing:-8.602373pt;}
.ws88{word-spacing:-8.496105pt;}
.ws58{word-spacing:-8.442971pt;}
.ws5a{word-spacing:-8.406897pt;}
.ws73{word-spacing:-8.359076pt;}
.ws3{word-spacing:-8.215613pt;}
.ws8f{word-spacing:-8.167793pt;}
.ws26{word-spacing:-8.071034pt;}
.ws56{word-spacing:-7.916946pt;}
.wsc{word-spacing:-7.833047pt;}
.ws5d{word-spacing:-7.737405pt;}
.ws31{word-spacing:-7.645963pt;}
.ws61{word-spacing:-7.486562pt;}
.ws67{word-spacing:-7.008357pt;}
.ws40{word-spacing:-6.902089pt;}
.ws57{word-spacing:-6.742688pt;}
.ws4a{word-spacing:-6.477018pt;}
.ws79{word-spacing:-6.446244pt;}
.ws66{word-spacing:-6.264483pt;}
.ws19{word-spacing:-5.998814pt;}
.ws51{word-spacing:-5.945680pt;}
.ws24{word-spacing:-5.839412pt;}
.ws76{word-spacing:-5.776753pt;}
.ws3f{word-spacing:-5.626876pt;}
.ws29{word-spacing:-5.520609pt;}
.ws50{word-spacing:-5.472788pt;}
.ws43{word-spacing:-5.254939pt;}
.ws5f{word-spacing:-5.107261pt;}
.ws60{word-spacing:-4.883002pt;}
.ws3d{word-spacing:-4.829868pt;}
.ws6{word-spacing:-4.724695pt;}
.ws53{word-spacing:-4.723601pt;}
.ws59{word-spacing:-4.485591pt;}
.ws8a{word-spacing:-4.404798pt;}
.ws80{word-spacing:-4.298530pt;}
.ws4b{word-spacing:-4.085994pt;}
.ws12{word-spacing:-4.055204pt;}
.ws42{word-spacing:-4.032860pt;}
.ws6b{word-spacing:-3.607790pt;}
.ws1d{word-spacing:-3.554656pt;}
.wsf{word-spacing:-3.529175pt;}
.wsd{word-spacing:-3.385713pt;}
.ws8b{word-spacing:-3.337892pt;}
.wsb{word-spacing:-3.290071pt;}
.ws17{word-spacing:-3.023317pt;}
.ws64{word-spacing:-2.970183pt;}
.ws75{word-spacing:-2.811863pt;}
.ws7a{word-spacing:-2.810782pt;}
.ws6a{word-spacing:-2.491978pt;}
.ws11{word-spacing:-2.142372pt;}
.ws65{word-spacing:-2.120041pt;}
.ws2c{word-spacing:-1.854372pt;}
.ws70{word-spacing:-1.748104pt;}
.ws37{word-spacing:-1.694970pt;}
.ws5{word-spacing:-1.425060pt;}
.ws77{word-spacing:-1.233777pt;}
.ws82{word-spacing:-1.110498pt;}
.ws6f{word-spacing:-1.004230pt;}
.ws45{word-spacing:-0.897962pt;}
.ws18{word-spacing:-0.632293pt;}
.ws87{word-spacing:-0.047821pt;}
.ws8d{word-spacing:-0.038257pt;}
.ws44{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.270983pt;}
.ws86{word-spacing:0.483518pt;}
.ws32{word-spacing:1.227392pt;}
.ws69{word-spacing:1.333660pt;}
.ws85{word-spacing:1.652463pt;}
.ws47{word-spacing:1.705597pt;}
.ws6c{word-spacing:1.758731pt;}
.ws30{word-spacing:2.608873pt;}
.ws81{word-spacing:2.768274pt;}
.ws8e{word-spacing:3.261379pt;}
.ws68{word-spacing:3.405881pt;}
.ws1{word-spacing:4.043487pt;}
.ws7c{word-spacing:4.256023pt;}
.ws4c{word-spacing:4.309157pt;}
.ws4f{word-spacing:5.260253pt;}
.ws20{word-spacing:5.690637pt;}
.ws23{word-spacing:6.434511pt;}
.ws1f{word-spacing:8.081661pt;}
.ws6d{word-spacing:8.241063pt;}
.ws7f{word-spacing:9.569409pt;}
.ws7e{word-spacing:10.472685pt;}
.ws91{word-spacing:14.011494pt;}
.ws39{word-spacing:14.664947pt;}
.ws22{word-spacing:16.529946pt;}
.ws2f{word-spacing:18.793574pt;}
.ws3e{word-spacing:18.841395pt;}
.ws7d{word-spacing:18.920970pt;}
.ws92{word-spacing:19.128320pt;}
.ws8c{word-spacing:24.436429pt;}
.ws48{word-spacing:24.441579pt;}
.ws2{word-spacing:25.058099pt;}
.ws49{word-spacing:25.982461pt;}
.ws93{word-spacing:28.070810pt;}
.ws1c{word-spacing:30.344751pt;}
.ws1b{word-spacing:35.711272pt;}
.ws7b{word-spacing:36.242610pt;}
.ws14{word-spacing:56.524186pt;}
._2{margin-left:-5.993540pt;}
._17{margin-left:-5.005244pt;}
._1{margin-left:-4.016947pt;}
._4{margin-left:-3.044591pt;}
._0{margin-left:-1.976593pt;}
._7{margin-left:-0.956416pt;}
._14{width:1.052037pt;}
._6{width:1.976593pt;}
._e{width:3.411217pt;}
._d{width:12.050842pt;}
._24{width:13.868032pt;}
._8{width:15.222955pt;}
._1d{width:16.439645pt;}
._18{width:17.773312pt;}
._25{width:19.463086pt;}
._b{width:20.706406pt;}
._5{width:21.854106pt;}
._15{width:22.937943pt;}
._9{width:24.245146pt;}
._10{width:25.397746pt;}
._19{width:26.726335pt;}
._1c{width:27.735878pt;}
._22{width:29.059106pt;}
._1a{width:30.031275pt;}
._3{width:31.816772pt;}
._1f{width:33.006778pt;}
._f{width:34.287514pt;}
._12{width:35.201220pt;}
._c{width:36.471330pt;}
._a{width:42.114185pt;}
._1e{width:43.782306pt;}
._21{width:47.565451pt;}
._13{width:49.414496pt;}
._11{width:50.859757pt;}
._20{width:54.738523pt;}
._16{width:57.098055pt;}
._1b{width:65.992704pt;}
._23{width:82.155598pt;}
.fs2{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:91.921333pt;}
.y76{bottom:93.914667pt;}
.y4e{bottom:107.197333pt;}
.y75{bottom:109.190667pt;}
.y36{bottom:109.329333pt;}
.y98{bottom:124.466667pt;}
.y35{bottom:124.605333pt;}
.y4d{bottom:136.726667pt;}
.y97{bottom:139.742667pt;}
.y34{bottom:139.881333pt;}
.y74{bottom:143.497333pt;}
.y4c{bottom:152.002667pt;}
.y96{bottom:155.018667pt;}
.y33{bottom:155.157333pt;}
.y32{bottom:170.433333pt;}
.y95{bottom:171.853333pt;}
.y4b{bottom:180.625333pt;}
.y31{bottom:185.709333pt;}
.y94{bottom:187.129333pt;}
.y73{bottom:188.389333pt;}
.y4a{bottom:195.901333pt;}
.y93{bottom:202.405333pt;}
.y30{bottom:203.117333pt;}
.y72{bottom:203.665333pt;}
.y49{bottom:211.177333pt;}
.y92{bottom:217.681333pt;}
.y2f{bottom:218.393333pt;}
.y71{bottom:218.941333pt;}
.y91{bottom:232.957333pt;}
.y2e{bottom:233.669333pt;}
.y70{bottom:245.244000pt;}
.y48{bottom:246.257333pt;}
.y90{bottom:248.233333pt;}
.y2d{bottom:248.945333pt;}
.y6f{bottom:260.520000pt;}
.y8f{bottom:263.509333pt;}
.y2c{bottom:264.221333pt;}
.y6e{bottom:275.796000pt;}
.y2b{bottom:279.498667pt;}
.y47{bottom:280.009333pt;}
.y8e{bottom:280.344000pt;}
.y2a{bottom:294.774667pt;}
.y8d{bottom:295.620000pt;}
.y6d{bottom:302.233333pt;}
.y29{bottom:310.050667pt;}
.y8c{bottom:310.896000pt;}
.y8b{bottom:326.172000pt;}
.y28{bottom:327.457333pt;}
.y6c{bottom:328.669333pt;}
.y46{bottom:329.001333pt;}
.yb7{bottom:335.901333pt;}
.y8a{bottom:341.448000pt;}
.y27{bottom:342.733333pt;}
.y45{bottom:344.277333pt;}
.yb6{bottom:349.849333pt;}
.y6b{bottom:355.105333pt;}
.y89{bottom:356.724000pt;}
.y26{bottom:358.010667pt;}
.y44{bottom:359.553333pt;}
.yb5{bottom:363.797333pt;}
.y25{bottom:373.286667pt;}
.y43{bottom:374.829333pt;}
.yb4{bottom:377.744000pt;}
.y6a{bottom:381.409333pt;}
.y24{bottom:388.562667pt;}
.y42{bottom:391.012000pt;}
.yb3{bottom:391.692000pt;}
.y88{bottom:392.456000pt;}
.y69{bottom:396.685333pt;}
.y23{bottom:403.838667pt;}
.yb2{bottom:405.640000pt;}
.y41{bottom:406.288000pt;}
.y22{bottom:419.114667pt;}
.y40{bottom:421.564000pt;}
.y68{bottom:430.992000pt;}
.y21{bottom:434.390667pt;}
.y3f{bottom:436.840000pt;}
.y87{bottom:444.906667pt;}
.y20{bottom:449.666667pt;}
.y3e{bottom:453.022667pt;}
.y86{bottom:460.182667pt;}
.y1f{bottom:467.074667pt;}
.y3d{bottom:468.298667pt;}
.y85{bottom:475.458667pt;}
.y67{bottom:475.884000pt;}
.yb1{bottom:476.873333pt;}
.y1e{bottom:482.350667pt;}
.y3c{bottom:483.574667pt;}
.y84{bottom:490.734667pt;}
.y66{bottom:491.160000pt;}
.yb0{bottom:492.149333pt;}
.y1d{bottom:497.626667pt;}
.y3b{bottom:498.852000pt;}
.y65{bottom:506.436000pt;}
.yaf{bottom:507.425333pt;}
.y83{bottom:507.569333pt;}
.y1c{bottom:512.902667pt;}
.y3a{bottom:514.128000pt;}
.y64{bottom:521.712000pt;}
.yae{bottom:522.701333pt;}
.y82{bottom:522.845333pt;}
.y1b{bottom:528.178667pt;}
.y39{bottom:529.404000pt;}
.y63{bottom:537.121333pt;}
.y81{bottom:538.121333pt;}
.y1a{bottom:543.454667pt;}
.y38{bottom:544.680000pt;}
.y62{bottom:552.397333pt;}
.y80{bottom:553.397333pt;}
.yad{bottom:556.874667pt;}
.y61{bottom:567.673333pt;}
.y7f{bottom:568.673333pt;}
.y19{bottom:579.760000pt;}
.y60{bottom:582.949333pt;}
.yac{bottom:601.058667pt;}
.yab{bottom:616.336000pt;}
.y7e{bottom:616.621333pt;}
.y5f{bottom:617.256000pt;}
.y18{bottom:621.270667pt;}
.y7d{bottom:630.569333pt;}
.yaa{bottom:631.612000pt;}
.y17{bottom:635.217333pt;}
.y7c{bottom:644.517333pt;}
.ya9{bottom:646.888000pt;}
.y16{bottom:649.165333pt;}
.y7b{bottom:658.464000pt;}
.y5e{bottom:662.148000pt;}
.ya8{bottom:662.164000pt;}
.y15{bottom:663.113333pt;}
.y7a{bottom:672.412000pt;}
.y14{bottom:677.061333pt;}
.y5d{bottom:677.424000pt;}
.ya7{bottom:677.440000pt;}
.y79{bottom:686.360000pt;}
.y13{bottom:691.008000pt;}
.y5c{bottom:692.700000pt;}
.y78{bottom:700.308000pt;}
.y12{bottom:704.956000pt;}
.ya6{bottom:711.613333pt;}
.y77{bottom:714.254667pt;}
.y11{bottom:718.904000pt;}
.y5b{bottom:719.004000pt;}
.y10{bottom:732.852000pt;}
.y5a{bottom:734.280000pt;}
.yf{bottom:746.800000pt;}
.y59{bottom:749.556000pt;}
.ya5{bottom:755.797333pt;}
.ye{bottom:760.746667pt;}
.ya4{bottom:771.073333pt;}
.yd{bottom:774.694667pt;}
.y58{bottom:775.992000pt;}
.ya3{bottom:786.349333pt;}
.yc{bottom:788.642667pt;}
.y57{bottom:791.268000pt;}
.ya2{bottom:801.625333pt;}
.yb{bottom:802.590667pt;}
.ya{bottom:816.537333pt;}
.ya1{bottom:816.901333pt;}
.y56{bottom:817.570667pt;}
.y9{bottom:830.485333pt;}
.ya0{bottom:832.177333pt;}
.y55{bottom:832.980000pt;}
.y8{bottom:844.433333pt;}
.y9f{bottom:847.453333pt;}
.y54{bottom:848.257333pt;}
.y7{bottom:858.381333pt;}
.y9e{bottom:862.729333pt;}
.y53{bottom:863.533333pt;}
.y6{bottom:872.329333pt;}
.y9d{bottom:878.005333pt;}
.y52{bottom:878.809333pt;}
.y9c{bottom:893.281333pt;}
.y5{bottom:894.910667pt;}
.y9b{bottom:908.557333pt;}
.y4{bottom:908.858667pt;}
.y51{bottom:913.116000pt;}
.y3{bottom:922.806667pt;}
.y9a{bottom:923.833333pt;}
.y99{bottom:939.109333pt;}
.y2{bottom:954.686667pt;}
.y50{bottom:958.008000pt;}
.y1{bottom:973.284000pt;}
.y4f{bottom:1007.821333pt;}
.h4{height:33.522381pt;}
.h3{height:35.913421pt;}
.h5{height:37.512510pt;}
.h2{height:39.903534pt;}
.h1{height:44.696508pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:72.000000pt;}
.x1{left:72.926667pt;}
.x9{left:85.284000pt;}
.x1c{left:90.280000pt;}
.x14{left:93.254667pt;}
.x15{left:105.209333pt;}
.x13{left:114.609333pt;}
.x17{left:132.194667pt;}
.x16{left:135.156000pt;}
.x7{left:145.060000pt;}
.x6{left:157.344000pt;}
.x8{left:165.780000pt;}
.x2{left:250.000000pt;}
.x4{left:276.190667pt;}
.x5{left:334.442667pt;}
.x3{left:368.573333pt;}
.xd{left:422.685333pt;}
.xc{left:435.968000pt;}
.x10{left:440.250667pt;}
.x11{left:455.893333pt;}
.xe{left:459.452000pt;}
.xb{left:469.510667pt;}
.xf{left:501.676000pt;}
.x1b{left:506.772000pt;}
.x1a{left:515.144000pt;}
.x19{left:522.257333pt;}
.x18{left:537.228000pt;}
.x12{left:742.820000pt;}
}




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