
    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_2668b1b0e3ccb096a585720a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2c950758c2d35449ac1f62b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_b2d0abe4c8da27bcd12280a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138184;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_b3e00e490ffdb8f965dff16b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_860f1d72dae03801632d8f20.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_bf0ce230aaca764ffcb5f0ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_9ccc95c6c25b29f1ea2a0ee1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;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);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls14{letter-spacing:-0.990000px;}
.ls1d{letter-spacing:-0.792000px;}
.lse{letter-spacing:-0.618000px;}
.ls1f{letter-spacing:-0.564600px;}
.ls35{letter-spacing:-0.468000px;}
.ls9{letter-spacing:-0.399600px;}
.ls6{letter-spacing:-0.396000px;}
.ls2a{letter-spacing:-0.342000px;}
.ls3a{letter-spacing:-0.306000px;}
.ls39{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.240600px;}
.ls1e{letter-spacing:-0.234000px;}
.lsd{letter-spacing:-0.226200px;}
.ls12{letter-spacing:-0.207600px;}
.ls34{letter-spacing:-0.198000px;}
.ls4{letter-spacing:-0.172800px;}
.ls31{letter-spacing:-0.126000px;}
.ls1b{letter-spacing:-0.103800px;}
.ls20{letter-spacing:-0.094800px;}
.ls8{letter-spacing:-0.090000px;}
.ls18{letter-spacing:-0.063600px;}
.ls38{letter-spacing:-0.018000px;}
.ls1a{letter-spacing:-0.010800px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.023040px;}
.ls16{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.100800px;}
.lsf{letter-spacing:0.106800px;}
.ls2b{letter-spacing:0.108000px;}
.ls17{letter-spacing:0.118080px;}
.ls24{letter-spacing:0.126000px;}
.ls2f{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.172800px;}
.ls33{letter-spacing:0.198000px;}
.ls21{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.252000px;}
.ls2{letter-spacing:0.270000px;}
.ls1c{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.305400px;}
.ls29{letter-spacing:0.306000px;}
.ls3{letter-spacing:0.308160px;}
.ls23{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.450000px;}
.ls27{letter-spacing:1.080000px;}
.ls2d{letter-spacing:1.800000px;}
.ls19{letter-spacing:1.972800px;}
.ls22{letter-spacing:2.520000px;}
.ls2e{letter-spacing:3.240000px;}
.ls2c{letter-spacing:3.960000px;}
.ls26{letter-spacing:7.560000px;}
.ls36{letter-spacing:8.280000px;}
.ls30{letter-spacing:9.720000px;}
.ls25{letter-spacing:11.160000px;}
.ls28{letter-spacing:11.340000px;}
.ls37{letter-spacing:14.040000px;}
.lsb{letter-spacing:203.457600px;}
.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;}
}
.ws4{word-spacing:-18.532800px;}
.wse{word-spacing:-14.878200px;}
.wsd{word-spacing:-14.679600px;}
.wsc{word-spacing:-14.595840px;}
.ws5{word-spacing:-14.572800px;}
.ws10{word-spacing:-14.509200px;}
.ws11{word-spacing:-14.469000px;}
.ws13{word-spacing:-13.780800px;}
.wsb{word-spacing:-12.316200px;}
.ws15{word-spacing:-12.204000px;}
.ws16{word-spacing:-12.186000px;}
.ws12{word-spacing:-12.168000px;}
.wsf{word-spacing:-12.132000px;}
.ws1a{word-spacing:-12.078000px;}
.ws19{word-spacing:-12.024000px;}
.ws6{word-spacing:-11.880000px;}
.ws1d{word-spacing:-11.862000px;}
.ws8{word-spacing:-11.790000px;}
.ws18{word-spacing:-11.754000px;}
.ws1b{word-spacing:-11.682000px;}
.ws14{word-spacing:-11.646000px;}
.ws1e{word-spacing:-11.610000px;}
.ws1f{word-spacing:-11.592000px;}
.ws20{word-spacing:-11.574000px;}
.ws17{word-spacing:-11.538000px;}
.ws3{word-spacing:-11.484000px;}
.ws1c{word-spacing:-11.412000px;}
.wsa{word-spacing:-11.246400px;}
.ws9{word-spacing:-11.005800px;}
.ws7{word-spacing:-10.612800px;}
.ws2{word-spacing:-7.992000px;}
.ws1{word-spacing:-7.920000px;}
.ws0{word-spacing:0.000000px;}
._10{margin-left:-77.783640px;}
._20{margin-left:-5.250240px;}
._14{margin-left:-3.703680px;}
._11{margin-left:-2.666160px;}
._0{margin-left:-1.562400px;}
._3{width:1.274400px;}
._b{width:2.667600px;}
._2{width:4.072800px;}
._1{width:5.184000px;}
._d{width:6.224400px;}
._c{width:7.671600px;}
._9{width:8.794800px;}
._4{width:10.368000px;}
._e{width:12.286080px;}
._23{width:13.314240px;}
._6{width:14.418000px;}
._7{width:15.606000px;}
._12{width:16.649280px;}
._a{width:18.302400px;}
._17{width:19.324560px;}
._18{width:20.666880px;}
._21{width:21.792960px;}
._19{width:22.852800px;}
._16{width:24.056640px;}
._15{width:25.171200px;}
._1a{width:26.562240px;}
._24{width:28.152000px;}
._8{width:29.214000px;}
._f{width:30.753120px;}
._13{width:32.721600px;}
._1d{width:34.312320px;}
._1e{width:35.504640px;}
._22{width:36.564480px;}
._1f{width:39.479040px;}
._5{width:42.714000px;}
._1b{width:121.859760px;}
._1c{width:205.387200px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(38,90,63);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs10{font-size:38.880000px;}
.fse{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fsd{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fsf{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:102.240000px;}
.fs6{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y62{bottom:4.860000px;}
.ye5{bottom:10.260000px;}
.yed{bottom:10.440000px;}
.ye8{bottom:11.880000px;}
.yf3{bottom:12.225000px;}
.yf5{bottom:15.465000px;}
.yef{bottom:15.870000px;}
.yeb{bottom:19.260000px;}
.ye9{bottom:20.700000px;}
.yf1{bottom:20.865000px;}
.y3c{bottom:23.760000px;}
.yec{bottom:28.080000px;}
.ye7{bottom:29.520000px;}
.yf2{bottom:29.685000px;}
.y4d{bottom:35.100000px;}
.y3b{bottom:40.320000px;}
.y4c{bottom:50.760000px;}
.y3a{bottom:56.880000px;}
.y5{bottom:66.525004px;}
.y4b{bottom:70.920000px;}
.y39{bottom:73.620000px;}
.y4a{bottom:86.610000px;}
.y24{bottom:86.976000px;}
.y38{bottom:90.210000px;}
.y64{bottom:92.016000px;}
.y4{bottom:97.125005px;}
.y23{bottom:97.596000px;}
.y49{bottom:102.270000px;}
.y37{bottom:106.770000px;}
.y48{bottom:122.610000px;}
.y36{bottom:123.330000px;}
.y47{bottom:138.270000px;}
.y21{bottom:139.264499px;}
.y35{bottom:140.070000px;}
.y60{bottom:152.670000px;}
.y156{bottom:153.930000px;}
.yd1{bottom:155.730000px;}
.y34{bottom:156.630000px;}
.y46{bottom:158.430000px;}
.y11d{bottom:161.850000px;}
.ybb{bottom:164.010000px;}
.y5f{bottom:169.230000px;}
.y155{bottom:170.670000px;}
.y90{bottom:171.930000px;}
.yba{bottom:172.290000px;}
.y33{bottom:173.190000px;}
.y45{bottom:178.590000px;}
.yf7{bottom:180.930000px;}
.yae{bottom:184.350000px;}
.y5e{bottom:185.790000px;}
.y154{bottom:187.230000px;}
.ye1{bottom:188.850000px;}
.y32{bottom:189.930000px;}
.y8f{bottom:192.270000px;}
.y44{bottom:194.250000px;}
.y11c{bottom:195.150000px;}
.y18{bottom:196.933500px;}
.yf6{bottom:197.490000px;}
.ye0{bottom:202.350000px;}
.y5d{bottom:202.530000px;}
.y153{bottom:203.790000px;}
.yad{bottom:204.690000px;}
.y31{bottom:206.490000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y43{bottom:209.910000px;}
.y11b{bottom:211.710000px;}
.y8e{bottom:212.610000px;}
.y5c{bottom:219.090000px;}
.y152{bottom:220.530000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yb9{bottom:222.150000px;}
.y30{bottom:223.050000px;}
.yac{bottom:225.030000px;}
.y42{bottom:225.750000px;}
.y11a{bottom:228.450000px;}
.yf4{bottom:229.005000px;}
.y8d{bottom:232.950000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y5b{bottom:235.650000px;}
.y151{bottom:237.090000px;}
.y2f{bottom:239.790000px;}
.y119{bottom:245.010000px;}
.yab{bottom:245.370000px;}
.y41{bottom:245.910000px;}
.yb8{bottom:252.390000px;}
.y8c{bottom:253.290000px;}
.y150{bottom:253.650000px;}
.y5a{bottom:255.450000px;}
.y2e{bottom:256.350000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y40{bottom:261.570000px;}
.yd0{bottom:264.270000px;}
.yaa{bottom:265.530000px;}
.y59{bottom:268.770000px;}
.yb7{bottom:268.950000px;}
.y14f{bottom:270.390000px;}
.yf0{bottom:270.765000px;}
.y3d{bottom:271.290000px;}
.yb6{bottom:272.010000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y2d{bottom:272.910000px;}
.y8b{bottom:273.450000px;}
.y3f{bottom:277.230000px;}
.y118{bottom:278.310000px;}
.ycf{bottom:284.610000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yb5{bottom:285.330000px;}
.yc1{bottom:285.510000px;}
.ya9{bottom:285.870000px;}
.y14e{bottom:286.950000px;}
.y2c{bottom:289.110000px;}
.y3e{bottom:292.890000px;}
.y8a{bottom:293.790000px;}
.y117{bottom:294.870000px;}
.yf9{bottom:297.570000px;}
.y58{bottom:300.090000px;}
.yc0{bottom:302.250000px;}
.y14d{bottom:303.510000px;}
.yce{bottom:304.770000px;}
.ybf{bottom:305.310000px;}
.ya8{bottom:306.210000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y116{bottom:311.430000px;}
.y89{bottom:314.130000px;}
.ybe{bottom:318.630000px;}
.y14c{bottom:320.250000px;}
.y57{bottom:320.430000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.yee{bottom:323.505000px;}
.ycd{bottom:325.110000px;}
.ya7{bottom:326.550000px;}
.y115{bottom:328.170000px;}
.yb4{bottom:330.375000px;}
.y88{bottom:334.515000px;}
.y14b{bottom:336.855000px;}
.y56{bottom:340.815000px;}
.y114{bottom:344.775000px;}
.ya6{bottom:346.935000px;}
.yf{bottom:348.133500px;}
.y14a{bottom:353.415000px;}
.ycb{bottom:354.135000px;}
.y87{bottom:354.855000px;}
.ycc{bottom:357.915000px;}
.y55{bottom:361.155000px;}
.y113{bottom:361.335000px;}
.yea{bottom:366.015000px;}
.ya5{bottom:367.275000px;}
.y149{bottom:370.155000px;}
.yca{bottom:372.495000px;}
.y86{bottom:375.195000px;}
.y112{bottom:378.075000px;}
.y54{bottom:381.495000px;}
.y148{bottom:386.715000px;}
.ye{bottom:386.785499px;}
.ya4{bottom:387.615000px;}
.yc9{bottom:391.035000px;}
.y111{bottom:394.635000px;}
.y85{bottom:395.355000px;}
.y53{bottom:401.835000px;}
.y147{bottom:403.275000px;}
.ya3{bottom:407.775000px;}
.yd{bottom:408.044999px;}
.yc8{bottom:409.575000px;}
.y110{bottom:411.195000px;}
.ye6{bottom:415.335000px;}
.y84{bottom:415.695000px;}
.y146{bottom:420.015000px;}
.y52{bottom:422.175000px;}
.yc7{bottom:427.935000px;}
.ya2{bottom:428.115000px;}
.y83{bottom:436.035000px;}
.y145{bottom:436.575000px;}
.y51{bottom:442.335000px;}
.y10f{bottom:444.495000px;}
.yc6{bottom:446.475000px;}
.ya1{bottom:448.455000px;}
.ydf{bottom:452.235000px;}
.yfc{bottom:453.135000px;}
.y82{bottom:456.375000px;}
.y10e{bottom:461.055000px;}
.y50{bottom:462.675000px;}
.yc5{bottom:464.835000px;}
.ye4{bottom:468.255000px;}
.ya0{bottom:468.795000px;}
.y144{bottom:469.875000px;}
.y81{bottom:476.715000px;}
.y10d{bottom:477.795000px;}
.y4f{bottom:483.015000px;}
.yc4{bottom:483.375000px;}
.y143{bottom:486.435000px;}
.y9f{bottom:489.135000px;}
.y10c{bottom:494.355000px;}
.y80{bottom:497.055000px;}
.yc3{bottom:501.915000px;}
.yc{bottom:502.864502px;}
.y142{bottom:502.995000px;}
.y4e{bottom:503.355000px;}
.y9e{bottom:509.475000px;}
.y10b{bottom:510.915000px;}
.y7f{bottom:517.215000px;}
.y2b{bottom:519.015000px;}
.y141{bottom:519.735000px;}
.yb{bottom:520.864502px;}
.ye3{bottom:522.975000px;}
.y10a{bottom:527.475000px;}
.y9d{bottom:529.635000px;}
.ybd{bottom:534.315000px;}
.y140{bottom:536.295000px;}
.y7e{bottom:537.555000px;}
.ya{bottom:538.864499px;}
.y109{bottom:544.215000px;}
.y9c{bottom:549.975000px;}
.y13f{bottom:552.855000px;}
.yfb{bottom:553.755000px;}
.y9{bottom:556.864499px;}
.y7d{bottom:557.895000px;}
.y108{bottom:560.775000px;}
.y13e{bottom:569.595000px;}
.y9b{bottom:570.315000px;}
.y107{bottom:577.335000px;}
.y7c{bottom:578.235000px;}
.y13d{bottom:586.155000px;}
.y9a{bottom:590.655000px;}
.y106{bottom:594.075000px;}
.y7b{bottom:598.605000px;}
.y13c{bottom:602.745000px;}
.y105{bottom:610.665000px;}
.y99{bottom:611.025000px;}
.y7a{bottom:618.945000px;}
.y13b{bottom:619.485000px;}
.y104{bottom:627.225000px;}
.y98{bottom:631.365000px;}
.y13a{bottom:636.045000px;}
.y79{bottom:639.105000px;}
.y103{bottom:643.965000px;}
.y8{bottom:645.510000px;}
.y97{bottom:651.525000px;}
.y139{bottom:652.605000px;}
.y78{bottom:659.445000px;}
.y102{bottom:660.525000px;}
.y7{bottom:666.771000px;}
.y138{bottom:669.165000px;}
.y96{bottom:671.865000px;}
.yf8{bottom:676.545000px;}
.y101{bottom:677.085000px;}
.y77{bottom:679.785000px;}
.y137{bottom:685.905000px;}
.y95{bottom:692.205000px;}
.y100{bottom:693.825000px;}
.y76{bottom:700.125000px;}
.y136{bottom:702.465000px;}
.yff{bottom:710.385000px;}
.y94{bottom:712.545000px;}
.y135{bottom:719.025000px;}
.yb1{bottom:720.465000px;}
.y6{bottom:726.298500px;}
.yfe{bottom:726.945000px;}
.y93{bottom:732.885000px;}
.y134{bottom:735.765000px;}
.y75{bottom:737.385000px;}
.yb0{bottom:740.805000px;}
.yfd{bottom:743.685000px;}
.y133{bottom:752.325000px;}
.y3{bottom:752.599495px;}
.y92{bottom:753.225000px;}
.yde{bottom:761.145000px;}
.y132{bottom:768.885000px;}
.y91{bottom:773.385000px;}
.yaf{bottom:778.065000px;}
.ydd{bottom:781.305000px;}
.y157{bottom:782.745000px;}
.y131{bottom:785.625000px;}
.y74{bottom:793.725000px;}
.ydc{bottom:801.645000px;}
.y130{bottom:802.185000px;}
.y73{bottom:814.065000px;}
.yc2{bottom:817.845000px;}
.y12f{bottom:818.745000px;}
.ydb{bottom:821.985000px;}
.y2a{bottom:828.645000px;}
.y72{bottom:834.405000px;}
.y12e{bottom:835.485000px;}
.yda{bottom:842.325000px;}
.y12d{bottom:852.045000px;}
.y71{bottom:854.745000px;}
.yd9{bottom:862.665000px;}
.y29{bottom:868.470000px;}
.y12c{bottom:868.650000px;}
.y70{bottom:875.130000px;}
.yb3{bottom:878.910000px;}
.y2{bottom:879.369000px;}
.yd8{bottom:883.050000px;}
.y12b{bottom:885.390000px;}
.y6f{bottom:895.470000px;}
.y12a{bottom:901.950000px;}
.yd7{bottom:903.210000px;}
.y6e{bottom:915.630000px;}
.y129{bottom:918.510000px;}
.y28{bottom:922.470000px;}
.yd6{bottom:923.550000px;}
.y128{bottom:935.250000px;}
.y6d{bottom:935.970000px;}
.yd5{bottom:943.890000px;}
.y127{bottom:951.810000px;}
.y27{bottom:953.970000px;}
.y6c{bottom:956.310000px;}
.ye2{bottom:960.990000px;}
.yd4{bottom:964.230000px;}
.y1{bottom:966.726000px;}
.y126{bottom:968.370000px;}
.y6b{bottom:976.650000px;}
.yfa{bottom:980.430000px;}
.yd3{bottom:984.570000px;}
.y125{bottom:985.110000px;}
.y6a{bottom:996.990000px;}
.y124{bottom:1001.670000px;}
.y61{bottom:1010.130000px;}
.y26{bottom:1011.930000px;}
.y69{bottom:1017.330000px;}
.y123{bottom:1018.230000px;}
.yd2{bottom:1021.830000px;}
.y122{bottom:1034.970000px;}
.y68{bottom:1037.490000px;}
.y25{bottom:1037.850000px;}
.y121{bottom:1051.530000px;}
.y67{bottom:1057.830000px;}
.y120{bottom:1068.090000px;}
.y66{bottom:1078.170000px;}
.yb2{bottom:1081.950000px;}
.y11f{bottom:1084.830000px;}
.y65{bottom:1098.510000px;}
.y11e{bottom:1101.390000px;}
.ybc{bottom:1102.290000px;}
.y22{bottom:1131.840000px;}
.y63{bottom:1164.060000px;}
.h18{height:17.625000px;}
.h1d{height:31.305000px;}
.ha{height:31.324219px;}
.h7{height:32.130000px;}
.h1c{height:33.830156px;}
.h17{height:34.746328px;}
.h1a{height:36.336094px;}
.h11{height:40.843828px;}
.h23{height:41.745000px;}
.h21{height:42.501000px;}
.h15{height:43.282266px;}
.h14{height:44.480391px;}
.h19{height:45.060117px;}
.h6{height:45.900000px;}
.h12{height:46.986328px;}
.h3{height:48.195000px;}
.h20{height:49.305000px;}
.h1e{height:50.597578px;}
.h1b{height:51.998203px;}
.h1f{height:52.185000px;}
.h22{height:52.725000px;}
.h2{height:55.080000px;}
.h13{height:56.084062px;}
.hb{height:57.636562px;}
.hf{height:73.298672px;}
.h5{height:78.030000px;}
.hc{height:81.078047px;}
.hd{height:86.564531px;}
.he{height:88.960781px;}
.h4{height:119.055004px;}
.h9{height:145.940977px;}
.h10{height:304.950000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h16{height:1263.044910px;}
.h8{height:1263.060000px;}
.w5{width:12.780000px;}
.w9{width:151.371000px;}
.wa{width:258.000000px;}
.wb{width:270.915000px;}
.w4{width:329.595000px;}
.w6{width:338.115000px;}
.w2{width:637.794021px;}
.w8{width:664.290000px;}
.w0{width:892.912500px;}
.w7{width:892.957500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:4.131000px;}
.xe{left:10.791000px;}
.x2a{left:15.105000px;}
.x2b{left:21.045000px;}
.x20{left:22.671000px;}
.x31{left:27.165000px;}
.x25{left:28.251000px;}
.x33{left:34.011000px;}
.x30{left:35.490000px;}
.x29{left:40.491000px;}
.x26{left:46.605000px;}
.x2e{left:48.090000px;}
.x2d{left:51.105000px;}
.x32{left:58.485000px;}
.x34{left:66.270000px;}
.x22{left:68.790000px;}
.x24{left:71.625000px;}
.x2f{left:73.965000px;}
.x27{left:75.450000px;}
.x2c{left:83.685000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x28{left:109.965000px;}
.x17{left:111.456000px;}
.x3b{left:116.496000px;}
.xf{left:133.236000px;}
.x6{left:156.090000px;}
.x1f{left:169.410000px;}
.x18{left:176.227500px;}
.x19{left:182.010000px;}
.x7{left:189.030000px;}
.x5{left:196.410000px;}
.x4{left:203.484001px;}
.x21{left:257.805000px;}
.x8{left:295.635000px;}
.xd{left:322.455000px;}
.x15{left:342.232500px;}
.x16{left:348.015000px;}
.x9{left:360.615000px;}
.x1c{left:380.392500px;}
.x1d{left:385.815000px;}
.x13{left:418.552500px;}
.x14{left:424.335000px;}
.xb{left:436.035000px;}
.xc{left:448.815000px;}
.x3{left:454.959000px;}
.x23{left:515.820000px;}
.x37{left:546.562500px;}
.x38{left:552.345000px;}
.x1a{left:630.082500px;}
.x1b{left:635.865000px;}
.x1e{left:663.202500px;}
.x10{left:669.390000px;}
.x11{left:701.587500px;}
.x12{left:707.370000px;}
.x39{left:730.027500px;}
.x3a{left:741.570000px;}
.x35{left:749.647500px;}
.x36{left:755.430000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls14{letter-spacing:-0.880000pt;}
.ls1d{letter-spacing:-0.704000pt;}
.lse{letter-spacing:-0.549333pt;}
.ls1f{letter-spacing:-0.501867pt;}
.ls35{letter-spacing:-0.416000pt;}
.ls9{letter-spacing:-0.355200pt;}
.ls6{letter-spacing:-0.352000pt;}
.ls2a{letter-spacing:-0.304000pt;}
.ls3a{letter-spacing:-0.272000pt;}
.ls39{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.213867pt;}
.ls1e{letter-spacing:-0.208000pt;}
.lsd{letter-spacing:-0.201067pt;}
.ls12{letter-spacing:-0.184533pt;}
.ls34{letter-spacing:-0.176000pt;}
.ls4{letter-spacing:-0.153600pt;}
.ls31{letter-spacing:-0.112000pt;}
.ls1b{letter-spacing:-0.092267pt;}
.ls20{letter-spacing:-0.084267pt;}
.ls8{letter-spacing:-0.080000pt;}
.ls18{letter-spacing:-0.056533pt;}
.ls38{letter-spacing:-0.016000pt;}
.ls1a{letter-spacing:-0.009600pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.020480pt;}
.ls16{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.089600pt;}
.lsf{letter-spacing:0.094933pt;}
.ls2b{letter-spacing:0.096000pt;}
.ls17{letter-spacing:0.104960pt;}
.ls24{letter-spacing:0.112000pt;}
.ls2f{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.153600pt;}
.ls33{letter-spacing:0.176000pt;}
.ls21{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.224000pt;}
.ls2{letter-spacing:0.240000pt;}
.ls1c{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.271467pt;}
.ls29{letter-spacing:0.272000pt;}
.ls3{letter-spacing:0.273920pt;}
.ls23{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.400000pt;}
.ls27{letter-spacing:0.960000pt;}
.ls2d{letter-spacing:1.600000pt;}
.ls19{letter-spacing:1.753600pt;}
.ls22{letter-spacing:2.240000pt;}
.ls2e{letter-spacing:2.880000pt;}
.ls2c{letter-spacing:3.520000pt;}
.ls26{letter-spacing:6.720000pt;}
.ls36{letter-spacing:7.360000pt;}
.ls30{letter-spacing:8.640000pt;}
.ls25{letter-spacing:9.920000pt;}
.ls28{letter-spacing:10.080000pt;}
.ls37{letter-spacing:12.480000pt;}
.lsb{letter-spacing:180.851200pt;}
.ws4{word-spacing:-16.473600pt;}
.wse{word-spacing:-13.225067pt;}
.wsd{word-spacing:-13.048533pt;}
.wsc{word-spacing:-12.974080pt;}
.ws5{word-spacing:-12.953600pt;}
.ws10{word-spacing:-12.897067pt;}
.ws11{word-spacing:-12.861333pt;}
.ws13{word-spacing:-12.249600pt;}
.wsb{word-spacing:-10.947733pt;}
.ws15{word-spacing:-10.848000pt;}
.ws16{word-spacing:-10.832000pt;}
.ws12{word-spacing:-10.816000pt;}
.wsf{word-spacing:-10.784000pt;}
.ws1a{word-spacing:-10.736000pt;}
.ws19{word-spacing:-10.688000pt;}
.ws6{word-spacing:-10.560000pt;}
.ws1d{word-spacing:-10.544000pt;}
.ws8{word-spacing:-10.480000pt;}
.ws18{word-spacing:-10.448000pt;}
.ws1b{word-spacing:-10.384000pt;}
.ws14{word-spacing:-10.352000pt;}
.ws1e{word-spacing:-10.320000pt;}
.ws1f{word-spacing:-10.304000pt;}
.ws20{word-spacing:-10.288000pt;}
.ws17{word-spacing:-10.256000pt;}
.ws3{word-spacing:-10.208000pt;}
.ws1c{word-spacing:-10.144000pt;}
.wsa{word-spacing:-9.996800pt;}
.ws9{word-spacing:-9.782933pt;}
.ws7{word-spacing:-9.433600pt;}
.ws2{word-spacing:-7.104000pt;}
.ws1{word-spacing:-7.040000pt;}
.ws0{word-spacing:0.000000pt;}
._10{margin-left:-69.141013pt;}
._20{margin-left:-4.666880pt;}
._14{margin-left:-3.292160pt;}
._11{margin-left:-2.369920pt;}
._0{margin-left:-1.388800pt;}
._3{width:1.132800pt;}
._b{width:2.371200pt;}
._2{width:3.620267pt;}
._1{width:4.608000pt;}
._d{width:5.532800pt;}
._c{width:6.819200pt;}
._9{width:7.817600pt;}
._4{width:9.216000pt;}
._e{width:10.920960pt;}
._23{width:11.834880pt;}
._6{width:12.816000pt;}
._7{width:13.872000pt;}
._12{width:14.799360pt;}
._a{width:16.268800pt;}
._17{width:17.177387pt;}
._18{width:18.370560pt;}
._21{width:19.371520pt;}
._19{width:20.313600pt;}
._16{width:21.383680pt;}
._15{width:22.374400pt;}
._1a{width:23.610880pt;}
._24{width:25.024000pt;}
._8{width:25.968000pt;}
._f{width:27.336107pt;}
._13{width:29.085867pt;}
._1d{width:30.499840pt;}
._1e{width:31.559680pt;}
._22{width:32.501760pt;}
._1f{width:35.092480pt;}
._5{width:37.968000pt;}
._1b{width:108.319787pt;}
._1c{width:182.566400pt;}
.fs7{font-size:32.000000pt;}
.fs10{font-size:34.560000pt;}
.fse{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fsd{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fsf{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:90.880000pt;}
.fs6{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:4.320000pt;}
.ye5{bottom:9.120000pt;}
.yed{bottom:9.280000pt;}
.ye8{bottom:10.560000pt;}
.yf3{bottom:10.866667pt;}
.yf5{bottom:13.746667pt;}
.yef{bottom:14.106667pt;}
.yeb{bottom:17.120000pt;}
.ye9{bottom:18.400000pt;}
.yf1{bottom:18.546667pt;}
.y3c{bottom:21.120000pt;}
.yec{bottom:24.960000pt;}
.ye7{bottom:26.240000pt;}
.yf2{bottom:26.386667pt;}
.y4d{bottom:31.200000pt;}
.y3b{bottom:35.840000pt;}
.y4c{bottom:45.120000pt;}
.y3a{bottom:50.560000pt;}
.y5{bottom:59.133337pt;}
.y4b{bottom:63.040000pt;}
.y39{bottom:65.440000pt;}
.y4a{bottom:76.986667pt;}
.y24{bottom:77.312000pt;}
.y38{bottom:80.186667pt;}
.y64{bottom:81.792000pt;}
.y4{bottom:86.333337pt;}
.y23{bottom:86.752000pt;}
.y49{bottom:90.906667pt;}
.y37{bottom:94.906667pt;}
.y48{bottom:108.986667pt;}
.y36{bottom:109.626667pt;}
.y47{bottom:122.906667pt;}
.y21{bottom:123.790666pt;}
.y35{bottom:124.506667pt;}
.y60{bottom:135.706667pt;}
.y156{bottom:136.826667pt;}
.yd1{bottom:138.426667pt;}
.y34{bottom:139.226667pt;}
.y46{bottom:140.826667pt;}
.y11d{bottom:143.866667pt;}
.ybb{bottom:145.786667pt;}
.y5f{bottom:150.426667pt;}
.y155{bottom:151.706667pt;}
.y90{bottom:152.826667pt;}
.yba{bottom:153.146667pt;}
.y33{bottom:153.946667pt;}
.y45{bottom:158.746667pt;}
.yf7{bottom:160.826667pt;}
.yae{bottom:163.866667pt;}
.y5e{bottom:165.146667pt;}
.y154{bottom:166.426667pt;}
.ye1{bottom:167.866667pt;}
.y32{bottom:168.826667pt;}
.y8f{bottom:170.906667pt;}
.y44{bottom:172.666667pt;}
.y11c{bottom:173.466667pt;}
.y18{bottom:175.052000pt;}
.yf6{bottom:175.546667pt;}
.ye0{bottom:179.866667pt;}
.y5d{bottom:180.026667pt;}
.y153{bottom:181.146667pt;}
.yad{bottom:181.946667pt;}
.y31{bottom:183.546667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y43{bottom:186.586667pt;}
.y11b{bottom:188.186667pt;}
.y8e{bottom:188.986667pt;}
.y5c{bottom:194.746667pt;}
.y152{bottom:196.026667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yb9{bottom:197.466667pt;}
.y30{bottom:198.266667pt;}
.yac{bottom:200.026667pt;}
.y42{bottom:200.666667pt;}
.y11a{bottom:203.066667pt;}
.yf4{bottom:203.560000pt;}
.y8d{bottom:207.066667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y5b{bottom:209.466667pt;}
.y151{bottom:210.746667pt;}
.y2f{bottom:213.146667pt;}
.y119{bottom:217.786667pt;}
.yab{bottom:218.106667pt;}
.y41{bottom:218.586667pt;}
.yb8{bottom:224.346667pt;}
.y8c{bottom:225.146667pt;}
.y150{bottom:225.466667pt;}
.y5a{bottom:227.066667pt;}
.y2e{bottom:227.866667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y40{bottom:232.506667pt;}
.yd0{bottom:234.906667pt;}
.yaa{bottom:236.026667pt;}
.y59{bottom:238.906667pt;}
.yb7{bottom:239.066667pt;}
.y14f{bottom:240.346667pt;}
.yf0{bottom:240.680000pt;}
.y3d{bottom:241.146667pt;}
.yb6{bottom:241.786667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y2d{bottom:242.586667pt;}
.y8b{bottom:243.066667pt;}
.y3f{bottom:246.426667pt;}
.y118{bottom:247.386667pt;}
.ycf{bottom:252.986667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yb5{bottom:253.626667pt;}
.yc1{bottom:253.786667pt;}
.ya9{bottom:254.106667pt;}
.y14e{bottom:255.066667pt;}
.y2c{bottom:256.986667pt;}
.y3e{bottom:260.346667pt;}
.y8a{bottom:261.146667pt;}
.y117{bottom:262.106667pt;}
.yf9{bottom:264.506667pt;}
.y58{bottom:266.746667pt;}
.yc0{bottom:268.666667pt;}
.y14d{bottom:269.786667pt;}
.yce{bottom:270.906667pt;}
.ybf{bottom:271.386667pt;}
.ya8{bottom:272.186667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y116{bottom:276.826667pt;}
.y89{bottom:279.226667pt;}
.ybe{bottom:283.226667pt;}
.y14c{bottom:284.666667pt;}
.y57{bottom:284.826667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.yee{bottom:287.560000pt;}
.ycd{bottom:288.986667pt;}
.ya7{bottom:290.266667pt;}
.y115{bottom:291.706667pt;}
.yb4{bottom:293.666667pt;}
.y88{bottom:297.346667pt;}
.y14b{bottom:299.426667pt;}
.y56{bottom:302.946667pt;}
.y114{bottom:306.466667pt;}
.ya6{bottom:308.386667pt;}
.yf{bottom:309.452000pt;}
.y14a{bottom:314.146667pt;}
.ycb{bottom:314.786667pt;}
.y87{bottom:315.426667pt;}
.ycc{bottom:318.146667pt;}
.y55{bottom:321.026667pt;}
.y113{bottom:321.186667pt;}
.yea{bottom:325.346667pt;}
.ya5{bottom:326.466667pt;}
.y149{bottom:329.026667pt;}
.yca{bottom:331.106667pt;}
.y86{bottom:333.506667pt;}
.y112{bottom:336.066667pt;}
.y54{bottom:339.106667pt;}
.y148{bottom:343.746667pt;}
.ye{bottom:343.809333pt;}
.ya4{bottom:344.546667pt;}
.yc9{bottom:347.586667pt;}
.y111{bottom:350.786667pt;}
.y85{bottom:351.426667pt;}
.y53{bottom:357.186667pt;}
.y147{bottom:358.466667pt;}
.ya3{bottom:362.466667pt;}
.yd{bottom:362.706666pt;}
.yc8{bottom:364.066667pt;}
.y110{bottom:365.506667pt;}
.ye6{bottom:369.186667pt;}
.y84{bottom:369.506667pt;}
.y146{bottom:373.346667pt;}
.y52{bottom:375.266667pt;}
.yc7{bottom:380.386667pt;}
.ya2{bottom:380.546667pt;}
.y83{bottom:387.586667pt;}
.y145{bottom:388.066667pt;}
.y51{bottom:393.186667pt;}
.y10f{bottom:395.106667pt;}
.yc6{bottom:396.866667pt;}
.ya1{bottom:398.626667pt;}
.ydf{bottom:401.986667pt;}
.yfc{bottom:402.786667pt;}
.y82{bottom:405.666667pt;}
.y10e{bottom:409.826667pt;}
.y50{bottom:411.266667pt;}
.yc5{bottom:413.186667pt;}
.ye4{bottom:416.226667pt;}
.ya0{bottom:416.706667pt;}
.y144{bottom:417.666667pt;}
.y81{bottom:423.746667pt;}
.y10d{bottom:424.706667pt;}
.y4f{bottom:429.346667pt;}
.yc4{bottom:429.666667pt;}
.y143{bottom:432.386667pt;}
.y9f{bottom:434.786667pt;}
.y10c{bottom:439.426667pt;}
.y80{bottom:441.826667pt;}
.yc3{bottom:446.146667pt;}
.yc{bottom:446.990669pt;}
.y142{bottom:447.106667pt;}
.y4e{bottom:447.426667pt;}
.y9e{bottom:452.866667pt;}
.y10b{bottom:454.146667pt;}
.y7f{bottom:459.746667pt;}
.y2b{bottom:461.346667pt;}
.y141{bottom:461.986667pt;}
.yb{bottom:462.990669pt;}
.ye3{bottom:464.866667pt;}
.y10a{bottom:468.866667pt;}
.y9d{bottom:470.786667pt;}
.ybd{bottom:474.946667pt;}
.y140{bottom:476.706667pt;}
.y7e{bottom:477.826667pt;}
.ya{bottom:478.990666pt;}
.y109{bottom:483.746667pt;}
.y9c{bottom:488.866667pt;}
.y13f{bottom:491.426667pt;}
.yfb{bottom:492.226667pt;}
.y9{bottom:494.990666pt;}
.y7d{bottom:495.906667pt;}
.y108{bottom:498.466667pt;}
.y13e{bottom:506.306667pt;}
.y9b{bottom:506.946667pt;}
.y107{bottom:513.186667pt;}
.y7c{bottom:513.986667pt;}
.y13d{bottom:521.026667pt;}
.y9a{bottom:525.026667pt;}
.y106{bottom:528.066667pt;}
.y7b{bottom:532.093333pt;}
.y13c{bottom:535.773333pt;}
.y105{bottom:542.813333pt;}
.y99{bottom:543.133333pt;}
.y7a{bottom:550.173333pt;}
.y13b{bottom:550.653333pt;}
.y104{bottom:557.533333pt;}
.y98{bottom:561.213333pt;}
.y13a{bottom:565.373333pt;}
.y79{bottom:568.093333pt;}
.y103{bottom:572.413333pt;}
.y8{bottom:573.786667pt;}
.y97{bottom:579.133333pt;}
.y139{bottom:580.093333pt;}
.y78{bottom:586.173333pt;}
.y102{bottom:587.133333pt;}
.y7{bottom:592.685334pt;}
.y138{bottom:594.813333pt;}
.y96{bottom:597.213333pt;}
.yf8{bottom:601.373333pt;}
.y101{bottom:601.853333pt;}
.y77{bottom:604.253333pt;}
.y137{bottom:609.693333pt;}
.y95{bottom:615.293333pt;}
.y100{bottom:616.733333pt;}
.y76{bottom:622.333333pt;}
.y136{bottom:624.413333pt;}
.yff{bottom:631.453333pt;}
.y94{bottom:633.373333pt;}
.y135{bottom:639.133333pt;}
.yb1{bottom:640.413333pt;}
.y6{bottom:645.598667pt;}
.yfe{bottom:646.173333pt;}
.y93{bottom:651.453333pt;}
.y134{bottom:654.013333pt;}
.y75{bottom:655.453333pt;}
.yb0{bottom:658.493333pt;}
.yfd{bottom:661.053333pt;}
.y133{bottom:668.733333pt;}
.y3{bottom:668.977329pt;}
.y92{bottom:669.533333pt;}
.yde{bottom:676.573333pt;}
.y132{bottom:683.453333pt;}
.y91{bottom:687.453333pt;}
.yaf{bottom:691.613333pt;}
.ydd{bottom:694.493333pt;}
.y157{bottom:695.773333pt;}
.y131{bottom:698.333333pt;}
.y74{bottom:705.533333pt;}
.ydc{bottom:712.573333pt;}
.y130{bottom:713.053333pt;}
.y73{bottom:723.613333pt;}
.yc2{bottom:726.973333pt;}
.y12f{bottom:727.773333pt;}
.ydb{bottom:730.653333pt;}
.y2a{bottom:736.573333pt;}
.y72{bottom:741.693333pt;}
.y12e{bottom:742.653333pt;}
.yda{bottom:748.733333pt;}
.y12d{bottom:757.373333pt;}
.y71{bottom:759.773333pt;}
.yd9{bottom:766.813333pt;}
.y29{bottom:771.973333pt;}
.y12c{bottom:772.133333pt;}
.y70{bottom:777.893333pt;}
.yb3{bottom:781.253333pt;}
.y2{bottom:781.661334pt;}
.yd8{bottom:784.933333pt;}
.y12b{bottom:787.013333pt;}
.y6f{bottom:795.973333pt;}
.y12a{bottom:801.733333pt;}
.yd7{bottom:802.853333pt;}
.y6e{bottom:813.893333pt;}
.y129{bottom:816.453333pt;}
.y28{bottom:819.973333pt;}
.yd6{bottom:820.933333pt;}
.y128{bottom:831.333333pt;}
.y6d{bottom:831.973333pt;}
.yd5{bottom:839.013333pt;}
.y127{bottom:846.053333pt;}
.y27{bottom:847.973333pt;}
.y6c{bottom:850.053333pt;}
.ye2{bottom:854.213333pt;}
.yd4{bottom:857.093333pt;}
.y1{bottom:859.312000pt;}
.y126{bottom:860.773333pt;}
.y6b{bottom:868.133333pt;}
.yfa{bottom:871.493333pt;}
.yd3{bottom:875.173333pt;}
.y125{bottom:875.653333pt;}
.y6a{bottom:886.213333pt;}
.y124{bottom:890.373333pt;}
.y61{bottom:897.893333pt;}
.y26{bottom:899.493333pt;}
.y69{bottom:904.293333pt;}
.y123{bottom:905.093333pt;}
.yd2{bottom:908.293333pt;}
.y122{bottom:919.973333pt;}
.y68{bottom:922.213333pt;}
.y25{bottom:922.533333pt;}
.y121{bottom:934.693333pt;}
.y67{bottom:940.293333pt;}
.y120{bottom:949.413333pt;}
.y66{bottom:958.373333pt;}
.yb2{bottom:961.733333pt;}
.y11f{bottom:964.293333pt;}
.y65{bottom:976.453333pt;}
.y11e{bottom:979.013333pt;}
.ybc{bottom:979.813333pt;}
.y22{bottom:1006.080000pt;}
.y63{bottom:1034.720000pt;}
.h18{height:15.666667pt;}
.h1d{height:27.826667pt;}
.ha{height:27.843750pt;}
.h7{height:28.560000pt;}
.h1c{height:30.071250pt;}
.h17{height:30.885625pt;}
.h1a{height:32.298750pt;}
.h11{height:36.305625pt;}
.h23{height:37.106667pt;}
.h21{height:37.778667pt;}
.h15{height:38.473125pt;}
.h14{height:39.538125pt;}
.h19{height:40.053437pt;}
.h6{height:40.800000pt;}
.h12{height:41.765625pt;}
.h3{height:42.840000pt;}
.h20{height:43.826667pt;}
.h1e{height:44.975625pt;}
.h1b{height:46.220625pt;}
.h1f{height:46.386667pt;}
.h22{height:46.866667pt;}
.h2{height:48.960000pt;}
.h13{height:49.852500pt;}
.hb{height:51.232500pt;}
.hf{height:65.154375pt;}
.h5{height:69.360000pt;}
.hc{height:72.069375pt;}
.hd{height:76.946250pt;}
.he{height:79.076250pt;}
.h4{height:105.826671pt;}
.h9{height:129.725313pt;}
.h10{height:271.066667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h16{height:1122.706587pt;}
.h8{height:1122.720000pt;}
.w5{width:11.360000pt;}
.w9{width:134.552000pt;}
.wa{width:229.333333pt;}
.wb{width:240.813333pt;}
.w4{width:292.973333pt;}
.w6{width:300.546667pt;}
.w2{width:566.928019pt;}
.w8{width:590.480000pt;}
.w0{width:793.700000pt;}
.w7{width:793.740000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.672000pt;}
.xe{left:9.592000pt;}
.x2a{left:13.426667pt;}
.x2b{left:18.706667pt;}
.x20{left:20.152000pt;}
.x31{left:24.146667pt;}
.x25{left:25.112000pt;}
.x33{left:30.232000pt;}
.x30{left:31.546667pt;}
.x29{left:35.992000pt;}
.x26{left:41.426667pt;}
.x2e{left:42.746667pt;}
.x2d{left:45.426667pt;}
.x32{left:51.986667pt;}
.x34{left:58.906667pt;}
.x22{left:61.146667pt;}
.x24{left:63.666667pt;}
.x2f{left:65.746667pt;}
.x27{left:67.066667pt;}
.x2c{left:74.386667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x28{left:97.746667pt;}
.x17{left:99.072000pt;}
.x3b{left:103.552000pt;}
.xf{left:118.432000pt;}
.x6{left:138.746667pt;}
.x1f{left:150.586667pt;}
.x18{left:156.646667pt;}
.x19{left:161.786667pt;}
.x7{left:168.026667pt;}
.x5{left:174.586667pt;}
.x4{left:180.874667pt;}
.x21{left:229.160000pt;}
.x8{left:262.786667pt;}
.xd{left:286.626667pt;}
.x15{left:304.206667pt;}
.x16{left:309.346667pt;}
.x9{left:320.546667pt;}
.x1c{left:338.126667pt;}
.x1d{left:342.946667pt;}
.x13{left:372.046667pt;}
.x14{left:377.186667pt;}
.xb{left:387.586667pt;}
.xc{left:398.946667pt;}
.x3{left:404.408000pt;}
.x23{left:458.506667pt;}
.x37{left:485.833333pt;}
.x38{left:490.973333pt;}
.x1a{left:560.073333pt;}
.x1b{left:565.213333pt;}
.x1e{left:589.513333pt;}
.x10{left:595.013333pt;}
.x11{left:623.633333pt;}
.x12{left:628.773333pt;}
.x39{left:648.913333pt;}
.x3a{left:659.173333pt;}
.x35{left:666.353333pt;}
.x36{left:671.493333pt;}
}




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