
    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_b60c24912a622d80e1630f23.woff2')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_5154f13bd37d4253be676ff4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2fdf43e84e2c2c629ce35a9d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_8b9ee8c0073c4d3a45f5b83e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_205dad2febadd7eae5d0a856.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7e559ce39e3f04b3aa07d887.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c098609cca69c61aecd06273.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_e004e72ec49923ad2c34ed04.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.960000px;}
.ls4{letter-spacing:-0.463800px;}
.lsb{letter-spacing:-0.452400px;}
.lsc{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.326400px;}
.ls7{letter-spacing:-0.303000px;}
.ls8{letter-spacing:-0.226200px;}
.lsd{letter-spacing:-0.175800px;}
.ls15{letter-spacing:-0.107400px;}
.ls1c{letter-spacing:-0.078600px;}
.ls12{letter-spacing:-0.064800px;}
.ls10{letter-spacing:-0.058320px;}
.ls6{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.025200px;}
.ls25{letter-spacing:0.060600px;}
.ls1b{letter-spacing:0.066000px;}
.ls9{letter-spacing:0.190200px;}
.ls17{letter-spacing:0.218400px;}
.ls5{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.267600px;}
.ls16{letter-spacing:0.274800px;}
.ls1d{letter-spacing:0.283800px;}
.ls22{letter-spacing:0.288600px;}
.ls19{letter-spacing:0.314400px;}
.ls24{letter-spacing:0.339600px;}
.lse{letter-spacing:0.393600px;}
.ls14{letter-spacing:0.479520px;}
.ls1e{letter-spacing:0.492000px;}
.ls13{letter-spacing:0.661680px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls21{letter-spacing:12.330720px;}
.ls20{letter-spacing:42.570720px;}
.ls1f{letter-spacing:43.290720px;}
.ls1a{letter-spacing:61.866720px;}
.ls11{letter-spacing:65.466720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws5{word-spacing:-15.237840px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.517840px;}
.ws1{word-spacing:-14.506440px;}
.ws12{word-spacing:-13.845360px;}
.wsf{word-spacing:-13.820160px;}
.ws10{word-spacing:-13.794360px;}
.wsd{word-spacing:-13.780560px;}
.wse{word-spacing:-13.724160px;}
.ws11{word-spacing:-13.530960px;}
.ws9{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.wsc{word-spacing:-13.398360px;}
.ws4{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.ws8{word-spacing:-8.426880px;}
.wsb{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1002.997680px;}
._5{margin-left:-582.156960px;}
._8{margin-left:-5.621280px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._c{margin-left:-2.260560px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._b{width:2.462160px;}
._10{width:3.879120px;}
._d{width:5.010000px;}
._15{width:6.045840px;}
._f{width:7.074720px;}
._e{width:8.378640px;}
._11{width:9.800640px;}
._12{width:11.254800px;}
._a{width:12.340560px;}
._19{width:14.680320px;}
._1c{width:15.746880px;}
._17{width:16.971840px;}
._16{width:18.107280px;}
._20{width:19.634400px;}
._13{width:20.916000px;}
._14{width:23.905920px;}
._1d{width:31.015440px;}
._1b{width:33.644880px;}
._1a{width:34.840080px;}
._1f{width:37.698240px;}
._1e{width:39.083040px;}
._18{width:159.990960px;}
._9{width:196.923360px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:6.840000px;}
.y82{bottom:6.870000px;}
.yfe{bottom:7.020000px;}
.y9d{bottom:12.630000px;}
.yfd{bottom:28.260000px;}
.yfa{bottom:35.460000px;}
.yfc{bottom:49.500000px;}
.y6{bottom:58.320000px;}
.yfb{bottom:70.734000px;}
.yf9{bottom:87.156000px;}
.yce{bottom:87.516000px;}
.y52{bottom:87.696000px;}
.y9b{bottom:89.136000px;}
.yf8{bottom:91.476000px;}
.y32{bottom:94.716000px;}
.y7c{bottom:97.596000px;}
.y51{bottom:104.796000px;}
.ycd{bottom:108.576000px;}
.y9a{bottom:110.196000px;}
.yf7{bottom:112.536000px;}
.y31{bottom:115.776000px;}
.y7b{bottom:118.656000px;}
.ydf{bottom:120.636000px;}
.ycc{bottom:129.636000px;}
.y99{bottom:131.256000px;}
.yf6{bottom:133.596000px;}
.y30{bottom:136.836000px;}
.y7a{bottom:139.716000px;}
.yde{bottom:141.696000px;}
.ycb{bottom:150.690000px;}
.y98{bottom:152.310000px;}
.yf5{bottom:154.650000px;}
.y2f{bottom:157.890000px;}
.y79{bottom:160.770000px;}
.ydd{bottom:162.750000px;}
.yca{bottom:171.750000px;}
.y97{bottom:173.370000px;}
.yf4{bottom:175.710000px;}
.y2e{bottom:178.950000px;}
.y78{bottom:181.830000px;}
.ydc{bottom:183.810000px;}
.yc9{bottom:192.810000px;}
.y96{bottom:194.430000px;}
.yf3{bottom:196.770000px;}
.y2d{bottom:200.010000px;}
.y77{bottom:202.890000px;}
.ydb{bottom:204.870000px;}
.yc8{bottom:213.870000px;}
.y95{bottom:215.490000px;}
.yf2{bottom:217.830000px;}
.y2c{bottom:221.070000px;}
.y76{bottom:223.950000px;}
.yda{bottom:225.930000px;}
.yc7{bottom:234.930000px;}
.y94{bottom:236.550000px;}
.yf1{bottom:238.890000px;}
.y2b{bottom:242.130000px;}
.y75{bottom:245.010000px;}
.yd9{bottom:246.990000px;}
.yc6{bottom:255.990000px;}
.y93{bottom:257.610000px;}
.yf0{bottom:259.950000px;}
.y2a{bottom:263.190000px;}
.y74{bottom:266.070000px;}
.yd8{bottom:268.050000px;}
.yc5{bottom:270.930000px;}
.y92{bottom:278.670000px;}
.yef{bottom:281.010000px;}
.y29{bottom:284.250000px;}
.y73{bottom:287.130000px;}
.yd7{bottom:289.110000px;}
.yc4{bottom:291.990000px;}
.y91{bottom:299.730000px;}
.yee{bottom:302.070000px;}
.y28{bottom:305.310000px;}
.y72{bottom:308.190000px;}
.yd6{bottom:310.170000px;}
.yc3{bottom:313.050000px;}
.y90{bottom:320.790000px;}
.yed{bottom:323.130000px;}
.y27{bottom:326.370000px;}
.y71{bottom:329.295000px;}
.yd5{bottom:331.275000px;}
.yc2{bottom:334.155000px;}
.y8f{bottom:341.895000px;}
.yec{bottom:344.235000px;}
.y26{bottom:347.475000px;}
.y70{bottom:350.355000px;}
.yd4{bottom:352.335000px;}
.yc1{bottom:355.215000px;}
.y8e{bottom:362.955000px;}
.yeb{bottom:365.295000px;}
.y25{bottom:368.535000px;}
.y6f{bottom:371.415000px;}
.yd3{bottom:373.395000px;}
.yc0{bottom:376.275000px;}
.y8d{bottom:384.015000px;}
.yea{bottom:386.355000px;}
.y24{bottom:389.595000px;}
.y6e{bottom:392.475000px;}
.yd2{bottom:394.455000px;}
.ybf{bottom:398.055000px;}
.y8c{bottom:405.075000px;}
.ye9{bottom:407.415000px;}
.y23{bottom:410.655000px;}
.y6d{bottom:413.535000px;}
.yd1{bottom:415.515000px;}
.y8b{bottom:426.135000px;}
.ybe{bottom:426.675000px;}
.ye8{bottom:428.475000px;}
.y22{bottom:431.715000px;}
.y6c{bottom:434.595000px;}
.yd0{bottom:436.575000px;}
.y8a{bottom:447.195000px;}
.ybd{bottom:447.735000px;}
.ye7{bottom:449.535000px;}
.y21{bottom:452.775000px;}
.ycf{bottom:453.495000px;}
.y6b{bottom:455.655000px;}
.y89{bottom:462.135000px;}
.ybc{bottom:468.795000px;}
.ye6{bottom:470.595000px;}
.y20{bottom:473.835000px;}
.y6a{bottom:476.715000px;}
.y88{bottom:483.195000px;}
.ybb{bottom:489.855000px;}
.ye5{bottom:491.655000px;}
.y1f{bottom:494.895000px;}
.y69{bottom:497.775000px;}
.y87{bottom:504.255000px;}
.yba{bottom:510.915000px;}
.ye4{bottom:512.715000px;}
.y1e{bottom:515.955000px;}
.y68{bottom:518.835000px;}
.y86{bottom:525.315000px;}
.yb9{bottom:531.975000px;}
.ye3{bottom:533.775000px;}
.y1d{bottom:536.835000px;}
.y67{bottom:539.895000px;}
.y85{bottom:546.375000px;}
.yb8{bottom:553.035000px;}
.ye2{bottom:554.835000px;}
.y1c{bottom:560.055000px;}
.y66{bottom:560.955000px;}
.y50{bottom:566.895000px;}
.y83{bottom:567.435000px;}
.ye1{bottom:575.895000px;}
.y65{bottom:582.015000px;}
.yb7{bottom:583.095000px;}
.y4f{bottom:587.955000px;}
.y81{bottom:589.215000px;}
.y1b{bottom:590.295000px;}
.ye0{bottom:596.985000px;}
.y64{bottom:603.105000px;}
.yb6{bottom:604.185000px;}
.y4e{bottom:609.045000px;}
.y1a{bottom:611.385000px;}
.y80{bottom:618.045000px;}
.y63{bottom:623.985000px;}
.yb5{bottom:625.245000px;}
.y4d{bottom:630.105000px;}
.y19{bottom:632.445000px;}
.y7f{bottom:639.105000px;}
.y62{bottom:645.045000px;}
.yb4{bottom:646.305000px;}
.y4c{bottom:650.985000px;}
.y18{bottom:653.505000px;}
.y7e{bottom:659.985000px;}
.yb3{bottom:667.365000px;}
.y4b{bottom:672.045000px;}
.y17{bottom:674.565000px;}
.y61{bottom:675.105000px;}
.y7d{bottom:681.045000px;}
.yb2{bottom:688.425000px;}
.y16{bottom:695.625000px;}
.y60{bottom:696.165000px;}
.y4a{bottom:702.105000px;}
.yb1{bottom:709.485000px;}
.y15{bottom:716.685000px;}
.y5f{bottom:717.225000px;}
.y49{bottom:723.165000px;}
.yb0{bottom:730.545000px;}
.y14{bottom:737.745000px;}
.y5e{bottom:738.285000px;}
.y48{bottom:744.225000px;}
.yaf{bottom:751.605000px;}
.y13{bottom:758.805000px;}
.y5d{bottom:759.345000px;}
.y47{bottom:765.285000px;}
.yae{bottom:772.665000px;}
.y12{bottom:779.865000px;}
.y5c{bottom:780.405000px;}
.y46{bottom:786.345000px;}
.yad{bottom:793.725000px;}
.y11{bottom:800.925000px;}
.y45{bottom:807.405000px;}
.y5b{bottom:810.465000px;}
.yac{bottom:814.785000px;}
.y10{bottom:821.985000px;}
.y44{bottom:828.465000px;}
.y5a{bottom:831.525000px;}
.yab{bottom:835.845000px;}
.yf{bottom:843.045000px;}
.y43{bottom:849.525000px;}
.y59{bottom:852.585000px;}
.yaa{bottom:856.905000px;}
.ye{bottom:864.150000px;}
.y42{bottom:870.630000px;}
.y58{bottom:873.690000px;}
.ya9{bottom:878.010000px;}
.yd{bottom:887.550000px;}
.y41{bottom:891.690000px;}
.y57{bottom:894.750000px;}
.ya8{bottom:899.070000px;}
.y40{bottom:912.750000px;}
.yc{bottom:914.010000px;}
.ya7{bottom:920.130000px;}
.y56{bottom:924.810000px;}
.yb{bottom:929.850000px;}
.y3f{bottom:933.810000px;}
.ya6{bottom:941.010000px;}
.y55{bottom:945.870000px;}
.y3e{bottom:954.870000px;}
.ya{bottom:956.130000px;}
.ya5{bottom:962.070000px;}
.y54{bottom:966.930000px;}
.y9{bottom:972.870000px;}
.y3d{bottom:975.930000px;}
.ya4{bottom:983.130000px;}
.y53{bottom:987.990000px;}
.y8{bottom:995.190000px;}
.y3c{bottom:996.990000px;}
.ya3{bottom:998.250000px;}
.y3b{bottom:1018.050000px;}
.ya2{bottom:1019.310000px;}
.y7{bottom:1020.210000px;}
.y3a{bottom:1039.110000px;}
.ya1{bottom:1040.370000px;}
.y39{bottom:1060.170000px;}
.y5{bottom:1060.530000px;}
.ya0{bottom:1061.430000px;}
.y38{bottom:1081.230000px;}
.y9f{bottom:1082.490000px;}
.y4{bottom:1092.750000px;}
.y37{bottom:1102.290000px;}
.y9e{bottom:1103.550000px;}
.y36{bottom:1123.350000px;}
.y3{bottom:1124.790000px;}
.y9c{bottom:1125.330000px;}
.y35{bottom:1144.440000px;}
.y2{bottom:1157.040000px;}
.y34{bottom:1165.500000px;}
.y1{bottom:1191.600000px;}
.y33{bottom:1193.400000px;}
.hf{height:2.864531px;}
.hb{height:21.060000px;}
.ha{height:21.096000px;}
.hc{height:32.616000px;}
.h7{height:38.671172px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h9{height:61.423863px;}
.hd{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.he{height:84.960000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:40.536000px;}
.wa{width:45.540000px;}
.w11{width:50.616000px;}
.w4{width:67.500000px;}
.wb{width:68.580000px;}
.w12{width:70.920000px;}
.w13{width:77.040000px;}
.w5{width:81.000000px;}
.w6{width:81.036000px;}
.wd{width:87.300000px;}
.w15{width:88.560000px;}
.w14{width:88.776000px;}
.w17{width:99.396000px;}
.we{width:107.496000px;}
.wc{width:114.156000px;}
.w16{width:128.016000px;}
.w9{width:128.340000px;}
.w18{width:128.520000px;}
.wf{width:134.280000px;}
.w10{width:138.096000px;}
.w7{width:175.530000px;}
.w8{width:202.530000px;}
.w19{width:210.810000px;}
.w1a{width:580.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.100000px;}
.x8{left:11.340000px;}
.xd{left:12.420000px;}
.x16{left:13.500000px;}
.x14{left:16.380000px;}
.xa{left:17.820000px;}
.x15{left:21.600000px;}
.x18{left:29.160000px;}
.x1a{left:33.480000px;}
.x11{left:34.740000px;}
.x19{left:50.760000px;}
.x2{left:52.919987px;}
.x1{left:53.999987px;}
.x17{left:56.520000px;}
.x7{left:58.320000px;}
.xf{left:59.400000px;}
.x2d{left:69.299987px;}
.x22{left:80.640000px;}
.x6{left:86.939987px;}
.x2e{left:96.515987px;}
.x9{left:98.856000px;}
.x3{left:108.035987px;}
.x23{left:131.256000px;}
.x1b{left:136.475987px;}
.x1c{left:144.396000px;}
.xb{left:166.350000px;}
.x2f{left:191.370000px;}
.x24{left:202.170000px;}
.x5{left:207.029987px;}
.x1d{left:212.970000px;}
.x2b{left:222.869987px;}
.xc{left:247.350000px;}
.x30{left:264.810000px;}
.x25{left:279.210000px;}
.x1e{left:327.135000px;}
.xe{left:328.395000px;}
.x26{left:367.995000px;}
.x1f{left:414.435000px;}
.x2c{left:447.194987px;}
.x27{left:456.555000px;}
.x10{left:503.925000px;}
.x20{left:521.925000px;}
.x28{left:584.565000px;}
.x21{left:656.205000px;}
.x4{left:677.669987px;}
.x29{left:683.970000px;}
.x12{left:706.470000px;}
.x2a{left:722.849987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.853333pt;}
.ls4{letter-spacing:-0.412267pt;}
.lsb{letter-spacing:-0.402133pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.290133pt;}
.ls7{letter-spacing:-0.269333pt;}
.ls8{letter-spacing:-0.201067pt;}
.lsd{letter-spacing:-0.156267pt;}
.ls15{letter-spacing:-0.095467pt;}
.ls1c{letter-spacing:-0.069867pt;}
.ls12{letter-spacing:-0.057600pt;}
.ls10{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.022400pt;}
.ls25{letter-spacing:0.053867pt;}
.ls1b{letter-spacing:0.058667pt;}
.ls9{letter-spacing:0.169067pt;}
.ls17{letter-spacing:0.194133pt;}
.ls5{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.237867pt;}
.ls16{letter-spacing:0.244267pt;}
.ls1d{letter-spacing:0.252267pt;}
.ls22{letter-spacing:0.256533pt;}
.ls19{letter-spacing:0.279467pt;}
.ls24{letter-spacing:0.301867pt;}
.lse{letter-spacing:0.349867pt;}
.ls14{letter-spacing:0.426240pt;}
.ls1e{letter-spacing:0.437333pt;}
.ls13{letter-spacing:0.588160pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls21{letter-spacing:10.960640pt;}
.ls20{letter-spacing:37.840640pt;}
.ls1f{letter-spacing:38.480640pt;}
.ls1a{letter-spacing:54.992640pt;}
.ls11{letter-spacing:58.192640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws5{word-spacing:-13.544747pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws6{word-spacing:-12.904747pt;}
.ws1{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.306987pt;}
.wsf{word-spacing:-12.284587pt;}
.ws10{word-spacing:-12.261653pt;}
.wsd{word-spacing:-12.249387pt;}
.wse{word-spacing:-12.199253pt;}
.ws11{word-spacing:-12.027520pt;}
.ws9{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.wsc{word-spacing:-11.909653pt;}
.ws4{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.ws8{word-spacing:-7.490560pt;}
.wsb{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-891.553493pt;}
._5{margin-left:-517.472853pt;}
._8{margin-left:-4.996693pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._c{margin-left:-2.009387pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._b{width:2.188587pt;}
._10{width:3.448107pt;}
._d{width:4.453333pt;}
._15{width:5.374080pt;}
._f{width:6.288640pt;}
._e{width:7.447680pt;}
._11{width:8.711680pt;}
._12{width:10.004267pt;}
._a{width:10.969387pt;}
._19{width:13.049173pt;}
._1c{width:13.997227pt;}
._17{width:15.086080pt;}
._16{width:16.095360pt;}
._20{width:17.452800pt;}
._13{width:18.592000pt;}
._14{width:21.249707pt;}
._1d{width:27.569280pt;}
._1b{width:29.906560pt;}
._1a{width:30.968960pt;}
._1f{width:33.509547pt;}
._1e{width:34.740480pt;}
._18{width:142.214187pt;}
._9{width:175.042987pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:6.080000pt;}
.y82{bottom:6.106667pt;}
.yfe{bottom:6.240000pt;}
.y9d{bottom:11.226667pt;}
.yfd{bottom:25.120000pt;}
.yfa{bottom:31.520000pt;}
.yfc{bottom:44.000000pt;}
.y6{bottom:51.840000pt;}
.yfb{bottom:62.874667pt;}
.yf9{bottom:77.472000pt;}
.yce{bottom:77.792000pt;}
.y52{bottom:77.952000pt;}
.y9b{bottom:79.232000pt;}
.yf8{bottom:81.312000pt;}
.y32{bottom:84.192000pt;}
.y7c{bottom:86.752000pt;}
.y51{bottom:93.152000pt;}
.ycd{bottom:96.512000pt;}
.y9a{bottom:97.952000pt;}
.yf7{bottom:100.032000pt;}
.y31{bottom:102.912000pt;}
.y7b{bottom:105.472000pt;}
.ydf{bottom:107.232000pt;}
.ycc{bottom:115.232000pt;}
.y99{bottom:116.672000pt;}
.yf6{bottom:118.752000pt;}
.y30{bottom:121.632000pt;}
.y7a{bottom:124.192000pt;}
.yde{bottom:125.952000pt;}
.ycb{bottom:133.946667pt;}
.y98{bottom:135.386667pt;}
.yf5{bottom:137.466667pt;}
.y2f{bottom:140.346667pt;}
.y79{bottom:142.906667pt;}
.ydd{bottom:144.666667pt;}
.yca{bottom:152.666667pt;}
.y97{bottom:154.106667pt;}
.yf4{bottom:156.186667pt;}
.y2e{bottom:159.066667pt;}
.y78{bottom:161.626667pt;}
.ydc{bottom:163.386667pt;}
.yc9{bottom:171.386667pt;}
.y96{bottom:172.826667pt;}
.yf3{bottom:174.906667pt;}
.y2d{bottom:177.786667pt;}
.y77{bottom:180.346667pt;}
.ydb{bottom:182.106667pt;}
.yc8{bottom:190.106667pt;}
.y95{bottom:191.546667pt;}
.yf2{bottom:193.626667pt;}
.y2c{bottom:196.506667pt;}
.y76{bottom:199.066667pt;}
.yda{bottom:200.826667pt;}
.yc7{bottom:208.826667pt;}
.y94{bottom:210.266667pt;}
.yf1{bottom:212.346667pt;}
.y2b{bottom:215.226667pt;}
.y75{bottom:217.786667pt;}
.yd9{bottom:219.546667pt;}
.yc6{bottom:227.546667pt;}
.y93{bottom:228.986667pt;}
.yf0{bottom:231.066667pt;}
.y2a{bottom:233.946667pt;}
.y74{bottom:236.506667pt;}
.yd8{bottom:238.266667pt;}
.yc5{bottom:240.826667pt;}
.y92{bottom:247.706667pt;}
.yef{bottom:249.786667pt;}
.y29{bottom:252.666667pt;}
.y73{bottom:255.226667pt;}
.yd7{bottom:256.986667pt;}
.yc4{bottom:259.546667pt;}
.y91{bottom:266.426667pt;}
.yee{bottom:268.506667pt;}
.y28{bottom:271.386667pt;}
.y72{bottom:273.946667pt;}
.yd6{bottom:275.706667pt;}
.yc3{bottom:278.266667pt;}
.y90{bottom:285.146667pt;}
.yed{bottom:287.226667pt;}
.y27{bottom:290.106667pt;}
.y71{bottom:292.706667pt;}
.yd5{bottom:294.466667pt;}
.yc2{bottom:297.026667pt;}
.y8f{bottom:303.906667pt;}
.yec{bottom:305.986667pt;}
.y26{bottom:308.866667pt;}
.y70{bottom:311.426667pt;}
.yd4{bottom:313.186667pt;}
.yc1{bottom:315.746667pt;}
.y8e{bottom:322.626667pt;}
.yeb{bottom:324.706667pt;}
.y25{bottom:327.586667pt;}
.y6f{bottom:330.146667pt;}
.yd3{bottom:331.906667pt;}
.yc0{bottom:334.466667pt;}
.y8d{bottom:341.346667pt;}
.yea{bottom:343.426667pt;}
.y24{bottom:346.306667pt;}
.y6e{bottom:348.866667pt;}
.yd2{bottom:350.626667pt;}
.ybf{bottom:353.826667pt;}
.y8c{bottom:360.066667pt;}
.ye9{bottom:362.146667pt;}
.y23{bottom:365.026667pt;}
.y6d{bottom:367.586667pt;}
.yd1{bottom:369.346667pt;}
.y8b{bottom:378.786667pt;}
.ybe{bottom:379.266667pt;}
.ye8{bottom:380.866667pt;}
.y22{bottom:383.746667pt;}
.y6c{bottom:386.306667pt;}
.yd0{bottom:388.066667pt;}
.y8a{bottom:397.506667pt;}
.ybd{bottom:397.986667pt;}
.ye7{bottom:399.586667pt;}
.y21{bottom:402.466667pt;}
.ycf{bottom:403.106667pt;}
.y6b{bottom:405.026667pt;}
.y89{bottom:410.786667pt;}
.ybc{bottom:416.706667pt;}
.ye6{bottom:418.306667pt;}
.y20{bottom:421.186667pt;}
.y6a{bottom:423.746667pt;}
.y88{bottom:429.506667pt;}
.ybb{bottom:435.426667pt;}
.ye5{bottom:437.026667pt;}
.y1f{bottom:439.906667pt;}
.y69{bottom:442.466667pt;}
.y87{bottom:448.226667pt;}
.yba{bottom:454.146667pt;}
.ye4{bottom:455.746667pt;}
.y1e{bottom:458.626667pt;}
.y68{bottom:461.186667pt;}
.y86{bottom:466.946667pt;}
.yb9{bottom:472.866667pt;}
.ye3{bottom:474.466667pt;}
.y1d{bottom:477.186667pt;}
.y67{bottom:479.906667pt;}
.y85{bottom:485.666667pt;}
.yb8{bottom:491.586667pt;}
.ye2{bottom:493.186667pt;}
.y1c{bottom:497.826667pt;}
.y66{bottom:498.626667pt;}
.y50{bottom:503.906667pt;}
.y83{bottom:504.386667pt;}
.ye1{bottom:511.906667pt;}
.y65{bottom:517.346667pt;}
.yb7{bottom:518.306667pt;}
.y4f{bottom:522.626667pt;}
.y81{bottom:523.746667pt;}
.y1b{bottom:524.706667pt;}
.ye0{bottom:530.653333pt;}
.y64{bottom:536.093333pt;}
.yb6{bottom:537.053333pt;}
.y4e{bottom:541.373333pt;}
.y1a{bottom:543.453333pt;}
.y80{bottom:549.373333pt;}
.y63{bottom:554.653333pt;}
.yb5{bottom:555.773333pt;}
.y4d{bottom:560.093333pt;}
.y19{bottom:562.173333pt;}
.y7f{bottom:568.093333pt;}
.y62{bottom:573.373333pt;}
.yb4{bottom:574.493333pt;}
.y4c{bottom:578.653333pt;}
.y18{bottom:580.893333pt;}
.y7e{bottom:586.653333pt;}
.yb3{bottom:593.213333pt;}
.y4b{bottom:597.373333pt;}
.y17{bottom:599.613333pt;}
.y61{bottom:600.093333pt;}
.y7d{bottom:605.373333pt;}
.yb2{bottom:611.933333pt;}
.y16{bottom:618.333333pt;}
.y60{bottom:618.813333pt;}
.y4a{bottom:624.093333pt;}
.yb1{bottom:630.653333pt;}
.y15{bottom:637.053333pt;}
.y5f{bottom:637.533333pt;}
.y49{bottom:642.813333pt;}
.yb0{bottom:649.373333pt;}
.y14{bottom:655.773333pt;}
.y5e{bottom:656.253333pt;}
.y48{bottom:661.533333pt;}
.yaf{bottom:668.093333pt;}
.y13{bottom:674.493333pt;}
.y5d{bottom:674.973333pt;}
.y47{bottom:680.253333pt;}
.yae{bottom:686.813333pt;}
.y12{bottom:693.213333pt;}
.y5c{bottom:693.693333pt;}
.y46{bottom:698.973333pt;}
.yad{bottom:705.533333pt;}
.y11{bottom:711.933333pt;}
.y45{bottom:717.693333pt;}
.y5b{bottom:720.413333pt;}
.yac{bottom:724.253333pt;}
.y10{bottom:730.653333pt;}
.y44{bottom:736.413333pt;}
.y5a{bottom:739.133333pt;}
.yab{bottom:742.973333pt;}
.yf{bottom:749.373333pt;}
.y43{bottom:755.133333pt;}
.y59{bottom:757.853333pt;}
.yaa{bottom:761.693333pt;}
.ye{bottom:768.133333pt;}
.y42{bottom:773.893333pt;}
.y58{bottom:776.613333pt;}
.ya9{bottom:780.453333pt;}
.yd{bottom:788.933333pt;}
.y41{bottom:792.613333pt;}
.y57{bottom:795.333333pt;}
.ya8{bottom:799.173333pt;}
.y40{bottom:811.333333pt;}
.yc{bottom:812.453333pt;}
.ya7{bottom:817.893333pt;}
.y56{bottom:822.053333pt;}
.yb{bottom:826.533333pt;}
.y3f{bottom:830.053333pt;}
.ya6{bottom:836.453333pt;}
.y55{bottom:840.773333pt;}
.y3e{bottom:848.773333pt;}
.ya{bottom:849.893333pt;}
.ya5{bottom:855.173333pt;}
.y54{bottom:859.493333pt;}
.y9{bottom:864.773333pt;}
.y3d{bottom:867.493333pt;}
.ya4{bottom:873.893333pt;}
.y53{bottom:878.213333pt;}
.y8{bottom:884.613333pt;}
.y3c{bottom:886.213333pt;}
.ya3{bottom:887.333333pt;}
.y3b{bottom:904.933333pt;}
.ya2{bottom:906.053333pt;}
.y7{bottom:906.853333pt;}
.y3a{bottom:923.653333pt;}
.ya1{bottom:924.773333pt;}
.y39{bottom:942.373333pt;}
.y5{bottom:942.693333pt;}
.ya0{bottom:943.493333pt;}
.y38{bottom:961.093333pt;}
.y9f{bottom:962.213333pt;}
.y4{bottom:971.333333pt;}
.y37{bottom:979.813333pt;}
.y9e{bottom:980.933333pt;}
.y36{bottom:998.533333pt;}
.y3{bottom:999.813333pt;}
.y9c{bottom:1000.293333pt;}
.y35{bottom:1017.280000pt;}
.y2{bottom:1028.480000pt;}
.y34{bottom:1036.000000pt;}
.y1{bottom:1059.200000pt;}
.y33{bottom:1060.800000pt;}
.hf{height:2.546250pt;}
.hb{height:18.720000pt;}
.ha{height:18.752000pt;}
.hc{height:28.992000pt;}
.h7{height:34.374375pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h9{height:54.598989pt;}
.hd{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.he{height:75.520000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:36.032000pt;}
.wa{width:40.480000pt;}
.w11{width:44.992000pt;}
.w4{width:60.000000pt;}
.wb{width:60.960000pt;}
.w12{width:63.040000pt;}
.w13{width:68.480000pt;}
.w5{width:72.000000pt;}
.w6{width:72.032000pt;}
.wd{width:77.600000pt;}
.w15{width:78.720000pt;}
.w14{width:78.912000pt;}
.w17{width:88.352000pt;}
.we{width:95.552000pt;}
.wc{width:101.472000pt;}
.w16{width:113.792000pt;}
.w9{width:114.080000pt;}
.w18{width:114.240000pt;}
.wf{width:119.360000pt;}
.w10{width:122.752000pt;}
.w7{width:156.026667pt;}
.w8{width:180.026667pt;}
.w19{width:187.386667pt;}
.w1a{width:516.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.200000pt;}
.x8{left:10.080000pt;}
.xd{left:11.040000pt;}
.x16{left:12.000000pt;}
.x14{left:14.560000pt;}
.xa{left:15.840000pt;}
.x15{left:19.200000pt;}
.x18{left:25.920000pt;}
.x1a{left:29.760000pt;}
.x11{left:30.880000pt;}
.x19{left:45.120000pt;}
.x2{left:47.039988pt;}
.x1{left:47.999988pt;}
.x17{left:50.240000pt;}
.x7{left:51.840000pt;}
.xf{left:52.800000pt;}
.x2d{left:61.599988pt;}
.x22{left:71.680000pt;}
.x6{left:77.279988pt;}
.x2e{left:85.791988pt;}
.x9{left:87.872000pt;}
.x3{left:96.031988pt;}
.x23{left:116.672000pt;}
.x1b{left:121.311988pt;}
.x1c{left:128.352000pt;}
.xb{left:147.866667pt;}
.x2f{left:170.106667pt;}
.x24{left:179.706667pt;}
.x5{left:184.026655pt;}
.x1d{left:189.306667pt;}
.x2b{left:198.106655pt;}
.xc{left:219.866667pt;}
.x30{left:235.386667pt;}
.x25{left:248.186667pt;}
.x1e{left:290.786667pt;}
.xe{left:291.906667pt;}
.x26{left:327.106667pt;}
.x1f{left:368.386667pt;}
.x2c{left:397.506655pt;}
.x27{left:405.826667pt;}
.x10{left:447.933333pt;}
.x20{left:463.933333pt;}
.x28{left:519.613333pt;}
.x21{left:583.293333pt;}
.x4{left:602.373322pt;}
.x29{left:607.973333pt;}
.x12{left:627.973333pt;}
.x2a{left:642.533322pt;}
}




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