
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_64ecbc2aa939481af08da36c.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_76e78d239b26cbe95b170140.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f87de8d74ca27df1ed8e80d1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7ab441f47493e3c9ea244f20.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_57c659558db0ccd4f2e7e099.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_222c8de625b479f1bd74d7b9.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7e8e6907ff3adc412308f94c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_89f15249532e0188dc435c01.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;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_6193fc93719873dbca485474.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;}
.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);}
.v3{vertical-align:-62.640000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsa{letter-spacing:-1.008000px;}
.ls9{letter-spacing:-0.457800px;}
.lsc{letter-spacing:-0.226200px;}
.lsd{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.089400px;}
.ls11{letter-spacing:-0.036000px;}
.ls8{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.149760px;}
.ls12{letter-spacing:0.156000px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.504000px;}
.ls13{letter-spacing:16.020000px;}
.lse{letter-spacing:46.026720px;}
.ls7{letter-spacing:2867.220000px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-16.102200px;}
.ws2{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.392000px;}
.ws6{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.213800px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._0{margin-left:-1.093680px;}
._1{width:1.651200px;}
._5{width:2.887680px;}
._7{width:3.989760px;}
._8{width:5.460240px;}
._19{width:6.463920px;}
._6{width:7.477680px;}
._3{width:8.576640px;}
._2{width:9.643680px;}
._15{width:11.075520px;}
._18{width:12.609360px;}
._f{width:13.766880px;}
._4{width:15.606000px;}
._c{width:16.613280px;}
._d{width:18.428160px;}
._e{width:19.900080px;}
._17{width:21.573360px;}
._12{width:22.589280px;}
._10{width:26.256720px;}
._11{width:27.650160px;}
._a{width:28.890000px;}
._9{width:30.024000px;}
._13{width:36.236640px;}
._14{width:37.666800px;}
._b{width:186.300000px;}
._16{width:2414.141760px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs9{font-size:12.240000px;}
.fs2{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y48{bottom:0.360000px;}
.y50{bottom:0.900000px;}
.y47{bottom:2.160000px;}
.yb0{bottom:2.880000px;}
.yb2{bottom:3.060000px;}
.y9b{bottom:3.240000px;}
.yc3{bottom:3.285000px;}
.y5{bottom:3.780000px;}
.y5f{bottom:5.010000px;}
.y46{bottom:5.580000px;}
.y45{bottom:7.380000px;}
.y5b{bottom:8.280000px;}
.y44{bottom:9.000000px;}
.y2{bottom:9.900000px;}
.y43{bottom:13.680000px;}
.y4{bottom:22.710000px;}
.y5a{bottom:23.940000px;}
.y4f{bottom:30.600000px;}
.y42{bottom:30.960000px;}
.y59{bottom:39.420000px;}
.y3{bottom:47.910000px;}
.y41{bottom:48.060000px;}
.y4e{bottom:51.300000px;}
.y58{bottom:57.240000px;}
.y4d{bottom:64.470000px;}
.y40{bottom:65.340000px;}
.y8{bottom:71.820000px;}
.y57{bottom:72.750000px;}
.y3f{bottom:82.620000px;}
.y4c{bottom:86.430000px;}
.y56{bottom:90.570000px;}
.y7{bottom:90.720000px;}
.y3e{bottom:99.900000px;}
.y55{bottom:106.050000px;}
.y99{bottom:117.180000px;}
.y3d{bottom:117.225000px;}
.ydc{bottom:119.340000px;}
.yfb{bottom:120.780000px;}
.y54{bottom:121.530000px;}
.y5d{bottom:126.900000px;}
.y98{bottom:134.280000px;}
.y3c{bottom:134.325000px;}
.ydb{bottom:136.620000px;}
.y53{bottom:137.010000px;}
.yfa{bottom:138.060000px;}
.y49{bottom:144.900000px;}
.y4b{bottom:148.350000px;}
.y97{bottom:151.560000px;}
.y3b{bottom:151.605000px;}
.yae{bottom:152.280000px;}
.y52{bottom:152.670000px;}
.yda{bottom:153.720000px;}
.yf9{bottom:155.340000px;}
.y4a{bottom:158.970000px;}
.y51{bottom:168.150000px;}
.y96{bottom:168.840000px;}
.y3a{bottom:168.885000px;}
.yad{bottom:169.560000px;}
.yf8{bottom:172.620000px;}
.y5c{bottom:175.710000px;}
.yd9{bottom:179.640000px;}
.y95{bottom:186.120000px;}
.y39{bottom:186.165000px;}
.yac{bottom:186.840000px;}
.yf7{bottom:189.900000px;}
.y94{bottom:203.430000px;}
.y38{bottom:203.445000px;}
.yab{bottom:204.150000px;}
.yf6{bottom:207.030000px;}
.yca{bottom:215.310000px;}
.y93{bottom:220.710000px;}
.y37{bottom:220.725000px;}
.yaa{bottom:221.430000px;}
.yf5{bottom:224.310000px;}
.y92{bottom:237.810000px;}
.y36{bottom:237.825000px;}
.ya9{bottom:238.530000px;}
.yf4{bottom:241.590000px;}
.yc9{bottom:244.650000px;}
.y21{bottom:254.205000px;}
.y91{bottom:255.090000px;}
.y35{bottom:255.105000px;}
.ya8{bottom:255.810000px;}
.yf3{bottom:258.870000px;}
.yc8{bottom:267.690000px;}
.y20{bottom:271.485000px;}
.y90{bottom:272.370000px;}
.y34{bottom:272.385000px;}
.ya7{bottom:273.090000px;}
.yf2{bottom:276.150000px;}
.y8f{bottom:289.650000px;}
.y33{bottom:289.665000px;}
.ya6{bottom:290.370000px;}
.yf1{bottom:293.250000px;}
.y1f{bottom:295.605000px;}
.yc7{bottom:301.350000px;}
.y8e{bottom:306.930000px;}
.y32{bottom:306.945000px;}
.ya5{bottom:307.650000px;}
.yf0{bottom:310.530000px;}
.y1e{bottom:319.725000px;}
.y8d{bottom:324.030000px;}
.y31{bottom:324.225000px;}
.ya4{bottom:324.750000px;}
.yef{bottom:327.810000px;}
.y13{bottom:333.210000px;}
.yc6{bottom:335.190000px;}
.y30{bottom:341.175000px;}
.y8c{bottom:341.310000px;}
.y1d{bottom:344.055000px;}
.yee{bottom:345.090000px;}
.ya3{bottom:350.670000px;}
.y2f{bottom:356.655000px;}
.y8b{bottom:358.590000px;}
.yed{bottom:362.370000px;}
.y1c{bottom:368.175000px;}
.yc5{bottom:368.850000px;}
.y2e{bottom:372.135000px;}
.y8a{bottom:375.870000px;}
.yec{bottom:379.650000px;}
.y2d{bottom:387.615000px;}
.y1b{bottom:392.295000px;}
.y89{bottom:393.150000px;}
.yeb{bottom:396.750000px;}
.yc4{bottom:402.690000px;}
.y2c{bottom:403.275000px;}
.y88{bottom:410.430000px;}
.yea{bottom:414.030000px;}
.y1a{bottom:416.415000px;}
.y2b{bottom:418.755000px;}
.y87{bottom:427.530000px;}
.ye9{bottom:431.310000px;}
.y2a{bottom:434.235000px;}
.yc2{bottom:436.350000px;}
.y19{bottom:440.535000px;}
.y86{bottom:444.855000px;}
.ye8{bottom:448.635000px;}
.y29{bottom:449.715000px;}
.yd8{bottom:458.355000px;}
.y85{bottom:462.135000px;}
.y18{bottom:464.655000px;}
.y28{bottom:465.375000px;}
.ye7{bottom:465.915000px;}
.yc1{bottom:477.975000px;}
.y84{bottom:479.415000px;}
.y27{bottom:480.855000px;}
.ye6{bottom:483.195000px;}
.yd7{bottom:487.515000px;}
.y17{bottom:488.955000px;}
.yc0{bottom:495.255000px;}
.y26{bottom:496.335000px;}
.y83{bottom:496.695000px;}
.ye5{bottom:509.115000px;}
.yd6{bottom:510.555000px;}
.y25{bottom:511.815000px;}
.ybf{bottom:512.355000px;}
.y16{bottom:513.075000px;}
.y82{bottom:513.975000px;}
.y24{bottom:527.475000px;}
.ybe{bottom:529.635000px;}
.y81{bottom:531.075000px;}
.y15{bottom:537.195000px;}
.y23{bottom:542.955000px;}
.yd5{bottom:544.395000px;}
.ybd{bottom:546.915000px;}
.y80{bottom:548.355000px;}
.y22{bottom:558.435000px;}
.y14{bottom:561.315000px;}
.ybc{bottom:564.195000px;}
.y7f{bottom:565.635000px;}
.yd4{bottom:578.055000px;}
.ybb{bottom:581.475000px;}
.y7e{bottom:582.915000px;}
.ya2{bottom:588.855000px;}
.y7d{bottom:600.195000px;}
.yba{bottom:607.395000px;}
.ya1{bottom:611.895000px;}
.y7c{bottom:617.475000px;}
.y7b{bottom:634.575000px;}
.ya0{bottom:645.555000px;}
.y7a{bottom:651.855000px;}
.y79{bottom:669.135000px;}
.y9f{bottom:679.425000px;}
.y78{bottom:686.445000px;}
.y77{bottom:703.725000px;}
.yd3{bottom:708.945000px;}
.y9e{bottom:713.085000px;}
.y76{bottom:720.825000px;}
.yd2{bottom:726.045000px;}
.y75{bottom:738.105000px;}
.yd1{bottom:743.325000px;}
.y9d{bottom:746.925000px;}
.y74{bottom:755.385000px;}
.yd0{bottom:760.605000px;}
.y73{bottom:772.665000px;}
.ycf{bottom:777.885000px;}
.y9c{bottom:780.585000px;}
.ye4{bottom:780.945000px;}
.y72{bottom:789.945000px;}
.yce{bottom:795.165000px;}
.y71{bottom:807.225000px;}
.ye3{bottom:810.105000px;}
.ycd{bottom:812.445000px;}
.y9a{bottom:814.425000px;}
.y70{bottom:824.325000px;}
.ycc{bottom:829.545000px;}
.ye2{bottom:833.145000px;}
.y6f{bottom:841.605000px;}
.yb9{bottom:845.385000px;}
.ycb{bottom:855.465000px;}
.y6e{bottom:858.885000px;}
.ye1{bottom:866.985000px;}
.yb8{bottom:874.725000px;}
.y6d{bottom:876.165000px;}
.y6c{bottom:893.445000px;}
.yb7{bottom:897.765000px;}
.ye0{bottom:900.645000px;}
.y12{bottom:905.325000px;}
.y11{bottom:907.125000px;}
.y6b{bottom:910.770000px;}
.y10{bottom:923.730000px;}
.y6a{bottom:927.870000px;}
.yb6{bottom:929.850000px;}
.ydf{bottom:934.350000px;}
.y69{bottom:945.150000px;}
.yf{bottom:946.230000px;}
.yb5{bottom:961.890000px;}
.y68{bottom:962.430000px;}
.ye{bottom:963.510000px;}
.yde{bottom:968.190000px;}
.yd{bottom:975.390000px;}
.y67{bottom:979.710000px;}
.yb4{bottom:993.750000px;}
.y66{bottom:996.990000px;}
.ydd{bottom:1001.850000px;}
.yc{bottom:1005.990000px;}
.y65{bottom:1014.090000px;}
.yb3{bottom:1025.790000px;}
.yb{bottom:1030.110000px;}
.y64{bottom:1031.370000px;}
.y63{bottom:1048.650000px;}
.ya{bottom:1054.230000px;}
.yb1{bottom:1057.830000px;}
.y62{bottom:1065.930000px;}
.y9{bottom:1082.850000px;}
.y61{bottom:1083.210000px;}
.y5e{bottom:1086.300000px;}
.yaf{bottom:1089.870000px;}
.y60{bottom:1100.490000px;}
.y6{bottom:1116.330000px;}
.y1{bottom:1123.530000px;}
.hd{height:4.021875px;}
.h11{height:8.546484px;}
.h1b{height:15.480000px;}
.h1e{height:15.516000px;}
.h1c{height:15.660000px;}
.h20{height:17.100000px;}
.h1a{height:17.280000px;}
.h1f{height:17.316000px;}
.h15{height:21.114844px;}
.hb{height:27.147656px;}
.h17{height:27.720000px;}
.h10{height:29.158594px;}
.hf{height:29.464453px;}
.h6{height:30.077578px;}
.h1d{height:37.705078px;}
.h16{height:38.100586px;}
.h12{height:38.997070px;}
.h8{height:40.132617px;}
.h7{height:41.726953px;}
.hc{height:42.164648px;}
.h19{height:43.506914px;}
.h13{height:44.507812px;}
.h5{height:46.251562px;}
.ha{height:48.312422px;}
.h21{height:49.255313px;}
.h9{height:59.436914px;}
.h18{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:84.996000px;}
.h4{height:117.180000px;}
.h14{height:188.310000px;}
.he{height:571.035000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:77.580000px;}
.w2{width:104.076000px;}
.w5{width:132.696000px;}
.w8{width:162.900000px;}
.w9{width:184.530000px;}
.wa{width:185.790000px;}
.w10{width:193.710000px;}
.w11{width:193.890000px;}
.wb{width:195.870000px;}
.wf{width:199.830000px;}
.wd{width:201.630000px;}
.we{width:201.810000px;}
.wc{width:201.990000px;}
.w13{width:230.610000px;}
.w12{width:230.790000px;}
.w6{width:596.490000px;}
.w3{width:622.410000px;}
.w4{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x1c{left:-18.360000px;}
.x0{left:0.000000px;}
.x23{left:7.056000px;}
.x1b{left:8.100000px;}
.x4{left:12.780000px;}
.x6{left:16.020000px;}
.x16{left:17.316000px;}
.x19{left:19.656000px;}
.x18{left:22.716000px;}
.x17{left:29.016000px;}
.x10{left:43.776000px;}
.x20{left:47.736000px;}
.x11{left:50.796000px;}
.xf{left:54.936000px;}
.x21{left:57.096000px;}
.x1d{left:62.145000px;}
.x15{left:67.170000px;}
.x13{left:71.850000px;}
.x14{left:73.290000px;}
.x1{left:78.300000px;}
.x8{left:86.399987px;}
.x25{left:89.855987px;}
.x2{left:95.790000px;}
.x36{left:99.216000px;}
.x22{left:102.810000px;}
.x1f{left:106.770000px;}
.x24{left:113.435987px;}
.x26{left:116.855987px;}
.x12{left:124.590000px;}
.x5{left:141.345000px;}
.x2b{left:142.416000px;}
.x2f{left:145.476000px;}
.x32{left:154.470000px;}
.x27{left:162.030000px;}
.x3{left:182.370000px;}
.x1a{left:219.090000px;}
.x37{left:331.455000px;}
.x2c{left:345.855000px;}
.x28{left:348.015000px;}
.x33{left:349.635000px;}
.xc{left:430.814987px;}
.xb{left:467.744987px;}
.xa{left:475.304987px;}
.x29{left:535.425000px;}
.x34{left:545.145000px;}
.x30{left:548.025000px;}
.x2d{left:549.105000px;}
.x38{left:563.505000px;}
.xd{left:618.044987px;}
.x2a{left:652.469987px;}
.x39{left:670.469987px;}
.x2e{left:679.469987px;}
.x31{left:696.389987px;}
.x35{left:704.309987px;}
.x9{left:766.049987px;}
.x7{left:784.409987px;}
.xe{left:806.939987px;}
.x1e{left:815.580000px;}
@media print{
.v3{vertical-align:-55.680000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.896000pt;}
.ls9{letter-spacing:-0.406933pt;}
.lsc{letter-spacing:-0.201067pt;}
.lsd{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.079467pt;}
.ls11{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.133120pt;}
.ls12{letter-spacing:0.138667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.448000pt;}
.ls13{letter-spacing:14.240000pt;}
.lse{letter-spacing:40.912640pt;}
.ls7{letter-spacing:2548.640000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.313067pt;}
.ws2{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.078933pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.467733pt;}
._5{width:2.566827pt;}
._7{width:3.546453pt;}
._8{width:4.853547pt;}
._19{width:5.745707pt;}
._6{width:6.646827pt;}
._3{width:7.623680pt;}
._2{width:8.572160pt;}
._15{width:9.844907pt;}
._18{width:11.208320pt;}
._f{width:12.237227pt;}
._4{width:13.872000pt;}
._c{width:14.767360pt;}
._d{width:16.380587pt;}
._e{width:17.688960pt;}
._17{width:19.176320pt;}
._12{width:20.079360pt;}
._10{width:23.339307pt;}
._11{width:24.577920pt;}
._a{width:25.680000pt;}
._9{width:26.688000pt;}
._13{width:32.210347pt;}
._14{width:33.481600pt;}
._b{width:165.600000pt;}
._16{width:2145.903787pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:10.880000pt;}
.fs2{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:0.320000pt;}
.y50{bottom:0.800000pt;}
.y47{bottom:1.920000pt;}
.yb0{bottom:2.560000pt;}
.yb2{bottom:2.720000pt;}
.y9b{bottom:2.880000pt;}
.yc3{bottom:2.920000pt;}
.y5{bottom:3.360000pt;}
.y5f{bottom:4.453333pt;}
.y46{bottom:4.960000pt;}
.y45{bottom:6.560000pt;}
.y5b{bottom:7.360000pt;}
.y44{bottom:8.000000pt;}
.y2{bottom:8.800000pt;}
.y43{bottom:12.160000pt;}
.y4{bottom:20.186667pt;}
.y5a{bottom:21.280000pt;}
.y4f{bottom:27.200000pt;}
.y42{bottom:27.520000pt;}
.y59{bottom:35.040000pt;}
.y3{bottom:42.586667pt;}
.y41{bottom:42.720000pt;}
.y4e{bottom:45.600000pt;}
.y58{bottom:50.880000pt;}
.y4d{bottom:57.306667pt;}
.y40{bottom:58.080000pt;}
.y8{bottom:63.840000pt;}
.y57{bottom:64.666667pt;}
.y3f{bottom:73.440000pt;}
.y4c{bottom:76.826667pt;}
.y56{bottom:80.506667pt;}
.y7{bottom:80.640000pt;}
.y3e{bottom:88.800000pt;}
.y55{bottom:94.266667pt;}
.y99{bottom:104.160000pt;}
.y3d{bottom:104.200000pt;}
.ydc{bottom:106.080000pt;}
.yfb{bottom:107.360000pt;}
.y54{bottom:108.026667pt;}
.y5d{bottom:112.800000pt;}
.y98{bottom:119.360000pt;}
.y3c{bottom:119.400000pt;}
.ydb{bottom:121.440000pt;}
.y53{bottom:121.786667pt;}
.yfa{bottom:122.720000pt;}
.y49{bottom:128.800000pt;}
.y4b{bottom:131.866667pt;}
.y97{bottom:134.720000pt;}
.y3b{bottom:134.760000pt;}
.yae{bottom:135.360000pt;}
.y52{bottom:135.706667pt;}
.yda{bottom:136.640000pt;}
.yf9{bottom:138.080000pt;}
.y4a{bottom:141.306667pt;}
.y51{bottom:149.466667pt;}
.y96{bottom:150.080000pt;}
.y3a{bottom:150.120000pt;}
.yad{bottom:150.720000pt;}
.yf8{bottom:153.440000pt;}
.y5c{bottom:156.186667pt;}
.yd9{bottom:159.680000pt;}
.y95{bottom:165.440000pt;}
.y39{bottom:165.480000pt;}
.yac{bottom:166.080000pt;}
.yf7{bottom:168.800000pt;}
.y94{bottom:180.826667pt;}
.y38{bottom:180.840000pt;}
.yab{bottom:181.466667pt;}
.yf6{bottom:184.026667pt;}
.yca{bottom:191.386667pt;}
.y93{bottom:196.186667pt;}
.y37{bottom:196.200000pt;}
.yaa{bottom:196.826667pt;}
.yf5{bottom:199.386667pt;}
.y92{bottom:211.386667pt;}
.y36{bottom:211.400000pt;}
.ya9{bottom:212.026667pt;}
.yf4{bottom:214.746667pt;}
.yc9{bottom:217.466667pt;}
.y21{bottom:225.960000pt;}
.y91{bottom:226.746667pt;}
.y35{bottom:226.760000pt;}
.ya8{bottom:227.386667pt;}
.yf3{bottom:230.106667pt;}
.yc8{bottom:237.946667pt;}
.y20{bottom:241.320000pt;}
.y90{bottom:242.106667pt;}
.y34{bottom:242.120000pt;}
.ya7{bottom:242.746667pt;}
.yf2{bottom:245.466667pt;}
.y8f{bottom:257.466667pt;}
.y33{bottom:257.480000pt;}
.ya6{bottom:258.106667pt;}
.yf1{bottom:260.666667pt;}
.y1f{bottom:262.760000pt;}
.yc7{bottom:267.866667pt;}
.y8e{bottom:272.826667pt;}
.y32{bottom:272.840000pt;}
.ya5{bottom:273.466667pt;}
.yf0{bottom:276.026667pt;}
.y1e{bottom:284.200000pt;}
.y8d{bottom:288.026667pt;}
.y31{bottom:288.200000pt;}
.ya4{bottom:288.666667pt;}
.yef{bottom:291.386667pt;}
.y13{bottom:296.186667pt;}
.yc6{bottom:297.946667pt;}
.y30{bottom:303.266667pt;}
.y8c{bottom:303.386667pt;}
.y1d{bottom:305.826667pt;}
.yee{bottom:306.746667pt;}
.ya3{bottom:311.706667pt;}
.y2f{bottom:317.026667pt;}
.y8b{bottom:318.746667pt;}
.yed{bottom:322.106667pt;}
.y1c{bottom:327.266667pt;}
.yc5{bottom:327.866667pt;}
.y2e{bottom:330.786667pt;}
.y8a{bottom:334.106667pt;}
.yec{bottom:337.466667pt;}
.y2d{bottom:344.546667pt;}
.y1b{bottom:348.706667pt;}
.y89{bottom:349.466667pt;}
.yeb{bottom:352.666667pt;}
.yc4{bottom:357.946667pt;}
.y2c{bottom:358.466667pt;}
.y88{bottom:364.826667pt;}
.yea{bottom:368.026667pt;}
.y1a{bottom:370.146667pt;}
.y2b{bottom:372.226667pt;}
.y87{bottom:380.026667pt;}
.ye9{bottom:383.386667pt;}
.y2a{bottom:385.986667pt;}
.yc2{bottom:387.866667pt;}
.y19{bottom:391.586667pt;}
.y86{bottom:395.426667pt;}
.ye8{bottom:398.786667pt;}
.y29{bottom:399.746667pt;}
.yd8{bottom:407.426667pt;}
.y85{bottom:410.786667pt;}
.y18{bottom:413.026667pt;}
.y28{bottom:413.666667pt;}
.ye7{bottom:414.146667pt;}
.yc1{bottom:424.866667pt;}
.y84{bottom:426.146667pt;}
.y27{bottom:427.426667pt;}
.ye6{bottom:429.506667pt;}
.yd7{bottom:433.346667pt;}
.y17{bottom:434.626667pt;}
.yc0{bottom:440.226667pt;}
.y26{bottom:441.186667pt;}
.y83{bottom:441.506667pt;}
.ye5{bottom:452.546667pt;}
.yd6{bottom:453.826667pt;}
.y25{bottom:454.946667pt;}
.ybf{bottom:455.426667pt;}
.y16{bottom:456.066667pt;}
.y82{bottom:456.866667pt;}
.y24{bottom:468.866667pt;}
.ybe{bottom:470.786667pt;}
.y81{bottom:472.066667pt;}
.y15{bottom:477.506667pt;}
.y23{bottom:482.626667pt;}
.yd5{bottom:483.906667pt;}
.ybd{bottom:486.146667pt;}
.y80{bottom:487.426667pt;}
.y22{bottom:496.386667pt;}
.y14{bottom:498.946667pt;}
.ybc{bottom:501.506667pt;}
.y7f{bottom:502.786667pt;}
.yd4{bottom:513.826667pt;}
.ybb{bottom:516.866667pt;}
.y7e{bottom:518.146667pt;}
.ya2{bottom:523.426667pt;}
.y7d{bottom:533.506667pt;}
.yba{bottom:539.906667pt;}
.ya1{bottom:543.906667pt;}
.y7c{bottom:548.866667pt;}
.y7b{bottom:564.066667pt;}
.ya0{bottom:573.826667pt;}
.y7a{bottom:579.426667pt;}
.y79{bottom:594.786667pt;}
.y9f{bottom:603.933333pt;}
.y78{bottom:610.173333pt;}
.y77{bottom:625.533333pt;}
.yd3{bottom:630.173333pt;}
.y9e{bottom:633.853333pt;}
.y76{bottom:640.733333pt;}
.yd2{bottom:645.373333pt;}
.y75{bottom:656.093333pt;}
.yd1{bottom:660.733333pt;}
.y9d{bottom:663.933333pt;}
.y74{bottom:671.453333pt;}
.yd0{bottom:676.093333pt;}
.y73{bottom:686.813333pt;}
.ycf{bottom:691.453333pt;}
.y9c{bottom:693.853333pt;}
.ye4{bottom:694.173333pt;}
.y72{bottom:702.173333pt;}
.yce{bottom:706.813333pt;}
.y71{bottom:717.533333pt;}
.ye3{bottom:720.093333pt;}
.ycd{bottom:722.173333pt;}
.y9a{bottom:723.933333pt;}
.y70{bottom:732.733333pt;}
.ycc{bottom:737.373333pt;}
.ye2{bottom:740.573333pt;}
.y6f{bottom:748.093333pt;}
.yb9{bottom:751.453333pt;}
.ycb{bottom:760.413333pt;}
.y6e{bottom:763.453333pt;}
.ye1{bottom:770.653333pt;}
.yb8{bottom:777.533333pt;}
.y6d{bottom:778.813333pt;}
.y6c{bottom:794.173333pt;}
.yb7{bottom:798.013333pt;}
.ye0{bottom:800.573333pt;}
.y12{bottom:804.733333pt;}
.y11{bottom:806.333333pt;}
.y6b{bottom:809.573333pt;}
.y10{bottom:821.093333pt;}
.y6a{bottom:824.773333pt;}
.yb6{bottom:826.533333pt;}
.ydf{bottom:830.533333pt;}
.y69{bottom:840.133333pt;}
.yf{bottom:841.093333pt;}
.yb5{bottom:855.013333pt;}
.y68{bottom:855.493333pt;}
.ye{bottom:856.453333pt;}
.yde{bottom:860.613333pt;}
.yd{bottom:867.013333pt;}
.y67{bottom:870.853333pt;}
.yb4{bottom:883.333333pt;}
.y66{bottom:886.213333pt;}
.ydd{bottom:890.533333pt;}
.yc{bottom:894.213333pt;}
.y65{bottom:901.413333pt;}
.yb3{bottom:911.813333pt;}
.yb{bottom:915.653333pt;}
.y64{bottom:916.773333pt;}
.y63{bottom:932.133333pt;}
.ya{bottom:937.093333pt;}
.yb1{bottom:940.293333pt;}
.y62{bottom:947.493333pt;}
.y9{bottom:962.533333pt;}
.y61{bottom:962.853333pt;}
.y5e{bottom:965.600000pt;}
.yaf{bottom:968.773333pt;}
.y60{bottom:978.213333pt;}
.y6{bottom:992.293333pt;}
.y1{bottom:998.693333pt;}
.hd{height:3.575000pt;}
.h11{height:7.596875pt;}
.h1b{height:13.760000pt;}
.h1e{height:13.792000pt;}
.h1c{height:13.920000pt;}
.h20{height:15.200000pt;}
.h1a{height:15.360000pt;}
.h1f{height:15.392000pt;}
.h15{height:18.768750pt;}
.hb{height:24.131250pt;}
.h17{height:24.640000pt;}
.h10{height:25.918750pt;}
.hf{height:26.190625pt;}
.h6{height:26.735625pt;}
.h1d{height:33.515625pt;}
.h16{height:33.867188pt;}
.h12{height:34.664062pt;}
.h8{height:35.673437pt;}
.h7{height:37.090625pt;}
.hc{height:37.479688pt;}
.h19{height:38.672812pt;}
.h13{height:39.562500pt;}
.h5{height:41.112500pt;}
.ha{height:42.944375pt;}
.h21{height:43.782500pt;}
.h9{height:52.832812pt;}
.h18{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:75.552000pt;}
.h4{height:104.160000pt;}
.h14{height:167.386667pt;}
.he{height:507.586667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:68.960000pt;}
.w2{width:92.512000pt;}
.w5{width:117.952000pt;}
.w8{width:144.800000pt;}
.w9{width:164.026667pt;}
.wa{width:165.146667pt;}
.w10{width:172.186667pt;}
.w11{width:172.346667pt;}
.wb{width:174.106667pt;}
.wf{width:177.626667pt;}
.wd{width:179.226667pt;}
.we{width:179.386667pt;}
.wc{width:179.546667pt;}
.w13{width:204.986667pt;}
.w12{width:205.146667pt;}
.w6{width:530.213333pt;}
.w3{width:553.253333pt;}
.w4{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x1c{left:-16.320000pt;}
.x0{left:0.000000pt;}
.x23{left:6.272000pt;}
.x1b{left:7.200000pt;}
.x4{left:11.360000pt;}
.x6{left:14.240000pt;}
.x16{left:15.392000pt;}
.x19{left:17.472000pt;}
.x18{left:20.192000pt;}
.x17{left:25.792000pt;}
.x10{left:38.912000pt;}
.x20{left:42.432000pt;}
.x11{left:45.152000pt;}
.xf{left:48.832000pt;}
.x21{left:50.752000pt;}
.x1d{left:55.240000pt;}
.x15{left:59.706667pt;}
.x13{left:63.866667pt;}
.x14{left:65.146667pt;}
.x1{left:69.600000pt;}
.x8{left:76.799988pt;}
.x25{left:79.871988pt;}
.x2{left:85.146667pt;}
.x36{left:88.192000pt;}
.x22{left:91.386667pt;}
.x1f{left:94.906667pt;}
.x24{left:100.831988pt;}
.x26{left:103.871988pt;}
.x12{left:110.746667pt;}
.x5{left:125.640000pt;}
.x2b{left:126.592000pt;}
.x2f{left:129.312000pt;}
.x32{left:137.306667pt;}
.x27{left:144.026667pt;}
.x3{left:162.106667pt;}
.x1a{left:194.746667pt;}
.x37{left:294.626667pt;}
.x2c{left:307.426667pt;}
.x28{left:309.346667pt;}
.x33{left:310.786667pt;}
.xc{left:382.946655pt;}
.xb{left:415.773322pt;}
.xa{left:422.493322pt;}
.x29{left:475.933333pt;}
.x34{left:484.573333pt;}
.x30{left:487.133333pt;}
.x2d{left:488.093333pt;}
.x38{left:500.893333pt;}
.xd{left:549.373322pt;}
.x2a{left:579.973322pt;}
.x39{left:595.973322pt;}
.x2e{left:603.973322pt;}
.x31{left:619.013322pt;}
.x35{left:626.053322pt;}
.x9{left:680.933322pt;}
.x7{left:697.253322pt;}
.xe{left:717.279988pt;}
.x1e{left:724.960000pt;}
}




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