
    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_0e03c2deaa2a651859a7d800.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3bc46d0635c8fd132b15f5ac.woff')format("woff");}.ff2{font-family:ff2;line-height:0.690430;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_0e519cb6c1149de2b695056c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_d4aae2ebfa76d0adb6f24b96.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f6511da589291cbf18b4372d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d2e5fa145850fcd045f494a5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ca9b6ee4da28454be3d8d8a0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.692871;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_976a667590f90e6b0cc5ea64.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_e0f335e6ceaa1f11086cc247.woff')format("woff");}.ff9{font-family:ff9;line-height:0.884277;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_dc5959f4d1d72d39bf80abf1.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ea630eb604ed63798e5d6a2e.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_743b06d0e8f94e0d5928752a.woff')format("woff");}.ffc{font-family:ffc;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v3{vertical-align:-74.880000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsc{letter-spacing:-1.746000px;}
.lsd{letter-spacing:-1.590000px;}
.lsb{letter-spacing:-1.440000px;}
.ls1c{letter-spacing:-0.972000px;}
.ls5{letter-spacing:-0.936000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.423600px;}
.ls12{letter-spacing:-0.305400px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.020160px;}
.ls8{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.178560px;}
.ls7{letter-spacing:0.190560px;}
.ls1{letter-spacing:0.254880px;}
.ls9{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.452160px;}
.ls10{letter-spacing:0.630720px;}
.ls2{letter-spacing:0.642720px;}
.ls4{letter-spacing:0.648000px;}
.ls19{letter-spacing:0.720000px;}
.lse{letter-spacing:0.828000px;}
.ls6{letter-spacing:1.440000px;}
.lsf{letter-spacing:1.809120px;}
.ls16{letter-spacing:2.424000px;}
.ls15{letter-spacing:43.505280px;}
.ls1a{letter-spacing:53.758560px;}
.ls18{letter-spacing:82.558560px;}
.ls14{letter-spacing:546.756000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-66.240000px;}
.ws14{word-spacing:-60.480000px;}
.ws0{word-spacing:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws7{word-spacing:-20.880000px;}
.ws5{word-spacing:-20.491354px;}
.ws2{word-spacing:-19.440000px;}
.wse{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.388000px;}
.ws6{word-spacing:-16.696659px;}
.ws8{word-spacing:-16.560000px;}
.ws10{word-spacing:-15.140160px;}
.wsa{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.814000px;}
.wsf{word-spacing:-14.400000px;}
.ws11{word-spacing:-14.184000px;}
.ws12{word-spacing:-14.148000px;}
.ws13{word-spacing:-13.680000px;}
.ws3{word-spacing:-0.077760px;}
.ws4{word-spacing:-0.063360px;}
.ws9{word-spacing:0.000000px;}
._4{margin-left:-3.268800px;}
._0{margin-left:-1.728000px;}
._1{width:1.900800px;}
._5{width:2.952000px;}
._3{width:4.053600px;}
._a{width:5.334720px;}
._b{width:6.713280px;}
._d{width:7.785600px;}
._8{width:8.804160px;}
._7{width:10.013760px;}
._6{width:11.188800px;}
._9{width:12.856320px;}
._c{width:14.379840px;}
._11{width:15.442560px;}
._14{width:17.571360px;}
._e{width:18.757440px;}
._12{width:19.964160px;}
._13{width:21.352320px;}
._15{width:22.959360px;}
._16{width:24.649920px;}
._f{width:26.369280px;}
._10{width:28.019520px;}
._19{width:30.363840px;}
._17{width:31.541760px;}
._18{width:32.648160px;}
._1b{width:35.648640px;}
._1c{width:37.080000px;}
._1e{width:40.320960px;}
._1f{width:54.595200px;}
._2{width:94.822080px;}
._1d{width:148.029120px;}
._1a{width:751.849920px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:50.400000px;}
.fs0{font-size:57.600000px;}
.fs1{font-size:60.480000px;}
.fs8{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fsa{font-size:66.786636px;}
.fs7{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs9{font-size:81.965417px;}
.fsb{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y82{bottom:12.600000px;}
.y80{bottom:13.320000px;}
.y86{bottom:13.680000px;}
.y88{bottom:29.880000px;}
.y84{bottom:30.240000px;}
.y7f{bottom:30.600000px;}
.y85{bottom:30.960000px;}
.y2{bottom:111.276000px;}
.y65{bottom:139.716000px;}
.ya3{bottom:144.036000px;}
.yaa{bottom:150.510000px;}
.yf2{bottom:151.590000px;}
.yc0{bottom:151.950000px;}
.y64{bottom:158.790000px;}
.ya2{bottom:163.110000px;}
.yf1{bottom:168.870000px;}
.ybf{bottom:171.030000px;}
.y32{bottom:173.190000px;}
.y63{bottom:177.510000px;}
.ya1{bottom:182.190000px;}
.yf0{bottom:185.790000px;}
.ybe{bottom:190.110000px;}
.y31{bottom:191.910000px;}
.y62{bottom:196.635000px;}
.ya0{bottom:200.955000px;}
.yef{bottom:203.115000px;}
.ybd{bottom:209.235000px;}
.y30{bottom:211.035000px;}
.y61{bottom:215.715000px;}
.y9f{bottom:220.035000px;}
.yee{bottom:220.395000px;}
.ybc{bottom:227.955000px;}
.y2f{bottom:230.115000px;}
.y60{bottom:234.795000px;}
.yed{bottom:237.675000px;}
.y9e{bottom:239.115000px;}
.ybb{bottom:247.035000px;}
.y2e{bottom:248.835000px;}
.y5f{bottom:253.515000px;}
.yec{bottom:254.955000px;}
.y9d{bottom:257.835000px;}
.yba{bottom:266.115000px;}
.y2d{bottom:267.915000px;}
.yeb{bottom:272.235000px;}
.y5e{bottom:272.595000px;}
.y9c{bottom:276.915000px;}
.yb9{bottom:284.835000px;}
.y2c{bottom:286.995000px;}
.yea{bottom:289.515000px;}
.y5d{bottom:291.675000px;}
.y9b{bottom:295.995000px;}
.yb8{bottom:303.915000px;}
.y2b{bottom:305.715000px;}
.ye9{bottom:306.795000px;}
.y5c{bottom:310.395000px;}
.y9a{bottom:315.075000px;}
.yb7{bottom:323.025000px;}
.ye8{bottom:324.105000px;}
.y2a{bottom:324.825000px;}
.y5b{bottom:329.505000px;}
.y99{bottom:333.825000px;}
.ye7{bottom:341.385000px;}
.yb6{bottom:342.105000px;}
.y29{bottom:343.905000px;}
.y5a{bottom:348.585000px;}
.y98{bottom:352.905000px;}
.ye6{bottom:358.665000px;}
.yb5{bottom:360.825000px;}
.y28{bottom:362.985000px;}
.y59{bottom:367.305000px;}
.y97{bottom:371.985000px;}
.ye5{bottom:375.585000px;}
.yb4{bottom:379.905000px;}
.y27{bottom:381.705000px;}
.y58{bottom:386.385000px;}
.y96{bottom:390.705000px;}
.ye4{bottom:392.865000px;}
.yb3{bottom:398.985000px;}
.y26{bottom:400.785000px;}
.y57{bottom:405.465000px;}
.y95{bottom:409.785000px;}
.ye3{bottom:410.145000px;}
.yb2{bottom:417.705000px;}
.y25{bottom:419.865000px;}
.y56{bottom:424.545000px;}
.ye2{bottom:427.425000px;}
.y94{bottom:428.865000px;}
.yb1{bottom:436.785000px;}
.y24{bottom:438.585000px;}
.y55{bottom:443.265000px;}
.y6d{bottom:443.985000px;}
.ye1{bottom:444.705000px;}
.y93{bottom:447.990000px;}
.yb0{bottom:455.910000px;}
.y23{bottom:457.710000px;}
.ye0{bottom:462.030000px;}
.y54{bottom:462.390000px;}
.y92{bottom:466.710000px;}
.y6c{bottom:467.430000px;}
.yaf{bottom:475.710000px;}
.y22{bottom:476.790000px;}
.ydf{bottom:479.310000px;}
.y53{bottom:481.470000px;}
.y91{bottom:485.790000px;}
.y6b{bottom:486.510000px;}
.y21{bottom:495.870000px;}
.yde{bottom:496.590000px;}
.yae{bottom:499.110000px;}
.y52{bottom:500.190000px;}
.y90{bottom:504.870000px;}
.y115{bottom:505.230000px;}
.y6a{bottom:505.590000px;}
.ydd{bottom:513.870000px;}
.y20{bottom:514.590000px;}
.yad{bottom:517.470000px;}
.y51{bottom:519.270000px;}
.y114{bottom:522.510000px;}
.y8f{bottom:523.590000px;}
.y69{bottom:524.310000px;}
.ydc{bottom:531.150000px;}
.y1f{bottom:533.670000px;}
.yac{bottom:535.110000px;}
.y50{bottom:538.350000px;}
.y113{bottom:539.790000px;}
.y8e{bottom:542.670000px;}
.y68{bottom:543.390000px;}
.ydb{bottom:548.430000px;}
.yab{bottom:550.230000px;}
.y1e{bottom:552.750000px;}
.y112{bottom:557.070000px;}
.y4f{bottom:557.430000px;}
.y8d{bottom:561.750000px;}
.y67{bottom:562.470000px;}
.yda{bottom:565.710000px;}
.y1d{bottom:572.190000px;}
.y111{bottom:574.020000px;}
.ya9{bottom:576.540000px;}
.y4e{bottom:576.900000px;}
.y8c{bottom:580.500000px;}
.y66{bottom:581.580000px;}
.yd9{bottom:582.660000px;}
.y110{bottom:591.300000px;}
.ya8{bottom:595.260000px;}
.y1c{bottom:595.620000px;}
.y8b{bottom:599.580000px;}
.yd8{bottom:599.940000px;}
.y4d{bottom:600.300000px;}
.y10f{bottom:608.580000px;}
.y1b{bottom:614.340000px;}
.yd7{bottom:617.220000px;}
.y8a{bottom:618.660000px;}
.y4c{bottom:619.380000px;}
.y10e{bottom:625.860000px;}
.y1a{bottom:631.620000px;}
.ya7{bottom:633.420000px;}
.yd6{bottom:634.500000px;}
.y89{bottom:637.740000px;}
.y4b{bottom:638.460000px;}
.y10d{bottom:643.140000px;}
.y19{bottom:649.620000px;}
.yd5{bottom:651.780000px;}
.ya6{bottom:652.500000px;}
.y87{bottom:653.220000px;}
.y4a{bottom:657.180000px;}
.y10c{bottom:660.420000px;}
.yd4{bottom:669.060000px;}
.y18{bottom:671.580000px;}
.y49{bottom:676.260000px;}
.y10b{bottom:677.700000px;}
.yd3{bottom:686.340000px;}
.ya5{bottom:688.500000px;}
.y17{bottom:690.300000px;}
.y10a{bottom:694.980000px;}
.y48{bottom:695.340000px;}
.y83{bottom:699.330000px;}
.ya4{bottom:703.650000px;}
.y16{bottom:707.610000px;}
.y109{bottom:712.290000px;}
.y47{bottom:714.450000px;}
.yd2{bottom:720.930000px;}
.y15{bottom:724.890000px;}
.y108{bottom:729.570000px;}
.y46{bottom:733.170000px;}
.yd1{bottom:738.210000px;}
.y14{bottom:742.170000px;}
.y81{bottom:745.770000px;}
.y107{bottom:746.850000px;}
.y45{bottom:752.250000px;}
.yd0{bottom:755.490000px;}
.y13{bottom:759.450000px;}
.y106{bottom:764.130000px;}
.y44{bottom:771.330000px;}
.ycf{bottom:772.410000px;}
.y7e{bottom:774.570000px;}
.y12{bottom:776.370000px;}
.y105{bottom:781.050000px;}
.yce{bottom:789.690000px;}
.y43{bottom:790.050000px;}
.y11{bottom:793.650000px;}
.y104{bottom:798.330000px;}
.ycd{bottom:806.970000px;}
.y42{bottom:809.130000px;}
.y10{bottom:810.930000px;}
.y103{bottom:815.610000px;}
.ycc{bottom:824.250000px;}
.y7d{bottom:824.610000px;}
.yf{bottom:828.255000px;}
.y102{bottom:832.935000px;}
.ycb{bottom:841.575000px;}
.y7c{bottom:843.375000px;}
.ye{bottom:845.535000px;}
.y41{bottom:846.975000px;}
.y101{bottom:850.215000px;}
.yca{bottom:858.855000px;}
.y7b{bottom:861.015000px;}
.yd{bottom:863.175000px;}
.y40{bottom:866.055000px;}
.y100{bottom:867.495000px;}
.yc9{bottom:876.135000px;}
.y7a{bottom:879.735000px;}
.yc{bottom:882.615000px;}
.yff{bottom:884.775000px;}
.y3f{bottom:885.135000px;}
.yc8{bottom:893.415000px;}
.y79{bottom:898.815000px;}
.yfe{bottom:902.055000px;}
.y3e{bottom:904.215000px;}
.yb{bottom:904.575000px;}
.yc7{bottom:910.695000px;}
.y78{bottom:917.895000px;}
.yfd{bottom:919.335000px;}
.y3d{bottom:922.935000px;}
.ya{bottom:924.015000px;}
.yc6{bottom:927.975000px;}
.yfc{bottom:936.615000px;}
.y77{bottom:936.975000px;}
.y3c{bottom:942.015000px;}
.y9{bottom:944.895000px;}
.yc5{bottom:945.255000px;}
.yfb{bottom:954.285000px;}
.y76{bottom:955.725000px;}
.y3b{bottom:961.125000px;}
.yc4{bottom:962.565000px;}
.y8{bottom:965.445000px;}
.y75{bottom:974.805000px;}
.yc3{bottom:979.485000px;}
.y3a{bottom:979.845000px;}
.y7{bottom:986.325000px;}
.yfa{bottom:993.525000px;}
.y74{bottom:993.885000px;}
.yc2{bottom:997.125000px;}
.y39{bottom:998.925000px;}
.y6{bottom:1009.005000px;}
.yf9{bottom:1010.805000px;}
.y73{bottom:1012.605000px;}
.yc1{bottom:1016.205000px;}
.y38{bottom:1018.005000px;}
.yf8{bottom:1028.085000px;}
.y72{bottom:1031.685000px;}
.y5{bottom:1034.565000px;}
.y37{bottom:1036.725000px;}
.yf7{bottom:1045.005000px;}
.y71{bottom:1050.765000px;}
.y36{bottom:1055.805000px;}
.yf6{bottom:1062.285000px;}
.y4{bottom:1068.045000px;}
.y70{bottom:1069.845000px;}
.y35{bottom:1074.885000px;}
.yf5{bottom:1079.610000px;}
.y6f{bottom:1088.610000px;}
.y34{bottom:1094.010000px;}
.yf4{bottom:1096.890000px;}
.y3{bottom:1101.930000px;}
.y6e{bottom:1108.410000px;}
.y33{bottom:1112.730000px;}
.yf3{bottom:1114.170000px;}
.y1{bottom:1141.890000px;}
.h11{height:27.000000px;}
.h10{height:44.280000px;}
.h12{height:44.640000px;}
.hd{height:44.860781px;}
.hf{height:47.901094px;}
.h14{height:48.761719px;}
.h8{height:52.066406px;}
.hc{height:55.510759px;}
.h2{height:56.531250px;}
.hb{height:59.328281px;}
.h3{height:59.357813px;}
.h16{height:60.952500px;}
.h15{height:62.163910px;}
.h9{height:65.010937px;}
.h13{height:68.084282px;}
.h7{height:70.664062px;}
.ha{height:76.279219px;}
.h5{height:76.317188px;}
.h6{height:76.824844px;}
.h4{height:80.944453px;}
.he{height:86.945625px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:33.120000px;}
.w4{width:95.076000px;}
.w7{width:116.316000px;}
.w5{width:116.352000px;}
.w3{width:150.150000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:7.920000px;}
.x13{left:12.600000px;}
.x19{left:14.760000px;}
.x16{left:16.230000px;}
.x17{left:22.350000px;}
.x1a{left:23.430000px;}
.xc{left:25.200000px;}
.x12{left:27.390000px;}
.xf{left:30.990000px;}
.x11{left:39.270000px;}
.x18{left:46.470000px;}
.xd{left:57.600000px;}
.x2{left:123.155987px;}
.x6{left:129.275987px;}
.x1{left:136.475987px;}
.x1c{left:144.431987px;}
.x4{left:163.514987px;}
.x1d{left:165.674987px;}
.x7{left:179.354987px;}
.x9{left:219.674987px;}
.x5{left:225.434987px;}
.x8{left:240.584987px;}
.xb{left:265.065000px;}
.x20{left:280.544987px;}
.x14{left:298.905000px;}
.xe{left:415.950000px;}
.x3{left:446.219987px;}
.x10{left:511.740000px;}
.x1e{left:532.649987px;}
.x1f{left:627.374987px;}
.x1b{left:678.494987px;}
.xa{left:754.484987px;}
@media print{
.v3{vertical-align:-66.560000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsc{letter-spacing:-1.552000pt;}
.lsd{letter-spacing:-1.413333pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls1c{letter-spacing:-0.864000pt;}
.ls5{letter-spacing:-0.832000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.376533pt;}
.ls12{letter-spacing:-0.271467pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.017920pt;}
.ls8{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.158720pt;}
.ls7{letter-spacing:0.169387pt;}
.ls1{letter-spacing:0.226560pt;}
.ls9{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.401920pt;}
.ls10{letter-spacing:0.560640pt;}
.ls2{letter-spacing:0.571307pt;}
.ls4{letter-spacing:0.576000pt;}
.ls19{letter-spacing:0.640000pt;}
.lse{letter-spacing:0.736000pt;}
.ls6{letter-spacing:1.280000pt;}
.lsf{letter-spacing:1.608107pt;}
.ls16{letter-spacing:2.154667pt;}
.ls15{letter-spacing:38.671360pt;}
.ls1a{letter-spacing:47.785387pt;}
.ls18{letter-spacing:73.385387pt;}
.ls14{letter-spacing:486.005333pt;}
.wsd{word-spacing:-58.880000pt;}
.ws14{word-spacing:-53.760000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws7{word-spacing:-18.560000pt;}
.ws5{word-spacing:-18.214537pt;}
.ws2{word-spacing:-17.280000pt;}
.wse{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.456000pt;}
.ws6{word-spacing:-14.841475pt;}
.ws8{word-spacing:-14.720000pt;}
.ws10{word-spacing:-13.457920pt;}
.wsa{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.168000pt;}
.wsf{word-spacing:-12.800000pt;}
.ws11{word-spacing:-12.608000pt;}
.ws12{word-spacing:-12.576000pt;}
.ws13{word-spacing:-12.160000pt;}
.ws3{word-spacing:-0.069120pt;}
.ws4{word-spacing:-0.056320pt;}
.ws9{word-spacing:0.000000pt;}
._4{margin-left:-2.905600pt;}
._0{margin-left:-1.536000pt;}
._1{width:1.689600pt;}
._5{width:2.624000pt;}
._3{width:3.603200pt;}
._a{width:4.741973pt;}
._b{width:5.967360pt;}
._d{width:6.920533pt;}
._8{width:7.825920pt;}
._7{width:8.901120pt;}
._6{width:9.945600pt;}
._9{width:11.427840pt;}
._c{width:12.782080pt;}
._11{width:13.726720pt;}
._14{width:15.618987pt;}
._e{width:16.673280pt;}
._12{width:17.745920pt;}
._13{width:18.979840pt;}
._15{width:20.408320pt;}
._16{width:21.911040pt;}
._f{width:23.439360pt;}
._10{width:24.906240pt;}
._19{width:26.990080pt;}
._17{width:28.037120pt;}
._18{width:29.020587pt;}
._1b{width:31.687680pt;}
._1c{width:32.960000pt;}
._1e{width:35.840853pt;}
._1f{width:48.529067pt;}
._2{width:84.286293pt;}
._1d{width:131.581440pt;}
._1a{width:668.311040pt;}
.fs6{font-size:44.800000pt;}
.fs0{font-size:51.200000pt;}
.fs1{font-size:53.760000pt;}
.fs8{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fsa{font-size:59.365899pt;}
.fs7{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs9{font-size:72.858149pt;}
.fsb{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:11.200000pt;}
.y80{bottom:11.840000pt;}
.y86{bottom:12.160000pt;}
.y88{bottom:26.560000pt;}
.y84{bottom:26.880000pt;}
.y7f{bottom:27.200000pt;}
.y85{bottom:27.520000pt;}
.y2{bottom:98.912000pt;}
.y65{bottom:124.192000pt;}
.ya3{bottom:128.032000pt;}
.yaa{bottom:133.786667pt;}
.yf2{bottom:134.746667pt;}
.yc0{bottom:135.066667pt;}
.y64{bottom:141.146667pt;}
.ya2{bottom:144.986667pt;}
.yf1{bottom:150.106667pt;}
.ybf{bottom:152.026667pt;}
.y32{bottom:153.946667pt;}
.y63{bottom:157.786667pt;}
.ya1{bottom:161.946667pt;}
.yf0{bottom:165.146667pt;}
.ybe{bottom:168.986667pt;}
.y31{bottom:170.586667pt;}
.y62{bottom:174.786667pt;}
.ya0{bottom:178.626667pt;}
.yef{bottom:180.546667pt;}
.ybd{bottom:185.986667pt;}
.y30{bottom:187.586667pt;}
.y61{bottom:191.746667pt;}
.y9f{bottom:195.586667pt;}
.yee{bottom:195.906667pt;}
.ybc{bottom:202.626667pt;}
.y2f{bottom:204.546667pt;}
.y60{bottom:208.706667pt;}
.yed{bottom:211.266667pt;}
.y9e{bottom:212.546667pt;}
.ybb{bottom:219.586667pt;}
.y2e{bottom:221.186667pt;}
.y5f{bottom:225.346667pt;}
.yec{bottom:226.626667pt;}
.y9d{bottom:229.186667pt;}
.yba{bottom:236.546667pt;}
.y2d{bottom:238.146667pt;}
.yeb{bottom:241.986667pt;}
.y5e{bottom:242.306667pt;}
.y9c{bottom:246.146667pt;}
.yb9{bottom:253.186667pt;}
.y2c{bottom:255.106667pt;}
.yea{bottom:257.346667pt;}
.y5d{bottom:259.266667pt;}
.y9b{bottom:263.106667pt;}
.yb8{bottom:270.146667pt;}
.y2b{bottom:271.746667pt;}
.ye9{bottom:272.706667pt;}
.y5c{bottom:275.906667pt;}
.y9a{bottom:280.066667pt;}
.yb7{bottom:287.133333pt;}
.ye8{bottom:288.093333pt;}
.y2a{bottom:288.733333pt;}
.y5b{bottom:292.893333pt;}
.y99{bottom:296.733333pt;}
.ye7{bottom:303.453333pt;}
.yb6{bottom:304.093333pt;}
.y29{bottom:305.693333pt;}
.y5a{bottom:309.853333pt;}
.y98{bottom:313.693333pt;}
.ye6{bottom:318.813333pt;}
.yb5{bottom:320.733333pt;}
.y28{bottom:322.653333pt;}
.y59{bottom:326.493333pt;}
.y97{bottom:330.653333pt;}
.ye5{bottom:333.853333pt;}
.yb4{bottom:337.693333pt;}
.y27{bottom:339.293333pt;}
.y58{bottom:343.453333pt;}
.y96{bottom:347.293333pt;}
.ye4{bottom:349.213333pt;}
.yb3{bottom:354.653333pt;}
.y26{bottom:356.253333pt;}
.y57{bottom:360.413333pt;}
.y95{bottom:364.253333pt;}
.ye3{bottom:364.573333pt;}
.yb2{bottom:371.293333pt;}
.y25{bottom:373.213333pt;}
.y56{bottom:377.373333pt;}
.ye2{bottom:379.933333pt;}
.y94{bottom:381.213333pt;}
.yb1{bottom:388.253333pt;}
.y24{bottom:389.853333pt;}
.y55{bottom:394.013333pt;}
.y6d{bottom:394.653333pt;}
.ye1{bottom:395.293333pt;}
.y93{bottom:398.213333pt;}
.yb0{bottom:405.253333pt;}
.y23{bottom:406.853333pt;}
.ye0{bottom:410.693333pt;}
.y54{bottom:411.013333pt;}
.y92{bottom:414.853333pt;}
.y6c{bottom:415.493333pt;}
.yaf{bottom:422.853333pt;}
.y22{bottom:423.813333pt;}
.ydf{bottom:426.053333pt;}
.y53{bottom:427.973333pt;}
.y91{bottom:431.813333pt;}
.y6b{bottom:432.453333pt;}
.y21{bottom:440.773333pt;}
.yde{bottom:441.413333pt;}
.yae{bottom:443.653333pt;}
.y52{bottom:444.613333pt;}
.y90{bottom:448.773333pt;}
.y115{bottom:449.093333pt;}
.y6a{bottom:449.413333pt;}
.ydd{bottom:456.773333pt;}
.y20{bottom:457.413333pt;}
.yad{bottom:459.973333pt;}
.y51{bottom:461.573333pt;}
.y114{bottom:464.453333pt;}
.y8f{bottom:465.413333pt;}
.y69{bottom:466.053333pt;}
.ydc{bottom:472.133333pt;}
.y1f{bottom:474.373333pt;}
.yac{bottom:475.653333pt;}
.y50{bottom:478.533333pt;}
.y113{bottom:479.813333pt;}
.y8e{bottom:482.373333pt;}
.y68{bottom:483.013333pt;}
.ydb{bottom:487.493333pt;}
.yab{bottom:489.093333pt;}
.y1e{bottom:491.333333pt;}
.y112{bottom:495.173333pt;}
.y4f{bottom:495.493333pt;}
.y8d{bottom:499.333333pt;}
.y67{bottom:499.973333pt;}
.yda{bottom:502.853333pt;}
.y1d{bottom:508.613333pt;}
.y111{bottom:510.240000pt;}
.ya9{bottom:512.480000pt;}
.y4e{bottom:512.800000pt;}
.y8c{bottom:516.000000pt;}
.y66{bottom:516.960000pt;}
.yd9{bottom:517.920000pt;}
.y110{bottom:525.600000pt;}
.ya8{bottom:529.120000pt;}
.y1c{bottom:529.440000pt;}
.y8b{bottom:532.960000pt;}
.yd8{bottom:533.280000pt;}
.y4d{bottom:533.600000pt;}
.y10f{bottom:540.960000pt;}
.y1b{bottom:546.080000pt;}
.yd7{bottom:548.640000pt;}
.y8a{bottom:549.920000pt;}
.y4c{bottom:550.560000pt;}
.y10e{bottom:556.320000pt;}
.y1a{bottom:561.440000pt;}
.ya7{bottom:563.040000pt;}
.yd6{bottom:564.000000pt;}
.y89{bottom:566.880000pt;}
.y4b{bottom:567.520000pt;}
.y10d{bottom:571.680000pt;}
.y19{bottom:577.440000pt;}
.yd5{bottom:579.360000pt;}
.ya6{bottom:580.000000pt;}
.y87{bottom:580.640000pt;}
.y4a{bottom:584.160000pt;}
.y10c{bottom:587.040000pt;}
.yd4{bottom:594.720000pt;}
.y18{bottom:596.960000pt;}
.y49{bottom:601.120000pt;}
.y10b{bottom:602.400000pt;}
.yd3{bottom:610.080000pt;}
.ya5{bottom:612.000000pt;}
.y17{bottom:613.600000pt;}
.y10a{bottom:617.760000pt;}
.y48{bottom:618.080000pt;}
.y83{bottom:621.626667pt;}
.ya4{bottom:625.466667pt;}
.y16{bottom:628.986667pt;}
.y109{bottom:633.146667pt;}
.y47{bottom:635.066667pt;}
.yd2{bottom:640.826667pt;}
.y15{bottom:644.346667pt;}
.y108{bottom:648.506667pt;}
.y46{bottom:651.706667pt;}
.yd1{bottom:656.186667pt;}
.y14{bottom:659.706667pt;}
.y81{bottom:662.906667pt;}
.y107{bottom:663.866667pt;}
.y45{bottom:668.666667pt;}
.yd0{bottom:671.546667pt;}
.y13{bottom:675.066667pt;}
.y106{bottom:679.226667pt;}
.y44{bottom:685.626667pt;}
.ycf{bottom:686.586667pt;}
.y7e{bottom:688.506667pt;}
.y12{bottom:690.106667pt;}
.y105{bottom:694.266667pt;}
.yce{bottom:701.946667pt;}
.y43{bottom:702.266667pt;}
.y11{bottom:705.466667pt;}
.y104{bottom:709.626667pt;}
.ycd{bottom:717.306667pt;}
.y42{bottom:719.226667pt;}
.y10{bottom:720.826667pt;}
.y103{bottom:724.986667pt;}
.ycc{bottom:732.666667pt;}
.y7d{bottom:732.986667pt;}
.yf{bottom:736.226667pt;}
.y102{bottom:740.386667pt;}
.ycb{bottom:748.066667pt;}
.y7c{bottom:749.666667pt;}
.ye{bottom:751.586667pt;}
.y41{bottom:752.866667pt;}
.y101{bottom:755.746667pt;}
.yca{bottom:763.426667pt;}
.y7b{bottom:765.346667pt;}
.yd{bottom:767.266667pt;}
.y40{bottom:769.826667pt;}
.y100{bottom:771.106667pt;}
.yc9{bottom:778.786667pt;}
.y7a{bottom:781.986667pt;}
.yc{bottom:784.546667pt;}
.yff{bottom:786.466667pt;}
.y3f{bottom:786.786667pt;}
.yc8{bottom:794.146667pt;}
.y79{bottom:798.946667pt;}
.yfe{bottom:801.826667pt;}
.y3e{bottom:803.746667pt;}
.yb{bottom:804.066667pt;}
.yc7{bottom:809.506667pt;}
.y78{bottom:815.906667pt;}
.yfd{bottom:817.186667pt;}
.y3d{bottom:820.386667pt;}
.ya{bottom:821.346667pt;}
.yc6{bottom:824.866667pt;}
.yfc{bottom:832.546667pt;}
.y77{bottom:832.866667pt;}
.y3c{bottom:837.346667pt;}
.y9{bottom:839.906667pt;}
.yc5{bottom:840.226667pt;}
.yfb{bottom:848.253333pt;}
.y76{bottom:849.533333pt;}
.y3b{bottom:854.333333pt;}
.yc4{bottom:855.613333pt;}
.y8{bottom:858.173333pt;}
.y75{bottom:866.493333pt;}
.yc3{bottom:870.653333pt;}
.y3a{bottom:870.973333pt;}
.y7{bottom:876.733333pt;}
.yfa{bottom:883.133333pt;}
.y74{bottom:883.453333pt;}
.yc2{bottom:886.333333pt;}
.y39{bottom:887.933333pt;}
.y6{bottom:896.893333pt;}
.yf9{bottom:898.493333pt;}
.y73{bottom:900.093333pt;}
.yc1{bottom:903.293333pt;}
.y38{bottom:904.893333pt;}
.yf8{bottom:913.853333pt;}
.y72{bottom:917.053333pt;}
.y5{bottom:919.613333pt;}
.y37{bottom:921.533333pt;}
.yf7{bottom:928.893333pt;}
.y71{bottom:934.013333pt;}
.y36{bottom:938.493333pt;}
.yf6{bottom:944.253333pt;}
.y4{bottom:949.373333pt;}
.y70{bottom:950.973333pt;}
.y35{bottom:955.453333pt;}
.yf5{bottom:959.653333pt;}
.y6f{bottom:967.653333pt;}
.y34{bottom:972.453333pt;}
.yf4{bottom:975.013333pt;}
.y3{bottom:979.493333pt;}
.y6e{bottom:985.253333pt;}
.y33{bottom:989.093333pt;}
.yf3{bottom:990.373333pt;}
.y1{bottom:1015.013333pt;}
.h11{height:24.000000pt;}
.h10{height:39.360000pt;}
.h12{height:39.680000pt;}
.hd{height:39.876250pt;}
.hf{height:42.578750pt;}
.h14{height:43.343750pt;}
.h8{height:46.281250pt;}
.hc{height:49.342897pt;}
.h2{height:50.250000pt;}
.hb{height:52.736250pt;}
.h3{height:52.762500pt;}
.h16{height:54.180000pt;}
.h15{height:55.256809pt;}
.h9{height:57.787500pt;}
.h13{height:60.519362pt;}
.h7{height:62.812500pt;}
.ha{height:67.803750pt;}
.h5{height:67.837500pt;}
.h6{height:68.288750pt;}
.h4{height:71.950625pt;}
.he{height:77.285000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:29.440000pt;}
.w4{width:84.512000pt;}
.w7{width:103.392000pt;}
.w5{width:103.424000pt;}
.w3{width:133.466667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:7.040000pt;}
.x13{left:11.200000pt;}
.x19{left:13.120000pt;}
.x16{left:14.426667pt;}
.x17{left:19.866667pt;}
.x1a{left:20.826667pt;}
.xc{left:22.400000pt;}
.x12{left:24.346667pt;}
.xf{left:27.546667pt;}
.x11{left:34.906667pt;}
.x18{left:41.306667pt;}
.xd{left:51.200000pt;}
.x2{left:109.471988pt;}
.x6{left:114.911988pt;}
.x1{left:121.311988pt;}
.x1c{left:128.383988pt;}
.x4{left:145.346655pt;}
.x1d{left:147.266655pt;}
.x7{left:159.426655pt;}
.x9{left:195.266655pt;}
.x5{left:200.386655pt;}
.x8{left:213.853322pt;}
.xb{left:235.613333pt;}
.x20{left:249.373322pt;}
.x14{left:265.693333pt;}
.xe{left:369.733333pt;}
.x3{left:396.639988pt;}
.x10{left:454.880000pt;}
.x1e{left:473.466655pt;}
.x1f{left:557.666655pt;}
.x1b{left:603.106655pt;}
.xa{left:670.653322pt;}
}




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