
    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_c02b9ae5ecba8ce82253ed6a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_9ea917f7545385e2c33d926f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_cb03d249eced805630578b36.woff')format("woff");}.ff3{font-family:ff3;line-height:0.706000;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_6c65402190ee7d31413a0544.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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_ebd437aa7376a671ae002fa2.woff')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_5255903f8b8b6e71d94c1f79.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2546b69d75ee01cb9044ac88.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_867a87a650ef28ef2d8562f1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.664000;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_49304ee45beb5f1c149d8903.woff')format("woff");}.ff9{font-family:ff9;line-height:0.040000;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_a346ba843cd32767788fcf57.woff')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_c83ce506f0cb736d5fde2bb4.woff')format("woff");}.ffb{font-family:ffb;line-height:2.399000;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_3c354424915bab26df652d9a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.518000;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_51126fa6e2140570e92c1f8e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.683000;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_27aec0cc7097761c2ceb7777.woff')format("woff");}.ffe{font-family:ffe;line-height:0.921000;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_f47fce1653d9d1ebe5ee0f19.woff')format("woff");}.fff{font-family:fff;line-height:0.922000;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;}
.m2{transform:matrix(0.191506,-0.160703,0.160703,0.191506,0,0);-ms-transform:matrix(0.191506,-0.160703,0.160703,0.191506,0,0);-webkit-transform:matrix(0.191506,-0.160703,0.160703,0.191506,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-47.820000px;}
.v3{vertical-align:-26.130000px;}
.v8{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.690000px;}
.v1{vertical-align:24.678000px;}
.v6{vertical-align:35.268000px;}
.v7{vertical-align:71.730000px;}
.v5{vertical-align:119.550000px;}
.ls1e{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.002023px;}
.lsa{letter-spacing:0.002245px;}
.ls2c{letter-spacing:0.003031px;}
.ls9{letter-spacing:0.003181px;}
.ls35{letter-spacing:0.005607px;}
.ls15{letter-spacing:0.013774px;}
.ls3c{letter-spacing:0.016600px;}
.ls21{letter-spacing:0.017672px;}
.ls34{letter-spacing:0.028304px;}
.ls24{letter-spacing:1.176961px;}
.ls8{letter-spacing:1.673717px;}
.ls18{letter-spacing:2.130440px;}
.ls17{letter-spacing:2.130906px;}
.ls26{letter-spacing:2.131283px;}
.ls22{letter-spacing:2.139757px;}
.lsb{letter-spacing:2.144023px;}
.ls6{letter-spacing:2.151922px;}
.ls20{letter-spacing:2.157037px;}
.ls29{letter-spacing:2.158378px;}
.ls3{letter-spacing:2.984525px;}
.ls16{letter-spacing:2.986982px;}
.ls13{letter-spacing:3.500023px;}
.lsc{letter-spacing:4.342982px;}
.ls33{letter-spacing:6.291031px;}
.ls3b{letter-spacing:6.764108px;}
.ls2d{letter-spacing:9.274982px;}
.ls10{letter-spacing:9.922750px;}
.ls14{letter-spacing:9.963181px;}
.ls30{letter-spacing:9.982525px;}
.ls36{letter-spacing:11.121181px;}
.ls2{letter-spacing:13.270183px;}
.ls19{letter-spacing:16.059181px;}
.ls28{letter-spacing:16.268525px;}
.lse{letter-spacing:16.602538px;}
.lsd{letter-spacing:16.605181px;}
.ls1{letter-spacing:16.617617px;}
.ls2a{letter-spacing:19.427070px;}
.ls27{letter-spacing:19.584489px;}
.ls25{letter-spacing:19.586525px;}
.ls0{letter-spacing:19.592525px;}
.ls5{letter-spacing:19.725948px;}
.ls23{letter-spacing:19.905275px;}
.ls3a{letter-spacing:19.965050px;}
.ls4{letter-spacing:21.041011px;}
.ls7{letter-spacing:21.339889px;}
.ls2b{letter-spacing:21.578992px;}
.ls39{letter-spacing:24.887406px;}
.ls1c{letter-spacing:24.888606px;}
.ls2e{letter-spacing:24.909181px;}
.ls32{letter-spacing:26.594737px;}
.ls12{letter-spacing:26.595937px;}
.ls3d{letter-spacing:26.719693px;}
.ls1a{letter-spacing:59.775600px;}
.lsf{letter-spacing:61.449317px;}
.ls37{letter-spacing:84.642250px;}
.ls38{letter-spacing:84.702025px;}
.ls2f{letter-spacing:86.315966px;}
.ls31{letter-spacing:86.375742px;}
.ls1b{letter-spacing:87.989683px;}
.ls11{letter-spacing:89.663400px;}
.ls1d{letter-spacing:858.855821px;}
.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;}
}
.wsc{word-spacing:-38.937826px;}
.ws21{word-spacing:-28.955301px;}
.ws4a{word-spacing:-16.605662px;}
.ws2c{word-spacing:-16.605122px;}
.ws1d{word-spacing:-6.682912px;}
.ws1c{word-spacing:-6.623136px;}
.ws47{word-spacing:-1.243332px;}
.ws3d{word-spacing:-0.167372px;}
.ws9{word-spacing:-0.086077px;}
.ws1e{word-spacing:-0.059776px;}
.ws2a{word-spacing:-0.041843px;}
.ws2b{word-spacing:0.000000px;}
.ws32{word-spacing:0.011955px;}
.ws46{word-spacing:0.071731px;}
.ws11{word-spacing:0.191282px;}
.ws10{word-spacing:0.669487px;}
.ws3a{word-spacing:0.789038px;}
.wsf{word-spacing:1.267243px;}
.ws27{word-spacing:1.327018px;}
.ws2e{word-spacing:1.685672px;}
.ws18{word-spacing:1.745448px;}
.ws1a{word-spacing:1.805223px;}
.ws13{word-spacing:1.864999px;}
.ws41{word-spacing:2.044326px;}
.ws43{word-spacing:2.104101px;}
.ws12{word-spacing:2.223652px;}
.ws16{word-spacing:2.761633px;}
.ws34{word-spacing:2.821408px;}
.ws8{word-spacing:3.039610px;}
.ws17{word-spacing:3.060511px;}
.ws2f{word-spacing:3.120286px;}
.ws26{word-spacing:3.180062px;}
.wsb{word-spacing:3.299613px;}
.ws31{word-spacing:3.359389px;}
.wsa{word-spacing:3.419164px;}
.ws1f{word-spacing:3.538716px;}
.ws42{word-spacing:4.136472px;}
.ws39{word-spacing:4.375574px;}
.ws3f{word-spacing:5.152657px;}
.ws7{word-spacing:5.299142px;}
.ws3b{word-spacing:5.331984px;}
.ws44{word-spacing:5.511310px;}
.ws5{word-spacing:5.621933px;}
.ws23{word-spacing:5.929740px;}
.wse{word-spacing:6.109066px;}
.ws33{word-spacing:6.228618px;}
.ws3c{word-spacing:6.407944px;}
.ws4e{word-spacing:6.467720px;}
.ws40{word-spacing:6.706822px;}
.ws15{word-spacing:6.766598px;}
.ws4{word-spacing:6.859296px;}
.ws3{word-spacing:7.020691px;}
.ws36{word-spacing:7.185027px;}
.ws6{word-spacing:7.773869px;}
.ws1b{word-spacing:7.782783px;}
.ws2d{word-spacing:8.619642px;}
.wsd{word-spacing:8.798968px;}
.ws35{word-spacing:9.815154px;}
.ws29{word-spacing:9.934705px;}
.ws4d{word-spacing:10.173807px;}
.ws45{word-spacing:10.771563px;}
.ws50{word-spacing:12.026851px;}
.ws2{word-spacing:12.239136px;}
.ws20{word-spacing:12.325729px;}
.ws22{word-spacing:12.385504px;}
.ws52{word-spacing:12.564831px;}
.ws51{word-spacing:12.624607px;}
.ws3e{word-spacing:16.438290px;}
.ws25{word-spacing:19.845499px;}
.ws48{word-spacing:20.622582px;}
.ws19{word-spacing:21.100787px;}
.ws4f{word-spacing:21.280114px;}
.ws38{word-spacing:21.531171px;}
.ws30{word-spacing:22.714121px;}
.ws49{word-spacing:22.864121px;}
.ws28{word-spacing:22.870121px;}
.ws1{word-spacing:23.312640px;}
.ws24{word-spacing:25.468121px;}
.ws37{word-spacing:27.257674px;}
.ws4c{word-spacing:27.616327px;}
.ws0{word-spacing:31.091012px;}
.ws14{word-spacing:32.192873px;}
.ws4b{word-spacing:96.750773px;}
._1b{margin-left:-30.046568px;}
._0{margin-left:-5.371205px;}
._6{margin-left:-3.981082px;}
._1{margin-left:-2.788895px;}
._2{margin-left:-1.084590px;}
._3{width:1.936742px;}
._14{width:2.985963px;}
._19{width:4.452605px;}
._c{width:6.760908px;}
._11{width:9.982525px;}
._f{width:18.437983px;}
._9{width:19.619172px;}
._13{width:20.906011px;}
._a{width:22.003546px;}
._e{width:23.898311px;}
._8{width:25.070054px;}
._b{width:26.656618px;}
._17{width:28.342264px;}
._1a{width:29.887800px;}
._5{width:31.695880px;}
._18{width:32.757576px;}
._16{width:34.878362px;}
._4{width:36.412895px;}
._7{width:37.828897px;}
._15{width:41.976840px;}
._d{width:43.053661px;}
._12{width:53.061694px;}
._10{width:96.836850px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,128,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs6{font-size:59.773657px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y2c{bottom:63.168000px;}
.y2b{bottom:105.907500px;}
.y85{bottom:123.501000px;}
.y5d{bottom:128.533500px;}
.y2a{bottom:135.796500px;}
.y84{bottom:141.433500px;}
.y5c{bottom:146.466000px;}
.y29{bottom:155.617500px;}
.y5b{bottom:164.398500px;}
.y83{bottom:170.217000px;}
.y28{bottom:173.550000px;}
.y5a{bottom:182.331000px;}
.y27{bottom:191.482500px;}
.y82{bottom:198.999000px;}
.y59{bottom:200.263500px;}
.y26{bottom:209.415000px;}
.y58{bottom:218.197500px;}
.y25{bottom:227.347500px;}
.y81{bottom:227.782500px;}
.y57{bottom:236.130000px;}
.y24{bottom:245.281500px;}
.y56{bottom:254.062500px;}
.y80{bottom:256.564500px;}
.y23{bottom:263.214000px;}
.y55{bottom:271.995000px;}
.y7f{bottom:274.497000px;}
.y22{bottom:289.360500px;}
.y54{bottom:289.927500px;}
.y7e{bottom:303.279000px;}
.y53{bottom:307.860000px;}
.y21{bottom:319.248000px;}
.y7d{bottom:321.213000px;}
.y20{bottom:324.246000px;}
.y52{bottom:325.794000px;}
.y1f{bottom:342.178500px;}
.y7c{bottom:353.944500px;}
.y51{bottom:357.990000px;}
.y1e{bottom:360.111000px;}
.y1d{bottom:378.043500px;}
.y50{bottom:387.877500px;}
.y1c{bottom:395.977500px;}
.y7b{bottom:402.886500px;}
.y4f{bottom:407.820000px;}
.y1b{bottom:413.910000px;}
.y7a{bottom:420.819000px;}
.y4e{bottom:425.752500px;}
.y1a{bottom:431.842500px;}
.y79{bottom:438.751500px;}
.y4d{bottom:443.685000px;}
.y78{bottom:456.685500px;}
.y4c{bottom:461.617500px;}
.y19{bottom:464.574000px;}
.y77{bottom:474.618000px;}
.y4b{bottom:479.550000px;}
.y76{bottom:492.550500px;}
.y4a{bottom:497.484000px;}
.y75{bottom:510.483000px;}
.y18{bottom:513.972000px;}
.y49{bottom:515.416500px;}
.y74{bottom:528.415500px;}
.y17{bottom:531.904500px;}
.y48{bottom:533.349000px;}
.y73{bottom:546.348000px;}
.y16{bottom:549.837000px;}
.y47{bottom:551.281500px;}
.y15{bottom:567.769500px;}
.y46{bottom:569.214000px;}
.y72{bottom:579.079500px;}
.y14{bottom:585.703500px;}
.y45{bottom:587.146500px;}
.y13{bottom:603.636000px;}
.y44{bottom:605.080500px;}
.y12{bottom:621.568500px;}
.y43{bottom:623.013000px;}
.y71{bottom:628.023000px;}
.y11{bottom:639.501000px;}
.y42{bottom:655.744500px;}
.y10{bottom:657.433500px;}
.y70{bottom:658.137000px;}
.y6f{bottom:687.568500px;}
.yf{bottom:690.190500px;}
.y41{bottom:705.163500px;}
.y6e{bottom:717.457500px;}
.ye{bottom:722.946000px;}
.y6d{bottom:734.635500px;}
.y40{bottom:738.039000px;}
.yd{bottom:740.878500px;}
.y3f{bottom:770.916000px;}
.yc{bottom:773.610000px;}
.y6c{bottom:780.162000px;}
.y6b{bottom:798.094500px;}
.y6a{bottom:816.028500px;}
.y3e{bottom:818.653500px;}
.yb{bottom:823.008000px;}
.y69{bottom:833.961000px;}
.y3d{bottom:836.586000px;}
.ya{bottom:839.446500px;}
.y68{bottom:851.893500px;}
.y3c{bottom:854.520000px;}
.y9{bottom:855.885000px;}
.y8{bottom:872.323500px;}
.y3b{bottom:872.452500px;}
.y7{bottom:888.762000px;}
.y6{bottom:905.200500px;}
.y5{bottom:921.639000px;}
.y37{bottom:926.871000px;}
.y4{bottom:944.943000px;}
.y31{bottom:957.412500px;}
.y34{bottom:981.105000px;}
.y33{bottom:985.221000px;}
.y63{bottom:992.332500px;}
.y60{bottom:996.109500px;}
.y3{bottom:998.620500px;}
.y5e{bottom:1004.607000px;}
.y3a{bottom:1004.940000px;}
.y2f{bottom:1008.717000px;}
.y2d{bottom:1017.214500px;}
.y67{bottom:1031.829000px;}
.y2{bottom:1033.788000px;}
.y39{bottom:1045.051500px;}
.y62{bottom:1048.564500px;}
.y65{bottom:1052.238000px;}
.y1{bottom:1077.126000px;}
.y30{bottom:1077.711000px;}
.y36{bottom:1087.500000px;}
.y35{bottom:1091.616000px;}
.y61{bottom:1096.209000px;}
.y38{bottom:1102.410000px;}
.y64{bottom:1114.458000px;}
.y66{bottom:1124.662500px;}
.y32{bottom:1128.039000px;}
.y5f{bottom:1140.661500px;}
.y2e{bottom:1143.420000px;}
.h9{height:2.391024px;}
.hf{height:28.578632px;}
.h4{height:37.658880px;}
.h5{height:37.927872px;}
.he{height:42.141798px;}
.h10{height:44.830243px;}
.h7{height:44.831700px;}
.hb{height:45.080125px;}
.hc{height:45.086125px;}
.h3{height:51.216077px;}
.h8{height:52.461619px;}
.h11{height:52.467619px;}
.h6{height:60.254040px;}
.h2{height:73.027727px;}
.ha{height:121.941024px;}
.hd{height:121.947024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:108.000000px;}
.xc{left:130.416000px;}
.x6{left:145.360500px;}
.x1{left:151.275000px;}
.x5{left:166.095000px;}
.x2a{left:328.509000px;}
.x22{left:330.132000px;}
.x2b{left:339.508500px;}
.x11{left:341.803500px;}
.xd{left:344.661000px;}
.x2{left:349.596000px;}
.x8{left:352.000500px;}
.xe{left:356.001000px;}
.x3{left:380.854500px;}
.x21{left:381.885000px;}
.x2c{left:394.470000px;}
.x23{left:395.793000px;}
.xf{left:411.151500px;}
.x17{left:414.634500px;}
.x4{left:416.016000px;}
.x9{left:417.831000px;}
.x20{left:420.111000px;}
.x15{left:433.273500px;}
.x26{left:434.506500px;}
.x13{left:442.720500px;}
.x1a{left:455.158500px;}
.x1f{left:456.939000px;}
.xa{left:459.118500px;}
.x1c{left:462.126000px;}
.x1b{left:463.699500px;}
.x2e{left:475.957500px;}
.x27{left:478.164000px;}
.x19{left:488.578500px;}
.x16{left:498.316500px;}
.xb{left:499.729500px;}
.x1d{left:516.279000px;}
.x1e{left:517.398000px;}
.x10{left:522.408000px;}
.x12{left:525.265500px;}
.x24{left:538.170000px;}
.x2d{left:539.794500px;}
.x18{left:541.906500px;}
.x29{left:551.572500px;}
.x28{left:553.294500px;}
.x14{left:557.289000px;}
.x25{left:570.043500px;}
@media print{
.v2{vertical-align:-42.506667pt;}
.v3{vertical-align:-23.226667pt;}
.v8{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.280000pt;}
.v1{vertical-align:21.936000pt;}
.v6{vertical-align:31.349333pt;}
.v7{vertical-align:63.760000pt;}
.v5{vertical-align:106.266667pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.001799pt;}
.lsa{letter-spacing:0.001995pt;}
.ls2c{letter-spacing:0.002694pt;}
.ls9{letter-spacing:0.002827pt;}
.ls35{letter-spacing:0.004984pt;}
.ls15{letter-spacing:0.012243pt;}
.ls3c{letter-spacing:0.014755pt;}
.ls21{letter-spacing:0.015708pt;}
.ls34{letter-spacing:0.025159pt;}
.ls24{letter-spacing:1.046188pt;}
.ls8{letter-spacing:1.487748pt;}
.ls18{letter-spacing:1.893724pt;}
.ls17{letter-spacing:1.894139pt;}
.ls26{letter-spacing:1.894474pt;}
.ls22{letter-spacing:1.902006pt;}
.lsb{letter-spacing:1.905799pt;}
.ls6{letter-spacing:1.912819pt;}
.ls20{letter-spacing:1.917366pt;}
.ls29{letter-spacing:1.918559pt;}
.ls3{letter-spacing:2.652911pt;}
.ls16{letter-spacing:2.655095pt;}
.ls13{letter-spacing:3.111132pt;}
.lsc{letter-spacing:3.860428pt;}
.ls33{letter-spacing:5.592027pt;}
.ls3b{letter-spacing:6.012540pt;}
.ls2d{letter-spacing:8.244428pt;}
.ls10{letter-spacing:8.820222pt;}
.ls14{letter-spacing:8.856161pt;}
.ls30{letter-spacing:8.873356pt;}
.ls36{letter-spacing:9.885494pt;}
.ls2{letter-spacing:11.795718pt;}
.ls19{letter-spacing:14.274827pt;}
.ls28{letter-spacing:14.460911pt;}
.lse{letter-spacing:14.757812pt;}
.lsd{letter-spacing:14.760161pt;}
.ls1{letter-spacing:14.771215pt;}
.ls2a{letter-spacing:17.268507pt;}
.ls27{letter-spacing:17.408434pt;}
.ls25{letter-spacing:17.410245pt;}
.ls0{letter-spacing:17.415578pt;}
.ls5{letter-spacing:17.534176pt;}
.ls23{letter-spacing:17.693578pt;}
.ls3a{letter-spacing:17.746711pt;}
.ls4{letter-spacing:18.703121pt;}
.ls7{letter-spacing:18.968790pt;}
.ls2b{letter-spacing:19.181326pt;}
.ls39{letter-spacing:22.122139pt;}
.ls1c{letter-spacing:22.123206pt;}
.ls2e{letter-spacing:22.141494pt;}
.ls32{letter-spacing:23.639766pt;}
.ls12{letter-spacing:23.640833pt;}
.ls3d{letter-spacing:23.750838pt;}
.ls1a{letter-spacing:53.133867pt;}
.lsf{letter-spacing:54.621615pt;}
.ls37{letter-spacing:75.237555pt;}
.ls38{letter-spacing:75.290689pt;}
.ls2f{letter-spacing:76.725303pt;}
.ls31{letter-spacing:76.778437pt;}
.ls1b{letter-spacing:78.213052pt;}
.ls11{letter-spacing:79.700800pt;}
.ls1d{letter-spacing:763.427396pt;}
.wsc{word-spacing:-34.611401pt;}
.ws21{word-spacing:-25.738045pt;}
.ws4a{word-spacing:-14.760588pt;}
.ws2c{word-spacing:-14.760108pt;}
.ws1d{word-spacing:-5.940366pt;}
.ws1c{word-spacing:-5.887232pt;}
.ws47{word-spacing:-1.105184pt;}
.ws3d{word-spacing:-0.148775pt;}
.ws9{word-spacing:-0.076513pt;}
.ws1e{word-spacing:-0.053134pt;}
.ws2a{word-spacing:-0.037194pt;}
.ws2b{word-spacing:0.000000pt;}
.ws32{word-spacing:0.010627pt;}
.ws46{word-spacing:0.063761pt;}
.ws11{word-spacing:0.170028pt;}
.ws10{word-spacing:0.595099pt;}
.ws3a{word-spacing:0.701367pt;}
.wsf{word-spacing:1.126438pt;}
.ws27{word-spacing:1.179572pt;}
.ws2e{word-spacing:1.498375pt;}
.ws18{word-spacing:1.551509pt;}
.ws1a{word-spacing:1.604643pt;}
.ws13{word-spacing:1.657777pt;}
.ws41{word-spacing:1.817178pt;}
.ws43{word-spacing:1.870312pt;}
.ws12{word-spacing:1.976580pt;}
.ws16{word-spacing:2.454785pt;}
.ws34{word-spacing:2.507919pt;}
.ws8{word-spacing:2.701875pt;}
.ws17{word-spacing:2.720454pt;}
.ws2f{word-spacing:2.773588pt;}
.ws26{word-spacing:2.826722pt;}
.wsb{word-spacing:2.932989pt;}
.ws31{word-spacing:2.986123pt;}
.wsa{word-spacing:3.039257pt;}
.ws1f{word-spacing:3.145525pt;}
.ws42{word-spacing:3.676864pt;}
.ws39{word-spacing:3.889399pt;}
.ws3f{word-spacing:4.580139pt;}
.ws7{word-spacing:4.710349pt;}
.ws3b{word-spacing:4.739541pt;}
.ws44{word-spacing:4.898943pt;}
.ws5{word-spacing:4.997274pt;}
.ws23{word-spacing:5.270880pt;}
.wse{word-spacing:5.430281pt;}
.ws33{word-spacing:5.536549pt;}
.ws3c{word-spacing:5.695951pt;}
.ws4e{word-spacing:5.749084pt;}
.ws40{word-spacing:5.961620pt;}
.ws15{word-spacing:6.014754pt;}
.ws4{word-spacing:6.097152pt;}
.ws3{word-spacing:6.240614pt;}
.ws36{word-spacing:6.386691pt;}
.ws6{word-spacing:6.910106pt;}
.ws1b{word-spacing:6.918029pt;}
.ws2d{word-spacing:7.661904pt;}
.wsd{word-spacing:7.821305pt;}
.ws35{word-spacing:8.724581pt;}
.ws29{word-spacing:8.830849pt;}
.ws4d{word-spacing:9.043384pt;}
.ws45{word-spacing:9.574723pt;}
.ws50{word-spacing:10.690534pt;}
.ws2{word-spacing:10.879232pt;}
.ws20{word-spacing:10.956203pt;}
.ws22{word-spacing:11.009337pt;}
.ws52{word-spacing:11.168739pt;}
.ws51{word-spacing:11.221873pt;}
.ws3e{word-spacing:14.611813pt;}
.ws25{word-spacing:17.640444pt;}
.ws48{word-spacing:18.331184pt;}
.ws19{word-spacing:18.756255pt;}
.ws4f{word-spacing:18.915657pt;}
.ws38{word-spacing:19.138819pt;}
.ws30{word-spacing:20.190329pt;}
.ws49{word-spacing:20.323663pt;}
.ws28{word-spacing:20.328996pt;}
.ws1{word-spacing:20.722347pt;}
.ws24{word-spacing:22.638329pt;}
.ws37{word-spacing:24.229043pt;}
.ws4c{word-spacing:24.547846pt;}
.ws0{word-spacing:27.636455pt;}
.ws14{word-spacing:28.615887pt;}
.ws4b{word-spacing:86.000687pt;}
._1b{margin-left:-26.708061pt;}
._0{margin-left:-4.774404pt;}
._6{margin-left:-3.538739pt;}
._1{margin-left:-2.479018pt;}
._2{margin-left:-0.964080pt;}
._3{width:1.721549pt;}
._14{width:2.654190pt;}
._19{width:3.957871pt;}
._c{width:6.009696pt;}
._11{width:8.873356pt;}
._f{width:16.389318pt;}
._9{width:17.439264pt;}
._13{width:18.583121pt;}
._a{width:19.558707pt;}
._e{width:21.242943pt;}
._8{width:22.284493pt;}
._b{width:23.694771pt;}
._17{width:25.193123pt;}
._1a{width:26.566933pt;}
._5{width:28.174115pt;}
._18{width:29.117845pt;}
._16{width:31.002989pt;}
._4{width:32.367018pt;}
._7{width:33.625686pt;}
._15{width:37.312747pt;}
._d{width:38.269921pt;}
._12{width:47.165951pt;}
._10{width:86.077200pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs6{font-size:53.132139pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:56.149333pt;}
.y2b{bottom:94.140000pt;}
.y85{bottom:109.778667pt;}
.y5d{bottom:114.252000pt;}
.y2a{bottom:120.708000pt;}
.y84{bottom:125.718667pt;}
.y5c{bottom:130.192000pt;}
.y29{bottom:138.326667pt;}
.y5b{bottom:146.132000pt;}
.y83{bottom:151.304000pt;}
.y28{bottom:154.266667pt;}
.y5a{bottom:162.072000pt;}
.y27{bottom:170.206667pt;}
.y82{bottom:176.888000pt;}
.y59{bottom:178.012000pt;}
.y26{bottom:186.146667pt;}
.y58{bottom:193.953333pt;}
.y25{bottom:202.086667pt;}
.y81{bottom:202.473333pt;}
.y57{bottom:209.893333pt;}
.y24{bottom:218.028000pt;}
.y56{bottom:225.833333pt;}
.y80{bottom:228.057333pt;}
.y23{bottom:233.968000pt;}
.y55{bottom:241.773333pt;}
.y7f{bottom:243.997333pt;}
.y22{bottom:257.209333pt;}
.y54{bottom:257.713333pt;}
.y7e{bottom:269.581333pt;}
.y53{bottom:273.653333pt;}
.y21{bottom:283.776000pt;}
.y7d{bottom:285.522667pt;}
.y20{bottom:288.218667pt;}
.y52{bottom:289.594667pt;}
.y1f{bottom:304.158667pt;}
.y7c{bottom:314.617333pt;}
.y51{bottom:318.213333pt;}
.y1e{bottom:320.098667pt;}
.y1d{bottom:336.038667pt;}
.y50{bottom:344.780000pt;}
.y1c{bottom:351.980000pt;}
.y7b{bottom:358.121333pt;}
.y4f{bottom:362.506667pt;}
.y1b{bottom:367.920000pt;}
.y7a{bottom:374.061333pt;}
.y4e{bottom:378.446667pt;}
.y1a{bottom:383.860000pt;}
.y79{bottom:390.001333pt;}
.y4d{bottom:394.386667pt;}
.y78{bottom:405.942667pt;}
.y4c{bottom:410.326667pt;}
.y19{bottom:412.954667pt;}
.y77{bottom:421.882667pt;}
.y4b{bottom:426.266667pt;}
.y76{bottom:437.822667pt;}
.y4a{bottom:442.208000pt;}
.y75{bottom:453.762667pt;}
.y18{bottom:456.864000pt;}
.y49{bottom:458.148000pt;}
.y74{bottom:469.702667pt;}
.y17{bottom:472.804000pt;}
.y48{bottom:474.088000pt;}
.y73{bottom:485.642667pt;}
.y16{bottom:488.744000pt;}
.y47{bottom:490.028000pt;}
.y15{bottom:504.684000pt;}
.y46{bottom:505.968000pt;}
.y72{bottom:514.737333pt;}
.y14{bottom:520.625333pt;}
.y45{bottom:521.908000pt;}
.y13{bottom:536.565333pt;}
.y44{bottom:537.849333pt;}
.y12{bottom:552.505333pt;}
.y43{bottom:553.789333pt;}
.y71{bottom:558.242667pt;}
.y11{bottom:568.445333pt;}
.y42{bottom:582.884000pt;}
.y10{bottom:584.385333pt;}
.y70{bottom:585.010667pt;}
.y6f{bottom:611.172000pt;}
.yf{bottom:613.502667pt;}
.y41{bottom:626.812000pt;}
.y6e{bottom:637.740000pt;}
.ye{bottom:642.618667pt;}
.y6d{bottom:653.009333pt;}
.y40{bottom:656.034667pt;}
.yd{bottom:658.558667pt;}
.y3f{bottom:685.258667pt;}
.yc{bottom:687.653333pt;}
.y6c{bottom:693.477333pt;}
.y6b{bottom:709.417333pt;}
.y6a{bottom:725.358667pt;}
.y3e{bottom:727.692000pt;}
.yb{bottom:731.562667pt;}
.y69{bottom:741.298667pt;}
.y3d{bottom:743.632000pt;}
.ya{bottom:746.174667pt;}
.y68{bottom:757.238667pt;}
.y3c{bottom:759.573333pt;}
.y9{bottom:760.786667pt;}
.y8{bottom:775.398667pt;}
.y3b{bottom:775.513333pt;}
.y7{bottom:790.010667pt;}
.y6{bottom:804.622667pt;}
.y5{bottom:819.234667pt;}
.y37{bottom:823.885333pt;}
.y4{bottom:839.949333pt;}
.y31{bottom:851.033333pt;}
.y34{bottom:872.093333pt;}
.y33{bottom:875.752000pt;}
.y63{bottom:882.073333pt;}
.y60{bottom:885.430667pt;}
.y3{bottom:887.662667pt;}
.y5e{bottom:892.984000pt;}
.y3a{bottom:893.280000pt;}
.y2f{bottom:896.637333pt;}
.y2d{bottom:904.190667pt;}
.y67{bottom:917.181333pt;}
.y2{bottom:918.922667pt;}
.y39{bottom:928.934667pt;}
.y62{bottom:932.057333pt;}
.y65{bottom:935.322667pt;}
.y1{bottom:957.445333pt;}
.y30{bottom:957.965333pt;}
.y36{bottom:966.666667pt;}
.y35{bottom:970.325333pt;}
.y61{bottom:974.408000pt;}
.y38{bottom:979.920000pt;}
.y64{bottom:990.629333pt;}
.y66{bottom:999.700000pt;}
.y32{bottom:1002.701333pt;}
.y5f{bottom:1013.921333pt;}
.y2e{bottom:1016.373333pt;}
.h9{height:2.125355pt;}
.hf{height:25.403229pt;}
.h4{height:33.474560pt;}
.h5{height:33.713664pt;}
.he{height:37.459376pt;}
.h10{height:39.849105pt;}
.h7{height:39.850400pt;}
.hb{height:40.071222pt;}
.hc{height:40.076556pt;}
.h3{height:45.525402pt;}
.h8{height:46.632550pt;}
.h11{height:46.637884pt;}
.h6{height:53.559147pt;}
.h2{height:64.913535pt;}
.ha{height:108.392021pt;}
.hd{height:108.397355pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.000000pt;}
.xc{left:115.925333pt;}
.x6{left:129.209333pt;}
.x1{left:134.466667pt;}
.x5{left:147.640000pt;}
.x2a{left:292.008000pt;}
.x22{left:293.450667pt;}
.x2b{left:301.785333pt;}
.x11{left:303.825333pt;}
.xd{left:306.365333pt;}
.x2{left:310.752000pt;}
.x8{left:312.889333pt;}
.xe{left:316.445333pt;}
.x3{left:338.537333pt;}
.x21{left:339.453333pt;}
.x2c{left:350.640000pt;}
.x23{left:351.816000pt;}
.xf{left:365.468000pt;}
.x17{left:368.564000pt;}
.x4{left:369.792000pt;}
.x9{left:371.405333pt;}
.x20{left:373.432000pt;}
.x15{left:385.132000pt;}
.x26{left:386.228000pt;}
.x13{left:393.529333pt;}
.x1a{left:404.585333pt;}
.x1f{left:406.168000pt;}
.xa{left:408.105333pt;}
.x1c{left:410.778667pt;}
.x1b{left:412.177333pt;}
.x2e{left:423.073333pt;}
.x27{left:425.034667pt;}
.x19{left:434.292000pt;}
.x16{left:442.948000pt;}
.xb{left:444.204000pt;}
.x1d{left:458.914667pt;}
.x1e{left:459.909333pt;}
.x10{left:464.362667pt;}
.x12{left:466.902667pt;}
.x24{left:478.373333pt;}
.x2d{left:479.817333pt;}
.x18{left:481.694667pt;}
.x29{left:490.286667pt;}
.x28{left:491.817333pt;}
.x14{left:495.368000pt;}
.x25{left:506.705333pt;}
}




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