
    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_4c698c7da26ba3e8e1d18b37.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050000;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_69ae481c9889e555441a7741.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_baad49d82a21c8937999e4ae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.706543;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_de50a7c1c41c0591dcc9d620.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_4921515a91e48602e305d012.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_3dffcc19e036e921d998579d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_af46f2fce02f7b1840d25eff.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b8804cabb0c710f2e764417f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_e47169cc1ad728a72630c173.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.900000;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_886e5d8453096db4ac8ad2e4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_20b83efeb539d41895232a1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.724000;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_85120f70ba6ae67d7b49b6ae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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:ffd;src:url('chunks/assets/font_996517e37934f8b700bed189.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,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);}
.m2{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;}
.ls3e{letter-spacing:-1.663200px;}
.ls41{letter-spacing:-1.614816px;}
.ls40{letter-spacing:-1.584576px;}
.ls35{letter-spacing:-1.536192px;}
.ls39{letter-spacing:-1.518048px;}
.ls3a{letter-spacing:-1.499904px;}
.ls23{letter-spacing:-1.475712px;}
.ls3c{letter-spacing:-1.457568px;}
.ls36{letter-spacing:-1.439424px;}
.ls3d{letter-spacing:-1.421280px;}
.ls3f{letter-spacing:-1.378944px;}
.ls25{letter-spacing:-1.377792px;}
.ls24{letter-spacing:-1.371168px;}
.ls38{letter-spacing:-1.360800px;}
.ls26{letter-spacing:-1.344672px;}
.ls3b{letter-spacing:-1.342656px;}
.ls37{letter-spacing:-1.318464px;}
.ls11{letter-spacing:-1.209600px;}
.ls12{letter-spacing:-1.202400px;}
.ls10{letter-spacing:-1.188000px;}
.lse{letter-spacing:-0.338688px;}
.lsf{letter-spacing:-0.320544px;}
.ls17{letter-spacing:-0.221760px;}
.lsc{letter-spacing:-0.178848px;}
.ls18{letter-spacing:-0.177408px;}
.ls6{letter-spacing:-0.145728px;}
.lsb{letter-spacing:-0.132480px;}
.lsa{letter-spacing:-0.066240px;}
.ls7{letter-spacing:-0.059616px;}
.ls8{letter-spacing:-0.052992px;}
.lsd{letter-spacing:-0.021600px;}
.ls9{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.058464px;}
.ls13{letter-spacing:0.202752px;}
.ls30{letter-spacing:0.655200px;}
.ls21{letter-spacing:0.849600px;}
.ls3{letter-spacing:0.909648px;}
.ls1e{letter-spacing:1.078128px;}
.ls16{letter-spacing:1.932480px;}
.ls14{letter-spacing:2.605968px;}
.ls2f{letter-spacing:2.617920px;}
.ls2c{letter-spacing:3.479040px;}
.ls1f{letter-spacing:4.099968px;}
.ls2d{letter-spacing:5.107680px;}
.ls1b{letter-spacing:6.855840px;}
.ls27{letter-spacing:7.999200px;}
.ls15{letter-spacing:8.303040px;}
.ls22{letter-spacing:8.661600px;}
.ls2e{letter-spacing:9.132480px;}
.ls19{letter-spacing:9.338256px;}
.ls1a{letter-spacing:9.872640px;}
.ls4{letter-spacing:10.120320px;}
.ls33{letter-spacing:10.226880px;}
.ls28{letter-spacing:10.445760px;}
.ls32{letter-spacing:10.693440px;}
.ls31{letter-spacing:10.694736px;}
.ls20{letter-spacing:10.906560px;}
.ls29{letter-spacing:11.007360px;}
.ls2b{letter-spacing:12.492288px;}
.ls2{letter-spacing:13.479840px;}
.ls34{letter-spacing:13.870080px;}
.ls1c{letter-spacing:15.802560px;}
.ls2a{letter-spacing:18.128880px;}
.ls0{letter-spacing:26.021520px;}
.ls1{letter-spacing:26.022240px;}
.ls1d{letter-spacing:40.599360px;}
.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:-18.414720px;}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.813440px;}
.ws3{word-spacing:-16.812000px;}
.ws6{word-spacing:-16.797600px;}
.ws4{word-spacing:-16.790400px;}
.ws8{word-spacing:-15.337728px;}
.wsc{word-spacing:-15.120000px;}
.ws2{word-spacing:-14.799456px;}
.wse{word-spacing:-13.777344px;}
.wsd{word-spacing:-13.759200px;}
.wsf{word-spacing:-13.741056px;}
.wsa{word-spacing:-13.680576px;}
.wsb{word-spacing:-13.620096px;}
.ws12{word-spacing:-13.601952px;}
.ws11{word-spacing:-13.583808px;}
.ws10{word-spacing:-13.535424px;}
.ws1{word-spacing:-0.050400px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-2.174112px;}
._0{margin-left:-1.009872px;}
._1{width:1.057104px;}
._3{width:2.376000px;}
._5{width:3.520368px;}
._7{width:4.680000px;}
._d{width:5.832000px;}
._11{width:7.645248px;}
._c{width:9.346752px;}
._9{width:11.088000px;}
._4{width:12.168000px;}
._e{width:13.268304px;}
._6{width:14.328000px;}
._8{width:15.408000px;}
._25{width:16.522128px;}
._f{width:18.201600px;}
._13{width:19.396800px;}
._12{width:20.808000px;}
._17{width:22.752000px;}
._a{width:23.904000px;}
._b{width:25.435008px;}
._2{width:27.124992px;}
._16{width:28.368000px;}
._14{width:30.816000px;}
._10{width:31.968000px;}
._15{width:34.488000px;}
._19{width:38.952000px;}
._1a{width:40.248000px;}
._18{width:41.832000px;}
._1f{width:43.424640px;}
._21{width:65.564352px;}
._20{width:66.890880px;}
._22{width:72.515520px;}
._1e{width:81.316656px;}
._23{width:100.246896px;}
._24{width:101.268576px;}
._1c{width:108.185040px;}
._1d{width:109.406736px;}
.fc2{color:rgb(28,30,41);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs4{font-size:60.480000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:5.460000px;}
.y5{bottom:52.500000px;}
.y4{bottom:57.960000px;}
.y35{bottom:101.520000px;}
.y5c{bottom:108.000000px;}
.yf7{bottom:119.160000px;}
.y34{bottom:122.400000px;}
.y8e{bottom:125.640000px;}
.y5b{bottom:128.880000px;}
.yf6{bottom:136.440000px;}
.ybb{bottom:138.240000px;}
.y33{bottom:142.920000px;}
.y8d{bottom:146.160000px;}
.y5a{bottom:149.400000px;}
.yf5{bottom:153.720000px;}
.yba{bottom:155.520000px;}
.y32{bottom:163.800000px;}
.y8c{bottom:167.040000px;}
.y59{bottom:170.280000px;}
.yf4{bottom:171.000000px;}
.yb9{bottom:172.800000px;}
.y31{bottom:184.320000px;}
.y8b{bottom:187.560000px;}
.yf3{bottom:188.280000px;}
.yb8{bottom:190.080000px;}
.y58{bottom:190.800000px;}
.y30{bottom:205.200000px;}
.yf2{bottom:205.560000px;}
.y8a{bottom:208.440000px;}
.y57{bottom:211.680000px;}
.yb7{bottom:219.960000px;}
.yf1{bottom:222.840000px;}
.y2f{bottom:225.720000px;}
.y89{bottom:228.960000px;}
.y56{bottom:232.200000px;}
.yf0{bottom:240.120000px;}
.yb6{bottom:240.840000px;}
.y2e{bottom:246.600000px;}
.y88{bottom:249.840000px;}
.y55{bottom:253.080000px;}
.yef{bottom:257.040000px;}
.yb5{bottom:261.720000px;}
.y2d{bottom:267.120000px;}
.y87{bottom:270.360000px;}
.y54{bottom:273.600000px;}
.yee{bottom:274.320000px;}
.yb4{bottom:282.240000px;}
.y2c{bottom:288.000000px;}
.y86{bottom:291.240000px;}
.yed{bottom:291.600000px;}
.y53{bottom:294.480000px;}
.yb3{bottom:303.120000px;}
.y2b{bottom:308.520000px;}
.yec{bottom:308.880000px;}
.y85{bottom:311.760000px;}
.y52{bottom:315.000000px;}
.yb2{bottom:323.640000px;}
.yeb{bottom:326.160000px;}
.y2a{bottom:329.400000px;}
.y84{bottom:332.640000px;}
.y51{bottom:335.880000px;}
.yea{bottom:343.440000px;}
.yb1{bottom:344.520000px;}
.y29{bottom:349.920000px;}
.y83{bottom:353.160000px;}
.y50{bottom:356.400000px;}
.ye9{bottom:360.720000px;}
.yb0{bottom:365.040000px;}
.y28{bottom:370.800000px;}
.y82{bottom:374.040000px;}
.y4f{bottom:377.280000px;}
.ye8{bottom:378.000000px;}
.yaf{bottom:385.920000px;}
.ya4{bottom:394.560000px;}
.ye7{bottom:395.280000px;}
.y4e{bottom:397.800000px;}
.y27{bottom:403.200000px;}
.y81{bottom:406.080000px;}
.yae{bottom:406.440000px;}
.y63{bottom:409.680000px;}
.ye6{bottom:412.560000px;}
.ya3{bottom:415.440000px;}
.y4d{bottom:418.680000px;}
.y80{bottom:427.320000px;}
.ye5{bottom:429.840000px;}
.y62{bottom:430.560000px;}
.y26{bottom:432.720000px;}
.ya2{bottom:435.960000px;}
.y4c{bottom:439.200000px;}
.ye4{bottom:447.120000px;}
.y7f{bottom:447.840000px;}
.y61{bottom:451.440000px;}
.ya1{bottom:456.840000px;}
.y4b{bottom:460.080000px;}
.y25{bottom:462.600000px;}
.ye3{bottom:464.040000px;}
.y7e{bottom:468.720000px;}
.y60{bottom:471.960000px;}
.ya0{bottom:477.360000px;}
.y4a{bottom:480.600000px;}
.ye2{bottom:481.320000px;}
.y24{bottom:483.480000px;}
.y7d{bottom:489.240000px;}
.y5f{bottom:492.840000px;}
.y9f{bottom:498.240000px;}
.ye1{bottom:498.600000px;}
.y49{bottom:501.480000px;}
.y7c{bottom:510.120000px;}
.y23{bottom:513.000000px;}
.y5e{bottom:513.360000px;}
.ye0{bottom:515.880000px;}
.y9e{bottom:518.760000px;}
.y48{bottom:522.000000px;}
.y7b{bottom:530.640000px;}
.ydf{bottom:533.160000px;}
.y22{bottom:533.880000px;}
.y5d{bottom:534.240000px;}
.yde{bottom:550.440000px;}
.y9d{bottom:551.160000px;}
.y7a{bottom:551.520000px;}
.y47{bottom:554.400000px;}
.y21{bottom:554.760000px;}
.ydd{bottom:567.720000px;}
.y79{bottom:572.040000px;}
.y20{bottom:575.280000px;}
.y46{bottom:575.640000px;}
.yad{bottom:583.920000px;}
.ydc{bottom:585.000000px;}
.y78{bottom:592.920000px;}
.y1f{bottom:596.160000px;}
.ydb{bottom:602.280000px;}
.yac{bottom:604.800000px;}
.y77{bottom:613.440000px;}
.y1e{bottom:616.680000px;}
.y45{bottom:617.040000px;}
.yda{bottom:619.560000px;}
.yab{bottom:625.680000px;}
.y76{bottom:634.320000px;}
.yd9{bottom:636.840000px;}
.y1d{bottom:637.560000px;}
.yaa{bottom:646.200000px;}
.yd8{bottom:653.760000px;}
.y75{bottom:654.840000px;}
.y1c{bottom:658.080000px;}
.y44{bottom:658.440000px;}
.ya9{bottom:667.080000px;}
.yd7{bottom:671.040000px;}
.y74{bottom:675.720000px;}
.y1b{bottom:678.960000px;}
.ya8{bottom:687.600000px;}
.yd6{bottom:688.320000px;}
.y73{bottom:696.240000px;}
.y1a{bottom:699.480000px;}
.y43{bottom:699.840000px;}
.yd5{bottom:705.600000px;}
.ya7{bottom:708.480000px;}
.y9c{bottom:717.120000px;}
.y19{bottom:720.360000px;}
.yd4{bottom:722.880000px;}
.y72{bottom:728.640000px;}
.ya6{bottom:729.000000px;}
.y9b{bottom:737.640000px;}
.yd3{bottom:740.160000px;}
.y18{bottom:740.880000px;}
.y42{bottom:741.240000px;}
.y71{bottom:749.880000px;}
.yd2{bottom:757.440000px;}
.y9a{bottom:758.520000px;}
.y17{bottom:761.760000px;}
.y70{bottom:770.400000px;}
.yd1{bottom:774.720000px;}
.y99{bottom:779.040000px;}
.y16{bottom:782.280000px;}
.y6f{bottom:791.280000px;}
.yd0{bottom:792.000000px;}
.y98{bottom:799.920000px;}
.y15{bottom:803.160000px;}
.ycf{bottom:809.280000px;}
.y6e{bottom:811.800000px;}
.y97{bottom:820.440000px;}
.y14{bottom:823.680000px;}
.yce{bottom:826.560000px;}
.y6d{bottom:832.680000px;}
.y96{bottom:841.320000px;}
.ycd{bottom:843.480000px;}
.y13{bottom:844.560000px;}
.y6c{bottom:853.200000px;}
.ycc{bottom:860.760000px;}
.y12{bottom:865.080000px;}
.y95{bottom:873.720000px;}
.y6b{bottom:874.080000px;}
.ycb{bottom:878.040000px;}
.y11{bottom:885.960000px;}
.y6a{bottom:894.600000px;}
.yca{bottom:895.320000px;}
.y10{bottom:906.480000px;}
.yc9{bottom:912.600000px;}
.y69{bottom:915.480000px;}
.yf{bottom:927.360000px;}
.yc8{bottom:929.880000px;}
.y68{bottom:936.000000px;}
.yc7{bottom:947.160000px;}
.ye{bottom:947.880000px;}
.y67{bottom:956.880000px;}
.yc6{bottom:964.440000px;}
.yd{bottom:967.680000px;}
.y41{bottom:968.760000px;}
.y66{bottom:977.400000px;}
.yc5{bottom:981.720000px;}
.yc{bottom:984.960000px;}
.y40{bottom:989.280000px;}
.y65{bottom:998.280000px;}
.yc4{bottom:999.000000px;}
.yb{bottom:1001.160000px;}
.y3f{bottom:1010.160000px;}
.ya{bottom:1014.480000px;}
.yc3{bottom:1016.280000px;}
.y94{bottom:1018.800000px;}
.y64{bottom:1030.320000px;}
.y3e{bottom:1030.680000px;}
.yc2{bottom:1033.560000px;}
.y93{bottom:1039.680000px;}
.yc1{bottom:1050.480000px;}
.y3d{bottom:1051.560000px;}
.y9{bottom:1054.800000px;}
.y92{bottom:1060.200000px;}
.yc0{bottom:1067.760000px;}
.ya5{bottom:1071.720000px;}
.y3c{bottom:1072.080000px;}
.y91{bottom:1081.080000px;}
.ybf{bottom:1085.040000px;}
.y8{bottom:1086.120000px;}
.y3b{bottom:1092.960000px;}
.y90{bottom:1101.600000px;}
.ybe{bottom:1102.320000px;}
.y3a{bottom:1113.480000px;}
.y7{bottom:1117.080000px;}
.ybd{bottom:1119.600000px;}
.y8f{bottom:1134.000000px;}
.y39{bottom:1134.360000px;}
.ybc{bottom:1136.880000px;}
.y3{bottom:1146.600000px;}
.y38{bottom:1165.680000px;}
.y2{bottom:1168.560000px;}
.y1{bottom:1190.880000px;}
.y37{bottom:1191.240000px;}
.y36{bottom:1191.600000px;}
.h5{height:24.000000px;}
.h8{height:25.913672px;}
.h9{height:41.993438px;}
.hd{height:42.022969px;}
.h3{height:44.149219px;}
.hb{height:48.660480px;}
.hc{height:48.761719px;}
.h7{height:48.796875px;}
.ha{height:50.027344px;}
.h4{height:50.308594px;}
.h2{height:50.872320px;}
.h6{height:73.195313px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w2{width:31.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:127.439928px;}
.x2{left:129.266964px;}
.xd{left:134.969256px;}
.x7{left:153.285264px;}
.x4{left:154.439928px;}
.x6{left:162.625860px;}
.xb{left:169.965072px;}
.xa{left:199.695924px;}
.x1{left:242.852076px;}
.x8{left:361.407960px;}
.x3{left:446.152320px;}
.xc{left:534.392985px;}
.xe{left:624.798720px;}
.x5{left:735.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3e{letter-spacing:-1.478400pt;}
.ls41{letter-spacing:-1.435392pt;}
.ls40{letter-spacing:-1.408512pt;}
.ls35{letter-spacing:-1.365504pt;}
.ls39{letter-spacing:-1.349376pt;}
.ls3a{letter-spacing:-1.333248pt;}
.ls23{letter-spacing:-1.311744pt;}
.ls3c{letter-spacing:-1.295616pt;}
.ls36{letter-spacing:-1.279488pt;}
.ls3d{letter-spacing:-1.263360pt;}
.ls3f{letter-spacing:-1.225728pt;}
.ls25{letter-spacing:-1.224704pt;}
.ls24{letter-spacing:-1.218816pt;}
.ls38{letter-spacing:-1.209600pt;}
.ls26{letter-spacing:-1.195264pt;}
.ls3b{letter-spacing:-1.193472pt;}
.ls37{letter-spacing:-1.171968pt;}
.ls11{letter-spacing:-1.075200pt;}
.ls12{letter-spacing:-1.068800pt;}
.ls10{letter-spacing:-1.056000pt;}
.lse{letter-spacing:-0.301056pt;}
.lsf{letter-spacing:-0.284928pt;}
.ls17{letter-spacing:-0.197120pt;}
.lsc{letter-spacing:-0.158976pt;}
.ls18{letter-spacing:-0.157696pt;}
.ls6{letter-spacing:-0.129536pt;}
.lsb{letter-spacing:-0.117760pt;}
.lsa{letter-spacing:-0.058880pt;}
.ls7{letter-spacing:-0.052992pt;}
.ls8{letter-spacing:-0.047104pt;}
.lsd{letter-spacing:-0.019200pt;}
.ls9{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.051968pt;}
.ls13{letter-spacing:0.180224pt;}
.ls30{letter-spacing:0.582400pt;}
.ls21{letter-spacing:0.755200pt;}
.ls3{letter-spacing:0.808576pt;}
.ls1e{letter-spacing:0.958336pt;}
.ls16{letter-spacing:1.717760pt;}
.ls14{letter-spacing:2.316416pt;}
.ls2f{letter-spacing:2.327040pt;}
.ls2c{letter-spacing:3.092480pt;}
.ls1f{letter-spacing:3.644416pt;}
.ls2d{letter-spacing:4.540160pt;}
.ls1b{letter-spacing:6.094080pt;}
.ls27{letter-spacing:7.110400pt;}
.ls15{letter-spacing:7.380480pt;}
.ls22{letter-spacing:7.699200pt;}
.ls2e{letter-spacing:8.117760pt;}
.ls19{letter-spacing:8.300672pt;}
.ls1a{letter-spacing:8.775680pt;}
.ls4{letter-spacing:8.995840pt;}
.ls33{letter-spacing:9.090560pt;}
.ls28{letter-spacing:9.285120pt;}
.ls32{letter-spacing:9.505280pt;}
.ls31{letter-spacing:9.506432pt;}
.ls20{letter-spacing:9.694720pt;}
.ls29{letter-spacing:9.784320pt;}
.ls2b{letter-spacing:11.104256pt;}
.ls2{letter-spacing:11.982080pt;}
.ls34{letter-spacing:12.328960pt;}
.ls1c{letter-spacing:14.046720pt;}
.ls2a{letter-spacing:16.114560pt;}
.ls0{letter-spacing:23.130240pt;}
.ls1{letter-spacing:23.130880pt;}
.ls1d{letter-spacing:36.088320pt;}
.ws0{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.945280pt;}
.ws3{word-spacing:-14.944000pt;}
.ws6{word-spacing:-14.931200pt;}
.ws4{word-spacing:-14.924800pt;}
.ws8{word-spacing:-13.633536pt;}
.wsc{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.155072pt;}
.wse{word-spacing:-12.246528pt;}
.wsd{word-spacing:-12.230400pt;}
.wsf{word-spacing:-12.214272pt;}
.wsa{word-spacing:-12.160512pt;}
.wsb{word-spacing:-12.106752pt;}
.ws12{word-spacing:-12.090624pt;}
.ws11{word-spacing:-12.074496pt;}
.ws10{word-spacing:-12.031488pt;}
.ws1{word-spacing:-0.044800pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-1.932544pt;}
._0{margin-left:-0.897664pt;}
._1{width:0.939648pt;}
._3{width:2.112000pt;}
._5{width:3.129216pt;}
._7{width:4.160000pt;}
._d{width:5.184000pt;}
._11{width:6.795776pt;}
._c{width:8.308224pt;}
._9{width:9.856000pt;}
._4{width:10.816000pt;}
._e{width:11.794048pt;}
._6{width:12.736000pt;}
._8{width:13.696000pt;}
._25{width:14.686336pt;}
._f{width:16.179200pt;}
._13{width:17.241600pt;}
._12{width:18.496000pt;}
._17{width:20.224000pt;}
._a{width:21.248000pt;}
._b{width:22.608896pt;}
._2{width:24.111104pt;}
._16{width:25.216000pt;}
._14{width:27.392000pt;}
._10{width:28.416000pt;}
._15{width:30.656000pt;}
._19{width:34.624000pt;}
._1a{width:35.776000pt;}
._18{width:37.184000pt;}
._1f{width:38.599680pt;}
._21{width:58.279424pt;}
._20{width:59.458560pt;}
._22{width:64.458240pt;}
._1e{width:72.281472pt;}
._23{width:89.108352pt;}
._24{width:90.016512pt;}
._1c{width:96.164480pt;}
._1d{width:97.250432pt;}
.fs3{font-size:34.560000pt;}
.fs4{font-size:53.760000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.853333pt;}
.y5{bottom:46.666667pt;}
.y4{bottom:51.520000pt;}
.y35{bottom:90.240000pt;}
.y5c{bottom:96.000000pt;}
.yf7{bottom:105.920000pt;}
.y34{bottom:108.800000pt;}
.y8e{bottom:111.680000pt;}
.y5b{bottom:114.560000pt;}
.yf6{bottom:121.280000pt;}
.ybb{bottom:122.880000pt;}
.y33{bottom:127.040000pt;}
.y8d{bottom:129.920000pt;}
.y5a{bottom:132.800000pt;}
.yf5{bottom:136.640000pt;}
.yba{bottom:138.240000pt;}
.y32{bottom:145.600000pt;}
.y8c{bottom:148.480000pt;}
.y59{bottom:151.360000pt;}
.yf4{bottom:152.000000pt;}
.yb9{bottom:153.600000pt;}
.y31{bottom:163.840000pt;}
.y8b{bottom:166.720000pt;}
.yf3{bottom:167.360000pt;}
.yb8{bottom:168.960000pt;}
.y58{bottom:169.600000pt;}
.y30{bottom:182.400000pt;}
.yf2{bottom:182.720000pt;}
.y8a{bottom:185.280000pt;}
.y57{bottom:188.160000pt;}
.yb7{bottom:195.520000pt;}
.yf1{bottom:198.080000pt;}
.y2f{bottom:200.640000pt;}
.y89{bottom:203.520000pt;}
.y56{bottom:206.400000pt;}
.yf0{bottom:213.440000pt;}
.yb6{bottom:214.080000pt;}
.y2e{bottom:219.200000pt;}
.y88{bottom:222.080000pt;}
.y55{bottom:224.960000pt;}
.yef{bottom:228.480000pt;}
.yb5{bottom:232.640000pt;}
.y2d{bottom:237.440000pt;}
.y87{bottom:240.320000pt;}
.y54{bottom:243.200000pt;}
.yee{bottom:243.840000pt;}
.yb4{bottom:250.880000pt;}
.y2c{bottom:256.000000pt;}
.y86{bottom:258.880000pt;}
.yed{bottom:259.200000pt;}
.y53{bottom:261.760000pt;}
.yb3{bottom:269.440000pt;}
.y2b{bottom:274.240000pt;}
.yec{bottom:274.560000pt;}
.y85{bottom:277.120000pt;}
.y52{bottom:280.000000pt;}
.yb2{bottom:287.680000pt;}
.yeb{bottom:289.920000pt;}
.y2a{bottom:292.800000pt;}
.y84{bottom:295.680000pt;}
.y51{bottom:298.560000pt;}
.yea{bottom:305.280000pt;}
.yb1{bottom:306.240000pt;}
.y29{bottom:311.040000pt;}
.y83{bottom:313.920000pt;}
.y50{bottom:316.800000pt;}
.ye9{bottom:320.640000pt;}
.yb0{bottom:324.480000pt;}
.y28{bottom:329.600000pt;}
.y82{bottom:332.480000pt;}
.y4f{bottom:335.360000pt;}
.ye8{bottom:336.000000pt;}
.yaf{bottom:343.040000pt;}
.ya4{bottom:350.720000pt;}
.ye7{bottom:351.360000pt;}
.y4e{bottom:353.600000pt;}
.y27{bottom:358.400000pt;}
.y81{bottom:360.960000pt;}
.yae{bottom:361.280000pt;}
.y63{bottom:364.160000pt;}
.ye6{bottom:366.720000pt;}
.ya3{bottom:369.280000pt;}
.y4d{bottom:372.160000pt;}
.y80{bottom:379.840000pt;}
.ye5{bottom:382.080000pt;}
.y62{bottom:382.720000pt;}
.y26{bottom:384.640000pt;}
.ya2{bottom:387.520000pt;}
.y4c{bottom:390.400000pt;}
.ye4{bottom:397.440000pt;}
.y7f{bottom:398.080000pt;}
.y61{bottom:401.280000pt;}
.ya1{bottom:406.080000pt;}
.y4b{bottom:408.960000pt;}
.y25{bottom:411.200000pt;}
.ye3{bottom:412.480000pt;}
.y7e{bottom:416.640000pt;}
.y60{bottom:419.520000pt;}
.ya0{bottom:424.320000pt;}
.y4a{bottom:427.200000pt;}
.ye2{bottom:427.840000pt;}
.y24{bottom:429.760000pt;}
.y7d{bottom:434.880000pt;}
.y5f{bottom:438.080000pt;}
.y9f{bottom:442.880000pt;}
.ye1{bottom:443.200000pt;}
.y49{bottom:445.760000pt;}
.y7c{bottom:453.440000pt;}
.y23{bottom:456.000000pt;}
.y5e{bottom:456.320000pt;}
.ye0{bottom:458.560000pt;}
.y9e{bottom:461.120000pt;}
.y48{bottom:464.000000pt;}
.y7b{bottom:471.680000pt;}
.ydf{bottom:473.920000pt;}
.y22{bottom:474.560000pt;}
.y5d{bottom:474.880000pt;}
.yde{bottom:489.280000pt;}
.y9d{bottom:489.920000pt;}
.y7a{bottom:490.240000pt;}
.y47{bottom:492.800000pt;}
.y21{bottom:493.120000pt;}
.ydd{bottom:504.640000pt;}
.y79{bottom:508.480000pt;}
.y20{bottom:511.360000pt;}
.y46{bottom:511.680000pt;}
.yad{bottom:519.040000pt;}
.ydc{bottom:520.000000pt;}
.y78{bottom:527.040000pt;}
.y1f{bottom:529.920000pt;}
.ydb{bottom:535.360000pt;}
.yac{bottom:537.600000pt;}
.y77{bottom:545.280000pt;}
.y1e{bottom:548.160000pt;}
.y45{bottom:548.480000pt;}
.yda{bottom:550.720000pt;}
.yab{bottom:556.160000pt;}
.y76{bottom:563.840000pt;}
.yd9{bottom:566.080000pt;}
.y1d{bottom:566.720000pt;}
.yaa{bottom:574.400000pt;}
.yd8{bottom:581.120000pt;}
.y75{bottom:582.080000pt;}
.y1c{bottom:584.960000pt;}
.y44{bottom:585.280000pt;}
.ya9{bottom:592.960000pt;}
.yd7{bottom:596.480000pt;}
.y74{bottom:600.640000pt;}
.y1b{bottom:603.520000pt;}
.ya8{bottom:611.200000pt;}
.yd6{bottom:611.840000pt;}
.y73{bottom:618.880000pt;}
.y1a{bottom:621.760000pt;}
.y43{bottom:622.080000pt;}
.yd5{bottom:627.200000pt;}
.ya7{bottom:629.760000pt;}
.y9c{bottom:637.440000pt;}
.y19{bottom:640.320000pt;}
.yd4{bottom:642.560000pt;}
.y72{bottom:647.680000pt;}
.ya6{bottom:648.000000pt;}
.y9b{bottom:655.680000pt;}
.yd3{bottom:657.920000pt;}
.y18{bottom:658.560000pt;}
.y42{bottom:658.880000pt;}
.y71{bottom:666.560000pt;}
.yd2{bottom:673.280000pt;}
.y9a{bottom:674.240000pt;}
.y17{bottom:677.120000pt;}
.y70{bottom:684.800000pt;}
.yd1{bottom:688.640000pt;}
.y99{bottom:692.480000pt;}
.y16{bottom:695.360000pt;}
.y6f{bottom:703.360000pt;}
.yd0{bottom:704.000000pt;}
.y98{bottom:711.040000pt;}
.y15{bottom:713.920000pt;}
.ycf{bottom:719.360000pt;}
.y6e{bottom:721.600000pt;}
.y97{bottom:729.280000pt;}
.y14{bottom:732.160000pt;}
.yce{bottom:734.720000pt;}
.y6d{bottom:740.160000pt;}
.y96{bottom:747.840000pt;}
.ycd{bottom:749.760000pt;}
.y13{bottom:750.720000pt;}
.y6c{bottom:758.400000pt;}
.ycc{bottom:765.120000pt;}
.y12{bottom:768.960000pt;}
.y95{bottom:776.640000pt;}
.y6b{bottom:776.960000pt;}
.ycb{bottom:780.480000pt;}
.y11{bottom:787.520000pt;}
.y6a{bottom:795.200000pt;}
.yca{bottom:795.840000pt;}
.y10{bottom:805.760000pt;}
.yc9{bottom:811.200000pt;}
.y69{bottom:813.760000pt;}
.yf{bottom:824.320000pt;}
.yc8{bottom:826.560000pt;}
.y68{bottom:832.000000pt;}
.yc7{bottom:841.920000pt;}
.ye{bottom:842.560000pt;}
.y67{bottom:850.560000pt;}
.yc6{bottom:857.280000pt;}
.yd{bottom:860.160000pt;}
.y41{bottom:861.120000pt;}
.y66{bottom:868.800000pt;}
.yc5{bottom:872.640000pt;}
.yc{bottom:875.520000pt;}
.y40{bottom:879.360000pt;}
.y65{bottom:887.360000pt;}
.yc4{bottom:888.000000pt;}
.yb{bottom:889.920000pt;}
.y3f{bottom:897.920000pt;}
.ya{bottom:901.760000pt;}
.yc3{bottom:903.360000pt;}
.y94{bottom:905.600000pt;}
.y64{bottom:915.840000pt;}
.y3e{bottom:916.160000pt;}
.yc2{bottom:918.720000pt;}
.y93{bottom:924.160000pt;}
.yc1{bottom:933.760000pt;}
.y3d{bottom:934.720000pt;}
.y9{bottom:937.600000pt;}
.y92{bottom:942.400000pt;}
.yc0{bottom:949.120000pt;}
.ya5{bottom:952.640000pt;}
.y3c{bottom:952.960000pt;}
.y91{bottom:960.960000pt;}
.ybf{bottom:964.480000pt;}
.y8{bottom:965.440000pt;}
.y3b{bottom:971.520000pt;}
.y90{bottom:979.200000pt;}
.ybe{bottom:979.840000pt;}
.y3a{bottom:989.760000pt;}
.y7{bottom:992.960000pt;}
.ybd{bottom:995.200000pt;}
.y8f{bottom:1008.000000pt;}
.y39{bottom:1008.320000pt;}
.ybc{bottom:1010.560000pt;}
.y3{bottom:1019.200000pt;}
.y38{bottom:1036.160000pt;}
.y2{bottom:1038.720000pt;}
.y1{bottom:1058.560000pt;}
.y37{bottom:1058.880000pt;}
.y36{bottom:1059.200000pt;}
.h5{height:21.333333pt;}
.h8{height:23.034375pt;}
.h9{height:37.327500pt;}
.hd{height:37.353750pt;}
.h3{height:39.243750pt;}
.hb{height:43.253760pt;}
.hc{height:43.343750pt;}
.h7{height:43.375000pt;}
.ha{height:44.468750pt;}
.h4{height:44.718750pt;}
.h2{height:45.219840pt;}
.h6{height:65.062500pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w2{width:28.000000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:113.279936pt;}
.x2{left:114.903968pt;}
.xd{left:119.972672pt;}
.x7{left:136.253568pt;}
.x4{left:137.279936pt;}
.x6{left:144.556320pt;}
.xb{left:151.080064pt;}
.xa{left:177.507488pt;}
.x1{left:215.868512pt;}
.x8{left:321.251520pt;}
.x3{left:396.579840pt;}
.xc{left:475.015987pt;}
.xe{left:555.376640pt;}
.x5{left:653.333333pt;}
}




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