
    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_af6cc3fd5494e91a38831d27.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982910;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_c88228752aacd07b22f61137.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_2540e40b8bf5acc2e21d9f87.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f896f7b5aa0de79d8cf17026.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.982910;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_721ab14bcaba961a67edf196.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.982910;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);}
.v1{vertical-align:-59.040000px;}
.v3{vertical-align:-33.120000px;}
.v4{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls11{letter-spacing:-3.906000px;}
.ls27{letter-spacing:-1.500000px;}
.ls28{letter-spacing:-1.368000px;}
.ls1b{letter-spacing:-0.936000px;}
.ls4{letter-spacing:-0.864000px;}
.ls21{letter-spacing:-0.780000px;}
.ls26{letter-spacing:-0.720000px;}
.ls24{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.309000px;}
.ls2a{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.175800px;}
.ls1a{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.126000px;}
.ls1e{letter-spacing:-0.072000px;}
.ls7{letter-spacing:-0.058200px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.022320px;}
.ls6{letter-spacing:0.054000px;}
.ls12{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.174000px;}
.ls9{letter-spacing:0.174240px;}
.ls10{letter-spacing:0.202320px;}
.lsd{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.274800px;}
.ls13{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.288600px;}
.ls19{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.421200px;}
.ls1{letter-spacing:0.490200px;}
.lse{letter-spacing:0.666000px;}
.ls1c{letter-spacing:0.894000px;}
.lsc{letter-spacing:0.894240px;}
.ls5{letter-spacing:0.930000px;}
.ls20{letter-spacing:1.614240px;}
.ls1f{letter-spacing:1.619280px;}
.ls25{letter-spacing:1.728000px;}
.ls1d{letter-spacing:3.168000px;}
.ls16{letter-spacing:3.888000px;}
.ls23{letter-spacing:6.048000px;}
.ls18{letter-spacing:6.768000px;}
.ls29{letter-spacing:16.128000px;}
.ls2b{letter-spacing:36.288000px;}
.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:-19.968240px;}
.ws3{word-spacing:-19.528440px;}
.ws16{word-spacing:-16.632000px;}
.wse{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.488000px;}
.ws11{word-spacing:-16.416000px;}
.wsf{word-spacing:-16.344000px;}
.wsb{word-spacing:-16.272000px;}
.ws14{word-spacing:-16.200000px;}
.ws1b{word-spacing:-15.984000px;}
.ws17{word-spacing:-15.912000px;}
.ws18{word-spacing:-15.552000px;}
.ws12{word-spacing:-15.408000px;}
.ws13{word-spacing:-15.336000px;}
.ws1a{word-spacing:-14.904000px;}
.ws9{word-spacing:-14.171760px;}
.ws8{word-spacing:-13.780560px;}
.ws5{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447560px;}
.ws10{word-spacing:-13.196760px;}
.ws15{word-spacing:-12.725760px;}
.ws4{word-spacing:-12.204000px;}
.ws19{word-spacing:-12.005760px;}
.ws0{word-spacing:-10.902240px;}
.ws1{word-spacing:-10.776240px;}
.wsd{word-spacing:-9.599760px;}
.wsc{word-spacing:-8.786880px;}
.ws7{word-spacing:0.000000px;}
._5{margin-left:-7.814880px;}
._1c{margin-left:-6.637920px;}
._4{margin-left:-5.586480px;}
._11{margin-left:-4.536000px;}
._9{margin-left:-3.262560px;}
._2{margin-left:-2.074320px;}
._7{margin-left:-1.013040px;}
._0{width:1.013040px;}
._1{width:2.672400px;}
._27{width:3.677520px;}
._3{width:4.679280px;}
._a{width:5.792640px;}
._8{width:7.284240px;}
._6{width:8.393760px;}
._f{width:9.838320px;}
._1a{width:11.167680px;}
._b{width:12.528000px;}
._19{width:13.618800px;}
._13{width:15.163200px;}
._12{width:16.197840px;}
._1e{width:17.321040px;}
._1d{width:18.764640px;}
._14{width:20.304000px;}
._15{width:21.892320px;}
._26{width:23.696400px;}
._25{width:25.128000px;}
._17{width:26.763840px;}
._16{width:27.975600px;}
._20{width:29.286000px;}
._1b{width:30.402000px;}
._1f{width:32.328000px;}
._21{width:34.632000px;}
._22{width:36.130320px;}
._2d{width:37.149360px;}
._24{width:38.824560px;}
._18{width:40.055040px;}
._2a{width:42.048000px;}
._2b{width:43.486320px;}
._10{width:45.954000px;}
._29{width:59.313600px;}
._28{width:60.744240px;}
._e{width:88.838640px;}
._c{width:196.128000px;}
._d{width:285.588000px;}
._23{width:942.348000px;}
._2c{width:2378.328000px;}
.fc4{color:rgb(113,21,28);}
.fc3{color:rgb(192,0,0);}
.fc8{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,128);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(102,102,102);}
.fc5{color:rgb(128,128,128);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(100,100,100);}
.fs6{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:69.120000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y28{bottom:3.600000px;}
.y27{bottom:20.160000px;}
.y2f{bottom:21.780000px;}
.y26{bottom:36.540000px;}
.y2b{bottom:39.420000px;}
.y2e{bottom:40.140000px;}
.y25{bottom:53.100000px;}
.y2a{bottom:57.780000px;}
.y2d{bottom:58.500000px;}
.yd{bottom:68.760000px;}
.y24{bottom:69.480000px;}
.y23{bottom:86.040000px;}
.y98{bottom:88.920000px;}
.y111{bottom:92.520000px;}
.yfd{bottom:93.240000px;}
.y53{bottom:95.040000px;}
.y10c{bottom:102.240000px;}
.y22{bottom:102.420000px;}
.y73{bottom:104.220000px;}
.y97{bottom:107.280000px;}
.yc{bottom:108.540000px;}
.yd7{bottom:109.800000px;}
.y110{bottom:114.480000px;}
.yc9{bottom:114.840000px;}
.yb6{bottom:115.200000px;}
.y21{bottom:118.980000px;}
.y52{bottom:122.400000px;}
.y10b{bottom:124.200000px;}
.y96{bottom:125.640000px;}
.ycf{bottom:126.000000px;}
.yfc{bottom:126.180000px;}
.yb{bottom:127.980000px;}
.yc8{bottom:133.200000px;}
.y20{bottom:135.570000px;}
.y72{bottom:137.160000px;}
.y10f{bottom:142.560000px;}
.ya{bottom:142.740000px;}
.y95{bottom:144.000000px;}
.yc7{bottom:144.360000px;}
.y10a{bottom:146.160000px;}
.yb5{bottom:148.140000px;}
.yed{bottom:151.560000px;}
.y1f{bottom:151.950000px;}
.y51{bottom:152.460000px;}
.y9{bottom:157.320000px;}
.yce{bottom:159.300000px;}
.yeb{bottom:162.180000px;}
.yec{bottom:162.720000px;}
.y109{bottom:168.120000px;}
.y1e{bottom:168.510000px;}
.y94{bottom:169.740000px;}
.y71{bottom:170.280000px;}
.y8{bottom:171.900000px;}
.yd6{bottom:175.710000px;}
.y93{bottom:180.930000px;}
.yb4{bottom:181.290000px;}
.y1d{bottom:184.890000px;}
.y50{bottom:185.610000px;}
.y7{bottom:186.690000px;}
.yea{bottom:188.130000px;}
.ycd{bottom:189.570000px;}
.y108{bottom:190.110000px;}
.yc6{bottom:192.270000px;}
.ye9{bottom:199.290000px;}
.y6{bottom:201.270000px;}
.y1c{bottom:201.450000px;}
.y70{bottom:203.250000px;}
.y92{bottom:206.130000px;}
.yd5{bottom:208.650000px;}
.y107{bottom:212.070000px;}
.yb3{bottom:214.230000px;}
.y5{bottom:216.030000px;}
.ycc{bottom:217.110000px;}
.y1b{bottom:217.830000px;}
.y4f{bottom:218.550000px;}
.yc5{bottom:225.210000px;}
.y4{bottom:230.610000px;}
.y91{bottom:233.490000px;}
.y106{bottom:234.030000px;}
.y1a{bottom:234.390000px;}
.y6f{bottom:236.190000px;}
.yd4{bottom:241.590000px;}
.ycb{bottom:244.470000px;}
.y3{bottom:245.190000px;}
.yb2{bottom:247.170000px;}
.y19{bottom:250.770000px;}
.y4e{bottom:251.490000px;}
.y105{bottom:256.890000px;}
.yc4{bottom:258.150000px;}
.y2{bottom:259.950000px;}
.y90{bottom:261.030000px;}
.ye8{bottom:263.550000px;}
.y18{bottom:267.330000px;}
.y6e{bottom:269.130000px;}
.yca{bottom:272.010000px;}
.y1{bottom:274.530000px;}
.yb1{bottom:280.110000px;}
.y104{bottom:282.450000px;}
.y17{bottom:283.890000px;}
.y4d{bottom:284.430000px;}
.ye7{bottom:285.510000px;}
.y8f{bottom:288.390000px;}
.yc3{bottom:291.090000px;}
.y16{bottom:300.630000px;}
.y6d{bottom:302.070000px;}
.y8e{bottom:307.470000px;}
.yb0{bottom:313.050000px;}
.y103{bottom:315.750000px;}
.ye6{bottom:315.930000px;}
.y4c{bottom:317.370000px;}
.yc2{bottom:324.030000px;}
.y2c{bottom:326.010000px;}
.y102{bottom:329.970000px;}
.y6c{bottom:335.010000px;}
.y8d{bottom:340.590000px;}
.ye5{bottom:343.470000px;}
.yaf{bottom:345.990000px;}
.y4b{bottom:347.790000px;}
.yc1{bottom:356.970000px;}
.y6b{bottom:367.950000px;}
.ye4{bottom:370.830000px;}
.y8c{bottom:373.530000px;}
.y4a{bottom:375.150000px;}
.ye1{bottom:376.410000px;}
.yae{bottom:378.930000px;}
.yc0{bottom:389.910000px;}
.ye3{bottom:398.370000px;}
.y6a{bottom:400.890000px;}
.y49{bottom:402.690000px;}
.ye0{bottom:403.770000px;}
.y8b{bottom:406.470000px;}
.yad{bottom:411.870000px;}
.ybf{bottom:422.895000px;}
.ye2{bottom:425.775000px;}
.y29{bottom:425.955000px;}
.y48{bottom:430.095000px;}
.ydf{bottom:431.355000px;}
.y69{bottom:433.875000px;}
.y8a{bottom:439.455000px;}
.yac{bottom:444.855000px;}
.ybe{bottom:455.835000px;}
.y47{bottom:457.635000px;}
.yde{bottom:458.715000px;}
.y68{bottom:466.995000px;}
.y89{bottom:469.875000px;}
.yd3{bottom:472.395000px;}
.y46{bottom:476.715000px;}
.yab{bottom:477.975000px;}
.ydd{bottom:486.255000px;}
.ybd{bottom:488.955000px;}
.y88{bottom:497.235000px;}
.y67{bottom:499.935000px;}
.yd2{bottom:502.815000px;}
.yfb{bottom:508.215000px;}
.y45{bottom:509.655000px;}
.yaa{bottom:510.915000px;}
.ydc{bottom:513.795000px;}
.ybc{bottom:521.895000px;}
.y87{bottom:524.775000px;}
.y15{bottom:525.135000px;}
.yd1{bottom:530.175000px;}
.y66{bottom:532.875000px;}
.yfa{bottom:535.755000px;}
.ydb{bottom:541.155000px;}
.y44{bottom:542.595000px;}
.ya9{bottom:543.855000px;}
.y86{bottom:552.135000px;}
.ybb{bottom:554.835000px;}
.yd0{bottom:557.715000px;}
.yf9{bottom:563.115000px;}
.y65{bottom:565.815000px;}
.yda{bottom:568.695000px;}
.y43{bottom:575.535000px;}
.ya8{bottom:576.795000px;}
.y85{bottom:579.675000px;}
.yba{bottom:587.775000px;}
.yf8{bottom:590.655000px;}
.yd9{bottom:596.055000px;}
.y64{bottom:598.755000px;}
.y84{bottom:607.035000px;}
.y42{bottom:608.475000px;}
.ya7{bottom:609.735000px;}
.yf7{bottom:618.015000px;}
.yb9{bottom:620.715000px;}
.yd8{bottom:623.595000px;}
.y63{bottom:631.695000px;}
.y83{bottom:634.575000px;}
.y41{bottom:641.415000px;}
.ya6{bottom:642.675000px;}
.yf6{bottom:645.555000px;}
.yb8{bottom:653.655000px;}
.y82{bottom:662.145000px;}
.y62{bottom:664.665000px;}
.yf5{bottom:673.125000px;}
.y40{bottom:674.565000px;}
.ya5{bottom:675.645000px;}
.yb7{bottom:686.625000px;}
.y81{bottom:689.505000px;}
.y61{bottom:697.605000px;}
.yf4{bottom:700.485000px;}
.y3f{bottom:707.505000px;}
.ya4{bottom:708.585000px;}
.y80{bottom:719.565000px;}
.yf3{bottom:728.025000px;}
.y60{bottom:730.545000px;}
.y3e{bottom:740.445000px;}
.ya3{bottom:741.525000px;}
.y7f{bottom:752.505000px;}
.yf2{bottom:755.385000px;}
.y5f{bottom:763.485000px;}
.y118{bottom:770.145000px;}
.y3d{bottom:773.385000px;}
.ya2{bottom:774.465000px;}
.yf1{bottom:782.925000px;}
.y7e{bottom:785.625000px;}
.y5e{bottom:796.605000px;}
.y117{bottom:803.085000px;}
.y3c{bottom:806.325000px;}
.ya1{bottom:807.585000px;}
.yf0{bottom:810.465000px;}
.y7d{bottom:818.565000px;}
.y5d{bottom:829.545000px;}
.y116{bottom:836.025000px;}
.yef{bottom:837.825000px;}
.y3b{bottom:839.265000px;}
.ya0{bottom:840.525000px;}
.y101{bottom:848.805000px;}
.y7c{bottom:851.505000px;}
.y14{bottom:853.665000px;}
.y115{bottom:857.985000px;}
.y5c{bottom:862.485000px;}
.yee{bottom:865.365000px;}
.y3a{bottom:872.205000px;}
.y9f{bottom:873.465000px;}
.y100{bottom:876.345000px;}
.y13{bottom:880.485000px;}
.y114{bottom:880.665000px;}
.y7b{bottom:884.445000px;}
.y5b{bottom:895.425000px;}
.y12{bottom:903.210000px;}
.yff{bottom:903.750000px;}
.y39{bottom:905.190000px;}
.y9e{bottom:906.450000px;}
.y113{bottom:911.670000px;}
.y7a{bottom:917.430000px;}
.y5a{bottom:928.410000px;}
.y11{bottom:928.950000px;}
.yfe{bottom:931.290000px;}
.y38{bottom:935.610000px;}
.y9d{bottom:939.390000px;}
.y79{bottom:950.370000px;}
.y10{bottom:953.790000px;}
.y59{bottom:961.350000px;}
.y37{bottom:962.970000px;}
.y9c{bottom:972.330000px;}
.yf{bottom:975.750000px;}
.y78{bottom:983.310000px;}
.y36{bottom:990.510000px;}
.ye{bottom:992.850000px;}
.y58{bottom:994.290000px;}
.y9b{bottom:1005.270000px;}
.y77{bottom:1016.250000px;}
.y35{bottom:1018.050000px;}
.y57{bottom:1027.230000px;}
.y9a{bottom:1035.690000px;}
.y112{bottom:1038.210000px;}
.y34{bottom:1048.110000px;}
.y76{bottom:1049.190000px;}
.y56{bottom:1060.170000px;}
.y99{bottom:1063.050000px;}
.y10e{bottom:1071.150000px;}
.y33{bottom:1073.490000px;}
.y75{bottom:1082.130000px;}
.y32{bottom:1089.510000px;}
.y55{bottom:1090.590000px;}
.y10d{bottom:1093.290000px;}
.y31{bottom:1112.370000px;}
.y74{bottom:1115.250000px;}
.y54{bottom:1118.130000px;}
.y30{bottom:1163.700000px;}
.h10{height:31.286250px;}
.h3{height:38.818125px;}
.h2{height:39.783867px;}
.ha{height:43.453125px;}
.hb{height:48.088125px;}
.h9{height:49.284492px;}
.h4{height:55.620000px;}
.h5{height:57.937500px;}
.h6{height:59.378906px;}
.h7{height:69.473320px;}
.hf{height:71.938125px;}
.hc{height:72.000000px;}
.hd{height:72.720000px;}
.he{height:74.004654px;}
.h8{height:314.850000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:361.515000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:13.896000px;}
.x7{left:83.880000px;}
.x1{left:85.860000px;}
.x4{left:86.940000px;}
.xc{left:138.096000px;}
.xd{left:148.896000px;}
.x2{left:184.170000px;}
.x6{left:446.475000px;}
.xb{left:558.825000px;}
.x9{left:577.725000px;}
.x8{left:579.885000px;}
.xa{left:597.885000px;}
.xf{left:654.765000px;}
.xe{left:662.325000px;}
.x3{left:807.270000px;}
.x10{left:808.530000px;}
@media print{
.v1{vertical-align:-52.480000pt;}
.v3{vertical-align:-29.440000pt;}
.v4{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls11{letter-spacing:-3.472000pt;}
.ls27{letter-spacing:-1.333333pt;}
.ls28{letter-spacing:-1.216000pt;}
.ls1b{letter-spacing:-0.832000pt;}
.ls4{letter-spacing:-0.768000pt;}
.ls21{letter-spacing:-0.693333pt;}
.ls26{letter-spacing:-0.640000pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.274667pt;}
.ls2a{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.156267pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.112000pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls7{letter-spacing:-0.051733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.019840pt;}
.ls6{letter-spacing:0.048000pt;}
.ls12{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.154667pt;}
.ls9{letter-spacing:0.154880pt;}
.ls10{letter-spacing:0.179840pt;}
.lsd{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.244267pt;}
.ls13{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.256533pt;}
.ls19{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.374400pt;}
.ls1{letter-spacing:0.435733pt;}
.lse{letter-spacing:0.592000pt;}
.ls1c{letter-spacing:0.794667pt;}
.lsc{letter-spacing:0.794880pt;}
.ls5{letter-spacing:0.826667pt;}
.ls20{letter-spacing:1.434880pt;}
.ls1f{letter-spacing:1.439360pt;}
.ls25{letter-spacing:1.536000pt;}
.ls1d{letter-spacing:2.816000pt;}
.ls16{letter-spacing:3.456000pt;}
.ls23{letter-spacing:5.376000pt;}
.ls18{letter-spacing:6.016000pt;}
.ls29{letter-spacing:14.336000pt;}
.ls2b{letter-spacing:32.256000pt;}
.ws2{word-spacing:-17.749547pt;}
.ws3{word-spacing:-17.358613pt;}
.ws16{word-spacing:-14.784000pt;}
.wse{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.656000pt;}
.ws11{word-spacing:-14.592000pt;}
.wsf{word-spacing:-14.528000pt;}
.wsb{word-spacing:-14.464000pt;}
.ws14{word-spacing:-14.400000pt;}
.ws1b{word-spacing:-14.208000pt;}
.ws17{word-spacing:-14.144000pt;}
.ws18{word-spacing:-13.824000pt;}
.ws12{word-spacing:-13.696000pt;}
.ws13{word-spacing:-13.632000pt;}
.ws1a{word-spacing:-13.248000pt;}
.ws9{word-spacing:-12.597120pt;}
.ws8{word-spacing:-12.249387pt;}
.ws5{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953387pt;}
.ws10{word-spacing:-11.730453pt;}
.ws15{word-spacing:-11.311787pt;}
.ws4{word-spacing:-10.848000pt;}
.ws19{word-spacing:-10.671787pt;}
.ws0{word-spacing:-9.690880pt;}
.ws1{word-spacing:-9.578880pt;}
.wsd{word-spacing:-8.533120pt;}
.wsc{word-spacing:-7.810560pt;}
.ws7{word-spacing:0.000000pt;}
._5{margin-left:-6.946560pt;}
._1c{margin-left:-5.900373pt;}
._4{margin-left:-4.965760pt;}
._11{margin-left:-4.032000pt;}
._9{margin-left:-2.900053pt;}
._2{margin-left:-1.843840pt;}
._7{margin-left:-0.900480pt;}
._0{width:0.900480pt;}
._1{width:2.375467pt;}
._27{width:3.268907pt;}
._3{width:4.159360pt;}
._a{width:5.149013pt;}
._8{width:6.474880pt;}
._6{width:7.461120pt;}
._f{width:8.745173pt;}
._1a{width:9.926827pt;}
._b{width:11.136000pt;}
._19{width:12.105600pt;}
._13{width:13.478400pt;}
._12{width:14.398080pt;}
._1e{width:15.396480pt;}
._1d{width:16.679680pt;}
._14{width:18.048000pt;}
._15{width:19.459840pt;}
._26{width:21.063467pt;}
._25{width:22.336000pt;}
._17{width:23.790080pt;}
._16{width:24.867200pt;}
._20{width:26.032000pt;}
._1b{width:27.024000pt;}
._1f{width:28.736000pt;}
._21{width:30.784000pt;}
._22{width:32.115840pt;}
._2d{width:33.021653pt;}
._24{width:34.510720pt;}
._18{width:35.604480pt;}
._2a{width:37.376000pt;}
._2b{width:38.654507pt;}
._10{width:40.848000pt;}
._29{width:52.723200pt;}
._28{width:53.994880pt;}
._e{width:78.967680pt;}
._c{width:174.336000pt;}
._d{width:253.856000pt;}
._23{width:837.642667pt;}
._2c{width:2114.069333pt;}
.fs6{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:61.440000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:3.200000pt;}
.y27{bottom:17.920000pt;}
.y2f{bottom:19.360000pt;}
.y26{bottom:32.480000pt;}
.y2b{bottom:35.040000pt;}
.y2e{bottom:35.680000pt;}
.y25{bottom:47.200000pt;}
.y2a{bottom:51.360000pt;}
.y2d{bottom:52.000000pt;}
.yd{bottom:61.120000pt;}
.y24{bottom:61.760000pt;}
.y23{bottom:76.480000pt;}
.y98{bottom:79.040000pt;}
.y111{bottom:82.240000pt;}
.yfd{bottom:82.880000pt;}
.y53{bottom:84.480000pt;}
.y10c{bottom:90.880000pt;}
.y22{bottom:91.040000pt;}
.y73{bottom:92.640000pt;}
.y97{bottom:95.360000pt;}
.yc{bottom:96.480000pt;}
.yd7{bottom:97.600000pt;}
.y110{bottom:101.760000pt;}
.yc9{bottom:102.080000pt;}
.yb6{bottom:102.400000pt;}
.y21{bottom:105.760000pt;}
.y52{bottom:108.800000pt;}
.y10b{bottom:110.400000pt;}
.y96{bottom:111.680000pt;}
.ycf{bottom:112.000000pt;}
.yfc{bottom:112.160000pt;}
.yb{bottom:113.760000pt;}
.yc8{bottom:118.400000pt;}
.y20{bottom:120.506667pt;}
.y72{bottom:121.920000pt;}
.y10f{bottom:126.720000pt;}
.ya{bottom:126.880000pt;}
.y95{bottom:128.000000pt;}
.yc7{bottom:128.320000pt;}
.y10a{bottom:129.920000pt;}
.yb5{bottom:131.680000pt;}
.yed{bottom:134.720000pt;}
.y1f{bottom:135.066667pt;}
.y51{bottom:135.520000pt;}
.y9{bottom:139.840000pt;}
.yce{bottom:141.600000pt;}
.yeb{bottom:144.160000pt;}
.yec{bottom:144.640000pt;}
.y109{bottom:149.440000pt;}
.y1e{bottom:149.786667pt;}
.y94{bottom:150.880000pt;}
.y71{bottom:151.360000pt;}
.y8{bottom:152.800000pt;}
.yd6{bottom:156.186667pt;}
.y93{bottom:160.826667pt;}
.yb4{bottom:161.146667pt;}
.y1d{bottom:164.346667pt;}
.y50{bottom:164.986667pt;}
.y7{bottom:165.946667pt;}
.yea{bottom:167.226667pt;}
.ycd{bottom:168.506667pt;}
.y108{bottom:168.986667pt;}
.yc6{bottom:170.906667pt;}
.ye9{bottom:177.146667pt;}
.y6{bottom:178.906667pt;}
.y1c{bottom:179.066667pt;}
.y70{bottom:180.666667pt;}
.y92{bottom:183.226667pt;}
.yd5{bottom:185.466667pt;}
.y107{bottom:188.506667pt;}
.yb3{bottom:190.426667pt;}
.y5{bottom:192.026667pt;}
.ycc{bottom:192.986667pt;}
.y1b{bottom:193.626667pt;}
.y4f{bottom:194.266667pt;}
.yc5{bottom:200.186667pt;}
.y4{bottom:204.986667pt;}
.y91{bottom:207.546667pt;}
.y106{bottom:208.026667pt;}
.y1a{bottom:208.346667pt;}
.y6f{bottom:209.946667pt;}
.yd4{bottom:214.746667pt;}
.ycb{bottom:217.306667pt;}
.y3{bottom:217.946667pt;}
.yb2{bottom:219.706667pt;}
.y19{bottom:222.906667pt;}
.y4e{bottom:223.546667pt;}
.y105{bottom:228.346667pt;}
.yc4{bottom:229.466667pt;}
.y2{bottom:231.066667pt;}
.y90{bottom:232.026667pt;}
.ye8{bottom:234.266667pt;}
.y18{bottom:237.626667pt;}
.y6e{bottom:239.226667pt;}
.yca{bottom:241.786667pt;}
.y1{bottom:244.026667pt;}
.yb1{bottom:248.986667pt;}
.y104{bottom:251.066667pt;}
.y17{bottom:252.346667pt;}
.y4d{bottom:252.826667pt;}
.ye7{bottom:253.786667pt;}
.y8f{bottom:256.346667pt;}
.yc3{bottom:258.746667pt;}
.y16{bottom:267.226667pt;}
.y6d{bottom:268.506667pt;}
.y8e{bottom:273.306667pt;}
.yb0{bottom:278.266667pt;}
.y103{bottom:280.666667pt;}
.ye6{bottom:280.826667pt;}
.y4c{bottom:282.106667pt;}
.yc2{bottom:288.026667pt;}
.y2c{bottom:289.786667pt;}
.y102{bottom:293.306667pt;}
.y6c{bottom:297.786667pt;}
.y8d{bottom:302.746667pt;}
.ye5{bottom:305.306667pt;}
.yaf{bottom:307.546667pt;}
.y4b{bottom:309.146667pt;}
.yc1{bottom:317.306667pt;}
.y6b{bottom:327.066667pt;}
.ye4{bottom:329.626667pt;}
.y8c{bottom:332.026667pt;}
.y4a{bottom:333.466667pt;}
.ye1{bottom:334.586667pt;}
.yae{bottom:336.826667pt;}
.yc0{bottom:346.586667pt;}
.ye3{bottom:354.106667pt;}
.y6a{bottom:356.346667pt;}
.y49{bottom:357.946667pt;}
.ye0{bottom:358.906667pt;}
.y8b{bottom:361.306667pt;}
.yad{bottom:366.106667pt;}
.ybf{bottom:375.906667pt;}
.ye2{bottom:378.466667pt;}
.y29{bottom:378.626667pt;}
.y48{bottom:382.306667pt;}
.ydf{bottom:383.426667pt;}
.y69{bottom:385.666667pt;}
.y8a{bottom:390.626667pt;}
.yac{bottom:395.426667pt;}
.ybe{bottom:405.186667pt;}
.y47{bottom:406.786667pt;}
.yde{bottom:407.746667pt;}
.y68{bottom:415.106667pt;}
.y89{bottom:417.666667pt;}
.yd3{bottom:419.906667pt;}
.y46{bottom:423.746667pt;}
.yab{bottom:424.866667pt;}
.ydd{bottom:432.226667pt;}
.ybd{bottom:434.626667pt;}
.y88{bottom:441.986667pt;}
.y67{bottom:444.386667pt;}
.yd2{bottom:446.946667pt;}
.yfb{bottom:451.746667pt;}
.y45{bottom:453.026667pt;}
.yaa{bottom:454.146667pt;}
.ydc{bottom:456.706667pt;}
.ybc{bottom:463.906667pt;}
.y87{bottom:466.466667pt;}
.y15{bottom:466.786667pt;}
.yd1{bottom:471.266667pt;}
.y66{bottom:473.666667pt;}
.yfa{bottom:476.226667pt;}
.ydb{bottom:481.026667pt;}
.y44{bottom:482.306667pt;}
.ya9{bottom:483.426667pt;}
.y86{bottom:490.786667pt;}
.ybb{bottom:493.186667pt;}
.yd0{bottom:495.746667pt;}
.yf9{bottom:500.546667pt;}
.y65{bottom:502.946667pt;}
.yda{bottom:505.506667pt;}
.y43{bottom:511.586667pt;}
.ya8{bottom:512.706667pt;}
.y85{bottom:515.266667pt;}
.yba{bottom:522.466667pt;}
.yf8{bottom:525.026667pt;}
.yd9{bottom:529.826667pt;}
.y64{bottom:532.226667pt;}
.y84{bottom:539.586667pt;}
.y42{bottom:540.866667pt;}
.ya7{bottom:541.986667pt;}
.yf7{bottom:549.346667pt;}
.yb9{bottom:551.746667pt;}
.yd8{bottom:554.306667pt;}
.y63{bottom:561.506667pt;}
.y83{bottom:564.066667pt;}
.y41{bottom:570.146667pt;}
.ya6{bottom:571.266667pt;}
.yf6{bottom:573.826667pt;}
.yb8{bottom:581.026667pt;}
.y82{bottom:588.573333pt;}
.y62{bottom:590.813333pt;}
.yf5{bottom:598.333333pt;}
.y40{bottom:599.613333pt;}
.ya5{bottom:600.573333pt;}
.yb7{bottom:610.333333pt;}
.y81{bottom:612.893333pt;}
.y61{bottom:620.093333pt;}
.yf4{bottom:622.653333pt;}
.y3f{bottom:628.893333pt;}
.ya4{bottom:629.853333pt;}
.y80{bottom:639.613333pt;}
.yf3{bottom:647.133333pt;}
.y60{bottom:649.373333pt;}
.y3e{bottom:658.173333pt;}
.ya3{bottom:659.133333pt;}
.y7f{bottom:668.893333pt;}
.yf2{bottom:671.453333pt;}
.y5f{bottom:678.653333pt;}
.y118{bottom:684.573333pt;}
.y3d{bottom:687.453333pt;}
.ya2{bottom:688.413333pt;}
.yf1{bottom:695.933333pt;}
.y7e{bottom:698.333333pt;}
.y5e{bottom:708.093333pt;}
.y117{bottom:713.853333pt;}
.y3c{bottom:716.733333pt;}
.ya1{bottom:717.853333pt;}
.yf0{bottom:720.413333pt;}
.y7d{bottom:727.613333pt;}
.y5d{bottom:737.373333pt;}
.y116{bottom:743.133333pt;}
.yef{bottom:744.733333pt;}
.y3b{bottom:746.013333pt;}
.ya0{bottom:747.133333pt;}
.y101{bottom:754.493333pt;}
.y7c{bottom:756.893333pt;}
.y14{bottom:758.813333pt;}
.y115{bottom:762.653333pt;}
.y5c{bottom:766.653333pt;}
.yee{bottom:769.213333pt;}
.y3a{bottom:775.293333pt;}
.y9f{bottom:776.413333pt;}
.y100{bottom:778.973333pt;}
.y13{bottom:782.653333pt;}
.y114{bottom:782.813333pt;}
.y7b{bottom:786.173333pt;}
.y5b{bottom:795.933333pt;}
.y12{bottom:802.853333pt;}
.yff{bottom:803.333333pt;}
.y39{bottom:804.613333pt;}
.y9e{bottom:805.733333pt;}
.y113{bottom:810.373333pt;}
.y7a{bottom:815.493333pt;}
.y5a{bottom:825.253333pt;}
.y11{bottom:825.733333pt;}
.yfe{bottom:827.813333pt;}
.y38{bottom:831.653333pt;}
.y9d{bottom:835.013333pt;}
.y79{bottom:844.773333pt;}
.y10{bottom:847.813333pt;}
.y59{bottom:854.533333pt;}
.y37{bottom:855.973333pt;}
.y9c{bottom:864.293333pt;}
.yf{bottom:867.333333pt;}
.y78{bottom:874.053333pt;}
.y36{bottom:880.453333pt;}
.ye{bottom:882.533333pt;}
.y58{bottom:883.813333pt;}
.y9b{bottom:893.573333pt;}
.y77{bottom:903.333333pt;}
.y35{bottom:904.933333pt;}
.y57{bottom:913.093333pt;}
.y9a{bottom:920.613333pt;}
.y112{bottom:922.853333pt;}
.y34{bottom:931.653333pt;}
.y76{bottom:932.613333pt;}
.y56{bottom:942.373333pt;}
.y99{bottom:944.933333pt;}
.y10e{bottom:952.133333pt;}
.y33{bottom:954.213333pt;}
.y75{bottom:961.893333pt;}
.y32{bottom:968.453333pt;}
.y55{bottom:969.413333pt;}
.y10d{bottom:971.813333pt;}
.y31{bottom:988.773333pt;}
.y74{bottom:991.333333pt;}
.y54{bottom:993.893333pt;}
.y30{bottom:1034.400000pt;}
.h10{height:27.810000pt;}
.h3{height:34.505000pt;}
.h2{height:35.363437pt;}
.ha{height:38.625000pt;}
.hb{height:42.745000pt;}
.h9{height:43.808438pt;}
.h4{height:49.440000pt;}
.h5{height:51.500000pt;}
.h6{height:52.781250pt;}
.h7{height:61.754062pt;}
.hf{height:63.945000pt;}
.hc{height:64.000000pt;}
.hd{height:64.640000pt;}
.he{height:65.781915pt;}
.h8{height:279.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:321.346667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:12.352000pt;}
.x7{left:74.560000pt;}
.x1{left:76.320000pt;}
.x4{left:77.280000pt;}
.xc{left:122.752000pt;}
.xd{left:132.352000pt;}
.x2{left:163.706667pt;}
.x6{left:396.866667pt;}
.xb{left:496.733333pt;}
.x9{left:513.533333pt;}
.x8{left:515.453333pt;}
.xa{left:531.453333pt;}
.xf{left:582.013333pt;}
.xe{left:588.733333pt;}
.x3{left:717.573333pt;}
.x10{left:718.693333pt;}
}




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