
    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_aa20c27d6f63f4c3fe3a3b57.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_156e9f221f454d7246b91a49.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d5863a27099be4b6e934132e.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_665d3c3723c3f085d05706e4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c4c6fe441f0643df359897c8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7748219bc5dc63835d15201d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_f47aa3555cef8bcabfcbd83e.woff2')format("woff");}.ff7{font-family:ff7;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);}
.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:-68.400000px;}
.v7{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v8{vertical-align:-61.200000px;}
.v4{vertical-align:-30.240000px;}
.v5{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls17{letter-spacing:-0.594000px;}
.ls10{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.252000px;}
.lsd{letter-spacing:-0.220800px;}
.ls1f{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.lsf{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.738000px;}
.ls16{letter-spacing:1.080000px;}
.ls4{letter-spacing:1.620000px;}
.ls22{letter-spacing:2.988000px;}
.ls6{letter-spacing:6.660000px;}
.ls21{letter-spacing:30.348000px;}
.ls7{letter-spacing:52.560000px;}
.ls9{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls1a{letter-spacing:602.100000px;}
.ls1b{letter-spacing:899.100000px;}
.ls18{letter-spacing:1131.900000px;}
.ls13{letter-spacing:1220.100000px;}
.ls14{letter-spacing:1233.900000px;}
.ls1d{letter-spacing:1248.300000px;}
.ls8{letter-spacing:1367.340000px;}
.ls1c{letter-spacing:1410.900000px;}
.ls20{letter-spacing:1412.700000px;}
.ls1e{letter-spacing:1593.900000px;}
.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;}
}
.ws7{word-spacing:-21.420000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.822200px;}
.ws3{word-spacing:-14.580000px;}
.wse{word-spacing:-14.238000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.608000px;}
.ws12{word-spacing:-13.518000px;}
.wsb{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.374000px;}
.ws13{word-spacing:-13.248000px;}
.wsa{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.906000px;}
.ws8{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.000000px;}
.wsf{word-spacing:0.000000px;}
._d{margin-left:-15.029760px;}
._c{margin-left:-6.002160px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._7{width:3.083760px;}
._5{width:4.374000px;}
._6{width:5.466000px;}
._8{width:7.350000px;}
._a{width:8.621040px;}
._e{width:10.368000px;}
._11{width:11.507760px;}
._b{width:15.390000px;}
._9{width:16.614000px;}
._15{width:18.306000px;}
._16{width:19.385520px;}
._12{width:266.868000px;}
._14{width:281.646000px;}
._13{width:295.326000px;}
._10{width:725.046000px;}
._f{width:1041.240000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:2.850000px;}
.ya0{bottom:2.865000px;}
.yba{bottom:3.150000px;}
.ya3{bottom:3.225000px;}
.ya7{bottom:3.240000px;}
.y8b{bottom:3.300000px;}
.y8d{bottom:3.450000px;}
.ybb{bottom:18.600000px;}
.ya8{bottom:20.700000px;}
.y1{bottom:22.860000px;}
.y6e{bottom:24.075000px;}
.y89{bottom:29.100000px;}
.yec{bottom:30.855000px;}
.y88{bottom:44.700000px;}
.yfd{bottom:46.380000px;}
.y35{bottom:54.060000px;}
.ya6{bottom:56.160000px;}
.y3{bottom:57.960000px;}
.ya5{bottom:59.400000px;}
.yeb{bottom:62.475000px;}
.y2{bottom:76.890000px;}
.ya4{bottom:78.705000px;}
.y6d{bottom:82.710000px;}
.yea{bottom:94.185000px;}
.y6c{bottom:98.190000px;}
.ya2{bottom:101.205000px;}
.ye9{bottom:109.665000px;}
.y6b{bottom:113.670000px;}
.ya1{bottom:123.705000px;}
.y6a{bottom:129.150000px;}
.ye8{bottom:140.805000px;}
.y69{bottom:144.810000px;}
.y9f{bottom:146.205000px;}
.ye7{bottom:156.465000px;}
.y68{bottom:160.290000px;}
.ye6{bottom:171.945000px;}
.y9e{bottom:172.155000px;}
.y67{bottom:175.770000px;}
.ye5{bottom:187.425000px;}
.y66{bottom:191.250000px;}
.ye4{bottom:202.905000px;}
.y9d{bottom:203.295000px;}
.y65{bottom:206.910000px;}
.ye3{bottom:218.565000px;}
.y9c{bottom:218.775000px;}
.y64{bottom:222.390000px;}
.y32{bottom:232.950000px;}
.ye2{bottom:234.045000px;}
.y9b{bottom:234.435000px;}
.y63{bottom:238.050000px;}
.y31{bottom:248.430000px;}
.ye1{bottom:249.345000px;}
.y9a{bottom:249.915000px;}
.y62{bottom:253.350000px;}
.y30{bottom:263.910000px;}
.y99{bottom:265.575000px;}
.y61{bottom:269.190000px;}
.y2f{bottom:279.390000px;}
.ye0{bottom:280.485000px;}
.y98{bottom:280.695000px;}
.y2e{bottom:295.050000px;}
.y97{bottom:296.355000px;}
.ydf{bottom:296.505000px;}
.y60{bottom:300.510000px;}
.y2d{bottom:310.530000px;}
.yde{bottom:311.985000px;}
.y96{bottom:312.195000px;}
.y5f{bottom:315.990000px;}
.y2c{bottom:326.010000px;}
.ydd{bottom:327.465000px;}
.y95{bottom:327.855000px;}
.y5e{bottom:331.470000px;}
.y2b{bottom:341.715000px;}
.ydc{bottom:343.170000px;}
.y94{bottom:343.380000px;}
.y5d{bottom:346.995000px;}
.y2a{bottom:357.195000px;}
.ydb{bottom:358.290000px;}
.y93{bottom:358.860000px;}
.y5c{bottom:362.655000px;}
.y29{bottom:372.855000px;}
.yda{bottom:373.950000px;}
.y92{bottom:374.340000px;}
.y5b{bottom:378.135000px;}
.y28{bottom:388.335000px;}
.yd9{bottom:389.970000px;}
.y91{bottom:390.000000px;}
.y5a{bottom:393.615000px;}
.y27{bottom:403.815000px;}
.y90{bottom:405.300000px;}
.yd8{bottom:405.450000px;}
.y59{bottom:409.095000px;}
.y26{bottom:419.295000px;}
.y8f{bottom:420.780000px;}
.yd7{bottom:420.930000px;}
.y58{bottom:424.755000px;}
.yd6{bottom:436.410000px;}
.y8e{bottom:436.800000px;}
.y57{bottom:440.055000px;}
.y8c{bottom:449.700000px;}
.y25{bottom:450.255000px;}
.yd5{bottom:452.070000px;}
.y56{bottom:455.535000px;}
.yd4{bottom:467.550000px;}
.y55{bottom:471.555000px;}
.y24{bottom:481.215000px;}
.yd3{bottom:482.850000px;}
.y54{bottom:487.035000px;}
.y8a{bottom:491.850000px;}
.yd2{bottom:498.510000px;}
.y23{bottom:499.395000px;}
.y53{bottom:502.515000px;}
.yd1{bottom:514.350000px;}
.y52{bottom:518.175000px;}
.yd0{bottom:527.250000px;}
.y22{bottom:528.375000px;}
.y51{bottom:533.655000px;}
.y87{bottom:533.850000px;}
.y21{bottom:546.555000px;}
.y50{bottom:549.315000px;}
.ycf{bottom:549.750000px;}
.y20{bottom:562.215000px;}
.y4f{bottom:564.795000px;}
.yce{bottom:572.250000px;}
.y1f{bottom:577.695000px;}
.y4e{bottom:580.275000px;}
.y1e{bottom:593.175000px;}
.ycd{bottom:594.750000px;}
.y86{bottom:595.275000px;}
.y4d{bottom:595.755000px;}
.y1d{bottom:608.685000px;}
.y85{bottom:610.785000px;}
.y4c{bottom:611.445000px;}
.ycc{bottom:620.730000px;}
.y1c{bottom:624.345000px;}
.y84{bottom:626.445000px;}
.y4b{bottom:626.925000px;}
.y1b{bottom:639.825000px;}
.y83{bottom:641.925000px;}
.y4a{bottom:642.225000px;}
.ycb{bottom:651.870000px;}
.y1a{bottom:655.485000px;}
.y82{bottom:657.405000px;}
.y49{bottom:657.705000px;}
.yca{bottom:667.530000px;}
.y81{bottom:673.065000px;}
.y48{bottom:673.725000px;}
.y19{bottom:677.625000px;}
.yc9{bottom:683.010000px;}
.y80{bottom:688.365000px;}
.y47{bottom:695.145000px;}
.yc8{bottom:698.490000px;}
.y18{bottom:700.125000px;}
.y7f{bottom:703.845000px;}
.y46{bottom:704.865000px;}
.yc7{bottom:714.150000px;}
.y7e{bottom:719.865000px;}
.y45{bottom:720.345000px;}
.y17{bottom:726.765000px;}
.yc6{bottom:729.450000px;}
.y7d{bottom:735.345000px;}
.y44{bottom:736.005000px;}
.y16{bottom:742.425000px;}
.yc5{bottom:744.930000px;}
.y7c{bottom:751.005000px;}
.y43{bottom:751.305000px;}
.y15{bottom:757.905000px;}
.yc4{bottom:760.950000px;}
.y7b{bottom:766.305000px;}
.yc3{bottom:774.000000px;}
.yc2{bottom:777.150000px;}
.y7a{bottom:781.785000px;}
.y42{bottom:782.805000px;}
.y14{bottom:792.465000px;}
.yc1{bottom:795.900000px;}
.y79{bottom:797.805000px;}
.y41{bottom:798.285000px;}
.yc0{bottom:799.200000px;}
.y78{bottom:813.285000px;}
.y40{bottom:813.765000px;}
.y13{bottom:814.065000px;}
.ybf{bottom:817.800000px;}
.ybe{bottom:821.100000px;}
.y77{bottom:828.765000px;}
.y3f{bottom:829.425000px;}
.ybd{bottom:839.850000px;}
.ybc{bottom:843.000000px;}
.y76{bottom:844.425000px;}
.y3e{bottom:844.725000px;}
.y12{bottom:848.625000px;}
.y75{bottom:859.905000px;}
.y3d{bottom:860.205000px;}
.yb9{bottom:861.750000px;}
.y11{bottom:864.285000px;}
.y74{bottom:875.430000px;}
.y73{bottom:891.090000px;}
.y3c{bottom:891.930000px;}
.y10{bottom:893.310000px;}
.yb8{bottom:898.500000px;}
.y72{bottom:906.390000px;}
.y3b{bottom:907.410000px;}
.yfc{bottom:909.180000px;}
.y71{bottom:921.870000px;}
.y3a{bottom:922.890000px;}
.yfb{bottom:924.840000px;}
.yb7{bottom:929.640000px;}
.yf{bottom:932.370000px;}
.y70{bottom:937.890000px;}
.y39{bottom:938.550000px;}
.yfa{bottom:940.320000px;}
.yb6{bottom:945.120000px;}
.y6f{bottom:950.310000px;}
.y38{bottom:954.210000px;}
.yf9{bottom:955.980000px;}
.ye{bottom:956.670000px;}
.yb5{bottom:960.600000px;}
.y37{bottom:969.690000px;}
.yf8{bottom:971.640000px;}
.yb4{bottom:976.260000px;}
.y36{bottom:982.110000px;}
.yf7{bottom:987.120000px;}
.yb3{bottom:991.560000px;}
.yf6{bottom:1002.780000px;}
.yb2{bottom:1007.040000px;}
.yd{bottom:1016.070000px;}
.yf5{bottom:1018.440000px;}
.yb1{bottom:1022.700000px;}
.yf4{bottom:1033.920000px;}
.ya{bottom:1034.070000px;}
.yb0{bottom:1036.050000px;}
.yc{bottom:1039.290000px;}
.yf3{bottom:1049.580000px;}
.y9{bottom:1057.290000px;}
.yaf{bottom:1058.550000px;}
.yf2{bottom:1065.240000px;}
.yb{bottom:1071.330000px;}
.yae{bottom:1081.050000px;}
.y8{bottom:1086.630000px;}
.yf1{bottom:1096.380000px;}
.yad{bottom:1103.550000px;}
.y7{bottom:1105.710000px;}
.yf0{bottom:1112.040000px;}
.y6{bottom:1122.990000px;}
.yac{bottom:1126.050000px;}
.yef{bottom:1127.520000px;}
.y5{bottom:1140.300000px;}
.yee{bottom:1142.850000px;}
.ya9{bottom:1148.550000px;}
.yab{bottom:1151.400000px;}
.y4{bottom:1158.300000px;}
.yed{bottom:1158.510000px;}
.y34{bottom:1175.160000px;}
.y33{bottom:1193.700000px;}
.h1d{height:21.240000px;}
.h18{height:21.765000px;}
.h1a{height:21.780000px;}
.h19{height:21.810000px;}
.h1c{height:32.595000px;}
.hb{height:35.314453px;}
.h15{height:35.332031px;}
.h10{height:38.158594px;}
.h17{height:41.220000px;}
.h11{height:47.344922px;}
.h6{height:48.616875px;}
.hc{height:52.971680px;}
.h12{height:52.998047px;}
.hd{height:54.421875px;}
.h1e{height:55.503491px;}
.h7{height:55.796836px;}
.h13{height:55.824609px;}
.h16{height:57.270000px;}
.h8{height:58.621992px;}
.h1b{height:58.732031px;}
.hf{height:59.074453px;}
.h14{height:59.092031px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.wb{width:71.640000px;}
.w7{width:107.280000px;}
.w9{width:107.640000px;}
.w8{width:107.670000px;}
.w2{width:132.150000px;}
.w5{width:146.730000px;}
.wa{width:154.050000px;}
.w4{width:204.750000px;}
.w1{width:208.350000px;}
.w3{width:211.500000px;}
.w6{width:351.750000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1c{left:11.100000px;}
.x18{left:14.850000px;}
.x39{left:16.500000px;}
.x38{left:24.150000px;}
.x2c{left:27.150000px;}
.x3{left:29.985000px;}
.x1b{left:31.650000px;}
.x1f{left:39.750000px;}
.x32{left:42.600000px;}
.x19{left:44.850000px;}
.xc{left:46.860000px;}
.x30{left:48.150000px;}
.x2d{left:49.200000px;}
.xf{left:50.424000px;}
.xb{left:51.570000px;}
.x2b{left:54.900000px;}
.x22{left:60.600000px;}
.x26{left:61.650000px;}
.x2a{left:63.600000px;}
.x24{left:66.750000px;}
.x23{left:69.900000px;}
.x3b{left:74.535000px;}
.x2f{left:78.000000px;}
.x2e{left:86.700000px;}
.x9{left:88.320000px;}
.x1d{left:94.200000px;}
.xa{left:102.000000px;}
.x21{left:143.700000px;}
.x28{left:148.650000px;}
.x16{left:176.850000px;}
.x6{left:244.170000px;}
.x14{left:266.175000px;}
.x4{left:270.300000px;}
.x1e{left:277.350000px;}
.x11{left:286.725000px;}
.x5{left:290.610000px;}
.x25{left:307.350000px;}
.x33{left:325.500000px;}
.x35{left:329.250000px;}
.x34{left:332.700000px;}
.x36{left:340.050000px;}
.x15{left:352.389000px;}
.x3a{left:369.675000px;}
.x17{left:385.500000px;}
.x31{left:399.150000px;}
.xd{left:412.419000px;}
.x1{left:431.700000px;}
.x12{left:435.150000px;}
.xe{left:449.169000px;}
.x27{left:460.950000px;}
.x2{left:465.585000px;}
.x7{left:478.965000px;}
.x29{left:480.000000px;}
.x20{left:482.400000px;}
.x37{left:494.550000px;}
.x8{left:506.580000px;}
.x1a{left:517.950000px;}
.x13{left:589.875000px;}
.x10{left:608.925000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v7{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v8{vertical-align:-54.400000pt;}
.v4{vertical-align:-26.880000pt;}
.v5{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls17{letter-spacing:-0.528000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.224000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls1f{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.lsf{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.656000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls4{letter-spacing:1.440000pt;}
.ls22{letter-spacing:2.656000pt;}
.ls6{letter-spacing:5.920000pt;}
.ls21{letter-spacing:26.976000pt;}
.ls7{letter-spacing:46.720000pt;}
.ls9{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls1a{letter-spacing:535.200000pt;}
.ls1b{letter-spacing:799.200000pt;}
.ls18{letter-spacing:1006.133333pt;}
.ls13{letter-spacing:1084.533333pt;}
.ls14{letter-spacing:1096.800000pt;}
.ls1d{letter-spacing:1109.600000pt;}
.ls8{letter-spacing:1215.413333pt;}
.ls1c{letter-spacing:1254.133333pt;}
.ls20{letter-spacing:1255.733333pt;}
.ls1e{letter-spacing:1416.800000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws10{word-spacing:-14.953067pt;}
.ws3{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.656000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.096000pt;}
.ws12{word-spacing:-12.016000pt;}
.wsb{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.888000pt;}
.ws13{word-spacing:-11.776000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.472000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.000000pt;}
.wsf{word-spacing:0.000000pt;}
._d{margin-left:-13.359787pt;}
._c{margin-left:-5.335253pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._7{width:2.741120pt;}
._5{width:3.888000pt;}
._6{width:4.858667pt;}
._8{width:6.533333pt;}
._a{width:7.663147pt;}
._e{width:9.216000pt;}
._11{width:10.229120pt;}
._b{width:13.680000pt;}
._9{width:14.768000pt;}
._15{width:16.272000pt;}
._16{width:17.231573pt;}
._12{width:237.216000pt;}
._14{width:250.352000pt;}
._13{width:262.512000pt;}
._10{width:644.485333pt;}
._f{width:925.546667pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:2.533333pt;}
.ya0{bottom:2.546667pt;}
.yba{bottom:2.800000pt;}
.ya3{bottom:2.866667pt;}
.ya7{bottom:2.880000pt;}
.y8b{bottom:2.933333pt;}
.y8d{bottom:3.066667pt;}
.ybb{bottom:16.533333pt;}
.ya8{bottom:18.400000pt;}
.y1{bottom:20.320000pt;}
.y6e{bottom:21.400000pt;}
.y89{bottom:25.866667pt;}
.yec{bottom:27.426667pt;}
.y88{bottom:39.733333pt;}
.yfd{bottom:41.226667pt;}
.y35{bottom:48.053333pt;}
.ya6{bottom:49.920000pt;}
.y3{bottom:51.520000pt;}
.ya5{bottom:52.800000pt;}
.yeb{bottom:55.533333pt;}
.y2{bottom:68.346667pt;}
.ya4{bottom:69.960000pt;}
.y6d{bottom:73.520000pt;}
.yea{bottom:83.720000pt;}
.y6c{bottom:87.280000pt;}
.ya2{bottom:89.960000pt;}
.ye9{bottom:97.480000pt;}
.y6b{bottom:101.040000pt;}
.ya1{bottom:109.960000pt;}
.y6a{bottom:114.800000pt;}
.ye8{bottom:125.160000pt;}
.y69{bottom:128.720000pt;}
.y9f{bottom:129.960000pt;}
.ye7{bottom:139.080000pt;}
.y68{bottom:142.480000pt;}
.ye6{bottom:152.840000pt;}
.y9e{bottom:153.026667pt;}
.y67{bottom:156.240000pt;}
.ye5{bottom:166.600000pt;}
.y66{bottom:170.000000pt;}
.ye4{bottom:180.360000pt;}
.y9d{bottom:180.706667pt;}
.y65{bottom:183.920000pt;}
.ye3{bottom:194.280000pt;}
.y9c{bottom:194.466667pt;}
.y64{bottom:197.680000pt;}
.y32{bottom:207.066667pt;}
.ye2{bottom:208.040000pt;}
.y9b{bottom:208.386667pt;}
.y63{bottom:211.600000pt;}
.y31{bottom:220.826667pt;}
.ye1{bottom:221.640000pt;}
.y9a{bottom:222.146667pt;}
.y62{bottom:225.200000pt;}
.y30{bottom:234.586667pt;}
.y99{bottom:236.066667pt;}
.y61{bottom:239.280000pt;}
.y2f{bottom:248.346667pt;}
.ye0{bottom:249.320000pt;}
.y98{bottom:249.506667pt;}
.y2e{bottom:262.266667pt;}
.y97{bottom:263.426667pt;}
.ydf{bottom:263.560000pt;}
.y60{bottom:267.120000pt;}
.y2d{bottom:276.026667pt;}
.yde{bottom:277.320000pt;}
.y96{bottom:277.506667pt;}
.y5f{bottom:280.880000pt;}
.y2c{bottom:289.786667pt;}
.ydd{bottom:291.080000pt;}
.y95{bottom:291.426667pt;}
.y5e{bottom:294.640000pt;}
.y2b{bottom:303.746667pt;}
.ydc{bottom:305.040000pt;}
.y94{bottom:305.226667pt;}
.y5d{bottom:308.440000pt;}
.y2a{bottom:317.506667pt;}
.ydb{bottom:318.480000pt;}
.y93{bottom:318.986667pt;}
.y5c{bottom:322.360000pt;}
.y29{bottom:331.426667pt;}
.yda{bottom:332.400000pt;}
.y92{bottom:332.746667pt;}
.y5b{bottom:336.120000pt;}
.y28{bottom:345.186667pt;}
.yd9{bottom:346.640000pt;}
.y91{bottom:346.666667pt;}
.y5a{bottom:349.880000pt;}
.y27{bottom:358.946667pt;}
.y90{bottom:360.266667pt;}
.yd8{bottom:360.400000pt;}
.y59{bottom:363.640000pt;}
.y26{bottom:372.706667pt;}
.y8f{bottom:374.026667pt;}
.yd7{bottom:374.160000pt;}
.y58{bottom:377.560000pt;}
.yd6{bottom:387.920000pt;}
.y8e{bottom:388.266667pt;}
.y57{bottom:391.160000pt;}
.y8c{bottom:399.733333pt;}
.y25{bottom:400.226667pt;}
.yd5{bottom:401.840000pt;}
.y56{bottom:404.920000pt;}
.yd4{bottom:415.600000pt;}
.y55{bottom:419.160000pt;}
.y24{bottom:427.746667pt;}
.yd3{bottom:429.200000pt;}
.y54{bottom:432.920000pt;}
.y8a{bottom:437.200000pt;}
.yd2{bottom:443.120000pt;}
.y23{bottom:443.906667pt;}
.y53{bottom:446.680000pt;}
.yd1{bottom:457.200000pt;}
.y52{bottom:460.600000pt;}
.yd0{bottom:468.666667pt;}
.y22{bottom:469.666667pt;}
.y51{bottom:474.360000pt;}
.y87{bottom:474.533333pt;}
.y21{bottom:485.826667pt;}
.y50{bottom:488.280000pt;}
.ycf{bottom:488.666667pt;}
.y20{bottom:499.746667pt;}
.y4f{bottom:502.040000pt;}
.yce{bottom:508.666667pt;}
.y1f{bottom:513.506667pt;}
.y4e{bottom:515.800000pt;}
.y1e{bottom:527.266667pt;}
.ycd{bottom:528.666667pt;}
.y86{bottom:529.133333pt;}
.y4d{bottom:529.560000pt;}
.y1d{bottom:541.053333pt;}
.y85{bottom:542.920000pt;}
.y4c{bottom:543.506667pt;}
.ycc{bottom:551.760000pt;}
.y1c{bottom:554.973333pt;}
.y84{bottom:556.840000pt;}
.y4b{bottom:557.266667pt;}
.y1b{bottom:568.733333pt;}
.y83{bottom:570.600000pt;}
.y4a{bottom:570.866667pt;}
.ycb{bottom:579.440000pt;}
.y1a{bottom:582.653333pt;}
.y82{bottom:584.360000pt;}
.y49{bottom:584.626667pt;}
.yca{bottom:593.360000pt;}
.y81{bottom:598.280000pt;}
.y48{bottom:598.866667pt;}
.y19{bottom:602.333333pt;}
.yc9{bottom:607.120000pt;}
.y80{bottom:611.880000pt;}
.y47{bottom:617.906667pt;}
.yc8{bottom:620.880000pt;}
.y18{bottom:622.333333pt;}
.y7f{bottom:625.640000pt;}
.y46{bottom:626.546667pt;}
.yc7{bottom:634.800000pt;}
.y7e{bottom:639.880000pt;}
.y45{bottom:640.306667pt;}
.y17{bottom:646.013333pt;}
.yc6{bottom:648.400000pt;}
.y7d{bottom:653.640000pt;}
.y44{bottom:654.226667pt;}
.y16{bottom:659.933333pt;}
.yc5{bottom:662.160000pt;}
.y7c{bottom:667.560000pt;}
.y43{bottom:667.826667pt;}
.y15{bottom:673.693333pt;}
.yc4{bottom:676.400000pt;}
.y7b{bottom:681.160000pt;}
.yc3{bottom:688.000000pt;}
.yc2{bottom:690.800000pt;}
.y7a{bottom:694.920000pt;}
.y42{bottom:695.826667pt;}
.y14{bottom:704.413333pt;}
.yc1{bottom:707.466667pt;}
.y79{bottom:709.160000pt;}
.y41{bottom:709.586667pt;}
.yc0{bottom:710.400000pt;}
.y78{bottom:722.920000pt;}
.y40{bottom:723.346667pt;}
.y13{bottom:723.613333pt;}
.ybf{bottom:726.933333pt;}
.ybe{bottom:729.866667pt;}
.y77{bottom:736.680000pt;}
.y3f{bottom:737.266667pt;}
.ybd{bottom:746.533333pt;}
.ybc{bottom:749.333333pt;}
.y76{bottom:750.600000pt;}
.y3e{bottom:750.866667pt;}
.y12{bottom:754.333333pt;}
.y75{bottom:764.360000pt;}
.y3d{bottom:764.626667pt;}
.yb9{bottom:766.000000pt;}
.y11{bottom:768.253333pt;}
.y74{bottom:778.160000pt;}
.y73{bottom:792.080000pt;}
.y3c{bottom:792.826667pt;}
.y10{bottom:794.053333pt;}
.yb8{bottom:798.666667pt;}
.y72{bottom:805.680000pt;}
.y3b{bottom:806.586667pt;}
.yfc{bottom:808.160000pt;}
.y71{bottom:819.440000pt;}
.y3a{bottom:820.346667pt;}
.yfb{bottom:822.080000pt;}
.yb7{bottom:826.346667pt;}
.yf{bottom:828.773333pt;}
.y70{bottom:833.680000pt;}
.y39{bottom:834.266667pt;}
.yfa{bottom:835.840000pt;}
.yb6{bottom:840.106667pt;}
.y6f{bottom:844.720000pt;}
.y38{bottom:848.186667pt;}
.yf9{bottom:849.760000pt;}
.ye{bottom:850.373333pt;}
.yb5{bottom:853.866667pt;}
.y37{bottom:861.946667pt;}
.yf8{bottom:863.680000pt;}
.yb4{bottom:867.786667pt;}
.y36{bottom:872.986667pt;}
.yf7{bottom:877.440000pt;}
.yb3{bottom:881.386667pt;}
.yf6{bottom:891.360000pt;}
.yb2{bottom:895.146667pt;}
.yd{bottom:903.173333pt;}
.yf5{bottom:905.280000pt;}
.yb1{bottom:909.066667pt;}
.yf4{bottom:919.040000pt;}
.ya{bottom:919.173333pt;}
.yb0{bottom:920.933333pt;}
.yc{bottom:923.813333pt;}
.yf3{bottom:932.960000pt;}
.y9{bottom:939.813333pt;}
.yaf{bottom:940.933333pt;}
.yf2{bottom:946.880000pt;}
.yb{bottom:952.293333pt;}
.yae{bottom:960.933333pt;}
.y8{bottom:965.893333pt;}
.yf1{bottom:974.560000pt;}
.yad{bottom:980.933333pt;}
.y7{bottom:982.853333pt;}
.yf0{bottom:988.480000pt;}
.y6{bottom:998.213333pt;}
.yac{bottom:1000.933333pt;}
.yef{bottom:1002.240000pt;}
.y5{bottom:1013.600000pt;}
.yee{bottom:1015.866667pt;}
.ya9{bottom:1020.933333pt;}
.yab{bottom:1023.466667pt;}
.y4{bottom:1029.600000pt;}
.yed{bottom:1029.786667pt;}
.y34{bottom:1044.586667pt;}
.y33{bottom:1061.066667pt;}
.h1d{height:18.880000pt;}
.h18{height:19.346667pt;}
.h1a{height:19.360000pt;}
.h19{height:19.386667pt;}
.h1c{height:28.973333pt;}
.hb{height:31.390625pt;}
.h15{height:31.406250pt;}
.h10{height:33.918750pt;}
.h17{height:36.640000pt;}
.h11{height:42.084375pt;}
.h6{height:43.215000pt;}
.hc{height:47.085938pt;}
.h12{height:47.109375pt;}
.hd{height:48.375000pt;}
.h1e{height:49.336436pt;}
.h7{height:49.597187pt;}
.h13{height:49.621875pt;}
.h16{height:50.906667pt;}
.h8{height:52.108438pt;}
.h1b{height:52.206250pt;}
.hf{height:52.510625pt;}
.h14{height:52.526250pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.wb{width:63.680000pt;}
.w7{width:95.360000pt;}
.w9{width:95.680000pt;}
.w8{width:95.706667pt;}
.w2{width:117.466667pt;}
.w5{width:130.426667pt;}
.wa{width:136.933333pt;}
.w4{width:182.000000pt;}
.w1{width:185.200000pt;}
.w3{width:188.000000pt;}
.w6{width:312.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1c{left:9.866667pt;}
.x18{left:13.200000pt;}
.x39{left:14.666667pt;}
.x38{left:21.466667pt;}
.x2c{left:24.133333pt;}
.x3{left:26.653333pt;}
.x1b{left:28.133333pt;}
.x1f{left:35.333333pt;}
.x32{left:37.866667pt;}
.x19{left:39.866667pt;}
.xc{left:41.653333pt;}
.x30{left:42.800000pt;}
.x2d{left:43.733333pt;}
.xf{left:44.821333pt;}
.xb{left:45.840000pt;}
.x2b{left:48.800000pt;}
.x22{left:53.866667pt;}
.x26{left:54.800000pt;}
.x2a{left:56.533333pt;}
.x24{left:59.333333pt;}
.x23{left:62.133333pt;}
.x3b{left:66.253333pt;}
.x2f{left:69.333333pt;}
.x2e{left:77.066667pt;}
.x9{left:78.506667pt;}
.x1d{left:83.733333pt;}
.xa{left:90.666667pt;}
.x21{left:127.733333pt;}
.x28{left:132.133333pt;}
.x16{left:157.200000pt;}
.x6{left:217.040000pt;}
.x14{left:236.600000pt;}
.x4{left:240.266667pt;}
.x1e{left:246.533333pt;}
.x11{left:254.866667pt;}
.x5{left:258.320000pt;}
.x25{left:273.200000pt;}
.x33{left:289.333333pt;}
.x35{left:292.666667pt;}
.x34{left:295.733333pt;}
.x36{left:302.266667pt;}
.x15{left:313.234667pt;}
.x3a{left:328.600000pt;}
.x17{left:342.666667pt;}
.x31{left:354.800000pt;}
.xd{left:366.594667pt;}
.x1{left:383.733333pt;}
.x12{left:386.800000pt;}
.xe{left:399.261333pt;}
.x27{left:409.733333pt;}
.x2{left:413.853333pt;}
.x7{left:425.746667pt;}
.x29{left:426.666667pt;}
.x20{left:428.800000pt;}
.x37{left:439.600000pt;}
.x8{left:450.293333pt;}
.x1a{left:460.400000pt;}
.x13{left:524.333333pt;}
.x10{left:541.266667pt;}
}




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