
    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_36119edc0c36c01c447d8967.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fa0c52b3ffff9d5d6543773b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fdbccac78e6c0f2a20e683da.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fe669f9dd16c892ef8e74a83.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e5383c221632ccb8977bec37.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.937988;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_767a81b1b843fddf65d993d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8729e5d5c984ac970f4d87d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_be7471d60e7d88d9f12e136f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.937988;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;}
.ls17{letter-spacing:-1.182000px;}
.ls8{letter-spacing:-0.774000px;}
.ls13{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.457800px;}
.lsd{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.259800px;}
.lsa{letter-spacing:-0.206400px;}
.lsc{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.018720px;}
.lsf{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106560px;}
.lsb{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.306600px;}
.ls12{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.900000px;}
.ls1a{letter-spacing:11.466720px;}
.ls2{letter-spacing:26.586720px;}
.ls9{letter-spacing:26.730720px;}
.ls19{letter-spacing:41.850720px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.ws1{word-spacing:-16.102200px;}
.wsc{word-spacing:-15.300000px;}
.wse{word-spacing:-15.246600px;}
.ws4{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.120000px;}
.ws8{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.680200px;}
.ws3{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-2538.258480px;}
._3{margin-left:-1446.151680px;}
._5{margin-left:-1443.110040px;}
._4{margin-left:-995.051520px;}
._6{margin-left:-576.348480px;}
._7{margin-left:-9.325680px;}
._1e{margin-left:-7.034880px;}
._1c{margin-left:-5.965920px;}
._8{margin-left:-4.743840px;}
._b{margin-left:-3.338400px;}
._1d{margin-left:-2.282640px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._c{width:2.985840px;}
._d{width:4.071840px;}
._12{width:5.508000px;}
._9{width:7.372080px;}
._a{width:8.430960px;}
._11{width:9.624960px;}
._10{width:10.876320px;}
._f{width:12.250800px;}
._13{width:13.523040px;}
._e{width:15.945600px;}
._19{width:17.165040px;}
._14{width:18.884160px;}
._15{width:20.617200px;}
._1a{width:22.051440px;}
._18{width:23.794560px;}
._17{width:25.278480px;}
._1b{width:36.941760px;}
._16{width:2332.860000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9e{bottom:5.760000px;}
.ya4{bottom:5.940000px;}
.ya0{bottom:9.900000px;}
.y6{bottom:60.300000px;}
.yb9{bottom:91.620000px;}
.ye4{bottom:94.320000px;}
.yd0{bottom:94.860000px;}
.ybe{bottom:102.960000px;}
.y66{bottom:105.300000px;}
.yf4{bottom:107.100000px;}
.yb8{bottom:111.420000px;}
.ye3{bottom:114.300000px;}
.ycf{bottom:114.660000px;}
.y31{bottom:122.580000px;}
.ybd{bottom:122.760000px;}
.y65{bottom:125.100000px;}
.yf3{bottom:126.900000px;}
.yb7{bottom:131.220000px;}
.ye2{bottom:134.100000px;}
.yce{bottom:134.460000px;}
.y30{bottom:142.560000px;}
.y64{bottom:144.900000px;}
.yf2{bottom:146.700000px;}
.yb6{bottom:151.020000px;}
.ye1{bottom:153.930000px;}
.ycd{bottom:154.470000px;}
.y2f{bottom:162.390000px;}
.y63{bottom:164.730000px;}
.yf1{bottom:166.530000px;}
.yb5{bottom:170.850000px;}
.ye0{bottom:173.730000px;}
.ycc{bottom:174.270000px;}
.y2e{bottom:182.190000px;}
.y62{bottom:184.530000px;}
.yf0{bottom:186.510000px;}
.yb4{bottom:190.830000px;}
.ydf{bottom:193.530000px;}
.ycb{bottom:194.070000px;}
.y2d{bottom:201.990000px;}
.ybc{bottom:202.170000px;}
.y61{bottom:204.510000px;}
.yef{bottom:206.310000px;}
.y8d{bottom:207.030000px;}
.yb3{bottom:210.630000px;}
.yde{bottom:213.510000px;}
.yca{bottom:213.870000px;}
.y2c{bottom:221.790000px;}
.ybb{bottom:221.970000px;}
.y60{bottom:224.310000px;}
.yee{bottom:226.110000px;}
.y8c{bottom:227.010000px;}
.yb2{bottom:230.430000px;}
.ydd{bottom:233.310000px;}
.yc9{bottom:233.670000px;}
.yba{bottom:238.350000px;}
.y2b{bottom:241.770000px;}
.y5f{bottom:244.110000px;}
.y11f{bottom:245.910000px;}
.y8b{bottom:246.810000px;}
.yb1{bottom:250.230000px;}
.ydc{bottom:253.110000px;}
.yc8{bottom:253.650000px;}
.yed{bottom:254.910000px;}
.y2a{bottom:261.570000px;}
.y5e{bottom:263.910000px;}
.y11e{bottom:265.710000px;}
.y8a{bottom:266.610000px;}
.yb0{bottom:270.030000px;}
.ydb{bottom:272.910000px;}
.yc7{bottom:273.450000px;}
.yec{bottom:274.710000px;}
.y29{bottom:281.370000px;}
.y5d{bottom:283.710000px;}
.y11d{bottom:285.690000px;}
.y89{bottom:286.410000px;}
.yaf{bottom:290.010000px;}
.yda{bottom:292.710000px;}
.yc6{bottom:293.250000px;}
.yeb{bottom:294.690000px;}
.y28{bottom:301.170000px;}
.y5c{bottom:303.690000px;}
.y11c{bottom:305.490000px;}
.y88{bottom:306.210000px;}
.yae{bottom:309.810000px;}
.yd9{bottom:312.690000px;}
.yc5{bottom:313.050000px;}
.yea{bottom:314.490000px;}
.y27{bottom:320.970000px;}
.y5b{bottom:323.490000px;}
.y11b{bottom:325.290000px;}
.y87{bottom:326.190000px;}
.yad{bottom:329.610000px;}
.yd8{bottom:332.490000px;}
.yc4{bottom:332.850000px;}
.ye9{bottom:334.290000px;}
.y26{bottom:340.950000px;}
.y5a{bottom:343.290000px;}
.y11a{bottom:345.090000px;}
.y86{bottom:345.990000px;}
.yac{bottom:349.410000px;}
.yd7{bottom:352.290000px;}
.yc3{bottom:352.830000px;}
.ye8{bottom:354.090000px;}
.y25{bottom:360.750000px;}
.y59{bottom:363.090000px;}
.y119{bottom:364.890000px;}
.y85{bottom:365.790000px;}
.yab{bottom:369.210000px;}
.yd6{bottom:372.090000px;}
.yc2{bottom:372.630000px;}
.ye7{bottom:373.890000px;}
.y24{bottom:380.550000px;}
.y58{bottom:382.890000px;}
.y118{bottom:384.870000px;}
.y84{bottom:385.590000px;}
.yaa{bottom:389.190000px;}
.yd5{bottom:391.890000px;}
.yc1{bottom:392.430000px;}
.y23{bottom:400.350000px;}
.y57{bottom:402.915000px;}
.y117{bottom:404.715000px;}
.y83{bottom:405.435000px;}
.ya9{bottom:409.035000px;}
.yd4{bottom:411.915000px;}
.y22{bottom:420.195000px;}
.y56{bottom:422.715000px;}
.y116{bottom:424.515000px;}
.y82{bottom:425.415000px;}
.ya8{bottom:428.835000px;}
.yd3{bottom:431.715000px;}
.y21{bottom:440.175000px;}
.y55{bottom:442.515000px;}
.y115{bottom:444.315000px;}
.y81{bottom:445.215000px;}
.ya7{bottom:448.635000px;}
.yd2{bottom:451.515000px;}
.y20{bottom:459.975000px;}
.y54{bottom:462.315000px;}
.y114{bottom:464.115000px;}
.y80{bottom:465.015000px;}
.ya6{bottom:468.435000px;}
.yd1{bottom:471.315000px;}
.y1f{bottom:479.775000px;}
.ye6{bottom:482.115000px;}
.y113{bottom:484.095000px;}
.y7f{bottom:484.815000px;}
.ya5{bottom:486.615000px;}
.y53{bottom:491.115000px;}
.y1e{bottom:499.575000px;}
.ye5{bottom:502.095000px;}
.y112{bottom:503.895000px;}
.y7e{bottom:504.615000px;}
.ya3{bottom:510.915000px;}
.y52{bottom:511.095000px;}
.y1d{bottom:519.375000px;}
.y111{bottom:523.695000px;}
.y7d{bottom:524.595000px;}
.y51{bottom:530.895000px;}
.ya2{bottom:535.395000px;}
.y1c{bottom:539.355000px;}
.y110{bottom:543.495000px;}
.y7c{bottom:544.395000px;}
.y50{bottom:550.695000px;}
.y1b{bottom:559.155000px;}
.ya1{bottom:559.695000px;}
.y10f{bottom:563.295000px;}
.y7b{bottom:564.195000px;}
.y4f{bottom:570.495000px;}
.y10e{bottom:583.275000px;}
.y7a{bottom:583.995000px;}
.y4e{bottom:590.295000px;}
.y1a{bottom:601.095000px;}
.y10d{bottom:603.075000px;}
.y79{bottom:603.795000px;}
.y9f{bottom:608.295000px;}
.y4d{bottom:610.275000px;}
.y10c{bottom:622.875000px;}
.y78{bottom:623.775000px;}
.y19{bottom:629.895000px;}
.y4c{bottom:630.075000px;}
.y9d{bottom:633.495000px;}
.y10b{bottom:642.675000px;}
.y18{bottom:649.725000px;}
.y4b{bottom:649.905000px;}
.y77{bottom:652.605000px;}
.y10a{bottom:662.505000px;}
.y9c{bottom:663.225000px;}
.y17{bottom:669.525000px;}
.y4a{bottom:669.705000px;}
.y76{bottom:672.405000px;}
.y109{bottom:682.485000px;}
.y9b{bottom:683.025000px;}
.y16{bottom:689.505000px;}
.y75{bottom:692.205000px;}
.y108{bottom:702.285000px;}
.y9a{bottom:702.825000px;}
.y15{bottom:709.305000px;}
.y49{bottom:709.485000px;}
.y74{bottom:712.005000px;}
.y107{bottom:722.085000px;}
.y99{bottom:722.805000px;}
.y14{bottom:729.105000px;}
.y48{bottom:729.285000px;}
.y73{bottom:731.985000px;}
.y106{bottom:741.885000px;}
.y98{bottom:742.605000px;}
.y13{bottom:748.905000px;}
.y47{bottom:749.085000px;}
.y72{bottom:751.785000px;}
.y105{bottom:761.685000px;}
.y97{bottom:762.405000px;}
.y12{bottom:768.705000px;}
.y46{bottom:768.885000px;}
.y71{bottom:771.585000px;}
.y104{bottom:781.665000px;}
.y96{bottom:782.205000px;}
.y11{bottom:788.685000px;}
.y70{bottom:791.385000px;}
.yc0{bottom:793.365000px;}
.y103{bottom:801.465000px;}
.y95{bottom:802.005000px;}
.y10{bottom:808.485000px;}
.y45{bottom:808.665000px;}
.y6f{bottom:811.185000px;}
.ybf{bottom:818.385000px;}
.y102{bottom:821.265000px;}
.y94{bottom:821.985000px;}
.yf{bottom:828.285000px;}
.y44{bottom:828.465000px;}
.y6e{bottom:831.165000px;}
.y101{bottom:841.065000px;}
.y93{bottom:841.785000px;}
.ye{bottom:848.085000px;}
.y43{bottom:848.265000px;}
.y6d{bottom:850.965000px;}
.y100{bottom:860.865000px;}
.y92{bottom:861.585000px;}
.yd{bottom:867.885000px;}
.y42{bottom:868.065000px;}
.y6c{bottom:870.765000px;}
.y91{bottom:881.385000px;}
.y41{bottom:887.865000px;}
.yff{bottom:889.845000px;}
.yc{bottom:890.025000px;}
.y6b{bottom:890.565000px;}
.y90{bottom:901.230000px;}
.y40{bottom:907.890000px;}
.yfe{bottom:909.690000px;}
.y6a{bottom:910.410000px;}
.yb{bottom:915.090000px;}
.y8f{bottom:921.210000px;}
.y3f{bottom:927.690000px;}
.yfd{bottom:929.490000px;}
.ya{bottom:930.210000px;}
.y69{bottom:930.390000px;}
.y8e{bottom:937.590000px;}
.y3e{bottom:947.490000px;}
.yfc{bottom:949.290000px;}
.y68{bottom:950.190000px;}
.y9{bottom:951.630000px;}
.y67{bottom:966.750000px;}
.y3d{bottom:967.290000px;}
.yfb{bottom:969.090000px;}
.y8{bottom:975.030000px;}
.y3c{bottom:987.090000px;}
.yfa{bottom:998.070000px;}
.y7{bottom:1006.710000px;}
.y3b{bottom:1007.070000px;}
.yf9{bottom:1017.870000px;}
.y3a{bottom:1026.870000px;}
.yf8{bottom:1037.670000px;}
.y39{bottom:1046.670000px;}
.y5{bottom:1051.170000px;}
.yf7{bottom:1057.470000px;}
.y38{bottom:1066.470000px;}
.yf6{bottom:1077.270000px;}
.y4{bottom:1081.950000px;}
.y37{bottom:1086.270000px;}
.yf5{bottom:1097.250000px;}
.y36{bottom:1106.250000px;}
.y3{bottom:1112.730000px;}
.y35{bottom:1126.050000px;}
.y2{bottom:1143.690000px;}
.y34{bottom:1145.850000px;}
.y33{bottom:1165.680000px;}
.y1{bottom:1177.560000px;}
.y32{bottom:1193.220000px;}
.hd{height:19.800000px;}
.hc{height:19.836000px;}
.he{height:19.980000px;}
.h7{height:28.115859px;}
.h5{height:42.164648px;}
.h8{height:43.215117px;}
.h9{height:43.506914px;}
.h3{height:46.736719px;}
.h4{height:47.901094px;}
.hb{height:49.255313px;}
.h6{height:53.224453px;}
.h2{height:67.565039px;}
.ha{height:67.824844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:36.360000px;}
.w6{width:50.580000px;}
.w5{width:70.740000px;}
.w3{width:109.260000px;}
.w4{width:116.856000px;}
.w9{width:127.800000px;}
.w8{width:133.596000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.080000px;}
.x1{left:54.179987px;}
.x2{left:64.799987px;}
.x15{left:71.099987px;}
.xc{left:75.599987px;}
.x16{left:98.135987px;}
.xe{left:210.089987px;}
.x14{left:213.509987px;}
.xf{left:268.995000px;}
.x4{left:283.754987px;}
.x8{left:295.995000px;}
.x10{left:321.915000px;}
.x7{left:342.974987px;}
.x11{left:360.615000px;}
.xa{left:407.595000px;}
.x5{left:446.504987px;}
.x12{left:496.365000px;}
.xb{left:526.605000px;}
.x3{left:557.384987px;}
.x6{left:622.184987px;}
.xd{left:742.289987px;}
.x13{left:754.169987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls17{letter-spacing:-1.050667pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.406933pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.230933pt;}
.lsa{letter-spacing:-0.183467pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.016640pt;}
.lsf{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094720pt;}
.lsb{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.272533pt;}
.ls12{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:10.192640pt;}
.ls2{letter-spacing:23.632640pt;}
.ls9{letter-spacing:23.760640pt;}
.ls19{letter-spacing:37.200640pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.ws1{word-spacing:-14.313067pt;}
.wsc{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.552533pt;}
.ws4{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.440000pt;}
.ws8{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws7{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.049067pt;}
.ws3{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-2256.229760pt;}
._3{margin-left:-1285.468160pt;}
._5{margin-left:-1282.764480pt;}
._4{margin-left:-884.490240pt;}
._6{margin-left:-512.309760pt;}
._7{margin-left:-8.289493pt;}
._1e{margin-left:-6.253227pt;}
._1c{margin-left:-5.303040pt;}
._8{margin-left:-4.216747pt;}
._b{margin-left:-2.967467pt;}
._1d{margin-left:-2.029013pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._c{width:2.654080pt;}
._d{width:3.619413pt;}
._12{width:4.896000pt;}
._9{width:6.552960pt;}
._a{width:7.494187pt;}
._11{width:8.555520pt;}
._10{width:9.667840pt;}
._f{width:10.889600pt;}
._13{width:12.020480pt;}
._e{width:14.173867pt;}
._19{width:15.257813pt;}
._14{width:16.785920pt;}
._15{width:18.326400pt;}
._1a{width:19.601280pt;}
._18{width:21.150720pt;}
._17{width:22.469760pt;}
._1b{width:32.837120pt;}
._16{width:2073.653333pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:5.120000pt;}
.ya4{bottom:5.280000pt;}
.ya0{bottom:8.800000pt;}
.y6{bottom:53.600000pt;}
.yb9{bottom:81.440000pt;}
.ye4{bottom:83.840000pt;}
.yd0{bottom:84.320000pt;}
.ybe{bottom:91.520000pt;}
.y66{bottom:93.600000pt;}
.yf4{bottom:95.200000pt;}
.yb8{bottom:99.040000pt;}
.ye3{bottom:101.600000pt;}
.ycf{bottom:101.920000pt;}
.y31{bottom:108.960000pt;}
.ybd{bottom:109.120000pt;}
.y65{bottom:111.200000pt;}
.yf3{bottom:112.800000pt;}
.yb7{bottom:116.640000pt;}
.ye2{bottom:119.200000pt;}
.yce{bottom:119.520000pt;}
.y30{bottom:126.720000pt;}
.y64{bottom:128.800000pt;}
.yf2{bottom:130.400000pt;}
.yb6{bottom:134.240000pt;}
.ye1{bottom:136.826667pt;}
.ycd{bottom:137.306667pt;}
.y2f{bottom:144.346667pt;}
.y63{bottom:146.426667pt;}
.yf1{bottom:148.026667pt;}
.yb5{bottom:151.866667pt;}
.ye0{bottom:154.426667pt;}
.ycc{bottom:154.906667pt;}
.y2e{bottom:161.946667pt;}
.y62{bottom:164.026667pt;}
.yf0{bottom:165.786667pt;}
.yb4{bottom:169.626667pt;}
.ydf{bottom:172.026667pt;}
.ycb{bottom:172.506667pt;}
.y2d{bottom:179.546667pt;}
.ybc{bottom:179.706667pt;}
.y61{bottom:181.786667pt;}
.yef{bottom:183.386667pt;}
.y8d{bottom:184.026667pt;}
.yb3{bottom:187.226667pt;}
.yde{bottom:189.786667pt;}
.yca{bottom:190.106667pt;}
.y2c{bottom:197.146667pt;}
.ybb{bottom:197.306667pt;}
.y60{bottom:199.386667pt;}
.yee{bottom:200.986667pt;}
.y8c{bottom:201.786667pt;}
.yb2{bottom:204.826667pt;}
.ydd{bottom:207.386667pt;}
.yc9{bottom:207.706667pt;}
.yba{bottom:211.866667pt;}
.y2b{bottom:214.906667pt;}
.y5f{bottom:216.986667pt;}
.y11f{bottom:218.586667pt;}
.y8b{bottom:219.386667pt;}
.yb1{bottom:222.426667pt;}
.ydc{bottom:224.986667pt;}
.yc8{bottom:225.466667pt;}
.yed{bottom:226.586667pt;}
.y2a{bottom:232.506667pt;}
.y5e{bottom:234.586667pt;}
.y11e{bottom:236.186667pt;}
.y8a{bottom:236.986667pt;}
.yb0{bottom:240.026667pt;}
.ydb{bottom:242.586667pt;}
.yc7{bottom:243.066667pt;}
.yec{bottom:244.186667pt;}
.y29{bottom:250.106667pt;}
.y5d{bottom:252.186667pt;}
.y11d{bottom:253.946667pt;}
.y89{bottom:254.586667pt;}
.yaf{bottom:257.786667pt;}
.yda{bottom:260.186667pt;}
.yc6{bottom:260.666667pt;}
.yeb{bottom:261.946667pt;}
.y28{bottom:267.706667pt;}
.y5c{bottom:269.946667pt;}
.y11c{bottom:271.546667pt;}
.y88{bottom:272.186667pt;}
.yae{bottom:275.386667pt;}
.yd9{bottom:277.946667pt;}
.yc5{bottom:278.266667pt;}
.yea{bottom:279.546667pt;}
.y27{bottom:285.306667pt;}
.y5b{bottom:287.546667pt;}
.y11b{bottom:289.146667pt;}
.y87{bottom:289.946667pt;}
.yad{bottom:292.986667pt;}
.yd8{bottom:295.546667pt;}
.yc4{bottom:295.866667pt;}
.ye9{bottom:297.146667pt;}
.y26{bottom:303.066667pt;}
.y5a{bottom:305.146667pt;}
.y11a{bottom:306.746667pt;}
.y86{bottom:307.546667pt;}
.yac{bottom:310.586667pt;}
.yd7{bottom:313.146667pt;}
.yc3{bottom:313.626667pt;}
.ye8{bottom:314.746667pt;}
.y25{bottom:320.666667pt;}
.y59{bottom:322.746667pt;}
.y119{bottom:324.346667pt;}
.y85{bottom:325.146667pt;}
.yab{bottom:328.186667pt;}
.yd6{bottom:330.746667pt;}
.yc2{bottom:331.226667pt;}
.ye7{bottom:332.346667pt;}
.y24{bottom:338.266667pt;}
.y58{bottom:340.346667pt;}
.y118{bottom:342.106667pt;}
.y84{bottom:342.746667pt;}
.yaa{bottom:345.946667pt;}
.yd5{bottom:348.346667pt;}
.yc1{bottom:348.826667pt;}
.y23{bottom:355.866667pt;}
.y57{bottom:358.146667pt;}
.y117{bottom:359.746667pt;}
.y83{bottom:360.386667pt;}
.ya9{bottom:363.586667pt;}
.yd4{bottom:366.146667pt;}
.y22{bottom:373.506667pt;}
.y56{bottom:375.746667pt;}
.y116{bottom:377.346667pt;}
.y82{bottom:378.146667pt;}
.ya8{bottom:381.186667pt;}
.yd3{bottom:383.746667pt;}
.y21{bottom:391.266667pt;}
.y55{bottom:393.346667pt;}
.y115{bottom:394.946667pt;}
.y81{bottom:395.746667pt;}
.ya7{bottom:398.786667pt;}
.yd2{bottom:401.346667pt;}
.y20{bottom:408.866667pt;}
.y54{bottom:410.946667pt;}
.y114{bottom:412.546667pt;}
.y80{bottom:413.346667pt;}
.ya6{bottom:416.386667pt;}
.yd1{bottom:418.946667pt;}
.y1f{bottom:426.466667pt;}
.ye6{bottom:428.546667pt;}
.y113{bottom:430.306667pt;}
.y7f{bottom:430.946667pt;}
.ya5{bottom:432.546667pt;}
.y53{bottom:436.546667pt;}
.y1e{bottom:444.066667pt;}
.ye5{bottom:446.306667pt;}
.y112{bottom:447.906667pt;}
.y7e{bottom:448.546667pt;}
.ya3{bottom:454.146667pt;}
.y52{bottom:454.306667pt;}
.y1d{bottom:461.666667pt;}
.y111{bottom:465.506667pt;}
.y7d{bottom:466.306667pt;}
.y51{bottom:471.906667pt;}
.ya2{bottom:475.906667pt;}
.y1c{bottom:479.426667pt;}
.y110{bottom:483.106667pt;}
.y7c{bottom:483.906667pt;}
.y50{bottom:489.506667pt;}
.y1b{bottom:497.026667pt;}
.ya1{bottom:497.506667pt;}
.y10f{bottom:500.706667pt;}
.y7b{bottom:501.506667pt;}
.y4f{bottom:507.106667pt;}
.y10e{bottom:518.466667pt;}
.y7a{bottom:519.106667pt;}
.y4e{bottom:524.706667pt;}
.y1a{bottom:534.306667pt;}
.y10d{bottom:536.066667pt;}
.y79{bottom:536.706667pt;}
.y9f{bottom:540.706667pt;}
.y4d{bottom:542.466667pt;}
.y10c{bottom:553.666667pt;}
.y78{bottom:554.466667pt;}
.y19{bottom:559.906667pt;}
.y4c{bottom:560.066667pt;}
.y9d{bottom:563.106667pt;}
.y10b{bottom:571.266667pt;}
.y18{bottom:577.533333pt;}
.y4b{bottom:577.693333pt;}
.y77{bottom:580.093333pt;}
.y10a{bottom:588.893333pt;}
.y9c{bottom:589.533333pt;}
.y17{bottom:595.133333pt;}
.y4a{bottom:595.293333pt;}
.y76{bottom:597.693333pt;}
.y109{bottom:606.653333pt;}
.y9b{bottom:607.133333pt;}
.y16{bottom:612.893333pt;}
.y75{bottom:615.293333pt;}
.y108{bottom:624.253333pt;}
.y9a{bottom:624.733333pt;}
.y15{bottom:630.493333pt;}
.y49{bottom:630.653333pt;}
.y74{bottom:632.893333pt;}
.y107{bottom:641.853333pt;}
.y99{bottom:642.493333pt;}
.y14{bottom:648.093333pt;}
.y48{bottom:648.253333pt;}
.y73{bottom:650.653333pt;}
.y106{bottom:659.453333pt;}
.y98{bottom:660.093333pt;}
.y13{bottom:665.693333pt;}
.y47{bottom:665.853333pt;}
.y72{bottom:668.253333pt;}
.y105{bottom:677.053333pt;}
.y97{bottom:677.693333pt;}
.y12{bottom:683.293333pt;}
.y46{bottom:683.453333pt;}
.y71{bottom:685.853333pt;}
.y104{bottom:694.813333pt;}
.y96{bottom:695.293333pt;}
.y11{bottom:701.053333pt;}
.y70{bottom:703.453333pt;}
.yc0{bottom:705.213333pt;}
.y103{bottom:712.413333pt;}
.y95{bottom:712.893333pt;}
.y10{bottom:718.653333pt;}
.y45{bottom:718.813333pt;}
.y6f{bottom:721.053333pt;}
.ybf{bottom:727.453333pt;}
.y102{bottom:730.013333pt;}
.y94{bottom:730.653333pt;}
.yf{bottom:736.253333pt;}
.y44{bottom:736.413333pt;}
.y6e{bottom:738.813333pt;}
.y101{bottom:747.613333pt;}
.y93{bottom:748.253333pt;}
.ye{bottom:753.853333pt;}
.y43{bottom:754.013333pt;}
.y6d{bottom:756.413333pt;}
.y100{bottom:765.213333pt;}
.y92{bottom:765.853333pt;}
.yd{bottom:771.453333pt;}
.y42{bottom:771.613333pt;}
.y6c{bottom:774.013333pt;}
.y91{bottom:783.453333pt;}
.y41{bottom:789.213333pt;}
.yff{bottom:790.973333pt;}
.yc{bottom:791.133333pt;}
.y6b{bottom:791.613333pt;}
.y90{bottom:801.093333pt;}
.y40{bottom:807.013333pt;}
.yfe{bottom:808.613333pt;}
.y6a{bottom:809.253333pt;}
.yb{bottom:813.413333pt;}
.y8f{bottom:818.853333pt;}
.y3f{bottom:824.613333pt;}
.yfd{bottom:826.213333pt;}
.ya{bottom:826.853333pt;}
.y69{bottom:827.013333pt;}
.y8e{bottom:833.413333pt;}
.y3e{bottom:842.213333pt;}
.yfc{bottom:843.813333pt;}
.y68{bottom:844.613333pt;}
.y9{bottom:845.893333pt;}
.y67{bottom:859.333333pt;}
.y3d{bottom:859.813333pt;}
.yfb{bottom:861.413333pt;}
.y8{bottom:866.693333pt;}
.y3c{bottom:877.413333pt;}
.yfa{bottom:887.173333pt;}
.y7{bottom:894.853333pt;}
.y3b{bottom:895.173333pt;}
.yf9{bottom:904.773333pt;}
.y3a{bottom:912.773333pt;}
.yf8{bottom:922.373333pt;}
.y39{bottom:930.373333pt;}
.y5{bottom:934.373333pt;}
.yf7{bottom:939.973333pt;}
.y38{bottom:947.973333pt;}
.yf6{bottom:957.573333pt;}
.y4{bottom:961.733333pt;}
.y37{bottom:965.573333pt;}
.yf5{bottom:975.333333pt;}
.y36{bottom:983.333333pt;}
.y3{bottom:989.093333pt;}
.y35{bottom:1000.933333pt;}
.y2{bottom:1016.613333pt;}
.y34{bottom:1018.533333pt;}
.y33{bottom:1036.160000pt;}
.y1{bottom:1046.720000pt;}
.y32{bottom:1060.640000pt;}
.hd{height:17.600000pt;}
.hc{height:17.632000pt;}
.he{height:17.760000pt;}
.h7{height:24.991875pt;}
.h5{height:37.479688pt;}
.h8{height:38.413438pt;}
.h9{height:38.672812pt;}
.h3{height:41.543750pt;}
.h4{height:42.578750pt;}
.hb{height:43.782500pt;}
.h6{height:47.310625pt;}
.h2{height:60.057813pt;}
.ha{height:60.288750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:32.320000pt;}
.w6{width:44.960000pt;}
.w5{width:62.880000pt;}
.w3{width:97.120000pt;}
.w4{width:103.872000pt;}
.w9{width:113.600000pt;}
.w8{width:118.752000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:0.960000pt;}
.x1{left:48.159988pt;}
.x2{left:57.599988pt;}
.x15{left:63.199988pt;}
.xc{left:67.199988pt;}
.x16{left:87.231988pt;}
.xe{left:186.746655pt;}
.x14{left:189.786655pt;}
.xf{left:239.106667pt;}
.x4{left:252.226655pt;}
.x8{left:263.106667pt;}
.x10{left:286.146667pt;}
.x7{left:304.866655pt;}
.x11{left:320.546667pt;}
.xa{left:362.306667pt;}
.x5{left:396.893322pt;}
.x12{left:441.213333pt;}
.xb{left:468.093333pt;}
.x3{left:495.453322pt;}
.x6{left:553.053322pt;}
.xd{left:659.813322pt;}
.x13{left:670.373322pt;}
}




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