
    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_a09d1017f28d36e1dfce87ba.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_66005674df36301b6fbe767c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_102fb62a8a7b423f239829a3.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5daaf447f04012fe22cab224.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0f35319215ce0ec0f66914fa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.090332;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_5b3bb4730713061d7531ef0d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.030273;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_78f89424d8fbd7bf2223bc78.woff')format("woff");}.ff7{font-family:ff7;line-height:0.936035;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_7fe538c694587a796db02720.woff')format("woff");}.ff8{font-family:ff8;line-height:0.892578;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_d5ae7abad86a83a5c5bb30fb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.767578;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_4492c8c6e35f60bee32e04f7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.765625;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_4d16f3f9603e1f69b0303a84.woff')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-19.440031px;}
.v1{vertical-align:-5.039978px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.104957px;}
.ls3{letter-spacing:0.159840px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:1.763955px;}
.ls2{letter-spacing:2.808076px;}
.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:-98.640689px;}
.ws13{word-spacing:-48.240229px;}
.ws1{word-spacing:-18.939012px;}
.ws14{word-spacing:-18.360000px;}
.ws15{word-spacing:-18.000000px;}
.ws2{word-spacing:-12.240000px;}
.ws16{word-spacing:-8.477186px;}
.wsc{word-spacing:-7.600320px;}
.ws12{word-spacing:-7.308000px;}
.ws21{word-spacing:-7.200000px;}
.ws3{word-spacing:-7.188480px;}
.ws23{word-spacing:-6.912000px;}
.wsd{word-spacing:-6.138720px;}
.ws2d{word-spacing:-5.806080px;}
.ws24{word-spacing:-5.567760px;}
.ws1a{word-spacing:-5.407920px;}
.ws22{word-spacing:-4.823280px;}
.ws1f{word-spacing:-3.946320px;}
.wse{word-spacing:-3.654000px;}
.ws11{word-spacing:-0.846720px;}
.wsb{word-spacing:-0.756000px;}
.ws28{word-spacing:-0.142560px;}
.ws26{word-spacing:-0.072000px;}
.ws2e{word-spacing:0.000000px;}
.ws1b{word-spacing:0.026640px;}
.ws17{word-spacing:0.106560px;}
.ws2a{word-spacing:0.166320px;}
.ws10{word-spacing:0.432000px;}
.wsf{word-spacing:0.558000px;}
.wsa{word-spacing:0.748800px;}
.ws27{word-spacing:0.825840px;}
.ws18{word-spacing:0.879120px;}
.ws1e{word-spacing:0.959040px;}
.ws2c{word-spacing:1.069200px;}
.ws1d{word-spacing:1.198800px;}
.ws5{word-spacing:1.235520px;}
.ws2b{word-spacing:1.758240px;}
.ws25{word-spacing:1.918080px;}
.ws1c{word-spacing:2.051280px;}
.ws8{word-spacing:2.096640px;}
.ws9{word-spacing:2.433600px;}
.ws19{word-spacing:2.530800px;}
.ws7{word-spacing:2.845440px;}
.ws6{word-spacing:3.219840px;}
.ws4{word-spacing:14.002560px;}
.ws20{word-spacing:103.067941px;}
.ws29{word-spacing:348.180402px;}
._11{margin-left:-851.362689px;}
._e{margin-left:-832.065001px;}
._13{margin-left:-811.383528px;}
._10{margin-left:-711.933233px;}
._12{margin-left:-670.044779px;}
._c{margin-left:-568.807232px;}
._d{margin-left:-383.922832px;}
._4{margin-left:-9.434895px;}
._5{margin-left:-5.144408px;}
._2{margin-left:-4.096067px;}
._a{margin-left:-3.036735px;}
._1{margin-left:-1.972814px;}
._0{width:1.033202px;}
._3{width:2.575465px;}
._b{width:3.629888px;}
._9{width:6.297426px;}
._f{width:7.982735px;}
._6{width:9.459943px;}
._7{width:11.509545px;}
._8{width:12.541452px;}
._18{width:37.980004px;}
._19{width:110.470430px;}
._16{width:131.256014px;}
._15{width:155.736022px;}
._17{width:253.744734px;}
._14{width:520.776000px;}
.fc7{color:rgb(1,15,26);}
.fc6{color:rgb(245,102,0);}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(164,12,20);}
.fc2{color:rgb(110,4,1);}
.fc5{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:7.200000px;}
.fs2{font-size:12.240000px;}
.fs10{font-size:13.680000px;}
.fsf{font-size:16.560000px;}
.fs8{font-size:18.000000px;}
.fs14{font-size:18.720000px;}
.fse{font-size:19.440000px;}
.fsb{font-size:23.760000px;}
.fsd{font-size:26.640000px;}
.fs12{font-size:28.080000px;}
.fs5{font-size:30.240000px;}
.fs7{font-size:34.560000px;}
.fs15{font-size:35.999907px;}
.fs9{font-size:36.000000px;}
.fs4{font-size:37.440000px;}
.fsc{font-size:41.759538px;}
.fsa{font-size:48.240229px;}
.fs13{font-size:53.999861px;}
.fs6{font-size:71.999814px;}
.fs1{font-size:98.640689px;}
.fs3{font-size:112.320182px;}
.fs0{font-size:206.640410px;}
.y0{bottom:0.000000px;}
.y3{bottom:30.600083px;}
.y44{bottom:78.840088px;}
.y55{bottom:80.640060px;}
.y65{bottom:81.000000px;}
.y54{bottom:93.060104px;}
.y64{bottom:94.500000px;}
.ybb{bottom:99.540115px;}
.y53{bottom:105.480011px;}
.y63{bottom:108.000000px;}
.yb9{bottom:108.360077px;}
.yb1{bottom:114.120072px;}
.y52{bottom:117.900055px;}
.y62{bottom:121.500068px;}
.yb2{bottom:122.220085px;}
.y51{bottom:130.320099px;}
.y61{bottom:135.000068px;}
.yb3{bottom:138.420043px;}
.y50{bottom:142.740074px;}
.yb4{bottom:146.520058px;}
.y60{bottom:148.500068px;}
.yb5{bottom:154.620072px;}
.y4f{bottom:155.160049px;}
.y5f{bottom:162.000068px;}
.yb6{bottom:162.720085px;}
.y4e{bottom:167.580093px;}
.yb7{bottom:170.820099px;}
.y5e{bottom:175.500068px;}
.yb8{bottom:178.920043px;}
.y4d{bottom:180.000068px;}
.yba{bottom:187.200096px;}
.y5d{bottom:189.000068px;}
.y4c{bottom:192.420043px;}
.y5c{bottom:202.500068px;}
.ye7{bottom:204.480079px;}
.y4b{bottom:204.840088px;}
.y5b{bottom:216.000068px;}
.y4a{bottom:217.260064px;}
.ye6{bottom:217.980079px;}
.y5a{bottom:229.500068px;}
.y49{bottom:229.680039px;}
.yb0{bottom:239.940033px;}
.y48{bottom:242.100083px;}
.y59{bottom:243.000068px;}
.y47{bottom:254.520058px;}
.y58{bottom:256.500068px;}
.ya5{bottom:256.680039px;}
.y46{bottom:267.300041px;}
.y57{bottom:270.000068px;}
.ya4{bottom:273.240074px;}
.y56{bottom:283.500068px;}
.ya3{bottom:286.740074px;}
.y37{bottom:288.180039px;}
.yc4{bottom:298.800041px;}
.ya2{bottom:300.240074px;}
.y36{bottom:301.680039px;}
.yc3{bottom:311.760064px;}
.ya1{bottom:313.740074px;}
.y35{bottom:315.180039px;}
.yc2{bottom:324.720085px;}
.ya0{bottom:327.240074px;}
.y34{bottom:328.680039px;}
.y9f{bottom:340.740074px;}
.y33{bottom:342.180039px;}
.yc1{bottom:343.080093px;}
.y9e{bottom:354.240074px;}
.y32{bottom:355.680039px;}
.yc0{bottom:356.040636px;}
.y9d{bottom:367.740074px;}
.ybf{bottom:369.000068px;}
.y31{bottom:369.180039px;}
.y9c{bottom:381.240074px;}
.ybe{bottom:381.960091px;}
.y30{bottom:382.680039px;}
.ybd{bottom:394.919826px;}
.y2f{bottom:396.180039px;}
.y43{bottom:397.440033px;}
.y42{bottom:406.440033px;}
.y2e{bottom:409.680039px;}
.ybc{bottom:410.580093px;}
.y41{bottom:415.440033px;}
.y2d{bottom:423.180039px;}
.ye5{bottom:426.060036px;}
.ya9{bottom:430.740074px;}
.ye4{bottom:435.060036px;}
.y2c{bottom:436.680039px;}
.yac{bottom:448.380066px;}
.yaa{bottom:448.920043px;}
.y2b{bottom:450.180039px;}
.ydb{bottom:451.800041px;}
.ye2{bottom:456.660049px;}
.yda{bottom:459.000068px;}
.yad{bottom:462.060036px;}
.yaf{bottom:462.600083px;}
.ya7{bottom:463.500068px;}
.y2a{bottom:463.680039px;}
.yd9{bottom:466.200096px;}
.ya6{bottom:469.260064px;}
.yae{bottom:469.800041px;}
.yd8{bottom:473.400055px;}
.ye3{bottom:474.481184px;}
.ye1{bottom:476.280052px;}
.y29{bottom:477.180039px;}
.yd1{bottom:484.740074px;}
.y28{bottom:490.680039px;}
.yab{bottom:491.040047px;}
.ye0{bottom:492.120072px;}
.yd0{bottom:492.840088px;}
.ydf{bottom:499.320099px;}
.y27{bottom:504.180039px;}
.yde{bottom:511.740074px;}
.yd7{bottom:511.920043px;}
.ya8{bottom:512.100083px;}
.y26{bottom:517.680039px;}
.ydd{bottom:518.940033px;}
.yd6{bottom:523.980079px;}
.y9b{bottom:525.060036px;}
.y25{bottom:531.180039px;}
.ydc{bottom:531.360077px;}
.yd5{bottom:538.380066px;}
.y9a{bottom:538.560036px;}
.yd3{bottom:544.140060px;}
.y24{bottom:544.680039px;}
.y99{bottom:552.060036px;}
.yd2{bottom:552.240074px;}
.yd4{bottom:552.960091px;}
.y23{bottom:558.180039px;}
.y98{bottom:565.560036px;}
.y22{bottom:571.680039px;}
.ycb{bottom:576.360077px;}
.y97{bottom:579.060036px;}
.yca{bottom:584.460091px;}
.y21{bottom:585.180039px;}
.yc6{bottom:589.140060px;}
.y96{bottom:592.560036px;}
.y20{bottom:598.680039px;}
.y95{bottom:606.060036px;}
.y1f{bottom:612.180039px;}
.y94{bottom:619.560036px;}
.yce{bottom:621.360077px;}
.ycf{bottom:625.500068px;}
.y1e{bottom:625.680039px;}
.ycd{bottom:629.460091px;}
.yc7{bottom:629.820099px;}
.y67{bottom:635.580093px;}
.ycc{bottom:637.560036px;}
.y1d{bottom:639.180039px;}
.y66{bottom:644.580093px;}
.y1c{bottom:652.680039px;}
.yc9{bottom:663.300041px;}
.y1b{bottom:666.180039px;}
.yc5{bottom:667.800041px;}
.y72{bottom:668.700096px;}
.y93{bottom:670.320099px;}
.yc8{bottom:671.400055px;}
.y71{bottom:679.500068px;}
.y1a{bottom:679.680039px;}
.y92{bottom:689.760064px;}
.y70{bottom:690.300076px;}
.y19{bottom:693.180073px;}
.y91{bottom:697.860077px;}
.y7a{bottom:704.880066px;}
.y18{bottom:706.680073px;}
.y90{bottom:708.840054px;}
.y6a{bottom:710.640060px;}
.y79{bottom:712.080059px;}
.y69{bottom:717.300076px;}
.y78{bottom:719.280052px;}
.y8f{bottom:719.460056px;}
.y17{bottom:720.180073px;}
.y8e{bottom:727.560070px;}
.y77{bottom:727.913739px;}
.y16{bottom:733.680073px;}
.y8d{bottom:738.360077px;}
.y8c{bottom:746.460056px;}
.y15{bottom:747.180073px;}
.y6d{bottom:755.100083px;}
.y76{bottom:755.820065px;}
.y8b{bottom:757.260064px;}
.y14{bottom:760.680073px;}
.y6c{bottom:761.580059px;}
.y75{bottom:763.020058px;}
.y8a{bottom:765.360077px;}
.y74{bottom:770.220051px;}
.y13{bottom:774.180073px;}
.y89{bottom:776.340054px;}
.y73{bottom:778.858362px;}
.y12{bottom:787.680073px;}
.y68{bottom:793.080059px;}
.y40{bottom:800.280052px;}
.y11{bottom:801.180073px;}
.y6b{bottom:804.240074px;}
.y7d{bottom:811.980079px;}
.y10{bottom:814.680073px;}
.y7c{bottom:819.180073px;}
.y6e{bottom:820.440067px;}
.y6f{bottom:820.980079px;}
.y7b{bottom:827.638895px;}
.yf{bottom:828.180073px;}
.y88{bottom:831.240074px;}
.ye{bottom:841.680073px;}
.y80{bottom:845.640060px;}
.y3f{bottom:855.000068px;}
.yd{bottom:855.180073px;}
.y7f{bottom:855.720051px;}
.y87{bottom:856.260064px;}
.y3e{bottom:868.500068px;}
.yc{bottom:868.680073px;}
.y86{bottom:870.480079px;}
.y85{bottom:881.460056px;}
.y3d{bottom:882.000068px;}
.yb{bottom:882.180073px;}
.y81{bottom:892.080059px;}
.y3c{bottom:895.500068px;}
.ya{bottom:895.680073px;}
.y84{bottom:906.480079px;}
.y82{bottom:908.280052px;}
.y3b{bottom:909.000068px;}
.y9{bottom:909.180073px;}
.y3a{bottom:922.500068px;}
.y8{bottom:922.680073px;}
.y83{bottom:930.965760px;}
.y39{bottom:936.000068px;}
.y7{bottom:936.180073px;}
.y38{bottom:949.500068px;}
.y6{bottom:949.680073px;}
.y7e{bottom:951.660049px;}
.y45{bottom:981.903244px;}
.y5{bottom:1007.815079px;}
.y4{bottom:1041.653718px;}
.y2{bottom:1144.082569px;}
.y1{bottom:1179.537787px;}
.h19{height:5.459766px;}
.h4{height:8.498672px;}
.h18{height:11.562539px;}
.h11{height:12.401367px;}
.h17{height:14.352539px;}
.hc{height:15.600586px;}
.h16{height:16.848633px;}
.h10{height:20.592773px;}
.h14{height:22.516523px;}
.h15{height:23.088867px;}
.h1a{height:24.336914px;}
.hd{height:25.559297px;}
.h8{height:26.135156px;}
.hb{height:26.208984px;}
.ha{height:29.868750px;}
.h1d{height:30.427656px;}
.he{height:30.427734px;}
.h1c{height:31.113281px;}
.h13{height:31.201172px;}
.h7{height:32.357813px;}
.h6{height:32.449219px;}
.h12{height:35.295782px;}
.hf{height:36.462830px;}
.h1b{height:41.343643px;}
.h9{height:62.226402px;}
.h3{height:85.250986px;}
.h5{height:97.073595px;}
.h2{height:179.095082px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:34.379999px;}
.x1{left:41.570239px;}
.x2a{left:198.180005px;}
.x3{left:202.675421px;}
.x19{left:203.759994px;}
.x18{left:205.020006px;}
.x22{left:206.819996px;}
.x8{left:211.319996px;}
.x9{left:215.280001px;}
.x7{left:216.539996px;}
.xa{left:218.159998px;}
.x2b{left:222.479994px;}
.x2c{left:241.740006px;}
.xd{left:245.340002px;}
.xe{left:248.939999px;}
.x21{left:258.840002px;}
.x1e{left:260.819996px;}
.xc{left:264.240006px;}
.x1f{left:265.319996px;}
.x2d{left:283.680005px;}
.x1d{left:296.639992px;}
.x1c{left:303.660015px;}
.xf{left:314.819996px;}
.x2f{left:322.379998px;}
.x2e{left:324.180005px;}
.x6{left:331.560001px;}
.x20{left:335.879998px;}
.x1b{left:371.699993px;}
.x1a{left:374.399987px;}
.xb{left:381.779983px;}
.x24{left:410.759994px;}
.x23{left:414.720017px;}
.x2{left:444.420010px;}
.x27{left:445.680005px;}
.x26{left:451.620002px;}
.x25{left:456.300007px;}
.x10{left:466.561694px;}
.x29{left:502.019989px;}
.x28{left:505.620002px;}
.x5{left:536.759994px;}
.x30{left:546.839985px;}
.x3f{left:555.840851px;}
.x3a{left:570.779983px;}
.x3d{left:583.379998px;}
.x3e{left:585.899987px;}
.x13{left:592.919975px;}
.x14{left:597.600014px;}
.x11{left:621.000000px;}
.x15{left:633.953454px;}
.x36{left:638.820030px;}
.x3b{left:655.379998px;}
.x12{left:674.279983px;}
.x17{left:710.820030px;}
.x16{left:717.299973px;}
.x3c{left:732.240006px;}
.x38{left:736.200027px;}
.x39{left:738.000000px;}
.x37{left:745.740006px;}
.x33{left:758.519989px;}
.x31{left:761.759994px;}
.x32{left:765.899987px;}
.x34{left:802.259994px;}
.x35{left:804.600014px;}
@media print{
.v2{vertical-align:-17.280028pt;}
.v1{vertical-align:-4.479980pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.093295pt;}
.ls3{letter-spacing:0.142080pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:1.567960pt;}
.ls2{letter-spacing:2.496068pt;}
.ws0{word-spacing:-87.680613pt;}
.ws13{word-spacing:-42.880204pt;}
.ws1{word-spacing:-16.834678pt;}
.ws14{word-spacing:-16.320000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws2{word-spacing:-10.880000pt;}
.ws16{word-spacing:-7.535277pt;}
.wsc{word-spacing:-6.755840pt;}
.ws12{word-spacing:-6.496000pt;}
.ws21{word-spacing:-6.400000pt;}
.ws3{word-spacing:-6.389760pt;}
.ws23{word-spacing:-6.144000pt;}
.wsd{word-spacing:-5.456640pt;}
.ws2d{word-spacing:-5.160960pt;}
.ws24{word-spacing:-4.949120pt;}
.ws1a{word-spacing:-4.807040pt;}
.ws22{word-spacing:-4.287360pt;}
.ws1f{word-spacing:-3.507840pt;}
.wse{word-spacing:-3.248000pt;}
.ws11{word-spacing:-0.752640pt;}
.wsb{word-spacing:-0.672000pt;}
.ws28{word-spacing:-0.126720pt;}
.ws26{word-spacing:-0.064000pt;}
.ws2e{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.023680pt;}
.ws17{word-spacing:0.094720pt;}
.ws2a{word-spacing:0.147840pt;}
.ws10{word-spacing:0.384000pt;}
.wsf{word-spacing:0.496000pt;}
.wsa{word-spacing:0.665600pt;}
.ws27{word-spacing:0.734080pt;}
.ws18{word-spacing:0.781440pt;}
.ws1e{word-spacing:0.852480pt;}
.ws2c{word-spacing:0.950400pt;}
.ws1d{word-spacing:1.065600pt;}
.ws5{word-spacing:1.098240pt;}
.ws2b{word-spacing:1.562880pt;}
.ws25{word-spacing:1.704960pt;}
.ws1c{word-spacing:1.823360pt;}
.ws8{word-spacing:1.863680pt;}
.ws9{word-spacing:2.163200pt;}
.ws19{word-spacing:2.249600pt;}
.ws7{word-spacing:2.529280pt;}
.ws6{word-spacing:2.862080pt;}
.ws4{word-spacing:12.446720pt;}
.ws20{word-spacing:91.615948pt;}
.ws29{word-spacing:309.493691pt;}
._11{margin-left:-756.766835pt;}
._e{margin-left:-739.613334pt;}
._13{margin-left:-721.229802pt;}
._10{margin-left:-632.829541pt;}
._12{margin-left:-595.595359pt;}
._c{margin-left:-505.606428pt;}
._d{margin-left:-341.264740pt;}
._4{margin-left:-8.386574pt;}
._5{margin-left:-4.572807pt;}
._2{margin-left:-3.640948pt;}
._a{margin-left:-2.699320pt;}
._1{margin-left:-1.753612pt;}
._0{width:0.918402pt;}
._3{width:2.289302pt;}
._b{width:3.226567pt;}
._9{width:5.597712pt;}
._f{width:7.095765pt;}
._6{width:8.408838pt;}
._7{width:10.230706pt;}
._8{width:11.147957pt;}
._18{width:33.760004pt;}
._19{width:98.195938pt;}
._16{width:116.672012pt;}
._15{width:138.432020pt;}
._17{width:225.550875pt;}
._14{width:462.912000pt;}
.fs11{font-size:6.400000pt;}
.fs2{font-size:10.880000pt;}
.fs10{font-size:12.160000pt;}
.fsf{font-size:14.720000pt;}
.fs8{font-size:16.000000pt;}
.fs14{font-size:16.640000pt;}
.fse{font-size:17.280000pt;}
.fsb{font-size:21.120000pt;}
.fsd{font-size:23.680000pt;}
.fs12{font-size:24.960000pt;}
.fs5{font-size:26.880000pt;}
.fs7{font-size:30.720000pt;}
.fs15{font-size:31.999917pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:33.280000pt;}
.fsc{font-size:37.119590pt;}
.fsa{font-size:42.880204pt;}
.fs13{font-size:47.999876pt;}
.fs6{font-size:63.999835pt;}
.fs1{font-size:87.680613pt;}
.fs3{font-size:99.840162pt;}
.fs0{font-size:183.680365pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:27.200074pt;}
.y44{bottom:70.080079pt;}
.y55{bottom:71.680054pt;}
.y65{bottom:72.000000pt;}
.y54{bottom:82.720093pt;}
.y64{bottom:84.000000pt;}
.ybb{bottom:88.480103pt;}
.y53{bottom:93.760010pt;}
.y63{bottom:96.000000pt;}
.yb9{bottom:96.320069pt;}
.yb1{bottom:101.440064pt;}
.y52{bottom:104.800049pt;}
.y62{bottom:108.000061pt;}
.yb2{bottom:108.640076pt;}
.y51{bottom:115.840088pt;}
.y61{bottom:120.000061pt;}
.yb3{bottom:123.040039pt;}
.y50{bottom:126.880066pt;}
.yb4{bottom:130.240052pt;}
.y60{bottom:132.000061pt;}
.yb5{bottom:137.440064pt;}
.y4f{bottom:137.920044pt;}
.y5f{bottom:144.000061pt;}
.yb6{bottom:144.640076pt;}
.y4e{bottom:148.960083pt;}
.yb7{bottom:151.840088pt;}
.y5e{bottom:156.000061pt;}
.yb8{bottom:159.040039pt;}
.y4d{bottom:160.000061pt;}
.yba{bottom:166.400086pt;}
.y5d{bottom:168.000061pt;}
.y4c{bottom:171.040039pt;}
.y5c{bottom:180.000061pt;}
.ye7{bottom:181.760071pt;}
.y4b{bottom:182.080079pt;}
.y5b{bottom:192.000061pt;}
.y4a{bottom:193.120057pt;}
.ye6{bottom:193.760071pt;}
.y5a{bottom:204.000061pt;}
.y49{bottom:204.160035pt;}
.yb0{bottom:213.280030pt;}
.y48{bottom:215.200074pt;}
.y59{bottom:216.000061pt;}
.y47{bottom:226.240052pt;}
.y58{bottom:228.000061pt;}
.ya5{bottom:228.160035pt;}
.y46{bottom:237.600037pt;}
.y57{bottom:240.000061pt;}
.ya4{bottom:242.880066pt;}
.y56{bottom:252.000061pt;}
.ya3{bottom:254.880066pt;}
.y37{bottom:256.160035pt;}
.yc4{bottom:265.600037pt;}
.ya2{bottom:266.880066pt;}
.y36{bottom:268.160035pt;}
.yc3{bottom:277.120057pt;}
.ya1{bottom:278.880066pt;}
.y35{bottom:280.160035pt;}
.yc2{bottom:288.640076pt;}
.ya0{bottom:290.880066pt;}
.y34{bottom:292.160035pt;}
.y9f{bottom:302.880066pt;}
.y33{bottom:304.160035pt;}
.yc1{bottom:304.960083pt;}
.y9e{bottom:314.880066pt;}
.y32{bottom:316.160035pt;}
.yc0{bottom:316.480565pt;}
.y9d{bottom:326.880066pt;}
.ybf{bottom:328.000061pt;}
.y31{bottom:328.160035pt;}
.y9c{bottom:338.880066pt;}
.ybe{bottom:339.520081pt;}
.y30{bottom:340.160035pt;}
.ybd{bottom:351.039846pt;}
.y2f{bottom:352.160035pt;}
.y43{bottom:353.280030pt;}
.y42{bottom:361.280030pt;}
.y2e{bottom:364.160035pt;}
.ybc{bottom:364.960083pt;}
.y41{bottom:369.280030pt;}
.y2d{bottom:376.160035pt;}
.ye5{bottom:378.720032pt;}
.ya9{bottom:382.880066pt;}
.ye4{bottom:386.720032pt;}
.y2c{bottom:388.160035pt;}
.yac{bottom:398.560059pt;}
.yaa{bottom:399.040039pt;}
.y2b{bottom:400.160035pt;}
.ydb{bottom:401.600037pt;}
.ye2{bottom:405.920044pt;}
.yda{bottom:408.000061pt;}
.yad{bottom:410.720032pt;}
.yaf{bottom:411.200074pt;}
.ya7{bottom:412.000061pt;}
.y2a{bottom:412.160035pt;}
.yd9{bottom:414.400086pt;}
.ya6{bottom:417.120057pt;}
.yae{bottom:417.600037pt;}
.yd8{bottom:420.800049pt;}
.ye3{bottom:421.761052pt;}
.ye1{bottom:423.360047pt;}
.y29{bottom:424.160035pt;}
.yd1{bottom:430.880066pt;}
.y28{bottom:436.160035pt;}
.yab{bottom:436.480042pt;}
.ye0{bottom:437.440064pt;}
.yd0{bottom:438.080079pt;}
.ydf{bottom:443.840088pt;}
.y27{bottom:448.160035pt;}
.yde{bottom:454.880066pt;}
.yd7{bottom:455.040039pt;}
.ya8{bottom:455.200074pt;}
.y26{bottom:460.160035pt;}
.ydd{bottom:461.280030pt;}
.yd6{bottom:465.760071pt;}
.y9b{bottom:466.720032pt;}
.y25{bottom:472.160035pt;}
.ydc{bottom:472.320069pt;}
.yd5{bottom:478.560059pt;}
.y9a{bottom:478.720032pt;}
.yd3{bottom:483.680054pt;}
.y24{bottom:484.160035pt;}
.y99{bottom:490.720032pt;}
.yd2{bottom:490.880066pt;}
.yd4{bottom:491.520081pt;}
.y23{bottom:496.160035pt;}
.y98{bottom:502.720032pt;}
.y22{bottom:508.160035pt;}
.ycb{bottom:512.320069pt;}
.y97{bottom:514.720032pt;}
.yca{bottom:519.520081pt;}
.y21{bottom:520.160035pt;}
.yc6{bottom:523.680054pt;}
.y96{bottom:526.720032pt;}
.y20{bottom:532.160035pt;}
.y95{bottom:538.720032pt;}
.y1f{bottom:544.160035pt;}
.y94{bottom:550.720032pt;}
.yce{bottom:552.320069pt;}
.ycf{bottom:556.000061pt;}
.y1e{bottom:556.160035pt;}
.ycd{bottom:559.520081pt;}
.yc7{bottom:559.840088pt;}
.y67{bottom:564.960083pt;}
.ycc{bottom:566.720032pt;}
.y1d{bottom:568.160035pt;}
.y66{bottom:572.960083pt;}
.y1c{bottom:580.160035pt;}
.yc9{bottom:589.600037pt;}
.y1b{bottom:592.160035pt;}
.yc5{bottom:593.600037pt;}
.y72{bottom:594.400086pt;}
.y93{bottom:595.840088pt;}
.yc8{bottom:596.800049pt;}
.y71{bottom:604.000061pt;}
.y1a{bottom:604.160035pt;}
.y92{bottom:613.120057pt;}
.y70{bottom:613.600068pt;}
.y19{bottom:616.160065pt;}
.y91{bottom:620.320069pt;}
.y7a{bottom:626.560059pt;}
.y18{bottom:628.160065pt;}
.y90{bottom:630.080048pt;}
.y6a{bottom:631.680054pt;}
.y79{bottom:632.960053pt;}
.y69{bottom:637.600068pt;}
.y78{bottom:639.360047pt;}
.y8f{bottom:639.520050pt;}
.y17{bottom:640.160065pt;}
.y8e{bottom:646.720063pt;}
.y77{bottom:647.034435pt;}
.y16{bottom:652.160065pt;}
.y8d{bottom:656.320069pt;}
.y8c{bottom:663.520050pt;}
.y15{bottom:664.160065pt;}
.y6d{bottom:671.200074pt;}
.y76{bottom:671.840058pt;}
.y8b{bottom:673.120057pt;}
.y14{bottom:676.160065pt;}
.y6c{bottom:676.960053pt;}
.y75{bottom:678.240052pt;}
.y8a{bottom:680.320069pt;}
.y74{bottom:684.640046pt;}
.y13{bottom:688.160065pt;}
.y89{bottom:690.080048pt;}
.y73{bottom:692.318544pt;}
.y12{bottom:700.160065pt;}
.y68{bottom:704.960053pt;}
.y40{bottom:711.360047pt;}
.y11{bottom:712.160065pt;}
.y6b{bottom:714.880066pt;}
.y7d{bottom:721.760071pt;}
.y10{bottom:724.160065pt;}
.y7c{bottom:728.160065pt;}
.y6e{bottom:729.280060pt;}
.y6f{bottom:729.760071pt;}
.y7b{bottom:735.679018pt;}
.yf{bottom:736.160065pt;}
.y88{bottom:738.880066pt;}
.ye{bottom:748.160065pt;}
.y80{bottom:751.680054pt;}
.y3f{bottom:760.000061pt;}
.yd{bottom:760.160065pt;}
.y7f{bottom:760.640046pt;}
.y87{bottom:761.120057pt;}
.y3e{bottom:772.000061pt;}
.yc{bottom:772.160065pt;}
.y86{bottom:773.760071pt;}
.y85{bottom:783.520050pt;}
.y3d{bottom:784.000061pt;}
.yb{bottom:784.160065pt;}
.y81{bottom:792.960053pt;}
.y3c{bottom:796.000061pt;}
.ya{bottom:796.160065pt;}
.y84{bottom:805.760071pt;}
.y82{bottom:807.360047pt;}
.y3b{bottom:808.000061pt;}
.y9{bottom:808.160065pt;}
.y3a{bottom:820.000061pt;}
.y8{bottom:820.160065pt;}
.y83{bottom:827.525120pt;}
.y39{bottom:832.000061pt;}
.y7{bottom:832.160065pt;}
.y38{bottom:844.000061pt;}
.y6{bottom:844.160065pt;}
.y7e{bottom:845.920044pt;}
.y45{bottom:872.802884pt;}
.y5{bottom:895.835626pt;}
.y4{bottom:925.914416pt;}
.y2{bottom:1016.962284pt;}
.y1{bottom:1048.478033pt;}
.h19{height:4.853125pt;}
.h4{height:7.554375pt;}
.h18{height:10.277813pt;}
.h11{height:11.023438pt;}
.h17{height:12.757812pt;}
.hc{height:13.867188pt;}
.h16{height:14.976562pt;}
.h10{height:18.304688pt;}
.h14{height:20.014688pt;}
.h15{height:20.523438pt;}
.h1a{height:21.632813pt;}
.hd{height:22.719375pt;}
.h8{height:23.231250pt;}
.hb{height:23.296875pt;}
.ha{height:26.550000pt;}
.h1d{height:27.046805pt;}
.he{height:27.046875pt;}
.h1c{height:27.656250pt;}
.h13{height:27.734375pt;}
.h7{height:28.762500pt;}
.h6{height:28.843750pt;}
.h12{height:31.374028pt;}
.hf{height:32.411404pt;}
.h1b{height:36.749905pt;}
.h9{height:55.312357pt;}
.h3{height:75.778654pt;}
.h5{height:86.287640pt;}
.h2{height:159.195629pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:30.559999pt;}
.x1{left:36.951323pt;}
.x2a{left:176.160004pt;}
.x3{left:180.155930pt;}
.x19{left:181.119995pt;}
.x18{left:182.240005pt;}
.x22{left:183.839996pt;}
.x8{left:187.839996pt;}
.x9{left:191.360001pt;}
.x7{left:192.479996pt;}
.xa{left:193.919998pt;}
.x2b{left:197.759995pt;}
.x2c{left:214.880005pt;}
.xd{left:218.080002pt;}
.xe{left:221.279999pt;}
.x21{left:230.080002pt;}
.x1e{left:231.839996pt;}
.xc{left:234.880005pt;}
.x1f{left:235.839996pt;}
.x2d{left:252.160004pt;}
.x1d{left:263.679993pt;}
.x1c{left:269.920013pt;}
.xf{left:279.839996pt;}
.x2f{left:286.559998pt;}
.x2e{left:288.160004pt;}
.x6{left:294.720001pt;}
.x20{left:298.559998pt;}
.x1b{left:330.399994pt;}
.x1a{left:332.799988pt;}
.xb{left:339.359985pt;}
.x24{left:365.119995pt;}
.x23{left:368.640015pt;}
.x2{left:395.040009pt;}
.x27{left:396.160004pt;}
.x26{left:401.440002pt;}
.x25{left:405.600006pt;}
.x10{left:414.721506pt;}
.x29{left:446.239990pt;}
.x28{left:449.440002pt;}
.x5{left:477.119995pt;}
.x30{left:486.079987pt;}
.x3f{left:494.080757pt;}
.x3a{left:507.359985pt;}
.x3d{left:518.559998pt;}
.x3e{left:520.799988pt;}
.x13{left:527.039978pt;}
.x14{left:531.200012pt;}
.x11{left:552.000000pt;}
.x15{left:563.514181pt;}
.x36{left:567.840027pt;}
.x3b{left:582.559998pt;}
.x12{left:599.359985pt;}
.x17{left:631.840027pt;}
.x16{left:637.599976pt;}
.x3c{left:650.880005pt;}
.x38{left:654.400024pt;}
.x39{left:656.000000pt;}
.x37{left:662.880005pt;}
.x33{left:674.239990pt;}
.x31{left:677.119995pt;}
.x32{left:680.799988pt;}
.x34{left:713.119995pt;}
.x35{left:715.200012pt;}
}




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