
    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_7ba452f1ba66f53f750bee82.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965820;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_0a13e48e6ae675ecf7454732.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_9a040f56b97f28bce42f2c5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.947266;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_b23940fea18559c2e545930c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.947754;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_46f04804842a77800cfa364a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.694336;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_9835459b9a62d49aa22e2c4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.691406;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);}
.v5{vertical-align:-43.200000px;}
.v1{vertical-align:-6.180000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:23.760000px;}
.v3{vertical-align:28.800000px;}
.v2{vertical-align:36.000000px;}
.v4{vertical-align:43.200000px;}
.v7{vertical-align:47.520000px;}
.lsd{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.316800px;}
.ls17{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.201600px;}
.ls13{letter-spacing:-0.158400px;}
.ls12{letter-spacing:-0.144000px;}
.lsc{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.060480px;}
.ls16{letter-spacing:0.086400px;}
.ls10{letter-spacing:0.100800px;}
.ls11{letter-spacing:0.115200px;}
.ls18{letter-spacing:0.158400px;}
.lsa{letter-spacing:0.201600px;}
.ls19{letter-spacing:0.216000px;}
.ls14{letter-spacing:0.259200px;}
.ls1{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.316800px;}
.lsf{letter-spacing:0.720000px;}
.ls9{letter-spacing:32.083200px;}
.ls3{letter-spacing:32.673600px;}
.ls2{letter-spacing:33.033600px;}
.ls6{letter-spacing:33.278400px;}
.ls4{letter-spacing:48.240000px;}
.ls7{letter-spacing:56.880000px;}
.ls5{letter-spacing:57.038400px;}
.ls8{letter-spacing:61.200000px;}
.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;}
}
.ws55{word-spacing:-144.000000px;}
.ws54{word-spacing:-49.680000px;}
.ws50{word-spacing:-48.960000px;}
.ws16{word-spacing:-48.240000px;}
.ws4d{word-spacing:-41.198400px;}
.ws27{word-spacing:-40.723200px;}
.ws8{word-spacing:-28.641600px;}
.ws2e{word-spacing:-26.438400px;}
.ws32{word-spacing:-26.236800px;}
.ws57{word-spacing:-24.480000px;}
.ws53{word-spacing:-2.880000px;}
.ws10{word-spacing:-2.160000px;}
.ws5{word-spacing:-2.040000px;}
.ws28{word-spacing:-1.786320px;}
.ws40{word-spacing:-1.756800px;}
.ws4a{word-spacing:-1.612800px;}
.ws35{word-spacing:-1.526400px;}
.ws42{word-spacing:-1.388160px;}
.ws37{word-spacing:-1.111680px;}
.ws31{word-spacing:-1.036800px;}
.ws30{word-spacing:-0.806400px;}
.ws1e{word-spacing:-0.720000px;}
.ws3f{word-spacing:-0.673920px;}
.ws3d{word-spacing:-0.662400px;}
.ws39{word-spacing:-0.650880px;}
.ws34{word-spacing:-0.316800px;}
.ws41{word-spacing:-0.288000px;}
.ws3a{word-spacing:-0.201600px;}
.ws2f{word-spacing:-0.057600px;}
.ws7{word-spacing:0.000000px;}
.ws3b{word-spacing:0.086400px;}
.ws49{word-spacing:0.192960px;}
.ws4b{word-spacing:0.213120px;}
.ws33{word-spacing:0.633600px;}
.ws47{word-spacing:0.766080px;}
.ws3e{word-spacing:0.806400px;}
.ws45{word-spacing:0.895680px;}
.ws3c{word-spacing:1.036800px;}
.ws44{word-spacing:1.180800px;}
.ws4c{word-spacing:1.333440px;}
.ws43{word-spacing:1.756800px;}
.ws38{word-spacing:1.998720px;}
.ws36{word-spacing:2.324160px;}
.ws9{word-spacing:2.490480px;}
.ws4e{word-spacing:2.880000px;}
.ws52{word-spacing:3.600000px;}
.ws1c{word-spacing:4.320000px;}
.ws12{word-spacing:4.500000px;}
.wse{word-spacing:5.040000px;}
.ws1{word-spacing:5.760000px;}
.ws11{word-spacing:6.480000px;}
.ws2{word-spacing:7.200000px;}
.wsa{word-spacing:7.920000px;}
.ws3{word-spacing:8.640000px;}
.wsb{word-spacing:10.080000px;}
.ws4f{word-spacing:10.800000px;}
.ws1d{word-spacing:11.520000px;}
.ws56{word-spacing:12.240000px;}
.ws4{word-spacing:13.680000px;}
.ws0{word-spacing:15.120000px;}
.ws15{word-spacing:15.840000px;}
.ws2c{word-spacing:16.560000px;}
.ws2a{word-spacing:17.280000px;}
.ws2b{word-spacing:17.460000px;}
.ws2d{word-spacing:18.000000px;}
.ws17{word-spacing:19.440000px;}
.ws29{word-spacing:20.160000px;}
.ws51{word-spacing:20.880000px;}
.wsd{word-spacing:22.320000px;}
.ws14{word-spacing:23.040000px;}
.ws46{word-spacing:27.100800px;}
.ws20{word-spacing:28.886400px;}
.ws25{word-spacing:29.106720px;}
.ws21{word-spacing:29.144880px;}
.ws24{word-spacing:29.145600px;}
.ws1f{word-spacing:29.365920px;}
.ws18{word-spacing:29.520000px;}
.ws23{word-spacing:29.624400px;}
.ws26{word-spacing:29.824560px;}
.ws13{word-spacing:30.960000px;}
.wsf{word-spacing:32.400000px;}
.ws1b{word-spacing:37.440000px;}
.ws19{word-spacing:38.160000px;}
.ws1a{word-spacing:39.600000px;}
.ws22{word-spacing:43.372800px;}
.wsc{word-spacing:49.680000px;}
.ws6{word-spacing:65.946960px;}
.ws48{word-spacing:3536.761440px;}
.ws58{word-spacing:4501.766400px;}
._1{margin-left:-3.021120px;}
._0{margin-left:-1.584000px;}
._c{width:1.095360px;}
._2{width:2.161920px;}
._23{width:3.419040px;}
._1e{width:26.524800px;}
._1b{width:27.705600px;}
._1c{width:28.857600px;}
._1d{width:30.159840px;}
._20{width:39.288000px;}
._21{width:42.599040px;}
._b{width:46.800000px;}
._1a{width:47.820000px;}
._9{width:48.960000px;}
._16{width:50.868000px;}
._17{width:52.092000px;}
._5{width:53.400000px;}
._6{width:54.871200px;}
._7{width:57.168000px;}
._d{width:58.356000px;}
._22{width:60.024000px;}
._8{width:61.464000px;}
._4{width:63.072000px;}
._19{width:64.668000px;}
._a{width:67.733760px;}
._f{width:69.732000px;}
._18{width:71.196480px;}
._3{width:74.602080px;}
._13{width:76.476000px;}
._12{width:78.480000px;}
._10{width:79.812000px;}
._14{width:84.708000px;}
._15{width:87.564000px;}
._e{width:97.356000px;}
._1f{width:3066.202080px;}
._11{width:10707.540000px;}
.fc4{color:rgb(102,51,0);}
.fc3{color:rgb(77,0,77);}
.fc2{color:rgb(102,102,51);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:51.840000px;}
.fse{font-size:59.760000px;}
.fsb{font-size:64.080000px;}
.fsd{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs8{font-size:79.920000px;}
.fs6{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs7{font-size:120.240000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:216.000000px;}
.fs5{font-size:239.760000px;}
.fs1{font-size:264.240000px;}
.fs4{font-size:288.000000px;}
.fs0{font-size:396.000000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:7.920000px;}
.yae{bottom:13.470000px;}
.yb4{bottom:13.500000px;}
.y99{bottom:13.530000px;}
.ydf{bottom:13.536000px;}
.ya5{bottom:13.575000px;}
.yc3{bottom:13.605000px;}
.yc5{bottom:15.045000px;}
.y8d{bottom:15.090000px;}
.yb6{bottom:15.120000px;}
.y9b{bottom:15.150000px;}
.ye1{bottom:15.156000px;}
.y87{bottom:15.195000px;}
.y85{bottom:18.795000px;}
.y89{bottom:21.675000px;}
.yba{bottom:24.840000px;}
.y12{bottom:28.008000px;}
.y93{bottom:29.310000px;}
.ya1{bottom:32.790000px;}
.y95{bottom:32.910000px;}
.y8f{bottom:33.810000px;}
.yb8{bottom:33.840000px;}
.y9d{bottom:33.870000px;}
.yaa{bottom:33.915000px;}
.yc7{bottom:33.945000px;}
.y9f{bottom:37.290000px;}
.ya8{bottom:37.335000px;}
.y91{bottom:37.410000px;}
.y5e{bottom:41.580000px;}
.y25{bottom:46.008000px;}
.y11{bottom:53.208000px;}
.y32{bottom:57.600000px;}
.yd7{bottom:66.600000px;}
.y56{bottom:68.250000px;}
.y66{bottom:69.912000px;}
.y8b{bottom:77.010000px;}
.y10{bottom:78.408000px;}
.y34{bottom:80.640000px;}
.y24{bottom:82.008000px;}
.yc9{bottom:85.680000px;}
.y3a{bottom:94.425000px;}
.yd3{bottom:99.645000px;}
.yce{bottom:100.470000px;}
.yd8{bottom:100.590000px;}
.y4e{bottom:102.315000px;}
.y5a{bottom:102.885000px;}
.yd2{bottom:103.500000px;}
.yf{bottom:103.608000px;}
.ybc{bottom:105.555000px;}
.yac{bottom:107.250000px;}
.ya3{bottom:108.075000px;}
.y36{bottom:112.350000px;}
.ye0{bottom:116.100000px;}
.yde{bottom:117.720000px;}
.y3e{bottom:120.960000px;}
.y97{bottom:120.990000px;}
.y52{bottom:121.110000px;}
.ydd{bottom:123.336000px;}
.y46{bottom:128.130000px;}
.ydb{bottom:133.380000px;}
.yc1{bottom:137.445000px;}
.ycd{bottom:138.600000px;}
.yb2{bottom:140.760000px;}
.ye{bottom:141.408000px;}
.y42{bottom:148.035000px;}
.yda{bottom:152.100000px;}
.yd9{bottom:153.720000px;}
.yd6{bottom:169.200000px;}
.y4a{bottom:169.380000px;}
.yc0{bottom:173.520000px;}
.yd5{bottom:188.100000px;}
.yc8{bottom:189.360000px;}
.yd4{bottom:189.540000px;}
.yd1{bottom:205.200000px;}
.yd0{bottom:223.920000px;}
.ycf{bottom:225.540000px;}
.ycc{bottom:241.200000px;}
.ybb{bottom:241.380000px;}
.yb1{bottom:242.100000px;}
.ycb{bottom:259.920000px;}
.yca{bottom:261.540000px;}
.yc6{bottom:277.020000px;}
.y23{bottom:282.390000px;}
.yc4{bottom:295.920000px;}
.y3c{bottom:296.385000px;}
.yc2{bottom:297.360000px;}
.yab{bottom:311.580000px;}
.ybf{bottom:313.020000px;}
.y22{bottom:325.590000px;}
.ybe{bottom:331.740000px;}
.ybd{bottom:333.360000px;}
.ya2{bottom:346.680000px;}
.yb7{bottom:349.020000px;}
.yb9{bottom:358.020000px;}
.y44{bottom:363.135000px;}
.yb5{bottom:367.740000px;}
.y21{bottom:368.790000px;}
.yb3{bottom:369.360000px;}
.y96{bottom:369.720000px;}
.y60{bottom:377.460000px;}
.y48{bottom:379.230000px;}
.yb0{bottom:381.420000px;}
.yaf{bottom:403.740000px;}
.yad{bottom:405.360000px;}
.y54{bottom:406.950000px;}
.y40{bottom:409.320000px;}
.y20{bottom:411.990000px;}
.ya7{bottom:417.420000px;}
.ya9{bottom:420.840000px;}
.ya6{bottom:439.560000px;}
.ya4{bottom:441.180000px;}
.y50{bottom:448.455000px;}
.y8a{bottom:449.640000px;}
.y9e{bottom:453.420000px;}
.y1f{bottom:455.190000px;}
.y9c{bottom:456.840000px;}
.ya0{bottom:457.920000px;}
.y5c{bottom:470.985000px;}
.y9a{bottom:475.560000px;}
.y98{bottom:477.180000px;}
.y90{bottom:489.240000px;}
.y8e{bottom:492.840000px;}
.y94{bottom:493.740000px;}
.y92{bottom:497.340000px;}
.y1e{bottom:498.390000px;}
.y38{bottom:509.790000px;}
.y8c{bottom:511.560000px;}
.y88{bottom:540.900000px;}
.y1d{bottom:541.590000px;}
.y84{bottom:543.780000px;}
.y86{bottom:547.380000px;}
.y4c{bottom:565.200000px;}
.y1c{bottom:584.790000px;}
.y65{bottom:627.450000px;}
.y1b{bottom:627.990000px;}
.y1a{bottom:674.175000px;}
.y57{bottom:706.680000px;}
.y19{bottom:717.375000px;}
.y58{bottom:718.050000px;}
.y18{bottom:760.575000px;}
.y64{bottom:785.625000px;}
.y17{bottom:803.775000px;}
.y16{bottom:846.975000px;}
.y15{bottom:890.175000px;}
.y5b{bottom:897.840000px;}
.y79{bottom:932.370000px;}
.y5f{bottom:935.460000px;}
.y14{bottom:939.135000px;}
.y78{bottom:975.570000px;}
.y77{bottom:1018.770000px;}
.y4b{bottom:1027.260000px;}
.y63{bottom:1049.790000px;}
.y76{bottom:1061.970000px;}
.y53{bottom:1073.700000px;}
.y4f{bottom:1088.100000px;}
.y75{bottom:1105.170000px;}
.y74{bottom:1148.370000px;}
.y73{bottom:1191.570000px;}
.y62{bottom:1220.970000px;}
.y72{bottom:1234.770000px;}
.y59{bottom:1265.940000px;}
.y47{bottom:1269.180000px;}
.y5d{bottom:1271.340000px;}
.y61{bottom:1273.530000px;}
.y71{bottom:1277.970000px;}
.y70{bottom:1321.170000px;}
.y43{bottom:1324.620000px;}
.y37{bottom:1329.120000px;}
.y3f{bottom:1334.340000px;}
.y55{bottom:1356.480000px;}
.y51{bottom:1359.540000px;}
.y6f{bottom:1364.370000px;}
.y6e{bottom:1407.570000px;}
.y49{bottom:1423.080000px;}
.y4d{bottom:1434.240000px;}
.y6d{bottom:1450.770000px;}
.y3b{bottom:1486.620000px;}
.y6c{bottom:1493.970000px;}
.y45{bottom:1520.280000px;}
.y6b{bottom:1537.170000px;}
.y41{bottom:1539.720000px;}
.y6a{bottom:1580.370000px;}
.y3d{bottom:1622.700000px;}
.y69{bottom:1623.600000px;}
.y68{bottom:1666.800000px;}
.y39{bottom:1688.580000px;}
.y67{bottom:1710.000000px;}
.y35{bottom:1726.560000px;}
.y83{bottom:1773.690000px;}
.y33{bottom:1797.660000px;}
.y82{bottom:1802.490000px;}
.y31{bottom:1820.700000px;}
.y81{bottom:1831.290000px;}
.y13{bottom:1923.840000px;}
.yef{bottom:1931.910000px;}
.y103{bottom:1954.230000px;}
.yee{bottom:1975.470000px;}
.yd{bottom:1990.830000px;}
.ye9{bottom:2010.345000px;}
.yed{bottom:2013.225000px;}
.yfc{bottom:2017.005000px;}
.yf8{bottom:2023.305000px;}
.ye3{bottom:2043.645000px;}
.ye8{bottom:2050.485000px;}
.yec{bottom:2053.005000px;}
.yc{bottom:2061.390000px;}
.yf7{bottom:2067.405000px;}
.yf2{bottom:2069.925000px;}
.ye2{bottom:2083.965000px;}
.yfb{bottom:2105.205000px;}
.yf5{bottom:2111.505000px;}
.y102{bottom:2130.375000px;}
.yfd{bottom:2136.675000px;}
.y30{bottom:2165.760000px;}
.yf6{bottom:2174.475000px;}
.ye7{bottom:2178.570000px;}
.ye6{bottom:2203.230000px;}
.y2f{bottom:2208.960000px;}
.yf1{bottom:2218.935000px;}
.yf4{bottom:2224.695000px;}
.y2e{bottom:2252.160000px;}
.yfa{bottom:2256.150000px;}
.yfe{bottom:2268.750000px;}
.y101{bottom:2293.950000px;}
.y2d{bottom:2295.360000px;}
.ye5{bottom:2299.830000px;}
.yff{bottom:2319.150000px;}
.yf3{bottom:2331.750000px;}
.ye4{bottom:2336.550000px;}
.y2c{bottom:2367.360000px;}
.yf0{bottom:2369.880000px;}
.yea{bottom:2387.670000px;}
.y100{bottom:2400.840000px;}
.y2b{bottom:2410.560000px;}
.y2a{bottom:2453.760000px;}
.yf9{bottom:2482.710000px;}
.yeb{bottom:2490.450000px;}
.y29{bottom:2496.960000px;}
.y28{bottom:2540.160000px;}
.y27{bottom:2584.800000px;}
.y80{bottom:2624.070000px;}
.yb{bottom:2642.430000px;}
.y7f{bottom:2667.270000px;}
.y7e{bottom:2710.470000px;}
.y26{bottom:2741.760000px;}
.y7d{bottom:2753.670000px;}
.y7c{bottom:2796.870000px;}
.y7b{bottom:2840.115000px;}
.y9{bottom:2883.315000px;}
.y8{bottom:2926.515000px;}
.y7{bottom:2969.715000px;}
.y6{bottom:3012.915000px;}
.y7a{bottom:3056.115000px;}
.y5{bottom:3056.655000px;}
.ya{bottom:3144.345000px;}
.y4{bottom:3301.305000px;}
.y3{bottom:3368.985000px;}
.y2{bottom:3574.725000px;}
.y1{bottom:3693.525000px;}
.h33{height:44.820000px;}
.h3c{height:45.000000px;}
.h41{height:47.880000px;}
.h2b{height:48.060000px;}
.h46{height:49.183594px;}
.h44{height:52.910156px;}
.h29{height:55.440000px;}
.hd{height:57.142969px;}
.h2c{height:61.020000px;}
.h2a{height:61.855312px;}
.h9{height:61.904883px;}
.h39{height:67.500000px;}
.h28{height:70.370508px;}
.h25{height:75.890039px;}
.h30{height:76.500000px;}
.h35{height:83.340000px;}
.h31{height:83.520000px;}
.h2e{height:85.500000px;}
.h3d{height:85.680000px;}
.hb{height:88.359961px;}
.h34{height:92.340000px;}
.h2f{height:92.520000px;}
.ha{height:93.247383px;}
.h23{height:97.380000px;}
.h45{height:100.430156px;}
.h5{height:105.820312px;}
.h27{height:111.793711px;}
.h26{height:113.570508px;}
.hc{height:129.420000px;}
.h1f{height:150.840000px;}
.h4{height:158.730469px;}
.h2d{height:171.720000px;}
.he{height:175.500000px;}
.h8{height:176.190820px;}
.h3e{height:189.180000px;}
.h3{height:194.180273px;}
.h1b{height:195.660000px;}
.h11{height:203.220000px;}
.h6{height:211.640625px;}
.h40{height:217.080000px;}
.h3f{height:218.880000px;}
.h42{height:219.060000px;}
.h21{height:219.960000px;}
.h3a{height:228.960000px;}
.h37{height:232.380000px;}
.h1d{height:233.100000px;}
.h36{height:233.820000px;}
.hf{height:239.040000px;}
.h17{height:247.140000px;}
.h7{height:250.062187px;}
.h13{height:256.140000px;}
.h32{height:259.740000px;}
.h43{height:264.420000px;}
.h2{height:291.005859px;}
.h3b{height:292.680000px;}
.h38{height:299.340000px;}
.h15{height:310.320000px;}
.h19{height:329.580000px;}
.h12{height:606.960000px;}
.h16{height:740.520000px;}
.h24{height:769.140000px;}
.h18{height:772.740000px;}
.h1e{height:828.180000px;}
.h14{height:832.860000px;}
.h1c{height:911.160000px;}
.h22{height:956.340000px;}
.h10{height:1033.920000px;}
.h1a{height:1144.800000px;}
.h20{height:1450.440000px;}
.h1{height:3827.250000px;}
.h0{height:3827.340000px;}
.w3{width:158.580000px;}
.w5{width:177.840000px;}
.w8{width:178.020000px;}
.wa{width:190.260000px;}
.w6{width:190.440000px;}
.w4{width:190.800000px;}
.wb{width:193.140000px;}
.w7{width:193.320000px;}
.w9{width:644.580000px;}
.w1{width:1009.620000px;}
.w2{width:1774.260000px;}
.w0{width:6048.000000px;}
.x0{left:0.000000px;}
.x42{left:11.910000px;}
.x16{left:16.050000px;}
.x33{left:18.210000px;}
.x23{left:69.120000px;}
.x30{left:76.035000px;}
.x27{left:82.515000px;}
.x25{left:88.950000px;}
.x2a{left:90.360000px;}
.x36{left:108.615000px;}
.x39{left:115.635000px;}
.x3c{left:117.615000px;}
.x3a{left:121.290000px;}
.x40{left:124.170000px;}
.x35{left:128.520000px;}
.x3b{left:131.190000px;}
.x34{left:133.890000px;}
.x37{left:137.310000px;}
.x3e{left:153.075000px;}
.x3f{left:156.135000px;}
.xf{left:157.605000px;}
.x38{left:165.960000px;}
.x3d{left:169.020000px;}
.x41{left:171.690000px;}
.x6{left:183.315000px;}
.x8{left:191.340000px;}
.xe{left:196.050000px;}
.x15{left:197.640000px;}
.x1a{left:208.230000px;}
.x18{left:213.690000px;}
.x1{left:217.230000px;}
.x10{left:277.845000px;}
.x5{left:291.345000px;}
.x14{left:304.050000px;}
.x2{left:501.090000px;}
.x3{left:740.700000px;}
.x22{left:842.220000px;}
.x24{left:1000.800000px;}
.x26{left:1191.600000px;}
.x17{left:1207.440000px;}
.x7{left:1281.525000px;}
.x28{left:1369.440000px;}
.x13{left:1396.950000px;}
.x4{left:1409.760000px;}
.x29{left:1559.880000px;}
.x2b{left:1753.200000px;}
.x2c{left:1931.220000px;}
.x2d{left:2109.060000px;}
.x2e{left:2286.900000px;}
.x2f{left:2464.920000px;}
.x31{left:2642.760000px;}
.x32{left:2820.600000px;}
.xb{left:3014.100000px;}
.x1f{left:3122.970000px;}
.x11{left:3173.070000px;}
.xd{left:3207.960000px;}
.x21{left:3210.735000px;}
.x1e{left:3230.970000px;}
.x20{left:3243.210000px;}
.x1d{left:3281.070000px;}
.x1c{left:3293.310000px;}
.xc{left:3345.480000px;}
.x4a{left:3355.455000px;}
.x4b{left:3357.975000px;}
.x49{left:3376.875000px;}
.xa{left:3487.680000px;}
.x9{left:3517.920000px;}
.x5b{left:3655.080000px;}
.x66{left:3692.775000px;}
.x5c{left:3720.780000px;}
.x47{left:3905.130000px;}
.x5a{left:3921.630000px;}
.x5d{left:3971.955000px;}
.x1b{left:4057.590000px;}
.x4c{left:4097.850000px;}
.x43{left:4139.565000px;}
.x44{left:4156.845000px;}
.x19{left:4280.685000px;}
.x60{left:4373.970000px;}
.x12{left:4393.260000px;}
.x61{left:4411.650000px;}
.x62{left:4434.150000px;}
.x5e{left:4512.600000px;}
.x4d{left:4542.375000px;}
.x5f{left:4549.755000px;}
.x4e{left:4583.550000px;}
.x46{left:4624.350000px;}
.x4f{left:4646.235000px;}
.x56{left:4650.735000px;}
.x45{left:4652.070000px;}
.x57{left:4700.550000px;}
.x50{left:4738.140000px;}
.x58{left:4763.415000px;}
.x59{left:4793.580000px;}
.x64{left:4979.160000px;}
.x65{left:4983.660000px;}
.x63{left:5074.740000px;}
.x48{left:5123.520000px;}
.x54{left:5328.690000px;}
.x55{left:5391.435000px;}
.x51{left:5521.860000px;}
.x52{left:5557.350000px;}
.x53{left:5560.410000px;}
@media print{
.v5{vertical-align:-38.400000pt;}
.v1{vertical-align:-5.493333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.120000pt;}
.v3{vertical-align:25.600000pt;}
.v2{vertical-align:32.000000pt;}
.v4{vertical-align:38.400000pt;}
.v7{vertical-align:42.240000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.281600pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.179200pt;}
.ls13{letter-spacing:-0.140800pt;}
.ls12{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.053760pt;}
.ls16{letter-spacing:0.076800pt;}
.ls10{letter-spacing:0.089600pt;}
.ls11{letter-spacing:0.102400pt;}
.ls18{letter-spacing:0.140800pt;}
.lsa{letter-spacing:0.179200pt;}
.ls19{letter-spacing:0.192000pt;}
.ls14{letter-spacing:0.230400pt;}
.ls1{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.281600pt;}
.lsf{letter-spacing:0.640000pt;}
.ls9{letter-spacing:28.518400pt;}
.ls3{letter-spacing:29.043200pt;}
.ls2{letter-spacing:29.363200pt;}
.ls6{letter-spacing:29.580800pt;}
.ls4{letter-spacing:42.880000pt;}
.ls7{letter-spacing:50.560000pt;}
.ls5{letter-spacing:50.700800pt;}
.ls8{letter-spacing:54.400000pt;}
.ws55{word-spacing:-128.000000pt;}
.ws54{word-spacing:-44.160000pt;}
.ws50{word-spacing:-43.520000pt;}
.ws16{word-spacing:-42.880000pt;}
.ws4d{word-spacing:-36.620800pt;}
.ws27{word-spacing:-36.198400pt;}
.ws8{word-spacing:-25.459200pt;}
.ws2e{word-spacing:-23.500800pt;}
.ws32{word-spacing:-23.321600pt;}
.ws57{word-spacing:-21.760000pt;}
.ws53{word-spacing:-2.560000pt;}
.ws10{word-spacing:-1.920000pt;}
.ws5{word-spacing:-1.813333pt;}
.ws28{word-spacing:-1.587840pt;}
.ws40{word-spacing:-1.561600pt;}
.ws4a{word-spacing:-1.433600pt;}
.ws35{word-spacing:-1.356800pt;}
.ws42{word-spacing:-1.233920pt;}
.ws37{word-spacing:-0.988160pt;}
.ws31{word-spacing:-0.921600pt;}
.ws30{word-spacing:-0.716800pt;}
.ws1e{word-spacing:-0.640000pt;}
.ws3f{word-spacing:-0.599040pt;}
.ws3d{word-spacing:-0.588800pt;}
.ws39{word-spacing:-0.578560pt;}
.ws34{word-spacing:-0.281600pt;}
.ws41{word-spacing:-0.256000pt;}
.ws3a{word-spacing:-0.179200pt;}
.ws2f{word-spacing:-0.051200pt;}
.ws7{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.076800pt;}
.ws49{word-spacing:0.171520pt;}
.ws4b{word-spacing:0.189440pt;}
.ws33{word-spacing:0.563200pt;}
.ws47{word-spacing:0.680960pt;}
.ws3e{word-spacing:0.716800pt;}
.ws45{word-spacing:0.796160pt;}
.ws3c{word-spacing:0.921600pt;}
.ws44{word-spacing:1.049600pt;}
.ws4c{word-spacing:1.185280pt;}
.ws43{word-spacing:1.561600pt;}
.ws38{word-spacing:1.776640pt;}
.ws36{word-spacing:2.065920pt;}
.ws9{word-spacing:2.213760pt;}
.ws4e{word-spacing:2.560000pt;}
.ws52{word-spacing:3.200000pt;}
.ws1c{word-spacing:3.840000pt;}
.ws12{word-spacing:4.000000pt;}
.wse{word-spacing:4.480000pt;}
.ws1{word-spacing:5.120000pt;}
.ws11{word-spacing:5.760000pt;}
.ws2{word-spacing:6.400000pt;}
.wsa{word-spacing:7.040000pt;}
.ws3{word-spacing:7.680000pt;}
.wsb{word-spacing:8.960000pt;}
.ws4f{word-spacing:9.600000pt;}
.ws1d{word-spacing:10.240000pt;}
.ws56{word-spacing:10.880000pt;}
.ws4{word-spacing:12.160000pt;}
.ws0{word-spacing:13.440000pt;}
.ws15{word-spacing:14.080000pt;}
.ws2c{word-spacing:14.720000pt;}
.ws2a{word-spacing:15.360000pt;}
.ws2b{word-spacing:15.520000pt;}
.ws2d{word-spacing:16.000000pt;}
.ws17{word-spacing:17.280000pt;}
.ws29{word-spacing:17.920000pt;}
.ws51{word-spacing:18.560000pt;}
.wsd{word-spacing:19.840000pt;}
.ws14{word-spacing:20.480000pt;}
.ws46{word-spacing:24.089600pt;}
.ws20{word-spacing:25.676800pt;}
.ws25{word-spacing:25.872640pt;}
.ws21{word-spacing:25.906560pt;}
.ws24{word-spacing:25.907200pt;}
.ws1f{word-spacing:26.103040pt;}
.ws18{word-spacing:26.240000pt;}
.ws23{word-spacing:26.332800pt;}
.ws26{word-spacing:26.510720pt;}
.ws13{word-spacing:27.520000pt;}
.wsf{word-spacing:28.800000pt;}
.ws1b{word-spacing:33.280000pt;}
.ws19{word-spacing:33.920000pt;}
.ws1a{word-spacing:35.200000pt;}
.ws22{word-spacing:38.553600pt;}
.wsc{word-spacing:44.160000pt;}
.ws6{word-spacing:58.619520pt;}
.ws48{word-spacing:3143.787947pt;}
.ws58{word-spacing:4001.570133pt;}
._1{margin-left:-2.685440pt;}
._0{margin-left:-1.408000pt;}
._c{width:0.973653pt;}
._2{width:1.921707pt;}
._23{width:3.039147pt;}
._1e{width:23.577600pt;}
._1b{width:24.627200pt;}
._1c{width:25.651200pt;}
._1d{width:26.808747pt;}
._20{width:34.922667pt;}
._21{width:37.865813pt;}
._b{width:41.600000pt;}
._1a{width:42.506667pt;}
._9{width:43.520000pt;}
._16{width:45.216000pt;}
._17{width:46.304000pt;}
._5{width:47.466667pt;}
._6{width:48.774400pt;}
._7{width:50.816000pt;}
._d{width:51.872000pt;}
._22{width:53.354667pt;}
._8{width:54.634667pt;}
._4{width:56.064000pt;}
._19{width:57.482667pt;}
._a{width:60.207787pt;}
._f{width:61.984000pt;}
._18{width:63.285760pt;}
._3{width:66.312960pt;}
._13{width:67.978667pt;}
._12{width:69.760000pt;}
._10{width:70.944000pt;}
._14{width:75.296000pt;}
._15{width:77.834667pt;}
._e{width:86.538667pt;}
._1f{width:2725.512960pt;}
._11{width:9517.813333pt;}
.fsc{font-size:46.080000pt;}
.fse{font-size:53.120000pt;}
.fsb{font-size:56.960000pt;}
.fsd{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs8{font-size:71.040000pt;}
.fs6{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs7{font-size:106.880000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:192.000000pt;}
.fs5{font-size:213.120000pt;}
.fs1{font-size:234.880000pt;}
.fs4{font-size:256.000000pt;}
.fs0{font-size:352.000000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:7.040000pt;}
.yae{bottom:11.973333pt;}
.yb4{bottom:12.000000pt;}
.y99{bottom:12.026667pt;}
.ydf{bottom:12.032000pt;}
.ya5{bottom:12.066667pt;}
.yc3{bottom:12.093333pt;}
.yc5{bottom:13.373333pt;}
.y8d{bottom:13.413333pt;}
.yb6{bottom:13.440000pt;}
.y9b{bottom:13.466667pt;}
.ye1{bottom:13.472000pt;}
.y87{bottom:13.506667pt;}
.y85{bottom:16.706667pt;}
.y89{bottom:19.266667pt;}
.yba{bottom:22.080000pt;}
.y12{bottom:24.896000pt;}
.y93{bottom:26.053333pt;}
.ya1{bottom:29.146667pt;}
.y95{bottom:29.253333pt;}
.y8f{bottom:30.053333pt;}
.yb8{bottom:30.080000pt;}
.y9d{bottom:30.106667pt;}
.yaa{bottom:30.146667pt;}
.yc7{bottom:30.173333pt;}
.y9f{bottom:33.146667pt;}
.ya8{bottom:33.186667pt;}
.y91{bottom:33.253333pt;}
.y5e{bottom:36.960000pt;}
.y25{bottom:40.896000pt;}
.y11{bottom:47.296000pt;}
.y32{bottom:51.200000pt;}
.yd7{bottom:59.200000pt;}
.y56{bottom:60.666667pt;}
.y66{bottom:62.144000pt;}
.y8b{bottom:68.453333pt;}
.y10{bottom:69.696000pt;}
.y34{bottom:71.680000pt;}
.y24{bottom:72.896000pt;}
.yc9{bottom:76.160000pt;}
.y3a{bottom:83.933333pt;}
.yd3{bottom:88.573333pt;}
.yce{bottom:89.306667pt;}
.yd8{bottom:89.413333pt;}
.y4e{bottom:90.946667pt;}
.y5a{bottom:91.453333pt;}
.yd2{bottom:92.000000pt;}
.yf{bottom:92.096000pt;}
.ybc{bottom:93.826667pt;}
.yac{bottom:95.333333pt;}
.ya3{bottom:96.066667pt;}
.y36{bottom:99.866667pt;}
.ye0{bottom:103.200000pt;}
.yde{bottom:104.640000pt;}
.y3e{bottom:107.520000pt;}
.y97{bottom:107.546667pt;}
.y52{bottom:107.653333pt;}
.ydd{bottom:109.632000pt;}
.y46{bottom:113.893333pt;}
.ydb{bottom:118.560000pt;}
.yc1{bottom:122.173333pt;}
.ycd{bottom:123.200000pt;}
.yb2{bottom:125.120000pt;}
.ye{bottom:125.696000pt;}
.y42{bottom:131.586667pt;}
.yda{bottom:135.200000pt;}
.yd9{bottom:136.640000pt;}
.yd6{bottom:150.400000pt;}
.y4a{bottom:150.560000pt;}
.yc0{bottom:154.240000pt;}
.yd5{bottom:167.200000pt;}
.yc8{bottom:168.320000pt;}
.yd4{bottom:168.480000pt;}
.yd1{bottom:182.400000pt;}
.yd0{bottom:199.040000pt;}
.ycf{bottom:200.480000pt;}
.ycc{bottom:214.400000pt;}
.ybb{bottom:214.560000pt;}
.yb1{bottom:215.200000pt;}
.ycb{bottom:231.040000pt;}
.yca{bottom:232.480000pt;}
.yc6{bottom:246.240000pt;}
.y23{bottom:251.013333pt;}
.yc4{bottom:263.040000pt;}
.y3c{bottom:263.453333pt;}
.yc2{bottom:264.320000pt;}
.yab{bottom:276.960000pt;}
.ybf{bottom:278.240000pt;}
.y22{bottom:289.413333pt;}
.ybe{bottom:294.880000pt;}
.ybd{bottom:296.320000pt;}
.ya2{bottom:308.160000pt;}
.yb7{bottom:310.240000pt;}
.yb9{bottom:318.240000pt;}
.y44{bottom:322.786667pt;}
.yb5{bottom:326.880000pt;}
.y21{bottom:327.813333pt;}
.yb3{bottom:328.320000pt;}
.y96{bottom:328.640000pt;}
.y60{bottom:335.520000pt;}
.y48{bottom:337.093333pt;}
.yb0{bottom:339.040000pt;}
.yaf{bottom:358.880000pt;}
.yad{bottom:360.320000pt;}
.y54{bottom:361.733333pt;}
.y40{bottom:363.840000pt;}
.y20{bottom:366.213333pt;}
.ya7{bottom:371.040000pt;}
.ya9{bottom:374.080000pt;}
.ya6{bottom:390.720000pt;}
.ya4{bottom:392.160000pt;}
.y50{bottom:398.626667pt;}
.y8a{bottom:399.680000pt;}
.y9e{bottom:403.040000pt;}
.y1f{bottom:404.613333pt;}
.y9c{bottom:406.080000pt;}
.ya0{bottom:407.040000pt;}
.y5c{bottom:418.653333pt;}
.y9a{bottom:422.720000pt;}
.y98{bottom:424.160000pt;}
.y90{bottom:434.880000pt;}
.y8e{bottom:438.080000pt;}
.y94{bottom:438.880000pt;}
.y92{bottom:442.080000pt;}
.y1e{bottom:443.013333pt;}
.y38{bottom:453.146667pt;}
.y8c{bottom:454.720000pt;}
.y88{bottom:480.800000pt;}
.y1d{bottom:481.413333pt;}
.y84{bottom:483.360000pt;}
.y86{bottom:486.560000pt;}
.y4c{bottom:502.400000pt;}
.y1c{bottom:519.813333pt;}
.y65{bottom:557.733333pt;}
.y1b{bottom:558.213333pt;}
.y1a{bottom:599.266667pt;}
.y57{bottom:628.160000pt;}
.y19{bottom:637.666667pt;}
.y58{bottom:638.266667pt;}
.y18{bottom:676.066667pt;}
.y64{bottom:698.333333pt;}
.y17{bottom:714.466667pt;}
.y16{bottom:752.866667pt;}
.y15{bottom:791.266667pt;}
.y5b{bottom:798.080000pt;}
.y79{bottom:828.773333pt;}
.y5f{bottom:831.520000pt;}
.y14{bottom:834.786667pt;}
.y78{bottom:867.173333pt;}
.y77{bottom:905.573333pt;}
.y4b{bottom:913.120000pt;}
.y63{bottom:933.146667pt;}
.y76{bottom:943.973333pt;}
.y53{bottom:954.400000pt;}
.y4f{bottom:967.200000pt;}
.y75{bottom:982.373333pt;}
.y74{bottom:1020.773333pt;}
.y73{bottom:1059.173333pt;}
.y62{bottom:1085.306667pt;}
.y72{bottom:1097.573333pt;}
.y59{bottom:1125.280000pt;}
.y47{bottom:1128.160000pt;}
.y5d{bottom:1130.080000pt;}
.y61{bottom:1132.026667pt;}
.y71{bottom:1135.973333pt;}
.y70{bottom:1174.373333pt;}
.y43{bottom:1177.440000pt;}
.y37{bottom:1181.440000pt;}
.y3f{bottom:1186.080000pt;}
.y55{bottom:1205.760000pt;}
.y51{bottom:1208.480000pt;}
.y6f{bottom:1212.773333pt;}
.y6e{bottom:1251.173333pt;}
.y49{bottom:1264.960000pt;}
.y4d{bottom:1274.880000pt;}
.y6d{bottom:1289.573333pt;}
.y3b{bottom:1321.440000pt;}
.y6c{bottom:1327.973333pt;}
.y45{bottom:1351.360000pt;}
.y6b{bottom:1366.373333pt;}
.y41{bottom:1368.640000pt;}
.y6a{bottom:1404.773333pt;}
.y3d{bottom:1442.400000pt;}
.y69{bottom:1443.200000pt;}
.y68{bottom:1481.600000pt;}
.y39{bottom:1500.960000pt;}
.y67{bottom:1520.000000pt;}
.y35{bottom:1534.720000pt;}
.y83{bottom:1576.613333pt;}
.y33{bottom:1597.920000pt;}
.y82{bottom:1602.213333pt;}
.y31{bottom:1618.400000pt;}
.y81{bottom:1627.813333pt;}
.y13{bottom:1710.080000pt;}
.yef{bottom:1717.253333pt;}
.y103{bottom:1737.093333pt;}
.yee{bottom:1755.973333pt;}
.yd{bottom:1769.626667pt;}
.ye9{bottom:1786.973333pt;}
.yed{bottom:1789.533333pt;}
.yfc{bottom:1792.893333pt;}
.yf8{bottom:1798.493333pt;}
.ye3{bottom:1816.573333pt;}
.ye8{bottom:1822.653333pt;}
.yec{bottom:1824.893333pt;}
.yc{bottom:1832.346667pt;}
.yf7{bottom:1837.693333pt;}
.yf2{bottom:1839.933333pt;}
.ye2{bottom:1852.413333pt;}
.yfb{bottom:1871.293333pt;}
.yf5{bottom:1876.893333pt;}
.y102{bottom:1893.666667pt;}
.yfd{bottom:1899.266667pt;}
.y30{bottom:1925.120000pt;}
.yf6{bottom:1932.866667pt;}
.ye7{bottom:1936.506667pt;}
.ye6{bottom:1958.426667pt;}
.y2f{bottom:1963.520000pt;}
.yf1{bottom:1972.386667pt;}
.yf4{bottom:1977.506667pt;}
.y2e{bottom:2001.920000pt;}
.yfa{bottom:2005.466667pt;}
.yfe{bottom:2016.666667pt;}
.y101{bottom:2039.066667pt;}
.y2d{bottom:2040.320000pt;}
.ye5{bottom:2044.293333pt;}
.yff{bottom:2061.466667pt;}
.yf3{bottom:2072.666667pt;}
.ye4{bottom:2076.933333pt;}
.y2c{bottom:2104.320000pt;}
.yf0{bottom:2106.560000pt;}
.yea{bottom:2122.373333pt;}
.y100{bottom:2134.080000pt;}
.y2b{bottom:2142.720000pt;}
.y2a{bottom:2181.120000pt;}
.yf9{bottom:2206.853333pt;}
.yeb{bottom:2213.733333pt;}
.y29{bottom:2219.520000pt;}
.y28{bottom:2257.920000pt;}
.y27{bottom:2297.600000pt;}
.y80{bottom:2332.506667pt;}
.yb{bottom:2348.826667pt;}
.y7f{bottom:2370.906667pt;}
.y7e{bottom:2409.306667pt;}
.y26{bottom:2437.120000pt;}
.y7d{bottom:2447.706667pt;}
.y7c{bottom:2486.106667pt;}
.y7b{bottom:2524.546667pt;}
.y9{bottom:2562.946667pt;}
.y8{bottom:2601.346667pt;}
.y7{bottom:2639.746667pt;}
.y6{bottom:2678.146667pt;}
.y7a{bottom:2716.546667pt;}
.y5{bottom:2717.026667pt;}
.ya{bottom:2794.973333pt;}
.y4{bottom:2934.493333pt;}
.y3{bottom:2994.653333pt;}
.y2{bottom:3177.533333pt;}
.y1{bottom:3283.133333pt;}
.h33{height:39.840000pt;}
.h3c{height:40.000000pt;}
.h41{height:42.560000pt;}
.h2b{height:42.720000pt;}
.h46{height:43.718750pt;}
.h44{height:47.031250pt;}
.h29{height:49.280000pt;}
.hd{height:50.793750pt;}
.h2c{height:54.240000pt;}
.h2a{height:54.982500pt;}
.h9{height:55.026562pt;}
.h39{height:60.000000pt;}
.h28{height:62.551563pt;}
.h25{height:67.457812pt;}
.h30{height:68.000000pt;}
.h35{height:74.080000pt;}
.h31{height:74.240000pt;}
.h2e{height:76.000000pt;}
.h3d{height:76.160000pt;}
.hb{height:78.542187pt;}
.h34{height:82.080000pt;}
.h2f{height:82.240000pt;}
.ha{height:82.886562pt;}
.h23{height:86.560000pt;}
.h45{height:89.271250pt;}
.h5{height:94.062500pt;}
.h27{height:99.372188pt;}
.h26{height:100.951563pt;}
.hc{height:115.040000pt;}
.h1f{height:134.080000pt;}
.h4{height:141.093750pt;}
.h2d{height:152.640000pt;}
.he{height:156.000000pt;}
.h8{height:156.614062pt;}
.h3e{height:168.160000pt;}
.h3{height:172.604687pt;}
.h1b{height:173.920000pt;}
.h11{height:180.640000pt;}
.h6{height:188.125000pt;}
.h40{height:192.960000pt;}
.h3f{height:194.560000pt;}
.h42{height:194.720000pt;}
.h21{height:195.520000pt;}
.h3a{height:203.520000pt;}
.h37{height:206.560000pt;}
.h1d{height:207.200000pt;}
.h36{height:207.840000pt;}
.hf{height:212.480000pt;}
.h17{height:219.680000pt;}
.h7{height:222.277500pt;}
.h13{height:227.680000pt;}
.h32{height:230.880000pt;}
.h43{height:235.040000pt;}
.h2{height:258.671875pt;}
.h3b{height:260.160000pt;}
.h38{height:266.080000pt;}
.h15{height:275.840000pt;}
.h19{height:292.960000pt;}
.h12{height:539.520000pt;}
.h16{height:658.240000pt;}
.h24{height:683.680000pt;}
.h18{height:686.880000pt;}
.h1e{height:736.160000pt;}
.h14{height:740.320000pt;}
.h1c{height:809.920000pt;}
.h22{height:850.080000pt;}
.h10{height:919.040000pt;}
.h1a{height:1017.600000pt;}
.h20{height:1289.280000pt;}
.h1{height:3402.000000pt;}
.h0{height:3402.080000pt;}
.w3{width:140.960000pt;}
.w5{width:158.080000pt;}
.w8{width:158.240000pt;}
.wa{width:169.120000pt;}
.w6{width:169.280000pt;}
.w4{width:169.600000pt;}
.wb{width:171.680000pt;}
.w7{width:171.840000pt;}
.w9{width:572.960000pt;}
.w1{width:897.440000pt;}
.w2{width:1577.120000pt;}
.w0{width:5376.000000pt;}
.x0{left:0.000000pt;}
.x42{left:10.586667pt;}
.x16{left:14.266667pt;}
.x33{left:16.186667pt;}
.x23{left:61.440000pt;}
.x30{left:67.586667pt;}
.x27{left:73.346667pt;}
.x25{left:79.066667pt;}
.x2a{left:80.320000pt;}
.x36{left:96.546667pt;}
.x39{left:102.786667pt;}
.x3c{left:104.546667pt;}
.x3a{left:107.813333pt;}
.x40{left:110.373333pt;}
.x35{left:114.240000pt;}
.x3b{left:116.613333pt;}
.x34{left:119.013333pt;}
.x37{left:122.053333pt;}
.x3e{left:136.066667pt;}
.x3f{left:138.786667pt;}
.xf{left:140.093333pt;}
.x38{left:147.520000pt;}
.x3d{left:150.240000pt;}
.x41{left:152.613333pt;}
.x6{left:162.946667pt;}
.x8{left:170.080000pt;}
.xe{left:174.266667pt;}
.x15{left:175.680000pt;}
.x1a{left:185.093333pt;}
.x18{left:189.946667pt;}
.x1{left:193.093333pt;}
.x10{left:246.973333pt;}
.x5{left:258.973333pt;}
.x14{left:270.266667pt;}
.x2{left:445.413333pt;}
.x3{left:658.400000pt;}
.x22{left:748.640000pt;}
.x24{left:889.600000pt;}
.x26{left:1059.200000pt;}
.x17{left:1073.280000pt;}
.x7{left:1139.133333pt;}
.x28{left:1217.280000pt;}
.x13{left:1241.733333pt;}
.x4{left:1253.120000pt;}
.x29{left:1386.560000pt;}
.x2b{left:1558.400000pt;}
.x2c{left:1716.640000pt;}
.x2d{left:1874.720000pt;}
.x2e{left:2032.800000pt;}
.x2f{left:2191.040000pt;}
.x31{left:2349.120000pt;}
.x32{left:2507.200000pt;}
.xb{left:2679.200000pt;}
.x1f{left:2775.973333pt;}
.x11{left:2820.506667pt;}
.xd{left:2851.520000pt;}
.x21{left:2853.986667pt;}
.x1e{left:2871.973333pt;}
.x20{left:2882.853333pt;}
.x1d{left:2916.506667pt;}
.x1c{left:2927.386667pt;}
.xc{left:2973.760000pt;}
.x4a{left:2982.626667pt;}
.x4b{left:2984.866667pt;}
.x49{left:3001.666667pt;}
.xa{left:3100.160000pt;}
.x9{left:3127.040000pt;}
.x5b{left:3248.960000pt;}
.x66{left:3282.466667pt;}
.x5c{left:3307.360000pt;}
.x47{left:3471.226667pt;}
.x5a{left:3485.893333pt;}
.x5d{left:3530.626667pt;}
.x1b{left:3606.746667pt;}
.x4c{left:3642.533333pt;}
.x43{left:3679.613333pt;}
.x44{left:3694.973333pt;}
.x19{left:3805.053333pt;}
.x60{left:3887.973333pt;}
.x12{left:3905.120000pt;}
.x61{left:3921.466667pt;}
.x62{left:3941.466667pt;}
.x5e{left:4011.200000pt;}
.x4d{left:4037.666667pt;}
.x5f{left:4044.226667pt;}
.x4e{left:4074.266667pt;}
.x46{left:4110.533333pt;}
.x4f{left:4129.986667pt;}
.x56{left:4133.986667pt;}
.x45{left:4135.173333pt;}
.x57{left:4178.266667pt;}
.x50{left:4211.680000pt;}
.x58{left:4234.146667pt;}
.x59{left:4260.960000pt;}
.x64{left:4425.920000pt;}
.x65{left:4429.920000pt;}
.x63{left:4510.880000pt;}
.x48{left:4554.240000pt;}
.x54{left:4736.613333pt;}
.x55{left:4792.386667pt;}
.x51{left:4908.320000pt;}
.x52{left:4939.866667pt;}
.x53{left:4942.586667pt;}
}




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