
    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_ed8719473680cae6cfd049c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_d6364fd0797cef9c6692c472.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2fd151fcaa00e4dd0367b77c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_0278e2bb675feccef996cd9f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_0e61ec3bc9914877a8fc0be9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c9dc2c16333cbbf1116188fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_68ba94bd0b5d4f9f6661c63d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_f6e0fbd31336bab014e3b053.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_c61e0bffe6da4f6eb0b3c706.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_17d684b7d63b69642cbc9193.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_c58e57b7815fa4c4371dc1d2.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bff36a42fe5a47fcede0bb3f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_b01337435617980f0480d778.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_90922a90556211d46b036e5a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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:fff;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_44a0eabd87ac1632c19d49ee.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-70.560000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls18{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.127200px;}
.ls11{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls4{letter-spacing:0.066240px;}
.lsa{letter-spacing:0.087600px;}
.lsf{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.447840px;}
.ls0{letter-spacing:0.756000px;}
.lse{letter-spacing:7.380000px;}
.ls17{letter-spacing:15.786720px;}
.ls16{letter-spacing:45.306720px;}
.lsd{letter-spacing:63.450720px;}
.ls13{letter-spacing:136.404000px;}
.ls12{letter-spacing:745.500000px;}
.ls15{letter-spacing:1245.360000px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.wsb{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.680200px;}
.ws8{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-6.837840px;}
._4{margin-left:-4.585680px;}
._3{margin-left:-2.634000px;}
._0{margin-left:-1.086000px;}
._1{width:1.410000px;}
._e{width:2.778000px;}
._5{width:3.944160px;}
._2{width:5.430000px;}
._14{width:6.491280px;}
._17{width:7.852080px;}
._15{width:9.023760px;}
._8{width:10.099440px;}
._11{width:11.283360px;}
._f{width:12.614400px;}
._18{width:13.919040px;}
._13{width:16.912080px;}
._12{width:18.226800px;}
._16{width:19.247280px;}
._9{width:20.342640px;}
._d{width:22.170960px;}
._19{width:23.784480px;}
._a{width:27.429840px;}
._b{width:28.505520px;}
._6{width:29.880000px;}
._7{width:31.316880px;}
._c{width:36.288480px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:0.180000px;}
.y3{bottom:3.600000px;}
.ycd{bottom:3.780000px;}
.ye{bottom:4.140000px;}
.y1d{bottom:4.860000px;}
.y53{bottom:10.620000px;}
.y20{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.496000px;}
.y2{bottom:20.196000px;}
.y50{bottom:20.874000px;}
.y54{bottom:22.500000px;}
.y52{bottom:25.380000px;}
.y1c{bottom:25.560000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.140000px;}
.y4f{bottom:38.154000px;}
.y1b{bottom:45.900000px;}
.ya{bottom:46.620000px;}
.y1{bottom:52.740000px;}
.y4e{bottom:55.434000px;}
.y1a{bottom:62.280000px;}
.y4d{bottom:72.714000px;}
.y9{bottom:73.260000px;}
.y19{bottom:78.840000px;}
.y4c{bottom:89.994000px;}
.y18{bottom:91.485000px;}
.y8{bottom:93.090000px;}
.yc9{bottom:102.276000px;}
.y4b{bottom:107.094000px;}
.y51{bottom:109.296000px;}
.y7{bottom:111.450000px;}
.y17{bottom:111.825000px;}
.y92{bottom:111.996000px;}
.yfa{bottom:116.496000px;}
.yc8{bottom:119.556000px;}
.y4a{bottom:124.374000px;}
.y16{bottom:128.385000px;}
.y91{bottom:129.276000px;}
.yf9{bottom:133.776000px;}
.yc7{bottom:136.836000px;}
.y49{bottom:141.654000px;}
.y15{bottom:144.045000px;}
.y21{bottom:146.016000px;}
.y90{bottom:146.556000px;}
.yf8{bottom:151.050000px;}
.yc6{bottom:154.110000px;}
.y14{bottom:154.665000px;}
.y48{bottom:158.934000px;}
.y8f{bottom:163.830000px;}
.yf7{bottom:168.330000px;}
.yc5{bottom:171.390000px;}
.y13{bottom:172.845000px;}
.y47{bottom:176.214000px;}
.y8e{bottom:180.930000px;}
.yf6{bottom:185.430000px;}
.yc4{bottom:188.490000px;}
.y12{bottom:191.385000px;}
.y46{bottom:193.359000px;}
.y8d{bottom:197.850000px;}
.yf5{bottom:202.710000px;}
.yc3{bottom:205.770000px;}
.y45{bottom:210.639000px;}
.y8c{bottom:215.490000px;}
.y11{bottom:217.125000px;}
.yf4{bottom:219.990000px;}
.yc2{bottom:222.690000px;}
.y44{bottom:227.919000px;}
.y8b{bottom:232.770000px;}
.yf3{bottom:237.270000px;}
.yc1{bottom:240.330000px;}
.y10{bottom:241.785000px;}
.y43{bottom:245.199000px;}
.y8a{bottom:250.050000px;}
.yf2{bottom:254.550000px;}
.yc0{bottom:257.610000px;}
.y42{bottom:262.479000px;}
.y89{bottom:267.330000px;}
.yf1{bottom:271.830000px;}
.ybf{bottom:274.890000px;}
.y41{bottom:279.759000px;}
.y88{bottom:284.070000px;}
.yf0{bottom:288.930000px;}
.ybe{bottom:291.990000px;}
.y40{bottom:296.859000px;}
.y87{bottom:301.710000px;}
.yef{bottom:306.210000px;}
.ybd{bottom:308.910000px;}
.y3f{bottom:314.139000px;}
.y86{bottom:318.990000px;}
.yee{bottom:323.490000px;}
.ybc{bottom:326.550000px;}
.y3e{bottom:331.419000px;}
.y85{bottom:336.270000px;}
.yed{bottom:340.815000px;}
.ybb{bottom:343.875000px;}
.y3d{bottom:348.699000px;}
.y116{bottom:351.975000px;}
.y84{bottom:353.595000px;}
.yec{bottom:358.095000px;}
.yba{bottom:361.155000px;}
.y3c{bottom:365.979000px;}
.y115{bottom:369.255000px;}
.y2e{bottom:370.659000px;}
.y83{bottom:370.875000px;}
.yeb{bottom:375.375000px;}
.yb9{bottom:378.435000px;}
.y3b{bottom:383.259000px;}
.y114{bottom:386.535000px;}
.y2d{bottom:387.939000px;}
.y82{bottom:387.975000px;}
.yea{bottom:392.475000px;}
.yb8{bottom:395.535000px;}
.y3a{bottom:400.359000px;}
.y113{bottom:403.815000px;}
.y2c{bottom:405.219000px;}
.y81{bottom:405.255000px;}
.ye9{bottom:409.755000px;}
.yb7{bottom:412.815000px;}
.y39{bottom:417.639000px;}
.y112{bottom:421.095000px;}
.y80{bottom:422.535000px;}
.y2b{bottom:422.679000px;}
.ye8{bottom:427.035000px;}
.yb6{bottom:430.095000px;}
.y38{bottom:434.919000px;}
.y111{bottom:438.375000px;}
.y7f{bottom:439.815000px;}
.y2a{bottom:439.959000px;}
.ye7{bottom:444.315000px;}
.yb5{bottom:447.015000px;}
.y37{bottom:452.199000px;}
.y110{bottom:455.475000px;}
.y7e{bottom:457.095000px;}
.y29{bottom:457.419000px;}
.ye6{bottom:461.595000px;}
.yb4{bottom:464.655000px;}
.y36{bottom:469.509000px;}
.y10f{bottom:472.755000px;}
.y7d{bottom:474.195000px;}
.y28{bottom:474.909000px;}
.ye5{bottom:478.695000px;}
.yb3{bottom:481.755000px;}
.y35{bottom:486.789000px;}
.y10e{bottom:490.035000px;}
.y7c{bottom:491.475000px;}
.y27{bottom:492.189000px;}
.ye4{bottom:495.615000px;}
.yb2{bottom:499.035000px;}
.y34{bottom:503.889000px;}
.y10d{bottom:507.315000px;}
.y7b{bottom:508.755000px;}
.y26{bottom:509.649000px;}
.ye3{bottom:513.255000px;}
.yb1{bottom:516.315000px;}
.y33{bottom:521.169000px;}
.y10c{bottom:524.595000px;}
.y7a{bottom:526.035000px;}
.y25{bottom:527.109000px;}
.ye2{bottom:530.535000px;}
.yb0{bottom:533.595000px;}
.y32{bottom:538.449000px;}
.y10b{bottom:541.695000px;}
.y79{bottom:543.315000px;}
.y24{bottom:547.449000px;}
.ye1{bottom:547.815000px;}
.yaf{bottom:551.955000px;}
.y31{bottom:555.729000px;}
.y10a{bottom:558.975000px;}
.y78{bottom:560.595000px;}
.ye0{bottom:565.095000px;}
.yae{bottom:569.235000px;}
.y30{bottom:573.009000px;}
.y23{bottom:574.809000px;}
.y109{bottom:576.255000px;}
.y77{bottom:577.695000px;}
.ydf{bottom:582.195000px;}
.yad{bottom:587.415000px;}
.y2f{bottom:590.109000px;}
.y22{bottom:592.269000px;}
.y108{bottom:593.535000px;}
.y76{bottom:594.975000px;}
.yde{bottom:599.475000px;}
.yac{bottom:604.725000px;}
.y107{bottom:610.845000px;}
.y75{bottom:612.285000px;}
.ydd{bottom:616.785000px;}
.yab{bottom:623.085000px;}
.y106{bottom:628.125000px;}
.y74{bottom:629.565000px;}
.ydc{bottom:631.005000px;}
.yaa{bottom:641.445000px;}
.y105{bottom:645.225000px;}
.y73{bottom:646.845000px;}
.ydb{bottom:649.005000px;}
.ya9{bottom:659.805000px;}
.y104{bottom:662.505000px;}
.y72{bottom:664.125000px;}
.yda{bottom:667.005000px;}
.ya8{bottom:676.905000px;}
.y103{bottom:679.785000px;}
.y71{bottom:681.225000px;}
.yd9{bottom:685.005000px;}
.ya7{bottom:695.265000px;}
.y102{bottom:697.065000px;}
.y70{bottom:698.505000px;}
.yd8{bottom:703.005000px;}
.ya6{bottom:712.545000px;}
.y101{bottom:714.345000px;}
.y6f{bottom:715.785000px;}
.yd7{bottom:721.005000px;}
.ya5{bottom:729.465000px;}
.y100{bottom:731.625000px;}
.y6e{bottom:733.065000px;}
.yd6{bottom:739.005000px;}
.ya4{bottom:747.105000px;}
.y1e{bottom:749.625000px;}
.y6d{bottom:750.345000px;}
.ya3{bottom:764.385000px;}
.yff{bottom:766.005000px;}
.y6c{bottom:767.625000px;}
.yd5{bottom:778.065000px;}
.yf{bottom:779.325000px;}
.ya2{bottom:781.485000px;}
.yfe{bottom:783.285000px;}
.y6b{bottom:784.725000px;}
.yd4{bottom:792.285000px;}
.ya1{bottom:798.765000px;}
.yfd{bottom:801.285000px;}
.y6a{bottom:802.005000px;}
.yd3{bottom:810.285000px;}
.ya0{bottom:816.045000px;}
.y69{bottom:819.285000px;}
.yd2{bottom:828.285000px;}
.y9f{bottom:833.325000px;}
.y68{bottom:836.565000px;}
.yd1{bottom:846.285000px;}
.y9e{bottom:851.685000px;}
.y67{bottom:853.845000px;}
.yd0{bottom:864.285000px;}
.y9d{bottom:868.965000px;}
.y66{bottom:870.990000px;}
.ycf{bottom:882.330000px;}
.y9c{bottom:886.110000px;}
.y65{bottom:888.270000px;}
.yce{bottom:900.330000px;}
.y9b{bottom:903.390000px;}
.y64{bottom:905.550000px;}
.ycc{bottom:918.330000px;}
.y9a{bottom:921.750000px;}
.yfc{bottom:922.470000px;}
.y63{bottom:922.830000px;}
.y99{bottom:939.030000px;}
.yfb{bottom:939.750000px;}
.y62{bottom:940.110000px;}
.y98{bottom:956.310000px;}
.y61{bottom:957.390000px;}
.y97{bottom:973.410000px;}
.y60{bottom:974.490000px;}
.y96{bottom:990.690000px;}
.y5f{bottom:991.770000px;}
.y95{bottom:1007.970000px;}
.y5e{bottom:1009.050000px;}
.y94{bottom:1025.250000px;}
.y5d{bottom:1026.330000px;}
.yd{bottom:1036.410000px;}
.y5c{bottom:1043.610000px;}
.y6{bottom:1056.390000px;}
.ycb{bottom:1060.530000px;}
.y5b{bottom:1060.890000px;}
.y5a{bottom:1077.990000px;}
.y59{bottom:1095.270000px;}
.y58{bottom:1112.550000px;}
.y57{bottom:1129.830000px;}
.y56{bottom:1146.780000px;}
.y93{bottom:1147.140000px;}
.yca{bottom:1164.060000px;}
.y55{bottom:1164.420000px;}
.h23{height:17.280000px;}
.h24{height:17.316000px;}
.hc{height:19.440000px;}
.h13{height:28.968750px;}
.h15{height:29.700000px;}
.h2{height:32.976000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.720000px;}
.h1f{height:38.818125px;}
.h21{height:41.726953px;}
.h14{height:43.453125px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h18{height:47.980898px;}
.h20{height:48.088125px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h1b{height:58.621992px;}
.h1d{height:58.651172px;}
.h10{height:59.439023px;}
.h1c{height:60.226875px;}
.h11{height:61.189805px;}
.h22{height:61.423863px;}
.hf{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:70.664062px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:257.070000px;}
.h17{height:603.615000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.wd{width:121.500000px;}
.w11{width:142.920000px;}
.w5{width:155.370000px;}
.w10{width:169.410000px;}
.wc{width:180.210000px;}
.wf{width:190.470000px;}
.wb{width:190.650000px;}
.w8{width:220.935000px;}
.we{width:241.455000px;}
.wa{width:252.075000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:7.560000px;}
.x2{left:8.640000px;}
.x14{left:11.160000px;}
.x18{left:12.600000px;}
.x10{left:15.876000px;}
.xf{left:20.376000px;}
.xd{left:23.976000px;}
.x12{left:28.656000px;}
.x13{left:30.816000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x19{left:107.855987px;}
.x16{left:215.175000px;}
.x6{left:228.270000px;}
.xe{left:231.015000px;}
.x9{left:285.015000px;}
.x15{left:290.235000px;}
.x17{left:293.835000px;}
.x1d{left:315.435000px;}
.x1a{left:326.055000px;}
.x7{left:342.975000px;}
.x11{left:358.275000px;}
.x8{left:364.215000px;}
.xb{left:366.555000px;}
.xc{left:373.575000px;}
.xa{left:452.280000px;}
.x1e{left:506.805000px;}
.x1b{left:517.425000px;}
.x20{left:676.950000px;}
.x1c{left:698.370000px;}
.x3{left:745.890000px;}
@media print{
.v3{vertical-align:-62.720000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls18{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls4{letter-spacing:0.058880pt;}
.lsa{letter-spacing:0.077867pt;}
.lsf{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.398080pt;}
.ls0{letter-spacing:0.672000pt;}
.lse{letter-spacing:6.560000pt;}
.ls17{letter-spacing:14.032640pt;}
.ls16{letter-spacing:40.272640pt;}
.lsd{letter-spacing:56.400640pt;}
.ls13{letter-spacing:121.248000pt;}
.ls12{letter-spacing:662.666667pt;}
.ls15{letter-spacing:1106.986667pt;}
.ws9{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.wsb{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-6.078080pt;}
._4{margin-left:-4.076160pt;}
._3{margin-left:-2.341333pt;}
._0{margin-left:-0.965333pt;}
._1{width:1.253333pt;}
._e{width:2.469333pt;}
._5{width:3.505920pt;}
._2{width:4.826667pt;}
._14{width:5.770027pt;}
._17{width:6.979627pt;}
._15{width:8.021120pt;}
._8{width:8.977280pt;}
._11{width:10.029653pt;}
._f{width:11.212800pt;}
._18{width:12.372480pt;}
._13{width:15.032960pt;}
._12{width:16.201600pt;}
._16{width:17.108693pt;}
._9{width:18.082347pt;}
._d{width:19.707520pt;}
._19{width:21.141760pt;}
._a{width:24.382080pt;}
._b{width:25.338240pt;}
._6{width:26.560000pt;}
._7{width:27.837227pt;}
._c{width:32.256427pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:0.160000pt;}
.y3{bottom:3.200000pt;}
.ycd{bottom:3.360000pt;}
.ye{bottom:3.680000pt;}
.y1d{bottom:4.320000pt;}
.y53{bottom:9.440000pt;}
.y20{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.552000pt;}
.y2{bottom:17.952000pt;}
.y50{bottom:18.554667pt;}
.y54{bottom:20.000000pt;}
.y52{bottom:22.560000pt;}
.y1c{bottom:22.720000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.680000pt;}
.y4f{bottom:33.914667pt;}
.y1b{bottom:40.800000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:46.880000pt;}
.y4e{bottom:49.274667pt;}
.y1a{bottom:55.360000pt;}
.y4d{bottom:64.634667pt;}
.y9{bottom:65.120000pt;}
.y19{bottom:70.080000pt;}
.y4c{bottom:79.994667pt;}
.y18{bottom:81.320000pt;}
.y8{bottom:82.746667pt;}
.yc9{bottom:90.912000pt;}
.y4b{bottom:95.194667pt;}
.y51{bottom:97.152000pt;}
.y7{bottom:99.066667pt;}
.y17{bottom:99.400000pt;}
.y92{bottom:99.552000pt;}
.yfa{bottom:103.552000pt;}
.yc8{bottom:106.272000pt;}
.y4a{bottom:110.554667pt;}
.y16{bottom:114.120000pt;}
.y91{bottom:114.912000pt;}
.yf9{bottom:118.912000pt;}
.yc7{bottom:121.632000pt;}
.y49{bottom:125.914667pt;}
.y15{bottom:128.040000pt;}
.y21{bottom:129.792000pt;}
.y90{bottom:130.272000pt;}
.yf8{bottom:134.266667pt;}
.yc6{bottom:136.986667pt;}
.y14{bottom:137.480000pt;}
.y48{bottom:141.274667pt;}
.y8f{bottom:145.626667pt;}
.yf7{bottom:149.626667pt;}
.yc5{bottom:152.346667pt;}
.y13{bottom:153.640000pt;}
.y47{bottom:156.634667pt;}
.y8e{bottom:160.826667pt;}
.yf6{bottom:164.826667pt;}
.yc4{bottom:167.546667pt;}
.y12{bottom:170.120000pt;}
.y46{bottom:171.874667pt;}
.y8d{bottom:175.866667pt;}
.yf5{bottom:180.186667pt;}
.yc3{bottom:182.906667pt;}
.y45{bottom:187.234667pt;}
.y8c{bottom:191.546667pt;}
.y11{bottom:193.000000pt;}
.yf4{bottom:195.546667pt;}
.yc2{bottom:197.946667pt;}
.y44{bottom:202.594667pt;}
.y8b{bottom:206.906667pt;}
.yf3{bottom:210.906667pt;}
.yc1{bottom:213.626667pt;}
.y10{bottom:214.920000pt;}
.y43{bottom:217.954667pt;}
.y8a{bottom:222.266667pt;}
.yf2{bottom:226.266667pt;}
.yc0{bottom:228.986667pt;}
.y42{bottom:233.314667pt;}
.y89{bottom:237.626667pt;}
.yf1{bottom:241.626667pt;}
.ybf{bottom:244.346667pt;}
.y41{bottom:248.674667pt;}
.y88{bottom:252.506667pt;}
.yf0{bottom:256.826667pt;}
.ybe{bottom:259.546667pt;}
.y40{bottom:263.874667pt;}
.y87{bottom:268.186667pt;}
.yef{bottom:272.186667pt;}
.ybd{bottom:274.586667pt;}
.y3f{bottom:279.234667pt;}
.y86{bottom:283.546667pt;}
.yee{bottom:287.546667pt;}
.ybc{bottom:290.266667pt;}
.y3e{bottom:294.594667pt;}
.y85{bottom:298.906667pt;}
.yed{bottom:302.946667pt;}
.ybb{bottom:305.666667pt;}
.y3d{bottom:309.954667pt;}
.y116{bottom:312.866667pt;}
.y84{bottom:314.306667pt;}
.yec{bottom:318.306667pt;}
.yba{bottom:321.026667pt;}
.y3c{bottom:325.314667pt;}
.y115{bottom:328.226667pt;}
.y2e{bottom:329.474667pt;}
.y83{bottom:329.666667pt;}
.yeb{bottom:333.666667pt;}
.yb9{bottom:336.386667pt;}
.y3b{bottom:340.674667pt;}
.y114{bottom:343.586667pt;}
.y2d{bottom:344.834667pt;}
.y82{bottom:344.866667pt;}
.yea{bottom:348.866667pt;}
.yb8{bottom:351.586667pt;}
.y3a{bottom:355.874667pt;}
.y113{bottom:358.946667pt;}
.y2c{bottom:360.194667pt;}
.y81{bottom:360.226667pt;}
.ye9{bottom:364.226667pt;}
.yb7{bottom:366.946667pt;}
.y39{bottom:371.234667pt;}
.y112{bottom:374.306667pt;}
.y80{bottom:375.586667pt;}
.y2b{bottom:375.714667pt;}
.ye8{bottom:379.586667pt;}
.yb6{bottom:382.306667pt;}
.y38{bottom:386.594667pt;}
.y111{bottom:389.666667pt;}
.y7f{bottom:390.946667pt;}
.y2a{bottom:391.074667pt;}
.ye7{bottom:394.946667pt;}
.yb5{bottom:397.346667pt;}
.y37{bottom:401.954667pt;}
.y110{bottom:404.866667pt;}
.y7e{bottom:406.306667pt;}
.y29{bottom:406.594667pt;}
.ye6{bottom:410.306667pt;}
.yb4{bottom:413.026667pt;}
.y36{bottom:417.341333pt;}
.y10f{bottom:420.226667pt;}
.y7d{bottom:421.506667pt;}
.y28{bottom:422.141333pt;}
.ye5{bottom:425.506667pt;}
.yb3{bottom:428.226667pt;}
.y35{bottom:432.701333pt;}
.y10e{bottom:435.586667pt;}
.y7c{bottom:436.866667pt;}
.y27{bottom:437.501333pt;}
.ye4{bottom:440.546667pt;}
.yb2{bottom:443.586667pt;}
.y34{bottom:447.901333pt;}
.y10d{bottom:450.946667pt;}
.y7b{bottom:452.226667pt;}
.y26{bottom:453.021333pt;}
.ye3{bottom:456.226667pt;}
.yb1{bottom:458.946667pt;}
.y33{bottom:463.261333pt;}
.y10c{bottom:466.306667pt;}
.y7a{bottom:467.586667pt;}
.y25{bottom:468.541333pt;}
.ye2{bottom:471.586667pt;}
.yb0{bottom:474.306667pt;}
.y32{bottom:478.621333pt;}
.y10b{bottom:481.506667pt;}
.y79{bottom:482.946667pt;}
.y24{bottom:486.621333pt;}
.ye1{bottom:486.946667pt;}
.yaf{bottom:490.626667pt;}
.y31{bottom:493.981333pt;}
.y10a{bottom:496.866667pt;}
.y78{bottom:498.306667pt;}
.ye0{bottom:502.306667pt;}
.yae{bottom:505.986667pt;}
.y30{bottom:509.341333pt;}
.y23{bottom:510.941333pt;}
.y109{bottom:512.226667pt;}
.y77{bottom:513.506667pt;}
.ydf{bottom:517.506667pt;}
.yad{bottom:522.146667pt;}
.y2f{bottom:524.541333pt;}
.y22{bottom:526.461333pt;}
.y108{bottom:527.586667pt;}
.y76{bottom:528.866667pt;}
.yde{bottom:532.866667pt;}
.yac{bottom:537.533333pt;}
.y107{bottom:542.973333pt;}
.y75{bottom:544.253333pt;}
.ydd{bottom:548.253333pt;}
.yab{bottom:553.853333pt;}
.y106{bottom:558.333333pt;}
.y74{bottom:559.613333pt;}
.ydc{bottom:560.893333pt;}
.yaa{bottom:570.173333pt;}
.y105{bottom:573.533333pt;}
.y73{bottom:574.973333pt;}
.ydb{bottom:576.893333pt;}
.ya9{bottom:586.493333pt;}
.y104{bottom:588.893333pt;}
.y72{bottom:590.333333pt;}
.yda{bottom:592.893333pt;}
.ya8{bottom:601.693333pt;}
.y103{bottom:604.253333pt;}
.y71{bottom:605.533333pt;}
.yd9{bottom:608.893333pt;}
.ya7{bottom:618.013333pt;}
.y102{bottom:619.613333pt;}
.y70{bottom:620.893333pt;}
.yd8{bottom:624.893333pt;}
.ya6{bottom:633.373333pt;}
.y101{bottom:634.973333pt;}
.y6f{bottom:636.253333pt;}
.yd7{bottom:640.893333pt;}
.ya5{bottom:648.413333pt;}
.y100{bottom:650.333333pt;}
.y6e{bottom:651.613333pt;}
.yd6{bottom:656.893333pt;}
.ya4{bottom:664.093333pt;}
.y1e{bottom:666.333333pt;}
.y6d{bottom:666.973333pt;}
.ya3{bottom:679.453333pt;}
.yff{bottom:680.893333pt;}
.y6c{bottom:682.333333pt;}
.yd5{bottom:691.613333pt;}
.yf{bottom:692.733333pt;}
.ya2{bottom:694.653333pt;}
.yfe{bottom:696.253333pt;}
.y6b{bottom:697.533333pt;}
.yd4{bottom:704.253333pt;}
.ya1{bottom:710.013333pt;}
.yfd{bottom:712.253333pt;}
.y6a{bottom:712.893333pt;}
.yd3{bottom:720.253333pt;}
.ya0{bottom:725.373333pt;}
.y69{bottom:728.253333pt;}
.yd2{bottom:736.253333pt;}
.y9f{bottom:740.733333pt;}
.y68{bottom:743.613333pt;}
.yd1{bottom:752.253333pt;}
.y9e{bottom:757.053333pt;}
.y67{bottom:758.973333pt;}
.yd0{bottom:768.253333pt;}
.y9d{bottom:772.413333pt;}
.y66{bottom:774.213333pt;}
.ycf{bottom:784.293333pt;}
.y9c{bottom:787.653333pt;}
.y65{bottom:789.573333pt;}
.yce{bottom:800.293333pt;}
.y9b{bottom:803.013333pt;}
.y64{bottom:804.933333pt;}
.ycc{bottom:816.293333pt;}
.y9a{bottom:819.333333pt;}
.yfc{bottom:819.973333pt;}
.y63{bottom:820.293333pt;}
.y99{bottom:834.693333pt;}
.yfb{bottom:835.333333pt;}
.y62{bottom:835.653333pt;}
.y98{bottom:850.053333pt;}
.y61{bottom:851.013333pt;}
.y97{bottom:865.253333pt;}
.y60{bottom:866.213333pt;}
.y96{bottom:880.613333pt;}
.y5f{bottom:881.573333pt;}
.y95{bottom:895.973333pt;}
.y5e{bottom:896.933333pt;}
.y94{bottom:911.333333pt;}
.y5d{bottom:912.293333pt;}
.yd{bottom:921.253333pt;}
.y5c{bottom:927.653333pt;}
.y6{bottom:939.013333pt;}
.ycb{bottom:942.693333pt;}
.y5b{bottom:943.013333pt;}
.y5a{bottom:958.213333pt;}
.y59{bottom:973.573333pt;}
.y58{bottom:988.933333pt;}
.y57{bottom:1004.293333pt;}
.y56{bottom:1019.360000pt;}
.y93{bottom:1019.680000pt;}
.yca{bottom:1034.720000pt;}
.y55{bottom:1035.040000pt;}
.h23{height:15.360000pt;}
.h24{height:15.392000pt;}
.hc{height:17.280000pt;}
.h13{height:25.750000pt;}
.h15{height:26.400000pt;}
.h2{height:29.312000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1f{height:34.505000pt;}
.h21{height:37.090625pt;}
.h14{height:38.625000pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h18{height:42.649687pt;}
.h20{height:42.745000pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h1b{height:52.108438pt;}
.h1d{height:52.134375pt;}
.h10{height:52.834688pt;}
.h1c{height:53.535000pt;}
.h11{height:54.390938pt;}
.h22{height:54.598989pt;}
.hf{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:62.812500pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:228.506667pt;}
.h17{height:536.546667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.wd{width:108.000000pt;}
.w11{width:127.040000pt;}
.w5{width:138.106667pt;}
.w10{width:150.586667pt;}
.wc{width:160.186667pt;}
.wf{width:169.306667pt;}
.wb{width:169.466667pt;}
.w8{width:196.386667pt;}
.we{width:214.626667pt;}
.wa{width:224.066667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.720000pt;}
.x2{left:7.680000pt;}
.x14{left:9.920000pt;}
.x18{left:11.200000pt;}
.x10{left:14.112000pt;}
.xf{left:18.112000pt;}
.xd{left:21.312000pt;}
.x12{left:25.472000pt;}
.x13{left:27.392000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x19{left:95.871988pt;}
.x16{left:191.266667pt;}
.x6{left:202.906667pt;}
.xe{left:205.346667pt;}
.x9{left:253.346667pt;}
.x15{left:257.986667pt;}
.x17{left:261.186667pt;}
.x1d{left:280.386667pt;}
.x1a{left:289.826667pt;}
.x7{left:304.866667pt;}
.x11{left:318.466667pt;}
.x8{left:323.746667pt;}
.xb{left:325.826667pt;}
.xc{left:332.066667pt;}
.xa{left:402.026667pt;}
.x1e{left:450.493333pt;}
.x1b{left:459.933333pt;}
.x20{left:601.733333pt;}
.x1c{left:620.773333pt;}
.x3{left:663.013333pt;}
}




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