
    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_52b550c1cedb9b60a706ba7e.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_9aaf8a458046fd181a504b27.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_cedf0e414674bdfa609d7a4b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_f8d1be4fcc4df48e3c34c2c3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_18f7bd1e87a99ca0c3f3a5c8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_124e1a789613b337c367df8e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_13d6da386de69919af7a6c8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5c688ef927cac388fd78a4de.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9202caac8cc4913274decf9c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_65db4995ff9473431a67dd6d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_118b312c9bbe5c29ec06c01b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff10{font-family:ff10;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls15{letter-spacing:-0.708000px;}
.lsf{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.127200px;}
.ls11{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.066240px;}
.lsb{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls12{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls10{letter-spacing:0.312000px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.lsd{letter-spacing:3.780000px;}
.ls18{letter-spacing:16.506720px;}
.ls13{letter-spacing:46.026720px;}
.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;}
}
.ws1{word-spacing:-16.626360px;}
.wse{word-spacing:-16.596000px;}
.wsf{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.252000px;}
.ws8{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.ws5{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.wsb{word-spacing:-9.732960px;}
.ws12{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.012000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
.wsd{word-spacing:618.598080px;}
.ws10{word-spacing:789.074400px;}
._f{margin-left:-8.174400px;}
._10{margin-left:-7.050720px;}
._e{margin-left:-5.677200px;}
._4{margin-left:-4.069680px;}
._3{margin-left:-2.442000px;}
._0{margin-left:-1.134000px;}
._1{width:1.218000px;}
._8{width:2.489520px;}
._c{width:4.063680px;}
._2{width:5.622000px;}
._b{width:6.748800px;}
._a{width:8.104560px;}
._5{width:9.902880px;}
._7{width:11.869440px;}
._6{width:13.625280px;}
._9{width:16.149360px;}
._d{width:18.047520px;}
._1a{width:20.852640px;}
._19{width:22.828320px;}
._18{width:24.740640px;}
._13{width:33.729600px;}
._14{width:35.497440px;}
._11{width:36.752400px;}
._15{width:37.820880px;}
._12{width:39.085920px;}
._17{width:108.657840px;}
._16{width:109.958400px;}
.fc7{color:rgb(0,176,240);}
.fc5{color:rgb(14,16,26);}
.fc6{color:rgb(238,0,0);}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:3.240000px;}
.y9a{bottom:3.285000px;}
.y3{bottom:3.600000px;}
.y1a{bottom:4.500000px;}
.yf3{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.ybd{bottom:15.330000px;}
.y4{bottom:17.280000px;}
.y2{bottom:20.160000px;}
.y98{bottom:20.340000px;}
.y4a{bottom:20.520000px;}
.yad{bottom:22.350000px;}
.y19{bottom:23.760000px;}
.y51{bottom:25.194000px;}
.ye{bottom:25.920000px;}
.yf4{bottom:26.820000px;}
.yb{bottom:30.240000px;}
.yb7{bottom:34.710000px;}
.y49{bottom:37.800000px;}
.ya4{bottom:41.325000px;}
.y50{bottom:43.554000px;}
.y18{bottom:43.920000px;}
.yed{bottom:45.825000px;}
.ya{bottom:46.440000px;}
.yb6{bottom:50.145000px;}
.y4e{bottom:50.214000px;}
.y48{bottom:55.080000px;}
.y5{bottom:58.320000px;}
.y17{bottom:60.480000px;}
.y4f{bottom:61.914000px;}
.y4d{bottom:64.794000px;}
.ya5{bottom:68.550000px;}
.y47{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y16{bottom:76.905000px;}
.y1{bottom:79.416000px;}
.yb8{bottom:81.750000px;}
.y46{bottom:89.460000px;}
.y15{bottom:92.745000px;}
.y8{bottom:93.090000px;}
.ya6{bottom:95.730000px;}
.yb5{bottom:96.510000px;}
.yee{bottom:97.665000px;}
.y14{bottom:103.185000px;}
.yf8{bottom:106.380000px;}
.y45{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.ybe{bottom:118.230000px;}
.y13{bottom:121.545000px;}
.ya7{bottom:122.910000px;}
.y44{bottom:124.065000px;}
.y52{bottom:128.736000px;}
.yb9{bottom:128.775000px;}
.yb0{bottom:135.330000px;}
.yeb{bottom:135.576000px;}
.y8e{bottom:136.476000px;}
.y12{bottom:140.625000px;}
.y43{bottom:141.345000px;}
.y4c{bottom:142.776000px;}
.yf5{bottom:147.030000px;}
.yef{bottom:149.475000px;}
.ya8{bottom:150.090000px;}
.yea{bottom:152.850000px;}
.y8d{bottom:153.750000px;}
.ya2{bottom:155.550000px;}
.y42{bottom:158.625000px;}
.y11{bottom:166.365000px;}
.ye9{bottom:170.130000px;}
.y8c{bottom:171.030000px;}
.ya1{bottom:172.830000px;}
.yba{bottom:175.785000px;}
.y41{bottom:175.905000px;}
.ya9{bottom:177.270000px;}
.yb1{bottom:181.515000px;}
.ya0{bottom:186.870000px;}
.yb4{bottom:187.200000px;}
.ye8{bottom:187.410000px;}
.y8b{bottom:188.310000px;}
.y10{bottom:190.665000px;}
.y40{bottom:193.005000px;}
.yf0{bottom:201.315000px;}
.yaa{bottom:204.480000px;}
.ye7{bottom:204.690000px;}
.y8a{bottom:205.590000px;}
.y3f{bottom:210.285000px;}
.yf6{bottom:214.200000px;}
.y1c{bottom:218.910000px;}
.ye6{bottom:221.790000px;}
.ybb{bottom:222.840000px;}
.y89{bottom:222.870000px;}
.yaf{bottom:225.030000px;}
.y3e{bottom:227.565000px;}
.yab{bottom:231.660000px;}
.ye5{bottom:239.070000px;}
.y88{bottom:239.970000px;}
.y3d{bottom:244.845000px;}
.yf1{bottom:253.110000px;}
.ye4{bottom:256.350000px;}
.y87{bottom:257.250000px;}
.yb3{bottom:257.400000px;}
.yac{bottom:258.840000px;}
.y3c{bottom:262.125000px;}
.yf7{bottom:267.480000px;}
.ybc{bottom:269.850000px;}
.yae{bottom:271.260000px;}
.ye3{bottom:273.630000px;}
.y86{bottom:274.530000px;}
.y3b{bottom:279.405000px;}
.yb2{bottom:281.775000px;}
.y2b{bottom:287.685000px;}
.ye2{bottom:290.910000px;}
.y85{bottom:291.810000px;}
.y3a{bottom:296.505000px;}
.y2a{bottom:302.985000px;}
.ye1{bottom:308.190000px;}
.y84{bottom:309.090000px;}
.y39{bottom:313.785000px;}
.y29{bottom:320.625000px;}
.ye0{bottom:325.290000px;}
.y83{bottom:326.370000px;}
.y38{bottom:331.065000px;}
.y28{bottom:337.905000px;}
.ydf{bottom:342.615000px;}
.y82{bottom:343.515000px;}
.y37{bottom:348.345000px;}
.y27{bottom:355.185000px;}
.yde{bottom:359.895000px;}
.y81{bottom:360.795000px;}
.y36{bottom:365.625000px;}
.y26{bottom:373.005000px;}
.ydd{bottom:377.175000px;}
.y80{bottom:378.075000px;}
.y35{bottom:382.905000px;}
.y25{bottom:389.595000px;}
.ydc{bottom:394.455000px;}
.y7f{bottom:395.355000px;}
.y34{bottom:400.035000px;}
.y24{bottom:405.975000px;}
.ydb{bottom:411.735000px;}
.y7e{bottom:412.635000px;}
.y33{bottom:417.315000px;}
.y23{bottom:423.075000px;}
.yda{bottom:428.835000px;}
.y7d{bottom:429.915000px;}
.y32{bottom:434.595000px;}
.y22{bottom:440.535000px;}
.yd9{bottom:446.115000px;}
.y7c{bottom:447.015000px;}
.y31{bottom:451.875000px;}
.y21{bottom:457.995000px;}
.yd8{bottom:463.395000px;}
.y7b{bottom:464.295000px;}
.y30{bottom:469.155000px;}
.y20{bottom:475.275000px;}
.yd7{bottom:480.675000px;}
.y7a{bottom:481.575000px;}
.y9f{bottom:485.355000px;}
.y2f{bottom:486.255000px;}
.y1f{bottom:495.615000px;}
.yd6{bottom:497.955000px;}
.y79{bottom:498.855000px;}
.y9e{bottom:502.635000px;}
.y2e{bottom:503.535000px;}
.yd5{bottom:515.055000px;}
.y78{bottom:516.135000px;}
.y9d{bottom:516.675000px;}
.ya3{bottom:516.780000px;}
.y2d{bottom:520.815000px;}
.y1e{bottom:522.975000px;}
.yd4{bottom:532.335000px;}
.y77{bottom:533.235000px;}
.y2c{bottom:538.095000px;}
.y1d{bottom:540.795000px;}
.yd3{bottom:549.615000px;}
.y76{bottom:550.515000px;}
.yd2{bottom:566.895000px;}
.y75{bottom:567.795000px;}
.y74{bottom:585.075000px;}
.yd1{bottom:589.395000px;}
.yd0{bottom:601.455000px;}
.y73{bottom:602.355000px;}
.ycf{bottom:618.585000px;}
.y72{bottom:619.665000px;}
.yce{bottom:635.865000px;}
.y71{bottom:636.765000px;}
.ycd{bottom:653.145000px;}
.y70{bottom:654.045000px;}
.ycc{bottom:670.425000px;}
.y6f{bottom:671.325000px;}
.ycb{bottom:687.705000px;}
.y6e{bottom:688.605000px;}
.yca{bottom:704.985000px;}
.y6d{bottom:705.885000px;}
.yc9{bottom:722.085000px;}
.y6c{bottom:723.165000px;}
.yc8{bottom:739.365000px;}
.y6b{bottom:740.265000px;}
.yc7{bottom:756.645000px;}
.y6a{bottom:757.545000px;}
.y1b{bottom:771.045000px;}
.yc6{bottom:773.925000px;}
.y69{bottom:774.825000px;}
.yc5{bottom:791.205000px;}
.y68{bottom:792.105000px;}
.yf{bottom:800.565000px;}
.yc4{bottom:808.485000px;}
.y67{bottom:809.385000px;}
.yc3{bottom:825.585000px;}
.y66{bottom:826.485000px;}
.y9c{bottom:837.645000px;}
.yc2{bottom:842.865000px;}
.y65{bottom:843.765000px;}
.y9b{bottom:854.925000px;}
.yc1{bottom:856.905000px;}
.yec{bottom:856.980000px;}
.y64{bottom:861.045000px;}
.y99{bottom:869.685000px;}
.yf2{bottom:870.660000px;}
.y63{bottom:878.370000px;}
.y97{bottom:887.730000px;}
.y62{bottom:895.650000px;}
.y61{bottom:912.930000px;}
.y96{bottom:926.070000px;}
.y60{bottom:930.030000px;}
.y95{bottom:943.350000px;}
.y5f{bottom:947.310000px;}
.yc0{bottom:958.110000px;}
.y5e{bottom:964.590000px;}
.y5d{bottom:981.870000px;}
.ybf{bottom:993.390000px;}
.y5c{bottom:999.150000px;}
.yd{bottom:1006.350000px;}
.y5b{bottom:1016.430000px;}
.y94{bottom:1029.930000px;}
.y5a{bottom:1033.530000px;}
.y6{bottom:1046.850000px;}
.y93{bottom:1047.030000px;}
.y59{bottom:1050.810000px;}
.y92{bottom:1061.790000px;}
.y58{bottom:1068.090000px;}
.y91{bottom:1079.790000px;}
.y57{bottom:1085.370000px;}
.y90{bottom:1097.790000px;}
.y56{bottom:1102.650000px;}
.y8f{bottom:1115.790000px;}
.y55{bottom:1119.930000px;}
.y54{bottom:1137.030000px;}
.y53{bottom:1154.340000px;}
.h25{height:17.136000px;}
.h23{height:17.280000px;}
.h2d{height:27.147656px;}
.h16{height:29.520000px;}
.h14{height:32.103633px;}
.h2{height:32.940000px;}
.h24{height:34.380000px;}
.h2b{height:34.560000px;}
.h13{height:35.806641px;}
.h8{height:36.180000px;}
.h30{height:37.080000px;}
.hc{height:40.140000px;}
.h1a{height:40.243711px;}
.h1f{height:41.726953px;}
.h1e{height:42.164648px;}
.h1d{height:42.186445px;}
.h1c{height:42.281367px;}
.h2e{height:43.506914px;}
.hf{height:44.002969px;}
.ha{height:44.820000px;}
.h27{height:46.251562px;}
.h28{height:46.352109px;}
.h2a{height:46.736719px;}
.h15{height:47.223633px;}
.h18{height:47.980898px;}
.h22{height:48.027656px;}
.h2c{height:48.147656px;}
.hd{height:49.680000px;}
.h1b{height:49.742227px;}
.h21{height:52.260820px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h19{height:56.574492px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.hb{height:71.613281px;}
.h20{height:76.140000px;}
.h7{height:121.536000px;}
.he{height:205.770000px;}
.h29{height:295.020000px;}
.h2f{height:311.400000px;}
.h26{height:317.700000px;}
.h17{height:552.135000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w11{width:99.936000px;}
.w12{width:100.080000px;}
.we{width:116.856000px;}
.w19{width:122.220000px;}
.w18{width:122.256000px;}
.w10{width:125.100000px;}
.wf{width:140.076000px;}
.w5{width:151.950000px;}
.w16{width:160.230000px;}
.wd{width:160.770000px;}
.w17{width:165.990000px;}
.w15{width:172.650000px;}
.wa{width:218.415000px;}
.w8{width:223.275000px;}
.wb{width:247.710000px;}
.wc{width:278.850000px;}
.w1b{width:426.780000px;}
.w9{width:524.055000px;}
.w13{width:545.400000px;}
.w14{width:574.200000px;}
.w6{width:595.365000px;}
.w1c{width:616.140000px;}
.w1a{width:631.800000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.560000px;}
.x2{left:8.640000px;}
.x14{left:12.600000px;}
.xd{left:15.480000px;}
.x25{left:23.400000px;}
.x44{left:30.135000px;}
.x24{left:31.680000px;}
.x32{left:35.205000px;}
.x30{left:43.200000px;}
.x2f{left:51.450000px;}
.x1{left:72.360000px;}
.x3d{left:74.445000px;}
.x4{left:80.999987px;}
.x3c{left:82.695000px;}
.x11{left:87.150000px;}
.x5{left:98.130000px;}
.x10{left:103.350000px;}
.x3a{left:108.035987px;}
.xe{left:114.150000px;}
.x3b{left:130.500000px;}
.x27{left:139.755000px;}
.x3e{left:142.995000px;}
.x3f{left:146.160000px;}
.x26{left:151.740000px;}
.x2c{left:159.300000px;}
.x23{left:173.700000px;}
.x2d{left:176.370000px;}
.x31{left:179.025000px;}
.x19{left:188.489987px;}
.x29{left:191.955000px;}
.x22{left:206.129987px;}
.x12{left:215.175000px;}
.x6{left:224.850000px;}
.xf{left:228.675000px;}
.x1b{left:234.750000px;}
.x33{left:246.630000px;}
.x1a{left:249.869987px;}
.x15{left:254.909987px;}
.x40{left:265.500000px;}
.x38{left:269.669987px;}
.x20{left:272.549987px;}
.x9{left:288.435000px;}
.x16{left:292.395000px;}
.x13{left:296.175000px;}
.x42{left:320.070000px;}
.x28{left:339.735000px;}
.x7{left:346.395000px;}
.x1c{left:352.335000px;}
.x8{left:367.635000px;}
.xb{left:369.975000px;}
.xc{left:373.575000px;}
.x2a{left:391.965000px;}
.x39{left:396.074987px;}
.x34{left:407.775000px;}
.x2e{left:423.210000px;}
.x41{left:443.730000px;}
.xa{left:455.700000px;}
.x43{left:467.070000px;}
.x2b{left:482.685000px;}
.x1d{left:493.305000px;}
.x17{left:541.005000px;}
.x35{left:574.485000px;}
.x1e{left:619.125000px;}
.x36{left:697.650000px;}
.x1f{left:719.790000px;}
.x21{left:733.649987px;}
.x3{left:745.890000px;}
.x37{left:762.449987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls15{letter-spacing:-0.629333pt;}
.lsf{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.058880pt;}
.lsb{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls12{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls10{letter-spacing:0.277333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.lsd{letter-spacing:3.360000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls13{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.wse{word-spacing:-14.752000pt;}
.wsf{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.557333pt;}
.ws8{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws5{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.wsb{word-spacing:-8.651520pt;}
.ws12{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.010667pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
.wsd{word-spacing:549.864960pt;}
.ws10{word-spacing:701.399467pt;}
._f{margin-left:-7.266133pt;}
._10{margin-left:-6.267307pt;}
._e{margin-left:-5.046400pt;}
._4{margin-left:-3.617493pt;}
._3{margin-left:-2.170667pt;}
._0{margin-left:-1.008000pt;}
._1{width:1.082667pt;}
._8{width:2.212907pt;}
._c{width:3.612160pt;}
._2{width:4.997333pt;}
._b{width:5.998933pt;}
._a{width:7.204053pt;}
._5{width:8.802560pt;}
._7{width:10.550613pt;}
._6{width:12.111360pt;}
._9{width:14.354987pt;}
._d{width:16.042240pt;}
._1a{width:18.535680pt;}
._19{width:20.291840pt;}
._18{width:21.991680pt;}
._13{width:29.981867pt;}
._14{width:31.553280pt;}
._11{width:32.668800pt;}
._15{width:33.618560pt;}
._12{width:34.743040pt;}
._17{width:96.584747pt;}
._16{width:97.740800pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:2.880000pt;}
.y9a{bottom:2.920000pt;}
.y3{bottom:3.200000pt;}
.y1a{bottom:4.000000pt;}
.yf3{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.ybd{bottom:13.626667pt;}
.y4{bottom:15.360000pt;}
.y2{bottom:17.920000pt;}
.y98{bottom:18.080000pt;}
.y4a{bottom:18.240000pt;}
.yad{bottom:19.866667pt;}
.y19{bottom:21.120000pt;}
.y51{bottom:22.394667pt;}
.ye{bottom:23.040000pt;}
.yf4{bottom:23.840000pt;}
.yb{bottom:26.880000pt;}
.yb7{bottom:30.853333pt;}
.y49{bottom:33.600000pt;}
.ya4{bottom:36.733333pt;}
.y50{bottom:38.714667pt;}
.y18{bottom:39.040000pt;}
.yed{bottom:40.733333pt;}
.ya{bottom:41.280000pt;}
.yb6{bottom:44.573333pt;}
.y4e{bottom:44.634667pt;}
.y48{bottom:48.960000pt;}
.y5{bottom:51.840000pt;}
.y17{bottom:53.760000pt;}
.y4f{bottom:55.034667pt;}
.y4d{bottom:57.594667pt;}
.ya5{bottom:60.933333pt;}
.y47{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y16{bottom:68.360000pt;}
.y1{bottom:70.592000pt;}
.yb8{bottom:72.666667pt;}
.y46{bottom:79.520000pt;}
.y15{bottom:82.440000pt;}
.y8{bottom:82.746667pt;}
.ya6{bottom:85.093333pt;}
.yb5{bottom:85.786667pt;}
.yee{bottom:86.813333pt;}
.y14{bottom:91.720000pt;}
.yf8{bottom:94.560000pt;}
.y45{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.ybe{bottom:105.093333pt;}
.y13{bottom:108.040000pt;}
.ya7{bottom:109.253333pt;}
.y44{bottom:110.280000pt;}
.y52{bottom:114.432000pt;}
.yb9{bottom:114.466667pt;}
.yb0{bottom:120.293333pt;}
.yeb{bottom:120.512000pt;}
.y8e{bottom:121.312000pt;}
.y12{bottom:125.000000pt;}
.y43{bottom:125.640000pt;}
.y4c{bottom:126.912000pt;}
.yf5{bottom:130.693333pt;}
.yef{bottom:132.866667pt;}
.ya8{bottom:133.413333pt;}
.yea{bottom:135.866667pt;}
.y8d{bottom:136.666667pt;}
.ya2{bottom:138.266667pt;}
.y42{bottom:141.000000pt;}
.y11{bottom:147.880000pt;}
.ye9{bottom:151.226667pt;}
.y8c{bottom:152.026667pt;}
.ya1{bottom:153.626667pt;}
.yba{bottom:156.253333pt;}
.y41{bottom:156.360000pt;}
.ya9{bottom:157.573333pt;}
.yb1{bottom:161.346667pt;}
.ya0{bottom:166.106667pt;}
.yb4{bottom:166.400000pt;}
.ye8{bottom:166.586667pt;}
.y8b{bottom:167.386667pt;}
.y10{bottom:169.480000pt;}
.y40{bottom:171.560000pt;}
.yf0{bottom:178.946667pt;}
.yaa{bottom:181.760000pt;}
.ye7{bottom:181.946667pt;}
.y8a{bottom:182.746667pt;}
.y3f{bottom:186.920000pt;}
.yf6{bottom:190.400000pt;}
.y1c{bottom:194.586667pt;}
.ye6{bottom:197.146667pt;}
.ybb{bottom:198.080000pt;}
.y89{bottom:198.106667pt;}
.yaf{bottom:200.026667pt;}
.y3e{bottom:202.280000pt;}
.yab{bottom:205.920000pt;}
.ye5{bottom:212.506667pt;}
.y88{bottom:213.306667pt;}
.y3d{bottom:217.640000pt;}
.yf1{bottom:224.986667pt;}
.ye4{bottom:227.866667pt;}
.y87{bottom:228.666667pt;}
.yb3{bottom:228.800000pt;}
.yac{bottom:230.080000pt;}
.y3c{bottom:233.000000pt;}
.yf7{bottom:237.760000pt;}
.ybc{bottom:239.866667pt;}
.yae{bottom:241.120000pt;}
.ye3{bottom:243.226667pt;}
.y86{bottom:244.026667pt;}
.y3b{bottom:248.360000pt;}
.yb2{bottom:250.466667pt;}
.y2b{bottom:255.720000pt;}
.ye2{bottom:258.586667pt;}
.y85{bottom:259.386667pt;}
.y3a{bottom:263.560000pt;}
.y2a{bottom:269.320000pt;}
.ye1{bottom:273.946667pt;}
.y84{bottom:274.746667pt;}
.y39{bottom:278.920000pt;}
.y29{bottom:285.000000pt;}
.ye0{bottom:289.146667pt;}
.y83{bottom:290.106667pt;}
.y38{bottom:294.280000pt;}
.y28{bottom:300.360000pt;}
.ydf{bottom:304.546667pt;}
.y82{bottom:305.346667pt;}
.y37{bottom:309.640000pt;}
.y27{bottom:315.720000pt;}
.yde{bottom:319.906667pt;}
.y81{bottom:320.706667pt;}
.y36{bottom:325.000000pt;}
.y26{bottom:331.560000pt;}
.ydd{bottom:335.266667pt;}
.y80{bottom:336.066667pt;}
.y35{bottom:340.360000pt;}
.y25{bottom:346.306667pt;}
.ydc{bottom:350.626667pt;}
.y7f{bottom:351.426667pt;}
.y34{bottom:355.586667pt;}
.y24{bottom:360.866667pt;}
.ydb{bottom:365.986667pt;}
.y7e{bottom:366.786667pt;}
.y33{bottom:370.946667pt;}
.y23{bottom:376.066667pt;}
.yda{bottom:381.186667pt;}
.y7d{bottom:382.146667pt;}
.y32{bottom:386.306667pt;}
.y22{bottom:391.586667pt;}
.yd9{bottom:396.546667pt;}
.y7c{bottom:397.346667pt;}
.y31{bottom:401.666667pt;}
.y21{bottom:407.106667pt;}
.yd8{bottom:411.906667pt;}
.y7b{bottom:412.706667pt;}
.y30{bottom:417.026667pt;}
.y20{bottom:422.466667pt;}
.yd7{bottom:427.266667pt;}
.y7a{bottom:428.066667pt;}
.y9f{bottom:431.426667pt;}
.y2f{bottom:432.226667pt;}
.y1f{bottom:440.546667pt;}
.yd6{bottom:442.626667pt;}
.y79{bottom:443.426667pt;}
.y9e{bottom:446.786667pt;}
.y2e{bottom:447.586667pt;}
.yd5{bottom:457.826667pt;}
.y78{bottom:458.786667pt;}
.y9d{bottom:459.266667pt;}
.ya3{bottom:459.360000pt;}
.y2d{bottom:462.946667pt;}
.y1e{bottom:464.866667pt;}
.yd4{bottom:473.186667pt;}
.y77{bottom:473.986667pt;}
.y2c{bottom:478.306667pt;}
.y1d{bottom:480.706667pt;}
.yd3{bottom:488.546667pt;}
.y76{bottom:489.346667pt;}
.yd2{bottom:503.906667pt;}
.y75{bottom:504.706667pt;}
.y74{bottom:520.066667pt;}
.yd1{bottom:523.906667pt;}
.yd0{bottom:534.626667pt;}
.y73{bottom:535.426667pt;}
.ycf{bottom:549.853333pt;}
.y72{bottom:550.813333pt;}
.yce{bottom:565.213333pt;}
.y71{bottom:566.013333pt;}
.ycd{bottom:580.573333pt;}
.y70{bottom:581.373333pt;}
.ycc{bottom:595.933333pt;}
.y6f{bottom:596.733333pt;}
.ycb{bottom:611.293333pt;}
.y6e{bottom:612.093333pt;}
.yca{bottom:626.653333pt;}
.y6d{bottom:627.453333pt;}
.yc9{bottom:641.853333pt;}
.y6c{bottom:642.813333pt;}
.yc8{bottom:657.213333pt;}
.y6b{bottom:658.013333pt;}
.yc7{bottom:672.573333pt;}
.y6a{bottom:673.373333pt;}
.y1b{bottom:685.373333pt;}
.yc6{bottom:687.933333pt;}
.y69{bottom:688.733333pt;}
.yc5{bottom:703.293333pt;}
.y68{bottom:704.093333pt;}
.yf{bottom:711.613333pt;}
.yc4{bottom:718.653333pt;}
.y67{bottom:719.453333pt;}
.yc3{bottom:733.853333pt;}
.y66{bottom:734.653333pt;}
.y9c{bottom:744.573333pt;}
.yc2{bottom:749.213333pt;}
.y65{bottom:750.013333pt;}
.y9b{bottom:759.933333pt;}
.yc1{bottom:761.693333pt;}
.yec{bottom:761.760000pt;}
.y64{bottom:765.373333pt;}
.y99{bottom:773.053333pt;}
.yf2{bottom:773.920000pt;}
.y63{bottom:780.773333pt;}
.y97{bottom:789.093333pt;}
.y62{bottom:796.133333pt;}
.y61{bottom:811.493333pt;}
.y96{bottom:823.173333pt;}
.y60{bottom:826.693333pt;}
.y95{bottom:838.533333pt;}
.y5f{bottom:842.053333pt;}
.yc0{bottom:851.653333pt;}
.y5e{bottom:857.413333pt;}
.y5d{bottom:872.773333pt;}
.ybf{bottom:883.013333pt;}
.y5c{bottom:888.133333pt;}
.yd{bottom:894.533333pt;}
.y5b{bottom:903.493333pt;}
.y94{bottom:915.493333pt;}
.y5a{bottom:918.693333pt;}
.y6{bottom:930.533333pt;}
.y93{bottom:930.693333pt;}
.y59{bottom:934.053333pt;}
.y92{bottom:943.813333pt;}
.y58{bottom:949.413333pt;}
.y91{bottom:959.813333pt;}
.y57{bottom:964.773333pt;}
.y90{bottom:975.813333pt;}
.y56{bottom:980.133333pt;}
.y8f{bottom:991.813333pt;}
.y55{bottom:995.493333pt;}
.y54{bottom:1010.693333pt;}
.y53{bottom:1026.080000pt;}
.h25{height:15.232000pt;}
.h23{height:15.360000pt;}
.h2d{height:24.131250pt;}
.h16{height:26.240000pt;}
.h14{height:28.536562pt;}
.h2{height:29.280000pt;}
.h24{height:30.560000pt;}
.h2b{height:30.720000pt;}
.h13{height:31.828125pt;}
.h8{height:32.160000pt;}
.h30{height:32.960000pt;}
.hc{height:35.680000pt;}
.h1a{height:35.772188pt;}
.h1f{height:37.090625pt;}
.h1e{height:37.479688pt;}
.h1d{height:37.499062pt;}
.h1c{height:37.583438pt;}
.h2e{height:38.672812pt;}
.hf{height:39.113750pt;}
.ha{height:39.840000pt;}
.h27{height:41.112500pt;}
.h28{height:41.201875pt;}
.h2a{height:41.543750pt;}
.h15{height:41.976562pt;}
.h18{height:42.649687pt;}
.h22{height:42.691250pt;}
.h2c{height:42.797917pt;}
.hd{height:44.160000pt;}
.h1b{height:44.215312pt;}
.h21{height:46.454062pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h19{height:50.288438pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.hb{height:63.656250pt;}
.h20{height:67.680000pt;}
.h7{height:108.032000pt;}
.he{height:182.906667pt;}
.h29{height:262.240000pt;}
.h2f{height:276.800000pt;}
.h26{height:282.400000pt;}
.h17{height:490.786667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w11{width:88.832000pt;}
.w12{width:88.960000pt;}
.we{width:103.872000pt;}
.w19{width:108.640000pt;}
.w18{width:108.672000pt;}
.w10{width:111.200000pt;}
.wf{width:124.512000pt;}
.w5{width:135.066667pt;}
.w16{width:142.426667pt;}
.wd{width:142.906667pt;}
.w17{width:147.546667pt;}
.w15{width:153.466667pt;}
.wa{width:194.146667pt;}
.w8{width:198.466667pt;}
.wb{width:220.186667pt;}
.wc{width:247.866667pt;}
.w1b{width:379.360000pt;}
.w9{width:465.826667pt;}
.w13{width:484.800000pt;}
.w14{width:510.400000pt;}
.w6{width:529.213333pt;}
.w1c{width:547.680000pt;}
.w1a{width:561.600000pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.720000pt;}
.x2{left:7.680000pt;}
.x14{left:11.200000pt;}
.xd{left:13.760000pt;}
.x25{left:20.800000pt;}
.x44{left:26.786667pt;}
.x24{left:28.160000pt;}
.x32{left:31.293333pt;}
.x30{left:38.400000pt;}
.x2f{left:45.733333pt;}
.x1{left:64.320000pt;}
.x3d{left:66.173333pt;}
.x4{left:71.999988pt;}
.x3c{left:73.506667pt;}
.x11{left:77.466667pt;}
.x5{left:87.226667pt;}
.x10{left:91.866667pt;}
.x3a{left:96.031988pt;}
.xe{left:101.466667pt;}
.x3b{left:116.000000pt;}
.x27{left:124.226667pt;}
.x3e{left:127.106667pt;}
.x3f{left:129.920000pt;}
.x26{left:134.880000pt;}
.x2c{left:141.600000pt;}
.x23{left:154.400000pt;}
.x2d{left:156.773333pt;}
.x31{left:159.133333pt;}
.x19{left:167.546655pt;}
.x29{left:170.626667pt;}
.x22{left:183.226655pt;}
.x12{left:191.266667pt;}
.x6{left:199.866667pt;}
.xf{left:203.266667pt;}
.x1b{left:208.666667pt;}
.x33{left:219.226667pt;}
.x1a{left:222.106655pt;}
.x15{left:226.586655pt;}
.x40{left:236.000000pt;}
.x38{left:239.706655pt;}
.x20{left:242.266655pt;}
.x9{left:256.386667pt;}
.x16{left:259.906667pt;}
.x13{left:263.266667pt;}
.x42{left:284.506667pt;}
.x28{left:301.986667pt;}
.x7{left:307.906667pt;}
.x1c{left:313.186667pt;}
.x8{left:326.786667pt;}
.xb{left:328.866667pt;}
.xc{left:332.066667pt;}
.x2a{left:348.413333pt;}
.x39{left:352.066655pt;}
.x34{left:362.466667pt;}
.x2e{left:376.186667pt;}
.x41{left:394.426667pt;}
.xa{left:405.066667pt;}
.x43{left:415.173333pt;}
.x2b{left:429.053333pt;}
.x1d{left:438.493333pt;}
.x17{left:480.893333pt;}
.x35{left:510.653333pt;}
.x1e{left:550.333333pt;}
.x36{left:620.133333pt;}
.x1f{left:639.813333pt;}
.x21{left:652.133322pt;}
.x3{left:663.013333pt;}
.x37{left:677.733322pt;}
}




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