
    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_6911899ae681ee879cabd43c.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_cf75ef8ebbc49dd5b7d6e1ad.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_41adc634871ad9cfae264219.woff')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_187511759ccf0c5be632774e.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d5184ec172a8f73e1d308bd0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d10ebfa10f2df355c8510053.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls10{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.160800px;}
.ls19{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls12{letter-spacing:-0.114000px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.066000px;}
.ls15{letter-spacing:-0.018360px;}
.ls13{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.041760px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsc{letter-spacing:0.098400px;}
.ls1a{letter-spacing:0.113400px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls18{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls17{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;}
.wsc{word-spacing:-14.379600px;}
.wsb{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws14{word-spacing:-13.339800px;}
.wsa{word-spacing:-13.324800px;}
.ws5{word-spacing:-13.275600px;}
.wsd{word-spacing:-13.275360px;}
.wsf{word-spacing:-13.268160px;}
.ws2{word-spacing:-13.226400px;}
.wse{word-spacing:-13.211640px;}
.ws10{word-spacing:-13.208040px;}
.ws11{word-spacing:-13.160400px;}
.ws13{word-spacing:-13.072800px;}
.ws9{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._d{margin-left:-3.607200px;}
._9{margin-left:-2.175600px;}
._0{margin-left:-1.104000px;}
._2{width:1.036200px;}
._4{width:2.080326px;}
._a{width:3.421200px;}
._7{width:4.809600px;}
._8{width:5.952000px;}
._3{width:7.033800px;}
._c{width:8.198162px;}
._6{width:9.499200px;}
._5{width:11.242200px;}
._b{width:14.608080px;}
._10{width:15.773639px;}
._e{width:17.374680px;}
._f{width:18.697320px;}
._15{width:19.839600px;}
._14{width:20.861640px;}
._13{width:22.556280px;}
._12{width:23.567040px;}
._11{width:25.490880px;}
._16{width:27.294480px;}
._17{width:28.376640px;}
._1{width:31.035600px;}
._1a{width:36.522720px;}
._18{width:38.957760px;}
._19{width:40.220280px;}
._1d{width:102.384360px;}
._1c{width:226.772640px;}
._1b{width:227.827800px;}
._1f{width:320.680080px;}
._1e{width:1708.472400px;}
.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;}
.y33{bottom:7.830000px;}
.y36{bottom:7.920000px;}
.y31{bottom:7.950000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.yae{bottom:116.220000px;}
.yda{bottom:118.200000px;}
.y82{bottom:119.370000px;}
.y56{bottom:123.780000px;}
.y28{bottom:131.610000px;}
.yad{bottom:133.770000px;}
.yd9{bottom:135.840000px;}
.y81{bottom:137.010000px;}
.y55{bottom:141.420000px;}
.y27{bottom:149.250000px;}
.yac{bottom:151.410000px;}
.yd8{bottom:153.390000px;}
.y80{bottom:154.560000px;}
.yfd{bottom:155.460000px;}
.y26{bottom:166.800000px;}
.yab{bottom:168.960000px;}
.yd7{bottom:170.940000px;}
.y7f{bottom:172.110000px;}
.yfc{bottom:173.100000px;}
.y54{bottom:176.970000px;}
.y25{bottom:184.350000px;}
.yaa{bottom:186.600000px;}
.yd6{bottom:188.580000px;}
.yfb{bottom:190.650000px;}
.y53{bottom:194.610000px;}
.y24{bottom:201.990000px;}
.ya9{bottom:204.150000px;}
.yd5{bottom:206.130000px;}
.y7e{bottom:207.750000px;}
.yfa{bottom:208.200000px;}
.y52{bottom:212.160000px;}
.y23{bottom:219.540000px;}
.ya8{bottom:221.700000px;}
.yd4{bottom:223.680000px;}
.y7d{bottom:225.300000px;}
.yf9{bottom:225.840000px;}
.y51{bottom:229.710000px;}
.y12a{bottom:232.860000px;}
.y22{bottom:237.090000px;}
.ya7{bottom:239.340000px;}
.yd3{bottom:241.320000px;}
.y7c{bottom:242.940000px;}
.yf8{bottom:243.390000px;}
.y50{bottom:247.350000px;}
.y129{bottom:250.500000px;}
.ya6{bottom:256.890000px;}
.yd2{bottom:258.870000px;}
.y7b{bottom:260.490000px;}
.yf7{bottom:261.030000px;}
.y21{bottom:263.730000px;}
.y4f{bottom:264.900000px;}
.y128{bottom:268.050000px;}
.ya5{bottom:274.440000px;}
.yd1{bottom:276.510000px;}
.y4e{bottom:282.540000px;}
.y127{bottom:285.600000px;}
.ya4{bottom:292.080000px;}
.yd0{bottom:294.060000px;}
.y7a{bottom:296.040000px;}
.yf6{bottom:296.580000px;}
.y20{bottom:299.280000px;}
.ya3{bottom:309.630000px;}
.ycf{bottom:311.610000px;}
.y126{bottom:312.240000px;}
.y79{bottom:313.680000px;}
.yf5{bottom:314.130000px;}
.y4d{bottom:315.480000px;}
.y1f{bottom:316.920000px;}
.yce{bottom:329.250000px;}
.y125{bottom:329.790000px;}
.y78{bottom:331.230000px;}
.yf4{bottom:331.770000px;}
.y1e{bottom:334.470000px;}
.y4c{bottom:342.840000px;}
.ya2{bottom:345.270000px;}
.ycd{bottom:346.800000px;}
.y124{bottom:347.430000px;}
.y77{bottom:348.870000px;}
.yf3{bottom:349.320000px;}
.y1d{bottom:352.020000px;}
.ya1{bottom:362.820000px;}
.y123{bottom:364.980000px;}
.y76{bottom:366.420000px;}
.yf2{bottom:366.870000px;}
.y4b{bottom:370.110000px;}
.y1c{bottom:378.930000px;}
.ya0{bottom:380.370000px;}
.ycc{bottom:382.440000px;}
.y122{bottom:382.530000px;}
.y75{bottom:383.970000px;}
.yf1{bottom:384.510000px;}
.y4a{bottom:397.470000px;}
.y9f{bottom:398.010000px;}
.ycb{bottom:399.990000px;}
.y74{bottom:401.610000px;}
.yf0{bottom:402.060000px;}
.y121{bottom:409.170000px;}
.y9e{bottom:415.560000px;}
.yca{bottom:417.540000px;}
.y49{bottom:424.830000px;}
.y120{bottom:426.720000px;}
.y1b{bottom:427.260000px;}
.y73{bottom:428.160000px;}
.y9d{bottom:433.200000px;}
.yef{bottom:435.090000px;}
.yc9{bottom:435.180000px;}
.y11f{bottom:444.360000px;}
.y1a{bottom:445.170000px;}
.y9c{bottom:450.750000px;}
.yc8{bottom:452.730000px;}
.y72{bottom:461.190000px;}
.yee{bottom:462.360000px;}
.y9b{bottom:468.300000px;}
.yc7{bottom:470.400000px;}
.y11e{bottom:470.940000px;}
.y48{bottom:473.550000px;}
.y19{bottom:482.190000px;}
.yc6{bottom:487.950000px;}
.y71{bottom:488.490000px;}
.yed{bottom:489.750000px;}
.y18{bottom:499.830000px;}
.y9a{bottom:501.360000px;}
.yc5{bottom:505.500000px;}
.y11d{bottom:506.130000px;}
.y47{bottom:509.100000px;}
.y70{bottom:515.850000px;}
.yec{bottom:517.110000px;}
.y17{bottom:517.380000px;}
.yc4{bottom:523.140000px;}
.y46{bottom:526.740000px;}
.y99{bottom:528.630000px;}
.y11c{bottom:532.680000px;}
.y16{bottom:534.930000px;}
.yc3{bottom:540.690000px;}
.y6f{bottom:543.210000px;}
.y45{bottom:544.290000px;}
.yeb{bottom:544.470000px;}
.y11b{bottom:550.230000px;}
.y15{bottom:552.570000px;}
.y98{bottom:555.990000px;}
.y44{bottom:561.840000px;}
.yc2{bottom:567.330000px;}
.y11a{bottom:567.870000px;}
.y14{bottom:570.120000px;}
.y6e{bottom:570.480000px;}
.yea{bottom:571.740000px;}
.y43{bottom:579.480000px;}
.y97{bottom:583.350000px;}
.y13{bottom:587.670000px;}
.y119{bottom:594.420000px;}
.y42{bottom:597.030000px;}
.yc1{bottom:602.880000px;}
.y12{bottom:605.310000px;}
.y96{bottom:610.710000px;}
.y118{bottom:612.060000px;}
.y41{bottom:614.670000px;}
.y6d{bottom:619.260000px;}
.yc0{bottom:620.430000px;}
.y11{bottom:622.860000px;}
.y117{bottom:629.610000px;}
.y40{bottom:632.220000px;}
.ybf{bottom:638.070000px;}
.y10{bottom:640.500000px;}
.y6c{bottom:654.810000px;}
.ybe{bottom:655.620000px;}
.ye9{bottom:656.070000px;}
.y116{bottom:656.160000px;}
.yf{bottom:658.050000px;}
.y3f{bottom:658.770000px;}
.y95{bottom:659.400000px;}
.y6b{bottom:672.360000px;}
.ybd{bottom:673.260000px;}
.ye8{bottom:673.620000px;}
.y115{bottom:673.800000px;}
.ye{bottom:675.600000px;}
.y6a{bottom:690.000000px;}
.ybc{bottom:690.810000px;}
.ye7{bottom:691.260000px;}
.yd{bottom:693.240000px;}
.y3e{bottom:694.410000px;}
.y94{bottom:694.950000px;}
.y114{bottom:700.710000px;}
.y69{bottom:707.550000px;}
.ybb{bottom:708.360000px;}
.ye6{bottom:708.810000px;}
.yc{bottom:710.790000px;}
.y3d{bottom:711.960000px;}
.y93{bottom:712.590000px;}
.y68{bottom:725.190000px;}
.yba{bottom:726.000000px;}
.ye5{bottom:726.360000px;}
.yb{bottom:728.430000px;}
.y92{bottom:730.140000px;}
.y3c{bottom:738.870000px;}
.yb9{bottom:743.550000px;}
.ye4{bottom:744.000000px;}
.y91{bottom:747.690000px;}
.y113{bottom:748.950000px;}
.ya{bottom:755.340000px;}
.y67{bottom:760.740000px;}
.yb8{bottom:761.190000px;}
.ye3{bottom:761.550000px;}
.y90{bottom:765.330000px;}
.y112{bottom:766.590000px;}
.y66{bottom:778.290000px;}
.yb7{bottom:778.740000px;}
.ye2{bottom:779.190000px;}
.y8f{bottom:782.880000px;}
.y111{bottom:784.140000px;}
.y3b{bottom:784.500000px;}
.y65{bottom:795.930000px;}
.yb6{bottom:796.290000px;}
.ye1{bottom:796.740000px;}
.y8e{bottom:800.520000px;}
.y110{bottom:801.690000px;}
.y9{bottom:803.580000px;}
.y3a{bottom:811.860000px;}
.y64{bottom:813.480000px;}
.yb5{bottom:813.930000px;}
.ye0{bottom:814.290000px;}
.y8d{bottom:818.070000px;}
.y10f{bottom:819.330000px;}
.y63{bottom:831.030000px;}
.yb4{bottom:831.480000px;}
.ydf{bottom:831.930000px;}
.y8c{bottom:835.620000px;}
.y10e{bottom:836.880000px;}
.y8{bottom:839.130000px;}
.y39{bottom:839.220000px;}
.yb3{bottom:849.030000px;}
.yde{bottom:849.480000px;}
.y8b{bottom:853.260000px;}
.y10d{bottom:854.520000px;}
.y38{bottom:866.580000px;}
.y62{bottom:866.670000px;}
.ydd{bottom:867.030000px;}
.y10c{bottom:872.070000px;}
.y7{bottom:874.950000px;}
.y8a{bottom:879.810000px;}
.y61{bottom:884.220000px;}
.ydc{bottom:884.670000px;}
.y10b{bottom:889.620000px;}
.y37{bottom:893.850000px;}
.y60{bottom:901.860000px;}
.ydb{bottom:902.220000px;}
.y10a{bottom:907.260000px;}
.y6{bottom:910.950000px;}
.y89{bottom:915.720000px;}
.y5f{bottom:919.410000px;}
.yb2{bottom:919.860000px;}
.y35{bottom:921.210000px;}
.y109{bottom:924.810000px;}
.y5e{bottom:936.960000px;}
.yb1{bottom:937.410000px;}
.y108{bottom:942.450000px;}
.y5{bottom:947.040000px;}
.y34{bottom:948.570000px;}
.yb0{bottom:954.960000px;}
.y107{bottom:960.000000px;}
.y88{bottom:963.960000px;}
.y5d{bottom:972.600000px;}
.y32{bottom:975.930000px;}
.y106{bottom:977.550000px;}
.y87{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y5c{bottom:990.150000px;}
.y105{bottom:995.190000px;}
.y86{bottom:999.150000px;}
.y30{bottom:1003.200000px;}
.y5b{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y104{bottom:1012.770000px;}
.y85{bottom:1016.820000px;}
.y5a{bottom:1025.370000px;}
.y103{bottom:1030.320000px;}
.y84{bottom:1034.370000px;}
.y59{bottom:1042.920000px;}
.y102{bottom:1047.960000px;}
.y2f{bottom:1051.920000px;}
.y58{bottom:1060.560000px;}
.y101{bottom:1065.510000px;}
.yaf{bottom:1069.560000px;}
.y83{bottom:1069.920000px;}
.y100{bottom:1083.150000px;}
.y57{bottom:1087.110000px;}
.y2e{bottom:1087.560000px;}
.yff{bottom:1100.700000px;}
.y2d{bottom:1105.110000px;}
.y2c{bottom:1122.750000px;}
.yfe{bottom:1127.610000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hd{height:26.580000px;}
.hb{height:26.640000px;}
.h9{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.he{height:61.793886px;}
.h8{height:62.585859px;}
.hc{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wc{width:130.350000px;}
.w9{width:138.870000px;}
.w6{width:143.490000px;}
.wf{width:152.550000px;}
.w3{width:154.170000px;}
.w4{width:181.350000px;}
.w10{width:185.520000px;}
.wa{width:185.670000px;}
.w11{width:191.700000px;}
.wb{width:203.490000px;}
.we{width:218.970000px;}
.w5{width:223.140000px;}
.w8{width:245.520000px;}
.w7{width:245.550000px;}
.wd{width:251.400000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:68.040000px;}
.x12{left:111.239987px;}
.x8{left:128.610000px;}
.xd{left:145.530000px;}
.x4{left:166.530000px;}
.xb{left:181.830000px;}
.x2{left:211.079987px;}
.x9{left:272.820000px;}
.xe{left:276.600000px;}
.x6{left:321.420000px;}
.x10{left:334.290000px;}
.x7{left:503.580000px;}
.xc{left:507.930000px;}
.xa{left:519.090000px;}
.x11{left:520.530000px;}
.xf{left:528.720000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls12{letter-spacing:-0.101333pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls15{letter-spacing:-0.016320pt;}
.ls13{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.037120pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsc{letter-spacing:0.087467pt;}
.ls1a{letter-spacing:0.100800pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls18{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls17{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.781867pt;}
.wsb{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws14{word-spacing:-11.857600pt;}
.wsa{word-spacing:-11.844267pt;}
.ws5{word-spacing:-11.800533pt;}
.wsd{word-spacing:-11.800320pt;}
.wsf{word-spacing:-11.793920pt;}
.ws2{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.743680pt;}
.ws10{word-spacing:-11.740480pt;}
.ws11{word-spacing:-11.698133pt;}
.ws13{word-spacing:-11.620267pt;}
.ws9{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._d{margin-left:-3.206400pt;}
._9{margin-left:-1.933867pt;}
._0{margin-left:-0.981333pt;}
._2{width:0.921067pt;}
._4{width:1.849179pt;}
._a{width:3.041067pt;}
._7{width:4.275200pt;}
._8{width:5.290667pt;}
._3{width:6.252266pt;}
._c{width:7.287255pt;}
._6{width:8.443734pt;}
._5{width:9.993066pt;}
._b{width:12.984960pt;}
._10{width:14.021012pt;}
._e{width:15.444160pt;}
._f{width:16.619840pt;}
._15{width:17.635200pt;}
._14{width:18.543680pt;}
._13{width:20.050027pt;}
._12{width:20.948480pt;}
._11{width:22.658560pt;}
._16{width:24.261760pt;}
._17{width:25.223680pt;}
._1{width:27.587200pt;}
._1a{width:32.464640pt;}
._18{width:34.629120pt;}
._19{width:35.751360pt;}
._1d{width:91.008320pt;}
._1c{width:201.575680pt;}
._1b{width:202.513600pt;}
._1f{width:285.048960pt;}
._1e{width:1518.642134pt;}
.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;}
.y33{bottom:6.960000pt;}
.y36{bottom:7.040000pt;}
.y31{bottom:7.066667pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.yae{bottom:103.306667pt;}
.yda{bottom:105.066667pt;}
.y82{bottom:106.106667pt;}
.y56{bottom:110.026667pt;}
.y28{bottom:116.986667pt;}
.yad{bottom:118.906667pt;}
.yd9{bottom:120.746667pt;}
.y81{bottom:121.786667pt;}
.y55{bottom:125.706667pt;}
.y27{bottom:132.666667pt;}
.yac{bottom:134.586667pt;}
.yd8{bottom:136.346667pt;}
.y80{bottom:137.386667pt;}
.yfd{bottom:138.186667pt;}
.y26{bottom:148.266667pt;}
.yab{bottom:150.186667pt;}
.yd7{bottom:151.946667pt;}
.y7f{bottom:152.986667pt;}
.yfc{bottom:153.866667pt;}
.y54{bottom:157.306667pt;}
.y25{bottom:163.866667pt;}
.yaa{bottom:165.866667pt;}
.yd6{bottom:167.626667pt;}
.yfb{bottom:169.466667pt;}
.y53{bottom:172.986667pt;}
.y24{bottom:179.546667pt;}
.ya9{bottom:181.466667pt;}
.yd5{bottom:183.226667pt;}
.y7e{bottom:184.666667pt;}
.yfa{bottom:185.066667pt;}
.y52{bottom:188.586667pt;}
.y23{bottom:195.146667pt;}
.ya8{bottom:197.066667pt;}
.yd4{bottom:198.826667pt;}
.y7d{bottom:200.266667pt;}
.yf9{bottom:200.746667pt;}
.y51{bottom:204.186667pt;}
.y12a{bottom:206.986667pt;}
.y22{bottom:210.746667pt;}
.ya7{bottom:212.746667pt;}
.yd3{bottom:214.506667pt;}
.y7c{bottom:215.946667pt;}
.yf8{bottom:216.346667pt;}
.y50{bottom:219.866667pt;}
.y129{bottom:222.666667pt;}
.ya6{bottom:228.346667pt;}
.yd2{bottom:230.106667pt;}
.y7b{bottom:231.546667pt;}
.yf7{bottom:232.026667pt;}
.y21{bottom:234.426667pt;}
.y4f{bottom:235.466667pt;}
.y128{bottom:238.266667pt;}
.ya5{bottom:243.946667pt;}
.yd1{bottom:245.786667pt;}
.y4e{bottom:251.146667pt;}
.y127{bottom:253.866667pt;}
.ya4{bottom:259.626667pt;}
.yd0{bottom:261.386667pt;}
.y7a{bottom:263.146667pt;}
.yf6{bottom:263.626667pt;}
.y20{bottom:266.026667pt;}
.ya3{bottom:275.226667pt;}
.ycf{bottom:276.986667pt;}
.y126{bottom:277.546667pt;}
.y79{bottom:278.826667pt;}
.yf5{bottom:279.226667pt;}
.y4d{bottom:280.426667pt;}
.y1f{bottom:281.706667pt;}
.yce{bottom:292.666667pt;}
.y125{bottom:293.146667pt;}
.y78{bottom:294.426667pt;}
.yf4{bottom:294.906667pt;}
.y1e{bottom:297.306667pt;}
.y4c{bottom:304.746667pt;}
.ya2{bottom:306.906667pt;}
.ycd{bottom:308.266667pt;}
.y124{bottom:308.826667pt;}
.y77{bottom:310.106667pt;}
.yf3{bottom:310.506667pt;}
.y1d{bottom:312.906667pt;}
.ya1{bottom:322.506667pt;}
.y123{bottom:324.426667pt;}
.y76{bottom:325.706667pt;}
.yf2{bottom:326.106667pt;}
.y4b{bottom:328.986667pt;}
.y1c{bottom:336.826667pt;}
.ya0{bottom:338.106667pt;}
.ycc{bottom:339.946667pt;}
.y122{bottom:340.026667pt;}
.y75{bottom:341.306667pt;}
.yf1{bottom:341.786667pt;}
.y4a{bottom:353.306667pt;}
.y9f{bottom:353.786667pt;}
.ycb{bottom:355.546667pt;}
.y74{bottom:356.986667pt;}
.yf0{bottom:357.386667pt;}
.y121{bottom:363.706667pt;}
.y9e{bottom:369.386667pt;}
.yca{bottom:371.146667pt;}
.y49{bottom:377.626667pt;}
.y120{bottom:379.306667pt;}
.y1b{bottom:379.786667pt;}
.y73{bottom:380.586667pt;}
.y9d{bottom:385.066667pt;}
.yef{bottom:386.746667pt;}
.yc9{bottom:386.826667pt;}
.y11f{bottom:394.986667pt;}
.y1a{bottom:395.706667pt;}
.y9c{bottom:400.666667pt;}
.yc8{bottom:402.426667pt;}
.y72{bottom:409.946667pt;}
.yee{bottom:410.986667pt;}
.y9b{bottom:416.266667pt;}
.yc7{bottom:418.133333pt;}
.y11e{bottom:418.613333pt;}
.y48{bottom:420.933333pt;}
.y19{bottom:428.613333pt;}
.yc6{bottom:433.733333pt;}
.y71{bottom:434.213333pt;}
.yed{bottom:435.333333pt;}
.y18{bottom:444.293333pt;}
.y9a{bottom:445.653333pt;}
.yc5{bottom:449.333333pt;}
.y11d{bottom:449.893333pt;}
.y47{bottom:452.533333pt;}
.y70{bottom:458.533333pt;}
.yec{bottom:459.653333pt;}
.y17{bottom:459.893333pt;}
.yc4{bottom:465.013333pt;}
.y46{bottom:468.213333pt;}
.y99{bottom:469.893333pt;}
.y11c{bottom:473.493333pt;}
.y16{bottom:475.493333pt;}
.yc3{bottom:480.613333pt;}
.y6f{bottom:482.853333pt;}
.y45{bottom:483.813333pt;}
.yeb{bottom:483.973333pt;}
.y11b{bottom:489.093333pt;}
.y15{bottom:491.173333pt;}
.y98{bottom:494.213333pt;}
.y44{bottom:499.413333pt;}
.yc2{bottom:504.293333pt;}
.y11a{bottom:504.773333pt;}
.y14{bottom:506.773333pt;}
.y6e{bottom:507.093333pt;}
.yea{bottom:508.213333pt;}
.y43{bottom:515.093333pt;}
.y97{bottom:518.533333pt;}
.y13{bottom:522.373333pt;}
.y119{bottom:528.373333pt;}
.y42{bottom:530.693333pt;}
.yc1{bottom:535.893333pt;}
.y12{bottom:538.053333pt;}
.y96{bottom:542.853333pt;}
.y118{bottom:544.053333pt;}
.y41{bottom:546.373333pt;}
.y6d{bottom:550.453333pt;}
.yc0{bottom:551.493333pt;}
.y11{bottom:553.653333pt;}
.y117{bottom:559.653333pt;}
.y40{bottom:561.973333pt;}
.ybf{bottom:567.173333pt;}
.y10{bottom:569.333333pt;}
.y6c{bottom:582.053333pt;}
.ybe{bottom:582.773333pt;}
.ye9{bottom:583.173333pt;}
.y116{bottom:583.253333pt;}
.yf{bottom:584.933333pt;}
.y3f{bottom:585.573333pt;}
.y95{bottom:586.133333pt;}
.y6b{bottom:597.653333pt;}
.ybd{bottom:598.453333pt;}
.ye8{bottom:598.773333pt;}
.y115{bottom:598.933333pt;}
.ye{bottom:600.533333pt;}
.y6a{bottom:613.333333pt;}
.ybc{bottom:614.053333pt;}
.ye7{bottom:614.453333pt;}
.yd{bottom:616.213333pt;}
.y3e{bottom:617.253333pt;}
.y94{bottom:617.733333pt;}
.y114{bottom:622.853333pt;}
.y69{bottom:628.933333pt;}
.ybb{bottom:629.653333pt;}
.ye6{bottom:630.053333pt;}
.yc{bottom:631.813333pt;}
.y3d{bottom:632.853333pt;}
.y93{bottom:633.413333pt;}
.y68{bottom:644.613333pt;}
.yba{bottom:645.333333pt;}
.ye5{bottom:645.653333pt;}
.yb{bottom:647.493333pt;}
.y92{bottom:649.013333pt;}
.y3c{bottom:656.773333pt;}
.yb9{bottom:660.933333pt;}
.ye4{bottom:661.333333pt;}
.y91{bottom:664.613333pt;}
.y113{bottom:665.733333pt;}
.ya{bottom:671.413333pt;}
.y67{bottom:676.213333pt;}
.yb8{bottom:676.613333pt;}
.ye3{bottom:676.933333pt;}
.y90{bottom:680.293333pt;}
.y112{bottom:681.413333pt;}
.y66{bottom:691.813333pt;}
.yb7{bottom:692.213333pt;}
.ye2{bottom:692.613333pt;}
.y8f{bottom:695.893333pt;}
.y111{bottom:697.013333pt;}
.y3b{bottom:697.333333pt;}
.y65{bottom:707.493333pt;}
.yb6{bottom:707.813333pt;}
.ye1{bottom:708.213333pt;}
.y8e{bottom:711.573333pt;}
.y110{bottom:712.613333pt;}
.y9{bottom:714.293333pt;}
.y3a{bottom:721.653333pt;}
.y64{bottom:723.093333pt;}
.yb5{bottom:723.493333pt;}
.ye0{bottom:723.813333pt;}
.y8d{bottom:727.173333pt;}
.y10f{bottom:728.293333pt;}
.y63{bottom:738.693333pt;}
.yb4{bottom:739.093333pt;}
.ydf{bottom:739.493333pt;}
.y8c{bottom:742.773333pt;}
.y10e{bottom:743.893333pt;}
.y8{bottom:745.893333pt;}
.y39{bottom:745.973333pt;}
.yb3{bottom:754.693333pt;}
.yde{bottom:755.093333pt;}
.y8b{bottom:758.453333pt;}
.y10d{bottom:759.573333pt;}
.y38{bottom:770.293333pt;}
.y62{bottom:770.373333pt;}
.ydd{bottom:770.693333pt;}
.y10c{bottom:775.173333pt;}
.y7{bottom:777.733333pt;}
.y8a{bottom:782.053333pt;}
.y61{bottom:785.973333pt;}
.ydc{bottom:786.373333pt;}
.y10b{bottom:790.773333pt;}
.y37{bottom:794.533333pt;}
.y60{bottom:801.653333pt;}
.ydb{bottom:801.973333pt;}
.y10a{bottom:806.453333pt;}
.y6{bottom:809.733333pt;}
.y89{bottom:813.973333pt;}
.y5f{bottom:817.253333pt;}
.yb2{bottom:817.653333pt;}
.y35{bottom:818.853333pt;}
.y109{bottom:822.053333pt;}
.y5e{bottom:832.853333pt;}
.yb1{bottom:833.253333pt;}
.y108{bottom:837.733333pt;}
.y5{bottom:841.813333pt;}
.y34{bottom:843.173333pt;}
.yb0{bottom:848.853333pt;}
.y107{bottom:853.333333pt;}
.y88{bottom:856.853333pt;}
.y5d{bottom:864.533333pt;}
.y32{bottom:867.493333pt;}
.y106{bottom:868.933333pt;}
.y87{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y5c{bottom:880.133333pt;}
.y105{bottom:884.613333pt;}
.y86{bottom:888.133333pt;}
.y30{bottom:891.733333pt;}
.y5b{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y104{bottom:900.240000pt;}
.y85{bottom:903.840000pt;}
.y5a{bottom:911.440000pt;}
.y103{bottom:915.840000pt;}
.y84{bottom:919.440000pt;}
.y59{bottom:927.040000pt;}
.y102{bottom:931.520000pt;}
.y2f{bottom:935.040000pt;}
.y58{bottom:942.720000pt;}
.y101{bottom:947.120000pt;}
.yaf{bottom:950.720000pt;}
.y83{bottom:951.040000pt;}
.y100{bottom:962.800000pt;}
.y57{bottom:966.320000pt;}
.y2e{bottom:966.720000pt;}
.yff{bottom:978.400000pt;}
.y2d{bottom:982.320000pt;}
.y2c{bottom:998.000000pt;}
.yfe{bottom:1002.320000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hd{height:23.626667pt;}
.hb{height:23.680000pt;}
.h9{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.he{height:54.927899pt;}
.h8{height:55.631875pt;}
.hc{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wc{width:115.866667pt;}
.w9{width:123.440000pt;}
.w6{width:127.546667pt;}
.wf{width:135.600000pt;}
.w3{width:137.040000pt;}
.w4{width:161.200000pt;}
.w10{width:164.906667pt;}
.wa{width:165.040000pt;}
.w11{width:170.400000pt;}
.wb{width:180.880000pt;}
.we{width:194.640000pt;}
.w5{width:198.346667pt;}
.w8{width:218.240000pt;}
.w7{width:218.266667pt;}
.wd{width:223.466667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:60.480000pt;}
.x12{left:98.879988pt;}
.x8{left:114.320000pt;}
.xd{left:129.360000pt;}
.x4{left:148.026667pt;}
.xb{left:161.626667pt;}
.x2{left:187.626655pt;}
.x9{left:242.506667pt;}
.xe{left:245.866667pt;}
.x6{left:285.706667pt;}
.x10{left:297.146667pt;}
.x7{left:447.626667pt;}
.xc{left:451.493333pt;}
.xa{left:461.413333pt;}
.x11{left:462.693333pt;}
.xf{left:469.973333pt;}
.x3{left:718.773322pt;}
}




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