
    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_9a59135201b5d121b8da7e2f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_f0dc65e258a1a97db821c9c1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.899414;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_07534b1d82539485e03031f2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.082031;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_14374f474e5d7c8470796f9e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_3608acb3a1211fe5c1b24286.woff')format("woff");}.ff5{font-family:ff5;line-height:0.931152;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_aca26436ab6b29e22b804668.woff')format("woff");}.ff6{font-family:ff6;line-height:0.937000;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_9cc8ec2a0b060db9c735b130.woff')format("woff");}.ff7{font-family:ff7;line-height:1.082031;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_aa81398748d1f120d5fa2ed8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.931152;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_f019540ce9c459b39851a15e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_56a5337858a4aea94399ba84.woff')format("woff");}.ffa{font-family:ffa;line-height:0.899414;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9e9f38091401603872c1f26c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_273b59f07ecbe650a3b5c8eb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899414;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);}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.784000px;}
.ls20{letter-spacing:-2.808000px;}
.ls2d{letter-spacing:-1.728000px;}
.ls2e{letter-spacing:-1.584000px;}
.ls26{letter-spacing:-1.224000px;}
.ls2f{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.936000px;}
.ls16{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.792000px;}
.ls8{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.648000px;}
.ls1e{letter-spacing:-0.576000px;}
.ls14{letter-spacing:-0.504000px;}
.ls30{letter-spacing:-0.432000px;}
.ls13{letter-spacing:-0.360000px;}
.ls32{letter-spacing:-0.300000px;}
.lsa{letter-spacing:-0.288000px;}
.ls2c{letter-spacing:-0.252000px;}
.ls27{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.072000px;}
.ls7{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.300000px;}
.ls6{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.648000px;}
.ls2{letter-spacing:0.660000px;}
.lsd{letter-spacing:0.676800px;}
.ls25{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.ls10{letter-spacing:0.864000px;}
.lse{letter-spacing:0.936000px;}
.lsf{letter-spacing:1.008000px;}
.ls1c{letter-spacing:1.080000px;}
.ls1b{letter-spacing:1.224000px;}
.ls11{letter-spacing:1.288800px;}
.ls28{letter-spacing:2.736000px;}
.ls31{letter-spacing:4.752000px;}
.ls1{letter-spacing:4.848000px;}
.ls29{letter-spacing:4.881600px;}
.ls1d{letter-spacing:7.056000px;}
.ls2b{letter-spacing:7.344000px;}
.ls2a{letter-spacing:7.646400px;}
.ls9{letter-spacing:8.460000px;}
.ls0{letter-spacing:10.740000px;}
.ls12{letter-spacing:73.140000px;}
.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;}
}
.wse{word-spacing:-73.140000px;}
.ws1{word-spacing:-25.320000px;}
.wsd{word-spacing:-20.232000px;}
.ws2c{word-spacing:-19.872000px;}
.ws1c{word-spacing:-17.784000px;}
.ws25{word-spacing:-17.712000px;}
.ws2b{word-spacing:-16.920000px;}
.ws2d{word-spacing:-13.910400px;}
.ws33{word-spacing:-13.488000px;}
.ws34{word-spacing:-12.336000px;}
.ws17{word-spacing:-8.460000px;}
.ws35{word-spacing:-4.752000px;}
.ws20{word-spacing:-1.224000px;}
.ws21{word-spacing:-1.080000px;}
.ws19{word-spacing:-1.008000px;}
.ws18{word-spacing:-0.936000px;}
.ws1a{word-spacing:-0.864000px;}
.ws14{word-spacing:-0.792000px;}
.ws28{word-spacing:-0.720000px;}
.ws6{word-spacing:-0.660000px;}
.ws1b{word-spacing:-0.648000px;}
.ws8{word-spacing:-0.576000px;}
.wsa{word-spacing:-0.504000px;}
.ws1e{word-spacing:-0.432000px;}
.wsb{word-spacing:-0.360000px;}
.ws38{word-spacing:-0.300000px;}
.ws9{word-spacing:-0.288000px;}
.ws27{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.144000px;}
.ws26{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws24{word-spacing:0.072000px;}
.ws1f{word-spacing:0.144000px;}
.ws2a{word-spacing:0.216000px;}
.wsc{word-spacing:0.288000px;}
.ws37{word-spacing:0.300000px;}
.wsf{word-spacing:0.360000px;}
.ws32{word-spacing:0.432000px;}
.ws10{word-spacing:0.504000px;}
.ws1d{word-spacing:0.576000px;}
.ws11{word-spacing:0.648000px;}
.ws13{word-spacing:0.720000px;}
.ws7{word-spacing:0.780000px;}
.ws23{word-spacing:0.792000px;}
.ws12{word-spacing:0.864000px;}
.ws15{word-spacing:0.936000px;}
.ws30{word-spacing:1.008000px;}
.ws29{word-spacing:1.224000px;}
.ws36{word-spacing:1.440000px;}
.ws2f{word-spacing:1.584000px;}
.ws2e{word-spacing:1.728000px;}
.ws4{word-spacing:1.800000px;}
.ws31{word-spacing:2.400000px;}
.ws22{word-spacing:2.808000px;}
.ws5{word-spacing:3.312000px;}
.ws2{word-spacing:4.200000px;}
.ws0{word-spacing:8.376000px;}
._0{margin-left:-940.386000px;}
._1a{margin-left:-17.515200px;}
._1b{margin-left:-9.583200px;}
._18{margin-left:-8.508000px;}
._17{margin-left:-7.462800px;}
._1{margin-left:-5.964000px;}
._19{margin-left:-4.467600px;}
._15{margin-left:-3.427200px;}
._a{margin-left:-2.300400px;}
._3{margin-left:-1.248000px;}
._2{width:1.878000px;}
._8{width:3.004800px;}
._6{width:4.392000px;}
._c{width:5.875200px;}
._b{width:7.070400px;}
._4{width:8.460000px;}
._7{width:9.718800px;}
._9{width:11.120400px;}
._16{width:12.516000px;}
._e{width:44.328000px;}
._5{width:53.124000px;}
._11{width:71.016000px;}
._f{width:73.140000px;}
._10{width:75.264000px;}
._13{width:77.136000px;}
._12{width:97.140000px;}
._14{width:99.096000px;}
._d{width:201.564000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs4{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:39.000000px;}
.y22{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y46{bottom:117.000000px;}
.ya4{bottom:117.150000px;}
.y6b{bottom:118.110000px;}
.yca{bottom:119.316150px;}
.y80{bottom:119.408850px;}
.y21{bottom:120.218550px;}
.yc9{bottom:138.066150px;}
.y45{bottom:139.500000px;}
.ya3{bottom:139.650000px;}
.y6a{bottom:141.204000px;}
.y7f{bottom:142.214850px;}
.y20{bottom:142.718550px;}
.yc8{bottom:156.816150px;}
.y44{bottom:162.000000px;}
.ya2{bottom:162.150000px;}
.y69{bottom:164.298000px;}
.y7e{bottom:165.020850px;}
.y1f{bottom:165.218550px;}
.yef{bottom:175.122000px;}
.yc7{bottom:175.566150px;}
.y43{bottom:184.500000px;}
.ya1{bottom:184.650000px;}
.y68{bottom:187.392000px;}
.y1e{bottom:187.718550px;}
.y7d{bottom:187.826850px;}
.yee{bottom:193.872000px;}
.yc6{bottom:194.316150px;}
.y42{bottom:207.000000px;}
.ya0{bottom:207.150000px;}
.y1d{bottom:210.218550px;}
.y67{bottom:210.486000px;}
.y7c{bottom:210.632850px;}
.yed{bottom:212.622000px;}
.yc5{bottom:213.066150px;}
.y41{bottom:229.500000px;}
.y9f{bottom:229.650000px;}
.yec{bottom:231.372000px;}
.yc4{bottom:231.816150px;}
.y1c{bottom:232.718550px;}
.y7b{bottom:233.438850px;}
.y66{bottom:233.580000px;}
.yeb{bottom:250.122000px;}
.yc3{bottom:250.566150px;}
.y40{bottom:252.000000px;}
.y9e{bottom:252.150000px;}
.y1b{bottom:255.218550px;}
.y7a{bottom:256.244850px;}
.y65{bottom:256.674000px;}
.yc2{bottom:269.316150px;}
.y3f{bottom:274.500000px;}
.y9d{bottom:274.650000px;}
.y1a{bottom:277.718550px;}
.y79{bottom:279.050850px;}
.y64{bottom:279.768000px;}
.yea{bottom:280.122000px;}
.yc1{bottom:288.066150px;}
.y3e{bottom:297.000000px;}
.y9c{bottom:297.150000px;}
.y19{bottom:300.218550px;}
.y78{bottom:301.856850px;}
.y63{bottom:302.862000px;}
.yc0{bottom:306.816150px;}
.y3d{bottom:319.500000px;}
.y9b{bottom:319.650000px;}
.ye9{bottom:321.372000px;}
.y18{bottom:322.718550px;}
.y77{bottom:324.662850px;}
.y62{bottom:325.956000px;}
.ybf{bottom:331.980000px;}
.ye8{bottom:340.122000px;}
.y3c{bottom:342.000000px;}
.y9a{bottom:342.150000px;}
.y17{bottom:345.218550px;}
.y76{bottom:347.468850px;}
.y61{bottom:349.050000px;}
.ybe{bottom:349.980000px;}
.ye7{bottom:358.872000px;}
.y3b{bottom:364.500000px;}
.y99{bottom:364.650000px;}
.y16{bottom:367.718550px;}
.y75{bottom:370.274850px;}
.y60{bottom:372.144000px;}
.ye6{bottom:377.622000px;}
.y3a{bottom:387.000000px;}
.y98{bottom:387.150000px;}
.y15{bottom:390.218550px;}
.ybd{bottom:391.380000px;}
.y74{bottom:393.080850px;}
.y5f{bottom:395.238000px;}
.ye5{bottom:396.372000px;}
.ybc{bottom:406.524000px;}
.y39{bottom:409.500000px;}
.y97{bottom:409.650000px;}
.y14{bottom:412.718550px;}
.ye4{bottom:415.122000px;}
.y73{bottom:415.886850px;}
.y5e{bottom:418.332000px;}
.ybb{bottom:421.668000px;}
.y38{bottom:432.000000px;}
.y96{bottom:432.150000px;}
.ye3{bottom:433.872000px;}
.y13{bottom:435.218550px;}
.yba{bottom:436.812000px;}
.y72{bottom:438.692850px;}
.y5d{bottom:441.426000px;}
.yb9{bottom:451.956000px;}
.ye2{bottom:452.622000px;}
.y37{bottom:454.500000px;}
.y95{bottom:454.650000px;}
.y12{bottom:457.718550px;}
.y71{bottom:461.498850px;}
.y5c{bottom:464.520000px;}
.yb8{bottom:467.112000px;}
.ye1{bottom:471.372000px;}
.y36{bottom:477.000000px;}
.y94{bottom:477.150000px;}
.y11{bottom:480.218550px;}
.yb7{bottom:482.256000px;}
.y70{bottom:484.304850px;}
.y5b{bottom:487.614000px;}
.ye0{bottom:490.122000px;}
.y35{bottom:499.500000px;}
.y93{bottom:499.650000px;}
.y10{bottom:502.718550px;}
.yb6{bottom:503.784000px;}
.y6f{bottom:507.110850px;}
.ydf{bottom:508.872000px;}
.y5a{bottom:510.708000px;}
.y47{bottom:522.000000px;}
.y92{bottom:522.150000px;}
.yf{bottom:525.218550px;}
.yde{bottom:527.622000px;}
.y6e{bottom:529.916850px;}
.y59{bottom:533.802000px;}
.y34{bottom:544.500000px;}
.y91{bottom:544.650000px;}
.yb5{bottom:545.340000px;}
.ydd{bottom:546.372000px;}
.ye{bottom:547.718550px;}
.y6d{bottom:552.716850px;}
.y58{bottom:556.896000px;}
.yb4{bottom:560.484000px;}
.ydc{bottom:565.122000px;}
.y33{bottom:567.000000px;}
.y90{bottom:567.150000px;}
.yd{bottom:570.218550px;}
.y6c{bottom:575.522850px;}
.yb3{bottom:575.628000px;}
.y57{bottom:579.990000px;}
.ydb{bottom:583.872000px;}
.y32{bottom:589.500000px;}
.y8f{bottom:589.650000px;}
.yb2{bottom:590.772000px;}
.yc{bottom:592.718550px;}
.yda{bottom:602.622000px;}
.y56{bottom:603.084000px;}
.y31{bottom:612.000000px;}
.y8e{bottom:612.150000px;}
.yb1{bottom:612.300000px;}
.yb{bottom:615.218550px;}
.yd9{bottom:621.372000px;}
.y55{bottom:626.178000px;}
.y30{bottom:634.500000px;}
.y8d{bottom:634.650000px;}
.yd8{bottom:640.122000px;}
.y54{bottom:649.272000px;}
.y2f{bottom:657.000000px;}
.y8c{bottom:657.150000px;}
.yb0{bottom:657.438000px;}
.yd7{bottom:658.872000px;}
.ya{bottom:660.218550px;}
.y53{bottom:672.366000px;}
.yd6{bottom:677.622000px;}
.y9{bottom:678.968550px;}
.y2e{bottom:679.500000px;}
.y8b{bottom:679.650000px;}
.yaf{bottom:679.938000px;}
.y52{bottom:695.460000px;}
.yd5{bottom:696.372000px;}
.y8{bottom:697.718550px;}
.y2d{bottom:702.000000px;}
.y8a{bottom:702.150000px;}
.yae{bottom:702.438000px;}
.yd4{bottom:715.122000px;}
.y51{bottom:718.554000px;}
.y2c{bottom:724.500000px;}
.y89{bottom:724.650000px;}
.yad{bottom:724.938000px;}
.yd3{bottom:733.872000px;}
.y7{bottom:739.854300px;}
.y50{bottom:741.648000px;}
.y2b{bottom:747.000000px;}
.y88{bottom:747.150000px;}
.yac{bottom:747.438000px;}
.yd2{bottom:759.000000px;}
.y6{bottom:762.354300px;}
.y4f{bottom:764.742000px;}
.y2a{bottom:769.500000px;}
.yab{bottom:769.938000px;}
.yd1{bottom:777.000000px;}
.y4e{bottom:787.836000px;}
.y29{bottom:792.000000px;}
.y87{bottom:792.150000px;}
.yaa{bottom:792.438000px;}
.y4d{bottom:810.930000px;}
.y28{bottom:814.500000px;}
.y86{bottom:814.650000px;}
.ya9{bottom:814.938000px;}
.yd0{bottom:818.250000px;}
.y5{bottom:829.500000px;}
.y4c{bottom:834.024000px;}
.y27{bottom:837.000000px;}
.y85{bottom:837.150000px;}
.ya8{bottom:837.438000px;}
.ycf{bottom:855.750000px;}
.y4b{bottom:857.118000px;}
.y4{bottom:859.500000px;}
.y84{bottom:859.650000px;}
.ya7{bottom:859.938000px;}
.yce{bottom:874.500000px;}
.y4a{bottom:880.212000px;}
.y26{bottom:882.000000px;}
.y83{bottom:882.150000px;}
.ya6{bottom:882.438000px;}
.y3{bottom:889.500000px;}
.ycd{bottom:893.250000px;}
.y49{bottom:903.306000px;}
.y25{bottom:904.500000px;}
.y82{bottom:904.650000px;}
.ya5{bottom:904.794000px;}
.ycc{bottom:912.000000px;}
.y2{bottom:919.500000px;}
.y48{bottom:926.400000px;}
.y24{bottom:927.000000px;}
.y81{bottom:927.150000px;}
.ycb{bottom:930.750000px;}
.ha{height:35.184000px;}
.h1{height:39.990234px;}
.hb{height:40.757812px;}
.h7{height:41.396484px;}
.h3{height:42.000000px;}
.h9{height:43.980000px;}
.h4{height:49.675781px;}
.h5{height:50.947266px;}
.h6{height:61.136719px;}
.h8{height:66.579703px;}
.h2{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x4{left:67.500000px;}
.x6{left:82.381950px;}
.x2{left:112.500000px;}
.x3{left:127.381800px;}
.x5{left:135.000000px;}
.x7{left:180.526950px;}
.x1{left:635.390550px;}
@media print{
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.141333pt;}
.ls20{letter-spacing:-2.496000pt;}
.ls2d{letter-spacing:-1.536000pt;}
.ls2e{letter-spacing:-1.408000pt;}
.ls26{letter-spacing:-1.088000pt;}
.ls2f{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls16{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.704000pt;}
.ls8{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.576000pt;}
.ls1e{letter-spacing:-0.512000pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls32{letter-spacing:-0.266667pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls2c{letter-spacing:-0.224000pt;}
.ls27{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.266667pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.576000pt;}
.ls2{letter-spacing:0.586667pt;}
.lsd{letter-spacing:0.601600pt;}
.ls25{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.ls10{letter-spacing:0.768000pt;}
.lse{letter-spacing:0.832000pt;}
.lsf{letter-spacing:0.896000pt;}
.ls1c{letter-spacing:0.960000pt;}
.ls1b{letter-spacing:1.088000pt;}
.ls11{letter-spacing:1.145600pt;}
.ls28{letter-spacing:2.432000pt;}
.ls31{letter-spacing:4.224000pt;}
.ls1{letter-spacing:4.309333pt;}
.ls29{letter-spacing:4.339200pt;}
.ls1d{letter-spacing:6.272000pt;}
.ls2b{letter-spacing:6.528000pt;}
.ls2a{letter-spacing:6.796800pt;}
.ls9{letter-spacing:7.520000pt;}
.ls0{letter-spacing:9.546667pt;}
.ls12{letter-spacing:65.013333pt;}
.wse{word-spacing:-65.013333pt;}
.ws1{word-spacing:-22.506667pt;}
.wsd{word-spacing:-17.984000pt;}
.ws2c{word-spacing:-17.664000pt;}
.ws1c{word-spacing:-15.808000pt;}
.ws25{word-spacing:-15.744000pt;}
.ws2b{word-spacing:-15.040000pt;}
.ws2d{word-spacing:-12.364800pt;}
.ws33{word-spacing:-11.989333pt;}
.ws34{word-spacing:-10.965333pt;}
.ws17{word-spacing:-7.520000pt;}
.ws35{word-spacing:-4.224000pt;}
.ws20{word-spacing:-1.088000pt;}
.ws21{word-spacing:-0.960000pt;}
.ws19{word-spacing:-0.896000pt;}
.ws18{word-spacing:-0.832000pt;}
.ws1a{word-spacing:-0.768000pt;}
.ws14{word-spacing:-0.704000pt;}
.ws28{word-spacing:-0.640000pt;}
.ws6{word-spacing:-0.586667pt;}
.ws1b{word-spacing:-0.576000pt;}
.ws8{word-spacing:-0.512000pt;}
.wsa{word-spacing:-0.448000pt;}
.ws1e{word-spacing:-0.384000pt;}
.wsb{word-spacing:-0.320000pt;}
.ws38{word-spacing:-0.266667pt;}
.ws9{word-spacing:-0.256000pt;}
.ws27{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.128000pt;}
.ws26{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws24{word-spacing:0.064000pt;}
.ws1f{word-spacing:0.128000pt;}
.ws2a{word-spacing:0.192000pt;}
.wsc{word-spacing:0.256000pt;}
.ws37{word-spacing:0.266667pt;}
.wsf{word-spacing:0.320000pt;}
.ws32{word-spacing:0.384000pt;}
.ws10{word-spacing:0.448000pt;}
.ws1d{word-spacing:0.512000pt;}
.ws11{word-spacing:0.576000pt;}
.ws13{word-spacing:0.640000pt;}
.ws7{word-spacing:0.693333pt;}
.ws23{word-spacing:0.704000pt;}
.ws12{word-spacing:0.768000pt;}
.ws15{word-spacing:0.832000pt;}
.ws30{word-spacing:0.896000pt;}
.ws29{word-spacing:1.088000pt;}
.ws36{word-spacing:1.280000pt;}
.ws2f{word-spacing:1.408000pt;}
.ws2e{word-spacing:1.536000pt;}
.ws4{word-spacing:1.600000pt;}
.ws31{word-spacing:2.133333pt;}
.ws22{word-spacing:2.496000pt;}
.ws5{word-spacing:2.944000pt;}
.ws2{word-spacing:3.733333pt;}
.ws0{word-spacing:7.445333pt;}
._0{margin-left:-835.898667pt;}
._1a{margin-left:-15.569067pt;}
._1b{margin-left:-8.518400pt;}
._18{margin-left:-7.562667pt;}
._17{margin-left:-6.633600pt;}
._1{margin-left:-5.301333pt;}
._19{margin-left:-3.971200pt;}
._15{margin-left:-3.046400pt;}
._a{margin-left:-2.044800pt;}
._3{margin-left:-1.109333pt;}
._2{width:1.669333pt;}
._8{width:2.670933pt;}
._6{width:3.904000pt;}
._c{width:5.222400pt;}
._b{width:6.284800pt;}
._4{width:7.520000pt;}
._7{width:8.638933pt;}
._9{width:9.884800pt;}
._16{width:11.125333pt;}
._e{width:39.402667pt;}
._5{width:47.221333pt;}
._11{width:63.125333pt;}
._f{width:65.013333pt;}
._10{width:66.901333pt;}
._13{width:68.565333pt;}
._12{width:86.346667pt;}
._14{width:88.085333pt;}
._d{width:179.168000pt;}
.fs3{font-size:42.666667pt;}
.fs4{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:34.666667pt;}
.y22{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y46{bottom:104.000000pt;}
.ya4{bottom:104.133333pt;}
.y6b{bottom:104.986667pt;}
.yca{bottom:106.058800pt;}
.y80{bottom:106.141200pt;}
.y21{bottom:106.860933pt;}
.yc9{bottom:122.725467pt;}
.y45{bottom:124.000000pt;}
.ya3{bottom:124.133333pt;}
.y6a{bottom:125.514667pt;}
.y7f{bottom:126.413200pt;}
.y20{bottom:126.860933pt;}
.yc8{bottom:139.392133pt;}
.y44{bottom:144.000000pt;}
.ya2{bottom:144.133333pt;}
.y69{bottom:146.042667pt;}
.y7e{bottom:146.685200pt;}
.y1f{bottom:146.860933pt;}
.yef{bottom:155.664000pt;}
.yc7{bottom:156.058800pt;}
.y43{bottom:164.000000pt;}
.ya1{bottom:164.133333pt;}
.y68{bottom:166.570667pt;}
.y1e{bottom:166.860933pt;}
.y7d{bottom:166.957200pt;}
.yee{bottom:172.330667pt;}
.yc6{bottom:172.725467pt;}
.y42{bottom:184.000000pt;}
.ya0{bottom:184.133333pt;}
.y1d{bottom:186.860933pt;}
.y67{bottom:187.098667pt;}
.y7c{bottom:187.229200pt;}
.yed{bottom:188.997333pt;}
.yc5{bottom:189.392133pt;}
.y41{bottom:204.000000pt;}
.y9f{bottom:204.133333pt;}
.yec{bottom:205.664000pt;}
.yc4{bottom:206.058800pt;}
.y1c{bottom:206.860933pt;}
.y7b{bottom:207.501200pt;}
.y66{bottom:207.626667pt;}
.yeb{bottom:222.330667pt;}
.yc3{bottom:222.725467pt;}
.y40{bottom:224.000000pt;}
.y9e{bottom:224.133333pt;}
.y1b{bottom:226.860933pt;}
.y7a{bottom:227.773200pt;}
.y65{bottom:228.154667pt;}
.yc2{bottom:239.392133pt;}
.y3f{bottom:244.000000pt;}
.y9d{bottom:244.133333pt;}
.y1a{bottom:246.860933pt;}
.y79{bottom:248.045200pt;}
.y64{bottom:248.682667pt;}
.yea{bottom:248.997333pt;}
.yc1{bottom:256.058800pt;}
.y3e{bottom:264.000000pt;}
.y9c{bottom:264.133333pt;}
.y19{bottom:266.860933pt;}
.y78{bottom:268.317200pt;}
.y63{bottom:269.210667pt;}
.yc0{bottom:272.725467pt;}
.y3d{bottom:284.000000pt;}
.y9b{bottom:284.133333pt;}
.ye9{bottom:285.664000pt;}
.y18{bottom:286.860933pt;}
.y77{bottom:288.589200pt;}
.y62{bottom:289.738667pt;}
.ybf{bottom:295.093333pt;}
.ye8{bottom:302.330667pt;}
.y3c{bottom:304.000000pt;}
.y9a{bottom:304.133333pt;}
.y17{bottom:306.860933pt;}
.y76{bottom:308.861200pt;}
.y61{bottom:310.266667pt;}
.ybe{bottom:311.093333pt;}
.ye7{bottom:318.997333pt;}
.y3b{bottom:324.000000pt;}
.y99{bottom:324.133333pt;}
.y16{bottom:326.860933pt;}
.y75{bottom:329.133200pt;}
.y60{bottom:330.794667pt;}
.ye6{bottom:335.664000pt;}
.y3a{bottom:344.000000pt;}
.y98{bottom:344.133333pt;}
.y15{bottom:346.860933pt;}
.ybd{bottom:347.893333pt;}
.y74{bottom:349.405200pt;}
.y5f{bottom:351.322667pt;}
.ye5{bottom:352.330667pt;}
.ybc{bottom:361.354667pt;}
.y39{bottom:364.000000pt;}
.y97{bottom:364.133333pt;}
.y14{bottom:366.860933pt;}
.ye4{bottom:368.997333pt;}
.y73{bottom:369.677200pt;}
.y5e{bottom:371.850667pt;}
.ybb{bottom:374.816000pt;}
.y38{bottom:384.000000pt;}
.y96{bottom:384.133333pt;}
.ye3{bottom:385.664000pt;}
.y13{bottom:386.860933pt;}
.yba{bottom:388.277333pt;}
.y72{bottom:389.949200pt;}
.y5d{bottom:392.378667pt;}
.yb9{bottom:401.738667pt;}
.ye2{bottom:402.330667pt;}
.y37{bottom:404.000000pt;}
.y95{bottom:404.133333pt;}
.y12{bottom:406.860933pt;}
.y71{bottom:410.221200pt;}
.y5c{bottom:412.906667pt;}
.yb8{bottom:415.210667pt;}
.ye1{bottom:418.997333pt;}
.y36{bottom:424.000000pt;}
.y94{bottom:424.133333pt;}
.y11{bottom:426.860933pt;}
.yb7{bottom:428.672000pt;}
.y70{bottom:430.493200pt;}
.y5b{bottom:433.434667pt;}
.ye0{bottom:435.664000pt;}
.y35{bottom:444.000000pt;}
.y93{bottom:444.133333pt;}
.y10{bottom:446.860933pt;}
.yb6{bottom:447.808000pt;}
.y6f{bottom:450.765200pt;}
.ydf{bottom:452.330667pt;}
.y5a{bottom:453.962667pt;}
.y47{bottom:464.000000pt;}
.y92{bottom:464.133333pt;}
.yf{bottom:466.860933pt;}
.yde{bottom:468.997333pt;}
.y6e{bottom:471.037200pt;}
.y59{bottom:474.490667pt;}
.y34{bottom:484.000000pt;}
.y91{bottom:484.133333pt;}
.yb5{bottom:484.746667pt;}
.ydd{bottom:485.664000pt;}
.ye{bottom:486.860933pt;}
.y6d{bottom:491.303867pt;}
.y58{bottom:495.018667pt;}
.yb4{bottom:498.208000pt;}
.ydc{bottom:502.330667pt;}
.y33{bottom:504.000000pt;}
.y90{bottom:504.133333pt;}
.yd{bottom:506.860933pt;}
.y6c{bottom:511.575867pt;}
.yb3{bottom:511.669333pt;}
.y57{bottom:515.546667pt;}
.ydb{bottom:518.997333pt;}
.y32{bottom:524.000000pt;}
.y8f{bottom:524.133333pt;}
.yb2{bottom:525.130667pt;}
.yc{bottom:526.860933pt;}
.yda{bottom:535.664000pt;}
.y56{bottom:536.074667pt;}
.y31{bottom:544.000000pt;}
.y8e{bottom:544.133333pt;}
.yb1{bottom:544.266667pt;}
.yb{bottom:546.860933pt;}
.yd9{bottom:552.330667pt;}
.y55{bottom:556.602667pt;}
.y30{bottom:564.000000pt;}
.y8d{bottom:564.133333pt;}
.yd8{bottom:568.997333pt;}
.y54{bottom:577.130667pt;}
.y2f{bottom:584.000000pt;}
.y8c{bottom:584.133333pt;}
.yb0{bottom:584.389333pt;}
.yd7{bottom:585.664000pt;}
.ya{bottom:586.860933pt;}
.y53{bottom:597.658667pt;}
.yd6{bottom:602.330667pt;}
.y9{bottom:603.527600pt;}
.y2e{bottom:604.000000pt;}
.y8b{bottom:604.133333pt;}
.yaf{bottom:604.389333pt;}
.y52{bottom:618.186667pt;}
.yd5{bottom:618.997333pt;}
.y8{bottom:620.194267pt;}
.y2d{bottom:624.000000pt;}
.y8a{bottom:624.133333pt;}
.yae{bottom:624.389333pt;}
.yd4{bottom:635.664000pt;}
.y51{bottom:638.714667pt;}
.y2c{bottom:644.000000pt;}
.y89{bottom:644.133333pt;}
.yad{bottom:644.389333pt;}
.yd3{bottom:652.330667pt;}
.y7{bottom:657.648267pt;}
.y50{bottom:659.242667pt;}
.y2b{bottom:664.000000pt;}
.y88{bottom:664.133333pt;}
.yac{bottom:664.389333pt;}
.yd2{bottom:674.666667pt;}
.y6{bottom:677.648267pt;}
.y4f{bottom:679.770667pt;}
.y2a{bottom:684.000000pt;}
.yab{bottom:684.389333pt;}
.yd1{bottom:690.666667pt;}
.y4e{bottom:700.298667pt;}
.y29{bottom:704.000000pt;}
.y87{bottom:704.133333pt;}
.yaa{bottom:704.389333pt;}
.y4d{bottom:720.826667pt;}
.y28{bottom:724.000000pt;}
.y86{bottom:724.133333pt;}
.ya9{bottom:724.389333pt;}
.yd0{bottom:727.333333pt;}
.y5{bottom:737.333333pt;}
.y4c{bottom:741.354667pt;}
.y27{bottom:744.000000pt;}
.y85{bottom:744.133333pt;}
.ya8{bottom:744.389333pt;}
.ycf{bottom:760.666667pt;}
.y4b{bottom:761.882667pt;}
.y4{bottom:764.000000pt;}
.y84{bottom:764.133333pt;}
.ya7{bottom:764.389333pt;}
.yce{bottom:777.333333pt;}
.y4a{bottom:782.410667pt;}
.y26{bottom:784.000000pt;}
.y83{bottom:784.133333pt;}
.ya6{bottom:784.389333pt;}
.y3{bottom:790.666667pt;}
.ycd{bottom:794.000000pt;}
.y49{bottom:802.938667pt;}
.y25{bottom:804.000000pt;}
.y82{bottom:804.133333pt;}
.ya5{bottom:804.261333pt;}
.ycc{bottom:810.666667pt;}
.y2{bottom:817.333333pt;}
.y48{bottom:823.466667pt;}
.y24{bottom:824.000000pt;}
.y81{bottom:824.133333pt;}
.ycb{bottom:827.333333pt;}
.ha{height:31.274667pt;}
.h1{height:35.546875pt;}
.hb{height:36.229167pt;}
.h7{height:36.796875pt;}
.h3{height:37.333333pt;}
.h9{height:39.093333pt;}
.h4{height:44.156250pt;}
.h5{height:45.286458pt;}
.h6{height:54.343750pt;}
.h8{height:59.181958pt;}
.h2{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x4{left:60.000000pt;}
.x6{left:73.228400pt;}
.x2{left:100.000000pt;}
.x3{left:113.228267pt;}
.x5{left:120.000000pt;}
.x7{left:160.468400pt;}
.x1{left:564.791600pt;}
}




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