
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_02e5bc9424e72310b58cb27a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_492b726e26dd79dc41826cac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.966309;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_2efdfeaeea1a71f3fe643416.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c6d9824eb86af0873a3e2758.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8e5cc83234033176d26b65ef.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f6e3a5d258fb73639dd36dbc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_02749030b91fadfa79fb6697.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933594;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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_f3478898441a66711a09dc77.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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:-77.760000px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-1.908000px;}
.ls4{letter-spacing:-1.440000px;}
.ls15{letter-spacing:-1.422000px;}
.ls1a{letter-spacing:-0.972000px;}
.lsb{letter-spacing:-0.942000px;}
.ls10{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.630000px;}
.ls13{letter-spacing:-0.507000px;}
.ls8{letter-spacing:-0.493800px;}
.lsc{letter-spacing:-0.486600px;}
.lse{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.089400px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.020160px;}
.ls16{letter-spacing:0.200160px;}
.ls19{letter-spacing:0.466800px;}
.lsf{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.720000px;}
.ls2{letter-spacing:0.869760px;}
.ls11{letter-spacing:1.458000px;}
.lsd{letter-spacing:2.160000px;}
.ls14{letter-spacing:3.600000px;}
.ls1{letter-spacing:12.240000px;}
.ls17{letter-spacing:46.546560px;}
.ls12{letter-spacing:63.826560px;}
.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;}
}
.wsd{word-spacing:-60.480000px;}
.wsc{word-spacing:-16.578000px;}
.wsa{word-spacing:-15.606600px;}
.ws10{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wse{word-spacing:-14.633400px;}
.wsb{word-spacing:-14.184000px;}
.wsf{word-spacing:-13.698000px;}
.ws1{word-spacing:-13.680000px;}
.ws11{word-spacing:-13.212000px;}
.ws6{word-spacing:-13.050000px;}
.ws7{word-spacing:-12.738000px;}
.ws4{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.946200px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._11{margin-left:-3.551520px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._d{width:4.784640px;}
._e{width:6.649920px;}
._f{width:7.780320px;}
._c{width:9.046080px;}
._9{width:10.205280px;}
._a{width:11.328480px;}
._5{width:12.528000px;}
._6{width:14.031360px;}
._b{width:15.746400px;}
._12{width:17.115840px;}
._13{width:18.714240px;}
._14{width:19.759680px;}
._15{width:21.090240px;}
._18{width:22.619520px;}
._19{width:23.826240px;}
._1a{width:25.228320px;}
._1b{width:27.095040px;}
._17{width:28.546560px;}
._16{width:30.144960px;}
._1f{width:87.114240px;}
._1c{width:88.453440px;}
._1d{width:89.478240px;}
._1e{width:90.502080px;}
._10{width:200.880000px;}
._8{width:202.320000px;}
._7{width:1427.413920px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:5.760000px;}
.fs5{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:3.595500px;}
.y5{bottom:3.960000px;}
.y59{bottom:5.370000px;}
.y2{bottom:7.920000px;}
.y55{bottom:9.031500px;}
.y4{bottom:21.240000px;}
.y54{bottom:24.514500px;}
.y48{bottom:33.154500px;}
.y41{bottom:38.520000px;}
.y53{bottom:42.154500px;}
.y3{bottom:44.280000px;}
.y47{bottom:54.034500px;}
.y40{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y52{bottom:57.994500px;}
.y46{bottom:66.994500px;}
.y3f{bottom:73.080000px;}
.y51{bottom:73.474500px;}
.y50{bottom:86.434500px;}
.y45{bottom:86.794500px;}
.y3e{bottom:90.405000px;}
.y4f{bottom:92.554500px;}
.yf4{bottom:93.276000px;}
.y57{bottom:93.996000px;}
.y93{bottom:96.516000px;}
.yc1{bottom:98.676000px;}
.y3d{bottom:107.685000px;}
.y4e{bottom:108.394500px;}
.yf3{bottom:110.556000px;}
.y92{bottom:113.796000px;}
.y56{bottom:120.636000px;}
.y4d{bottom:123.874500px;}
.yc0{bottom:124.956000px;}
.y3c{bottom:124.965000px;}
.yf2{bottom:128.196000px;}
.y91{bottom:131.076000px;}
.y42{bottom:134.680500px;}
.y4c{bottom:139.384500px;}
.y3b{bottom:142.245000px;}
.yf1{bottom:145.512000px;}
.y90{bottom:148.392000px;}
.y44{bottom:148.744500px;}
.ybf{bottom:151.275000px;}
.y4b{bottom:154.864500px;}
.y3a{bottom:159.165000px;}
.y43{bottom:159.544500px;}
.yf0{bottom:162.435000px;}
.y8f{bottom:165.675000px;}
.y4a{bottom:170.344500px;}
.y39{bottom:176.445000px;}
.ybe{bottom:177.915000px;}
.y8e{bottom:182.955000px;}
.yef{bottom:189.075000px;}
.y38{bottom:193.725000px;}
.ybd{bottom:195.195000px;}
.y8d{bottom:200.235000px;}
.yee{bottom:206.355000px;}
.y37{bottom:211.005000px;}
.ybc{bottom:212.475000px;}
.y8c{bottom:217.515000px;}
.yed{bottom:223.275000px;}
.y36{bottom:228.315000px;}
.ybb{bottom:229.755000px;}
.y8b{bottom:234.795000px;}
.yec{bottom:240.555000px;}
.y35{bottom:245.595000px;}
.yba{bottom:247.035000px;}
.y117{bottom:250.275000px;}
.y8a{bottom:252.075000px;}
.yeb{bottom:257.475000px;}
.y34{bottom:262.875000px;}
.yb9{bottom:264.315000px;}
.y116{bottom:267.555000px;}
.y89{bottom:269.355000px;}
.y33{bottom:280.155000px;}
.yb8{bottom:281.265000px;}
.yea{bottom:284.145000px;}
.y115{bottom:284.865000px;}
.y88{bottom:286.305000px;}
.y32{bottom:297.435000px;}
.yb7{bottom:298.545000px;}
.ye9{bottom:301.425000px;}
.y114{bottom:302.145000px;}
.y87{bottom:303.585000px;}
.y31{bottom:314.355000px;}
.yb6{bottom:315.825000px;}
.ye8{bottom:318.705000px;}
.y113{bottom:319.425000px;}
.y86{bottom:320.865000px;}
.ye{bottom:323.745000px;}
.y1c{bottom:324.075000px;}
.yb5{bottom:333.105000px;}
.ye7{bottom:335.985000px;}
.y112{bottom:336.705000px;}
.y85{bottom:338.145000px;}
.y30{bottom:340.275000px;}
.y1b{bottom:348.225000px;}
.yb4{bottom:350.385000px;}
.ye6{bottom:352.905000px;}
.y111{bottom:353.985000px;}
.y84{bottom:355.425000px;}
.y2f{bottom:355.785000px;}
.yb3{bottom:367.665000px;}
.y2e{bottom:371.265000px;}
.y1a{bottom:372.345000px;}
.y83{bottom:372.705000px;}
.ye5{bottom:379.545000px;}
.yb2{bottom:384.945000px;}
.y2d{bottom:386.745000px;}
.y110{bottom:388.545000px;}
.y82{bottom:389.985000px;}
.y19{bottom:396.465000px;}
.ye4{bottom:396.825000px;}
.y2c{bottom:402.225000px;}
.y10f{bottom:405.870000px;}
.y81{bottom:407.310000px;}
.ye3{bottom:414.150000px;}
.y2b{bottom:417.705000px;}
.yb1{bottom:419.550000px;}
.y18{bottom:420.585000px;}
.y10e{bottom:423.150000px;}
.y80{bottom:424.590000px;}
.ye2{bottom:431.430000px;}
.y2a{bottom:433.185000px;}
.yb0{bottom:436.830000px;}
.y10d{bottom:440.430000px;}
.y7f{bottom:441.870000px;}
.y17{bottom:444.705000px;}
.ye1{bottom:447.990000px;}
.y29{bottom:449.025000px;}
.yaf{bottom:454.110000px;}
.y10c{bottom:457.350000px;}
.y7e{bottom:459.150000px;}
.y28{bottom:464.505000px;}
.y16{bottom:469.185000px;}
.yae{bottom:471.030000px;}
.ye0{bottom:474.630000px;}
.y7d{bottom:476.430000px;}
.y27{bottom:480.030000px;}
.yad{bottom:488.310000px;}
.ydf{bottom:491.910000px;}
.y15{bottom:493.350000px;}
.y26{bottom:495.510000px;}
.yac{bottom:505.590000px;}
.yde{bottom:509.190000px;}
.y7c{bottom:510.630000px;}
.y25{bottom:510.990000px;}
.y14{bottom:517.470000px;}
.yab{bottom:522.870000px;}
.ydd{bottom:526.110000px;}
.y24{bottom:526.470000px;}
.y7b{bottom:527.910000px;}
.yaa{bottom:540.180000px;}
.y13{bottom:541.590000px;}
.y23{bottom:541.950000px;}
.y10b{bottom:543.420000px;}
.y7a{bottom:545.220000px;}
.ydc{bottom:552.780000px;}
.y22{bottom:557.430000px;}
.ya9{bottom:557.460000px;}
.y79{bottom:562.500000px;}
.y12{bottom:565.710000px;}
.ydb{bottom:570.060000px;}
.y21{bottom:573.270000px;}
.ya8{bottom:574.740000px;}
.y78{bottom:579.780000px;}
.yda{bottom:587.340000px;}
.y20{bottom:588.750000px;}
.y11{bottom:589.830000px;}
.ya7{bottom:592.020000px;}
.y77{bottom:597.060000px;}
.y1f{bottom:604.230000px;}
.yd9{bottom:604.260000px;}
.y10a{bottom:604.620000px;}
.ya6{bottom:609.300000px;}
.y10{bottom:613.980000px;}
.y76{bottom:614.340000px;}
.y1e{bottom:619.740000px;}
.yd8{bottom:621.540000px;}
.y109{bottom:621.900000px;}
.ya5{bottom:626.580000px;}
.y75{bottom:631.620000px;}
.y1d{bottom:634.860000px;}
.yf{bottom:638.100000px;}
.y108{bottom:639.180000px;}
.ya4{bottom:643.860000px;}
.yd7{bottom:648.180000px;}
.y74{bottom:648.900000px;}
.y107{bottom:656.100000px;}
.ya3{bottom:661.140000px;}
.yd6{bottom:665.100000px;}
.y73{bottom:666.180000px;}
.y106{bottom:673.410000px;}
.ya2{bottom:678.090000px;}
.yd5{bottom:682.410000px;}
.y72{bottom:683.130000px;}
.y105{bottom:690.690000px;}
.ya1{bottom:695.010000px;}
.yd4{bottom:699.690000px;}
.y71{bottom:700.410000px;}
.y104{bottom:707.970000px;}
.yd3{bottom:716.970000px;}
.y70{bottom:717.690000px;}
.ya0{bottom:721.650000px;}
.y103{bottom:725.250000px;}
.yd2{bottom:734.250000px;}
.y6f{bottom:734.970000px;}
.y9f{bottom:738.930000px;}
.y102{bottom:742.530000px;}
.yd1{bottom:751.170000px;}
.y6e{bottom:752.250000px;}
.y9e{bottom:756.210000px;}
.y101{bottom:759.810000px;}
.y6d{bottom:769.530000px;}
.y9d{bottom:773.130000px;}
.y100{bottom:776.730000px;}
.yd0{bottom:777.810000px;}
.y6c{bottom:786.810000px;}
.ycf{bottom:795.090000px;}
.y9c{bottom:799.770000px;}
.yff{bottom:803.415000px;}
.y6b{bottom:804.135000px;}
.yce{bottom:812.415000px;}
.y9b{bottom:817.095000px;}
.yfe{bottom:820.695000px;}
.y6a{bottom:821.415000px;}
.ycd{bottom:829.695000px;}
.y9a{bottom:835.455000px;}
.yfd{bottom:837.975000px;}
.y69{bottom:838.335000px;}
.ycc{bottom:846.975000px;}
.y99{bottom:852.735000px;}
.yfc{bottom:854.895000px;}
.ycb{bottom:863.895000px;}
.y68{bottom:864.975000px;}
.y98{bottom:871.095000px;}
.yfb{bottom:881.175000px;}
.y67{bottom:882.255000px;}
.y97{bottom:888.015000px;}
.yca{bottom:890.175000px;}
.yfa{bottom:898.455000px;}
.y66{bottom:899.175000px;}
.y96{bottom:906.375000px;}
.yc9{bottom:907.455000px;}
.yf9{bottom:915.735000px;}
.y65{bottom:916.455000px;}
.y95{bottom:923.655000px;}
.yc8{bottom:924.735000px;}
.yf8{bottom:933.045000px;}
.y64{bottom:933.765000px;}
.y94{bottom:941.685000px;}
.yc7{bottom:942.045000px;}
.yf7{bottom:949.965000px;}
.y63{bottom:951.045000px;}
.yc6{bottom:959.325000px;}
.y62{bottom:968.325000px;}
.yc5{bottom:976.605000px;}
.yd{bottom:983.805000px;}
.y61{bottom:985.605000px;}
.yc{bottom:991.725000px;}
.yc4{bottom:993.525000px;}
.yf6{bottom:993.885000px;}
.y60{bottom:1002.885000px;}
.yb{bottom:1009.005000px;}
.yf5{bottom:1010.805000px;}
.y5f{bottom:1020.165000px;}
.y5e{bottom:1037.445000px;}
.ya{bottom:1045.005000px;}
.y5d{bottom:1054.725000px;}
.y9{bottom:1069.530000px;}
.y5c{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.yc3{bottom:1088.610000px;}
.y5b{bottom:1088.970000px;}
.y58{bottom:1091.520000px;}
.yc2{bottom:1105.890000px;}
.y5a{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.h12{height:5.650313px;}
.h9{height:18.372656px;}
.h6{height:24.348516px;}
.h13{height:27.720000px;}
.h10{height:29.678906px;}
.hc{height:40.985156px;}
.hb{height:42.086250px;}
.hd{height:53.677969px;}
.h11{height:55.147500px;}
.h5{height:59.357813px;}
.he{height:60.155156px;}
.h8{height:60.952500px;}
.h15{height:62.163910px;}
.h14{height:63.455625px;}
.h7{height:63.577969px;}
.h3{height:65.884219px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.hf{height:188.325000px;}
.ha{height:647.445000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:6.876000px;}
.x16{left:8.266500px;}
.x4{left:13.305000px;}
.x14{left:17.266500px;}
.x19{left:18.346500px;}
.x5{left:19.425000px;}
.x15{left:29.146500px;}
.xe{left:43.906500px;}
.x1a{left:47.542500px;}
.x6{left:48.615000px;}
.xf{left:50.782500px;}
.x13{left:54.022500px;}
.xd{left:55.102500px;}
.x1b{left:57.262500px;}
.x12{left:75.985500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x11{left:90.025500px;}
.x2{left:95.425500px;}
.x1c{left:102.985500px;}
.x18{left:106.945500px;}
.x1e{left:113.436000px;}
.x10{left:124.585500px;}
.x3{left:182.250000px;}
.x17{left:218.970000px;}
.xa{left:267.945000px;}
.xb{left:580.215000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xc{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-1.696000pt;}
.ls4{letter-spacing:-1.280000pt;}
.ls15{letter-spacing:-1.264000pt;}
.ls1a{letter-spacing:-0.864000pt;}
.lsb{letter-spacing:-0.837333pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.560000pt;}
.ls13{letter-spacing:-0.450667pt;}
.ls8{letter-spacing:-0.438933pt;}
.lsc{letter-spacing:-0.432533pt;}
.lse{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.079467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.017920pt;}
.ls16{letter-spacing:0.177920pt;}
.ls19{letter-spacing:0.414933pt;}
.lsf{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.640000pt;}
.ls2{letter-spacing:0.773120pt;}
.ls11{letter-spacing:1.296000pt;}
.lsd{letter-spacing:1.920000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls1{letter-spacing:10.880000pt;}
.ls17{letter-spacing:41.374720pt;}
.ls12{letter-spacing:56.734720pt;}
.wsd{word-spacing:-53.760000pt;}
.wsc{word-spacing:-14.736000pt;}
.wsa{word-spacing:-13.872533pt;}
.ws10{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.007467pt;}
.wsb{word-spacing:-12.608000pt;}
.wsf{word-spacing:-12.176000pt;}
.ws1{word-spacing:-12.160000pt;}
.ws11{word-spacing:-11.744000pt;}
.ws6{word-spacing:-11.600000pt;}
.ws7{word-spacing:-11.322667pt;}
.ws4{word-spacing:-9.920000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.841067pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._11{margin-left:-3.156907pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._d{width:4.253013pt;}
._e{width:5.911040pt;}
._f{width:6.915840pt;}
._c{width:8.040960pt;}
._9{width:9.071360pt;}
._a{width:10.069760pt;}
._5{width:11.136000pt;}
._6{width:12.472320pt;}
._b{width:13.996800pt;}
._12{width:15.214080pt;}
._13{width:16.634880pt;}
._14{width:17.564160pt;}
._15{width:18.746880pt;}
._18{width:20.106240pt;}
._19{width:21.178880pt;}
._1a{width:22.425173pt;}
._1b{width:24.084480pt;}
._17{width:25.374720pt;}
._16{width:26.795520pt;}
._1f{width:77.434880pt;}
._1c{width:78.625280pt;}
._1d{width:79.536213pt;}
._1e{width:80.446293pt;}
._10{width:178.560000pt;}
._8{width:179.840000pt;}
._7{width:1268.812373pt;}
.fsa{font-size:5.120000pt;}
.fs5{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:3.196000pt;}
.y5{bottom:3.520000pt;}
.y59{bottom:4.773333pt;}
.y2{bottom:7.040000pt;}
.y55{bottom:8.028000pt;}
.y4{bottom:18.880000pt;}
.y54{bottom:21.790667pt;}
.y48{bottom:29.470667pt;}
.y41{bottom:34.240000pt;}
.y53{bottom:37.470667pt;}
.y3{bottom:39.360000pt;}
.y47{bottom:48.030667pt;}
.y40{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y52{bottom:51.550667pt;}
.y46{bottom:59.550667pt;}
.y3f{bottom:64.960000pt;}
.y51{bottom:65.310667pt;}
.y50{bottom:76.830667pt;}
.y45{bottom:77.150667pt;}
.y3e{bottom:80.360000pt;}
.y4f{bottom:82.270667pt;}
.yf4{bottom:82.912000pt;}
.y57{bottom:83.552000pt;}
.y93{bottom:85.792000pt;}
.yc1{bottom:87.712000pt;}
.y3d{bottom:95.720000pt;}
.y4e{bottom:96.350667pt;}
.yf3{bottom:98.272000pt;}
.y92{bottom:101.152000pt;}
.y56{bottom:107.232000pt;}
.y4d{bottom:110.110667pt;}
.yc0{bottom:111.072000pt;}
.y3c{bottom:111.080000pt;}
.yf2{bottom:113.952000pt;}
.y91{bottom:116.512000pt;}
.y42{bottom:119.716000pt;}
.y4c{bottom:123.897333pt;}
.y3b{bottom:126.440000pt;}
.yf1{bottom:129.344000pt;}
.y90{bottom:131.904000pt;}
.y44{bottom:132.217333pt;}
.ybf{bottom:134.466667pt;}
.y4b{bottom:137.657333pt;}
.y3a{bottom:141.480000pt;}
.y43{bottom:141.817333pt;}
.yf0{bottom:144.386667pt;}
.y8f{bottom:147.266667pt;}
.y4a{bottom:151.417333pt;}
.y39{bottom:156.840000pt;}
.ybe{bottom:158.146667pt;}
.y8e{bottom:162.626667pt;}
.yef{bottom:168.066667pt;}
.y38{bottom:172.200000pt;}
.ybd{bottom:173.506667pt;}
.y8d{bottom:177.986667pt;}
.yee{bottom:183.426667pt;}
.y37{bottom:187.560000pt;}
.ybc{bottom:188.866667pt;}
.y8c{bottom:193.346667pt;}
.yed{bottom:198.466667pt;}
.y36{bottom:202.946667pt;}
.ybb{bottom:204.226667pt;}
.y8b{bottom:208.706667pt;}
.yec{bottom:213.826667pt;}
.y35{bottom:218.306667pt;}
.yba{bottom:219.586667pt;}
.y117{bottom:222.466667pt;}
.y8a{bottom:224.066667pt;}
.yeb{bottom:228.866667pt;}
.y34{bottom:233.666667pt;}
.yb9{bottom:234.946667pt;}
.y116{bottom:237.826667pt;}
.y89{bottom:239.426667pt;}
.y33{bottom:249.026667pt;}
.yb8{bottom:250.013333pt;}
.yea{bottom:252.573333pt;}
.y115{bottom:253.213333pt;}
.y88{bottom:254.493333pt;}
.y32{bottom:264.386667pt;}
.yb7{bottom:265.373333pt;}
.ye9{bottom:267.933333pt;}
.y114{bottom:268.573333pt;}
.y87{bottom:269.853333pt;}
.y31{bottom:279.426667pt;}
.yb6{bottom:280.733333pt;}
.ye8{bottom:283.293333pt;}
.y113{bottom:283.933333pt;}
.y86{bottom:285.213333pt;}
.ye{bottom:287.773333pt;}
.y1c{bottom:288.066667pt;}
.yb5{bottom:296.093333pt;}
.ye7{bottom:298.653333pt;}
.y112{bottom:299.293333pt;}
.y85{bottom:300.573333pt;}
.y30{bottom:302.466667pt;}
.y1b{bottom:309.533333pt;}
.yb4{bottom:311.453333pt;}
.ye6{bottom:313.693333pt;}
.y111{bottom:314.653333pt;}
.y84{bottom:315.933333pt;}
.y2f{bottom:316.253333pt;}
.yb3{bottom:326.813333pt;}
.y2e{bottom:330.013333pt;}
.y1a{bottom:330.973333pt;}
.y83{bottom:331.293333pt;}
.ye5{bottom:337.373333pt;}
.yb2{bottom:342.173333pt;}
.y2d{bottom:343.773333pt;}
.y110{bottom:345.373333pt;}
.y82{bottom:346.653333pt;}
.y19{bottom:352.413333pt;}
.ye4{bottom:352.733333pt;}
.y2c{bottom:357.533333pt;}
.y10f{bottom:360.773333pt;}
.y81{bottom:362.053333pt;}
.ye3{bottom:368.133333pt;}
.y2b{bottom:371.293333pt;}
.yb1{bottom:372.933333pt;}
.y18{bottom:373.853333pt;}
.y10e{bottom:376.133333pt;}
.y80{bottom:377.413333pt;}
.ye2{bottom:383.493333pt;}
.y2a{bottom:385.053333pt;}
.yb0{bottom:388.293333pt;}
.y10d{bottom:391.493333pt;}
.y7f{bottom:392.773333pt;}
.y17{bottom:395.293333pt;}
.ye1{bottom:398.213333pt;}
.y29{bottom:399.133333pt;}
.yaf{bottom:403.653333pt;}
.y10c{bottom:406.533333pt;}
.y7e{bottom:408.133333pt;}
.y28{bottom:412.893333pt;}
.y16{bottom:417.053333pt;}
.yae{bottom:418.693333pt;}
.ye0{bottom:421.893333pt;}
.y7d{bottom:423.493333pt;}
.y27{bottom:426.693333pt;}
.yad{bottom:434.053333pt;}
.ydf{bottom:437.253333pt;}
.y15{bottom:438.533333pt;}
.y26{bottom:440.453333pt;}
.yac{bottom:449.413333pt;}
.yde{bottom:452.613333pt;}
.y7c{bottom:453.893333pt;}
.y25{bottom:454.213333pt;}
.y14{bottom:459.973333pt;}
.yab{bottom:464.773333pt;}
.ydd{bottom:467.653333pt;}
.y24{bottom:467.973333pt;}
.y7b{bottom:469.253333pt;}
.yaa{bottom:480.160000pt;}
.y13{bottom:481.413333pt;}
.y23{bottom:481.733333pt;}
.y10b{bottom:483.040000pt;}
.y7a{bottom:484.640000pt;}
.ydc{bottom:491.360000pt;}
.y22{bottom:495.493333pt;}
.ya9{bottom:495.520000pt;}
.y79{bottom:500.000000pt;}
.y12{bottom:502.853333pt;}
.ydb{bottom:506.720000pt;}
.y21{bottom:509.573333pt;}
.ya8{bottom:510.880000pt;}
.y78{bottom:515.360000pt;}
.yda{bottom:522.080000pt;}
.y20{bottom:523.333333pt;}
.y11{bottom:524.293333pt;}
.ya7{bottom:526.240000pt;}
.y77{bottom:530.720000pt;}
.y1f{bottom:537.093333pt;}
.yd9{bottom:537.120000pt;}
.y10a{bottom:537.440000pt;}
.ya6{bottom:541.600000pt;}
.y10{bottom:545.760000pt;}
.y76{bottom:546.080000pt;}
.y1e{bottom:550.880000pt;}
.yd8{bottom:552.480000pt;}
.y109{bottom:552.800000pt;}
.ya5{bottom:556.960000pt;}
.y75{bottom:561.440000pt;}
.y1d{bottom:564.320000pt;}
.yf{bottom:567.200000pt;}
.y108{bottom:568.160000pt;}
.ya4{bottom:572.320000pt;}
.yd7{bottom:576.160000pt;}
.y74{bottom:576.800000pt;}
.y107{bottom:583.200000pt;}
.ya3{bottom:587.680000pt;}
.yd6{bottom:591.200000pt;}
.y73{bottom:592.160000pt;}
.y106{bottom:598.586667pt;}
.ya2{bottom:602.746667pt;}
.yd5{bottom:606.586667pt;}
.y72{bottom:607.226667pt;}
.y105{bottom:613.946667pt;}
.ya1{bottom:617.786667pt;}
.yd4{bottom:621.946667pt;}
.y71{bottom:622.586667pt;}
.y104{bottom:629.306667pt;}
.yd3{bottom:637.306667pt;}
.y70{bottom:637.946667pt;}
.ya0{bottom:641.466667pt;}
.y103{bottom:644.666667pt;}
.yd2{bottom:652.666667pt;}
.y6f{bottom:653.306667pt;}
.y9f{bottom:656.826667pt;}
.y102{bottom:660.026667pt;}
.yd1{bottom:667.706667pt;}
.y6e{bottom:668.666667pt;}
.y9e{bottom:672.186667pt;}
.y101{bottom:675.386667pt;}
.y6d{bottom:684.026667pt;}
.y9d{bottom:687.226667pt;}
.y100{bottom:690.426667pt;}
.yd0{bottom:691.386667pt;}
.y6c{bottom:699.386667pt;}
.ycf{bottom:706.746667pt;}
.y9c{bottom:710.906667pt;}
.yff{bottom:714.146667pt;}
.y6b{bottom:714.786667pt;}
.yce{bottom:722.146667pt;}
.y9b{bottom:726.306667pt;}
.yfe{bottom:729.506667pt;}
.y6a{bottom:730.146667pt;}
.ycd{bottom:737.506667pt;}
.y9a{bottom:742.626667pt;}
.yfd{bottom:744.866667pt;}
.y69{bottom:745.186667pt;}
.ycc{bottom:752.866667pt;}
.y99{bottom:757.986667pt;}
.yfc{bottom:759.906667pt;}
.ycb{bottom:767.906667pt;}
.y68{bottom:768.866667pt;}
.y98{bottom:774.306667pt;}
.yfb{bottom:783.266667pt;}
.y67{bottom:784.226667pt;}
.y97{bottom:789.346667pt;}
.yca{bottom:791.266667pt;}
.yfa{bottom:798.626667pt;}
.y66{bottom:799.266667pt;}
.y96{bottom:805.666667pt;}
.yc9{bottom:806.626667pt;}
.yf9{bottom:813.986667pt;}
.y65{bottom:814.626667pt;}
.y95{bottom:821.026667pt;}
.yc8{bottom:821.986667pt;}
.yf8{bottom:829.373333pt;}
.y64{bottom:830.013333pt;}
.y94{bottom:837.053333pt;}
.yc7{bottom:837.373333pt;}
.yf7{bottom:844.413333pt;}
.y63{bottom:845.373333pt;}
.yc6{bottom:852.733333pt;}
.y62{bottom:860.733333pt;}
.yc5{bottom:868.093333pt;}
.yd{bottom:874.493333pt;}
.y61{bottom:876.093333pt;}
.yc{bottom:881.533333pt;}
.yc4{bottom:883.133333pt;}
.yf6{bottom:883.453333pt;}
.y60{bottom:891.453333pt;}
.yb{bottom:896.893333pt;}
.yf5{bottom:898.493333pt;}
.y5f{bottom:906.813333pt;}
.y5e{bottom:922.173333pt;}
.ya{bottom:928.893333pt;}
.y5d{bottom:937.533333pt;}
.y9{bottom:950.693333pt;}
.y5c{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.yc3{bottom:967.653333pt;}
.y5b{bottom:967.973333pt;}
.y58{bottom:970.240000pt;}
.yc2{bottom:983.013333pt;}
.y5a{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.h12{height:5.022500pt;}
.h9{height:16.331250pt;}
.h6{height:21.643125pt;}
.h13{height:24.640000pt;}
.h10{height:26.381250pt;}
.hc{height:36.431250pt;}
.hb{height:37.410000pt;}
.hd{height:47.713750pt;}
.h11{height:49.020000pt;}
.h5{height:52.762500pt;}
.he{height:53.471250pt;}
.h8{height:54.180000pt;}
.h15{height:55.256809pt;}
.h14{height:56.405000pt;}
.h7{height:56.513750pt;}
.h3{height:58.563750pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.hf{height:167.400000pt;}
.ha{height:575.506667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:6.112000pt;}
.x16{left:7.348000pt;}
.x4{left:11.826667pt;}
.x14{left:15.348000pt;}
.x19{left:16.308000pt;}
.x5{left:17.266667pt;}
.x15{left:25.908000pt;}
.xe{left:39.028000pt;}
.x1a{left:42.260000pt;}
.x6{left:43.213333pt;}
.xf{left:45.140000pt;}
.x13{left:48.020000pt;}
.xd{left:48.980000pt;}
.x1b{left:50.900000pt;}
.x12{left:67.542667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x11{left:80.022667pt;}
.x2{left:84.822667pt;}
.x1c{left:91.542667pt;}
.x18{left:95.062667pt;}
.x1e{left:100.832000pt;}
.x10{left:110.742667pt;}
.x3{left:162.000000pt;}
.x17{left:194.640000pt;}
.xa{left:238.173333pt;}
.xb{left:515.746667pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xc{left:717.413333pt;}
}




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