
    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_15639f4d6680bcc6268674d0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;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_92fddf884312ddc4e8e2cd6d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.723000;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_fc3fa3b5b0e2c60b4ab86f6d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_830a9d15529828f10571786e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1ddb1f1869ca7610a62934aa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9312cd893b14855eeefb43bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773000;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_add6dbee5fc702fc4a9a2773.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687000;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_6e0cbfdcac8e58e3f8d9b6e2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_4b9012f321c7422306a7bea3.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e7cd8ee7adcc278d5866a573.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);}
.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);}
.v4{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.578000px;}
.v3{vertical-align:16.464000px;}
.v2{vertical-align:21.696000px;}
.v5{vertical-align:78.906000px;}
.ls0{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.002222px;}
.lsd{letter-spacing:0.003269px;}
.lsf{letter-spacing:2.144222px;}
.lsa{letter-spacing:3.447652px;}
.lse{letter-spacing:4.685915px;}
.lsb{letter-spacing:4.691915px;}
.ls1{letter-spacing:5.731970px;}
.ls23{letter-spacing:6.516305px;}
.ls1b{letter-spacing:8.304065px;}
.ls22{letter-spacing:9.956338px;}
.ls24{letter-spacing:9.962338px;}
.ls17{letter-spacing:13.276287px;}
.ls28{letter-spacing:13.278538px;}
.ls16{letter-spacing:13.282287px;}
.ls13{letter-spacing:13.284538px;}
.ls2{letter-spacing:13.402200px;}
.ls21{letter-spacing:16.599223px;}
.ls11{letter-spacing:16.602538px;}
.ls12{letter-spacing:17.969915px;}
.ls27{letter-spacing:17.975915px;}
.ls4{letter-spacing:19.276200px;}
.ls10{letter-spacing:19.592525px;}
.ls1e{letter-spacing:19.920538px;}
.ls6{letter-spacing:19.926538px;}
.ls26{letter-spacing:20.045602px;}
.ls20{letter-spacing:21.293915px;}
.ls3{letter-spacing:23.350200px;}
.ls15{letter-spacing:29.884287px;}
.ls18{letter-spacing:29.886560px;}
.ls1a{letter-spacing:29.886776px;}
.ls8{letter-spacing:29.886792px;}
.ls9{letter-spacing:29.888611px;}
.ls14{letter-spacing:29.890123px;}
.lsc{letter-spacing:29.890463px;}
.ls1c{letter-spacing:29.890476px;}
.ls5{letter-spacing:29.892621px;}
.ls7{letter-spacing:29.896803px;}
.ls1d{letter-spacing:127.560300px;}
.ls1f{letter-spacing:127.562943px;}
.ls25{letter-spacing:167.406300px;}
.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;}
}
.ws32{word-spacing:-38.937826px;}
.ws48{word-spacing:-28.955301px;}
.ws30{word-spacing:-25.667643px;}
.ws3e{word-spacing:-22.321486px;}
.ws45{word-spacing:-22.320209px;}
.ws2e{word-spacing:-16.605662px;}
.ws4{word-spacing:-7.100791px;}
.ws8{word-spacing:-3.215927px;}
.ws17{word-spacing:-2.677947px;}
.ws61{word-spacing:-2.438844px;}
.ws5d{word-spacing:-1.960640px;}
.ws5{word-spacing:-1.721537px;}
.ws4f{word-spacing:-1.661762px;}
.ws69{word-spacing:-1.542210px;}
.ws20{word-spacing:-1.482435px;}
.ws35{word-spacing:-1.422659px;}
.ws12{word-spacing:-1.362884px;}
.ws52{word-spacing:-1.303108px;}
.ws51{word-spacing:-0.585801px;}
.ws31{word-spacing:-0.015471px;}
.ws44{word-spacing:-0.002193px;}
.wsc{word-spacing:0.000000px;}
.ws2f{word-spacing:0.011955px;}
.ws18{word-spacing:0.131506px;}
.ws57{word-spacing:0.251058px;}
.ws62{word-spacing:0.800993px;}
.ws22{word-spacing:0.968365px;}
.ws23{word-spacing:1.028140px;}
.ws3b{word-spacing:1.386794px;}
.ws38{word-spacing:1.566121px;}
.ws60{word-spacing:1.924774px;}
.ws26{word-spacing:2.163877px;}
.ws41{word-spacing:2.223652px;}
.ws4a{word-spacing:2.462755px;}
.ws1f{word-spacing:2.522530px;}
.ws3{word-spacing:2.577516px;}
.ws36{word-spacing:2.582306px;}
.ws49{word-spacing:2.642082px;}
.wsa{word-spacing:2.701857px;}
.ws24{word-spacing:2.761633px;}
.ws10{word-spacing:2.821408px;}
.ws2{word-spacing:3.093408px;}
.ws1c{word-spacing:3.180062px;}
.ws6{word-spacing:3.299613px;}
.ws58{word-spacing:3.311568px;}
.ws3d{word-spacing:3.317400px;}
.ws3f{word-spacing:3.323400px;}
.wsb{word-spacing:3.359389px;}
.ws25{word-spacing:3.419164px;}
.ws43{word-spacing:3.478940px;}
.ws5c{word-spacing:3.538716px;}
.ws2c{word-spacing:3.598491px;}
.ws13{word-spacing:3.957145px;}
.ws37{word-spacing:4.674452px;}
.ws11{word-spacing:4.734228px;}
.ws21{word-spacing:4.853779px;}
.wsf{word-spacing:5.092881px;}
.wse{word-spacing:5.152657px;}
.ws2b{word-spacing:5.272208px;}
.ws1a{word-spacing:5.379825px;}
.ws14{word-spacing:5.391759px;}
.ws73{word-spacing:5.451535px;}
.ws29{word-spacing:5.630862px;}
.ws33{word-spacing:5.690637px;}
.ws50{word-spacing:5.750413px;}
.ws1b{word-spacing:5.810188px;}
.ws56{word-spacing:6.061246px;}
.ws59{word-spacing:6.121021px;}
.ws42{word-spacing:6.228618px;}
.ws6f{word-spacing:6.300348px;}
.ws47{word-spacing:6.348169px;}
.ws6c{word-spacing:6.467720px;}
.ws1{word-spacing:6.496290px;}
.ws4d{word-spacing:6.706822px;}
.ws9{word-spacing:6.766598px;}
.ws19{word-spacing:7.005700px;}
.ws70{word-spacing:7.304578px;}
.ws4e{word-spacing:7.543681px;}
.ws1e{word-spacing:7.723008px;}
.ws55{word-spacing:7.794738px;}
.ws74{word-spacing:8.093616px;}
.ws39{word-spacing:8.260988px;}
.ws3a{word-spacing:8.320764px;}
.ws4b{word-spacing:8.440315px;}
.ws16{word-spacing:8.500090px;}
.ws3c{word-spacing:8.798968px;}
.ws1d{word-spacing:8.858744px;}
.ws0{word-spacing:9.295163px;}
.ws6b{word-spacing:9.336949px;}
.ws4c{word-spacing:9.456500px;}
.ws72{word-spacing:9.541294px;}
.ws15{word-spacing:9.635827px;}
.ws34{word-spacing:9.755378px;}
.ws68{word-spacing:9.994480px;}
.ws54{word-spacing:10.114032px;}
.ws2a{word-spacing:10.173807px;}
.ws6d{word-spacing:10.233583px;}
.ws28{word-spacing:10.831339px;}
.ws67{word-spacing:11.189992px;}
.ws71{word-spacing:11.201947px;}
.ws46{word-spacing:11.429095px;}
.ws6a{word-spacing:11.680152px;}
.ws7{word-spacing:11.967075px;}
.ws6e{word-spacing:12.457235px;}
.ws27{word-spacing:13.043036px;}
.ws53{word-spacing:13.222363px;}
.ws5e{word-spacing:18.960820px;}
.ws66{word-spacing:19.917230px;}
.ws65{word-spacing:24.400400px;}
.ws63{word-spacing:24.460176px;}
.ws64{word-spacing:25.488316px;}
.ws5f{word-spacing:26.671873px;}
.ws5b{word-spacing:28.764019px;}
.ws5a{word-spacing:30.617062px;}
.wsd{word-spacing:69.937725px;}
.ws2d{word-spacing:312.638343px;}
.ws40{word-spacing:661.592638px;}
._3{margin-left:-56.780550px;}
._11{margin-left:-48.412208px;}
._c{margin-left:-31.615304px;}
._f{margin-left:-29.887800px;}
._1b{margin-left:-28.773255px;}
._7{margin-left:-27.652378px;}
._12{margin-left:-24.161225px;}
._14{margin-left:-23.121192px;}
._6{margin-left:-21.519360px;}
._0{margin-left:-13.979924px;}
._2{margin-left:-9.794025px;}
._5{margin-left:-6.186816px;}
._e{margin-left:-5.134714px;}
._1{margin-left:-3.223350px;}
._4{margin-left:-1.560154px;}
._b{width:1.673717px;}
._a{width:3.174095px;}
._15{width:4.220342px;}
._8{width:6.415626px;}
._16{width:9.982525px;}
._9{width:16.109478px;}
._18{width:18.711557px;}
._17{width:21.280114px;}
._1d{width:24.146858px;}
._d{width:26.540366px;}
._1c{width:28.117179px;}
._1a{width:29.887800px;}
._13{width:96.836850px;}
._19{width:926.521800px;}
._10{width:956.409600px;}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs2{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs5{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:126.529500px;}
.y13{bottom:134.047500px;}
.yab{bottom:173.296500px;}
.yaa{bottom:193.023000px;}
.ya9{bottom:212.748000px;}
.y43{bottom:228.733500px;}
.y85{bottom:235.891500px;}
.y12{bottom:240.865500px;}
.ya8{bottom:244.429500px;}
.y42{bottom:248.460000px;}
.y11{bottom:260.592000px;}
.ya7{bottom:264.156000px;}
.y7e{bottom:265.477500px;}
.y10{bottom:280.318500px;}
.y6a{bottom:283.041000px;}
.y65{bottom:283.645500px;}
.ya6{bottom:283.882500px;}
.y7d{bottom:285.204000px;}
.y41{bottom:287.913000px;}
.y84{bottom:296.289000px;}
.yf{bottom:300.045000px;}
.ya5{bottom:303.607500px;}
.y40{bottom:307.638000px;}
.ye{bottom:319.770000px;}
.ya4{bottom:323.334000px;}
.y3f{bottom:327.364500px;}
.yd{bottom:339.496500px;}
.y3e{bottom:347.091000px;}
.ya3{bottom:355.015500px;}
.yc{bottom:359.223000px;}
.ya2{bottom:374.742000px;}
.yb{bottom:378.949500px;}
.y8a{bottom:388.678500px;}
.ya1{bottom:394.468500px;}
.ya{bottom:398.674500px;}
.y3d{bottom:406.269000px;}
.y89{bottom:408.405000px;}
.y5a{bottom:413.734500px;}
.ya0{bottom:414.193500px;}
.y9{bottom:418.401000px;}
.y3c{bottom:425.995500px;}
.y88{bottom:428.131500px;}
.y69{bottom:437.848500px;}
.y9f{bottom:445.875000px;}
.y59{bottom:449.070000px;}
.y64{bottom:450.657000px;}
.y74{bottom:451.018500px;}
.y7c{bottom:452.214000px;}
.y58{bottom:453.186000px;}
.y4e{bottom:455.166000px;}
.y68{bottom:457.575000px;}
.y3b{bottom:465.447000px;}
.y9e{bottom:465.601500px;}
.y73{bottom:470.745000px;}
.y7b{bottom:471.940500px;}
.y83{bottom:479.710500px;}
.y4d{bottom:480.270000px;}
.y3a{bottom:485.173500px;}
.y9d{bottom:485.328000px;}
.y6{bottom:489.409500px;}
.y7a{bottom:491.667000px;}
.y57{bottom:492.639000px;}
.y29{bottom:501.466500px;}
.y39{bottom:504.900000px;}
.y5{bottom:507.492000px;}
.y63{bottom:509.835000px;}
.y4c{bottom:513.423000px;}
.y9c{bottom:517.009500px;}
.y28{bottom:521.193000px;}
.y62{bottom:529.561500px;}
.y56{bottom:532.090500px;}
.y4{bottom:536.376000px;}
.y9b{bottom:536.734500px;}
.y27{bottom:540.919500px;}
.y61{bottom:549.288000px;}
.y9a{bottom:556.461000px;}
.y26{bottom:560.646000px;}
.y38{bottom:564.078000px;}
.y60{bottom:569.014500px;}
.y55{bottom:571.543500px;}
.y4b{bottom:572.601000px;}
.y25{bottom:580.371000px;}
.y37{bottom:583.804500px;}
.y8e{bottom:585.135000px;}
.y99{bottom:588.142500px;}
.y5f{bottom:588.739500px;}
.y54{bottom:591.268500px;}
.y24{bottom:600.097500px;}
.y8d{bottom:604.860000px;}
.y98{bottom:607.869000px;}
.y53{bottom:610.995000px;}
.y4a{bottom:612.052500px;}
.y23{bottom:619.824000px;}
.y36{bottom:623.257500px;}
.y67{bottom:624.586500px;}
.y97{bottom:627.595500px;}
.y5e{bottom:628.192500px;}
.y3{bottom:631.471500px;}
.y72{bottom:637.756500px;}
.y22{bottom:639.550500px;}
.y35{bottom:642.982500px;}
.y8c{bottom:644.313000px;}
.y5d{bottom:647.919000px;}
.y71{bottom:657.483000px;}
.y79{bottom:658.678500px;}
.y96{bottom:659.275500px;}
.y21{bottom:659.277000px;}
.y34{bottom:662.709000px;}
.y82{bottom:663.130500px;}
.y49{bottom:663.460500px;}
.y2{bottom:667.636500px;}
.y78{bottom:678.405000px;}
.y20{bottom:679.002000px;}
.y48{bottom:695.142000px;}
.y70{bottom:696.934500px;}
.y1f{bottom:698.728500px;}
.y1{bottom:703.800000px;}
.y5c{bottom:707.097000px;}
.y6f{bottom:716.661000px;}
.y1e{bottom:718.455000px;}
.y33{bottom:721.887000px;}
.y47{bottom:726.823500px;}
.y95{bottom:730.410000px;}
.y77{bottom:737.583000px;}
.y32{bottom:741.613500px;}
.y5b{bottom:746.548500px;}
.y1d{bottom:750.136500px;}
.y52{bottom:755.212500px;}
.y76{bottom:757.309500px;}
.y94{bottom:769.861500px;}
.y6e{bottom:775.839000px;}
.y75{bottom:777.034500px;}
.y31{bottom:781.066500px;}
.y1c{bottom:781.818000px;}
.y46{bottom:786.001500px;}
.y66{bottom:791.598000px;}
.y51{bottom:794.665500px;}
.y6d{bottom:795.565500px;}
.y87{bottom:796.761000px;}
.y30{bottom:800.791500px;}
.y93{bottom:801.543000px;}
.y45{bottom:805.728000px;}
.y1b{bottom:813.498000px;}
.y6c{bottom:815.292000px;}
.y86{bottom:816.487500px;}
.y2f{bottom:820.518000px;}
.y92{bottom:821.269500px;}
.y44{bottom:825.453000px;}
.y2e{bottom:840.244500px;}
.y91{bottom:840.996000px;}
.y1a{bottom:845.179500px;}
.y2d{bottom:859.971000px;}
.y81{bottom:859.978500px;}
.y19{bottom:864.906000px;}
.yae{bottom:867.750000px;}
.y6b{bottom:869.688000px;}
.y90{bottom:872.677500px;}
.y80{bottom:879.705000px;}
.y18{bottom:884.632500px;}
.yad{bottom:887.475000px;}
.y8f{bottom:892.402500px;}
.y2c{bottom:899.422500px;}
.y7f{bottom:899.431500px;}
.y17{bottom:904.359000px;}
.yac{bottom:907.201500px;}
.y50{bottom:919.156500px;}
.y16{bottom:924.084000px;}
.y2b{bottom:933.948000px;}
.y8b{bottom:938.883000px;}
.y15{bottom:943.810500px;}
.y4f{bottom:958.609500px;}
.y14{bottom:978.336000px;}
.y8{bottom:1034.226000px;}
.y7{bottom:1046.181000px;}
.h4{height:29.833916px;}
.h3{height:40.348800px;}
.h5{height:40.411916px;}
.h6{height:44.831700px;}
.ha{height:51.523916px;}
.h9{height:51.529916px;}
.h7{height:60.598349px;}
.hb{height:61.295700px;}
.h2{height:87.650325px;}
.h1{height:104.700710px;}
.h8{height:105.146878px;}
.hc{height:123.737700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:200.652000px;}
.xd{left:205.734000px;}
.x18{left:208.125000px;}
.x3{left:211.567500px;}
.x13{left:231.481500px;}
.xf{left:232.542000px;}
.x12{left:234.396000px;}
.xe{left:238.012500px;}
.x5{left:257.886000px;}
.x1{left:273.357000px;}
.x4{left:287.371500px;}
.x2{left:299.518500px;}
.x11{left:311.721000px;}
.x15{left:363.571500px;}
.x10{left:364.641000px;}
.x6{left:370.833000px;}
.x17{left:378.879000px;}
.x14{left:404.793000px;}
.x16{left:452.832000px;}
.xb{left:516.747000px;}
.x8{left:570.504000px;}
.x9{left:581.256000px;}
.xc{left:608.881500px;}
.xa{left:698.224500px;}
@media print{
.v4{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.402667pt;}
.v3{vertical-align:14.634667pt;}
.v2{vertical-align:19.285333pt;}
.v5{vertical-align:70.138667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.001975pt;}
.lsd{letter-spacing:0.002906pt;}
.lsf{letter-spacing:1.905975pt;}
.lsa{letter-spacing:3.064580pt;}
.lse{letter-spacing:4.165258pt;}
.lsb{letter-spacing:4.170591pt;}
.ls1{letter-spacing:5.095085pt;}
.ls23{letter-spacing:5.792271pt;}
.ls1b{letter-spacing:7.381391pt;}
.ls22{letter-spacing:8.850079pt;}
.ls24{letter-spacing:8.855412pt;}
.ls17{letter-spacing:11.801144pt;}
.ls28{letter-spacing:11.803145pt;}
.ls16{letter-spacing:11.806477pt;}
.ls13{letter-spacing:11.808479pt;}
.ls2{letter-spacing:11.913067pt;}
.ls21{letter-spacing:14.754865pt;}
.ls11{letter-spacing:14.757812pt;}
.ls12{letter-spacing:15.973258pt;}
.ls27{letter-spacing:15.978591pt;}
.ls4{letter-spacing:17.134400pt;}
.ls10{letter-spacing:17.415578pt;}
.ls1e{letter-spacing:17.707145pt;}
.ls6{letter-spacing:17.712479pt;}
.ls26{letter-spacing:17.818313pt;}
.ls20{letter-spacing:18.927925pt;}
.ls3{letter-spacing:20.755733pt;}
.ls15{letter-spacing:26.563810pt;}
.ls18{letter-spacing:26.565831pt;}
.ls1a{letter-spacing:26.566023pt;}
.ls8{letter-spacing:26.566038pt;}
.ls9{letter-spacing:26.567654pt;}
.ls14{letter-spacing:26.568998pt;}
.lsc{letter-spacing:26.569300pt;}
.ls1c{letter-spacing:26.569312pt;}
.ls5{letter-spacing:26.571219pt;}
.ls7{letter-spacing:26.574936pt;}
.ls1d{letter-spacing:113.386933pt;}
.ls1f{letter-spacing:113.389282pt;}
.ls25{letter-spacing:148.805600pt;}
.ws32{word-spacing:-34.611401pt;}
.ws48{word-spacing:-25.738045pt;}
.ws30{word-spacing:-22.815682pt;}
.ws3e{word-spacing:-19.841321pt;}
.ws45{word-spacing:-19.840186pt;}
.ws2e{word-spacing:-14.760588pt;}
.ws4{word-spacing:-6.311814pt;}
.ws8{word-spacing:-2.858602pt;}
.ws17{word-spacing:-2.380397pt;}
.ws61{word-spacing:-2.167862pt;}
.ws5d{word-spacing:-1.742791pt;}
.ws5{word-spacing:-1.530255pt;}
.ws4f{word-spacing:-1.477121pt;}
.ws69{word-spacing:-1.370854pt;}
.ws20{word-spacing:-1.317720pt;}
.ws35{word-spacing:-1.264586pt;}
.ws12{word-spacing:-1.211452pt;}
.ws52{word-spacing:-1.158318pt;}
.ws51{word-spacing:-0.520712pt;}
.ws31{word-spacing:-0.013752pt;}
.ws44{word-spacing:-0.001949pt;}
.wsc{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.010627pt;}
.ws18{word-spacing:0.116895pt;}
.ws57{word-spacing:0.223162pt;}
.ws62{word-spacing:0.711994pt;}
.ws22{word-spacing:0.860769pt;}
.ws23{word-spacing:0.913903pt;}
.ws3b{word-spacing:1.232706pt;}
.ws38{word-spacing:1.392107pt;}
.ws60{word-spacing:1.710911pt;}
.ws26{word-spacing:1.923446pt;}
.ws41{word-spacing:1.976580pt;}
.ws4a{word-spacing:2.189115pt;}
.ws1f{word-spacing:2.242249pt;}
.ws3{word-spacing:2.291126pt;}
.ws36{word-spacing:2.295383pt;}
.ws49{word-spacing:2.348517pt;}
.wsa{word-spacing:2.401651pt;}
.ws24{word-spacing:2.454785pt;}
.ws10{word-spacing:2.507919pt;}
.ws2{word-spacing:2.749696pt;}
.ws1c{word-spacing:2.826722pt;}
.ws6{word-spacing:2.932989pt;}
.ws58{word-spacing:2.943616pt;}
.ws3d{word-spacing:2.948800pt;}
.ws3f{word-spacing:2.954133pt;}
.wsb{word-spacing:2.986123pt;}
.ws25{word-spacing:3.039257pt;}
.ws43{word-spacing:3.092391pt;}
.ws5c{word-spacing:3.145525pt;}
.ws2c{word-spacing:3.198659pt;}
.ws13{word-spacing:3.517462pt;}
.ws37{word-spacing:4.155068pt;}
.ws11{word-spacing:4.208202pt;}
.ws21{word-spacing:4.314470pt;}
.wsf{word-spacing:4.527005pt;}
.wse{word-spacing:4.580139pt;}
.ws2b{word-spacing:4.686407pt;}
.ws1a{word-spacing:4.782067pt;}
.ws14{word-spacing:4.792675pt;}
.ws73{word-spacing:4.845809pt;}
.ws29{word-spacing:5.005210pt;}
.ws33{word-spacing:5.058344pt;}
.ws50{word-spacing:5.111478pt;}
.ws1b{word-spacing:5.164612pt;}
.ws56{word-spacing:5.387774pt;}
.ws59{word-spacing:5.440908pt;}
.ws42{word-spacing:5.536549pt;}
.ws6f{word-spacing:5.600310pt;}
.ws47{word-spacing:5.642817pt;}
.ws6c{word-spacing:5.749084pt;}
.ws1{word-spacing:5.774480pt;}
.ws4d{word-spacing:5.961620pt;}
.ws9{word-spacing:6.014754pt;}
.ws19{word-spacing:6.227289pt;}
.ws70{word-spacing:6.492959pt;}
.ws4e{word-spacing:6.705494pt;}
.ws1e{word-spacing:6.864896pt;}
.ws55{word-spacing:6.928656pt;}
.ws74{word-spacing:7.194326pt;}
.ws39{word-spacing:7.343100pt;}
.ws3a{word-spacing:7.396234pt;}
.ws4b{word-spacing:7.502502pt;}
.ws16{word-spacing:7.555636pt;}
.ws3c{word-spacing:7.821305pt;}
.ws1d{word-spacing:7.874439pt;}
.ws0{word-spacing:8.262367pt;}
.ws6b{word-spacing:8.299510pt;}
.ws4c{word-spacing:8.405778pt;}
.ws72{word-spacing:8.481150pt;}
.ws15{word-spacing:8.565179pt;}
.ws34{word-spacing:8.671447pt;}
.ws68{word-spacing:8.883983pt;}
.ws54{word-spacing:8.990250pt;}
.ws2a{word-spacing:9.043384pt;}
.ws6d{word-spacing:9.096518pt;}
.ws28{word-spacing:9.627857pt;}
.ws67{word-spacing:9.946660pt;}
.ws71{word-spacing:9.957287pt;}
.ws46{word-spacing:10.159195pt;}
.ws6a{word-spacing:10.382358pt;}
.ws7{word-spacing:10.637400pt;}
.ws6e{word-spacing:11.073098pt;}
.ws27{word-spacing:11.593810pt;}
.ws53{word-spacing:11.753211pt;}
.ws5e{word-spacing:16.854063pt;}
.ws66{word-spacing:17.704204pt;}
.ws65{word-spacing:21.689244pt;}
.ws63{word-spacing:21.742378pt;}
.ws64{word-spacing:22.656281pt;}
.ws5f{word-spacing:23.708331pt;}
.ws5b{word-spacing:25.568017pt;}
.ws5a{word-spacing:27.215167pt;}
.wsd{word-spacing:62.166867pt;}
.ws2d{word-spacing:277.900749pt;}
.ws40{word-spacing:588.082345pt;}
._3{margin-left:-50.471600pt;}
._11{margin-left:-43.033074pt;}
._c{margin-left:-28.102493pt;}
._f{margin-left:-26.566933pt;}
._1b{margin-left:-25.576227pt;}
._7{margin-left:-24.579891pt;}
._12{margin-left:-21.476644pt;}
._14{margin-left:-20.552171pt;}
._6{margin-left:-19.128320pt;}
._0{margin-left:-12.426599pt;}
._2{margin-left:-8.705800pt;}
._5{margin-left:-5.499392pt;}
._e{margin-left:-4.564190pt;}
._1{margin-left:-2.865200pt;}
._4{margin-left:-1.386803pt;}
._b{width:1.487748pt;}
._a{width:2.821418pt;}
._15{width:3.751415pt;}
._8{width:5.702779pt;}
._16{width:8.873356pt;}
._9{width:14.319536pt;}
._18{width:16.632495pt;}
._17{width:18.915657pt;}
._1d{width:21.463874pt;}
._d{width:23.591437pt;}
._1c{width:24.993048pt;}
._1a{width:26.566933pt;}
._13{width:86.077200pt;}
._19{width:823.574933pt;}
._10{width:850.141867pt;}
.fs3{font-size:37.193600pt;}
.fs2{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs5{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:112.470667pt;}
.y13{bottom:119.153333pt;}
.yab{bottom:154.041333pt;}
.yaa{bottom:171.576000pt;}
.ya9{bottom:189.109333pt;}
.y43{bottom:203.318667pt;}
.y85{bottom:209.681333pt;}
.y12{bottom:214.102667pt;}
.ya8{bottom:217.270667pt;}
.y42{bottom:220.853333pt;}
.y11{bottom:231.637333pt;}
.ya7{bottom:234.805333pt;}
.y7e{bottom:235.980000pt;}
.y10{bottom:249.172000pt;}
.y6a{bottom:251.592000pt;}
.y65{bottom:252.129333pt;}
.ya6{bottom:252.340000pt;}
.y7d{bottom:253.514667pt;}
.y41{bottom:255.922667pt;}
.y84{bottom:263.368000pt;}
.yf{bottom:266.706667pt;}
.ya5{bottom:269.873333pt;}
.y40{bottom:273.456000pt;}
.ye{bottom:284.240000pt;}
.ya4{bottom:287.408000pt;}
.y3f{bottom:290.990667pt;}
.yd{bottom:301.774667pt;}
.y3e{bottom:308.525333pt;}
.ya3{bottom:315.569333pt;}
.yc{bottom:319.309333pt;}
.ya2{bottom:333.104000pt;}
.yb{bottom:336.844000pt;}
.y8a{bottom:345.492000pt;}
.ya1{bottom:350.638667pt;}
.ya{bottom:354.377333pt;}
.y3d{bottom:361.128000pt;}
.y89{bottom:363.026667pt;}
.y5a{bottom:367.764000pt;}
.ya0{bottom:368.172000pt;}
.y9{bottom:371.912000pt;}
.y3c{bottom:378.662667pt;}
.y88{bottom:380.561333pt;}
.y69{bottom:389.198667pt;}
.y9f{bottom:396.333333pt;}
.y59{bottom:399.173333pt;}
.y64{bottom:400.584000pt;}
.y74{bottom:400.905333pt;}
.y7c{bottom:401.968000pt;}
.y58{bottom:402.832000pt;}
.y4e{bottom:404.592000pt;}
.y68{bottom:406.733333pt;}
.y3b{bottom:413.730667pt;}
.y9e{bottom:413.868000pt;}
.y73{bottom:418.440000pt;}
.y7b{bottom:419.502667pt;}
.y83{bottom:426.409333pt;}
.y4d{bottom:426.906667pt;}
.y3a{bottom:431.265333pt;}
.y9d{bottom:431.402667pt;}
.y6{bottom:435.030667pt;}
.y7a{bottom:437.037333pt;}
.y57{bottom:437.901333pt;}
.y29{bottom:445.748000pt;}
.y39{bottom:448.800000pt;}
.y5{bottom:451.104000pt;}
.y63{bottom:453.186667pt;}
.y4c{bottom:456.376000pt;}
.y9c{bottom:459.564000pt;}
.y28{bottom:463.282667pt;}
.y62{bottom:470.721333pt;}
.y56{bottom:472.969333pt;}
.y4{bottom:476.778667pt;}
.y9b{bottom:477.097333pt;}
.y27{bottom:480.817333pt;}
.y61{bottom:488.256000pt;}
.y9a{bottom:494.632000pt;}
.y26{bottom:498.352000pt;}
.y38{bottom:501.402667pt;}
.y60{bottom:505.790667pt;}
.y55{bottom:508.038667pt;}
.y4b{bottom:508.978667pt;}
.y25{bottom:515.885333pt;}
.y37{bottom:518.937333pt;}
.y8e{bottom:520.120000pt;}
.y99{bottom:522.793333pt;}
.y5f{bottom:523.324000pt;}
.y54{bottom:525.572000pt;}
.y24{bottom:533.420000pt;}
.y8d{bottom:537.653333pt;}
.y98{bottom:540.328000pt;}
.y53{bottom:543.106667pt;}
.y4a{bottom:544.046667pt;}
.y23{bottom:550.954667pt;}
.y36{bottom:554.006667pt;}
.y67{bottom:555.188000pt;}
.y97{bottom:557.862667pt;}
.y5e{bottom:558.393333pt;}
.y3{bottom:561.308000pt;}
.y72{bottom:566.894667pt;}
.y22{bottom:568.489333pt;}
.y35{bottom:571.540000pt;}
.y8c{bottom:572.722667pt;}
.y5d{bottom:575.928000pt;}
.y71{bottom:584.429333pt;}
.y79{bottom:585.492000pt;}
.y96{bottom:586.022667pt;}
.y21{bottom:586.024000pt;}
.y34{bottom:589.074667pt;}
.y82{bottom:589.449333pt;}
.y49{bottom:589.742667pt;}
.y2{bottom:593.454667pt;}
.y78{bottom:603.026667pt;}
.y20{bottom:603.557333pt;}
.y48{bottom:617.904000pt;}
.y70{bottom:619.497333pt;}
.y1f{bottom:621.092000pt;}
.y1{bottom:625.600000pt;}
.y5c{bottom:628.530667pt;}
.y6f{bottom:637.032000pt;}
.y1e{bottom:638.626667pt;}
.y33{bottom:641.677333pt;}
.y47{bottom:646.065333pt;}
.y95{bottom:649.253333pt;}
.y77{bottom:655.629333pt;}
.y32{bottom:659.212000pt;}
.y5b{bottom:663.598667pt;}
.y1d{bottom:666.788000pt;}
.y52{bottom:671.300000pt;}
.y76{bottom:673.164000pt;}
.y94{bottom:684.321333pt;}
.y6e{bottom:689.634667pt;}
.y75{bottom:690.697333pt;}
.y31{bottom:694.281333pt;}
.y1c{bottom:694.949333pt;}
.y46{bottom:698.668000pt;}
.y66{bottom:703.642667pt;}
.y51{bottom:706.369333pt;}
.y6d{bottom:707.169333pt;}
.y87{bottom:708.232000pt;}
.y30{bottom:711.814667pt;}
.y93{bottom:712.482667pt;}
.y45{bottom:716.202667pt;}
.y1b{bottom:723.109333pt;}
.y6c{bottom:724.704000pt;}
.y86{bottom:725.766667pt;}
.y2f{bottom:729.349333pt;}
.y92{bottom:730.017333pt;}
.y44{bottom:733.736000pt;}
.y2e{bottom:746.884000pt;}
.y91{bottom:747.552000pt;}
.y1a{bottom:751.270667pt;}
.y2d{bottom:764.418667pt;}
.y81{bottom:764.425333pt;}
.y19{bottom:768.805333pt;}
.yae{bottom:771.333333pt;}
.y6b{bottom:773.056000pt;}
.y90{bottom:775.713333pt;}
.y80{bottom:781.960000pt;}
.y18{bottom:786.340000pt;}
.yad{bottom:788.866667pt;}
.y8f{bottom:793.246667pt;}
.y2c{bottom:799.486667pt;}
.y7f{bottom:799.494667pt;}
.y17{bottom:803.874667pt;}
.yac{bottom:806.401333pt;}
.y50{bottom:817.028000pt;}
.y16{bottom:821.408000pt;}
.y2b{bottom:830.176000pt;}
.y8b{bottom:834.562667pt;}
.y15{bottom:838.942667pt;}
.y4f{bottom:852.097333pt;}
.y14{bottom:869.632000pt;}
.y8{bottom:919.312000pt;}
.y7{bottom:929.938667pt;}
.h4{height:26.519037pt;}
.h3{height:35.865600pt;}
.h5{height:35.921703pt;}
.h6{height:39.850400pt;}
.ha{height:45.799037pt;}
.h9{height:45.804370pt;}
.h7{height:53.865199pt;}
.hb{height:54.485067pt;}
.h2{height:77.911400pt;}
.h1{height:93.067298pt;}
.h8{height:93.463892pt;}
.hc{height:109.989067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:178.357333pt;}
.xd{left:182.874667pt;}
.x18{left:185.000000pt;}
.x3{left:188.060000pt;}
.x13{left:205.761333pt;}
.xf{left:206.704000pt;}
.x12{left:208.352000pt;}
.xe{left:211.566667pt;}
.x5{left:229.232000pt;}
.x1{left:242.984000pt;}
.x4{left:255.441333pt;}
.x2{left:266.238667pt;}
.x11{left:277.085333pt;}
.x15{left:323.174667pt;}
.x10{left:324.125333pt;}
.x6{left:329.629333pt;}
.x17{left:336.781333pt;}
.x14{left:359.816000pt;}
.x16{left:402.517333pt;}
.xb{left:459.330667pt;}
.x8{left:507.114667pt;}
.x9{left:516.672000pt;}
.xc{left:541.228000pt;}
.xa{left:620.644000pt;}
}




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