
    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_95e61619f018c9ffbe50fced.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_7c10d1ff107b8d6145b9c816.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_34d8ed8f0afcd732c6822231.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_f1d6f3d1bde51e9128af6a69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_e64e8d116588559c25beccfa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_bfabeefcba60ed160d333019.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.976562;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_7c2bc6fc0f66e82432c52908.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_8eff14cb274572fa54886aff.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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:ffb;src:url('chunks/assets/font_54390cbc81758c13bc0750ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.003906;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);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.942000px;}
.ls4{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.486600px;}
.ls14{letter-spacing:-0.466800px;}
.ls9{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.015600px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.015840px;}
.ls0{letter-spacing:0.020160px;}
.lse{letter-spacing:0.466800px;}
.ls7{letter-spacing:0.498000px;}
.lsc{letter-spacing:0.665280px;}
.ls1{letter-spacing:0.720000px;}
.ls12{letter-spacing:1.080000px;}
.lsb{letter-spacing:1.692000px;}
.ls13{letter-spacing:1.944000px;}
.lsd{letter-spacing:29.266560px;}
.ls11{letter-spacing:35.749440px;}
.ls10{letter-spacing:59.345280px;}
.lsf{letter-spacing:63.826560px;}
.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;}
}
.ws11{word-spacing:-66.240000px;}
.ws10{word-spacing:-60.480000px;}
.ws2{word-spacing:-36.000000px;}
.ws1{word-spacing:-35.856000px;}
.ws6{word-spacing:-29.880000px;}
.wsf{word-spacing:-15.586800px;}
.ws5{word-spacing:-15.120000px;}
.wse{word-spacing:-14.653200px;}
.wsa{word-spacing:-14.633400px;}
.ws3{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.572000px;}
.ws12{word-spacing:-12.600000px;}
.wsd{word-spacing:-12.545280px;}
.ws0{word-spacing:-11.880000px;}
.ws7{word-spacing:-11.864400px;}
.ws9{word-spacing:-11.160000px;}
.wsc{word-spacing:0.000000px;}
.ws4{word-spacing:19.693080px;}
.wsb{word-spacing:29.772840px;}
._26{margin-left:-8.428765px;}
._3{margin-left:-6.953522px;}
._27{margin-left:-5.882003px;}
._6{margin-left:-4.855702px;}
._2{margin-left:-3.568199px;}
._9{margin-left:-2.464479px;}
._0{margin-left:-1.451399px;}
._1{width:1.148999px;}
._5{width:2.607364px;}
._13{width:3.628800px;}
._d{width:4.891082px;}
._10{width:6.082753px;}
._f{width:7.415387px;}
._e{width:8.848258px;}
._b{width:10.264285px;}
._c{width:11.490981px;}
._a{width:12.504675px;}
._23{width:13.622927px;}
._18{width:15.823581px;}
._8{width:17.320254px;}
._7{width:19.071075px;}
._14{width:20.200199px;}
._25{width:21.243439px;}
._11{width:22.362278px;}
._12{width:24.358481px;}
._17{width:26.051679px;}
._1f{width:27.162474px;}
._15{width:28.788601px;}
._16{width:30.375233px;}
._20{width:31.570197px;}
._22{width:32.779797px;}
._21{width:33.974680px;}
._1a{width:35.164848px;}
._19{width:36.336142px;}
._24{width:38.948999px;}
._1e{width:42.154802px;}
._1d{width:43.227878px;}
._2a{width:76.158478px;}
._29{width:77.618880px;}
._1b{width:86.459883px;}
._1c{width:99.761056px;}
._28{width:101.931719px;}
._2b{width:244.775520px;}
._4{width:569.904000px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(51,51,255);}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:119.520000px;}
.fs2{font-size:144.000000px;}
.y7b{bottom:-21.276150px;}
.y79{bottom:-11.160000px;}
.y7a{bottom:-7.560000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.880000px;}
.yb{bottom:6.120000px;}
.y6{bottom:16.560000px;}
.y8{bottom:16.956000px;}
.y4{bottom:18.396000px;}
.y3{bottom:19.116000px;}
.ya{bottom:19.800000px;}
.y5{bottom:30.240000px;}
.y9{bottom:33.120000px;}
.y76{bottom:85.356000px;}
.yce{bottom:86.436000px;}
.yb3{bottom:96.516000px;}
.y75{bottom:103.716000px;}
.ycd{bottom:104.436000px;}
.yf0{bottom:106.596000px;}
.yb2{bottom:114.516000px;}
.y42{bottom:115.596000px;}
.y74{bottom:121.716000px;}
.ycc{bottom:122.436000px;}
.yef{bottom:124.956000px;}
.y41{bottom:129.276000px;}
.yb1{bottom:132.552000px;}
.y73{bottom:139.752000px;}
.ycb{bottom:140.472000px;}
.yee{bottom:142.992000px;}
.y40{bottom:143.352000px;}
.yb0{bottom:150.555000px;}
.y72{bottom:157.755000px;}
.yca{bottom:158.835000px;}
.yed{bottom:160.995000px;}
.yaf{bottom:168.915000px;}
.y3f{bottom:170.715000px;}
.yc9{bottom:176.835000px;}
.yec{bottom:179.355000px;}
.y71{bottom:184.035000px;}
.y3e{bottom:184.755000px;}
.yae{bottom:186.915000px;}
.yc8{bottom:194.835000px;}
.yeb{bottom:197.355000px;}
.y3d{bottom:199.155000px;}
.yad{bottom:204.915000px;}
.yc7{bottom:213.195000px;}
.yea{bottom:215.355000px;}
.y3c{bottom:215.715000px;}
.y70{bottom:219.315000px;}
.yac{bottom:223.275000px;}
.y3b{bottom:229.755000px;}
.yc6{bottom:231.195000px;}
.y6f{bottom:236.595000px;}
.yab{bottom:241.275000px;}
.ye9{bottom:241.635000px;}
.y3a{bottom:245.235000px;}
.yc5{bottom:249.195000px;}
.y6e{bottom:253.875000px;}
.yaa{bottom:259.275000px;}
.y39{bottom:260.715000px;}
.yc4{bottom:267.585000px;}
.y6d{bottom:271.185000px;}
.y38{bottom:276.585000px;}
.ya9{bottom:277.665000px;}
.yc3{bottom:285.585000px;}
.y6c{bottom:288.465000px;}
.y37{bottom:292.065000px;}
.ya8{bottom:295.665000px;}
.yc2{bottom:303.585000px;}
.y6b{bottom:305.745000px;}
.ya7{bottom:313.665000px;}
.y36{bottom:318.345000px;}
.yc1{bottom:321.945000px;}
.y6a{bottom:323.025000px;}
.ya6{bottom:332.025000px;}
.y35{bottom:335.625000px;}
.yc0{bottom:339.945000px;}
.y69{bottom:340.305000px;}
.ya5{bottom:350.025000px;}
.y34{bottom:352.545000px;}
.y68{bottom:357.585000px;}
.ybf{bottom:357.945000px;}
.ya4{bottom:368.025000px;}
.y33{bottom:369.825000px;}
.y67{bottom:374.865000px;}
.ybe{bottom:375.945000px;}
.y113{bottom:377.025000px;}
.ya3{bottom:386.025000px;}
.y32{bottom:387.105000px;}
.y66{bottom:391.785000px;}
.ybd{bottom:394.305000px;}
.y112{bottom:404.070000px;}
.y31{bottom:404.430000px;}
.y65{bottom:409.110000px;}
.ybc{bottom:412.350000px;}
.y111{bottom:420.630000px;}
.y30{bottom:421.710000px;}
.ya2{bottom:422.430000px;}
.y64{bottom:426.390000px;}
.ybb{bottom:430.350000px;}
.y110{bottom:435.030000px;}
.y2f{bottom:438.990000px;}
.ya1{bottom:440.430000px;}
.y63{bottom:443.670000px;}
.yba{bottom:448.710000px;}
.y10f{bottom:452.310000px;}
.y2e{bottom:456.270000px;}
.ya0{bottom:458.790000px;}
.y62{bottom:460.950000px;}
.yb9{bottom:466.710000px;}
.y10e{bottom:469.230000px;}
.y2d{bottom:473.550000px;}
.y9f{bottom:476.790000px;}
.y61{bottom:478.230000px;}
.yb8{bottom:484.710000px;}
.y10d{bottom:486.510000px;}
.y2c{bottom:490.830000px;}
.y9e{bottom:494.790000px;}
.y60{bottom:495.510000px;}
.yb7{bottom:503.070000px;}
.y10c{bottom:503.790000px;}
.y2b{bottom:508.110000px;}
.y5f{bottom:512.790000px;}
.y9d{bottom:513.150000px;}
.yb6{bottom:521.070000px;}
.y2a{bottom:525.390000px;}
.y5e{bottom:530.070000px;}
.y9c{bottom:531.150000px;}
.y10b{bottom:538.380000px;}
.yb5{bottom:539.100000px;}
.y29{bottom:542.340000px;}
.y5d{bottom:547.380000px;}
.ye8{bottom:549.180000px;}
.y10a{bottom:555.660000px;}
.y9b{bottom:557.460000px;}
.y28{bottom:559.620000px;}
.y5c{bottom:564.660000px;}
.ye7{bottom:567.540000px;}
.y109{bottom:569.700000px;}
.yb4{bottom:575.460000px;}
.y27{bottom:576.900000px;}
.y5b{bottom:581.940000px;}
.ye6{bottom:585.540000px;}
.y108{bottom:586.260000px;}
.y9a{bottom:593.460000px;}
.y26{bottom:594.180000px;}
.y5a{bottom:598.860000px;}
.y107{bottom:599.940000px;}
.ye5{bottom:603.540000px;}
.y25{bottom:611.460000px;}
.y106{bottom:613.620000px;}
.y59{bottom:616.140000px;}
.ye4{bottom:621.540000px;}
.y105{bottom:627.660000px;}
.y24{bottom:628.740000px;}
.y99{bottom:629.820000px;}
.y58{bottom:633.420000px;}
.ye3{bottom:639.900000px;}
.y104{bottom:641.340000px;}
.y23{bottom:646.020000px;}
.y98{bottom:647.820000px;}
.y57{bottom:650.700000px;}
.y103{bottom:655.020000px;}
.ye2{bottom:657.900000px;}
.y97{bottom:665.850000px;}
.y22{bottom:666.570000px;}
.y56{bottom:668.010000px;}
.y102{bottom:669.090000px;}
.ye1{bottom:675.930000px;}
.y96{bottom:684.210000px;}
.y55{bottom:685.290000px;}
.y101{bottom:692.130000px;}
.ye0{bottom:694.290000px;}
.y95{bottom:702.210000px;}
.y54{bottom:702.570000px;}
.y21{bottom:706.890000px;}
.ydf{bottom:712.290000px;}
.y53{bottom:719.850000px;}
.y94{bottom:720.210000px;}
.y100{bottom:726.690000px;}
.yde{bottom:730.290000px;}
.y52{bottom:737.130000px;}
.y93{bottom:738.570000px;}
.yff{bottom:740.010000px;}
.y20{bottom:742.170000px;}
.ydd{bottom:748.650000px;}
.yfe{bottom:753.330000px;}
.y51{bottom:754.410000px;}
.y92{bottom:756.570000px;}
.y1f{bottom:759.090000px;}
.ydc{bottom:766.650000px;}
.y50{bottom:771.690000px;}
.y91{bottom:774.570000px;}
.y1e{bottom:780.330000px;}
.yfd{bottom:781.050000px;}
.ydb{bottom:784.650000px;}
.y4f{bottom:788.610000px;}
.y90{bottom:792.930000px;}
.yfc{bottom:794.370000px;}
.y1d{bottom:795.810000px;}
.yda{bottom:803.055000px;}
.y4e{bottom:805.935000px;}
.yfb{bottom:807.735000px;}
.y8f{bottom:810.975000px;}
.y1c{bottom:818.175000px;}
.yd9{bottom:821.055000px;}
.y4d{bottom:823.215000px;}
.y8e{bottom:828.975000px;}
.yfa{bottom:834.375000px;}
.y1b{bottom:834.735000px;}
.yd8{bottom:839.055000px;}
.y4c{bottom:840.495000px;}
.y8d{bottom:846.975000px;}
.yf9{bottom:848.775000px;}
.y1a{bottom:850.935000px;}
.yd7{bottom:857.055000px;}
.y4b{bottom:857.775000px;}
.yf8{bottom:863.175000px;}
.y8c{bottom:865.335000px;}
.y19{bottom:867.135000px;}
.yd6{bottom:875.415000px;}
.yf7{bottom:876.495000px;}
.y8b{bottom:883.335000px;}
.y18{bottom:883.695000px;}
.y4a{bottom:884.055000px;}
.yf6{bottom:890.895000px;}
.yd5{bottom:893.415000px;}
.y17{bottom:899.895000px;}
.y8a{bottom:901.335000px;}
.yf5{bottom:905.655000px;}
.yd4{bottom:911.415000px;}
.y16{bottom:916.095000px;}
.yf4{bottom:918.975000px;}
.y89{bottom:919.695000px;}
.y49{bottom:920.055000px;}
.yd3{bottom:929.775000px;}
.y15{bottom:932.295000px;}
.y88{bottom:937.725000px;}
.y48{bottom:938.445000px;}
.yd2{bottom:947.805000px;}
.y14{bottom:948.885000px;}
.yf3{bottom:955.005000px;}
.y87{bottom:955.725000px;}
.y47{bottom:956.445000px;}
.y13{bottom:965.085000px;}
.yd1{bottom:965.805000px;}
.y86{bottom:974.085000px;}
.y46{bottom:974.445000px;}
.y12{bottom:981.285000px;}
.yd0{bottom:984.165000px;}
.yf2{bottom:991.365000px;}
.y85{bottom:992.085000px;}
.y45{bottom:992.445000px;}
.y11{bottom:997.845000px;}
.ycf{bottom:1002.165000px;}
.yf1{bottom:1009.005000px;}
.y84{bottom:1010.085000px;}
.y44{bottom:1010.805000px;}
.y10{bottom:1014.045000px;}
.y83{bottom:1028.445000px;}
.y43{bottom:1028.805000px;}
.yf{bottom:1030.245000px;}
.y82{bottom:1046.445000px;}
.ye{bottom:1064.445000px;}
.y81{bottom:1082.490000px;}
.y80{bottom:1100.850000px;}
.yd{bottom:1109.130000px;}
.y7f{bottom:1118.850000px;}
.y7e{bottom:1136.850000px;}
.yc{bottom:1153.770000px;}
.y7d{bottom:1155.210000px;}
.y7c{bottom:1173.210000px;}
.y78{bottom:1212.840000px;}
.y2{bottom:1217.520000px;}
.y77{bottom:1233.360000px;}
.y1{bottom:1234.800000px;}
.he{height:33.180469px;}
.hd{height:33.528516px;}
.h13{height:34.595859px;}
.h5{height:36.150469px;}
.hc{height:38.608594px;}
.h4{height:41.400000px;}
.h3{height:42.229688px;}
.h2{height:42.672656px;}
.hf{height:44.031094px;}
.h6{height:44.280000px;}
.h9{height:44.406562px;}
.h10{height:44.798906px;}
.h8{height:46.736719px;}
.h11{height:49.065469px;}
.ha{height:49.080938px;}
.h12{height:65.884219px;}
.hb{height:83.453906px;}
.h7{height:100.546875px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:194.145000px;}
.w3{width:249.945000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:10.800000px;}
.xb{left:69.156000px;}
.xd{left:70.236000px;}
.x6{left:72.036000px;}
.xc{left:81.036000px;}
.xf{left:82.836000px;}
.xa{left:83.916000px;}
.x19{left:97.235987px;}
.x1a{left:124.235987px;}
.x7{left:140.472000px;}
.x18{left:146.951987px;}
.x16{left:173.234987px;}
.xe{left:184.035000px;}
.x17{left:193.034987px;}
.x15{left:254.624987px;}
.x3{left:295.665000px;}
.x1{left:346.830000px;}
.x8{left:367.710000px;}
.x9{left:372.750000px;}
.x2{left:444.780000px;}
.x14{left:446.579987px;}
.x10{left:455.940000px;}
.x1d{left:458.099987px;}
.x4{left:464.220000px;}
.x12{left:469.980000px;}
.x22{left:471.419987px;}
.x1e{left:478.619987px;}
.x1c{left:484.409987px;}
.x13{left:505.290000px;}
.x1b{left:511.409987px;}
.x11{left:530.850000px;}
.x20{left:552.449987px;}
.x1f{left:562.889987px;}
.x21{left:817.889987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.837333pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.432533pt;}
.ls14{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.013867pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.014080pt;}
.ls0{letter-spacing:0.017920pt;}
.lse{letter-spacing:0.414933pt;}
.ls7{letter-spacing:0.442667pt;}
.lsc{letter-spacing:0.591360pt;}
.ls1{letter-spacing:0.640000pt;}
.ls12{letter-spacing:0.960000pt;}
.lsb{letter-spacing:1.504000pt;}
.ls13{letter-spacing:1.728000pt;}
.lsd{letter-spacing:26.014720pt;}
.ls11{letter-spacing:31.777280pt;}
.ls10{letter-spacing:52.751360pt;}
.lsf{letter-spacing:56.734720pt;}
.ws11{word-spacing:-58.880000pt;}
.ws10{word-spacing:-53.760000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws1{word-spacing:-31.872000pt;}
.ws6{word-spacing:-26.560000pt;}
.wsf{word-spacing:-13.854933pt;}
.ws5{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.025067pt;}
.wsa{word-spacing:-13.007467pt;}
.ws3{word-spacing:-12.160000pt;}
.ws8{word-spacing:-12.064000pt;}
.ws12{word-spacing:-11.200000pt;}
.wsd{word-spacing:-11.151360pt;}
.ws0{word-spacing:-10.560000pt;}
.ws7{word-spacing:-10.546133pt;}
.ws9{word-spacing:-9.920000pt;}
.wsc{word-spacing:0.000000pt;}
.ws4{word-spacing:17.504960pt;}
.wsb{word-spacing:26.464747pt;}
._26{margin-left:-7.492236pt;}
._3{margin-left:-6.180908pt;}
._27{margin-left:-5.228447pt;}
._6{margin-left:-4.316179pt;}
._2{margin-left:-3.171732pt;}
._9{margin-left:-2.190648pt;}
._0{margin-left:-1.290132pt;}
._1{width:1.021332pt;}
._5{width:2.317657pt;}
._13{width:3.225600pt;}
._d{width:4.347628pt;}
._10{width:5.406892pt;}
._f{width:6.591455pt;}
._e{width:7.865118pt;}
._b{width:9.123809pt;}
._c{width:10.214205pt;}
._a{width:11.115267pt;}
._23{width:12.109268pt;}
._18{width:14.065405pt;}
._8{width:15.395781pt;}
._7{width:16.952067pt;}
._14{width:17.955732pt;}
._25{width:18.883057pt;}
._11{width:19.877581pt;}
._12{width:21.651983pt;}
._17{width:23.157048pt;}
._1f{width:24.144422pt;}
._15{width:25.589868pt;}
._16{width:27.000207pt;}
._20{width:28.062397pt;}
._22{width:29.137597pt;}
._21{width:30.199716pt;}
._1a{width:31.257642pt;}
._19{width:32.298793pt;}
._24{width:34.621332pt;}
._1e{width:37.470935pt;}
._1d{width:38.424781pt;}
._2a{width:67.696425pt;}
._29{width:68.994560pt;}
._1b{width:76.853229pt;}
._1c{width:88.676494pt;}
._28{width:90.605972pt;}
._2b{width:217.578240pt;}
._4{width:506.581333pt;}
.fs1{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:106.240000pt;}
.fs2{font-size:128.000000pt;}
.y7b{bottom:-18.912133pt;}
.y79{bottom:-9.920000pt;}
.y7a{bottom:-6.720000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.560000pt;}
.yb{bottom:5.440000pt;}
.y6{bottom:14.720000pt;}
.y8{bottom:15.072000pt;}
.y4{bottom:16.352000pt;}
.y3{bottom:16.992000pt;}
.ya{bottom:17.600000pt;}
.y5{bottom:26.880000pt;}
.y9{bottom:29.440000pt;}
.y76{bottom:75.872000pt;}
.yce{bottom:76.832000pt;}
.yb3{bottom:85.792000pt;}
.y75{bottom:92.192000pt;}
.ycd{bottom:92.832000pt;}
.yf0{bottom:94.752000pt;}
.yb2{bottom:101.792000pt;}
.y42{bottom:102.752000pt;}
.y74{bottom:108.192000pt;}
.ycc{bottom:108.832000pt;}
.yef{bottom:111.072000pt;}
.y41{bottom:114.912000pt;}
.yb1{bottom:117.824000pt;}
.y73{bottom:124.224000pt;}
.ycb{bottom:124.864000pt;}
.yee{bottom:127.104000pt;}
.y40{bottom:127.424000pt;}
.yb0{bottom:133.826667pt;}
.y72{bottom:140.226667pt;}
.yca{bottom:141.186667pt;}
.yed{bottom:143.106667pt;}
.yaf{bottom:150.146667pt;}
.y3f{bottom:151.746667pt;}
.yc9{bottom:157.186667pt;}
.yec{bottom:159.426667pt;}
.y71{bottom:163.586667pt;}
.y3e{bottom:164.226667pt;}
.yae{bottom:166.146667pt;}
.yc8{bottom:173.186667pt;}
.yeb{bottom:175.426667pt;}
.y3d{bottom:177.026667pt;}
.yad{bottom:182.146667pt;}
.yc7{bottom:189.506667pt;}
.yea{bottom:191.426667pt;}
.y3c{bottom:191.746667pt;}
.y70{bottom:194.946667pt;}
.yac{bottom:198.466667pt;}
.y3b{bottom:204.226667pt;}
.yc6{bottom:205.506667pt;}
.y6f{bottom:210.306667pt;}
.yab{bottom:214.466667pt;}
.ye9{bottom:214.786667pt;}
.y3a{bottom:217.986667pt;}
.yc5{bottom:221.506667pt;}
.y6e{bottom:225.666667pt;}
.yaa{bottom:230.466667pt;}
.y39{bottom:231.746667pt;}
.yc4{bottom:237.853333pt;}
.y6d{bottom:241.053333pt;}
.y38{bottom:245.853333pt;}
.ya9{bottom:246.813333pt;}
.yc3{bottom:253.853333pt;}
.y6c{bottom:256.413333pt;}
.y37{bottom:259.613333pt;}
.ya8{bottom:262.813333pt;}
.yc2{bottom:269.853333pt;}
.y6b{bottom:271.773333pt;}
.ya7{bottom:278.813333pt;}
.y36{bottom:282.973333pt;}
.yc1{bottom:286.173333pt;}
.y6a{bottom:287.133333pt;}
.ya6{bottom:295.133333pt;}
.y35{bottom:298.333333pt;}
.yc0{bottom:302.173333pt;}
.y69{bottom:302.493333pt;}
.ya5{bottom:311.133333pt;}
.y34{bottom:313.373333pt;}
.y68{bottom:317.853333pt;}
.ybf{bottom:318.173333pt;}
.ya4{bottom:327.133333pt;}
.y33{bottom:328.733333pt;}
.y67{bottom:333.213333pt;}
.ybe{bottom:334.173333pt;}
.y113{bottom:335.133333pt;}
.ya3{bottom:343.133333pt;}
.y32{bottom:344.093333pt;}
.y66{bottom:348.253333pt;}
.ybd{bottom:350.493333pt;}
.y112{bottom:359.173333pt;}
.y31{bottom:359.493333pt;}
.y65{bottom:363.653333pt;}
.ybc{bottom:366.533333pt;}
.y111{bottom:373.893333pt;}
.y30{bottom:374.853333pt;}
.ya2{bottom:375.493333pt;}
.y64{bottom:379.013333pt;}
.ybb{bottom:382.533333pt;}
.y110{bottom:386.693333pt;}
.y2f{bottom:390.213333pt;}
.ya1{bottom:391.493333pt;}
.y63{bottom:394.373333pt;}
.yba{bottom:398.853333pt;}
.y10f{bottom:402.053333pt;}
.y2e{bottom:405.573333pt;}
.ya0{bottom:407.813333pt;}
.y62{bottom:409.733333pt;}
.yb9{bottom:414.853333pt;}
.y10e{bottom:417.093333pt;}
.y2d{bottom:420.933333pt;}
.y9f{bottom:423.813333pt;}
.y61{bottom:425.093333pt;}
.yb8{bottom:430.853333pt;}
.y10d{bottom:432.453333pt;}
.y2c{bottom:436.293333pt;}
.y9e{bottom:439.813333pt;}
.y60{bottom:440.453333pt;}
.yb7{bottom:447.173333pt;}
.y10c{bottom:447.813333pt;}
.y2b{bottom:451.653333pt;}
.y5f{bottom:455.813333pt;}
.y9d{bottom:456.133333pt;}
.yb6{bottom:463.173333pt;}
.y2a{bottom:467.013333pt;}
.y5e{bottom:471.173333pt;}
.y9c{bottom:472.133333pt;}
.y10b{bottom:478.560000pt;}
.yb5{bottom:479.200000pt;}
.y29{bottom:482.080000pt;}
.y5d{bottom:486.560000pt;}
.ye8{bottom:488.160000pt;}
.y10a{bottom:493.920000pt;}
.y9b{bottom:495.520000pt;}
.y28{bottom:497.440000pt;}
.y5c{bottom:501.920000pt;}
.ye7{bottom:504.480000pt;}
.y109{bottom:506.400000pt;}
.yb4{bottom:511.520000pt;}
.y27{bottom:512.800000pt;}
.y5b{bottom:517.280000pt;}
.ye6{bottom:520.480000pt;}
.y108{bottom:521.120000pt;}
.y9a{bottom:527.520000pt;}
.y26{bottom:528.160000pt;}
.y5a{bottom:532.320000pt;}
.y107{bottom:533.280000pt;}
.ye5{bottom:536.480000pt;}
.y25{bottom:543.520000pt;}
.y106{bottom:545.440000pt;}
.y59{bottom:547.680000pt;}
.ye4{bottom:552.480000pt;}
.y105{bottom:557.920000pt;}
.y24{bottom:558.880000pt;}
.y99{bottom:559.840000pt;}
.y58{bottom:563.040000pt;}
.ye3{bottom:568.800000pt;}
.y104{bottom:570.080000pt;}
.y23{bottom:574.240000pt;}
.y98{bottom:575.840000pt;}
.y57{bottom:578.400000pt;}
.y103{bottom:582.240000pt;}
.ye2{bottom:584.800000pt;}
.y97{bottom:591.866667pt;}
.y22{bottom:592.506667pt;}
.y56{bottom:593.786667pt;}
.y102{bottom:594.746667pt;}
.ye1{bottom:600.826667pt;}
.y96{bottom:608.186667pt;}
.y55{bottom:609.146667pt;}
.y101{bottom:615.226667pt;}
.ye0{bottom:617.146667pt;}
.y95{bottom:624.186667pt;}
.y54{bottom:624.506667pt;}
.y21{bottom:628.346667pt;}
.ydf{bottom:633.146667pt;}
.y53{bottom:639.866667pt;}
.y94{bottom:640.186667pt;}
.y100{bottom:645.946667pt;}
.yde{bottom:649.146667pt;}
.y52{bottom:655.226667pt;}
.y93{bottom:656.506667pt;}
.yff{bottom:657.786667pt;}
.y20{bottom:659.706667pt;}
.ydd{bottom:665.466667pt;}
.yfe{bottom:669.626667pt;}
.y51{bottom:670.586667pt;}
.y92{bottom:672.506667pt;}
.y1f{bottom:674.746667pt;}
.ydc{bottom:681.466667pt;}
.y50{bottom:685.946667pt;}
.y91{bottom:688.506667pt;}
.y1e{bottom:693.626667pt;}
.yfd{bottom:694.266667pt;}
.ydb{bottom:697.466667pt;}
.y4f{bottom:700.986667pt;}
.y90{bottom:704.826667pt;}
.yfc{bottom:706.106667pt;}
.y1d{bottom:707.386667pt;}
.yda{bottom:713.826667pt;}
.y4e{bottom:716.386667pt;}
.yfb{bottom:717.986667pt;}
.y8f{bottom:720.866667pt;}
.y1c{bottom:727.266667pt;}
.yd9{bottom:729.826667pt;}
.y4d{bottom:731.746667pt;}
.y8e{bottom:736.866667pt;}
.yfa{bottom:741.666667pt;}
.y1b{bottom:741.986667pt;}
.yd8{bottom:745.826667pt;}
.y4c{bottom:747.106667pt;}
.y8d{bottom:752.866667pt;}
.yf9{bottom:754.466667pt;}
.y1a{bottom:756.386667pt;}
.yd7{bottom:761.826667pt;}
.y4b{bottom:762.466667pt;}
.yf8{bottom:767.266667pt;}
.y8c{bottom:769.186667pt;}
.y19{bottom:770.786667pt;}
.yd6{bottom:778.146667pt;}
.yf7{bottom:779.106667pt;}
.y8b{bottom:785.186667pt;}
.y18{bottom:785.506667pt;}
.y4a{bottom:785.826667pt;}
.yf6{bottom:791.906667pt;}
.yd5{bottom:794.146667pt;}
.y17{bottom:799.906667pt;}
.y8a{bottom:801.186667pt;}
.yf5{bottom:805.026667pt;}
.yd4{bottom:810.146667pt;}
.y16{bottom:814.306667pt;}
.yf4{bottom:816.866667pt;}
.y89{bottom:817.506667pt;}
.y49{bottom:817.826667pt;}
.yd3{bottom:826.466667pt;}
.y15{bottom:828.706667pt;}
.y88{bottom:833.533333pt;}
.y48{bottom:834.173333pt;}
.yd2{bottom:842.493333pt;}
.y14{bottom:843.453333pt;}
.yf3{bottom:848.893333pt;}
.y87{bottom:849.533333pt;}
.y47{bottom:850.173333pt;}
.y13{bottom:857.853333pt;}
.yd1{bottom:858.493333pt;}
.y86{bottom:865.853333pt;}
.y46{bottom:866.173333pt;}
.y12{bottom:872.253333pt;}
.yd0{bottom:874.813333pt;}
.yf2{bottom:881.213333pt;}
.y85{bottom:881.853333pt;}
.y45{bottom:882.173333pt;}
.y11{bottom:886.973333pt;}
.ycf{bottom:890.813333pt;}
.yf1{bottom:896.893333pt;}
.y84{bottom:897.853333pt;}
.y44{bottom:898.493333pt;}
.y10{bottom:901.373333pt;}
.y83{bottom:914.173333pt;}
.y43{bottom:914.493333pt;}
.yf{bottom:915.773333pt;}
.y82{bottom:930.173333pt;}
.ye{bottom:946.173333pt;}
.y81{bottom:962.213333pt;}
.y80{bottom:978.533333pt;}
.yd{bottom:985.893333pt;}
.y7f{bottom:994.533333pt;}
.y7e{bottom:1010.533333pt;}
.yc{bottom:1025.573333pt;}
.y7d{bottom:1026.853333pt;}
.y7c{bottom:1042.853333pt;}
.y78{bottom:1078.080000pt;}
.y2{bottom:1082.240000pt;}
.y77{bottom:1096.320000pt;}
.y1{bottom:1097.600000pt;}
.he{height:29.493750pt;}
.hd{height:29.803125pt;}
.h13{height:30.751875pt;}
.h5{height:32.133750pt;}
.hc{height:34.318750pt;}
.h4{height:36.800000pt;}
.h3{height:37.537500pt;}
.h2{height:37.931250pt;}
.hf{height:39.138750pt;}
.h6{height:39.360000pt;}
.h9{height:39.472500pt;}
.h10{height:39.821250pt;}
.h8{height:41.543750pt;}
.h11{height:43.613750pt;}
.ha{height:43.627500pt;}
.h12{height:58.563750pt;}
.hb{height:74.181250pt;}
.h7{height:89.375000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:172.573333pt;}
.w3{width:222.173333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:9.600000pt;}
.xb{left:61.472000pt;}
.xd{left:62.432000pt;}
.x6{left:64.032000pt;}
.xc{left:72.032000pt;}
.xf{left:73.632000pt;}
.xa{left:74.592000pt;}
.x19{left:86.431988pt;}
.x1a{left:110.431988pt;}
.x7{left:124.864000pt;}
.x18{left:130.623988pt;}
.x16{left:153.986655pt;}
.xe{left:163.586667pt;}
.x17{left:171.586655pt;}
.x15{left:226.333322pt;}
.x3{left:262.813333pt;}
.x1{left:308.293333pt;}
.x8{left:326.853333pt;}
.x9{left:331.333333pt;}
.x2{left:395.360000pt;}
.x14{left:396.959988pt;}
.x10{left:405.280000pt;}
.x1d{left:407.199988pt;}
.x4{left:412.640000pt;}
.x12{left:417.760000pt;}
.x22{left:419.039988pt;}
.x1e{left:425.439988pt;}
.x1c{left:430.586655pt;}
.x13{left:449.146667pt;}
.x1b{left:454.586655pt;}
.x11{left:471.866667pt;}
.x20{left:491.066655pt;}
.x1f{left:500.346655pt;}
.x21{left:727.013322pt;}
}




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