
    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_25f3710e7285fd9255a5b1ad.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_e6b377dcd796997a6847f9df.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_b01ce670a21f869b760b4a40.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_50b684260e9fd2a6808af1ce.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c86f2c318f50a2cfee2269dc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951172;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_af802718307af685b622e427.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_4bce348af5cab34ddd6a2fe0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719727;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_0f03d73b6318de91e7155a00.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.580000;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;}
.m3{transform:matrix(0.000000,0.250210,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250210,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250210,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,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:-17.358000px;}
.v4{vertical-align:-2.262476px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.577320px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.696000px;}
.ls4{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.008377px;}
.ls6{letter-spacing:0.010348px;}
.ls1{letter-spacing:2.987100px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.993100px;}
.ls8{letter-spacing:12.309981px;}
.ls7{letter-spacing:13.850061px;}
.ls3{letter-spacing:14.898538px;}
.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;}
}
.ws1f{word-spacing:-14.943900px;}
.ws71{word-spacing:-13.449600px;}
.ws50{word-spacing:-3.227882px;}
.ws36{word-spacing:-3.168107px;}
.ws38{word-spacing:-2.809453px;}
.ws31{word-spacing:-2.689902px;}
.ws2e{word-spacing:-2.630126px;}
.wsc{word-spacing:-2.570351px;}
.ws52{word-spacing:-2.271473px;}
.ws3e{word-spacing:-2.151922px;}
.ws76{word-spacing:-1.775347px;}
.ws4a{word-spacing:-1.733492px;}
.ws23{word-spacing:-1.554166px;}
.wsf{word-spacing:-1.434614px;}
.wsb{word-spacing:-1.374839px;}
.ws3b{word-spacing:-1.255288px;}
.ws39{word-spacing:-1.195512px;}
.ws3f{word-spacing:-1.075961px;}
.ws1d{word-spacing:-0.657532px;}
.ws49{word-spacing:-0.537980px;}
.ws47{word-spacing:-0.478205px;}
.wsd{word-spacing:-0.418429px;}
.ws43{word-spacing:-0.239102px;}
.ws54{word-spacing:-0.119551px;}
.ws5c{word-spacing:-0.066525px;}
.ws5e{word-spacing:-0.062090px;}
.ws40{word-spacing:-0.059776px;}
.ws5f{word-spacing:-0.051742px;}
.ws72{word-spacing:-0.025142px;}
.ws74{word-spacing:-0.023510px;}
.ws73{word-spacing:-0.000624px;}
.ws12{word-spacing:-0.000617px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.119551px;}
.ws26{word-spacing:0.239102px;}
.ws27{word-spacing:0.298878px;}
.ws62{word-spacing:0.478205px;}
.ws46{word-spacing:0.597756px;}
.ws63{word-spacing:0.657532px;}
.ws2d{word-spacing:0.717307px;}
.ws56{word-spacing:0.836858px;}
.ws53{word-spacing:1.075961px;}
.ws6f{word-spacing:1.075968px;}
.ws70{word-spacing:1.129766px;}
.ws6a{word-spacing:1.135736px;}
.ws35{word-spacing:1.195512px;}
.ws41{word-spacing:1.315063px;}
.ws10{word-spacing:1.374839px;}
.ws6b{word-spacing:1.434614px;}
.ws30{word-spacing:1.494390px;}
.ws67{word-spacing:1.613941px;}
.ws2a{word-spacing:1.645090px;}
.ws2b{word-spacing:1.673717px;}
.ws1c{word-spacing:1.733492px;}
.ws24{word-spacing:1.756381px;}
.ws25{word-spacing:1.853044px;}
.ws48{word-spacing:1.912819px;}
.ws1e{word-spacing:2.032370px;}
.wse{word-spacing:2.151922px;}
.ws8{word-spacing:2.211697px;}
.ws32{word-spacing:2.450800px;}
.ws4f{word-spacing:2.570351px;}
.ws33{word-spacing:2.630126px;}
.ws6d{word-spacing:2.940211px;}
.ws6e{word-spacing:2.958912px;}
.ws28{word-spacing:3.048556px;}
.ws5a{word-spacing:3.128137px;}
.ws59{word-spacing:3.147125px;}
.ws5b{word-spacing:3.168107px;}
.ws58{word-spacing:3.227882px;}
.ws2c{word-spacing:3.586536px;}
.ws2f{word-spacing:3.646312px;}
.ws3a{word-spacing:3.706087px;}
.ws45{word-spacing:3.765863px;}
.ws3d{word-spacing:3.825638px;}
.ws37{word-spacing:3.885414px;}
.ws2{word-spacing:4.064741px;}
.ws66{word-spacing:4.124516px;}
.ws34{word-spacing:4.363619px;}
.ws44{word-spacing:4.483170px;}
.wsa{word-spacing:4.542946px;}
.ws7{word-spacing:4.602721px;}
.ws21{word-spacing:4.841824px;}
.ws20{word-spacing:4.856150px;}
.ws9{word-spacing:4.901599px;}
.ws42{word-spacing:4.961375px;}
.ws65{word-spacing:5.021150px;}
.ws55{word-spacing:5.140702px;}
.ws3{word-spacing:5.379804px;}
.ws75{word-spacing:5.595034px;}
.ws64{word-spacing:5.977560px;}
.ws4b{word-spacing:6.156887px;}
.ws5{word-spacing:6.336214px;}
.ws1a{word-spacing:6.395989px;}
.ws51{word-spacing:6.575316px;}
.ws22{word-spacing:6.933970px;}
.ws3c{word-spacing:6.993745px;}
.ws4e{word-spacing:7.113296px;}
.ws6{word-spacing:7.232848px;}
.ws57{word-spacing:7.352399px;}
.ws4c{word-spacing:7.651277px;}
.ws4d{word-spacing:8.607686px;}
.ws16{word-spacing:11.656242px;}
.ws1b{word-spacing:12.493100px;}
.ws19{word-spacing:12.971305px;}
.ws6c{word-spacing:17.155597px;}
.ws17{word-spacing:32.799640px;}
.ws18{word-spacing:32.816804px;}
.ws4{word-spacing:44.831700px;}
.ws1{word-spacing:61.139818px;}
.ws68{word-spacing:164.993698px;}
.ws11{word-spacing:183.301510px;}
.ws15{word-spacing:191.763388px;}
.ws69{word-spacing:308.188352px;}
.ws13{word-spacing:351.061403px;}
.ws14{word-spacing:365.437466px;}
.ws61{word-spacing:1109.886925px;}
.ws60{word-spacing:1163.337332px;}
.ws5d{word-spacing:1441.605706px;}
._1{margin-left:-6.576241px;}
._8{margin-left:-5.260253px;}
._2{margin-left:-4.222951px;}
._3{margin-left:-3.102112px;}
._0{margin-left:-1.859263px;}
._a{width:13.694832px;}
._7{width:16.192968px;}
._9{width:18.291334px;}
._d{width:20.084602px;}
._b{width:21.585211px;}
._c{width:23.300045px;}
._1b{width:29.911910px;}
._4{width:59.775600px;}
._5{width:159.608131px;}
._17{width:170.153647px;}
._18{width:179.226338px;}
._11{width:217.166609px;}
._19{width:223.800051px;}
._12{width:250.625482px;}
._6{width:259.607045px;}
._15{width:344.243792px;}
._14{width:368.366536px;}
._16{width:400.472897px;}
._e{width:486.395510px;}
._10{width:520.550357px;}
._1a{width:544.242812px;}
._f{width:810.128323px;}
._13{width:1244.488180px;}
.fc5{color:transparent;}
.fc4{color:rgb(88,89,89);}
.fc3{color:rgb(35,0,117);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs8{font-size:41.886323px;}
.fs2{font-size:44.233800px;}
.fs4{font-size:47.820600px;}
.fs7{font-size:51.698517px;}
.fs9{font-size:51.741928px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:55.591308px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:66.525337px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y81{bottom:7.041903px;}
.y79{bottom:7.059920px;}
.y7f{bottom:7.347334px;}
.y83{bottom:13.374440px;}
.y7e{bottom:19.666893px;}
.y86{bottom:60.912957px;}
.y85{bottom:76.312307px;}
.yb5{bottom:108.000000px;}
.y77{bottom:109.177500px;}
.y3d{bottom:115.819500px;}
.y87{bottom:119.566771px;}
.yb4{bottom:125.335500px;}
.y76{bottom:127.110000px;}
.y3c{bottom:133.752000px;}
.y7b{bottom:137.739925px;}
.yb3{bottom:141.774000px;}
.y75{bottom:145.042500px;}
.y3b{bottom:151.684500px;}
.yb2{bottom:159.108000px;}
.y88{bottom:160.109026px;}
.y74{bottom:162.975000px;}
.y3a{bottom:169.618500px;}
.yb1{bottom:176.443500px;}
.y73{bottom:180.907500px;}
.y7d{bottom:185.555616px;}
.y82{bottom:185.988601px;}
.y39{bottom:187.551000px;}
.y84{bottom:187.702206px;}
.yb0{bottom:193.779000px;}
.y72{bottom:198.841500px;}
.y38{bottom:205.483500px;}
.yaf{bottom:211.113000px;}
.y71{bottom:216.774000px;}
.y37{bottom:223.416000px;}
.yae{bottom:227.551500px;}
.y70{bottom:234.706500px;}
.y36{bottom:241.348500px;}
.yad{bottom:244.887000px;}
.y6f{bottom:252.639000px;}
.y35{bottom:259.281000px;}
.yac{bottom:262.222500px;}
.y6e{bottom:270.571500px;}
.y34{bottom:277.215000px;}
.yab{bottom:278.661000px;}
.y6d{bottom:288.504000px;}
.y33{bottom:295.147500px;}
.yaa{bottom:295.995000px;}
.y6c{bottom:306.438000px;}
.ya9{bottom:312.433500px;}
.y32{bottom:313.080000px;}
.y6b{bottom:324.370500px;}
.ya8{bottom:329.769000px;}
.y31{bottom:331.012500px;}
.y6a{bottom:342.303000px;}
.ya7{bottom:347.104500px;}
.y30{bottom:348.945000px;}
.y69{bottom:360.235500px;}
.ya6{bottom:363.780000px;}
.y2f{bottom:366.877500px;}
.y68{bottom:378.168000px;}
.y2e{bottom:384.811500px;}
.ya5{bottom:385.569000px;}
.y23{bottom:394.375500px;}
.y67{bottom:396.102000px;}
.y2d{bottom:402.744000px;}
.ya4{bottom:403.501500px;}
.y66{bottom:414.034500px;}
.y2c{bottom:420.676500px;}
.ya3{bottom:421.434000px;}
.y22{bottom:428.298000px;}
.y65{bottom:431.967000px;}
.y2b{bottom:438.609000px;}
.ya2{bottom:440.292000px;}
.y21{bottom:446.829000px;}
.y64{bottom:449.899500px;}
.y2a{bottom:456.541500px;}
.ya1{bottom:458.224500px;}
.y20{bottom:465.358500px;}
.y63{bottom:467.832000px;}
.y29{bottom:474.475500px;}
.ya0{bottom:476.157000px;}
.y1f{bottom:483.889500px;}
.y62{bottom:485.764500px;}
.y28{bottom:492.408000px;}
.y9f{bottom:494.091000px;}
.y1e{bottom:502.420500px;}
.y61{bottom:503.698500px;}
.y27{bottom:510.340500px;}
.y9e{bottom:512.023500px;}
.y1d{bottom:520.353000px;}
.y60{bottom:521.631000px;}
.y26{bottom:528.273000px;}
.y9d{bottom:530.194500px;}
.y5f{bottom:539.563500px;}
.y1c{bottom:542.470500px;}
.y25{bottom:546.205500px;}
.y9c{bottom:552.970500px;}
.y5e{bottom:557.496000px;}
.y24{bottom:564.138000px;}
.y9b{bottom:573.717780px;}
.y5d{bottom:575.428500px;}
.y1b{bottom:586.561500px;}
.y9a{bottom:590.395005px;}
.y5c{bottom:593.361000px;}
.y99{bottom:607.628835px;}
.y5b{bottom:611.295000px;}
.y1a{bottom:612.802500px;}
.y98{bottom:624.306060px;}
.y5a{bottom:629.227500px;}
.y19{bottom:630.735000px;}
.y97{bottom:641.539890px;}
.y59{bottom:647.160000px;}
.y18{bottom:648.667500px;}
.y96{bottom:658.773720px;}
.y58{bottom:665.092500px;}
.y17{bottom:666.600000px;}
.y95{bottom:675.450945px;}
.y57{bottom:683.025000px;}
.y16{bottom:684.532500px;}
.y94{bottom:696.018825px;}
.y56{bottom:700.957500px;}
.y15{bottom:702.466500px;}
.y55{bottom:718.891500px;}
.y14{bottom:720.399000px;}
.y93{bottom:725.908500px;}
.y54{bottom:736.824000px;}
.y13{bottom:738.331500px;}
.y92{bottom:743.841000px;}
.y53{bottom:754.756500px;}
.y12{bottom:756.264000px;}
.y91{bottom:761.773500px;}
.y52{bottom:772.689000px;}
.y11{bottom:774.196500px;}
.y90{bottom:779.706000px;}
.y51{bottom:790.621500px;}
.y10{bottom:792.129000px;}
.y8f{bottom:797.638500px;}
.y50{bottom:808.555500px;}
.yf{bottom:810.063000px;}
.y8e{bottom:815.572500px;}
.y4f{bottom:826.488000px;}
.ye{bottom:827.995500px;}
.y8d{bottom:833.505000px;}
.y4e{bottom:844.659000px;}
.yd{bottom:845.928000px;}
.y8c{bottom:851.437500px;}
.yc{bottom:863.860500px;}
.y8b{bottom:869.370000px;}
.y4d{bottom:870.900000px;}
.yb{bottom:881.793000px;}
.y8a{bottom:887.302500px;}
.y4c{bottom:888.832500px;}
.ya{bottom:899.725500px;}
.y4b{bottom:906.765000px;}
.y9{bottom:922.149000px;}
.y89{bottom:923.419500px;}
.y4a{bottom:924.697500px;}
.y49{bottom:942.630000px;}
.y7c{bottom:949.870341px;}
.y8{bottom:955.128000px;}
.y48{bottom:960.562500px;}
.y7{bottom:973.060500px;}
.y47{bottom:978.496500px;}
.y7a{bottom:983.328863px;}
.y6{bottom:990.993000px;}
.y46{bottom:996.429000px;}
.y45{bottom:1014.361500px;}
.y5{bottom:1020.321000px;}
.y44{bottom:1032.294000px;}
.y78{bottom:1037.446215px;}
.y80{bottom:1039.827435px;}
.y4{bottom:1042.446000px;}
.y43{bottom:1050.226500px;}
.y3{bottom:1058.967000px;}
.y42{bottom:1068.159000px;}
.y41{bottom:1086.093000px;}
.y2{bottom:1092.210000px;}
.y40{bottom:1104.025500px;}
.y3f{bottom:1121.958000px;}
.y1{bottom:1125.087000px;}
.y3e{bottom:1139.890500px;}
.h4{height:24.496205px;}
.hf{height:25.399680px;}
.h9{height:26.193420px;}
.he{height:30.953993px;}
.h11{height:31.067053px;}
.h5{height:32.661470px;}
.h8{height:37.013299px;}
.h16{height:37.228493px;}
.hc{height:38.205204px;}
.h15{height:38.246820px;}
.h12{height:38.376948px;}
.h14{height:38.469185px;}
.h13{height:39.954268px;}
.h7{height:41.125613px;}
.h6{height:41.364715px;}
.h10{height:47.079314px;}
.ha{height:49.341790px;}
.h3{height:52.305790px;}
.h2{height:71.478341px;}
.hb{height:144.391625px;}
.hd{height:204.964623px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:21.848805px;}
.w2{width:65.880420px;}
.w4{width:607.129027px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:2.891119px;}
.x14{left:6.203792px;}
.x18{left:9.076274px;}
.x1c{left:10.690098px;}
.x17{left:17.216332px;}
.x7{left:108.000000px;}
.x16{left:114.647250px;}
.x28{left:120.369465px;}
.x8{left:122.944500px;}
.x2a{left:130.312500px;}
.x24{left:133.870275px;}
.x25{left:139.666500px;}
.x1a{left:141.553766px;}
.x15{left:143.954880px;}
.x19{left:145.628986px;}
.x2b{left:147.873000px;}
.x23{left:149.123205px;}
.x26{left:154.905480px;}
.x6{left:175.690500px;}
.x21{left:194.235242px;}
.x1{left:204.532500px;}
.x22{left:255.111000px;}
.x3{left:271.417500px;}
.x13{left:272.754990px;}
.x1e{left:309.767433px;}
.x4{left:317.580000px;}
.x29{left:319.461000px;}
.x1d{left:331.552342px;}
.x2{left:337.003500px;}
.x1b{left:347.946060px;}
.x5{left:372.033000px;}
.x20{left:400.606690px;}
.x1f{left:423.212167px;}
.x27{left:446.369805px;}
.xa{left:561.112500px;}
.xb{left:566.859000px;}
.x9{left:571.954500px;}
.x10{left:578.667000px;}
.xc{left:582.393000px;}
.xf{left:590.671500px;}
.xd{left:608.919000px;}
.xe{left:612.513000px;}
.x11{left:653.535960px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-2.011090pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.402062pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.285333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007446pt;}
.ls6{letter-spacing:0.009199pt;}
.ls1{letter-spacing:2.655200pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.660533pt;}
.ls8{letter-spacing:10.942205pt;}
.ls7{letter-spacing:12.311165pt;}
.ls3{letter-spacing:13.243145pt;}
.ws1f{word-spacing:-13.283467pt;}
.ws71{word-spacing:-11.955200pt;}
.ws50{word-spacing:-2.869229pt;}
.ws36{word-spacing:-2.816095pt;}
.ws38{word-spacing:-2.497292pt;}
.ws31{word-spacing:-2.391024pt;}
.ws2e{word-spacing:-2.337890pt;}
.wsc{word-spacing:-2.284756pt;}
.ws52{word-spacing:-2.019087pt;}
.ws3e{word-spacing:-1.912819pt;}
.ws76{word-spacing:-1.578086pt;}
.ws4a{word-spacing:-1.540882pt;}
.ws23{word-spacing:-1.381481pt;}
.wsf{word-spacing:-1.275213pt;}
.wsb{word-spacing:-1.222079pt;}
.ws3b{word-spacing:-1.115811pt;}
.ws39{word-spacing:-1.062677pt;}
.ws3f{word-spacing:-0.956410pt;}
.ws1d{word-spacing:-0.584473pt;}
.ws49{word-spacing:-0.478205pt;}
.ws47{word-spacing:-0.425071pt;}
.wsd{word-spacing:-0.371937pt;}
.ws43{word-spacing:-0.212535pt;}
.ws54{word-spacing:-0.106268pt;}
.ws5c{word-spacing:-0.059134pt;}
.ws5e{word-spacing:-0.055191pt;}
.ws40{word-spacing:-0.053134pt;}
.ws5f{word-spacing:-0.045993pt;}
.ws72{word-spacing:-0.022349pt;}
.ws74{word-spacing:-0.020898pt;}
.ws73{word-spacing:-0.000555pt;}
.ws12{word-spacing:-0.000548pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.106268pt;}
.ws26{word-spacing:0.212535pt;}
.ws27{word-spacing:0.265669pt;}
.ws62{word-spacing:0.425071pt;}
.ws46{word-spacing:0.531339pt;}
.ws63{word-spacing:0.584473pt;}
.ws2d{word-spacing:0.637606pt;}
.ws56{word-spacing:0.743874pt;}
.ws53{word-spacing:0.956410pt;}
.ws6f{word-spacing:0.956416pt;}
.ws70{word-spacing:1.004237pt;}
.ws6a{word-spacing:1.009543pt;}
.ws35{word-spacing:1.062677pt;}
.ws41{word-spacing:1.168945pt;}
.ws10{word-spacing:1.222079pt;}
.ws6b{word-spacing:1.275213pt;}
.ws30{word-spacing:1.328347pt;}
.ws67{word-spacing:1.434614pt;}
.ws2a{word-spacing:1.462302pt;}
.ws2b{word-spacing:1.487748pt;}
.ws1c{word-spacing:1.540882pt;}
.ws24{word-spacing:1.561228pt;}
.ws25{word-spacing:1.647150pt;}
.ws48{word-spacing:1.700284pt;}
.ws1e{word-spacing:1.806551pt;}
.wse{word-spacing:1.912819pt;}
.ws8{word-spacing:1.965953pt;}
.ws32{word-spacing:2.178489pt;}
.ws4f{word-spacing:2.284756pt;}
.ws33{word-spacing:2.337890pt;}
.ws6d{word-spacing:2.613521pt;}
.ws6e{word-spacing:2.630144pt;}
.ws28{word-spacing:2.709827pt;}
.ws5a{word-spacing:2.780566pt;}
.ws59{word-spacing:2.797444pt;}
.ws5b{word-spacing:2.816095pt;}
.ws58{word-spacing:2.869229pt;}
.ws2c{word-spacing:3.188032pt;}
.ws2f{word-spacing:3.241166pt;}
.ws3a{word-spacing:3.294300pt;}
.ws45{word-spacing:3.347434pt;}
.ws3d{word-spacing:3.400567pt;}
.ws37{word-spacing:3.453701pt;}
.ws2{word-spacing:3.613103pt;}
.ws66{word-spacing:3.666237pt;}
.ws34{word-spacing:3.878772pt;}
.ws44{word-spacing:3.985040pt;}
.wsa{word-spacing:4.038174pt;}
.ws7{word-spacing:4.091308pt;}
.ws21{word-spacing:4.303843pt;}
.ws20{word-spacing:4.316578pt;}
.ws9{word-spacing:4.356977pt;}
.ws42{word-spacing:4.410111pt;}
.ws65{word-spacing:4.463245pt;}
.ws55{word-spacing:4.569513pt;}
.ws3{word-spacing:4.782048pt;}
.ws75{word-spacing:4.973363pt;}
.ws64{word-spacing:5.313387pt;}
.ws4b{word-spacing:5.472788pt;}
.ws5{word-spacing:5.632190pt;}
.ws1a{word-spacing:5.685324pt;}
.ws51{word-spacing:5.844725pt;}
.ws22{word-spacing:6.163529pt;}
.ws3c{word-spacing:6.216662pt;}
.ws4e{word-spacing:6.322930pt;}
.ws6{word-spacing:6.429198pt;}
.ws57{word-spacing:6.535466pt;}
.ws4c{word-spacing:6.801135pt;}
.ws4d{word-spacing:7.651277pt;}
.ws16{word-spacing:10.361104pt;}
.ws1b{word-spacing:11.104978pt;}
.ws19{word-spacing:11.530049pt;}
.ws6c{word-spacing:15.249420pt;}
.ws17{word-spacing:29.155235pt;}
.ws18{word-spacing:29.170493pt;}
.ws4{word-spacing:39.850400pt;}
.ws1{word-spacing:54.346505pt;}
.ws68{word-spacing:146.661064pt;}
.ws11{word-spacing:162.934675pt;}
.ws15{word-spacing:170.456345pt;}
.ws69{word-spacing:273.945202pt;}
.ws13{word-spacing:312.054580pt;}
.ws14{word-spacing:324.833303pt;}
.ws61{word-spacing:986.566155pt;}
.ws60{word-spacing:1034.077629pt;}
.ws5d{word-spacing:1281.427294pt;}
._1{margin-left:-5.845548pt;}
._8{margin-left:-4.675780pt;}
._2{margin-left:-3.753734pt;}
._3{margin-left:-2.757433pt;}
._0{margin-left:-1.652678pt;}
._a{width:12.173184pt;}
._7{width:14.393749pt;}
._9{width:16.258963pt;}
._d{width:17.852979pt;}
._b{width:19.186854pt;}
._c{width:20.711151pt;}
._1b{width:26.588365pt;}
._4{width:53.133867pt;}
._5{width:141.873894pt;}
._17{width:151.247686pt;}
._18{width:159.312300pt;}
._11{width:193.036986pt;}
._19{width:198.933378pt;}
._12{width:222.778206pt;}
._6{width:230.761818pt;}
._15{width:305.994482pt;}
._14{width:327.436921pt;}
._16{width:355.975909pt;}
._e{width:432.351565pt;}
._10{width:462.711428pt;}
._1a{width:483.771389pt;}
._f{width:720.114065pt;}
._13{width:1106.211716pt;}
.fs3{font-size:31.880533pt;}
.fs8{font-size:37.232287pt;}
.fs2{font-size:39.318933pt;}
.fs4{font-size:42.507200pt;}
.fs7{font-size:45.954237pt;}
.fs9{font-size:45.992825pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:49.414496pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:59.133633pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y81{bottom:6.259469pt;}
.y79{bottom:6.275485pt;}
.y7f{bottom:6.530963pt;}
.y83{bottom:11.888391pt;}
.y7e{bottom:17.481683pt;}
.y86{bottom:54.144851pt;}
.y85{bottom:67.833162pt;}
.yb5{bottom:96.000000pt;}
.y77{bottom:97.046667pt;}
.y3d{bottom:102.950667pt;}
.y87{bottom:106.281574pt;}
.yb4{bottom:111.409333pt;}
.y76{bottom:112.986667pt;}
.y3c{bottom:118.890667pt;}
.y7b{bottom:122.435489pt;}
.yb3{bottom:126.021333pt;}
.y75{bottom:128.926667pt;}
.y3b{bottom:134.830667pt;}
.yb2{bottom:141.429333pt;}
.y88{bottom:142.319134pt;}
.y74{bottom:144.866667pt;}
.y3a{bottom:150.772000pt;}
.yb1{bottom:156.838667pt;}
.y73{bottom:160.806667pt;}
.y7d{bottom:164.938325pt;}
.y82{bottom:165.323201pt;}
.y39{bottom:166.712000pt;}
.y84{bottom:166.846406pt;}
.yb0{bottom:172.248000pt;}
.y72{bottom:176.748000pt;}
.y38{bottom:182.652000pt;}
.yaf{bottom:187.656000pt;}
.y71{bottom:192.688000pt;}
.y37{bottom:198.592000pt;}
.yae{bottom:202.268000pt;}
.y70{bottom:208.628000pt;}
.y36{bottom:214.532000pt;}
.yad{bottom:217.677333pt;}
.y6f{bottom:224.568000pt;}
.y35{bottom:230.472000pt;}
.yac{bottom:233.086667pt;}
.y6e{bottom:240.508000pt;}
.y34{bottom:246.413333pt;}
.yab{bottom:247.698667pt;}
.y6d{bottom:256.448000pt;}
.y33{bottom:262.353333pt;}
.yaa{bottom:263.106667pt;}
.y6c{bottom:272.389333pt;}
.ya9{bottom:277.718667pt;}
.y32{bottom:278.293333pt;}
.y6b{bottom:288.329333pt;}
.ya8{bottom:293.128000pt;}
.y31{bottom:294.233333pt;}
.y6a{bottom:304.269333pt;}
.ya7{bottom:308.537333pt;}
.y30{bottom:310.173333pt;}
.y69{bottom:320.209333pt;}
.ya6{bottom:323.360000pt;}
.y2f{bottom:326.113333pt;}
.y68{bottom:336.149333pt;}
.y2e{bottom:342.054667pt;}
.ya5{bottom:342.728000pt;}
.y23{bottom:350.556000pt;}
.y67{bottom:352.090667pt;}
.y2d{bottom:357.994667pt;}
.ya4{bottom:358.668000pt;}
.y66{bottom:368.030667pt;}
.y2c{bottom:373.934667pt;}
.ya3{bottom:374.608000pt;}
.y22{bottom:380.709333pt;}
.y65{bottom:383.970667pt;}
.y2b{bottom:389.874667pt;}
.ya2{bottom:391.370667pt;}
.y21{bottom:397.181333pt;}
.y64{bottom:399.910667pt;}
.y2a{bottom:405.814667pt;}
.ya1{bottom:407.310667pt;}
.y20{bottom:413.652000pt;}
.y63{bottom:415.850667pt;}
.y29{bottom:421.756000pt;}
.ya0{bottom:423.250667pt;}
.y1f{bottom:430.124000pt;}
.y62{bottom:431.790667pt;}
.y28{bottom:437.696000pt;}
.y9f{bottom:439.192000pt;}
.y1e{bottom:446.596000pt;}
.y61{bottom:447.732000pt;}
.y27{bottom:453.636000pt;}
.y9e{bottom:455.132000pt;}
.y1d{bottom:462.536000pt;}
.y60{bottom:463.672000pt;}
.y26{bottom:469.576000pt;}
.y9d{bottom:471.284000pt;}
.y5f{bottom:479.612000pt;}
.y1c{bottom:482.196000pt;}
.y25{bottom:485.516000pt;}
.y9c{bottom:491.529333pt;}
.y5e{bottom:495.552000pt;}
.y24{bottom:501.456000pt;}
.y9b{bottom:509.971360pt;}
.y5d{bottom:511.492000pt;}
.y1b{bottom:521.388000pt;}
.y9a{bottom:524.795560pt;}
.y5c{bottom:527.432000pt;}
.y99{bottom:540.114520pt;}
.y5b{bottom:543.373333pt;}
.y1a{bottom:544.713333pt;}
.y98{bottom:554.938720pt;}
.y5a{bottom:559.313333pt;}
.y19{bottom:560.653333pt;}
.y97{bottom:570.257680pt;}
.y59{bottom:575.253333pt;}
.y18{bottom:576.593333pt;}
.y96{bottom:585.576640pt;}
.y58{bottom:591.193333pt;}
.y17{bottom:592.533333pt;}
.y95{bottom:600.400840pt;}
.y57{bottom:607.133333pt;}
.y16{bottom:608.473333pt;}
.y94{bottom:618.683400pt;}
.y56{bottom:623.073333pt;}
.y15{bottom:624.414667pt;}
.y55{bottom:639.014667pt;}
.y14{bottom:640.354667pt;}
.y93{bottom:645.252000pt;}
.y54{bottom:654.954667pt;}
.y13{bottom:656.294667pt;}
.y92{bottom:661.192000pt;}
.y53{bottom:670.894667pt;}
.y12{bottom:672.234667pt;}
.y91{bottom:677.132000pt;}
.y52{bottom:686.834667pt;}
.y11{bottom:688.174667pt;}
.y90{bottom:693.072000pt;}
.y51{bottom:702.774667pt;}
.y10{bottom:704.114667pt;}
.y8f{bottom:709.012000pt;}
.y50{bottom:718.716000pt;}
.yf{bottom:720.056000pt;}
.y8e{bottom:724.953333pt;}
.y4f{bottom:734.656000pt;}
.ye{bottom:735.996000pt;}
.y8d{bottom:740.893333pt;}
.y4e{bottom:750.808000pt;}
.yd{bottom:751.936000pt;}
.y8c{bottom:756.833333pt;}
.yc{bottom:767.876000pt;}
.y8b{bottom:772.773333pt;}
.y4d{bottom:774.133333pt;}
.yb{bottom:783.816000pt;}
.y8a{bottom:788.713333pt;}
.y4c{bottom:790.073333pt;}
.ya{bottom:799.756000pt;}
.y4b{bottom:806.013333pt;}
.y9{bottom:819.688000pt;}
.y89{bottom:820.817333pt;}
.y4a{bottom:821.953333pt;}
.y49{bottom:837.893333pt;}
.y7c{bottom:844.329192pt;}
.y8{bottom:849.002667pt;}
.y48{bottom:853.833333pt;}
.y7{bottom:864.942667pt;}
.y47{bottom:869.774667pt;}
.y7a{bottom:874.070101pt;}
.y6{bottom:880.882667pt;}
.y46{bottom:885.714667pt;}
.y45{bottom:901.654667pt;}
.y5{bottom:906.952000pt;}
.y44{bottom:917.594667pt;}
.y78{bottom:922.174414pt;}
.y80{bottom:924.291054pt;}
.y4{bottom:926.618667pt;}
.y43{bottom:933.534667pt;}
.y3{bottom:941.304000pt;}
.y42{bottom:949.474667pt;}
.y41{bottom:965.416000pt;}
.y2{bottom:970.853333pt;}
.y40{bottom:981.356000pt;}
.y3f{bottom:997.296000pt;}
.y1{bottom:1000.077333pt;}
.y3e{bottom:1013.236000pt;}
.h4{height:21.774404pt;}
.hf{height:22.577493pt;}
.h9{height:23.283040pt;}
.he{height:27.514660pt;}
.h11{height:27.615158pt;}
.h5{height:29.032418pt;}
.h8{height:32.900710pt;}
.h16{height:33.091994pt;}
.hc{height:33.960181pt;}
.h15{height:33.997173pt;}
.h12{height:34.112843pt;}
.h14{height:34.194831pt;}
.h13{height:35.514905pt;}
.h7{height:36.556100pt;}
.h6{height:36.768636pt;}
.h10{height:41.848279pt;}
.ha{height:43.859369pt;}
.h3{height:46.494035pt;}
.h2{height:63.536303pt;}
.hb{height:128.348111pt;}
.hd{height:182.190776pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:19.421160pt;}
.w2{width:58.560373pt;}
.w4{width:539.670246pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:2.569883pt;}
.x14{left:5.514482pt;}
.x18{left:8.067799pt;}
.x1c{left:9.502310pt;}
.x17{left:15.303406pt;}
.x7{left:96.000000pt;}
.x16{left:101.908667pt;}
.x28{left:106.995080pt;}
.x8{left:109.284000pt;}
.x2a{left:115.833333pt;}
.x24{left:118.995800pt;}
.x25{left:124.148000pt;}
.x1a{left:125.825570pt;}
.x15{left:127.959893pt;}
.x19{left:129.447987pt;}
.x2b{left:131.442667pt;}
.x23{left:132.553960pt;}
.x26{left:137.693760pt;}
.x6{left:156.169333pt;}
.x21{left:172.653549pt;}
.x1{left:181.806667pt;}
.x22{left:226.765333pt;}
.x3{left:241.260000pt;}
.x13{left:242.448880pt;}
.x1e{left:275.348829pt;}
.x4{left:282.293333pt;}
.x29{left:283.965333pt;}
.x1d{left:294.713193pt;}
.x2{left:299.558667pt;}
.x1b{left:309.285386pt;}
.x5{left:330.696000pt;}
.x20{left:356.094835pt;}
.x1f{left:376.188593pt;}
.x27{left:396.773160pt;}
.xa{left:498.766667pt;}
.xb{left:503.874667pt;}
.x9{left:508.404000pt;}
.x10{left:514.370667pt;}
.xc{left:517.682667pt;}
.xf{left:525.041333pt;}
.xd{left:541.261333pt;}
.xe{left:544.456000pt;}
.x11{left:580.920853pt;}
}




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