
    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_710482216cb21884a5c17ca2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.065430;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_470464eaa2e68a794183f481.woff')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_9ac146b088d514058f956d5b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_82b37954b45bf91efb8b5333.woff')format("woff");}.ff4{font-family:ff4;line-height:1.372070;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_a18f4a99b43fdd61324e9338.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_50210f613f2fb5f00d90eb5b.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9ad47b9e61383b00a3a8e0ef.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_3deb965f13041e01ed0ef91f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_51d7697c73b3f292a1678398.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.310800px;}
.ls1c{letter-spacing:-0.243600px;}
.lsb{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.160800px;}
.ls6{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls10{letter-spacing:-0.093000px;}
.ls5{letter-spacing:-0.090000px;}
.ls7{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.lsd{letter-spacing:-0.038880px;}
.ls13{letter-spacing:-0.013320px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.045360px;}
.ls12{letter-spacing:0.048960px;}
.ls1a{letter-spacing:0.064800px;}
.ls11{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.090000px;}
.lse{letter-spacing:0.093600px;}
.ls8{letter-spacing:0.103800px;}
.ls1d{letter-spacing:0.116400px;}
.ls4{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls18{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.425520px;}
.ls0{letter-spacing:13.347360px;}
.ls19{letter-spacing:47.726640px;}
.ls1e{letter-spacing:55.406640px;}
.ls1b{letter-spacing:63.566640px;}
.ls16{letter-spacing:80.846640px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.342800px;}
.wse{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.213080px;}
.wsb{word-spacing:-13.187520px;}
.ws10{word-spacing:-13.162800px;}
.wsc{word-spacing:-13.133400px;}
.ws11{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws12{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws4{word-spacing:-8.657400px;}
.wsd{word-spacing:-8.625600px;}
.ws2{word-spacing:-8.553600px;}
.ws14{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._c{margin-left:-3.877599px;}
._1{margin-left:-2.265012px;}
._0{margin-left:-1.110000px;}
._2{width:1.009496px;}
._4{width:2.852704px;}
._5{width:4.569000px;}
._6{width:6.435003px;}
._8{width:7.506588px;}
._7{width:8.898000px;}
._9{width:9.919800px;}
._a{width:10.941600px;}
._b{width:11.959921px;}
._f{width:14.718240px;}
._e{width:16.112160px;}
._d{width:17.134200px;}
._13{width:18.336600px;}
._3{width:35.145636px;}
._11{width:51.763320px;}
._12{width:54.228240px;}
._14{width:99.408240px;}
._15{width:100.491840px;}
._10{width:122.404320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y56{bottom:7.830000px;}
.y5b{bottom:7.860000px;}
.y58{bottom:7.920000px;}
.y99{bottom:25.380000px;}
.ya0{bottom:25.470000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.ya3{bottom:117.930000px;}
.y11d{bottom:119.640000px;}
.y71{bottom:121.980000px;}
.y7b{bottom:125.130000px;}
.yf3{bottom:129.180000px;}
.ycf{bottom:130.980000px;}
.y70{bottom:139.620000px;}
.y7a{bottom:142.680000px;}
.y54{bottom:142.860000px;}
.y11c{bottom:147.450000px;}
.yce{bottom:148.530000px;}
.ya2{bottom:153.570000px;}
.yf2{bottom:156.090000px;}
.y79{bottom:160.320000px;}
.ycd{bottom:166.170000px;}
.ya1{bottom:168.510000px;}
.y24{bottom:169.770000px;}
.y6f{bottom:175.170000px;}
.y78{bottom:177.870000px;}
.y53{bottom:178.500000px;}
.y11b{bottom:184.440000px;}
.y23{bottom:187.320000px;}
.ycc{bottom:192.720000px;}
.yf1{bottom:193.080000px;}
.y77{bottom:195.510000px;}
.y9f{bottom:195.870000px;}
.y52{bottom:196.050000px;}
.y22{bottom:204.960000px;}
.y6e{bottom:210.720000px;}
.y11a{bottom:211.350000px;}
.y51{bottom:213.600000px;}
.yf0{bottom:219.990000px;}
.y21{bottom:222.510000px;}
.ycb{bottom:228.360000px;}
.y76{bottom:231.060000px;}
.y20{bottom:240.150000px;}
.y9e{bottom:240.780000px;}
.yca{bottom:245.910000px;}
.y119{bottom:248.700000px;}
.y50{bottom:249.240000px;}
.yef{bottom:257.070000px;}
.y1f{bottom:257.700000px;}
.y75{bottom:263.280000px;}
.yc9{bottom:263.460000px;}
.y4f{bottom:266.790000px;}
.y9d{bottom:268.140000px;}
.yc8{bottom:281.100000px;}
.yee{bottom:283.980000px;}
.y4e{bottom:284.430000px;}
.y1e{bottom:284.610000px;}
.y9c{bottom:295.500000px;}
.y118{bottom:296.940000px;}
.yc7{bottom:298.650000px;}
.y4d{bottom:319.980000px;}
.yed{bottom:321.330000px;}
.y9b{bottom:322.770000px;}
.y117{bottom:323.580000px;}
.yc6{bottom:325.200000px;}
.y1d{bottom:333.210000px;}
.y4c{bottom:337.530000px;}
.y116{bottom:341.130000px;}
.y9a{bottom:350.130000px;}
.y4b{bottom:355.170000px;}
.yc5{bottom:357.870000px;}
.yec{bottom:358.320000px;}
.y115{bottom:358.770000px;}
.y1c{bottom:370.200000px;}
.yeb{bottom:375.870000px;}
.y98{bottom:377.490000px;}
.y4a{bottom:382.080000px;}
.y114{bottom:385.320000px;}
.y1b{bottom:387.840000px;}
.yc4{bottom:393.420000px;}
.yea{bottom:393.510000px;}
.y113{bottom:402.870000px;}
.y1a{bottom:405.390000px;}
.yc3{bottom:410.970000px;}
.ye9{bottom:411.060000px;}
.yc2{bottom:428.610000px;}
.y112{bottom:429.510000px;}
.y49{bottom:430.320000px;}
.ye8{bottom:437.970000px;}
.y19{bottom:440.940000px;}
.y97{bottom:443.730000px;}
.yc1{bottom:446.160000px;}
.y111{bottom:447.060000px;}
.y48{bottom:447.870000px;}
.y18{bottom:458.580000px;}
.y110{bottom:464.700000px;}
.y47{bottom:465.510000px;}
.yc0{bottom:472.830000px;}
.y17{bottom:476.160000px;}
.y96{bottom:479.400000px;}
.y46{bottom:483.090000px;}
.ye7{bottom:486.330000px;}
.y10f{bottom:491.280000px;}
.y16{bottom:493.800000px;}
.y95{bottom:496.950000px;}
.y45{bottom:500.730000px;}
.ye6{bottom:503.880000px;}
.ybf{bottom:508.380000px;}
.y10e{bottom:508.830000px;}
.y15{bottom:511.350000px;}
.y94{bottom:514.500000px;}
.y44{bottom:518.280000px;}
.ye5{bottom:521.430000px;}
.ybe{bottom:525.930000px;}
.y14{bottom:528.900000px;}
.y93{bottom:532.140000px;}
.y10d{bottom:535.470000px;}
.y43{bottom:535.830000px;}
.ye4{bottom:539.070000px;}
.ybd{bottom:543.570000px;}
.y92{bottom:549.690000px;}
.y10c{bottom:553.020000px;}
.y42{bottom:553.470000px;}
.ybc{bottom:561.120000px;}
.y13{bottom:564.540000px;}
.ye3{bottom:565.620000px;}
.y91{bottom:567.330000px;}
.y6d{bottom:571.920000px;}
.y10b{bottom:579.660000px;}
.y12{bottom:582.090000px;}
.y90{bottom:584.880000px;}
.ybb{bottom:587.760000px;}
.y41{bottom:589.020000px;}
.y6c{bottom:589.470000px;}
.y10a{bottom:597.210000px;}
.y11{bottom:599.640000px;}
.ye2{bottom:601.260000px;}
.y8f{bottom:602.430000px;}
.y40{bottom:606.660000px;}
.y6b{bottom:607.020000px;}
.y10{bottom:617.280000px;}
.ye1{bottom:618.810000px;}
.y8e{bottom:620.070000px;}
.yba{bottom:623.310000px;}
.y109{bottom:623.760000px;}
.y3f{bottom:624.210000px;}
.y6a{bottom:624.660000px;}
.ye0{bottom:636.360000px;}
.y8d{bottom:637.620000px;}
.yb9{bottom:640.860000px;}
.y108{bottom:641.400000px;}
.y3e{bottom:641.760000px;}
.y69{bottom:642.210000px;}
.yf{bottom:652.830000px;}
.ydf{bottom:654.000000px;}
.y8c{bottom:655.260000px;}
.y74{bottom:655.890000px;}
.yb8{bottom:658.500000px;}
.y107{bottom:658.950000px;}
.y3d{bottom:659.400000px;}
.ye{bottom:670.470000px;}
.y8b{bottom:672.810000px;}
.yb7{bottom:676.050000px;}
.y3c{bottom:676.950000px;}
.y68{bottom:677.850000px;}
.yde{bottom:680.550000px;}
.y106{bottom:685.590000px;}
.yd{bottom:688.020000px;}
.y73{bottom:691.530000px;}
.yb6{bottom:693.690000px;}
.y67{bottom:695.400000px;}
.y8a{bottom:699.360000px;}
.y105{bottom:703.140000px;}
.yb5{bottom:711.240000px;}
.y3b{bottom:712.590000px;}
.y66{bottom:712.950000px;}
.yc{bottom:714.930000px;}
.ydd{bottom:716.190000px;}
.y104{bottom:720.690000px;}
.y72{bottom:723.750000px;}
.yb4{bottom:728.790000px;}
.y3a{bottom:730.140000px;}
.y65{bottom:730.590000px;}
.ydc{bottom:733.740000px;}
.y89{bottom:735.000000px;}
.yb3{bottom:746.430000px;}
.y103{bottom:747.330000px;}
.y39{bottom:747.690000px;}
.ydb{bottom:751.290000px;}
.y88{bottom:752.550000px;}
.yb{bottom:763.170000px;}
.y64{bottom:763.530000px;}
.yb2{bottom:763.980000px;}
.y102{bottom:764.880000px;}
.y38{bottom:765.330000px;}
.yda{bottom:768.930000px;}
.y87{bottom:770.190000px;}
.y37{bottom:782.880000px;}
.y86{bottom:787.740000px;}
.y63{bottom:790.890000px;}
.y101{bottom:791.520000px;}
.yd9{bottom:795.480000px;}
.yb1{bottom:796.920000px;}
.ya{bottom:798.810000px;}
.y36{bottom:800.520000px;}
.y85{bottom:805.290000px;}
.y100{bottom:809.070000px;}
.y35{bottom:818.070000px;}
.y62{bottom:818.250000px;}
.y84{bottom:822.930000px;}
.yb0{bottom:824.280000px;}
.yd8{bottom:831.030000px;}
.y9{bottom:834.630000px;}
.yff{bottom:835.620000px;}
.y83{bottom:840.480000px;}
.y61{bottom:845.520000px;}
.yd7{bottom:848.670000px;}
.yaf{bottom:851.640000px;}
.yfe{bottom:853.260000px;}
.y34{bottom:853.620000px;}
.yd6{bottom:866.220000px;}
.y33{bottom:871.260000px;}
.y60{bottom:872.880000px;}
.y8{bottom:874.410000px;}
.y82{bottom:876.030000px;}
.yae{bottom:879.000000px;}
.yfd{bottom:879.810000px;}
.y32{bottom:888.810000px;}
.y7{bottom:892.410000px;}
.yd5{bottom:892.860000px;}
.y81{bottom:893.670000px;}
.yfc{bottom:897.450000px;}
.y5f{bottom:900.240000px;}
.yad{bottom:906.270000px;}
.y31{bottom:906.450000px;}
.y80{bottom:911.220000px;}
.y30{bottom:924.000000px;}
.y6{bottom:924.720000px;}
.y5e{bottom:927.600000px;}
.yd4{bottom:928.410000px;}
.y7f{bottom:928.860000px;}
.yfb{bottom:941.550000px;}
.yd3{bottom:945.960000px;}
.y7e{bottom:946.410000px;}
.y2f{bottom:950.910000px;}
.y5d{bottom:954.870000px;}
.yac{bottom:954.960000px;}
.y5{bottom:962.970000px;}
.yd2{bottom:963.600000px;}
.y7d{bottom:963.960000px;}
.yfa{bottom:968.190000px;}
.yd1{bottom:981.150000px;}
.y7c{bottom:981.600000px;}
.y5c{bottom:982.230000px;}
.yf9{bottom:985.740000px;}
.y4{bottom:987.630000px;}
.yab{bottom:990.600000px;}
.y2e{bottom:999.150000px;}
.yd0{bottom:1007.790000px;}
.yaa{bottom:1008.150000px;}
.y5a{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y2d{bottom:1016.820000px;}
.ya9{bottom:1025.820000px;}
.yf8{bottom:1029.960000px;}
.y2c{bottom:1034.370000px;}
.y59{bottom:1036.890000px;}
.ya8{bottom:1043.370000px;}
.y123{bottom:1050.750000px;}
.yf7{bottom:1056.510000px;}
.ya7{bottom:1060.920000px;}
.y57{bottom:1064.250000px;}
.y122{bottom:1068.300000px;}
.y2b{bottom:1069.920000px;}
.ya6{bottom:1078.560000px;}
.yf6{bottom:1083.150000px;}
.y121{bottom:1085.850000px;}
.y2a{bottom:1087.560000px;}
.y55{bottom:1091.610000px;}
.ya5{bottom:1096.110000px;}
.yf5{bottom:1100.700000px;}
.y120{bottom:1103.490000px;}
.y29{bottom:1105.110000px;}
.ya4{bottom:1113.750000px;}
.y11f{bottom:1121.040000px;}
.y28{bottom:1122.750000px;}
.yf4{bottom:1127.610000px;}
.y11e{bottom:1139.400000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hc{height:26.580000px;}
.hb{height:26.640000px;}
.h2{height:32.918906px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.he{height:44.100000px;}
.hf{height:44.190000px;}
.h8{height:50.902383px;}
.h5{height:55.779258px;}
.h7{height:56.704219px;}
.h10{height:59.973223px;}
.h11{height:61.793886px;}
.hd{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:46.530000px;}
.wd{width:51.750000px;}
.wc{width:62.040000px;}
.w9{width:81.450000px;}
.wb{width:82.080000px;}
.w4{width:120.870000px;}
.w7{width:133.650000px;}
.w8{width:136.620000px;}
.w3{width:168.960000px;}
.w5{width:310.170000px;}
.w6{width:483.810000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x16{left:95.039987px;}
.x15{left:111.239987px;}
.x4{left:145.890000px;}
.x17{left:149.039987px;}
.x18{left:176.069987px;}
.x2{left:192.719987px;}
.xd{left:214.679987px;}
.x9{left:242.489987px;}
.xb{left:260.759987px;}
.x10{left:283.260000px;}
.x6{left:315.570000px;}
.x11{left:365.430000px;}
.x12{left:412.680000px;}
.x7{left:437.160000px;}
.x13{left:495.480000px;}
.xe{left:553.380000px;}
.x14{left:558.240000px;}
.xf{left:687.840000px;}
.x8{left:722.309987px;}
.xc{left:745.889987px;}
.xa{left:747.059987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.276267pt;}
.ls1c{letter-spacing:-0.216533pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.142933pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls10{letter-spacing:-0.082667pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls7{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.lsd{letter-spacing:-0.034560pt;}
.ls13{letter-spacing:-0.011840pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.040320pt;}
.ls12{letter-spacing:0.043520pt;}
.ls1a{letter-spacing:0.057600pt;}
.ls11{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.080000pt;}
.lse{letter-spacing:0.083200pt;}
.ls8{letter-spacing:0.092267pt;}
.ls1d{letter-spacing:0.103467pt;}
.ls4{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls18{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.378240pt;}
.ls0{letter-spacing:11.864320pt;}
.ls19{letter-spacing:42.423680pt;}
.ls1e{letter-spacing:49.250347pt;}
.ls1b{letter-spacing:56.503680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.860267pt;}
.wse{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.744960pt;}
.wsb{word-spacing:-11.722240pt;}
.ws10{word-spacing:-11.700267pt;}
.wsc{word-spacing:-11.674133pt;}
.ws11{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws12{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws4{word-spacing:-7.695467pt;}
.wsd{word-spacing:-7.667200pt;}
.ws2{word-spacing:-7.603200pt;}
.ws14{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._c{margin-left:-3.446754pt;}
._1{margin-left:-2.013344pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.897330pt;}
._4{width:2.535737pt;}
._5{width:4.061333pt;}
._6{width:5.720003pt;}
._8{width:6.672523pt;}
._7{width:7.909334pt;}
._9{width:8.817600pt;}
._a{width:9.725866pt;}
._b{width:10.631041pt;}
._f{width:13.082880pt;}
._e{width:14.321920pt;}
._d{width:15.230400pt;}
._13{width:16.299200pt;}
._3{width:31.240565pt;}
._11{width:46.011840pt;}
._12{width:48.202880pt;}
._14{width:88.362880pt;}
._15{width:89.326080pt;}
._10{width:108.803840pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:6.960000pt;}
.y5b{bottom:6.986667pt;}
.y58{bottom:7.040000pt;}
.y99{bottom:22.560000pt;}
.ya0{bottom:22.640000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.ya3{bottom:104.826667pt;}
.y11d{bottom:106.346667pt;}
.y71{bottom:108.426667pt;}
.y7b{bottom:111.226667pt;}
.yf3{bottom:114.826667pt;}
.ycf{bottom:116.426667pt;}
.y70{bottom:124.106667pt;}
.y7a{bottom:126.826667pt;}
.y54{bottom:126.986667pt;}
.y11c{bottom:131.066667pt;}
.yce{bottom:132.026667pt;}
.ya2{bottom:136.506667pt;}
.yf2{bottom:138.746667pt;}
.y79{bottom:142.506667pt;}
.ycd{bottom:147.706667pt;}
.ya1{bottom:149.786667pt;}
.y24{bottom:150.906667pt;}
.y6f{bottom:155.706667pt;}
.y78{bottom:158.106667pt;}
.y53{bottom:158.666667pt;}
.y11b{bottom:163.946667pt;}
.y23{bottom:166.506667pt;}
.ycc{bottom:171.306667pt;}
.yf1{bottom:171.626667pt;}
.y77{bottom:173.786667pt;}
.y9f{bottom:174.106667pt;}
.y52{bottom:174.266667pt;}
.y22{bottom:182.186667pt;}
.y6e{bottom:187.306667pt;}
.y11a{bottom:187.866667pt;}
.y51{bottom:189.866667pt;}
.yf0{bottom:195.546667pt;}
.y21{bottom:197.786667pt;}
.ycb{bottom:202.986667pt;}
.y76{bottom:205.386667pt;}
.y20{bottom:213.466667pt;}
.y9e{bottom:214.026667pt;}
.yca{bottom:218.586667pt;}
.y119{bottom:221.066667pt;}
.y50{bottom:221.546667pt;}
.yef{bottom:228.506667pt;}
.y1f{bottom:229.066667pt;}
.y75{bottom:234.026667pt;}
.yc9{bottom:234.186667pt;}
.y4f{bottom:237.146667pt;}
.y9d{bottom:238.346667pt;}
.yc8{bottom:249.866667pt;}
.yee{bottom:252.426667pt;}
.y4e{bottom:252.826667pt;}
.y1e{bottom:252.986667pt;}
.y9c{bottom:262.666667pt;}
.y118{bottom:263.946667pt;}
.yc7{bottom:265.466667pt;}
.y4d{bottom:284.426667pt;}
.yed{bottom:285.626667pt;}
.y9b{bottom:286.906667pt;}
.y117{bottom:287.626667pt;}
.yc6{bottom:289.066667pt;}
.y1d{bottom:296.186667pt;}
.y4c{bottom:300.026667pt;}
.y116{bottom:303.226667pt;}
.y9a{bottom:311.226667pt;}
.y4b{bottom:315.706667pt;}
.yc5{bottom:318.106667pt;}
.yec{bottom:318.506667pt;}
.y115{bottom:318.906667pt;}
.y1c{bottom:329.066667pt;}
.yeb{bottom:334.106667pt;}
.y98{bottom:335.546667pt;}
.y4a{bottom:339.626667pt;}
.y114{bottom:342.506667pt;}
.y1b{bottom:344.746667pt;}
.yc4{bottom:349.706667pt;}
.yea{bottom:349.786667pt;}
.y113{bottom:358.106667pt;}
.y1a{bottom:360.346667pt;}
.yc3{bottom:365.306667pt;}
.ye9{bottom:365.386667pt;}
.yc2{bottom:380.986667pt;}
.y112{bottom:381.786667pt;}
.y49{bottom:382.506667pt;}
.ye8{bottom:389.306667pt;}
.y19{bottom:391.946667pt;}
.y97{bottom:394.426667pt;}
.yc1{bottom:396.586667pt;}
.y111{bottom:397.386667pt;}
.y48{bottom:398.106667pt;}
.y18{bottom:407.626667pt;}
.y110{bottom:413.066667pt;}
.y47{bottom:413.786667pt;}
.yc0{bottom:420.293333pt;}
.y17{bottom:423.253333pt;}
.y96{bottom:426.133333pt;}
.y46{bottom:429.413333pt;}
.ye7{bottom:432.293333pt;}
.y10f{bottom:436.693333pt;}
.y16{bottom:438.933333pt;}
.y95{bottom:441.733333pt;}
.y45{bottom:445.093333pt;}
.ye6{bottom:447.893333pt;}
.ybf{bottom:451.893333pt;}
.y10e{bottom:452.293333pt;}
.y15{bottom:454.533333pt;}
.y94{bottom:457.333333pt;}
.y44{bottom:460.693333pt;}
.ye5{bottom:463.493333pt;}
.ybe{bottom:467.493333pt;}
.y14{bottom:470.133333pt;}
.y93{bottom:473.013333pt;}
.y10d{bottom:475.973333pt;}
.y43{bottom:476.293333pt;}
.ye4{bottom:479.173333pt;}
.ybd{bottom:483.173333pt;}
.y92{bottom:488.613333pt;}
.y10c{bottom:491.573333pt;}
.y42{bottom:491.973333pt;}
.ybc{bottom:498.773333pt;}
.y13{bottom:501.813333pt;}
.ye3{bottom:502.773333pt;}
.y91{bottom:504.293333pt;}
.y6d{bottom:508.373333pt;}
.y10b{bottom:515.253333pt;}
.y12{bottom:517.413333pt;}
.y90{bottom:519.893333pt;}
.ybb{bottom:522.453333pt;}
.y41{bottom:523.573333pt;}
.y6c{bottom:523.973333pt;}
.y10a{bottom:530.853333pt;}
.y11{bottom:533.013333pt;}
.ye2{bottom:534.453333pt;}
.y8f{bottom:535.493333pt;}
.y40{bottom:539.253333pt;}
.y6b{bottom:539.573333pt;}
.y10{bottom:548.693333pt;}
.ye1{bottom:550.053333pt;}
.y8e{bottom:551.173333pt;}
.yba{bottom:554.053333pt;}
.y109{bottom:554.453333pt;}
.y3f{bottom:554.853333pt;}
.y6a{bottom:555.253333pt;}
.ye0{bottom:565.653333pt;}
.y8d{bottom:566.773333pt;}
.yb9{bottom:569.653333pt;}
.y108{bottom:570.133333pt;}
.y3e{bottom:570.453333pt;}
.y69{bottom:570.853333pt;}
.yf{bottom:580.293333pt;}
.ydf{bottom:581.333333pt;}
.y8c{bottom:582.453333pt;}
.y74{bottom:583.013333pt;}
.yb8{bottom:585.333333pt;}
.y107{bottom:585.733333pt;}
.y3d{bottom:586.133333pt;}
.ye{bottom:595.973333pt;}
.y8b{bottom:598.053333pt;}
.yb7{bottom:600.933333pt;}
.y3c{bottom:601.733333pt;}
.y68{bottom:602.533333pt;}
.yde{bottom:604.933333pt;}
.y106{bottom:609.413333pt;}
.yd{bottom:611.573333pt;}
.y73{bottom:614.693333pt;}
.yb6{bottom:616.613333pt;}
.y67{bottom:618.133333pt;}
.y8a{bottom:621.653333pt;}
.y105{bottom:625.013333pt;}
.yb5{bottom:632.213333pt;}
.y3b{bottom:633.413333pt;}
.y66{bottom:633.733333pt;}
.yc{bottom:635.493333pt;}
.ydd{bottom:636.613333pt;}
.y104{bottom:640.613333pt;}
.y72{bottom:643.333333pt;}
.yb4{bottom:647.813333pt;}
.y3a{bottom:649.013333pt;}
.y65{bottom:649.413333pt;}
.ydc{bottom:652.213333pt;}
.y89{bottom:653.333333pt;}
.yb3{bottom:663.493333pt;}
.y103{bottom:664.293333pt;}
.y39{bottom:664.613333pt;}
.ydb{bottom:667.813333pt;}
.y88{bottom:668.933333pt;}
.yb{bottom:678.373333pt;}
.y64{bottom:678.693333pt;}
.yb2{bottom:679.093333pt;}
.y102{bottom:679.893333pt;}
.y38{bottom:680.293333pt;}
.yda{bottom:683.493333pt;}
.y87{bottom:684.613333pt;}
.y37{bottom:695.893333pt;}
.y86{bottom:700.213333pt;}
.y63{bottom:703.013333pt;}
.y101{bottom:703.573333pt;}
.yd9{bottom:707.093333pt;}
.yb1{bottom:708.373333pt;}
.ya{bottom:710.053333pt;}
.y36{bottom:711.573333pt;}
.y85{bottom:715.813333pt;}
.y100{bottom:719.173333pt;}
.y35{bottom:727.173333pt;}
.y62{bottom:727.333333pt;}
.y84{bottom:731.493333pt;}
.yb0{bottom:732.693333pt;}
.yd8{bottom:738.693333pt;}
.y9{bottom:741.893333pt;}
.yff{bottom:742.773333pt;}
.y83{bottom:747.093333pt;}
.y61{bottom:751.573333pt;}
.yd7{bottom:754.373333pt;}
.yaf{bottom:757.013333pt;}
.yfe{bottom:758.453333pt;}
.y34{bottom:758.773333pt;}
.yd6{bottom:769.973333pt;}
.y33{bottom:774.453333pt;}
.y60{bottom:775.893333pt;}
.y8{bottom:777.253333pt;}
.y82{bottom:778.693333pt;}
.yae{bottom:781.333333pt;}
.yfd{bottom:782.053333pt;}
.y32{bottom:790.053333pt;}
.y7{bottom:793.253333pt;}
.yd5{bottom:793.653333pt;}
.y81{bottom:794.373333pt;}
.yfc{bottom:797.733333pt;}
.y5f{bottom:800.213333pt;}
.yad{bottom:805.573333pt;}
.y31{bottom:805.733333pt;}
.y80{bottom:809.973333pt;}
.y30{bottom:821.333333pt;}
.y6{bottom:821.973333pt;}
.y5e{bottom:824.533333pt;}
.yd4{bottom:825.253333pt;}
.y7f{bottom:825.653333pt;}
.yfb{bottom:836.933333pt;}
.yd3{bottom:840.853333pt;}
.y7e{bottom:841.253333pt;}
.y2f{bottom:845.253333pt;}
.y5d{bottom:848.773333pt;}
.yac{bottom:848.853333pt;}
.y5{bottom:855.973333pt;}
.yd2{bottom:856.533333pt;}
.y7d{bottom:856.853333pt;}
.yfa{bottom:860.613333pt;}
.yd1{bottom:872.133333pt;}
.y7c{bottom:872.533333pt;}
.y5c{bottom:873.093333pt;}
.yf9{bottom:876.213333pt;}
.y4{bottom:877.893333pt;}
.yab{bottom:880.533333pt;}
.y2e{bottom:888.133333pt;}
.yd0{bottom:895.813333pt;}
.yaa{bottom:896.133333pt;}
.y5a{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y2d{bottom:903.840000pt;}
.ya9{bottom:911.840000pt;}
.yf8{bottom:915.520000pt;}
.y2c{bottom:919.440000pt;}
.y59{bottom:921.680000pt;}
.ya8{bottom:927.440000pt;}
.y123{bottom:934.000000pt;}
.yf7{bottom:939.120000pt;}
.ya7{bottom:943.040000pt;}
.y57{bottom:946.000000pt;}
.y122{bottom:949.600000pt;}
.y2b{bottom:951.040000pt;}
.ya6{bottom:958.720000pt;}
.yf6{bottom:962.800000pt;}
.y121{bottom:965.200000pt;}
.y2a{bottom:966.720000pt;}
.y55{bottom:970.320000pt;}
.ya5{bottom:974.320000pt;}
.yf5{bottom:978.400000pt;}
.y120{bottom:980.880000pt;}
.y29{bottom:982.320000pt;}
.ya4{bottom:990.000000pt;}
.y11f{bottom:996.480000pt;}
.y28{bottom:998.000000pt;}
.yf4{bottom:1002.320000pt;}
.y11e{bottom:1012.800000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hc{height:23.626667pt;}
.hb{height:23.680000pt;}
.h2{height:29.261250pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.he{height:39.200000pt;}
.hf{height:39.280000pt;}
.h8{height:45.246562pt;}
.h5{height:49.581562pt;}
.h7{height:50.403750pt;}
.h10{height:53.309531pt;}
.h11{height:54.927899pt;}
.hd{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:41.360000pt;}
.wd{width:46.000000pt;}
.wc{width:55.146667pt;}
.w9{width:72.400000pt;}
.wb{width:72.960000pt;}
.w4{width:107.440000pt;}
.w7{width:118.800000pt;}
.w8{width:121.440000pt;}
.w3{width:150.186667pt;}
.w5{width:275.706667pt;}
.w6{width:430.053333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x16{left:84.479988pt;}
.x15{left:98.879988pt;}
.x4{left:129.680000pt;}
.x17{left:132.479988pt;}
.x18{left:156.506655pt;}
.x2{left:171.306655pt;}
.xd{left:190.826655pt;}
.x9{left:215.546655pt;}
.xb{left:231.786655pt;}
.x10{left:251.786667pt;}
.x6{left:280.506667pt;}
.x11{left:324.826667pt;}
.x12{left:366.826667pt;}
.x7{left:388.586667pt;}
.x13{left:440.426667pt;}
.xe{left:491.893333pt;}
.x14{left:496.213333pt;}
.xf{left:611.413333pt;}
.x8{left:642.053322pt;}
.xc{left:663.013322pt;}
.xa{left:664.053322pt;}
.x3{left:711.413322pt;}
}




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