
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8bb4a130cc92e9ee6671b8f7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1ef264413a695e530c70d0c0.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_df4899836d8d3a29cd3dd11d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b099a56f1d18bdc141e486a.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_385fd543f07aca2fa2fe5e92.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_89a7ff67d14d291a6f911262.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.427200px;}
.ls14{letter-spacing:-0.246600px;}
.ls20{letter-spacing:-0.216600px;}
.lsf{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.160800px;}
.ls1b{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls18{letter-spacing:-0.093000px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.014760px;}
.ls15{letter-spacing:-0.009000px;}
.ls1c{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.016200px;}
.lsd{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.116400px;}
.ls12{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls1a{letter-spacing:0.180600px;}
.ls1d{letter-spacing:0.181200px;}
.ls11{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls1f{letter-spacing:47.726640px;}
.ls19{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws14{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws15{word-spacing:-13.342800px;}
.ws5{word-spacing:-13.275600px;}
.ws9{word-spacing:-13.275360px;}
.ws10{word-spacing:-13.242600px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.217400px;}
.wsd{word-spacing:-13.211640px;}
.ws12{word-spacing:-13.133400px;}
.ws13{word-spacing:-13.072800px;}
.wsa{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws16{word-spacing:-13.009800px;}
.wse{word-spacing:-12.979800px;}
.ws11{word-spacing:-12.799200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._15{margin-left:-3.589200px;}
._8{margin-left:-2.422800px;}
._0{margin-left:-1.110000px;}
._1{width:1.516800px;}
._d{width:3.066000px;}
._c{width:4.148400px;}
._6{width:5.170200px;}
._12{width:6.312480px;}
._11{width:7.334760px;}
._f{width:8.476800px;}
._e{width:9.559200px;}
._10{width:10.743719px;}
._2{width:12.047400px;}
._13{width:15.016322px;}
._7{width:16.051800px;}
._3{width:17.855400px;}
._9{width:19.224960px;}
._4{width:20.380800px;}
._5{width:21.643200px;}
._14{width:22.643396px;}
._b{width:23.802361px;}
._a{width:24.857400px;}
._17{width:26.276880px;}
._1d{width:27.743160px;}
._1e{width:29.699280px;}
._16{width:40.368960px;}
._19{width:50.644560px;}
._1a{width:52.377600px;}
._18{width:58.186440px;}
._1b{width:62.524800px;}
._23{width:66.192120px;}
._24{width:67.553760px;}
._1c{width:86.174640px;}
._20{width:191.482200px;}
._1f{width:270.600120px;}
._21{width:427.032360px;}
._22{width:692.822880px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yaa{bottom:7.830000px;}
.ya5{bottom:7.920000px;}
.ya7{bottom:25.470000px;}
.ya9{bottom:25.500000px;}
.yad{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y93{bottom:112.800000px;}
.yb7{bottom:116.220000px;}
.ycf{bottom:117.480000px;}
.y76{bottom:128.190000px;}
.y27{bottom:129.270000px;}
.y92{bottom:130.440000px;}
.y129{bottom:144.570000px;}
.y75{bottom:145.740000px;}
.y26{bottom:146.820000px;}
.y91{bottom:147.990000px;}
.yb6{bottom:151.770000px;}
.yce{bottom:153.120000px;}
.y128{bottom:162.120000px;}
.y74{bottom:163.380000px;}
.y90{bottom:165.630000px;}
.y59{bottom:165.720000px;}
.yb5{bottom:169.410000px;}
.y25{bottom:173.370000px;}
.y73{bottom:180.930000px;}
.y8f{bottom:183.180000px;}
.y58{bottom:183.270000px;}
.ycd{bottom:185.340000px;}
.yb4{bottom:186.960000px;}
.y127{bottom:188.670000px;}
.y100{bottom:193.170000px;}
.y72{bottom:198.480000px;}
.y8e{bottom:200.730000px;}
.y57{bottom:200.910000px;}
.yb3{bottom:204.600000px;}
.y126{bottom:206.310000px;}
.y24{bottom:209.010000px;}
.yff{bottom:210.720000px;}
.y71{bottom:216.120000px;}
.y56{bottom:218.460000px;}
.yb2{bottom:222.150000px;}
.y125{bottom:223.860000px;}
.y23{bottom:226.560000px;}
.y8d{bottom:227.370000px;}
.yfe{bottom:228.270000px;}
.y70{bottom:233.670000px;}
.y55{bottom:236.100000px;}
.yb1{bottom:239.700000px;}
.y124{bottom:241.500000px;}
.y22{bottom:244.200000px;}
.yfd{bottom:245.910000px;}
.y6f{bottom:251.310000px;}
.y54{bottom:253.650000px;}
.yb0{bottom:257.340000px;}
.y123{bottom:259.050000px;}
.y21{bottom:261.750000px;}
.y8c{bottom:262.920000px;}
.yfc{bottom:263.460000px;}
.y6e{bottom:268.860000px;}
.y53{bottom:271.200000px;}
.yaf{bottom:274.890000px;}
.y20{bottom:279.300000px;}
.y8b{bottom:280.560000px;}
.yfb{bottom:281.100000px;}
.y122{bottom:285.600000px;}
.y52{bottom:288.840000px;}
.y6d{bottom:295.410000px;}
.y1f{bottom:296.940000px;}
.y8a{bottom:298.110000px;}
.yfa{bottom:298.650000px;}
.yae{bottom:301.800000px;}
.y121{bottom:303.240000px;}
.y51{bottom:306.390000px;}
.y1e{bottom:314.490000px;}
.y89{bottom:315.660000px;}
.yf9{bottom:316.200000px;}
.y120{bottom:320.790000px;}
.y6c{bottom:331.050000px;}
.y50{bottom:332.940000px;}
.y88{bottom:333.300000px;}
.yf8{bottom:333.840000px;}
.y11f{bottom:338.430000px;}
.y1d{bottom:341.130000px;}
.yac{bottom:347.430000px;}
.y6b{bottom:348.600000px;}
.y87{bottom:350.850000px;}
.yf7{bottom:351.390000px;}
.y11e{bottom:364.980000px;}
.y6a{bottom:366.240000px;}
.y86{bottom:368.490000px;}
.y4f{bottom:368.580000px;}
.yf6{bottom:368.940000px;}
.y1c{bottom:376.680000px;}
.y11d{bottom:382.530000px;}
.y69{bottom:383.790000px;}
.y85{bottom:386.040000px;}
.y4e{bottom:386.130000px;}
.yf5{bottom:386.580000px;}
.y1b{bottom:394.230000px;}
.y11c{bottom:400.170000px;}
.y68{bottom:401.340000px;}
.y84{bottom:403.590000px;}
.y4d{bottom:403.770000px;}
.yf4{bottom:404.130000px;}
.yab{bottom:409.980000px;}
.y1a{bottom:411.870000px;}
.y11b{bottom:417.720000px;}
.y67{bottom:418.980000px;}
.y4c{bottom:421.320000px;}
.y19{bottom:429.420000px;}
.y83{bottom:430.500000px;}
.yf3{bottom:430.770000px;}
.y11a{bottom:435.360000px;}
.y66{bottom:436.530000px;}
.y4b{bottom:438.870000px;}
.y18{bottom:447.060000px;}
.y65{bottom:454.170000px;}
.ya8{bottom:454.890000px;}
.y4a{bottom:456.510000px;}
.y119{bottom:461.910000px;}
.y17{bottom:464.610000px;}
.yf2{bottom:466.320000px;}
.y64{bottom:471.750000px;}
.y49{bottom:474.090000px;}
.y82{bottom:478.860000px;}
.y118{bottom:479.490000px;}
.yf1{bottom:483.900000px;}
.y16{bottom:491.550000px;}
.y48{bottom:491.730000px;}
.ycc{bottom:496.950000px;}
.y117{bottom:497.130000px;}
.y63{bottom:498.300000px;}
.ya6{bottom:499.830000px;}
.yf0{bottom:501.540000px;}
.y81{bottom:511.080000px;}
.ycb{bottom:514.500000px;}
.y116{bottom:514.680000px;}
.y47{bottom:518.280000px;}
.yef{bottom:519.090000px;}
.yca{bottom:532.140000px;}
.y115{bottom:532.230000px;}
.y62{bottom:533.940000px;}
.yee{bottom:536.730000px;}
.y15{bottom:539.790000px;}
.ya4{bottom:544.740000px;}
.yc9{bottom:549.690000px;}
.y114{bottom:549.870000px;}
.y61{bottom:551.490000px;}
.y46{bottom:553.830000px;}
.yed{bottom:554.280000px;}
.y14{bottom:557.700000px;}
.yc8{bottom:567.330000px;}
.y60{bottom:569.040000px;}
.y45{bottom:571.470000px;}
.yec{bottom:571.830000px;}
.y113{bottom:576.420000px;}
.yc7{bottom:584.880000px;}
.y5f{bottom:586.680000px;}
.y44{bottom:589.020000px;}
.yeb{bottom:589.470000px;}
.ya3{bottom:593.430000px;}
.y112{bottom:594.060000px;}
.y13{bottom:594.780000px;}
.yc6{bottom:602.430000px;}
.y5e{bottom:604.230000px;}
.y43{bottom:606.660000px;}
.yea{bottom:607.020000px;}
.y111{bottom:611.610000px;}
.y12{bottom:612.330000px;}
.yc5{bottom:620.070000px;}
.y5d{bottom:621.870000px;}
.y42{bottom:624.210000px;}
.ye9{bottom:624.660000px;}
.ya2{bottom:629.070000px;}
.y11{bottom:629.880000px;}
.yc4{bottom:637.620000px;}
.y110{bottom:638.160000px;}
.y41{bottom:641.760000px;}
.ye8{bottom:642.210000px;}
.ya1{bottom:646.620000px;}
.y10{bottom:647.520000px;}
.y5c{bottom:648.780000px;}
.yc3{bottom:655.260000px;}
.y10f{bottom:655.800000px;}
.y40{bottom:659.400000px;}
.ye7{bottom:659.760000px;}
.ya0{bottom:664.260000px;}
.yf{bottom:665.070000px;}
.y10e{bottom:673.350000px;}
.y9f{bottom:681.810000px;}
.ye{bottom:682.710000px;}
.y3f{bottom:685.950000px;}
.ye6{bottom:686.400000px;}
.y5b{bottom:697.020000px;}
.y9e{bottom:699.360000px;}
.y10d{bottom:699.990000px;}
.yd{bottom:700.260000px;}
.y9d{bottom:717.000000px;}
.yc2{bottom:717.360000px;}
.y10c{bottom:717.540000px;}
.yc{bottom:717.810000px;}
.y3e{bottom:721.590000px;}
.ye5{bottom:721.950000px;}
.y5a{bottom:729.240000px;}
.y9c{bottom:734.550000px;}
.yc1{bottom:735.000000px;}
.y10b{bottom:735.090000px;}
.yb{bottom:735.450000px;}
.y3d{bottom:739.140000px;}
.ye4{bottom:739.590000px;}
.y9b{bottom:752.190000px;}
.yc0{bottom:752.550000px;}
.y10a{bottom:752.730000px;}
.ya{bottom:753.000000px;}
.y3c{bottom:756.690000px;}
.ye3{bottom:757.140000px;}
.y9a{bottom:769.740000px;}
.ybf{bottom:770.190000px;}
.y3b{bottom:774.330000px;}
.ye2{bottom:774.690000px;}
.y109{bottom:779.280000px;}
.y9{bottom:779.910000px;}
.y99{bottom:787.290000px;}
.ybe{bottom:787.740000px;}
.y3a{bottom:791.880000px;}
.ye1{bottom:792.330000px;}
.y108{bottom:796.920000px;}
.y98{bottom:804.930000px;}
.ybd{bottom:805.290000px;}
.y39{bottom:809.520000px;}
.ye0{bottom:809.880000px;}
.y107{bottom:814.470000px;}
.ybc{bottom:822.930000px;}
.ydf{bottom:827.520000px;}
.y8{bottom:828.240000px;}
.y97{bottom:831.480000px;}
.y106{bottom:832.020000px;}
.y38{bottom:836.340000px;}
.ybb{bottom:840.480000px;}
.yde{bottom:845.070000px;}
.yba{bottom:858.030000px;}
.y105{bottom:858.930000px;}
.ydd{bottom:862.620000px;}
.y7{bottom:863.790000px;}
.y96{bottom:867.030000px;}
.yb9{bottom:875.670000px;}
.ydc{bottom:880.260000px;}
.y37{bottom:884.670000px;}
.ydb{bottom:897.810000px;}
.y6{bottom:899.610000px;}
.y36{bottom:902.220000px;}
.y104{bottom:907.260000px;}
.yda{bottom:915.450000px;}
.y35{bottom:919.860000px;}
.y103{bottom:924.810000px;}
.y5{bottom:935.610000px;}
.y34{bottom:937.410000px;}
.yb8{bottom:937.860000px;}
.yd9{bottom:942.000000px;}
.y102{bottom:942.450000px;}
.y33{bottom:954.960000px;}
.y80{bottom:955.410000px;}
.y101{bottom:960.000000px;}
.y4{bottom:971.700000px;}
.y32{bottom:972.600000px;}
.y7f{bottom:972.960000px;}
.yd8{bottom:977.550000px;}
.y31{bottom:990.150000px;}
.y7e{bottom:990.600000px;}
.yd7{bottom:995.190000px;}
.y30{bottom:1007.790000px;}
.y7d{bottom:1008.150000px;}
.y3{bottom:1009.980000px;}
.yd6{bottom:1012.770000px;}
.y95{bottom:1025.370000px;}
.y7c{bottom:1025.820000px;}
.yd5{bottom:1030.320000px;}
.y2f{bottom:1034.370000px;}
.y7b{bottom:1043.370000px;}
.yd4{bottom:1047.960000px;}
.y94{bottom:1051.920000px;}
.y7a{bottom:1060.920000px;}
.yd3{bottom:1065.510000px;}
.y2e{bottom:1069.920000px;}
.y79{bottom:1078.560000px;}
.yd2{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.y78{bottom:1096.110000px;}
.yd1{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.y77{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.yd0{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.ha{height:44.190000px;}
.hb{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hd{height:61.793886px;}
.hc{height:61.830000px;}
.h7{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:111.900000px;}
.w4{width:266.490000px;}
.w5{width:375.870000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.xd{left:111.239987px;}
.x9{left:181.380000px;}
.x7{left:186.509987px;}
.x2{left:202.799987px;}
.x5{left:273.089987px;}
.xc{left:326.819987px;}
.xa{left:448.590000px;}
.x4{left:748.139987px;}
.x6{left:750.389987px;}
.x3{left:792.059987px;}
.xb{left:801.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.379733pt;}
.ls14{letter-spacing:-0.219200pt;}
.ls20{letter-spacing:-0.192533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.142933pt;}
.ls1b{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls18{letter-spacing:-0.082667pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.013120pt;}
.ls15{letter-spacing:-0.008000pt;}
.ls1c{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.014400pt;}
.lsd{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.103467pt;}
.ls12{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls1a{letter-spacing:0.160533pt;}
.ls1d{letter-spacing:0.161067pt;}
.ls11{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls19{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws14{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws15{word-spacing:-11.860267pt;}
.ws5{word-spacing:-11.800533pt;}
.ws9{word-spacing:-11.800320pt;}
.ws10{word-spacing:-11.771200pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.748800pt;}
.wsd{word-spacing:-11.743680pt;}
.ws12{word-spacing:-11.674133pt;}
.ws13{word-spacing:-11.620267pt;}
.wsa{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.564267pt;}
.wse{word-spacing:-11.537600pt;}
.ws11{word-spacing:-11.377067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._15{margin-left:-3.190400pt;}
._8{margin-left:-2.153600pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.348267pt;}
._d{width:2.725333pt;}
._c{width:3.687467pt;}
._6{width:4.595733pt;}
._12{width:5.611093pt;}
._11{width:6.519787pt;}
._f{width:7.534933pt;}
._e{width:8.497067pt;}
._10{width:9.549972pt;}
._2{width:10.708800pt;}
._13{width:13.347842pt;}
._7{width:14.268266pt;}
._3{width:15.871466pt;}
._9{width:17.088853pt;}
._4{width:18.116267pt;}
._5{width:19.238400pt;}
._14{width:20.127463pt;}
._b{width:21.157654pt;}
._a{width:22.095467pt;}
._17{width:23.357227pt;}
._1d{width:24.660587pt;}
._1e{width:26.399360pt;}
._16{width:35.883520pt;}
._19{width:45.017387pt;}
._1a{width:46.557867pt;}
._18{width:51.721280pt;}
._1b{width:55.577600pt;}
._23{width:58.837440pt;}
._24{width:60.047787pt;}
._1c{width:76.599680pt;}
._20{width:170.206400pt;}
._1f{width:240.533440pt;}
._21{width:379.584320pt;}
._22{width:615.842560pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:6.960000pt;}
.ya5{bottom:7.040000pt;}
.ya7{bottom:22.640000pt;}
.ya9{bottom:22.666667pt;}
.yad{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y93{bottom:100.266667pt;}
.yb7{bottom:103.306667pt;}
.ycf{bottom:104.426667pt;}
.y76{bottom:113.946667pt;}
.y27{bottom:114.906667pt;}
.y92{bottom:115.946667pt;}
.y129{bottom:128.506667pt;}
.y75{bottom:129.546667pt;}
.y26{bottom:130.506667pt;}
.y91{bottom:131.546667pt;}
.yb6{bottom:134.906667pt;}
.yce{bottom:136.106667pt;}
.y128{bottom:144.106667pt;}
.y74{bottom:145.226667pt;}
.y90{bottom:147.226667pt;}
.y59{bottom:147.306667pt;}
.yb5{bottom:150.586667pt;}
.y25{bottom:154.106667pt;}
.y73{bottom:160.826667pt;}
.y8f{bottom:162.826667pt;}
.y58{bottom:162.906667pt;}
.ycd{bottom:164.746667pt;}
.yb4{bottom:166.186667pt;}
.y127{bottom:167.706667pt;}
.y100{bottom:171.706667pt;}
.y72{bottom:176.426667pt;}
.y8e{bottom:178.426667pt;}
.y57{bottom:178.586667pt;}
.yb3{bottom:181.866667pt;}
.y126{bottom:183.386667pt;}
.y24{bottom:185.786667pt;}
.yff{bottom:187.306667pt;}
.y71{bottom:192.106667pt;}
.y56{bottom:194.186667pt;}
.yb2{bottom:197.466667pt;}
.y125{bottom:198.986667pt;}
.y23{bottom:201.386667pt;}
.y8d{bottom:202.106667pt;}
.yfe{bottom:202.906667pt;}
.y70{bottom:207.706667pt;}
.y55{bottom:209.866667pt;}
.yb1{bottom:213.066667pt;}
.y124{bottom:214.666667pt;}
.y22{bottom:217.066667pt;}
.yfd{bottom:218.586667pt;}
.y6f{bottom:223.386667pt;}
.y54{bottom:225.466667pt;}
.yb0{bottom:228.746667pt;}
.y123{bottom:230.266667pt;}
.y21{bottom:232.666667pt;}
.y8c{bottom:233.706667pt;}
.yfc{bottom:234.186667pt;}
.y6e{bottom:238.986667pt;}
.y53{bottom:241.066667pt;}
.yaf{bottom:244.346667pt;}
.y20{bottom:248.266667pt;}
.y8b{bottom:249.386667pt;}
.yfb{bottom:249.866667pt;}
.y122{bottom:253.866667pt;}
.y52{bottom:256.746667pt;}
.y6d{bottom:262.586667pt;}
.y1f{bottom:263.946667pt;}
.y8a{bottom:264.986667pt;}
.yfa{bottom:265.466667pt;}
.yae{bottom:268.266667pt;}
.y121{bottom:269.546667pt;}
.y51{bottom:272.346667pt;}
.y1e{bottom:279.546667pt;}
.y89{bottom:280.586667pt;}
.yf9{bottom:281.066667pt;}
.y120{bottom:285.146667pt;}
.y6c{bottom:294.266667pt;}
.y50{bottom:295.946667pt;}
.y88{bottom:296.266667pt;}
.yf8{bottom:296.746667pt;}
.y11f{bottom:300.826667pt;}
.y1d{bottom:303.226667pt;}
.yac{bottom:308.826667pt;}
.y6b{bottom:309.866667pt;}
.y87{bottom:311.866667pt;}
.yf7{bottom:312.346667pt;}
.y11e{bottom:324.426667pt;}
.y6a{bottom:325.546667pt;}
.y86{bottom:327.546667pt;}
.y4f{bottom:327.626667pt;}
.yf6{bottom:327.946667pt;}
.y1c{bottom:334.826667pt;}
.y11d{bottom:340.026667pt;}
.y69{bottom:341.146667pt;}
.y85{bottom:343.146667pt;}
.y4e{bottom:343.226667pt;}
.yf5{bottom:343.626667pt;}
.y1b{bottom:350.426667pt;}
.y11c{bottom:355.706667pt;}
.y68{bottom:356.746667pt;}
.y84{bottom:358.746667pt;}
.y4d{bottom:358.906667pt;}
.yf4{bottom:359.226667pt;}
.yab{bottom:364.426667pt;}
.y1a{bottom:366.106667pt;}
.y11b{bottom:371.306667pt;}
.y67{bottom:372.426667pt;}
.y4c{bottom:374.506667pt;}
.y19{bottom:381.706667pt;}
.y83{bottom:382.666667pt;}
.yf3{bottom:382.906667pt;}
.y11a{bottom:386.986667pt;}
.y66{bottom:388.026667pt;}
.y4b{bottom:390.106667pt;}
.y18{bottom:397.386667pt;}
.y65{bottom:403.706667pt;}
.ya8{bottom:404.346667pt;}
.y4a{bottom:405.786667pt;}
.y119{bottom:410.586667pt;}
.y17{bottom:412.986667pt;}
.yf2{bottom:414.506667pt;}
.y64{bottom:419.333333pt;}
.y49{bottom:421.413333pt;}
.y82{bottom:425.653333pt;}
.y118{bottom:426.213333pt;}
.yf1{bottom:430.133333pt;}
.y16{bottom:436.933333pt;}
.y48{bottom:437.093333pt;}
.ycc{bottom:441.733333pt;}
.y117{bottom:441.893333pt;}
.y63{bottom:442.933333pt;}
.ya6{bottom:444.293333pt;}
.yf0{bottom:445.813333pt;}
.y81{bottom:454.293333pt;}
.ycb{bottom:457.333333pt;}
.y116{bottom:457.493333pt;}
.y47{bottom:460.693333pt;}
.yef{bottom:461.413333pt;}
.yca{bottom:473.013333pt;}
.y115{bottom:473.093333pt;}
.y62{bottom:474.613333pt;}
.yee{bottom:477.093333pt;}
.y15{bottom:479.813333pt;}
.ya4{bottom:484.213333pt;}
.yc9{bottom:488.613333pt;}
.y114{bottom:488.773333pt;}
.y61{bottom:490.213333pt;}
.y46{bottom:492.293333pt;}
.yed{bottom:492.693333pt;}
.y14{bottom:495.733333pt;}
.yc8{bottom:504.293333pt;}
.y60{bottom:505.813333pt;}
.y45{bottom:507.973333pt;}
.yec{bottom:508.293333pt;}
.y113{bottom:512.373333pt;}
.yc7{bottom:519.893333pt;}
.y5f{bottom:521.493333pt;}
.y44{bottom:523.573333pt;}
.yeb{bottom:523.973333pt;}
.ya3{bottom:527.493333pt;}
.y112{bottom:528.053333pt;}
.y13{bottom:528.693333pt;}
.yc6{bottom:535.493333pt;}
.y5e{bottom:537.093333pt;}
.y43{bottom:539.253333pt;}
.yea{bottom:539.573333pt;}
.y111{bottom:543.653333pt;}
.y12{bottom:544.293333pt;}
.yc5{bottom:551.173333pt;}
.y5d{bottom:552.773333pt;}
.y42{bottom:554.853333pt;}
.ye9{bottom:555.253333pt;}
.ya2{bottom:559.173333pt;}
.y11{bottom:559.893333pt;}
.yc4{bottom:566.773333pt;}
.y110{bottom:567.253333pt;}
.y41{bottom:570.453333pt;}
.ye8{bottom:570.853333pt;}
.ya1{bottom:574.773333pt;}
.y10{bottom:575.573333pt;}
.y5c{bottom:576.693333pt;}
.yc3{bottom:582.453333pt;}
.y10f{bottom:582.933333pt;}
.y40{bottom:586.133333pt;}
.ye7{bottom:586.453333pt;}
.ya0{bottom:590.453333pt;}
.yf{bottom:591.173333pt;}
.y10e{bottom:598.533333pt;}
.y9f{bottom:606.053333pt;}
.ye{bottom:606.853333pt;}
.y3f{bottom:609.733333pt;}
.ye6{bottom:610.133333pt;}
.y5b{bottom:619.573333pt;}
.y9e{bottom:621.653333pt;}
.y10d{bottom:622.213333pt;}
.yd{bottom:622.453333pt;}
.y9d{bottom:637.333333pt;}
.yc2{bottom:637.653333pt;}
.y10c{bottom:637.813333pt;}
.yc{bottom:638.053333pt;}
.y3e{bottom:641.413333pt;}
.ye5{bottom:641.733333pt;}
.y5a{bottom:648.213333pt;}
.y9c{bottom:652.933333pt;}
.yc1{bottom:653.333333pt;}
.y10b{bottom:653.413333pt;}
.yb{bottom:653.733333pt;}
.y3d{bottom:657.013333pt;}
.ye4{bottom:657.413333pt;}
.y9b{bottom:668.613333pt;}
.yc0{bottom:668.933333pt;}
.y10a{bottom:669.093333pt;}
.ya{bottom:669.333333pt;}
.y3c{bottom:672.613333pt;}
.ye3{bottom:673.013333pt;}
.y9a{bottom:684.213333pt;}
.ybf{bottom:684.613333pt;}
.y3b{bottom:688.293333pt;}
.ye2{bottom:688.613333pt;}
.y109{bottom:692.693333pt;}
.y9{bottom:693.253333pt;}
.y99{bottom:699.813333pt;}
.ybe{bottom:700.213333pt;}
.y3a{bottom:703.893333pt;}
.ye1{bottom:704.293333pt;}
.y108{bottom:708.373333pt;}
.y98{bottom:715.493333pt;}
.ybd{bottom:715.813333pt;}
.y39{bottom:719.573333pt;}
.ye0{bottom:719.893333pt;}
.y107{bottom:723.973333pt;}
.ybc{bottom:731.493333pt;}
.ydf{bottom:735.573333pt;}
.y8{bottom:736.213333pt;}
.y97{bottom:739.093333pt;}
.y106{bottom:739.573333pt;}
.y38{bottom:743.413333pt;}
.ybb{bottom:747.093333pt;}
.yde{bottom:751.173333pt;}
.yba{bottom:762.693333pt;}
.y105{bottom:763.493333pt;}
.ydd{bottom:766.773333pt;}
.y7{bottom:767.813333pt;}
.y96{bottom:770.693333pt;}
.yb9{bottom:778.373333pt;}
.ydc{bottom:782.453333pt;}
.y37{bottom:786.373333pt;}
.ydb{bottom:798.053333pt;}
.y6{bottom:799.653333pt;}
.y36{bottom:801.973333pt;}
.y104{bottom:806.453333pt;}
.yda{bottom:813.733333pt;}
.y35{bottom:817.653333pt;}
.y103{bottom:822.053333pt;}
.y5{bottom:831.653333pt;}
.y34{bottom:833.253333pt;}
.yb8{bottom:833.653333pt;}
.yd9{bottom:837.333333pt;}
.y102{bottom:837.733333pt;}
.y33{bottom:848.853333pt;}
.y80{bottom:849.253333pt;}
.y101{bottom:853.333333pt;}
.y4{bottom:863.733333pt;}
.y32{bottom:864.533333pt;}
.y7f{bottom:864.853333pt;}
.yd8{bottom:868.933333pt;}
.y31{bottom:880.133333pt;}
.y7e{bottom:880.533333pt;}
.yd7{bottom:884.613333pt;}
.y30{bottom:895.813333pt;}
.y7d{bottom:896.133333pt;}
.y3{bottom:897.760000pt;}
.yd6{bottom:900.240000pt;}
.y95{bottom:911.440000pt;}
.y7c{bottom:911.840000pt;}
.yd5{bottom:915.840000pt;}
.y2f{bottom:919.440000pt;}
.y7b{bottom:927.440000pt;}
.yd4{bottom:931.520000pt;}
.y94{bottom:935.040000pt;}
.y7a{bottom:943.040000pt;}
.yd3{bottom:947.120000pt;}
.y2e{bottom:951.040000pt;}
.y79{bottom:958.720000pt;}
.yd2{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.y78{bottom:974.320000pt;}
.yd1{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.y77{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.yd0{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.ha{height:39.280000pt;}
.hb{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hd{height:54.927899pt;}
.hc{height:54.960000pt;}
.h7{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:99.466667pt;}
.w4{width:236.880000pt;}
.w5{width:334.106667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.xd{left:98.879988pt;}
.x9{left:161.226667pt;}
.x7{left:165.786655pt;}
.x2{left:180.266655pt;}
.x5{left:242.746655pt;}
.xc{left:290.506655pt;}
.xa{left:398.746667pt;}
.x4{left:665.013322pt;}
.x6{left:667.013322pt;}
.x3{left:704.053322pt;}
.xb{left:712.053322pt;}
}




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