
    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_bf52279ba734152fcdcac0e4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_543a94a88ed3958ffb1b3115.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_02fdb7089f5084be5b4c5b03.woff')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_7c5ccb56f8f65546c68b3ec1.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4d091df3372a9268c58f05c9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.923000;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;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:26.099996px;}
.ls2{letter-spacing:34.073996px;}
.ls3{letter-spacing:34.943996px;}
.ls1{letter-spacing:35.117518px;}
.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;}
}
.ws82{word-spacing:-35.865600px;}
.ws26{word-spacing:-35.119596px;}
.ws43{word-spacing:-19.338732px;}
.wsb{word-spacing:-19.267000px;}
.ws5a{word-spacing:-19.195269px;}
.ws4d{word-spacing:-18.908344px;}
.ws86{word-spacing:-18.406226px;}
.ws6a{word-spacing:-18.334495px;}
.ws53{word-spacing:-18.047570px;}
.ws74{word-spacing:-17.186796px;}
.ws5d{word-spacing:-16.899871px;}
.ws87{word-spacing:-16.856832px;}
.ws68{word-spacing:-16.469484px;}
.ws4c{word-spacing:-16.397752px;}
.ws37{word-spacing:-16.110828px;}
.ws28{word-spacing:-16.039096px;}
.ws1{word-spacing:-15.895634px;}
.ws73{word-spacing:-15.780864px;}
.ws12{word-spacing:-15.608709px;}
.ws4a{word-spacing:-15.536978px;}
.wsf{word-spacing:-15.178322px;}
.ws58{word-spacing:-14.891397px;}
.ws6b{word-spacing:-14.819666px;}
.ws80{word-spacing:-14.776627px;}
.ws3a{word-spacing:-14.747935px;}
.ws19{word-spacing:-14.532741px;}
.ws66{word-spacing:-14.461010px;}
.ws20{word-spacing:-14.102354px;}
.ws5c{word-spacing:-13.815429px;}
.ws11{word-spacing:-13.743698px;}
.ws9{word-spacing:-13.671967px;}
.ws2a{word-spacing:-13.313311px;}
.ws38{word-spacing:-13.169848px;}
.ws90{word-spacing:-13.055078px;}
.ws1a{word-spacing:-12.954655px;}
.ws1e{word-spacing:-12.882924px;}
.ws65{word-spacing:-12.667730px;}
.ws71{word-spacing:-12.583421px;}
.wsc{word-spacing:-12.524268px;}
.ws50{word-spacing:-12.452536px;}
.ws63{word-spacing:-12.380805px;}
.ws30{word-spacing:-12.309074px;}
.ws69{word-spacing:-12.022149px;}
.wsa{word-spacing:-11.735224px;}
.ws7e{word-spacing:-11.680299px;}
.ws23{word-spacing:-11.663493px;}
.ws72{word-spacing:-11.548723px;}
.ws46{word-spacing:-11.448300px;}
.ws25{word-spacing:-11.304837px;}
.ws13{word-spacing:-11.233106px;}
.ws1d{word-spacing:-11.161375px;}
.ws3c{word-spacing:-11.017912px;}
.ws89{word-spacing:-10.946181px;}
.ws56{word-spacing:-10.874450px;}
.ws1f{word-spacing:-10.802719px;}
.ws7f{word-spacing:-10.759680px;}
.ws45{word-spacing:-10.730988px;}
.ws2e{word-spacing:-10.659256px;}
.ws81{word-spacing:-10.329293px;}
.ws8a{word-spacing:-10.042368px;}
.ws2{word-spacing:-10.013676px;}
.ws29{word-spacing:-9.798482px;}
.ws5e{word-spacing:-9.726751px;}
.ws4{word-spacing:-9.655020px;}
.ws3b{word-spacing:-9.583288px;}
.ws15{word-spacing:-9.511557px;}
.ws7b{word-spacing:-9.468518px;}
.ws76{word-spacing:-9.396787px;}
.ws14{word-spacing:-9.224632px;}
.ws1c{word-spacing:-9.081170px;}
.ws6f{word-spacing:-9.038131px;}
.ws44{word-spacing:-9.009439px;}
.ws22{word-spacing:-8.937708px;}
.ws6c{word-spacing:-8.722514px;}
.ws61{word-spacing:-8.507320px;}
.ws4b{word-spacing:-8.435589px;}
.ws10{word-spacing:-8.363858px;}
.ws6{word-spacing:-8.292127px;}
.ws77{word-spacing:-8.249088px;}
.ws62{word-spacing:-8.005202px;}
.ws67{word-spacing:-7.861740px;}
.ws64{word-spacing:-7.790008px;}
.ws3e{word-spacing:-7.718277px;}
.ws2f{word-spacing:-7.646546px;}
.ws17{word-spacing:-7.574815px;}
.ws48{word-spacing:-7.503084px;}
.ws49{word-spacing:-7.431352px;}
.ws2d{word-spacing:-7.216159px;}
.ws2b{word-spacing:-7.144428px;}
.ws8f{word-spacing:-6.957926px;}
.ws78{word-spacing:-6.714040px;}
.ws85{word-spacing:-6.570578px;}
.ws16{word-spacing:-6.498847px;}
.ws3{word-spacing:-5.996728px;}
.ws31{word-spacing:-5.924997px;}
.ws8{word-spacing:-5.853266px;}
.ws5{word-spacing:-5.781535px;}
.ws21{word-spacing:-5.638072px;}
.ws5b{word-spacing:-5.566341px;}
.ws88{word-spacing:-5.523302px;}
.ws2c{word-spacing:-5.425559px;}
.ws60{word-spacing:-5.279416px;}
.ws34{word-spacing:-5.207685px;}
.ws8b{word-spacing:-5.135954px;}
.ws54{word-spacing:-4.992492px;}
.ws3f{word-spacing:-4.920760px;}
.ws8e{word-spacing:-4.849029px;}
.ws7d{word-spacing:-4.705567px;}
.ws8c{word-spacing:-4.662528px;}
.ws27{word-spacing:-4.562104px;}
.ws8d{word-spacing:-4.447334px;}
.ws33{word-spacing:-4.418642px;}
.ws79{word-spacing:-4.346911px;}
.ws47{word-spacing:-3.988255px;}
.ws83{word-spacing:-3.955254px;}
.ws7a{word-spacing:-3.945216px;}
.ws5f{word-spacing:-3.916524px;}
.ws84{word-spacing:-3.658291px;}
.wsd{word-spacing:-3.055749px;}
.ws6d{word-spacing:-2.768824px;}
.ws6e{word-spacing:-2.510592px;}
.ws24{word-spacing:-2.338437px;}
.ws7{word-spacing:-1.836319px;}
.ws32{word-spacing:-1.621125px;}
.ws41{word-spacing:-1.047276px;}
.ws75{word-spacing:-0.977126px;}
.ws42{word-spacing:-0.186501px;}
.ws39{word-spacing:-0.071731px;}
.ws35{word-spacing:-0.002077px;}
.ws1b{word-spacing:0.000000px;}
.ws4f{word-spacing:0.028692px;}
.ws7c{word-spacing:0.172155px;}
.ws51{word-spacing:1.032929px;}
.ws57{word-spacing:1.606779px;}
.ws70{word-spacing:1.678510px;}
.ws55{word-spacing:7.488737px;}
.ws59{word-spacing:7.775662px;}
.ws36{word-spacing:21.949747px;}
.ws40{word-spacing:26.827469px;}
.ws3d{word-spacing:31.418266px;}
.ws18{word-spacing:32.192873px;}
.ws0{word-spacing:38.631358px;}
.ws4e{word-spacing:72.577753px;}
.wse{word-spacing:116.100658px;}
.ws52{word-spacing:171.566809px;}
._16{margin-left:-10.759650px;}
._1f{margin-left:-8.777046px;}
._12{margin-left:-5.881958px;}
._17{margin-left:-4.232141px;}
._2{margin-left:-3.202064px;}
._3{margin-left:-1.721549px;}
._4{width:1.936742px;}
._1{width:3.202064px;}
._2e{width:5.915272px;}
._1d{width:17.072026px;}
._2f{width:18.937037px;}
._10{width:19.987165px;}
._2c{width:21.519360px;}
._14{width:23.384371px;}
._9{width:24.434500px;}
._c{width:26.658167px;}
._2d{width:27.877597px;}
._b{width:29.338061px;}
._f{width:30.414029px;}
._5{width:31.535888px;}
._1e{width:32.781158px;}
._a{width:34.287514px;}
._1a{width:35.743336px;}
._7{width:37.587149px;}
._11{width:39.093504px;}
._2b{width:42.177946px;}
._18{width:43.182182px;}
._30{width:44.410994px;}
._19{width:45.764506px;}
._d{width:46.768742px;}
._6{width:48.275098px;}
._2a{width:50.068378px;}
._1b{width:52.360527px;}
._1c{width:54.011998px;}
._8{width:61.734724px;}
._22{width:71.550467px;}
._e{width:96.836850px;}
._0{width:116.203950px;}
._25{width:189.562637px;}
._28{width:206.686404px;}
._15{width:326.632573px;}
._24{width:411.183352px;}
._23{width:428.764669px;}
._26{width:520.229123px;}
._20{width:569.207186px;}
._21{width:816.340151px;}
._13{width:1077.916470px;}
._27{width:1341.504380px;}
._29{width:1563.885446px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.fs3{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y20{bottom:85.039500px;}
.y6c{bottom:129.871500px;}
.yaa{bottom:141.783000px;}
.y2e{bottom:142.494000px;}
.y4c{bottom:149.716500px;}
.y6b{bottom:156.762000px;}
.y1f{bottom:159.334500px;}
.ycb{bottom:161.676000px;}
.ya9{bottom:168.675000px;}
.y4b{bottom:176.607000px;}
.yca{bottom:183.345000px;}
.y2d{bottom:184.329000px;}
.y1e{bottom:186.225000px;}
.ya8{bottom:195.565500px;}
.y6a{bottom:201.411000px;}
.y4a{bottom:203.497500px;}
.yc9{bottom:205.014000px;}
.y2c{bottom:211.219500px;}
.ya7{bottom:222.456000px;}
.y1d{bottom:224.697000px;}
.yc8{bottom:226.683000px;}
.y49{bottom:230.388000px;}
.y2b{bottom:238.110000px;}
.yc7{bottom:248.352000px;}
.y2a{bottom:265.002000px;}
.y69{bottom:267.892500px;}
.ya6{bottom:268.774500px;}
.y48{bottom:276.706500px;}
.y1c{bottom:283.173000px;}
.yc6{bottom:284.964000px;}
.y68{bottom:294.783000px;}
.y8a{bottom:302.985000px;}
.y29{bottom:303.100500px;}
.y47{bottom:303.597000px;}
.yc5{bottom:306.633000px;}
.ya5{bottom:306.873000px;}
.y1b{bottom:310.063500px;}
.y67{bottom:321.673500px;}
.y28{bottom:329.991000px;}
.y46{bottom:330.487500px;}
.ya4{bottom:333.763500px;}
.y1a{bottom:336.954000px;}
.y89{bottom:339.970500px;}
.yc4{bottom:343.245000px;}
.y66{bottom:348.564000px;}
.y27{bottom:356.881500px;}
.y45{bottom:357.379500px;}
.y88{bottom:362.238000px;}
.y19{bottom:363.846000px;}
.yc3{bottom:364.914000px;}
.yab{bottom:365.409000px;}
.ya3{bottom:371.862000px;}
.y65{bottom:375.456000px;}
.y26{bottom:383.772000px;}
.y44{bottom:384.270000px;}
.y87{bottom:384.504000px;}
.yc2{bottom:386.583000px;}
.y18{bottom:390.736500px;}
.y64{bottom:402.346500px;}
.y86{bottom:406.173000px;}
.y43{bottom:411.160500px;}
.y17{bottom:417.627000px;}
.ya2{bottom:418.180500px;}
.y25{bottom:421.872000px;}
.yc1{bottom:423.196500px;}
.y85{bottom:427.842000px;}
.y63{bottom:429.237000px;}
.y42{bottom:438.051000px;}
.y16{bottom:444.517500px;}
.yc0{bottom:444.864000px;}
.ya1{bottom:445.071000px;}
.y24{bottom:448.762500px;}
.y84{bottom:449.509500px;}
.y62{bottom:456.127500px;}
.y41{bottom:464.943000px;}
.ybf{bottom:466.533000px;}
.y15{bottom:471.408000px;}
.y83{bottom:471.777000px;}
.ya0{bottom:471.963000px;}
.y61{bottom:483.019500px;}
.ybe{bottom:488.202000px;}
.y40{bottom:491.833500px;}
.y82{bottom:493.444500px;}
.y23{bottom:495.081000px;}
.y14{bottom:498.300000px;}
.y9f{bottom:498.853500px;}
.ybd{bottom:509.871000px;}
.y60{bottom:509.910000px;}
.y81{bottom:515.712000px;}
.y22{bottom:521.971500px;}
.y13{bottom:525.190500px;}
.y9e{bottom:525.744000px;}
.y3f{bottom:530.305500px;}
.y5f{bottom:536.800500px;}
.y80{bottom:537.381000px;}
.ybc{bottom:546.483000px;}
.y9d{bottom:552.634500px;}
.y7f{bottom:559.048500px;}
.y5e{bottom:563.691000px;}
.ybb{bottom:568.152000px;}
.y12{bottom:569.839500px;}
.y21{bottom:574.275000px;}
.y9c{bottom:579.526500px;}
.y7e{bottom:580.717500px;}
.y3e{bottom:588.781500px;}
.yba{bottom:589.821000px;}
.y5d{bottom:599.611500px;}
.y7d{bottom:602.386500px;}
.y9b{bottom:606.417000px;}
.y3d{bottom:615.672000px;}
.y7c{bottom:624.652500px;}
.yb9{bottom:626.433000px;}
.y5c{bottom:626.503500px;}
.y9a{bottom:633.307500px;}
.y11{bottom:637.663500px;}
.y3c{bottom:642.562500px;}
.y7b{bottom:646.321500px;}
.yb8{bottom:648.102000px;}
.y5b{bottom:657.697500px;}
.y99{bottom:660.198000px;}
.y10{bottom:664.554000px;}
.y7a{bottom:667.990500px;}
.y3b{bottom:669.453000px;}
.yb7{bottom:669.771000px;}
.y5a{bottom:684.589500px;}
.y98{bottom:687.088500px;}
.y79{bottom:689.659500px;}
.yf{bottom:691.444500px;}
.yb6{bottom:706.384500px;}
.y3a{bottom:707.926500px;}
.y78{bottom:711.328500px;}
.y59{bottom:711.480000px;}
.y97{bottom:713.980500px;}
.ye{bottom:718.336500px;}
.yb5{bottom:728.052000px;}
.y77{bottom:732.997500px;}
.y96{bottom:740.871000px;}
.y58{bottom:742.675500px;}
.yd{bottom:745.227000px;}
.yb4{bottom:749.721000px;}
.y76{bottom:754.665000px;}
.y95{bottom:767.761500px;}
.y57{bottom:769.566000px;}
.yb3{bottom:771.390000px;}
.yc{bottom:772.117500px;}
.y75{bottom:776.932500px;}
.y39{bottom:787.323000px;}
.yb2{bottom:793.059000px;}
.y94{bottom:794.652000px;}
.y74{bottom:798.600000px;}
.yb{bottom:799.008000px;}
.y56{bottom:808.801500px;}
.yb1{bottom:814.728000px;}
.y73{bottom:820.269000px;}
.y93{bottom:821.544000px;}
.y38{bottom:823.212000px;}
.ya{bottom:825.898500px;}
.y72{bottom:841.938000px;}
.y37{bottom:844.881000px;}
.y55{bottom:845.601000px;}
.y92{bottom:848.434500px;}
.yb0{bottom:851.340000px;}
.y9{bottom:852.790500px;}
.y71{bottom:863.607000px;}
.y36{bottom:867.148500px;}
.y54{bottom:872.491500px;}
.yaf{bottom:873.009000px;}
.y91{bottom:875.325000px;}
.y8{bottom:879.681000px;}
.y70{bottom:885.276000px;}
.y35{bottom:888.816000px;}
.yae{bottom:894.678000px;}
.y90{bottom:902.215500px;}
.y7{bottom:906.571500px;}
.y6f{bottom:906.945000px;}
.y53{bottom:909.291000px;}
.yad{bottom:916.347000px;}
.y6e{bottom:928.612500px;}
.y8f{bottom:929.107500px;}
.y34{bottom:932.752500px;}
.y6{bottom:933.462000px;}
.y52{bottom:936.181500px;}
.y6d{bottom:950.880000px;}
.y33{bottom:954.420000px;}
.y8e{bottom:955.998000px;}
.y5{bottom:960.354000px;}
.y51{bottom:972.981000px;}
.y32{bottom:976.089000px;}
.y8d{bottom:982.888500px;}
.y4{bottom:987.244500px;}
.yac{bottom:997.791000px;}
.y31{bottom:998.356500px;}
.y50{bottom:999.871500px;}
.y8c{bottom:1009.779000px;}
.y3{bottom:1014.135000px;}
.y4f{bottom:1026.762000px;}
.y8b{bottom:1036.671000px;}
.y30{bottom:1038.529500px;}
.y2{bottom:1058.784000px;}
.y4e{bottom:1063.561500px;}
.y2f{bottom:1084.848000px;}
.y4d{bottom:1090.452000px;}
.y1{bottom:1117.342500px;}
.h6{height:51.287808px;}
.h3{height:53.798400px;}
.h4{height:61.200889px;}
.h2{height:73.440896px;}
.h5{height:105.741769px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299000px;}
.x8{left:115.266000px;}
.x5{left:127.759500px;}
.x2{left:132.637500px;}
.x6{left:150.196500px;}
.xf{left:153.417000px;}
.x7{left:166.389000px;}
.xb{left:188.826000px;}
.xe{left:193.947000px;}
.xa{left:227.064000px;}
.x4{left:267.480000px;}
.xc{left:317.076000px;}
.x10{left:342.154500px;}
.x9{left:430.836000px;}
.x3{left:442.066500px;}
.xd{left:590.127000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:23.199997pt;}
.ls2{letter-spacing:30.287997pt;}
.ls3{letter-spacing:31.061330pt;}
.ls1{letter-spacing:31.215572pt;}
.ws82{word-spacing:-31.880533pt;}
.ws26{word-spacing:-31.217418pt;}
.ws43{word-spacing:-17.189984pt;}
.wsb{word-spacing:-17.126223pt;}
.ws5a{word-spacing:-17.062461pt;}
.ws4d{word-spacing:-16.807417pt;}
.ws86{word-spacing:-16.361090pt;}
.ws6a{word-spacing:-16.297329pt;}
.ws53{word-spacing:-16.042284pt;}
.ws74{word-spacing:-15.277152pt;}
.ws5d{word-spacing:-15.022107pt;}
.ws87{word-spacing:-14.983851pt;}
.ws68{word-spacing:-14.639541pt;}
.ws4c{word-spacing:-14.575780pt;}
.ws37{word-spacing:-14.320736pt;}
.ws28{word-spacing:-14.256975pt;}
.ws1{word-spacing:-14.129452pt;}
.ws73{word-spacing:-14.027435pt;}
.ws12{word-spacing:-13.874408pt;}
.ws4a{word-spacing:-13.810647pt;}
.wsf{word-spacing:-13.491842pt;}
.ws58{word-spacing:-13.236797pt;}
.ws6b{word-spacing:-13.173036pt;}
.ws80{word-spacing:-13.134780pt;}
.ws3a{word-spacing:-13.109275pt;}
.ws19{word-spacing:-12.917992pt;}
.ws66{word-spacing:-12.854231pt;}
.ws20{word-spacing:-12.535426pt;}
.ws5c{word-spacing:-12.280381pt;}
.ws11{word-spacing:-12.216620pt;}
.ws9{word-spacing:-12.152859pt;}
.ws2a{word-spacing:-11.834054pt;}
.ws38{word-spacing:-11.706532pt;}
.ws90{word-spacing:-11.604514pt;}
.ws1a{word-spacing:-11.515249pt;}
.ws1e{word-spacing:-11.451488pt;}
.ws65{word-spacing:-11.260204pt;}
.ws71{word-spacing:-11.185263pt;}
.wsc{word-spacing:-11.132682pt;}
.ws50{word-spacing:-11.068921pt;}
.ws63{word-spacing:-11.005160pt;}
.ws30{word-spacing:-10.941399pt;}
.ws69{word-spacing:-10.686355pt;}
.wsa{word-spacing:-10.431311pt;}
.ws7e{word-spacing:-10.382488pt;}
.ws23{word-spacing:-10.367549pt;}
.ws72{word-spacing:-10.265532pt;}
.ws46{word-spacing:-10.176266pt;}
.ws25{word-spacing:-10.048744pt;}
.ws13{word-spacing:-9.984983pt;}
.ws1d{word-spacing:-9.921222pt;}
.ws3c{word-spacing:-9.793700pt;}
.ws89{word-spacing:-9.729939pt;}
.ws56{word-spacing:-9.666178pt;}
.ws1f{word-spacing:-9.602417pt;}
.ws7f{word-spacing:-9.564160pt;}
.ws45{word-spacing:-9.538656pt;}
.ws2e{word-spacing:-9.474895pt;}
.ws81{word-spacing:-9.181594pt;}
.ws8a{word-spacing:-8.926549pt;}
.ws2{word-spacing:-8.901045pt;}
.ws29{word-spacing:-8.709762pt;}
.ws5e{word-spacing:-8.646001pt;}
.ws4{word-spacing:-8.582240pt;}
.ws3b{word-spacing:-8.518479pt;}
.ws15{word-spacing:-8.454717pt;}
.ws7b{word-spacing:-8.416461pt;}
.ws76{word-spacing:-8.352700pt;}
.ws14{word-spacing:-8.199673pt;}
.ws1c{word-spacing:-8.072151pt;}
.ws6f{word-spacing:-8.033894pt;}
.ws44{word-spacing:-8.008390pt;}
.ws22{word-spacing:-7.944629pt;}
.ws6c{word-spacing:-7.753346pt;}
.ws61{word-spacing:-7.562063pt;}
.ws4b{word-spacing:-7.498301pt;}
.ws10{word-spacing:-7.434540pt;}
.ws6{word-spacing:-7.370779pt;}
.ws77{word-spacing:-7.332523pt;}
.ws62{word-spacing:-7.115735pt;}
.ws67{word-spacing:-6.988213pt;}
.ws64{word-spacing:-6.924452pt;}
.ws3e{word-spacing:-6.860691pt;}
.ws2f{word-spacing:-6.796930pt;}
.ws17{word-spacing:-6.733169pt;}
.ws48{word-spacing:-6.669408pt;}
.ws49{word-spacing:-6.605647pt;}
.ws2d{word-spacing:-6.414363pt;}
.ws2b{word-spacing:-6.350602pt;}
.ws8f{word-spacing:-6.184823pt;}
.ws78{word-spacing:-5.968036pt;}
.ws85{word-spacing:-5.840514pt;}
.ws16{word-spacing:-5.776753pt;}
.ws3{word-spacing:-5.330425pt;}
.ws31{word-spacing:-5.266664pt;}
.ws8{word-spacing:-5.202903pt;}
.ws5{word-spacing:-5.139142pt;}
.ws21{word-spacing:-5.011620pt;}
.ws5b{word-spacing:-4.947859pt;}
.ws88{word-spacing:-4.909602pt;}
.ws2c{word-spacing:-4.822719pt;}
.ws60{word-spacing:-4.692815pt;}
.ws34{word-spacing:-4.629053pt;}
.ws8b{word-spacing:-4.565292pt;}
.ws54{word-spacing:-4.437770pt;}
.ws3f{word-spacing:-4.374009pt;}
.ws8e{word-spacing:-4.310248pt;}
.ws7d{word-spacing:-4.182726pt;}
.ws8c{word-spacing:-4.144469pt;}
.ws27{word-spacing:-4.055204pt;}
.ws8d{word-spacing:-3.953186pt;}
.ws33{word-spacing:-3.927682pt;}
.ws79{word-spacing:-3.863921pt;}
.ws47{word-spacing:-3.545115pt;}
.ws83{word-spacing:-3.515781pt;}
.ws7a{word-spacing:-3.506859pt;}
.ws5f{word-spacing:-3.481354pt;}
.ws84{word-spacing:-3.251814pt;}
.wsd{word-spacing:-2.716221pt;}
.ws6d{word-spacing:-2.461177pt;}
.ws6e{word-spacing:-2.231637pt;}
.ws24{word-spacing:-2.078611pt;}
.ws7{word-spacing:-1.632283pt;}
.ws32{word-spacing:-1.441000pt;}
.ws41{word-spacing:-0.930912pt;}
.ws75{word-spacing:-0.868557pt;}
.ws42{word-spacing:-0.165779pt;}
.ws39{word-spacing:-0.063761pt;}
.ws35{word-spacing:-0.001847pt;}
.ws1b{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.025504pt;}
.ws7c{word-spacing:0.153027pt;}
.ws51{word-spacing:0.918159pt;}
.ws57{word-spacing:1.428248pt;}
.ws70{word-spacing:1.492009pt;}
.ws55{word-spacing:6.656655pt;}
.ws59{word-spacing:6.911700pt;}
.ws36{word-spacing:19.510886pt;}
.ws40{word-spacing:23.846639pt;}
.ws3d{word-spacing:27.927347pt;}
.ws18{word-spacing:28.615887pt;}
.ws0{word-spacing:34.338985pt;}
.ws4e{word-spacing:64.513558pt;}
.wse{word-spacing:103.200585pt;}
.ws52{word-spacing:152.503830pt;}
._16{margin-left:-9.564133pt;}
._1f{margin-left:-7.801819pt;}
._12{margin-left:-5.228407pt;}
._17{margin-left:-3.761903pt;}
._2{margin-left:-2.846279pt;}
._3{margin-left:-1.530266pt;}
._4{width:1.721549pt;}
._1{width:2.846279pt;}
._2e{width:5.258020pt;}
._1d{width:15.175134pt;}
._2f{width:16.832922pt;}
._10{width:17.766369pt;}
._2c{width:19.128320pt;}
._14{width:20.786108pt;}
._9{width:21.719555pt;}
._c{width:23.696148pt;}
._2d{width:24.780086pt;}
._b{width:26.078276pt;}
._f{width:27.034692pt;}
._5{width:28.031901pt;}
._1e{width:29.138807pt;}
._a{width:30.477790pt;}
._1a{width:31.771855pt;}
._7{width:33.410799pt;}
._11{width:34.749781pt;}
._2b{width:37.491507pt;}
._18{width:38.384162pt;}
._30{width:39.476439pt;}
._19{width:40.679561pt;}
._d{width:41.572215pt;}
._6{width:42.911198pt;}
._2a{width:44.505225pt;}
._1b{width:46.542691pt;}
._1c{width:48.010665pt;}
._8{width:54.875310pt;}
._22{width:63.600415pt;}
._e{width:86.077200pt;}
._0{width:103.292400pt;}
._25{width:168.500122pt;}
._28{width:183.721248pt;}
._15{width:290.340065pt;}
._24{width:365.496313pt;}
._23{width:381.124151pt;}
._26{width:462.425887pt;}
._20{width:505.961943pt;}
._21{width:725.635690pt;}
._13{width:958.147973pt;}
._27{width:1192.448338pt;}
._29{width:1390.120397pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.fs3{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:75.590667pt;}
.y6c{bottom:115.441333pt;}
.yaa{bottom:126.029333pt;}
.y2e{bottom:126.661333pt;}
.y4c{bottom:133.081333pt;}
.y6b{bottom:139.344000pt;}
.y1f{bottom:141.630667pt;}
.ycb{bottom:143.712000pt;}
.ya9{bottom:149.933333pt;}
.y4b{bottom:156.984000pt;}
.yca{bottom:162.973333pt;}
.y2d{bottom:163.848000pt;}
.y1e{bottom:165.533333pt;}
.ya8{bottom:173.836000pt;}
.y6a{bottom:179.032000pt;}
.y4a{bottom:180.886667pt;}
.yc9{bottom:182.234667pt;}
.y2c{bottom:187.750667pt;}
.ya7{bottom:197.738667pt;}
.y1d{bottom:199.730667pt;}
.yc8{bottom:201.496000pt;}
.y49{bottom:204.789333pt;}
.y2b{bottom:211.653333pt;}
.yc7{bottom:220.757333pt;}
.y2a{bottom:235.557333pt;}
.y69{bottom:238.126667pt;}
.ya6{bottom:238.910667pt;}
.y48{bottom:245.961333pt;}
.y1c{bottom:251.709333pt;}
.yc6{bottom:253.301333pt;}
.y68{bottom:262.029333pt;}
.y8a{bottom:269.320000pt;}
.y29{bottom:269.422667pt;}
.y47{bottom:269.864000pt;}
.yc5{bottom:272.562667pt;}
.ya5{bottom:272.776000pt;}
.y1b{bottom:275.612000pt;}
.y67{bottom:285.932000pt;}
.y28{bottom:293.325333pt;}
.y46{bottom:293.766667pt;}
.ya4{bottom:296.678667pt;}
.y1a{bottom:299.514667pt;}
.y89{bottom:302.196000pt;}
.yc4{bottom:305.106667pt;}
.y66{bottom:309.834667pt;}
.y27{bottom:317.228000pt;}
.y45{bottom:317.670667pt;}
.y88{bottom:321.989333pt;}
.y19{bottom:323.418667pt;}
.yc3{bottom:324.368000pt;}
.yab{bottom:324.808000pt;}
.ya3{bottom:330.544000pt;}
.y65{bottom:333.738667pt;}
.y26{bottom:341.130667pt;}
.y44{bottom:341.573333pt;}
.y87{bottom:341.781333pt;}
.yc2{bottom:343.629333pt;}
.y18{bottom:347.321333pt;}
.y64{bottom:357.641333pt;}
.y86{bottom:361.042667pt;}
.y43{bottom:365.476000pt;}
.y17{bottom:371.224000pt;}
.ya2{bottom:371.716000pt;}
.y25{bottom:374.997333pt;}
.yc1{bottom:376.174667pt;}
.y85{bottom:380.304000pt;}
.y63{bottom:381.544000pt;}
.y42{bottom:389.378667pt;}
.y16{bottom:395.126667pt;}
.yc0{bottom:395.434667pt;}
.ya1{bottom:395.618667pt;}
.y24{bottom:398.900000pt;}
.y84{bottom:399.564000pt;}
.y62{bottom:405.446667pt;}
.y41{bottom:413.282667pt;}
.ybf{bottom:414.696000pt;}
.y15{bottom:419.029333pt;}
.y83{bottom:419.357333pt;}
.ya0{bottom:419.522667pt;}
.y61{bottom:429.350667pt;}
.ybe{bottom:433.957333pt;}
.y40{bottom:437.185333pt;}
.y82{bottom:438.617333pt;}
.y23{bottom:440.072000pt;}
.y14{bottom:442.933333pt;}
.y9f{bottom:443.425333pt;}
.ybd{bottom:453.218667pt;}
.y60{bottom:453.253333pt;}
.y81{bottom:458.410667pt;}
.y22{bottom:463.974667pt;}
.y13{bottom:466.836000pt;}
.y9e{bottom:467.328000pt;}
.y3f{bottom:471.382667pt;}
.y5f{bottom:477.156000pt;}
.y80{bottom:477.672000pt;}
.ybc{bottom:485.762667pt;}
.y9d{bottom:491.230667pt;}
.y7f{bottom:496.932000pt;}
.y5e{bottom:501.058667pt;}
.ybb{bottom:505.024000pt;}
.y12{bottom:506.524000pt;}
.y21{bottom:510.466667pt;}
.y9c{bottom:515.134667pt;}
.y7e{bottom:516.193333pt;}
.y3e{bottom:523.361333pt;}
.yba{bottom:524.285333pt;}
.y5d{bottom:532.988000pt;}
.y7d{bottom:535.454667pt;}
.y9b{bottom:539.037333pt;}
.y3d{bottom:547.264000pt;}
.y7c{bottom:555.246667pt;}
.yb9{bottom:556.829333pt;}
.y5c{bottom:556.892000pt;}
.y9a{bottom:562.940000pt;}
.y11{bottom:566.812000pt;}
.y3c{bottom:571.166667pt;}
.y7b{bottom:574.508000pt;}
.yb8{bottom:576.090667pt;}
.y5b{bottom:584.620000pt;}
.y99{bottom:586.842667pt;}
.y10{bottom:590.714667pt;}
.y7a{bottom:593.769333pt;}
.y3b{bottom:595.069333pt;}
.yb7{bottom:595.352000pt;}
.y5a{bottom:608.524000pt;}
.y98{bottom:610.745333pt;}
.y79{bottom:613.030667pt;}
.yf{bottom:614.617333pt;}
.yb6{bottom:627.897333pt;}
.y3a{bottom:629.268000pt;}
.y78{bottom:632.292000pt;}
.y59{bottom:632.426667pt;}
.y97{bottom:634.649333pt;}
.ye{bottom:638.521333pt;}
.yb5{bottom:647.157333pt;}
.y77{bottom:651.553333pt;}
.y96{bottom:658.552000pt;}
.y58{bottom:660.156000pt;}
.yd{bottom:662.424000pt;}
.yb4{bottom:666.418667pt;}
.y76{bottom:670.813333pt;}
.y95{bottom:682.454667pt;}
.y57{bottom:684.058667pt;}
.yb3{bottom:685.680000pt;}
.yc{bottom:686.326667pt;}
.y75{bottom:690.606667pt;}
.y39{bottom:699.842667pt;}
.yb2{bottom:704.941333pt;}
.y94{bottom:706.357333pt;}
.y74{bottom:709.866667pt;}
.yb{bottom:710.229333pt;}
.y56{bottom:718.934667pt;}
.yb1{bottom:724.202667pt;}
.y73{bottom:729.128000pt;}
.y93{bottom:730.261333pt;}
.y38{bottom:731.744000pt;}
.ya{bottom:734.132000pt;}
.y72{bottom:748.389333pt;}
.y37{bottom:751.005333pt;}
.y55{bottom:751.645333pt;}
.y92{bottom:754.164000pt;}
.yb0{bottom:756.746667pt;}
.y9{bottom:758.036000pt;}
.y71{bottom:767.650667pt;}
.y36{bottom:770.798667pt;}
.y54{bottom:775.548000pt;}
.yaf{bottom:776.008000pt;}
.y91{bottom:778.066667pt;}
.y8{bottom:781.938667pt;}
.y70{bottom:786.912000pt;}
.y35{bottom:790.058667pt;}
.yae{bottom:795.269333pt;}
.y90{bottom:801.969333pt;}
.y7{bottom:805.841333pt;}
.y6f{bottom:806.173333pt;}
.y53{bottom:808.258667pt;}
.yad{bottom:814.530667pt;}
.y6e{bottom:825.433333pt;}
.y8f{bottom:825.873333pt;}
.y34{bottom:829.113333pt;}
.y6{bottom:829.744000pt;}
.y52{bottom:832.161333pt;}
.y6d{bottom:845.226667pt;}
.y33{bottom:848.373333pt;}
.y8e{bottom:849.776000pt;}
.y5{bottom:853.648000pt;}
.y51{bottom:864.872000pt;}
.y32{bottom:867.634667pt;}
.y8d{bottom:873.678667pt;}
.y4{bottom:877.550667pt;}
.yac{bottom:886.925333pt;}
.y31{bottom:887.428000pt;}
.y50{bottom:888.774667pt;}
.y8c{bottom:897.581333pt;}
.y3{bottom:901.453333pt;}
.y4f{bottom:912.677333pt;}
.y8b{bottom:921.485333pt;}
.y30{bottom:923.137333pt;}
.y2{bottom:941.141333pt;}
.y4e{bottom:945.388000pt;}
.y2f{bottom:964.309333pt;}
.y4d{bottom:969.290667pt;}
.y1{bottom:993.193333pt;}
.h6{height:45.589163pt;}
.h3{height:47.820800pt;}
.h4{height:54.400790pt;}
.h2{height:65.280797pt;}
.h5{height:93.992683pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488000pt;}
.x8{left:102.458667pt;}
.x5{left:113.564000pt;}
.x2{left:117.900000pt;}
.x6{left:133.508000pt;}
.xf{left:136.370667pt;}
.x7{left:147.901333pt;}
.xb{left:167.845333pt;}
.xe{left:172.397333pt;}
.xa{left:201.834667pt;}
.x4{left:237.760000pt;}
.xc{left:281.845333pt;}
.x10{left:304.137333pt;}
.x9{left:382.965333pt;}
.x3{left:392.948000pt;}
.xd{left:524.557333pt;}
}




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