
    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_009ea22224af05176cc6dfe5.woff')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_bf1fcc45ac211948001ddc5d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_197f4da7bd65d0cac45d4591.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_734b9a3654be0e8f3c06a867.woff')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_a7ade8813b43b1648de2b87a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.946777;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_3ac0487a8e9ee202147b260a.woff')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_5d7489c49d7edc3955f9a230.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4ec4cd7ec90980e63b7161a7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_0474a3c99baefea8ca1141ce.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e4e07a4fd85c0fa0e7acff33.woff')format("woff");}.ffa{font-family:ffa;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);}
.v4{vertical-align:-96.480000px;}
.v1{vertical-align:-91.440000px;}
.v5{vertical-align:-9.360000px;}
.v6{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v3{vertical-align:27.360000px;}
.lse{letter-spacing:-0.750000px;}
.ls6{letter-spacing:-0.457800px;}
.ls15{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.262200px;}
.lsd{letter-spacing:-0.216000px;}
.ls1a{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.109200px;}
.lsf{letter-spacing:-0.037440px;}
.ls12{letter-spacing:-0.028080px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.072000px;}
.ls16{letter-spacing:0.080400px;}
.ls17{letter-spacing:0.152400px;}
.ls1e{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.540000px;}
.ls1c{letter-spacing:2.700000px;}
.lsb{letter-spacing:5.016000px;}
.ls4{letter-spacing:5.580000px;}
.ls1f{letter-spacing:7.200000px;}
.ls13{letter-spacing:7.380000px;}
.ls10{letter-spacing:8.784000px;}
.lsa{letter-spacing:11.340000px;}
.ls5{letter-spacing:14.220000px;}
.ls0{letter-spacing:27.540000px;}
.ls1b{letter-spacing:27.900000px;}
.ls1d{letter-spacing:33.984000px;}
.ls9{letter-spacing:116.100000px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws0{word-spacing:-21.060000px;}
.wsa{word-spacing:-21.031920px;}
.ws8{word-spacing:-21.022560px;}
.ws7{word-spacing:-20.310000px;}
.ws11{word-spacing:-18.288000px;}
.ws15{word-spacing:-18.216000px;}
.ws14{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws13{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.712000px;}
.wse{word-spacing:-16.712400px;}
.ws10{word-spacing:-16.640400px;}
.ws2{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.450800px;}
.wsf{word-spacing:-16.297800px;}
.wsd{word-spacing:-16.254600px;}
.ws3{word-spacing:-16.102200px;}
.ws9{word-spacing:-13.500000px;}
.ws12{word-spacing:-12.060000px;}
.wsc{word-spacing:-10.440000px;}
.ws5{word-spacing:0.000000px;}
._24{margin-left:-9.320880px;}
._0{margin-left:-7.581600px;}
._3{margin-left:-6.486480px;}
._29{margin-left:-4.693680px;}
._4{margin-left:-3.622320px;}
._2{margin-left:-1.432080px;}
._1{width:1.095120px;}
._e{width:2.664000px;}
._d{width:3.672000px;}
._f{width:5.330160px;}
._6{width:7.116000px;}
._5{width:8.184000px;}
._12{width:9.434880px;}
._13{width:10.992960px;}
._14{width:12.004560px;}
._15{width:13.141440px;}
._10{width:14.405040px;}
._1e{width:15.406320px;}
._c{width:16.416000px;}
._1f{width:17.627760px;}
._1d{width:18.869760px;}
._b{width:20.208000px;}
._a{width:21.312000px;}
._16{width:22.479600px;}
._23{width:23.613600px;}
._31{width:25.610400px;}
._2d{width:28.051920px;}
._2e{width:29.593920px;}
._30{width:32.769360px;}
._21{width:33.864480px;}
._22{width:35.212320px;}
._1c{width:38.160720px;}
._2f{width:39.340080px;}
._1b{width:40.519440px;}
._1a{width:41.977440px;}
._9{width:43.272000px;}
._11{width:45.353280px;}
._19{width:46.668960px;}
._20{width:48.269520px;}
._17{width:54.587520px;}
._18{width:56.019600px;}
._8{width:59.456160px;}
._7{width:60.624000px;}
._2b{width:65.538720px;}
._2c{width:69.161040px;}
._2a{width:70.256160px;}
._25{width:87.188400px;}
._26{width:88.997280px;}
._28{width:122.400720px;}
._27{width:127.876320px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:6.300000px;}
.y2e{bottom:6.480000px;}
.y46{bottom:7.020000px;}
.y43{bottom:7.200000px;}
.y90{bottom:10.800000px;}
.y4{bottom:12.240000px;}
.y6c{bottom:17.280000px;}
.y2a{bottom:18.000000px;}
.y47{bottom:18.900000px;}
.y3f{bottom:19.080000px;}
.y3{bottom:23.976000px;}
.y72{bottom:28.080000px;}
.y6e{bottom:28.260000px;}
.y45{bottom:30.780000px;}
.y42{bottom:30.960000px;}
.y2{bottom:31.176000px;}
.y6b{bottom:39.060000px;}
.y29{bottom:39.960000px;}
.y7f{bottom:42.834000px;}
.y3e{bottom:42.840000px;}
.y6d{bottom:50.040000px;}
.y80{bottom:54.714000px;}
.y41{bottom:54.720000px;}
.y3d{bottom:66.600000px;}
.y5e{bottom:68.256000px;}
.y40{bottom:78.480000px;}
.y33{bottom:83.916000px;}
.y81{bottom:87.876000px;}
.y5d{bottom:96.156000px;}
.y32{bottom:111.636000px;}
.y7e{bottom:112.356000px;}
.y5c{bottom:123.876000px;}
.y31{bottom:139.356000px;}
.y5b{bottom:151.590000px;}
.y30{bottom:159.870000px;}
.ya5{bottom:167.070000px;}
.y5a{bottom:179.310000px;}
.y2f{bottom:182.370000px;}
.y7d{bottom:184.530000px;}
.ya4{bottom:194.970000px;}
.y28{bottom:204.870000px;}
.y59{bottom:207.210000px;}
.y7c{bottom:216.210000px;}
.ya3{bottom:222.690000px;}
.y2d{bottom:227.550000px;}
.y58{bottom:234.930000px;}
.y7b{bottom:239.970000px;}
.y2b{bottom:250.050000px;}
.ya2{bottom:250.410000px;}
.y57{bottom:262.650000px;}
.y7a{bottom:263.730000px;}
.ya1{bottom:278.310000px;}
.y27{bottom:279.750000px;}
.y79{bottom:288.795000px;}
.y56{bottom:290.595000px;}
.y26{bottom:303.555000px;}
.ya0{bottom:306.075000px;}
.y78{bottom:316.515000px;}
.y55{bottom:318.315000px;}
.y25{bottom:327.315000px;}
.y9f{bottom:333.795000px;}
.y77{bottom:344.235000px;}
.y54{bottom:346.035000px;}
.y24{bottom:352.155000px;}
.y9e{bottom:361.515000px;}
.y76{bottom:372.135000px;}
.y53{bottom:373.755000px;}
.y23{bottom:380.055000px;}
.y9d{bottom:389.415000px;}
.y75{bottom:392.475000px;}
.y52{bottom:401.655000px;}
.y22{bottom:407.775000px;}
.y74{bottom:414.975000px;}
.y9c{bottom:417.135000px;}
.y51{bottom:429.375000px;}
.y21{bottom:435.495000px;}
.y73{bottom:437.475000px;}
.y9b{bottom:444.855000px;}
.y50{bottom:457.095000px;}
.y71{bottom:460.155000px;}
.y20{bottom:463.395000px;}
.y9a{bottom:472.575000px;}
.y4f{bottom:484.815000px;}
.y1f{bottom:491.115000px;}
.y99{bottom:500.475000px;}
.y70{bottom:504.435000px;}
.y4e{bottom:512.715000px;}
.y1e{bottom:518.835000px;}
.y98{bottom:528.195000px;}
.y4d{bottom:540.435000px;}
.y1d{bottom:546.555000px;}
.y6f{bottom:548.895000px;}
.ybe{bottom:552.135000px;}
.y97{bottom:555.915000px;}
.y4c{bottom:568.185000px;}
.y6a{bottom:571.425000px;}
.y1c{bottom:574.485000px;}
.ybd{bottom:576.285000px;}
.y96{bottom:583.845000px;}
.y4b{bottom:596.085000px;}
.ybc{bottom:599.865000px;}
.y95{bottom:604.185000px;}
.ybb{bottom:620.565000px;}
.y1b{bottom:625.065000px;}
.y94{bottom:628.665000px;}
.y69{bottom:637.665000px;}
.yba{bottom:641.265000px;}
.y1a{bottom:643.065000px;}
.y4a{bottom:647.925000px;}
.y93{bottom:653.325000px;}
.y49{bottom:659.805000px;}
.y48{bottom:661.965000px;}
.y19{bottom:663.765000px;}
.y68{bottom:667.365000px;}
.y92{bottom:677.805000px;}
.yb9{bottom:682.665000px;}
.y18{bottom:684.465000px;}
.y67{bottom:691.125000px;}
.y91{bottom:702.285000px;}
.yb8{bottom:703.365000px;}
.y17{bottom:705.165000px;}
.y44{bottom:710.385000px;}
.y66{bottom:714.885000px;}
.yb7{bottom:724.065000px;}
.y16{bottom:725.865000px;}
.y8f{bottom:726.945000px;}
.y65{bottom:739.905000px;}
.yb6{bottom:744.765000px;}
.y15{bottom:745.845000px;}
.y3c{bottom:758.625000px;}
.y14{bottom:763.845000px;}
.yb5{bottom:765.465000px;}
.y8e{bottom:766.005000px;}
.y64{bottom:767.625000px;}
.y13{bottom:784.545000px;}
.yb4{bottom:786.165000px;}
.y8d{bottom:789.765000px;}
.y63{bottom:795.345000px;}
.y12{bottom:805.245000px;}
.yb3{bottom:806.865000px;}
.y8c{bottom:813.525000px;}
.y62{bottom:823.065000px;}
.y11{bottom:825.945000px;}
.yb2{bottom:827.565000px;}
.y8b{bottom:838.545000px;}
.y10{bottom:846.645000px;}
.yb1{bottom:848.310000px;}
.y61{bottom:851.010000px;}
.y3b{bottom:861.810000px;}
.y8a{bottom:866.310000px;}
.yf{bottom:867.390000px;}
.yb0{bottom:869.010000px;}
.y60{bottom:878.730000px;}
.y3a{bottom:885.570000px;}
.ye{bottom:888.090000px;}
.yaf{bottom:889.710000px;}
.y89{bottom:894.030000px;}
.y5f{bottom:906.450000px;}
.yd{bottom:908.070000px;}
.y39{bottom:909.330000px;}
.yae{bottom:910.410000px;}
.y88{bottom:921.930000px;}
.yc{bottom:925.890000px;}
.yad{bottom:931.110000px;}
.y38{bottom:934.350000px;}
.yb{bottom:946.590000px;}
.y87{bottom:949.650000px;}
.yac{bottom:951.810000px;}
.y37{bottom:962.070000px;}
.ya{bottom:967.290000px;}
.y86{bottom:969.990000px;}
.yab{bottom:972.510000px;}
.y9{bottom:987.990000px;}
.y36{bottom:989.790000px;}
.yaa{bottom:993.210000px;}
.y85{bottom:994.470000px;}
.y8{bottom:1007.790000px;}
.ya9{bottom:1013.910000px;}
.y35{bottom:1017.510000px;}
.y84{bottom:1019.130000px;}
.y7{bottom:1024.890000px;}
.ya8{bottom:1034.610000px;}
.y83{bottom:1043.610000px;}
.y34{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.ya7{bottom:1055.310000px;}
.y82{bottom:1068.270000px;}
.y5{bottom:1073.130000px;}
.ya6{bottom:1076.010000px;}
.y1{bottom:1190.160000px;}
.h19{height:5.805000px;}
.hf{height:21.780000px;}
.h1d{height:21.816000px;}
.h11{height:21.960000px;}
.h23{height:23.760000px;}
.h21{height:23.940000px;}
.h24{height:31.320000px;}
.h3{height:31.860000px;}
.h1f{height:43.560000px;}
.h1e{height:43.740000px;}
.h17{height:47.520000px;}
.h18{height:47.700000px;}
.h1c{height:47.901094px;}
.h1a{height:48.616875px;}
.h14{height:52.066406px;}
.h9{height:52.628906px;}
.h5{height:54.421875px;}
.ha{height:58.621992px;}
.h8{height:60.226875px;}
.hb{height:60.917695px;}
.hc{height:63.949219px;}
.h12{height:65.010937px;}
.h1b{height:65.520000px;}
.h10{height:65.846250px;}
.he{height:66.757500px;}
.hd{height:66.960000px;}
.h7{height:70.628906px;}
.h15{height:70.664062px;}
.h22{height:71.460000px;}
.h6{height:72.562500px;}
.h25{height:74.004654px;}
.h16{height:74.704922px;}
.h20{height:74.953125px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h13{height:95.256000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:39.960000px;}
.w13{width:46.836000px;}
.w14{width:48.960000px;}
.w20{width:49.140000px;}
.w19{width:49.320000px;}
.w18{width:60.480000px;}
.w1d{width:63.000000px;}
.w1e{width:63.036000px;}
.w15{width:65.160000px;}
.w17{width:65.736000px;}
.w8{width:65.916000px;}
.w1c{width:73.656000px;}
.w3{width:75.816000px;}
.wb{width:87.660000px;}
.w9{width:87.840000px;}
.wa{width:87.876000px;}
.wc{width:102.960000px;}
.wd{width:105.696000px;}
.w4{width:158.760000px;}
.we{width:169.230000px;}
.w1a{width:174.090000px;}
.w1f{width:179.820000px;}
.w16{width:188.130000px;}
.w23{width:200.370000px;}
.w10{width:227.010000px;}
.w5{width:243.075000px;}
.wf{width:255.270000px;}
.w6{width:279.930000px;}
.w11{width:351.435000px;}
.w12{width:351.795000px;}
.w22{width:360.255000px;}
.w1b{width:381.855000px;}
.w7{width:523.725000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:7.740000px;}
.x3c{left:10.080000px;}
.x3e{left:11.160000px;}
.x27{left:12.240000px;}
.x4a{left:13.320000px;}
.x2b{left:14.760000px;}
.x2c{left:15.840000px;}
.x53{left:16.920000px;}
.x49{left:19.116000px;}
.x43{left:20.520000px;}
.x3{left:22.140000px;}
.x41{left:23.220000px;}
.x4b{left:24.300000px;}
.x5a{left:26.505000px;}
.x51{left:28.476000px;}
.x46{left:29.700000px;}
.x2a{left:30.780000px;}
.x4c{left:32.580000px;}
.x48{left:34.740000px;}
.x59{left:36.900000px;}
.x55{left:38.520000px;}
.x21{left:40.545000px;}
.x11{left:43.560000px;}
.x17{left:46.125000px;}
.x31{left:48.276000px;}
.x22{left:49.500000px;}
.x1b{left:51.510000px;}
.x19{left:54.360000px;}
.x1c{left:56.880000px;}
.x1f{left:59.040000px;}
.x47{left:61.425000px;}
.x15{left:63.900000px;}
.x26{left:66.780000px;}
.x20{left:68.214000px;}
.x2d{left:70.020000px;}
.x10{left:74.154000px;}
.x30{left:75.645000px;}
.x38{left:77.400000px;}
.x61{left:79.200000px;}
.x13{left:80.325000px;}
.x33{left:81.900000px;}
.x60{left:83.700000px;}
.x1{left:84.959987px;}
.x34{left:88.020000px;}
.x32{left:89.100000px;}
.x4d{left:94.005000px;}
.x4{left:99.575987px;}
.x50{left:101.730000px;}
.xf{left:104.976000px;}
.x62{left:106.235987px;}
.x3b{left:107.850000px;}
.x39{left:110.370000px;}
.x35{left:116.855987px;}
.x5{left:119.195987px;}
.xd{left:122.975987px;}
.x3d{left:125.136000px;}
.xb{left:127.475987px;}
.x4e{left:129.275987px;}
.x63{left:134.135987px;}
.x23{left:138.095987px;}
.x5d{left:145.476000px;}
.x52{left:153.930000px;}
.x29{left:173.370000px;}
.x3f{left:174.810000px;}
.xe{left:176.609987px;}
.x36{left:178.229987px;}
.x5e{left:186.330000px;}
.x16{left:189.045000px;}
.x5b{left:197.129987px;}
.x8{left:217.289987px;}
.x40{left:240.690000px;}
.x9{left:253.289987px;}
.xc{left:263.369987px;}
.x12{left:264.450000px;}
.x4f{left:265.709987px;}
.x54{left:281.415000px;}
.x25{left:297.794987px;}
.x5c{left:323.174987px;}
.x18{left:331.095000px;}
.x2e{left:343.335000px;}
.x6{left:344.774987px;}
.x37{left:401.654987px;}
.x2{left:409.035000px;}
.x1a{left:419.655000px;}
.x3a{left:429.555000px;}
.x7{left:446.474987px;}
.xa{left:462.314987px;}
.x42{left:496.005000px;}
.x14{left:508.245000px;}
.x56{left:528.585000px;}
.x5f{left:547.305000px;}
.x44{left:557.205000px;}
.x57{left:589.785000px;}
.x1d{left:596.625000px;}
.x2f{left:599.325000px;}
.x45{left:607.245000px;}
.x58{left:639.645000px;}
.x1e{left:685.230000px;}
.x24{left:753.989987px;}
@media print{
.v4{vertical-align:-85.760000pt;}
.v1{vertical-align:-81.280000pt;}
.v5{vertical-align:-8.320000pt;}
.v6{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v3{vertical-align:24.320000pt;}
.lse{letter-spacing:-0.666667pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls15{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.233067pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.097067pt;}
.lsf{letter-spacing:-0.033280pt;}
.ls12{letter-spacing:-0.024960pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.064000pt;}
.ls16{letter-spacing:0.071467pt;}
.ls17{letter-spacing:0.135467pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:2.400000pt;}
.lsb{letter-spacing:4.458667pt;}
.ls4{letter-spacing:4.960000pt;}
.ls1f{letter-spacing:6.400000pt;}
.ls13{letter-spacing:6.560000pt;}
.ls10{letter-spacing:7.808000pt;}
.lsa{letter-spacing:10.080000pt;}
.ls5{letter-spacing:12.640000pt;}
.ls0{letter-spacing:24.480000pt;}
.ls1b{letter-spacing:24.800000pt;}
.ls1d{letter-spacing:30.208000pt;}
.ls9{letter-spacing:103.200000pt;}
.ws4{word-spacing:-19.040000pt;}
.ws0{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.695040pt;}
.ws8{word-spacing:-18.686720pt;}
.ws7{word-spacing:-18.053333pt;}
.ws11{word-spacing:-16.256000pt;}
.ws15{word-spacing:-16.192000pt;}
.ws14{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws13{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.744000pt;}
.wse{word-spacing:-14.855467pt;}
.ws10{word-spacing:-14.791467pt;}
.ws2{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.622933pt;}
.wsf{word-spacing:-14.486933pt;}
.wsd{word-spacing:-14.448533pt;}
.ws3{word-spacing:-14.313067pt;}
.ws9{word-spacing:-12.000000pt;}
.ws12{word-spacing:-10.720000pt;}
.wsc{word-spacing:-9.280000pt;}
.ws5{word-spacing:0.000000pt;}
._24{margin-left:-8.285227pt;}
._0{margin-left:-6.739200pt;}
._3{margin-left:-5.765760pt;}
._29{margin-left:-4.172160pt;}
._4{margin-left:-3.219840pt;}
._2{margin-left:-1.272960pt;}
._1{width:0.973440pt;}
._e{width:2.368000pt;}
._d{width:3.264000pt;}
._f{width:4.737920pt;}
._6{width:6.325333pt;}
._5{width:7.274667pt;}
._12{width:8.386560pt;}
._13{width:9.771520pt;}
._14{width:10.670720pt;}
._15{width:11.681280pt;}
._10{width:12.804480pt;}
._1e{width:13.694507pt;}
._c{width:14.592000pt;}
._1f{width:15.669120pt;}
._1d{width:16.773120pt;}
._b{width:17.962667pt;}
._a{width:18.944000pt;}
._16{width:19.981867pt;}
._23{width:20.989867pt;}
._31{width:22.764800pt;}
._2d{width:24.935040pt;}
._2e{width:26.305707pt;}
._30{width:29.128320pt;}
._21{width:30.101760pt;}
._22{width:31.299840pt;}
._1c{width:33.920640pt;}
._2f{width:34.968960pt;}
._1b{width:36.017280pt;}
._1a{width:37.313280pt;}
._9{width:38.464000pt;}
._11{width:40.314027pt;}
._19{width:41.483520pt;}
._20{width:42.906240pt;}
._17{width:48.522240pt;}
._18{width:49.795200pt;}
._8{width:52.849920pt;}
._7{width:53.888000pt;}
._2b{width:58.256640pt;}
._2c{width:61.476480pt;}
._2a{width:62.449920pt;}
._25{width:77.500800pt;}
._26{width:79.108693pt;}
._28{width:108.800640pt;}
._27{width:113.667840pt;}
.fs7{font-size:5.120000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:5.600000pt;}
.y2e{bottom:5.760000pt;}
.y46{bottom:6.240000pt;}
.y43{bottom:6.400000pt;}
.y90{bottom:9.600000pt;}
.y4{bottom:10.880000pt;}
.y6c{bottom:15.360000pt;}
.y2a{bottom:16.000000pt;}
.y47{bottom:16.800000pt;}
.y3f{bottom:16.960000pt;}
.y3{bottom:21.312000pt;}
.y72{bottom:24.960000pt;}
.y6e{bottom:25.120000pt;}
.y45{bottom:27.360000pt;}
.y42{bottom:27.520000pt;}
.y2{bottom:27.712000pt;}
.y6b{bottom:34.720000pt;}
.y29{bottom:35.520000pt;}
.y7f{bottom:38.074667pt;}
.y3e{bottom:38.080000pt;}
.y6d{bottom:44.480000pt;}
.y80{bottom:48.634667pt;}
.y41{bottom:48.640000pt;}
.y3d{bottom:59.200000pt;}
.y5e{bottom:60.672000pt;}
.y40{bottom:69.760000pt;}
.y33{bottom:74.592000pt;}
.y81{bottom:78.112000pt;}
.y5d{bottom:85.472000pt;}
.y32{bottom:99.232000pt;}
.y7e{bottom:99.872000pt;}
.y5c{bottom:110.112000pt;}
.y31{bottom:123.872000pt;}
.y5b{bottom:134.746667pt;}
.y30{bottom:142.106667pt;}
.ya5{bottom:148.506667pt;}
.y5a{bottom:159.386667pt;}
.y2f{bottom:162.106667pt;}
.y7d{bottom:164.026667pt;}
.ya4{bottom:173.306667pt;}
.y28{bottom:182.106667pt;}
.y59{bottom:184.186667pt;}
.y7c{bottom:192.186667pt;}
.ya3{bottom:197.946667pt;}
.y2d{bottom:202.266667pt;}
.y58{bottom:208.826667pt;}
.y7b{bottom:213.306667pt;}
.y2b{bottom:222.266667pt;}
.ya2{bottom:222.586667pt;}
.y57{bottom:233.466667pt;}
.y7a{bottom:234.426667pt;}
.ya1{bottom:247.386667pt;}
.y27{bottom:248.666667pt;}
.y79{bottom:256.706667pt;}
.y56{bottom:258.306667pt;}
.y26{bottom:269.826667pt;}
.ya0{bottom:272.066667pt;}
.y78{bottom:281.346667pt;}
.y55{bottom:282.946667pt;}
.y25{bottom:290.946667pt;}
.y9f{bottom:296.706667pt;}
.y77{bottom:305.986667pt;}
.y54{bottom:307.586667pt;}
.y24{bottom:313.026667pt;}
.y9e{bottom:321.346667pt;}
.y76{bottom:330.786667pt;}
.y53{bottom:332.226667pt;}
.y23{bottom:337.826667pt;}
.y9d{bottom:346.146667pt;}
.y75{bottom:348.866667pt;}
.y52{bottom:357.026667pt;}
.y22{bottom:362.466667pt;}
.y74{bottom:368.866667pt;}
.y9c{bottom:370.786667pt;}
.y51{bottom:381.666667pt;}
.y21{bottom:387.106667pt;}
.y73{bottom:388.866667pt;}
.y9b{bottom:395.426667pt;}
.y50{bottom:406.306667pt;}
.y71{bottom:409.026667pt;}
.y20{bottom:411.906667pt;}
.y9a{bottom:420.066667pt;}
.y4f{bottom:430.946667pt;}
.y1f{bottom:436.546667pt;}
.y99{bottom:444.866667pt;}
.y70{bottom:448.386667pt;}
.y4e{bottom:455.746667pt;}
.y1e{bottom:461.186667pt;}
.y98{bottom:469.506667pt;}
.y4d{bottom:480.386667pt;}
.y1d{bottom:485.826667pt;}
.y6f{bottom:487.906667pt;}
.ybe{bottom:490.786667pt;}
.y97{bottom:494.146667pt;}
.y4c{bottom:505.053333pt;}
.y6a{bottom:507.933333pt;}
.y1c{bottom:510.653333pt;}
.ybd{bottom:512.253333pt;}
.y96{bottom:518.973333pt;}
.y4b{bottom:529.853333pt;}
.ybc{bottom:533.213333pt;}
.y95{bottom:537.053333pt;}
.ybb{bottom:551.613333pt;}
.y1b{bottom:555.613333pt;}
.y94{bottom:558.813333pt;}
.y69{bottom:566.813333pt;}
.yba{bottom:570.013333pt;}
.y1a{bottom:571.613333pt;}
.y4a{bottom:575.933333pt;}
.y93{bottom:580.733333pt;}
.y49{bottom:586.493333pt;}
.y48{bottom:588.413333pt;}
.y19{bottom:590.013333pt;}
.y68{bottom:593.213333pt;}
.y92{bottom:602.493333pt;}
.yb9{bottom:606.813333pt;}
.y18{bottom:608.413333pt;}
.y67{bottom:614.333333pt;}
.y91{bottom:624.253333pt;}
.yb8{bottom:625.213333pt;}
.y17{bottom:626.813333pt;}
.y44{bottom:631.453333pt;}
.y66{bottom:635.453333pt;}
.yb7{bottom:643.613333pt;}
.y16{bottom:645.213333pt;}
.y8f{bottom:646.173333pt;}
.y65{bottom:657.693333pt;}
.yb6{bottom:662.013333pt;}
.y15{bottom:662.973333pt;}
.y3c{bottom:674.333333pt;}
.y14{bottom:678.973333pt;}
.yb5{bottom:680.413333pt;}
.y8e{bottom:680.893333pt;}
.y64{bottom:682.333333pt;}
.y13{bottom:697.373333pt;}
.yb4{bottom:698.813333pt;}
.y8d{bottom:702.013333pt;}
.y63{bottom:706.973333pt;}
.y12{bottom:715.773333pt;}
.yb3{bottom:717.213333pt;}
.y8c{bottom:723.133333pt;}
.y62{bottom:731.613333pt;}
.y11{bottom:734.173333pt;}
.yb2{bottom:735.613333pt;}
.y8b{bottom:745.373333pt;}
.y10{bottom:752.573333pt;}
.yb1{bottom:754.053333pt;}
.y61{bottom:756.453333pt;}
.y3b{bottom:766.053333pt;}
.y8a{bottom:770.053333pt;}
.yf{bottom:771.013333pt;}
.yb0{bottom:772.453333pt;}
.y60{bottom:781.093333pt;}
.y3a{bottom:787.173333pt;}
.ye{bottom:789.413333pt;}
.yaf{bottom:790.853333pt;}
.y89{bottom:794.693333pt;}
.y5f{bottom:805.733333pt;}
.yd{bottom:807.173333pt;}
.y39{bottom:808.293333pt;}
.yae{bottom:809.253333pt;}
.y88{bottom:819.493333pt;}
.yc{bottom:823.013333pt;}
.yad{bottom:827.653333pt;}
.y38{bottom:830.533333pt;}
.yb{bottom:841.413333pt;}
.y87{bottom:844.133333pt;}
.yac{bottom:846.053333pt;}
.y37{bottom:855.173333pt;}
.ya{bottom:859.813333pt;}
.y86{bottom:862.213333pt;}
.yab{bottom:864.453333pt;}
.y9{bottom:878.213333pt;}
.y36{bottom:879.813333pt;}
.yaa{bottom:882.853333pt;}
.y85{bottom:883.973333pt;}
.y8{bottom:895.813333pt;}
.ya9{bottom:901.253333pt;}
.y35{bottom:904.453333pt;}
.y84{bottom:905.893333pt;}
.y7{bottom:911.013333pt;}
.ya8{bottom:919.653333pt;}
.y83{bottom:927.653333pt;}
.y34{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.ya7{bottom:938.053333pt;}
.y82{bottom:949.573333pt;}
.y5{bottom:953.893333pt;}
.ya6{bottom:956.453333pt;}
.y1{bottom:1057.920000pt;}
.h19{height:5.160000pt;}
.hf{height:19.360000pt;}
.h1d{height:19.392000pt;}
.h11{height:19.520000pt;}
.h23{height:21.120000pt;}
.h21{height:21.280000pt;}
.h24{height:27.840000pt;}
.h3{height:28.320000pt;}
.h1f{height:38.720000pt;}
.h1e{height:38.880000pt;}
.h17{height:42.240000pt;}
.h18{height:42.400000pt;}
.h1c{height:42.578750pt;}
.h1a{height:43.215000pt;}
.h14{height:46.281250pt;}
.h9{height:46.781250pt;}
.h5{height:48.375000pt;}
.ha{height:52.108438pt;}
.h8{height:53.535000pt;}
.hb{height:54.149062pt;}
.hc{height:56.843750pt;}
.h12{height:57.787500pt;}
.h1b{height:58.240000pt;}
.h10{height:58.530000pt;}
.he{height:59.340000pt;}
.hd{height:59.520000pt;}
.h7{height:62.781250pt;}
.h15{height:62.812500pt;}
.h22{height:63.520000pt;}
.h6{height:64.500000pt;}
.h25{height:65.781915pt;}
.h16{height:66.404375pt;}
.h20{height:66.625000pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h13{height:84.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:35.520000pt;}
.w13{width:41.632000pt;}
.w14{width:43.520000pt;}
.w20{width:43.680000pt;}
.w19{width:43.840000pt;}
.w18{width:53.760000pt;}
.w1d{width:56.000000pt;}
.w1e{width:56.032000pt;}
.w15{width:57.920000pt;}
.w17{width:58.432000pt;}
.w8{width:58.592000pt;}
.w1c{width:65.472000pt;}
.w3{width:67.392000pt;}
.wb{width:77.920000pt;}
.w9{width:78.080000pt;}
.wa{width:78.112000pt;}
.wc{width:91.520000pt;}
.wd{width:93.952000pt;}
.w4{width:141.120000pt;}
.we{width:150.426667pt;}
.w1a{width:154.746667pt;}
.w1f{width:159.840000pt;}
.w16{width:167.226667pt;}
.w23{width:178.106667pt;}
.w10{width:201.786667pt;}
.w5{width:216.066667pt;}
.wf{width:226.906667pt;}
.w6{width:248.826667pt;}
.w11{width:312.386667pt;}
.w12{width:312.706667pt;}
.w22{width:320.226667pt;}
.w1b{width:339.426667pt;}
.w7{width:465.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:6.880000pt;}
.x3c{left:8.960000pt;}
.x3e{left:9.920000pt;}
.x27{left:10.880000pt;}
.x4a{left:11.840000pt;}
.x2b{left:13.120000pt;}
.x2c{left:14.080000pt;}
.x53{left:15.040000pt;}
.x49{left:16.992000pt;}
.x43{left:18.240000pt;}
.x3{left:19.680000pt;}
.x41{left:20.640000pt;}
.x4b{left:21.600000pt;}
.x5a{left:23.560000pt;}
.x51{left:25.312000pt;}
.x46{left:26.400000pt;}
.x2a{left:27.360000pt;}
.x4c{left:28.960000pt;}
.x48{left:30.880000pt;}
.x59{left:32.800000pt;}
.x55{left:34.240000pt;}
.x21{left:36.040000pt;}
.x11{left:38.720000pt;}
.x17{left:41.000000pt;}
.x31{left:42.912000pt;}
.x22{left:44.000000pt;}
.x1b{left:45.786667pt;}
.x19{left:48.320000pt;}
.x1c{left:50.560000pt;}
.x1f{left:52.480000pt;}
.x47{left:54.600000pt;}
.x15{left:56.800000pt;}
.x26{left:59.360000pt;}
.x20{left:60.634667pt;}
.x2d{left:62.240000pt;}
.x10{left:65.914667pt;}
.x30{left:67.240000pt;}
.x38{left:68.800000pt;}
.x61{left:70.400000pt;}
.x13{left:71.400000pt;}
.x33{left:72.800000pt;}
.x60{left:74.400000pt;}
.x1{left:75.519988pt;}
.x34{left:78.240000pt;}
.x32{left:79.200000pt;}
.x4d{left:83.560000pt;}
.x4{left:88.511988pt;}
.x50{left:90.426667pt;}
.xf{left:93.312000pt;}
.x62{left:94.431988pt;}
.x3b{left:95.866667pt;}
.x39{left:98.106667pt;}
.x35{left:103.871988pt;}
.x5{left:105.951988pt;}
.xd{left:109.311988pt;}
.x3d{left:111.232000pt;}
.xb{left:113.311988pt;}
.x4e{left:114.911988pt;}
.x63{left:119.231988pt;}
.x23{left:122.751988pt;}
.x5d{left:129.312000pt;}
.x52{left:136.826667pt;}
.x29{left:154.106667pt;}
.x3f{left:155.386667pt;}
.xe{left:156.986655pt;}
.x36{left:158.426655pt;}
.x5e{left:165.626667pt;}
.x16{left:168.040000pt;}
.x5b{left:175.226655pt;}
.x8{left:193.146655pt;}
.x40{left:213.946667pt;}
.x9{left:225.146655pt;}
.xc{left:234.106655pt;}
.x12{left:235.066667pt;}
.x4f{left:236.186655pt;}
.x54{left:250.146667pt;}
.x25{left:264.706655pt;}
.x5c{left:287.266655pt;}
.x18{left:294.306667pt;}
.x2e{left:305.186667pt;}
.x6{left:306.466655pt;}
.x37{left:357.026655pt;}
.x2{left:363.586667pt;}
.x1a{left:373.026667pt;}
.x3a{left:381.826667pt;}
.x7{left:396.866655pt;}
.xa{left:410.946655pt;}
.x42{left:440.893333pt;}
.x14{left:451.773333pt;}
.x56{left:469.853333pt;}
.x5f{left:486.493333pt;}
.x44{left:495.293333pt;}
.x57{left:524.253333pt;}
.x1d{left:530.333333pt;}
.x2f{left:532.733333pt;}
.x45{left:539.773333pt;}
.x58{left:568.573333pt;}
.x1e{left:609.093333pt;}
.x24{left:670.213322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  