
    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_43bd44d37291f7920d33bed2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_8ed1a742b3a98487ad7e9f3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_b02a4ada2eace2af22a2eb40.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_3e5e7f1c9c720996a5a7e295.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_1fc3a9dc378bdba5826f3ce4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e09d584a6b8bed5a57d8733c.woff2')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f1dbffcf1b177f47138d7d4a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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);}
.v4{vertical-align:-65.520000px;}
.v5{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls17{letter-spacing:-0.936000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls16{letter-spacing:-0.702000px;}
.lse{letter-spacing:-0.594000px;}
.lsc{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.220800px;}
.lsd{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.126000px;}
.ls9{letter-spacing:-0.027360px;}
.ls7{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018000px;}
.ls3{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls18{letter-spacing:1.620000px;}
.ls1b{letter-spacing:2.988000px;}
.ls15{letter-spacing:12.420000px;}
.ls1a{letter-spacing:30.348000px;}
.ls4{letter-spacing:52.560000px;}
.ls6{letter-spacing:55.620000px;}
.ls10{letter-spacing:68.508000px;}
.ls0{letter-spacing:154.980000px;}
.ls14{letter-spacing:570.540000px;}
.ls11{letter-spacing:1295.760000px;}
.ls5{letter-spacing:1367.040000px;}
.ls19{letter-spacing:1410.960000px;}
.ls13{letter-spacing:1593.960000px;}
.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;}
}
.wsd{word-spacing:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws5{word-spacing:-13.860000px;}
.wse{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.374000px;}
.ws10{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.wsf{word-spacing:-12.798000px;}
.ws11{word-spacing:-12.672000px;}
.ws7{word-spacing:-10.440000px;}
.ws8{word-spacing:-9.000000px;}
.wsc{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.078560px;}
._a{width:2.123760px;}
._5{width:3.186000px;}
._6{width:4.648080px;}
._7{width:6.068400px;}
._b{width:7.769040px;}
._e{width:9.162000px;}
._9{width:10.890000px;}
._8{width:11.934000px;}
._d{width:15.246000px;}
._3{width:31.752000px;}
._4{width:32.808000px;}
._f{width:774.550320px;}
._c{width:1041.420000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.240000px;}
.fs9{font-size:36.000000px;}
.fsc{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsb{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:2.880000px;}
.yb7{bottom:3.240000px;}
.ybb{bottom:3.420000px;}
.yc5{bottom:18.720000px;}
.ybd{bottom:18.750000px;}
.yc7{bottom:18.900000px;}
.y2{bottom:57.960000px;}
.y1{bottom:76.860000px;}
.y3d{bottom:95.940000px;}
.y3a{bottom:101.700000px;}
.y39{bottom:117.180000px;}
.y101{bottom:126.180000px;}
.y7f{bottom:126.900000px;}
.yd5{bottom:127.980000px;}
.y38{bottom:132.840000px;}
.y100{bottom:141.876000px;}
.y7e{bottom:142.416000px;}
.yd4{bottom:143.496000px;}
.y37{bottom:148.356000px;}
.yff{bottom:157.350000px;}
.y7d{bottom:157.890000px;}
.yd3{bottom:159.150000px;}
.y36{bottom:163.830000px;}
.yfe{bottom:173.010000px;}
.y7c{bottom:173.550000px;}
.yd2{bottom:174.270000px;}
.y35{bottom:179.490000px;}
.yfd{bottom:188.490000px;}
.y7b{bottom:189.030000px;}
.yd1{bottom:189.930000px;}
.y34{bottom:194.790000px;}
.yfc{bottom:203.970000px;}
.y7a{bottom:204.690000px;}
.yd0{bottom:205.950000px;}
.yfb{bottom:219.630000px;}
.y79{bottom:220.170000px;}
.ycf{bottom:221.430000px;}
.y33{bottom:225.930000px;}
.yce{bottom:234.390000px;}
.yfa{bottom:235.110000px;}
.y78{bottom:235.650000px;}
.yf9{bottom:250.590000px;}
.y77{bottom:251.310000px;}
.y32{bottom:256.890000px;}
.ycd{bottom:257.790000px;}
.ya7{bottom:259.770000px;}
.yf8{bottom:266.250000px;}
.y76{bottom:266.430000px;}
.y31{bottom:275.070000px;}
.ya6{bottom:275.610000px;}
.yf7{bottom:281.730000px;}
.y75{bottom:282.090000px;}
.ya5{bottom:288.030000px;}
.ycc{bottom:289.470000px;}
.yf6{bottom:297.390000px;}
.y74{bottom:297.750000px;}
.y30{bottom:304.230000px;}
.yf5{bottom:312.870000px;}
.y73{bottom:313.590000px;}
.ycb{bottom:321.330000px;}
.y2f{bottom:322.410000px;}
.yf4{bottom:328.350000px;}
.y72{bottom:329.070000px;}
.y2e{bottom:337.890000px;}
.yf3{bottom:343.830000px;}
.y71{bottom:344.550000px;}
.yca{bottom:353.190000px;}
.y2d{bottom:353.370000px;}
.yf2{bottom:359.490000px;}
.y70{bottom:360.210000px;}
.y2c{bottom:369.030000px;}
.yf1{bottom:374.970000px;}
.y6f{bottom:375.690000px;}
.yc9{bottom:376.410000px;}
.y2b{bottom:384.510000px;}
.yf0{bottom:390.675000px;}
.y6e{bottom:391.395000px;}
.yc8{bottom:399.675000px;}
.y2a{bottom:400.035000px;}
.yef{bottom:406.155000px;}
.y6d{bottom:406.875000px;}
.y29{bottom:415.515000px;}
.yee{bottom:421.635000px;}
.y6c{bottom:422.355000px;}
.yc6{bottom:422.895000px;}
.y28{bottom:430.995000px;}
.yed{bottom:437.295000px;}
.y6b{bottom:437.655000px;}
.y27{bottom:446.655000px;}
.yec{bottom:452.775000px;}
.y6a{bottom:453.315000px;}
.yc4{bottom:454.755000px;}
.y26{bottom:462.135000px;}
.yeb{bottom:468.435000px;}
.y69{bottom:468.795000px;}
.y25{bottom:477.615000px;}
.yea{bottom:483.915000px;}
.y68{bottom:484.815000px;}
.yc3{bottom:486.435000px;}
.y116{bottom:490.395000px;}
.y24{bottom:493.095000px;}
.ye9{bottom:499.215000px;}
.y67{bottom:500.295000px;}
.y115{bottom:505.875000px;}
.y23{bottom:508.755000px;}
.yc2{bottom:509.835000px;}
.ye8{bottom:514.875000px;}
.y66{bottom:515.775000px;}
.y114{bottom:521.355000px;}
.y22{bottom:524.235000px;}
.ye7{bottom:530.355000px;}
.y65{bottom:531.435000px;}
.yc1{bottom:533.055000px;}
.y113{bottom:536.835000px;}
.y21{bottom:539.715000px;}
.ye6{bottom:546.015000px;}
.y64{bottom:546.915000px;}
.ya4{bottom:552.135000px;}
.y112{bottom:552.495000px;}
.y20{bottom:555.195000px;}
.yc0{bottom:556.275000px;}
.y63{bottom:562.575000px;}
.ya3{bottom:567.795000px;}
.y111{bottom:567.975000px;}
.y1f{bottom:570.855000px;}
.ye5{bottom:577.515000px;}
.y62{bottom:578.055000px;}
.ybf{bottom:582.735000px;}
.ya2{bottom:583.275000px;}
.y110{bottom:583.455000px;}
.y1e{bottom:586.335000px;}
.ye4{bottom:593.175000px;}
.y61{bottom:593.535000px;}
.ya1{bottom:598.935000px;}
.y1d{bottom:601.815000px;}
.ye3{bottom:605.595000px;}
.y60{bottom:609.015000px;}
.ybe{bottom:614.055000px;}
.ya0{bottom:614.415000px;}
.y1c{bottom:617.295000px;}
.y5f{bottom:624.675000px;}
.ybc{bottom:627.015000px;}
.y9f{bottom:629.895000px;}
.y10f{bottom:630.075000px;}
.y1b{bottom:632.955000px;}
.y5e{bottom:640.185000px;}
.y9e{bottom:645.585000px;}
.y1a{bottom:648.645000px;}
.y5d{bottom:655.845000px;}
.yba{bottom:658.725000px;}
.y9d{bottom:661.065000px;}
.y19{bottom:670.785000px;}
.y5c{bottom:671.325000px;}
.y9c{bottom:676.545000px;}
.y10e{bottom:676.725000px;}
.yb9{bottom:682.125000px;}
.y5b{bottom:686.805000px;}
.y9b{bottom:692.025000px;}
.y10d{bottom:692.205000px;}
.y18{bottom:701.385000px;}
.y5a{bottom:702.465000px;}
.yb8{bottom:705.345000px;}
.y10c{bottom:707.505000px;}
.y9a{bottom:707.685000px;}
.y17{bottom:717.045000px;}
.y59{bottom:717.945000px;}
.y10b{bottom:722.985000px;}
.y99{bottom:723.165000px;}
.yb6{bottom:728.565000px;}
.y16{bottom:732.525000px;}
.y58{bottom:733.605000px;}
.y10a{bottom:738.465000px;}
.y98{bottom:738.825000px;}
.y57{bottom:749.085000px;}
.yb4{bottom:751.785000px;}
.y97{bottom:754.305000px;}
.y56{bottom:764.745000px;}
.y15{bottom:767.085000px;}
.y96{bottom:769.965000px;}
.yb3{bottom:778.425000px;}
.y55{bottom:780.225000px;}
.y95{bottom:785.445000px;}
.y109{bottom:785.625000px;}
.y14{bottom:787.245000px;}
.y54{bottom:795.705000px;}
.y94{bottom:800.925000px;}
.y108{bottom:801.105000px;}
.yb2{bottom:809.565000px;}
.y53{bottom:811.365000px;}
.y93{bottom:816.585000px;}
.y13{bottom:819.645000px;}
.yb1{bottom:825.045000px;}
.y52{bottom:826.485000px;}
.y92{bottom:832.065000px;}
.yb0{bottom:840.705000px;}
.y12{bottom:841.965000px;}
.y51{bottom:842.145000px;}
.y91{bottom:847.725000px;}
.y11{bottom:850.605000px;}
.yaf{bottom:856.185000px;}
.y50{bottom:857.805000px;}
.y107{bottom:863.205000px;}
.y90{bottom:863.385000px;}
.yae{bottom:871.665000px;}
.y10{bottom:875.985000px;}
.y106{bottom:878.685000px;}
.y8f{bottom:878.865000px;}
.yad{bottom:887.145000px;}
.y4f{bottom:889.305000px;}
.ye2{bottom:894.210000px;}
.y8e{bottom:894.390000px;}
.yf{bottom:895.110000px;}
.yac{bottom:902.850000px;}
.y4e{bottom:904.830000px;}
.y105{bottom:909.510000px;}
.y8d{bottom:910.050000px;}
.ye1{bottom:910.230000px;}
.yab{bottom:918.330000px;}
.y4d{bottom:921.390000px;}
.y8c{bottom:925.530000px;}
.ye0{bottom:925.710000px;}
.yaa{bottom:933.630000px;}
.ye{bottom:934.170000px;}
.y4c{bottom:937.950000px;}
.y8b{bottom:941.190000px;}
.ydf{bottom:941.370000px;}
.ya9{bottom:949.650000px;}
.y4b{bottom:954.510000px;}
.y8a{bottom:956.670000px;}
.yde{bottom:956.850000px;}
.yd{bottom:958.290000px;}
.ya8{bottom:962.070000px;}
.y4a{bottom:969.990000px;}
.y104{bottom:972.150000px;}
.y89{bottom:972.330000px;}
.y49{bottom:986.730000px;}
.y103{bottom:987.630000px;}
.y88{bottom:987.810000px;}
.ydd{bottom:987.990000px;}
.yc{bottom:1000.590000px;}
.y48{bottom:1002.210000px;}
.y87{bottom:1003.290000px;}
.ydc{bottom:1003.470000px;}
.y47{bottom:1017.690000px;}
.y86{bottom:1018.770000px;}
.ydb{bottom:1018.950000px;}
.y9{bottom:1034.070000px;}
.y46{bottom:1034.430000px;}
.yda{bottom:1034.610000px;}
.yb{bottom:1039.290000px;}
.y45{bottom:1049.910000px;}
.yd9{bottom:1050.090000px;}
.y8{bottom:1057.290000px;}
.y44{bottom:1065.210000px;}
.y85{bottom:1065.390000px;}
.yd8{bottom:1065.570000px;}
.ya{bottom:1071.330000px;}
.y43{bottom:1080.870000px;}
.y84{bottom:1081.050000px;}
.yd7{bottom:1081.230000px;}
.y7{bottom:1086.630000px;}
.y83{bottom:1096.530000px;}
.y42{bottom:1096.710000px;}
.y6{bottom:1105.710000px;}
.y41{bottom:1112.190000px;}
.y5{bottom:1122.990000px;}
.y82{bottom:1127.310000px;}
.y102{bottom:1127.670000px;}
.y40{bottom:1127.850000px;}
.y4{bottom:1140.270000px;}
.y81{bottom:1142.970000px;}
.y3f{bottom:1143.330000px;}
.y3{bottom:1158.300000px;}
.y80{bottom:1158.660000px;}
.y3e{bottom:1158.840000px;}
.yd6{bottom:1159.020000px;}
.y3c{bottom:1175.220000px;}
.y3b{bottom:1193.760000px;}
.hb{height:12.335625px;}
.h14{height:22.500000px;}
.h18{height:22.536000px;}
.h16{height:30.960000px;}
.h15{height:30.996000px;}
.h17{height:31.140000px;}
.hc{height:35.314453px;}
.h10{height:38.158594px;}
.h11{height:47.344922px;}
.h7{height:48.616875px;}
.hd{height:52.971680px;}
.h12{height:52.998047px;}
.he{height:54.421875px;}
.h13{height:55.503491px;}
.h8{height:55.796836px;}
.h9{height:58.621992px;}
.h4{height:60.226875px;}
.hf{height:62.153438px;}
.h2{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:72.562500px;}
.h6{height:81.995625px;}
.ha{height:84.898125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:151.230000px;}
.w5{width:176.250000px;}
.w4{width:253.335000px;}
.w6{width:290.775000px;}
.w7{width:467.385000px;}
.w1{width:894.000000px;}
.w2{width:894.059987px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x26{left:7.740000px;}
.x1e{left:17.460000px;}
.x1d{left:20.925000px;}
.x1f{left:26.145000px;}
.x2{left:30.059987px;}
.x1b{left:35.505000px;}
.x21{left:37.485000px;}
.x22{left:43.065000px;}
.xd{left:46.799987px;}
.x23{left:48.450000px;}
.x8{left:50.939987px;}
.x20{left:52.410000px;}
.x19{left:54.045000px;}
.x17{left:57.285000px;}
.x1c{left:61.770000px;}
.xa{left:67.499987px;}
.x2f{left:74.339987px;}
.x10{left:78.299987px;}
.x11{left:105.335987px;}
.x1a{left:112.170000px;}
.x29{left:117.045000px;}
.x28{left:147.645000px;}
.x25{left:219.450000px;}
.x5{left:244.109987px;}
.x16{left:250.590000px;}
.x13{left:252.209987px;}
.x15{left:256.394987px;}
.x3{left:270.254987px;}
.x4{left:290.594987px;}
.x9{left:291.674987px;}
.xb{left:345.494987px;}
.x2b{left:366.014987px;}
.x27{left:396.075000px;}
.x18{left:402.195000px;}
.x2c{left:407.774987px;}
.xe{left:412.454987px;}
.x2d{left:430.844987px;}
.x24{left:438.944987px;}
.x1{left:440.744987px;}
.xc{left:449.204987px;}
.xf{left:453.164987px;}
.x2e{left:476.204987px;}
.x6{left:478.904987px;}
.x7{left:506.444987px;}
.x12{left:674.249987px;}
.x2a{left:693.689987px;}
.x14{left:704.849987px;}
@media print{
.v4{vertical-align:-58.240000pt;}
.v5{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls17{letter-spacing:-0.832000pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls16{letter-spacing:-0.624000pt;}
.lse{letter-spacing:-0.528000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.196267pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.112000pt;}
.ls9{letter-spacing:-0.024320pt;}
.ls7{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls18{letter-spacing:1.440000pt;}
.ls1b{letter-spacing:2.656000pt;}
.ls15{letter-spacing:11.040000pt;}
.ls1a{letter-spacing:26.976000pt;}
.ls4{letter-spacing:46.720000pt;}
.ls6{letter-spacing:49.440000pt;}
.ls10{letter-spacing:60.896000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls14{letter-spacing:507.146667pt;}
.ls11{letter-spacing:1151.786667pt;}
.ls5{letter-spacing:1215.146667pt;}
.ls19{letter-spacing:1254.186667pt;}
.ls13{letter-spacing:1416.853333pt;}
.wsd{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws5{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.888000pt;}
.ws10{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.wsf{word-spacing:-11.376000pt;}
.ws11{word-spacing:-11.264000pt;}
.ws7{word-spacing:-9.280000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsc{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:0.958720pt;}
._a{width:1.887787pt;}
._5{width:2.832000pt;}
._6{width:4.131627pt;}
._7{width:5.394133pt;}
._b{width:6.905813pt;}
._e{width:8.144000pt;}
._9{width:9.680000pt;}
._8{width:10.608000pt;}
._d{width:13.552000pt;}
._3{width:28.224000pt;}
._4{width:29.162667pt;}
._f{width:688.489173pt;}
._c{width:925.706667pt;}
.fs8{font-size:10.880000pt;}
.fs9{font-size:32.000000pt;}
.fsc{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsb{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:2.560000pt;}
.yb7{bottom:2.880000pt;}
.ybb{bottom:3.040000pt;}
.yc5{bottom:16.640000pt;}
.ybd{bottom:16.666667pt;}
.yc7{bottom:16.800000pt;}
.y2{bottom:51.520000pt;}
.y1{bottom:68.320000pt;}
.y3d{bottom:85.280000pt;}
.y3a{bottom:90.400000pt;}
.y39{bottom:104.160000pt;}
.y101{bottom:112.160000pt;}
.y7f{bottom:112.800000pt;}
.yd5{bottom:113.760000pt;}
.y38{bottom:118.080000pt;}
.y100{bottom:126.112000pt;}
.y7e{bottom:126.592000pt;}
.yd4{bottom:127.552000pt;}
.y37{bottom:131.872000pt;}
.yff{bottom:139.866667pt;}
.y7d{bottom:140.346667pt;}
.yd3{bottom:141.466667pt;}
.y36{bottom:145.626667pt;}
.yfe{bottom:153.786667pt;}
.y7c{bottom:154.266667pt;}
.yd2{bottom:154.906667pt;}
.y35{bottom:159.546667pt;}
.yfd{bottom:167.546667pt;}
.y7b{bottom:168.026667pt;}
.yd1{bottom:168.826667pt;}
.y34{bottom:173.146667pt;}
.yfc{bottom:181.306667pt;}
.y7a{bottom:181.946667pt;}
.yd0{bottom:183.066667pt;}
.yfb{bottom:195.226667pt;}
.y79{bottom:195.706667pt;}
.ycf{bottom:196.826667pt;}
.y33{bottom:200.826667pt;}
.yce{bottom:208.346667pt;}
.yfa{bottom:208.986667pt;}
.y78{bottom:209.466667pt;}
.yf9{bottom:222.746667pt;}
.y77{bottom:223.386667pt;}
.y32{bottom:228.346667pt;}
.ycd{bottom:229.146667pt;}
.ya7{bottom:230.906667pt;}
.yf8{bottom:236.666667pt;}
.y76{bottom:236.826667pt;}
.y31{bottom:244.506667pt;}
.ya6{bottom:244.986667pt;}
.yf7{bottom:250.426667pt;}
.y75{bottom:250.746667pt;}
.ya5{bottom:256.026667pt;}
.ycc{bottom:257.306667pt;}
.yf6{bottom:264.346667pt;}
.y74{bottom:264.666667pt;}
.y30{bottom:270.426667pt;}
.yf5{bottom:278.106667pt;}
.y73{bottom:278.746667pt;}
.ycb{bottom:285.626667pt;}
.y2f{bottom:286.586667pt;}
.yf4{bottom:291.866667pt;}
.y72{bottom:292.506667pt;}
.y2e{bottom:300.346667pt;}
.yf3{bottom:305.626667pt;}
.y71{bottom:306.266667pt;}
.yca{bottom:313.946667pt;}
.y2d{bottom:314.106667pt;}
.yf2{bottom:319.546667pt;}
.y70{bottom:320.186667pt;}
.y2c{bottom:328.026667pt;}
.yf1{bottom:333.306667pt;}
.y6f{bottom:333.946667pt;}
.yc9{bottom:334.586667pt;}
.y2b{bottom:341.786667pt;}
.yf0{bottom:347.266667pt;}
.y6e{bottom:347.906667pt;}
.yc8{bottom:355.266667pt;}
.y2a{bottom:355.586667pt;}
.yef{bottom:361.026667pt;}
.y6d{bottom:361.666667pt;}
.y29{bottom:369.346667pt;}
.yee{bottom:374.786667pt;}
.y6c{bottom:375.426667pt;}
.yc6{bottom:375.906667pt;}
.y28{bottom:383.106667pt;}
.yed{bottom:388.706667pt;}
.y6b{bottom:389.026667pt;}
.y27{bottom:397.026667pt;}
.yec{bottom:402.466667pt;}
.y6a{bottom:402.946667pt;}
.yc4{bottom:404.226667pt;}
.y26{bottom:410.786667pt;}
.yeb{bottom:416.386667pt;}
.y69{bottom:416.706667pt;}
.y25{bottom:424.546667pt;}
.yea{bottom:430.146667pt;}
.y68{bottom:430.946667pt;}
.yc3{bottom:432.386667pt;}
.y116{bottom:435.906667pt;}
.y24{bottom:438.306667pt;}
.ye9{bottom:443.746667pt;}
.y67{bottom:444.706667pt;}
.y115{bottom:449.666667pt;}
.y23{bottom:452.226667pt;}
.yc2{bottom:453.186667pt;}
.ye8{bottom:457.666667pt;}
.y66{bottom:458.466667pt;}
.y114{bottom:463.426667pt;}
.y22{bottom:465.986667pt;}
.ye7{bottom:471.426667pt;}
.y65{bottom:472.386667pt;}
.yc1{bottom:473.826667pt;}
.y113{bottom:477.186667pt;}
.y21{bottom:479.746667pt;}
.ye6{bottom:485.346667pt;}
.y64{bottom:486.146667pt;}
.ya4{bottom:490.786667pt;}
.y112{bottom:491.106667pt;}
.y20{bottom:493.506667pt;}
.yc0{bottom:494.466667pt;}
.y63{bottom:500.066667pt;}
.ya3{bottom:504.706667pt;}
.y111{bottom:504.866667pt;}
.y1f{bottom:507.426667pt;}
.ye5{bottom:513.346667pt;}
.y62{bottom:513.826667pt;}
.ybf{bottom:517.986667pt;}
.ya2{bottom:518.466667pt;}
.y110{bottom:518.626667pt;}
.y1e{bottom:521.186667pt;}
.ye4{bottom:527.266667pt;}
.y61{bottom:527.586667pt;}
.ya1{bottom:532.386667pt;}
.y1d{bottom:534.946667pt;}
.ye3{bottom:538.306667pt;}
.y60{bottom:541.346667pt;}
.ybe{bottom:545.826667pt;}
.ya0{bottom:546.146667pt;}
.y1c{bottom:548.706667pt;}
.y5f{bottom:555.266667pt;}
.ybc{bottom:557.346667pt;}
.y9f{bottom:559.906667pt;}
.y10f{bottom:560.066667pt;}
.y1b{bottom:562.626667pt;}
.y5e{bottom:569.053333pt;}
.y9e{bottom:573.853333pt;}
.y1a{bottom:576.573333pt;}
.y5d{bottom:582.973333pt;}
.yba{bottom:585.533333pt;}
.y9d{bottom:587.613333pt;}
.y19{bottom:596.253333pt;}
.y5c{bottom:596.733333pt;}
.y9c{bottom:601.373333pt;}
.y10e{bottom:601.533333pt;}
.yb9{bottom:606.333333pt;}
.y5b{bottom:610.493333pt;}
.y9b{bottom:615.133333pt;}
.y10d{bottom:615.293333pt;}
.y18{bottom:623.453333pt;}
.y5a{bottom:624.413333pt;}
.yb8{bottom:626.973333pt;}
.y10c{bottom:628.893333pt;}
.y9a{bottom:629.053333pt;}
.y17{bottom:637.373333pt;}
.y59{bottom:638.173333pt;}
.y10b{bottom:642.653333pt;}
.y99{bottom:642.813333pt;}
.yb6{bottom:647.613333pt;}
.y16{bottom:651.133333pt;}
.y58{bottom:652.093333pt;}
.y10a{bottom:656.413333pt;}
.y98{bottom:656.733333pt;}
.y57{bottom:665.853333pt;}
.yb4{bottom:668.253333pt;}
.y97{bottom:670.493333pt;}
.y56{bottom:679.773333pt;}
.y15{bottom:681.853333pt;}
.y96{bottom:684.413333pt;}
.yb3{bottom:691.933333pt;}
.y55{bottom:693.533333pt;}
.y95{bottom:698.173333pt;}
.y109{bottom:698.333333pt;}
.y14{bottom:699.773333pt;}
.y54{bottom:707.293333pt;}
.y94{bottom:711.933333pt;}
.y108{bottom:712.093333pt;}
.yb2{bottom:719.613333pt;}
.y53{bottom:721.213333pt;}
.y93{bottom:725.853333pt;}
.y13{bottom:728.573333pt;}
.yb1{bottom:733.373333pt;}
.y52{bottom:734.653333pt;}
.y92{bottom:739.613333pt;}
.yb0{bottom:747.293333pt;}
.y12{bottom:748.413333pt;}
.y51{bottom:748.573333pt;}
.y91{bottom:753.533333pt;}
.y11{bottom:756.093333pt;}
.yaf{bottom:761.053333pt;}
.y50{bottom:762.493333pt;}
.y107{bottom:767.293333pt;}
.y90{bottom:767.453333pt;}
.yae{bottom:774.813333pt;}
.y10{bottom:778.653333pt;}
.y106{bottom:781.053333pt;}
.y8f{bottom:781.213333pt;}
.yad{bottom:788.573333pt;}
.y4f{bottom:790.493333pt;}
.ye2{bottom:794.853333pt;}
.y8e{bottom:795.013333pt;}
.yf{bottom:795.653333pt;}
.yac{bottom:802.533333pt;}
.y4e{bottom:804.293333pt;}
.y105{bottom:808.453333pt;}
.y8d{bottom:808.933333pt;}
.ye1{bottom:809.093333pt;}
.yab{bottom:816.293333pt;}
.y4d{bottom:819.013333pt;}
.y8c{bottom:822.693333pt;}
.ye0{bottom:822.853333pt;}
.yaa{bottom:829.893333pt;}
.ye{bottom:830.373333pt;}
.y4c{bottom:833.733333pt;}
.y8b{bottom:836.613333pt;}
.ydf{bottom:836.773333pt;}
.ya9{bottom:844.133333pt;}
.y4b{bottom:848.453333pt;}
.y8a{bottom:850.373333pt;}
.yde{bottom:850.533333pt;}
.yd{bottom:851.813333pt;}
.ya8{bottom:855.173333pt;}
.y4a{bottom:862.213333pt;}
.y104{bottom:864.133333pt;}
.y89{bottom:864.293333pt;}
.y49{bottom:877.093333pt;}
.y103{bottom:877.893333pt;}
.y88{bottom:878.053333pt;}
.ydd{bottom:878.213333pt;}
.yc{bottom:889.413333pt;}
.y48{bottom:890.853333pt;}
.y87{bottom:891.813333pt;}
.ydc{bottom:891.973333pt;}
.y47{bottom:904.613333pt;}
.y86{bottom:905.573333pt;}
.ydb{bottom:905.733333pt;}
.y9{bottom:919.173333pt;}
.y46{bottom:919.493333pt;}
.yda{bottom:919.653333pt;}
.yb{bottom:923.813333pt;}
.y45{bottom:933.253333pt;}
.yd9{bottom:933.413333pt;}
.y8{bottom:939.813333pt;}
.y44{bottom:946.853333pt;}
.y85{bottom:947.013333pt;}
.yd8{bottom:947.173333pt;}
.ya{bottom:952.293333pt;}
.y43{bottom:960.773333pt;}
.y84{bottom:960.933333pt;}
.yd7{bottom:961.093333pt;}
.y7{bottom:965.893333pt;}
.y83{bottom:974.693333pt;}
.y42{bottom:974.853333pt;}
.y6{bottom:982.853333pt;}
.y41{bottom:988.613333pt;}
.y5{bottom:998.213333pt;}
.y82{bottom:1002.053333pt;}
.y102{bottom:1002.373333pt;}
.y40{bottom:1002.533333pt;}
.y4{bottom:1013.573333pt;}
.y81{bottom:1015.973333pt;}
.y3f{bottom:1016.293333pt;}
.y3{bottom:1029.600000pt;}
.y80{bottom:1029.920000pt;}
.y3e{bottom:1030.080000pt;}
.yd6{bottom:1030.240000pt;}
.y3c{bottom:1044.640000pt;}
.y3b{bottom:1061.120000pt;}
.hb{height:10.965000pt;}
.h14{height:20.000000pt;}
.h18{height:20.032000pt;}
.h16{height:27.520000pt;}
.h15{height:27.552000pt;}
.h17{height:27.680000pt;}
.hc{height:31.390625pt;}
.h10{height:33.918750pt;}
.h11{height:42.084375pt;}
.h7{height:43.215000pt;}
.hd{height:47.085938pt;}
.h12{height:47.109375pt;}
.he{height:48.375000pt;}
.h13{height:49.336436pt;}
.h8{height:49.597187pt;}
.h9{height:52.108438pt;}
.h4{height:53.535000pt;}
.hf{height:55.247500pt;}
.h2{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:64.500000pt;}
.h6{height:72.885000pt;}
.ha{height:75.465000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:134.426667pt;}
.w5{width:156.666667pt;}
.w4{width:225.186667pt;}
.w6{width:258.466667pt;}
.w7{width:415.453333pt;}
.w1{width:794.666667pt;}
.w2{width:794.719988pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x26{left:6.880000pt;}
.x1e{left:15.520000pt;}
.x1d{left:18.600000pt;}
.x1f{left:23.240000pt;}
.x2{left:26.719988pt;}
.x1b{left:31.560000pt;}
.x21{left:33.320000pt;}
.x22{left:38.280000pt;}
.xd{left:41.599988pt;}
.x23{left:43.066667pt;}
.x8{left:45.279988pt;}
.x20{left:46.586667pt;}
.x19{left:48.040000pt;}
.x17{left:50.920000pt;}
.x1c{left:54.906667pt;}
.xa{left:59.999988pt;}
.x2f{left:66.079988pt;}
.x10{left:69.599988pt;}
.x11{left:93.631988pt;}
.x1a{left:99.706667pt;}
.x29{left:104.040000pt;}
.x28{left:131.240000pt;}
.x25{left:195.066667pt;}
.x5{left:216.986655pt;}
.x16{left:222.746667pt;}
.x13{left:224.186655pt;}
.x15{left:227.906655pt;}
.x3{left:240.226655pt;}
.x4{left:258.306655pt;}
.x9{left:259.266655pt;}
.xb{left:307.106655pt;}
.x2b{left:325.346655pt;}
.x27{left:352.066667pt;}
.x18{left:357.506667pt;}
.x2c{left:362.466655pt;}
.xe{left:366.626655pt;}
.x2d{left:382.973321pt;}
.x24{left:390.173321pt;}
.x1{left:391.773321pt;}
.xc{left:399.293321pt;}
.xf{left:402.813321pt;}
.x2e{left:423.293321pt;}
.x6{left:425.693321pt;}
.x7{left:450.173321pt;}
.x12{left:599.333321pt;}
.x2a{left:616.613321pt;}
.x14{left:626.533321pt;}
}




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