
    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_fcd8bb72b7d12dafd10cd94d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_3d9aa17c93b49898f17270e5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_285e7e650934f1dd214d8707.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_75388b09236393408ac7dce4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_eed5bbd45d1f5ea2c4580338.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_8b88e1debea6ae158e7ed301.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_0051c638fbf31ca3936e801c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736816;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_0c382907645f8ee67476bc4e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_ae21e8d6f75dd17629f2fa0f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.997559;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls19{letter-spacing:-1.800000px;}
.ls24{letter-spacing:-0.702000px;}
.ls2b{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.584400px;}
.ls1e{letter-spacing:-0.540000px;}
.ls13{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.216000px;}
.ls1d{letter-spacing:-0.206400px;}
.ls3{letter-spacing:-0.193800px;}
.ls25{letter-spacing:-0.126000px;}
.ls23{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.027360px;}
.lsc{letter-spacing:0.106560px;}
.ls7{letter-spacing:0.106800px;}
.ls2c{letter-spacing:0.126000px;}
.ls1b{letter-spacing:0.135600px;}
.ls9{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.193800px;}
.ls1a{letter-spacing:0.206400px;}
.ls18{letter-spacing:0.206640px;}
.ls28{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls1f{letter-spacing:0.345600px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.504000px;}
.ls26{letter-spacing:0.594000px;}
.ls15{letter-spacing:0.619920px;}
.ls12{letter-spacing:0.666000px;}
.ls27{letter-spacing:0.900000px;}
.ls29{letter-spacing:0.936000px;}
.ls22{letter-spacing:2.340000px;}
.lsd{letter-spacing:3.060000px;}
.ls8{letter-spacing:5.220000px;}
.ls20{letter-spacing:6.660000px;}
.ls17{letter-spacing:7.380000px;}
.ls10{letter-spacing:15.228000px;}
.lsf{letter-spacing:33.948000px;}
.ls5{letter-spacing:51.948000px;}
.ls21{letter-spacing:59.220000px;}
.ls14{letter-spacing:61.380000px;}
.lsb{letter-spacing:621.000000px;}
.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;}
}
.wsb{word-spacing:-15.606000px;}
.ws4{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.436000px;}
.ws0{word-spacing:-14.413800px;}
.ws2{word-spacing:-14.220000px;}
.ws1{word-spacing:-14.026200px;}
.ws11{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.716000px;}
.ws16{word-spacing:-13.626000px;}
.wsa{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.392000px;}
.ws15{word-spacing:-13.284000px;}
.ws12{word-spacing:-13.140000px;}
.ws10{word-spacing:-12.798000px;}
.wsd{word-spacing:-11.700000px;}
.wse{word-spacing:-9.720000px;}
.ws6{word-spacing:-0.414000px;}
.ws5{word-spacing:0.000000px;}
._0{margin-left:-10.820880px;}
._1f{margin-left:-7.938000px;}
._3{margin-left:-6.511680px;}
._4{margin-left:-4.692240px;}
._c{margin-left:-3.595680px;}
._6{margin-left:-2.581920px;}
._2{margin-left:-1.436400px;}
._1{width:1.149120px;}
._5{width:2.962560px;}
._a{width:4.038960px;}
._e{width:5.916240px;}
._d{width:6.975360px;}
._9{width:8.127360px;}
._8{width:9.382320px;}
._11{width:10.982160px;}
._b{width:12.071520px;}
._f{width:13.188960px;}
._18{width:14.796000px;}
._10{width:16.314480px;}
._13{width:17.540640px;}
._12{width:18.704880px;}
._1e{width:20.723040px;}
._15{width:22.111200px;}
._16{width:23.155920px;}
._21{width:24.274800px;}
._17{width:25.696800px;}
._1a{width:27.188640px;}
._19{width:28.266480px;}
._1c{width:29.331360px;}
._1b{width:30.399840px;}
._1d{width:34.242480px;}
._23{width:39.960000px;}
._24{width:41.112000px;}
._14{width:57.240000px;}
._20{width:59.220000px;}
._7{width:86.940000px;}
._22{width:719.550000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:4.140000px;}
.y1b{bottom:24.300000px;}
.y1a{bottom:44.640000px;}
.y1{bottom:57.996000px;}
.y51{bottom:232.950000px;}
.yce{bottom:236.370000px;}
.y45{bottom:238.710000px;}
.y18{bottom:242.310000px;}
.yfb{bottom:243.210000px;}
.y9e{bottom:243.930000px;}
.y50{bottom:249.690000px;}
.y95{bottom:250.590000px;}
.ycd{bottom:253.290000px;}
.y82{bottom:254.190000px;}
.y44{bottom:255.810000px;}
.yfa{bottom:260.130000px;}
.yb4{bottom:261.930000px;}
.y17{bottom:264.810000px;}
.y4f{bottom:266.610000px;}
.ycc{bottom:270.210000px;}
.y94{bottom:270.930000px;}
.y81{bottom:272.550000px;}
.y43{bottom:272.775000px;}
.y9d{bottom:273.135000px;}
.yf9{bottom:276.915000px;}
.y42{bottom:277.275000px;}
.yb3{bottom:282.135000px;}
.y4e{bottom:283.575000px;}
.ycb{bottom:287.175000px;}
.y4d{bottom:288.075000px;}
.y62{bottom:289.515000px;}
.y41{bottom:290.235000px;}
.y93{bottom:291.135000px;}
.y9c{bottom:293.475000px;}
.yf8{bottom:293.835000px;}
.yb2{bottom:302.475000px;}
.yca{bottom:303.915000px;}
.y4c{bottom:306.255000px;}
.y61{bottom:306.435000px;}
.y16{bottom:307.515000px;}
.y4b{bottom:310.755000px;}
.y60{bottom:310.935000px;}
.y40{bottom:311.475000px;}
.y5f{bottom:313.635000px;}
.yc9{bottom:320.835000px;}
.yb1{bottom:322.635000px;}
.y90{bottom:323.355000px;}
.y4a{bottom:324.075000px;}
.yf7{bottom:327.675000px;}
.y92{bottom:327.855000px;}
.y15{bottom:330.015000px;}
.y3f{bottom:331.635000px;}
.y5e{bottom:333.975000px;}
.yc8{bottom:337.755000px;}
.y8f{bottom:340.275000px;}
.y91{bottom:340.815000px;}
.yb0{bottom:342.975000px;}
.yf6{bottom:344.415000px;}
.y3e{bottom:351.975000px;}
.y14{bottom:352.515000px;}
.y5d{bottom:354.135000px;}
.yc7{bottom:354.675000px;}
.y8e{bottom:357.015000px;}
.y49{bottom:357.195000px;}
.y7f{bottom:358.635000px;}
.yf5{bottom:361.335000px;}
.yaf{bottom:363.135000px;}
.y80{bottom:363.855000px;}
.yc6{bottom:371.415000px;}
.y3d{bottom:372.135000px;}
.y8d{bottom:373.935000px;}
.y5c{bottom:374.475000px;}
.y13{bottom:375.015000px;}
.yf4{bottom:378.255000px;}
.y8c{bottom:378.435000px;}
.y7e{bottom:378.975000px;}
.yae{bottom:383.475000px;}
.yc5{bottom:388.335000px;}
.y3c{bottom:392.475000px;}
.y5b{bottom:394.635000px;}
.yf3{bottom:395.175000px;}
.y8b{bottom:396.615000px;}
.y12{bottom:397.515000px;}
.y7d{bottom:399.135000px;}
.yad{bottom:403.635000px;}
.yc4{bottom:405.255000px;}
.yf2{bottom:411.915000px;}
.y3a{bottom:412.635000px;}
.y8a{bottom:413.715000px;}
.y5a{bottom:414.975000px;}
.y3b{bottom:417.855000px;}
.y7c{bottom:419.475000px;}
.y11{bottom:420.015000px;}
.yc3{bottom:422.175000px;}
.yac{bottom:423.975000px;}
.yf1{bottom:428.835000px;}
.y89{bottom:430.635000px;}
.y39{bottom:432.975000px;}
.y59{bottom:435.135000px;}
.yc2{bottom:438.915000px;}
.y7b{bottom:439.635000px;}
.y10{bottom:442.515000px;}
.yab{bottom:444.135000px;}
.yf0{bottom:445.755000px;}
.y88{bottom:447.375000px;}
.y38{bottom:453.135000px;}
.y58{bottom:455.475000px;}
.yc1{bottom:455.835000px;}
.y7a{bottom:459.975000px;}
.yef{bottom:462.675000px;}
.y87{bottom:464.295000px;}
.yaa{bottom:464.475000px;}
.yf{bottom:465.015000px;}
.y86{bottom:468.795000px;}
.yc0{bottom:472.755000px;}
.y37{bottom:473.475000px;}
.y57{bottom:475.635000px;}
.yee{bottom:479.415000px;}
.y79{bottom:480.135000px;}
.y85{bottom:481.935000px;}
.ya9{bottom:484.635000px;}
.ye{bottom:487.515000px;}
.ybf{bottom:489.675000px;}
.y36{bottom:493.635000px;}
.y56{bottom:495.975000px;}
.yed{bottom:496.335000px;}
.y78{bottom:500.475000px;}
.ya8{bottom:504.975000px;}
.ybe{bottom:506.415000px;}
.yd{bottom:510.015000px;}
.yec{bottom:513.255000px;}
.y35{bottom:513.975000px;}
.y55{bottom:516.135000px;}
.ybd{bottom:523.335000px;}
.ya7{bottom:525.135000px;}
.yeb{bottom:530.175000px;}
.yc{bottom:532.515000px;}
.y34{bottom:534.135000px;}
.y54{bottom:536.475000px;}
.y102{bottom:539.355000px;}
.ybc{bottom:540.255000px;}
.y77{bottom:540.975000px;}
.ya6{bottom:545.475000px;}
.yea{bottom:546.915000px;}
.y33{bottom:554.475000px;}
.yb{bottom:555.015000px;}
.y53{bottom:556.665000px;}
.ybb{bottom:557.205000px;}
.y101{bottom:557.385000px;}
.ye9{bottom:563.865000px;}
.ya5{bottom:565.665000px;}
.yba{bottom:573.945000px;}
.y32{bottom:574.665000px;}
.y100{bottom:575.385000px;}
.y9b{bottom:577.005000px;}
.ya{bottom:577.545000px;}
.ye8{bottom:580.785000px;}
.y52{bottom:586.005000px;}
.yb9{bottom:590.865000px;}
.yff{bottom:593.385000px;}
.y31{bottom:595.005000px;}
.y9a{bottom:597.165000px;}
.ye7{bottom:597.705000px;}
.y9{bottom:600.045000px;}
.y76{bottom:601.665000px;}
.ya4{bottom:606.165000px;}
.yb8{bottom:607.785000px;}
.yfe{bottom:611.385000px;}
.ye6{bottom:614.445000px;}
.y30{bottom:615.165000px;}
.y99{bottom:617.505000px;}
.y75{bottom:622.005000px;}
.y8{bottom:622.545000px;}
.yb7{bottom:624.705000px;}
.ya3{bottom:626.505000px;}
.yfd{bottom:629.385000px;}
.ye5{bottom:631.365000px;}
.y2f{bottom:635.505000px;}
.y98{bottom:637.665000px;}
.y48{bottom:640.725000px;}
.yb6{bottom:641.445000px;}
.y74{bottom:642.165000px;}
.ya2{bottom:646.665000px;}
.ye4{bottom:648.285000px;}
.y2e{bottom:655.665000px;}
.y97{bottom:658.005000px;}
.yb5{bottom:658.365000px;}
.yfc{bottom:661.245000px;}
.y73{bottom:662.505000px;}
.ye3{bottom:665.205000px;}
.ya1{bottom:667.005000px;}
.y2d{bottom:676.005000px;}
.ye2{bottom:681.945000px;}
.y72{bottom:682.665000px;}
.y7{bottom:685.545000px;}
.y96{bottom:687.165000px;}
.y2c{bottom:696.165000px;}
.ye1{bottom:698.865000px;}
.y71{bottom:703.005000px;}
.ya0{bottom:707.505000px;}
.y6{bottom:713.265000px;}
.ye0{bottom:715.785000px;}
.y2b{bottom:716.505000px;}
.y70{bottom:723.165000px;}
.ydf{bottom:732.705000px;}
.y2a{bottom:736.665000px;}
.y6f{bottom:743.505000px;}
.yde{bottom:749.445000px;}
.y29{bottom:757.005000px;}
.y6e{bottom:763.665000px;}
.ydd{bottom:766.365000px;}
.y9f{bottom:768.165000px;}
.y5{bottom:775.545000px;}
.y28{bottom:777.165000px;}
.ydc{bottom:783.285000px;}
.y6d{bottom:784.005000px;}
.y27{bottom:797.505000px;}
.ydb{bottom:800.205000px;}
.y4{bottom:804.165000px;}
.yda{bottom:816.945000px;}
.y26{bottom:817.665000px;}
.y6c{bottom:824.505000px;}
.y3{bottom:832.605000px;}
.yd9{bottom:833.865000px;}
.y25{bottom:838.005000px;}
.y6b{bottom:844.710000px;}
.yd8{bottom:850.830000px;}
.y24{bottom:858.210000px;}
.y2{bottom:861.090000px;}
.y69{bottom:865.050000px;}
.yd7{bottom:867.750000px;}
.y6a{bottom:870.270000px;}
.y23{bottom:878.550000px;}
.yd6{bottom:884.490000px;}
.y68{bottom:885.210000px;}
.y22{bottom:898.710000px;}
.yd5{bottom:901.410000px;}
.y67{bottom:905.550000px;}
.yd4{bottom:918.330000px;}
.y21{bottom:919.050000px;}
.y66{bottom:925.710000px;}
.yd3{bottom:935.250000px;}
.y20{bottom:939.210000px;}
.y65{bottom:946.050000px;}
.y19{bottom:949.470000px;}
.yd2{bottom:951.990000px;}
.y1f{bottom:959.550000px;}
.y64{bottom:966.210000px;}
.yd1{bottom:968.910000px;}
.y47{bottom:979.710000px;}
.y84{bottom:984.930000px;}
.yd0{bottom:985.830000px;}
.y63{bottom:999.870000px;}
.y1e{bottom:1000.050000px;}
.ycf{bottom:1002.750000px;}
.y83{bottom:1005.270000px;}
.y46{bottom:1022.190000px;}
.y1d{bottom:1042.530000px;}
.hd{height:35.332031px;}
.hc{height:38.158594px;}
.h11{height:48.353906px;}
.h12{height:48.410156px;}
.h13{height:52.971680px;}
.h9{height:52.998047px;}
.hb{height:53.573906px;}
.h6{height:55.824609px;}
.h7{height:57.324375px;}
.h14{height:58.621992px;}
.h2{height:58.651172px;}
.hf{height:59.038594px;}
.h10{height:59.218594px;}
.he{height:60.226875px;}
.h8{height:60.840000px;}
.ha{height:66.757500px;}
.h3{height:67.565039px;}
.h5{height:70.664062px;}
.h4{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:584.025000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:10.800000px;}
.x5{left:170.129987px;}
.x3{left:188.490000px;}
.x1{left:201.989987px;}
.x9{left:206.489987px;}
.xc{left:227.549987px;}
.x10{left:245.729973px;}
.x11{left:250.589987px;}
.x2{left:252.929987px;}
.x17{left:369.794973px;}
.x18{left:374.654987px;}
.x12{left:382.214987px;}
.xf{left:391.394987px;}
.xd{left:406.874973px;}
.xe{left:411.734987px;}
.x8{left:418.034987px;}
.x15{left:452.414973px;}
.x16{left:457.274987px;}
.x1b{left:470.594973px;}
.x1c{left:475.484987px;}
.x6{left:496.544973px;}
.x7{left:501.404987px;}
.x13{left:575.024973px;}
.x14{left:579.884987px;}
.xa{left:593.744973px;}
.xb{left:598.604987px;}
.x19{left:658.004973px;}
.x1a{left:662.864987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls19{letter-spacing:-1.600000pt;}
.ls24{letter-spacing:-0.624000pt;}
.ls2b{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.519467pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls1d{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:-0.172267pt;}
.ls25{letter-spacing:-0.112000pt;}
.ls23{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024320pt;}
.lsc{letter-spacing:0.094720pt;}
.ls7{letter-spacing:0.094933pt;}
.ls2c{letter-spacing:0.112000pt;}
.ls1b{letter-spacing:0.120533pt;}
.ls9{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.172267pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls18{letter-spacing:0.183680pt;}
.ls28{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls1f{letter-spacing:0.307200pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.448000pt;}
.ls26{letter-spacing:0.528000pt;}
.ls15{letter-spacing:0.551040pt;}
.ls12{letter-spacing:0.592000pt;}
.ls27{letter-spacing:0.800000pt;}
.ls29{letter-spacing:0.832000pt;}
.ls22{letter-spacing:2.080000pt;}
.lsd{letter-spacing:2.720000pt;}
.ls8{letter-spacing:4.640000pt;}
.ls20{letter-spacing:5.920000pt;}
.ls17{letter-spacing:6.560000pt;}
.ls10{letter-spacing:13.536000pt;}
.lsf{letter-spacing:30.176000pt;}
.ls5{letter-spacing:46.176000pt;}
.ls21{letter-spacing:52.640000pt;}
.ls14{letter-spacing:54.560000pt;}
.lsb{letter-spacing:552.000000pt;}
.wsb{word-spacing:-13.872000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.832000pt;}
.ws0{word-spacing:-12.812267pt;}
.ws2{word-spacing:-12.640000pt;}
.ws1{word-spacing:-12.467733pt;}
.ws11{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.192000pt;}
.ws16{word-spacing:-12.112000pt;}
.wsa{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.904000pt;}
.ws15{word-spacing:-11.808000pt;}
.ws12{word-spacing:-11.680000pt;}
.ws10{word-spacing:-11.376000pt;}
.wsd{word-spacing:-10.400000pt;}
.wse{word-spacing:-8.640000pt;}
.ws6{word-spacing:-0.368000pt;}
.ws5{word-spacing:0.000000pt;}
._0{margin-left:-9.618560pt;}
._1f{margin-left:-7.056000pt;}
._3{margin-left:-5.788160pt;}
._4{margin-left:-4.170880pt;}
._c{margin-left:-3.196160pt;}
._6{margin-left:-2.295040pt;}
._2{margin-left:-1.276800pt;}
._1{width:1.021440pt;}
._5{width:2.633387pt;}
._a{width:3.590187pt;}
._e{width:5.258880pt;}
._d{width:6.200320pt;}
._9{width:7.224320pt;}
._8{width:8.339840pt;}
._11{width:9.761920pt;}
._b{width:10.730240pt;}
._f{width:11.723520pt;}
._18{width:13.152000pt;}
._10{width:14.501760pt;}
._13{width:15.591680pt;}
._12{width:16.626560pt;}
._1e{width:18.420480pt;}
._15{width:19.654400pt;}
._16{width:20.583040pt;}
._21{width:21.577600pt;}
._17{width:22.841600pt;}
._1a{width:24.167680pt;}
._19{width:25.125760pt;}
._1c{width:26.072320pt;}
._1b{width:27.022080pt;}
._1d{width:30.437760pt;}
._23{width:35.520000pt;}
._24{width:36.544000pt;}
._14{width:50.880000pt;}
._20{width:52.640000pt;}
._7{width:77.280000pt;}
._22{width:639.600000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:3.680000pt;}
.y1b{bottom:21.600000pt;}
.y1a{bottom:39.680000pt;}
.y1{bottom:51.552000pt;}
.y51{bottom:207.066667pt;}
.yce{bottom:210.106667pt;}
.y45{bottom:212.186667pt;}
.y18{bottom:215.386667pt;}
.yfb{bottom:216.186667pt;}
.y9e{bottom:216.826667pt;}
.y50{bottom:221.946667pt;}
.y95{bottom:222.746667pt;}
.ycd{bottom:225.146667pt;}
.y82{bottom:225.946667pt;}
.y44{bottom:227.386667pt;}
.yfa{bottom:231.226667pt;}
.yb4{bottom:232.826667pt;}
.y17{bottom:235.386667pt;}
.y4f{bottom:236.986667pt;}
.ycc{bottom:240.186667pt;}
.y94{bottom:240.826667pt;}
.y81{bottom:242.266667pt;}
.y43{bottom:242.466667pt;}
.y9d{bottom:242.786667pt;}
.yf9{bottom:246.146667pt;}
.y42{bottom:246.466667pt;}
.yb3{bottom:250.786667pt;}
.y4e{bottom:252.066667pt;}
.ycb{bottom:255.266667pt;}
.y4d{bottom:256.066667pt;}
.y62{bottom:257.346667pt;}
.y41{bottom:257.986667pt;}
.y93{bottom:258.786667pt;}
.y9c{bottom:260.866667pt;}
.yf8{bottom:261.186667pt;}
.yb2{bottom:268.866667pt;}
.yca{bottom:270.146667pt;}
.y4c{bottom:272.226667pt;}
.y61{bottom:272.386667pt;}
.y16{bottom:273.346667pt;}
.y4b{bottom:276.226667pt;}
.y60{bottom:276.386667pt;}
.y40{bottom:276.866667pt;}
.y5f{bottom:278.786667pt;}
.yc9{bottom:285.186667pt;}
.yb1{bottom:286.786667pt;}
.y90{bottom:287.426667pt;}
.y4a{bottom:288.066667pt;}
.yf7{bottom:291.266667pt;}
.y92{bottom:291.426667pt;}
.y15{bottom:293.346667pt;}
.y3f{bottom:294.786667pt;}
.y5e{bottom:296.866667pt;}
.yc8{bottom:300.226667pt;}
.y8f{bottom:302.466667pt;}
.y91{bottom:302.946667pt;}
.yb0{bottom:304.866667pt;}
.yf6{bottom:306.146667pt;}
.y3e{bottom:312.866667pt;}
.y14{bottom:313.346667pt;}
.y5d{bottom:314.786667pt;}
.yc7{bottom:315.266667pt;}
.y8e{bottom:317.346667pt;}
.y49{bottom:317.506667pt;}
.y7f{bottom:318.786667pt;}
.yf5{bottom:321.186667pt;}
.yaf{bottom:322.786667pt;}
.y80{bottom:323.426667pt;}
.yc6{bottom:330.146667pt;}
.y3d{bottom:330.786667pt;}
.y8d{bottom:332.386667pt;}
.y5c{bottom:332.866667pt;}
.y13{bottom:333.346667pt;}
.yf4{bottom:336.226667pt;}
.y8c{bottom:336.386667pt;}
.y7e{bottom:336.866667pt;}
.yae{bottom:340.866667pt;}
.yc5{bottom:345.186667pt;}
.y3c{bottom:348.866667pt;}
.y5b{bottom:350.786667pt;}
.yf3{bottom:351.266667pt;}
.y8b{bottom:352.546667pt;}
.y12{bottom:353.346667pt;}
.y7d{bottom:354.786667pt;}
.yad{bottom:358.786667pt;}
.yc4{bottom:360.226667pt;}
.yf2{bottom:366.146667pt;}
.y3a{bottom:366.786667pt;}
.y8a{bottom:367.746667pt;}
.y5a{bottom:368.866667pt;}
.y3b{bottom:371.426667pt;}
.y7c{bottom:372.866667pt;}
.y11{bottom:373.346667pt;}
.yc3{bottom:375.266667pt;}
.yac{bottom:376.866667pt;}
.yf1{bottom:381.186667pt;}
.y89{bottom:382.786667pt;}
.y39{bottom:384.866667pt;}
.y59{bottom:386.786667pt;}
.yc2{bottom:390.146667pt;}
.y7b{bottom:390.786667pt;}
.y10{bottom:393.346667pt;}
.yab{bottom:394.786667pt;}
.yf0{bottom:396.226667pt;}
.y88{bottom:397.666667pt;}
.y38{bottom:402.786667pt;}
.y58{bottom:404.866667pt;}
.yc1{bottom:405.186667pt;}
.y7a{bottom:408.866667pt;}
.yef{bottom:411.266667pt;}
.y87{bottom:412.706667pt;}
.yaa{bottom:412.866667pt;}
.yf{bottom:413.346667pt;}
.y86{bottom:416.706667pt;}
.yc0{bottom:420.226667pt;}
.y37{bottom:420.866667pt;}
.y57{bottom:422.786667pt;}
.yee{bottom:426.146667pt;}
.y79{bottom:426.786667pt;}
.y85{bottom:428.386667pt;}
.ya9{bottom:430.786667pt;}
.ye{bottom:433.346667pt;}
.ybf{bottom:435.266667pt;}
.y36{bottom:438.786667pt;}
.y56{bottom:440.866667pt;}
.yed{bottom:441.186667pt;}
.y78{bottom:444.866667pt;}
.ya8{bottom:448.866667pt;}
.ybe{bottom:450.146667pt;}
.yd{bottom:453.346667pt;}
.yec{bottom:456.226667pt;}
.y35{bottom:456.866667pt;}
.y55{bottom:458.786667pt;}
.ybd{bottom:465.186667pt;}
.ya7{bottom:466.786667pt;}
.yeb{bottom:471.266667pt;}
.yc{bottom:473.346667pt;}
.y34{bottom:474.786667pt;}
.y54{bottom:476.866667pt;}
.y102{bottom:479.426667pt;}
.ybc{bottom:480.226667pt;}
.y77{bottom:480.866667pt;}
.ya6{bottom:484.866667pt;}
.yea{bottom:486.146667pt;}
.y33{bottom:492.866667pt;}
.yb{bottom:493.346667pt;}
.y53{bottom:494.813333pt;}
.ybb{bottom:495.293333pt;}
.y101{bottom:495.453333pt;}
.ye9{bottom:501.213333pt;}
.ya5{bottom:502.813333pt;}
.yba{bottom:510.173333pt;}
.y32{bottom:510.813333pt;}
.y100{bottom:511.453333pt;}
.y9b{bottom:512.893333pt;}
.ya{bottom:513.373333pt;}
.ye8{bottom:516.253333pt;}
.y52{bottom:520.893333pt;}
.yb9{bottom:525.213333pt;}
.yff{bottom:527.453333pt;}
.y31{bottom:528.893333pt;}
.y9a{bottom:530.813333pt;}
.ye7{bottom:531.293333pt;}
.y9{bottom:533.373333pt;}
.y76{bottom:534.813333pt;}
.ya4{bottom:538.813333pt;}
.yb8{bottom:540.253333pt;}
.yfe{bottom:543.453333pt;}
.ye6{bottom:546.173333pt;}
.y30{bottom:546.813333pt;}
.y99{bottom:548.893333pt;}
.y75{bottom:552.893333pt;}
.y8{bottom:553.373333pt;}
.yb7{bottom:555.293333pt;}
.ya3{bottom:556.893333pt;}
.yfd{bottom:559.453333pt;}
.ye5{bottom:561.213333pt;}
.y2f{bottom:564.893333pt;}
.y98{bottom:566.813333pt;}
.y48{bottom:569.533333pt;}
.yb6{bottom:570.173333pt;}
.y74{bottom:570.813333pt;}
.ya2{bottom:574.813333pt;}
.ye4{bottom:576.253333pt;}
.y2e{bottom:582.813333pt;}
.y97{bottom:584.893333pt;}
.yb5{bottom:585.213333pt;}
.yfc{bottom:587.773333pt;}
.y73{bottom:588.893333pt;}
.ye3{bottom:591.293333pt;}
.ya1{bottom:592.893333pt;}
.y2d{bottom:600.893333pt;}
.ye2{bottom:606.173333pt;}
.y72{bottom:606.813333pt;}
.y7{bottom:609.373333pt;}
.y96{bottom:610.813333pt;}
.y2c{bottom:618.813333pt;}
.ye1{bottom:621.213333pt;}
.y71{bottom:624.893333pt;}
.ya0{bottom:628.893333pt;}
.y6{bottom:634.013333pt;}
.ye0{bottom:636.253333pt;}
.y2b{bottom:636.893333pt;}
.y70{bottom:642.813333pt;}
.ydf{bottom:651.293333pt;}
.y2a{bottom:654.813333pt;}
.y6f{bottom:660.893333pt;}
.yde{bottom:666.173333pt;}
.y29{bottom:672.893333pt;}
.y6e{bottom:678.813333pt;}
.ydd{bottom:681.213333pt;}
.y9f{bottom:682.813333pt;}
.y5{bottom:689.373333pt;}
.y28{bottom:690.813333pt;}
.ydc{bottom:696.253333pt;}
.y6d{bottom:696.893333pt;}
.y27{bottom:708.893333pt;}
.ydb{bottom:711.293333pt;}
.y4{bottom:714.813333pt;}
.yda{bottom:726.173333pt;}
.y26{bottom:726.813333pt;}
.y6c{bottom:732.893333pt;}
.y3{bottom:740.093333pt;}
.yd9{bottom:741.213333pt;}
.y25{bottom:744.893333pt;}
.y6b{bottom:750.853333pt;}
.yd8{bottom:756.293333pt;}
.y24{bottom:762.853333pt;}
.y2{bottom:765.413333pt;}
.y69{bottom:768.933333pt;}
.yd7{bottom:771.333333pt;}
.y6a{bottom:773.573333pt;}
.y23{bottom:780.933333pt;}
.yd6{bottom:786.213333pt;}
.y68{bottom:786.853333pt;}
.y22{bottom:798.853333pt;}
.yd5{bottom:801.253333pt;}
.y67{bottom:804.933333pt;}
.yd4{bottom:816.293333pt;}
.y21{bottom:816.933333pt;}
.y66{bottom:822.853333pt;}
.yd3{bottom:831.333333pt;}
.y20{bottom:834.853333pt;}
.y65{bottom:840.933333pt;}
.y19{bottom:843.973333pt;}
.yd2{bottom:846.213333pt;}
.y1f{bottom:852.933333pt;}
.y64{bottom:858.853333pt;}
.yd1{bottom:861.253333pt;}
.y47{bottom:870.853333pt;}
.y84{bottom:875.493333pt;}
.yd0{bottom:876.293333pt;}
.y63{bottom:888.773333pt;}
.y1e{bottom:888.933333pt;}
.ycf{bottom:891.333333pt;}
.y83{bottom:893.573333pt;}
.y46{bottom:908.613333pt;}
.y1d{bottom:926.693333pt;}
.hd{height:31.406250pt;}
.hc{height:33.918750pt;}
.h11{height:42.981250pt;}
.h12{height:43.031250pt;}
.h13{height:47.085938pt;}
.h9{height:47.109375pt;}
.hb{height:47.621250pt;}
.h6{height:49.621875pt;}
.h7{height:50.955000pt;}
.h14{height:52.108438pt;}
.h2{height:52.134375pt;}
.hf{height:52.478750pt;}
.h10{height:52.638750pt;}
.he{height:53.535000pt;}
.h8{height:54.080000pt;}
.ha{height:59.340000pt;}
.h3{height:60.057813pt;}
.h5{height:62.812500pt;}
.h4{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:519.133333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:9.600000pt;}
.x5{left:151.226655pt;}
.x3{left:167.546667pt;}
.x1{left:179.546655pt;}
.x9{left:183.546655pt;}
.xc{left:202.266655pt;}
.x10{left:218.426643pt;}
.x11{left:222.746655pt;}
.x2{left:224.826655pt;}
.x17{left:328.706643pt;}
.x18{left:333.026655pt;}
.x12{left:339.746655pt;}
.xf{left:347.906655pt;}
.xd{left:361.666643pt;}
.xe{left:365.986655pt;}
.x8{left:371.586655pt;}
.x15{left:402.146643pt;}
.x16{left:406.466655pt;}
.x1b{left:418.306643pt;}
.x1c{left:422.653322pt;}
.x6{left:441.373310pt;}
.x7{left:445.693322pt;}
.x13{left:511.133310pt;}
.x14{left:515.453322pt;}
.xa{left:527.773310pt;}
.xb{left:532.093322pt;}
.x19{left:584.893310pt;}
.x1a{left:589.213322pt;}
}




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