
    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_e5152f5e91c56f28d98fcf32.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d604b884a5834e732a96ac1a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_10e47620593ae8819b4f5c56.woff')format("woff");}.ff3{font-family:ff3;line-height:1.008301;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_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_f17ffc59217d4e6550a0d1fa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_10bf30585a8ff2e97bebda70.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4012d23b91d29a7423effd5e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2586132d9c93a405991790df.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_6ae8f608b5c38744767e7069.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6cac47bc7bf53a4a97d11c7f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2271cd712b42ff3e350a597f.woff')format("woff");}.ffb{font-family:ffb;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4fcc4dbe0693957a05153271.woff')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.940000px;}
.ls6{letter-spacing:-1.260000px;}
.ls12{letter-spacing:-0.924000px;}
.lsd{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.223200px;}
.ls8{letter-spacing:-0.206400px;}
.ls13{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012960px;}
.lsc{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.206400px;}
.ls9{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls11{letter-spacing:0.306600px;}
.lsa{letter-spacing:0.312000px;}
.lsf{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.900000px;}
.ls14{letter-spacing:16.506720px;}
.ls10{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.252000px;}
.ws11{word-spacing:-15.246600px;}
.ws3{word-spacing:-15.146400px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.716800px;}
.ws5{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.016000px;}
.wse{word-spacing:-11.911680px;}
.wsd{word-spacing:-11.880000px;}
.ws1{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.732960px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
.wsf{word-spacing:163.392000px;}
.ws10{word-spacing:190.200000px;}
._1d{margin-left:-5.232960px;}
._a{margin-left:-3.999840px;}
._b{margin-left:-2.943360px;}
._0{margin-left:-1.010880px;}
._1{width:1.803840px;}
._f{width:2.917200px;}
._10{width:4.661280px;}
._13{width:5.710320px;}
._c{width:6.746880px;}
._d{width:7.783920px;}
._e{width:9.296400px;}
._1a{width:10.465920px;}
._1e{width:11.653200px;}
._5{width:12.960000px;}
._1f{width:16.553520px;}
._21{width:17.923680px;}
._19{width:19.063440px;}
._3b{width:20.166720px;}
._12{width:21.203760px;}
._11{width:22.230720px;}
._1c{width:24.174000px;}
._1b{width:25.311600px;}
._20{width:27.011040px;}
._26{width:29.040240px;}
._24{width:30.727680px;}
._2f{width:31.738560px;}
._22{width:33.215520px;}
._23{width:34.373040px;}
._14{width:35.800320px;}
._15{width:36.972240px;}
._37{width:38.841120px;}
._2a{width:39.848880px;}
._2b{width:41.088240px;}
._38{width:42.333840px;}
._30{width:43.445520px;}
._8{width:44.911440px;}
._7{width:45.964800px;}
._36{width:47.365920px;}
._31{width:50.198400px;}
._25{width:55.745040px;}
._4{width:57.204000px;}
._27{width:60.998880px;}
._34{width:67.577520px;}
._33{width:70.326480px;}
._28{width:72.298560px;}
._29{width:73.373040px;}
._35{width:74.447280px;}
._3d{width:75.595200px;}
._3c{width:77.150160px;}
._2e{width:79.230720px;}
._3{width:87.120000px;}
._17{width:91.660800px;}
._2d{width:97.920000px;}
._3a{width:99.310080px;}
._39{width:100.994400px;}
._3e{width:118.563840px;}
._32{width:184.848000px;}
._6{width:199.416000px;}
._18{width:231.809040px;}
._2{width:233.273760px;}
._2c{width:848.718720px;}
._9{width:1023.282960px;}
._16{width:1070.714400px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(89,89,89);}
.fc5{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:1.440000px;}
.y2c{bottom:5.760000px;}
.y9f{bottom:5.805000px;}
.y93{bottom:5.940000px;}
.yce{bottom:6.480000px;}
.y13{bottom:7.560000px;}
.y6{bottom:13.860000px;}
.y9b{bottom:15.660000px;}
.ya4{bottom:15.840000px;}
.yff{bottom:16.890000px;}
.y2b{bottom:25.560000px;}
.ya3{bottom:25.740000px;}
.y5{bottom:45.000000px;}
.y2a{bottom:45.360000px;}
.yfd{bottom:46.290000px;}
.y9{bottom:57.420000px;}
.yf6{bottom:63.330000px;}
.y29{bottom:65.340000px;}
.yf0{bottom:74.160000px;}
.y4{bottom:76.320000px;}
.y73{bottom:81.900000px;}
.y38{bottom:82.980000px;}
.yf7{bottom:83.700000px;}
.yc4{bottom:84.960000px;}
.y28{bottom:85.185000px;}
.y179{bottom:87.120000px;}
.y12d{bottom:93.060000px;}
.yee{bottom:93.600000px;}
.y143{bottom:94.860000px;}
.yf3{bottom:99.105000px;}
.y37{bottom:99.540000px;}
.yc3{bottom:99.720000px;}
.y72{bottom:101.700000px;}
.yf8{bottom:104.070000px;}
.y27{bottom:104.985000px;}
.y178{bottom:107.100000px;}
.y3{bottom:107.670000px;}
.y12c{bottom:112.860000px;}
.yed{bottom:113.400000px;}
.y142{bottom:114.660000px;}
.y36{bottom:115.920000px;}
.yc2{bottom:119.520000px;}
.y91{bottom:119.700000px;}
.y71{bottom:121.500000px;}
.yf1{bottom:122.190000px;}
.yf9{bottom:124.455000px;}
.y3d{bottom:124.740000px;}
.y26{bottom:124.785000px;}
.y177{bottom:126.900000px;}
.y35{bottom:132.300000px;}
.y12b{bottom:132.660000px;}
.yec{bottom:133.200000px;}
.y141{bottom:134.460000px;}
.y90{bottom:139.500000px;}
.y2{bottom:140.430000px;}
.y70{bottom:141.300000px;}
.y3c{bottom:144.540000px;}
.y25{bottom:144.585000px;}
.yfa{bottom:144.825000px;}
.yf2{bottom:146.190000px;}
.y176{bottom:146.700000px;}
.y34{bottom:148.680000px;}
.yf4{bottom:149.970000px;}
.y156{bottom:150.300000px;}
.y12a{bottom:152.490000px;}
.yeb{bottom:153.210000px;}
.y140{bottom:154.290000px;}
.y8f{bottom:159.330000px;}
.y6f{bottom:161.310000px;}
.y3b{bottom:164.370000px;}
.y24{bottom:164.565000px;}
.y33{bottom:165.090000px;}
.yfb{bottom:165.210000px;}
.y175{bottom:166.530000px;}
.y155{bottom:170.310000px;}
.y129{bottom:172.290000px;}
.yea{bottom:173.010000px;}
.y13f{bottom:174.270000px;}
.yc1{bottom:179.130000px;}
.y8e{bottom:179.310000px;}
.y6e{bottom:181.110000px;}
.y32{bottom:182.550000px;}
.y3a{bottom:184.170000px;}
.y23{bottom:184.365000px;}
.yfc{bottom:185.580000px;}
.y174{bottom:186.330000px;}
.y154{bottom:190.110000px;}
.yf5{bottom:190.620000px;}
.y128{bottom:192.270000px;}
.ye9{bottom:192.810000px;}
.y13e{bottom:194.070000px;}
.yc0{bottom:198.930000px;}
.y8d{bottom:199.110000px;}
.y39{bottom:204.150000px;}
.y22{bottom:204.165000px;}
.y173{bottom:206.310000px;}
.y6d{bottom:209.910000px;}
.y127{bottom:212.070000px;}
.ye8{bottom:212.610000px;}
.y31{bottom:213.150000px;}
.yfe{bottom:213.270000px;}
.y13d{bottom:213.870000px;}
.ybf{bottom:218.730000px;}
.y8c{bottom:218.910000px;}
.y21{bottom:223.965000px;}
.y172{bottom:226.110000px;}
.y6c{bottom:229.710000px;}
.y126{bottom:231.870000px;}
.ye7{bottom:232.410000px;}
.y30{bottom:232.950000px;}
.y13c{bottom:233.670000px;}
.ybe{bottom:238.530000px;}
.y8b{bottom:238.710000px;}
.y20{bottom:243.765000px;}
.y171{bottom:245.910000px;}
.y6b{bottom:249.510000px;}
.y125{bottom:251.670000px;}
.ye6{bottom:252.390000px;}
.y2f{bottom:252.750000px;}
.y13b{bottom:253.470000px;}
.y8a{bottom:258.510000px;}
.y1f{bottom:263.745000px;}
.y170{bottom:265.710000px;}
.y6a{bottom:269.490000px;}
.y124{bottom:271.470000px;}
.ye5{bottom:272.190000px;}
.y2e{bottom:272.550000px;}
.y13a{bottom:273.450000px;}
.ybd{bottom:278.310000px;}
.y89{bottom:278.490000px;}
.y1e{bottom:283.545000px;}
.y16f{bottom:285.510000px;}
.y69{bottom:289.290000px;}
.y123{bottom:291.450000px;}
.ye4{bottom:291.990000px;}
.y2d{bottom:292.350000px;}
.ybc{bottom:298.110000px;}
.y88{bottom:298.290000px;}
.y139{bottom:302.250000px;}
.y1d{bottom:303.345000px;}
.y16e{bottom:305.490000px;}
.y68{bottom:309.090000px;}
.y122{bottom:311.250000px;}
.ye3{bottom:311.790000px;}
.ybb{bottom:317.910000px;}
.y87{bottom:318.090000px;}
.y138{bottom:322.050000px;}
.y1c{bottom:323.175000px;}
.y16d{bottom:325.290000px;}
.y14{bottom:327.090000px;}
.y67{bottom:328.890000px;}
.y121{bottom:331.050000px;}
.ye2{bottom:331.590000px;}
.yba{bottom:337.710000px;}
.y86{bottom:337.890000px;}
.y137{bottom:341.850000px;}
.y1b{bottom:342.975000px;}
.y16c{bottom:345.090000px;}
.y153{bottom:348.690000px;}
.y120{bottom:350.850000px;}
.ye1{bottom:351.570000px;}
.y66{bottom:357.690000px;}
.y136{bottom:361.650000px;}
.y1a{bottom:362.955000px;}
.y16b{bottom:364.890000px;}
.y152{bottom:368.670000px;}
.y11f{bottom:370.650000px;}
.ye0{bottom:371.370000px;}
.yb9{bottom:377.490000px;}
.y65{bottom:377.670000px;}
.y135{bottom:381.630000px;}
.y19{bottom:382.755000px;}
.y16a{bottom:384.690000px;}
.y151{bottom:388.470000px;}
.y11e{bottom:390.630000px;}
.ydf{bottom:391.170000px;}
.yb8{bottom:397.290000px;}
.y64{bottom:397.470000px;}
.y134{bottom:401.475000px;}
.y18{bottom:402.555000px;}
.y169{bottom:404.715000px;}
.y150{bottom:408.315000px;}
.y11d{bottom:410.475000px;}
.yde{bottom:411.015000px;}
.yb7{bottom:417.135000px;}
.y63{bottom:417.315000px;}
.y133{bottom:421.275000px;}
.y17{bottom:422.355000px;}
.y168{bottom:424.515000px;}
.y14f{bottom:428.115000px;}
.y11c{bottom:430.275000px;}
.ydd{bottom:430.815000px;}
.yb6{bottom:436.935000px;}
.y62{bottom:437.115000px;}
.y132{bottom:441.075000px;}
.y16{bottom:442.155000px;}
.y167{bottom:444.315000px;}
.y14e{bottom:447.915000px;}
.y11b{bottom:450.075000px;}
.ydc{bottom:450.795000px;}
.y61{bottom:456.915000px;}
.y131{bottom:460.875000px;}
.y15{bottom:462.135000px;}
.y166{bottom:464.115000px;}
.y14d{bottom:467.895000px;}
.y11a{bottom:469.875000px;}
.ydb{bottom:470.595000px;}
.yb5{bottom:476.715000px;}
.y60{bottom:476.895000px;}
.y130{bottom:480.855000px;}
.y165{bottom:483.915000px;}
.y14c{bottom:487.695000px;}
.y119{bottom:489.855000px;}
.yda{bottom:490.395000px;}
.yb4{bottom:496.515000px;}
.y5f{bottom:496.695000px;}
.y12f{bottom:500.655000px;}
.y164{bottom:503.895000px;}
.y85{bottom:505.695000px;}
.yd9{bottom:506.955000px;}
.yef{bottom:507.780000px;}
.y118{bottom:509.655000px;}
.yb3{bottom:516.315000px;}
.y14b{bottom:516.495000px;}
.y12e{bottom:520.455000px;}
.y163{bottom:523.695000px;}
.y5e{bottom:525.495000px;}
.y117{bottom:529.455000px;}
.yb2{bottom:536.115000px;}
.y14a{bottom:536.295000px;}
.y162{bottom:543.495000px;}
.y5d{bottom:545.295000px;}
.y116{bottom:549.255000px;}
.yb1{bottom:556.095000px;}
.y161{bottom:563.295000px;}
.y5c{bottom:565.095000px;}
.y115{bottom:569.055000px;}
.yb0{bottom:575.895000px;}
.y149{bottom:576.075000px;}
.y160{bottom:583.095000px;}
.y5b{bottom:585.075000px;}
.yaf{bottom:595.695000px;}
.y148{bottom:595.875000px;}
.y15f{bottom:603.075000px;}
.y114{bottom:603.795000px;}
.y5a{bottom:604.875000px;}
.yae{bottom:615.495000px;}
.y147{bottom:615.675000px;}
.y15e{bottom:622.875000px;}
.y59{bottom:624.675000px;}
.y113{bottom:627.195000px;}
.y84{bottom:633.675000px;}
.yad{bottom:635.295000px;}
.y146{bottom:635.475000px;}
.y15d{bottom:642.675000px;}
.y58{bottom:644.475000px;}
.y112{bottom:650.625000px;}
.y83{bottom:653.505000px;}
.yac{bottom:655.305000px;}
.y15c{bottom:662.505000px;}
.y57{bottom:664.305000px;}
.y82{bottom:673.305000px;}
.y111{bottom:674.025000px;}
.yab{bottom:675.105000px;}
.y15b{bottom:682.305000px;}
.y56{bottom:684.285000px;}
.y81{bottom:693.285000px;}
.yaa{bottom:694.905000px;}
.y110{bottom:697.425000px;}
.y15a{bottom:702.285000px;}
.y55{bottom:704.085000px;}
.y80{bottom:713.085000px;}
.ya9{bottom:714.705000px;}
.y10f{bottom:720.825000px;}
.y159{bottom:722.085000px;}
.y54{bottom:723.885000px;}
.y7f{bottom:732.885000px;}
.ya8{bottom:734.505000px;}
.y158{bottom:741.885000px;}
.y53{bottom:743.685000px;}
.y10e{bottom:744.225000px;}
.y7e{bottom:752.685000px;}
.ya7{bottom:754.485000px;}
.yd8{bottom:758.085000px;}
.y157{bottom:761.685000px;}
.yca{bottom:763.485000px;}
.y10d{bottom:767.625000px;}
.y52{bottom:772.485000px;}
.ya6{bottom:774.285000px;}
.yd7{bottom:777.885000px;}
.y7d{bottom:781.485000px;}
.yc9{bottom:783.465000px;}
.y10c{bottom:791.025000px;}
.y51{bottom:792.465000px;}
.ya5{bottom:794.085000px;}
.yd6{bottom:797.685000px;}
.y7c{bottom:801.465000px;}
.yc8{bottom:803.265000px;}
.y12{bottom:803.985000px;}
.y50{bottom:812.265000px;}
.ya2{bottom:813.885000px;}
.y10b{bottom:814.425000px;}
.yd5{bottom:817.665000px;}
.y7b{bottom:821.265000px;}
.yc7{bottom:823.065000px;}
.y4f{bottom:832.065000px;}
.y11{bottom:836.565000px;}
.yd4{bottom:837.465000px;}
.y10a{bottom:837.825000px;}
.y7a{bottom:841.065000px;}
.yc6{bottom:842.865000px;}
.y4e{bottom:851.865000px;}
.ya1{bottom:853.665000px;}
.yd3{bottom:857.265000px;}
.y79{bottom:860.865000px;}
.y109{bottom:861.225000px;}
.y10{bottom:861.585000px;}
.yc5{bottom:862.665000px;}
.y4d{bottom:871.665000px;}
.ya0{bottom:873.465000px;}
.yd2{bottom:877.065000px;}
.y78{bottom:880.665000px;}
.yf{bottom:881.385000px;}
.y108{bottom:884.625000px;}
.y4c{bottom:891.645000px;}
.y9e{bottom:893.265000px;}
.ye{bottom:896.685000px;}
.yd1{bottom:896.865000px;}
.y77{bottom:900.690000px;}
.y107{bottom:908.070000px;}
.y4b{bottom:911.490000px;}
.y9d{bottom:913.110000px;}
.yd0{bottom:916.890000px;}
.yd{bottom:917.970000px;}
.y76{bottom:920.490000px;}
.y4a{bottom:931.290000px;}
.y106{bottom:931.470000px;}
.y9c{bottom:932.910000px;}
.ycf{bottom:936.690000px;}
.y75{bottom:940.290000px;}
.yc{bottom:941.370000px;}
.y49{bottom:951.090000px;}
.ycd{bottom:951.450000px;}
.y9a{bottom:952.890000px;}
.y105{bottom:954.870000px;}
.y74{bottom:960.090000px;}
.y145{bottom:970.890000px;}
.ycc{bottom:972.690000px;}
.yb{bottom:973.230000px;}
.y104{bottom:978.270000px;}
.y48{bottom:979.890000px;}
.y144{bottom:990.870000px;}
.y99{bottom:992.490000px;}
.y47{bottom:999.870000px;}
.y103{bottom:1001.670000px;}
.ya{bottom:1004.910000px;}
.y98{bottom:1012.290000px;}
.y46{bottom:1019.670000px;}
.y102{bottom:1025.070000px;}
.y8{bottom:1030.470000px;}
.y97{bottom:1032.090000px;}
.y45{bottom:1039.470000px;}
.y1{bottom:1045.230000px;}
.y101{bottom:1048.470000px;}
.y96{bottom:1052.070000px;}
.y44{bottom:1059.270000px;}
.y95{bottom:1071.870000px;}
.y100{bottom:1072.590000px;}
.y43{bottom:1079.070000px;}
.y94{bottom:1091.670000px;}
.ycb{bottom:1092.390000px;}
.y42{bottom:1099.050000px;}
.y92{bottom:1112.190000px;}
.y41{bottom:1118.850000px;}
.y40{bottom:1138.650000px;}
.y3f{bottom:1168.380000px;}
.y3e{bottom:1191.420000px;}
.h13{height:19.800000px;}
.h15{height:19.836000px;}
.h11{height:19.980000px;}
.h17{height:20.016000px;}
.h18{height:21.240000px;}
.h1d{height:23.400000px;}
.h1e{height:23.436000px;}
.ha{height:26.100000px;}
.h9{height:27.147656px;}
.h14{height:39.600000px;}
.h16{height:39.780000px;}
.h5{height:41.726953px;}
.hb{height:42.164648px;}
.h20{height:43.506914px;}
.h1a{height:45.720703px;}
.h1b{height:45.842625px;}
.hd{height:46.159453px;}
.he{height:48.027656px;}
.h1f{height:48.147656px;}
.h10{height:48.207656px;}
.h12{height:48.496641px;}
.h4{height:48.774375px;}
.h21{height:49.255313px;}
.hf{height:51.706406px;}
.h8{height:53.404453px;}
.h3{height:62.028281px;}
.h7{height:67.565039px;}
.h1c{height:71.324297px;}
.h6{height:74.039062px;}
.h2{height:162.390000px;}
.h19{height:244.620000px;}
.hc{height:476.175000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:21.060000px;}
.w18{width:21.240000px;}
.w1f{width:47.160000px;}
.w1e{width:84.996000px;}
.w10{width:89.280000px;}
.wf{width:89.316000px;}
.wc{width:89.820000px;}
.wb{width:89.856000px;}
.w15{width:91.440000px;}
.we{width:93.420000px;}
.wa{width:94.140000px;}
.w1b{width:97.740000px;}
.w1c{width:97.956000px;}
.w1d{width:114.840000px;}
.w1a{width:138.276000px;}
.w4{width:144.576000px;}
.w8{width:153.390000px;}
.w17{width:170.130000px;}
.wd{width:203.970000px;}
.w16{width:204.510000px;}
.w13{width:205.230000px;}
.w9{width:205.770000px;}
.w19{width:360.000000px;}
.w11{width:454.755000px;}
.w14{width:563.685000px;}
.w20{width:580.965000px;}
.w2{width:619.530000px;}
.w7{width:626.730000px;}
.w12{width:658.725000px;}
.w6{width:780.120000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:2.160000px;}
.x15{left:4.320000px;}
.x2{left:8.100000px;}
.x24{left:9.930000px;}
.x23{left:17.385000px;}
.x10{left:21.240000px;}
.x2d{left:26.280000px;}
.x1{left:54.000000px;}
.x6{left:56.520000px;}
.x30{left:73.799987px;}
.x20{left:79.275000px;}
.x26{left:100.470000px;}
.x1d{left:107.610000px;}
.x9{left:116.856000px;}
.x25{left:124.560000px;}
.x5{left:136.290000px;}
.x27{left:156.090000px;}
.x21{left:180.465000px;}
.x1e{left:204.480000px;}
.x22{left:283.680000px;}
.x28{left:294.375000px;}
.x1f{left:304.665000px;}
.x11{left:321.375000px;}
.xb{left:322.635000px;}
.x29{left:392.115000px;}
.x12{left:414.795000px;}
.xc{left:416.775000px;}
.x8{left:473.504987px;}
.x17{left:475.665000px;}
.x1b{left:484.124987px;}
.x2a{left:490.065000px;}
.x2e{left:493.304987px;}
.x13{left:504.105000px;}
.xd{left:506.625000px;}
.x2f{left:520.304987px;}
.x1c{left:528.584987px;}
.x14{left:593.385000px;}
.xe{left:596.445000px;}
.x2b{left:604.905000px;}
.x18{left:645.810000px;}
.x3{left:673.530000px;}
.x16{left:680.550000px;}
.x7{left:683.250000px;}
.xf{left:686.310000px;}
.x2c{left:689.910000px;}
.x4{left:694.590000px;}
.x19{left:815.940000px;}
.x1a{left:833.579987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.280000pt;}
.ls6{letter-spacing:-1.120000pt;}
.ls12{letter-spacing:-0.821333pt;}
.lsd{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.198400pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.011520pt;}
.lsc{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.183467pt;}
.ls9{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls11{letter-spacing:0.272533pt;}
.lsa{letter-spacing:0.277333pt;}
.lsf{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.800000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls10{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.557333pt;}
.ws11{word-spacing:-13.552533pt;}
.ws3{word-spacing:-13.463467pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.185067pt;}
.ws8{word-spacing:-13.096533pt;}
.wsb{word-spacing:-13.081600pt;}
.ws5{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.458667pt;}
.wse{word-spacing:-10.588160pt;}
.wsd{word-spacing:-10.560000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.651520pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
.wsf{word-spacing:145.237333pt;}
.ws10{word-spacing:169.066667pt;}
._1d{margin-left:-4.651520pt;}
._a{margin-left:-3.555413pt;}
._b{margin-left:-2.616320pt;}
._0{margin-left:-0.898560pt;}
._1{width:1.603413pt;}
._f{width:2.593067pt;}
._10{width:4.143360pt;}
._13{width:5.075840pt;}
._c{width:5.997227pt;}
._d{width:6.919040pt;}
._e{width:8.263467pt;}
._1a{width:9.303040pt;}
._1e{width:10.358400pt;}
._5{width:11.520000pt;}
._1f{width:14.714240pt;}
._21{width:15.932160pt;}
._19{width:16.945280pt;}
._3b{width:17.925973pt;}
._12{width:18.847787pt;}
._11{width:19.760640pt;}
._1c{width:21.488000pt;}
._1b{width:22.499200pt;}
._20{width:24.009813pt;}
._26{width:25.813547pt;}
._24{width:27.313493pt;}
._2f{width:28.212053pt;}
._22{width:29.524907pt;}
._23{width:30.553813pt;}
._14{width:31.822507pt;}
._15{width:32.864213pt;}
._37{width:34.525440pt;}
._2a{width:35.421227pt;}
._2b{width:36.522880pt;}
._38{width:37.630080pt;}
._30{width:38.618240pt;}
._8{width:39.921280pt;}
._7{width:40.857600pt;}
._36{width:42.103040pt;}
._31{width:44.620800pt;}
._25{width:49.551147pt;}
._4{width:50.848000pt;}
._27{width:54.221227pt;}
._34{width:60.068907pt;}
._33{width:62.512427pt;}
._28{width:64.265387pt;}
._29{width:65.220480pt;}
._35{width:66.175360pt;}
._3d{width:67.195733pt;}
._3c{width:68.577920pt;}
._2e{width:70.427307pt;}
._3{width:77.440000pt;}
._17{width:81.476267pt;}
._2d{width:87.040000pt;}
._3a{width:88.275627pt;}
._39{width:89.772800pt;}
._3e{width:105.390080pt;}
._32{width:164.309333pt;}
._6{width:177.258667pt;}
._18{width:206.052480pt;}
._2{width:207.354453pt;}
._2c{width:754.416640pt;}
._9{width:909.584853pt;}
._16{width:951.746133pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:1.280000pt;}
.y2c{bottom:5.120000pt;}
.y9f{bottom:5.160000pt;}
.y93{bottom:5.280000pt;}
.yce{bottom:5.760000pt;}
.y13{bottom:6.720000pt;}
.y6{bottom:12.320000pt;}
.y9b{bottom:13.920000pt;}
.ya4{bottom:14.080000pt;}
.yff{bottom:15.013333pt;}
.y2b{bottom:22.720000pt;}
.ya3{bottom:22.880000pt;}
.y5{bottom:40.000000pt;}
.y2a{bottom:40.320000pt;}
.yfd{bottom:41.146667pt;}
.y9{bottom:51.040000pt;}
.yf6{bottom:56.293333pt;}
.y29{bottom:58.080000pt;}
.yf0{bottom:65.920000pt;}
.y4{bottom:67.840000pt;}
.y73{bottom:72.800000pt;}
.y38{bottom:73.760000pt;}
.yf7{bottom:74.400000pt;}
.yc4{bottom:75.520000pt;}
.y28{bottom:75.720000pt;}
.y179{bottom:77.440000pt;}
.y12d{bottom:82.720000pt;}
.yee{bottom:83.200000pt;}
.y143{bottom:84.320000pt;}
.yf3{bottom:88.093333pt;}
.y37{bottom:88.480000pt;}
.yc3{bottom:88.640000pt;}
.y72{bottom:90.400000pt;}
.yf8{bottom:92.506667pt;}
.y27{bottom:93.320000pt;}
.y178{bottom:95.200000pt;}
.y3{bottom:95.706667pt;}
.y12c{bottom:100.320000pt;}
.yed{bottom:100.800000pt;}
.y142{bottom:101.920000pt;}
.y36{bottom:103.040000pt;}
.yc2{bottom:106.240000pt;}
.y91{bottom:106.400000pt;}
.y71{bottom:108.000000pt;}
.yf1{bottom:108.613333pt;}
.yf9{bottom:110.626667pt;}
.y3d{bottom:110.880000pt;}
.y26{bottom:110.920000pt;}
.y177{bottom:112.800000pt;}
.y35{bottom:117.600000pt;}
.y12b{bottom:117.920000pt;}
.yec{bottom:118.400000pt;}
.y141{bottom:119.520000pt;}
.y90{bottom:124.000000pt;}
.y2{bottom:124.826667pt;}
.y70{bottom:125.600000pt;}
.y3c{bottom:128.480000pt;}
.y25{bottom:128.520000pt;}
.yfa{bottom:128.733333pt;}
.yf2{bottom:129.946667pt;}
.y176{bottom:130.400000pt;}
.y34{bottom:132.160000pt;}
.yf4{bottom:133.306667pt;}
.y156{bottom:133.600000pt;}
.y12a{bottom:135.546667pt;}
.yeb{bottom:136.186667pt;}
.y140{bottom:137.146667pt;}
.y8f{bottom:141.626667pt;}
.y6f{bottom:143.386667pt;}
.y3b{bottom:146.106667pt;}
.y24{bottom:146.280000pt;}
.y33{bottom:146.746667pt;}
.yfb{bottom:146.853333pt;}
.y175{bottom:148.026667pt;}
.y155{bottom:151.386667pt;}
.y129{bottom:153.146667pt;}
.yea{bottom:153.786667pt;}
.y13f{bottom:154.906667pt;}
.yc1{bottom:159.226667pt;}
.y8e{bottom:159.386667pt;}
.y6e{bottom:160.986667pt;}
.y32{bottom:162.266667pt;}
.y3a{bottom:163.706667pt;}
.y23{bottom:163.880000pt;}
.yfc{bottom:164.960000pt;}
.y174{bottom:165.626667pt;}
.y154{bottom:168.986667pt;}
.yf5{bottom:169.440000pt;}
.y128{bottom:170.906667pt;}
.ye9{bottom:171.386667pt;}
.y13e{bottom:172.506667pt;}
.yc0{bottom:176.826667pt;}
.y8d{bottom:176.986667pt;}
.y39{bottom:181.466667pt;}
.y22{bottom:181.480000pt;}
.y173{bottom:183.386667pt;}
.y6d{bottom:186.586667pt;}
.y127{bottom:188.506667pt;}
.ye8{bottom:188.986667pt;}
.y31{bottom:189.466667pt;}
.yfe{bottom:189.573333pt;}
.y13d{bottom:190.106667pt;}
.ybf{bottom:194.426667pt;}
.y8c{bottom:194.586667pt;}
.y21{bottom:199.080000pt;}
.y172{bottom:200.986667pt;}
.y6c{bottom:204.186667pt;}
.y126{bottom:206.106667pt;}
.ye7{bottom:206.586667pt;}
.y30{bottom:207.066667pt;}
.y13c{bottom:207.706667pt;}
.ybe{bottom:212.026667pt;}
.y8b{bottom:212.186667pt;}
.y20{bottom:216.680000pt;}
.y171{bottom:218.586667pt;}
.y6b{bottom:221.786667pt;}
.y125{bottom:223.706667pt;}
.ye6{bottom:224.346667pt;}
.y2f{bottom:224.666667pt;}
.y13b{bottom:225.306667pt;}
.y8a{bottom:229.786667pt;}
.y1f{bottom:234.440000pt;}
.y170{bottom:236.186667pt;}
.y6a{bottom:239.546667pt;}
.y124{bottom:241.306667pt;}
.ye5{bottom:241.946667pt;}
.y2e{bottom:242.266667pt;}
.y13a{bottom:243.066667pt;}
.ybd{bottom:247.386667pt;}
.y89{bottom:247.546667pt;}
.y1e{bottom:252.040000pt;}
.y16f{bottom:253.786667pt;}
.y69{bottom:257.146667pt;}
.y123{bottom:259.066667pt;}
.ye4{bottom:259.546667pt;}
.y2d{bottom:259.866667pt;}
.ybc{bottom:264.986667pt;}
.y88{bottom:265.146667pt;}
.y139{bottom:268.666667pt;}
.y1d{bottom:269.640000pt;}
.y16e{bottom:271.546667pt;}
.y68{bottom:274.746667pt;}
.y122{bottom:276.666667pt;}
.ye3{bottom:277.146667pt;}
.ybb{bottom:282.586667pt;}
.y87{bottom:282.746667pt;}
.y138{bottom:286.266667pt;}
.y1c{bottom:287.266667pt;}
.y16d{bottom:289.146667pt;}
.y14{bottom:290.746667pt;}
.y67{bottom:292.346667pt;}
.y121{bottom:294.266667pt;}
.ye2{bottom:294.746667pt;}
.yba{bottom:300.186667pt;}
.y86{bottom:300.346667pt;}
.y137{bottom:303.866667pt;}
.y1b{bottom:304.866667pt;}
.y16c{bottom:306.746667pt;}
.y153{bottom:309.946667pt;}
.y120{bottom:311.866667pt;}
.ye1{bottom:312.506667pt;}
.y66{bottom:317.946667pt;}
.y136{bottom:321.466667pt;}
.y1a{bottom:322.626667pt;}
.y16b{bottom:324.346667pt;}
.y152{bottom:327.706667pt;}
.y11f{bottom:329.466667pt;}
.ye0{bottom:330.106667pt;}
.yb9{bottom:335.546667pt;}
.y65{bottom:335.706667pt;}
.y135{bottom:339.226667pt;}
.y19{bottom:340.226667pt;}
.y16a{bottom:341.946667pt;}
.y151{bottom:345.306667pt;}
.y11e{bottom:347.226667pt;}
.ydf{bottom:347.706667pt;}
.yb8{bottom:353.146667pt;}
.y64{bottom:353.306667pt;}
.y134{bottom:356.866667pt;}
.y18{bottom:357.826667pt;}
.y169{bottom:359.746667pt;}
.y150{bottom:362.946667pt;}
.y11d{bottom:364.866667pt;}
.yde{bottom:365.346667pt;}
.yb7{bottom:370.786667pt;}
.y63{bottom:370.946667pt;}
.y133{bottom:374.466667pt;}
.y17{bottom:375.426667pt;}
.y168{bottom:377.346667pt;}
.y14f{bottom:380.546667pt;}
.y11c{bottom:382.466667pt;}
.ydd{bottom:382.946667pt;}
.yb6{bottom:388.386667pt;}
.y62{bottom:388.546667pt;}
.y132{bottom:392.066667pt;}
.y16{bottom:393.026667pt;}
.y167{bottom:394.946667pt;}
.y14e{bottom:398.146667pt;}
.y11b{bottom:400.066667pt;}
.ydc{bottom:400.706667pt;}
.y61{bottom:406.146667pt;}
.y131{bottom:409.666667pt;}
.y15{bottom:410.786667pt;}
.y166{bottom:412.546667pt;}
.y14d{bottom:415.906667pt;}
.y11a{bottom:417.666667pt;}
.ydb{bottom:418.306667pt;}
.yb5{bottom:423.746667pt;}
.y60{bottom:423.906667pt;}
.y130{bottom:427.426667pt;}
.y165{bottom:430.146667pt;}
.y14c{bottom:433.506667pt;}
.y119{bottom:435.426667pt;}
.yda{bottom:435.906667pt;}
.yb4{bottom:441.346667pt;}
.y5f{bottom:441.506667pt;}
.y12f{bottom:445.026667pt;}
.y164{bottom:447.906667pt;}
.y85{bottom:449.506667pt;}
.yd9{bottom:450.626667pt;}
.yef{bottom:451.360000pt;}
.y118{bottom:453.026667pt;}
.yb3{bottom:458.946667pt;}
.y14b{bottom:459.106667pt;}
.y12e{bottom:462.626667pt;}
.y163{bottom:465.506667pt;}
.y5e{bottom:467.106667pt;}
.y117{bottom:470.626667pt;}
.yb2{bottom:476.546667pt;}
.y14a{bottom:476.706667pt;}
.y162{bottom:483.106667pt;}
.y5d{bottom:484.706667pt;}
.y116{bottom:488.226667pt;}
.yb1{bottom:494.306667pt;}
.y161{bottom:500.706667pt;}
.y5c{bottom:502.306667pt;}
.y115{bottom:505.826667pt;}
.yb0{bottom:511.906667pt;}
.y149{bottom:512.066667pt;}
.y160{bottom:518.306667pt;}
.y5b{bottom:520.066667pt;}
.yaf{bottom:529.506667pt;}
.y148{bottom:529.666667pt;}
.y15f{bottom:536.066667pt;}
.y114{bottom:536.706667pt;}
.y5a{bottom:537.666667pt;}
.yae{bottom:547.106667pt;}
.y147{bottom:547.266667pt;}
.y15e{bottom:553.666667pt;}
.y59{bottom:555.266667pt;}
.y113{bottom:557.506667pt;}
.y84{bottom:563.266667pt;}
.yad{bottom:564.706667pt;}
.y146{bottom:564.866667pt;}
.y15d{bottom:571.266667pt;}
.y58{bottom:572.866667pt;}
.y112{bottom:578.333333pt;}
.y83{bottom:580.893333pt;}
.yac{bottom:582.493333pt;}
.y15c{bottom:588.893333pt;}
.y57{bottom:590.493333pt;}
.y82{bottom:598.493333pt;}
.y111{bottom:599.133333pt;}
.yab{bottom:600.093333pt;}
.y15b{bottom:606.493333pt;}
.y56{bottom:608.253333pt;}
.y81{bottom:616.253333pt;}
.yaa{bottom:617.693333pt;}
.y110{bottom:619.933333pt;}
.y15a{bottom:624.253333pt;}
.y55{bottom:625.853333pt;}
.y80{bottom:633.853333pt;}
.ya9{bottom:635.293333pt;}
.y10f{bottom:640.733333pt;}
.y159{bottom:641.853333pt;}
.y54{bottom:643.453333pt;}
.y7f{bottom:651.453333pt;}
.ya8{bottom:652.893333pt;}
.y158{bottom:659.453333pt;}
.y53{bottom:661.053333pt;}
.y10e{bottom:661.533333pt;}
.y7e{bottom:669.053333pt;}
.ya7{bottom:670.653333pt;}
.yd8{bottom:673.853333pt;}
.y157{bottom:677.053333pt;}
.yca{bottom:678.653333pt;}
.y10d{bottom:682.333333pt;}
.y52{bottom:686.653333pt;}
.ya6{bottom:688.253333pt;}
.yd7{bottom:691.453333pt;}
.y7d{bottom:694.653333pt;}
.yc9{bottom:696.413333pt;}
.y10c{bottom:703.133333pt;}
.y51{bottom:704.413333pt;}
.ya5{bottom:705.853333pt;}
.yd6{bottom:709.053333pt;}
.y7c{bottom:712.413333pt;}
.yc8{bottom:714.013333pt;}
.y12{bottom:714.653333pt;}
.y50{bottom:722.013333pt;}
.ya2{bottom:723.453333pt;}
.y10b{bottom:723.933333pt;}
.yd5{bottom:726.813333pt;}
.y7b{bottom:730.013333pt;}
.yc7{bottom:731.613333pt;}
.y4f{bottom:739.613333pt;}
.y11{bottom:743.613333pt;}
.yd4{bottom:744.413333pt;}
.y10a{bottom:744.733333pt;}
.y7a{bottom:747.613333pt;}
.yc6{bottom:749.213333pt;}
.y4e{bottom:757.213333pt;}
.ya1{bottom:758.813333pt;}
.yd3{bottom:762.013333pt;}
.y79{bottom:765.213333pt;}
.y109{bottom:765.533333pt;}
.y10{bottom:765.853333pt;}
.yc5{bottom:766.813333pt;}
.y4d{bottom:774.813333pt;}
.ya0{bottom:776.413333pt;}
.yd2{bottom:779.613333pt;}
.y78{bottom:782.813333pt;}
.yf{bottom:783.453333pt;}
.y108{bottom:786.333333pt;}
.y4c{bottom:792.573333pt;}
.y9e{bottom:794.013333pt;}
.ye{bottom:797.053333pt;}
.yd1{bottom:797.213333pt;}
.y77{bottom:800.613333pt;}
.y107{bottom:807.173333pt;}
.y4b{bottom:810.213333pt;}
.y9d{bottom:811.653333pt;}
.yd0{bottom:815.013333pt;}
.yd{bottom:815.973333pt;}
.y76{bottom:818.213333pt;}
.y4a{bottom:827.813333pt;}
.y106{bottom:827.973333pt;}
.y9c{bottom:829.253333pt;}
.ycf{bottom:832.613333pt;}
.y75{bottom:835.813333pt;}
.yc{bottom:836.773333pt;}
.y49{bottom:845.413333pt;}
.ycd{bottom:845.733333pt;}
.y9a{bottom:847.013333pt;}
.y105{bottom:848.773333pt;}
.y74{bottom:853.413333pt;}
.y145{bottom:863.013333pt;}
.ycc{bottom:864.613333pt;}
.yb{bottom:865.093333pt;}
.y104{bottom:869.573333pt;}
.y48{bottom:871.013333pt;}
.y144{bottom:880.773333pt;}
.y99{bottom:882.213333pt;}
.y47{bottom:888.773333pt;}
.y103{bottom:890.373333pt;}
.ya{bottom:893.253333pt;}
.y98{bottom:899.813333pt;}
.y46{bottom:906.373333pt;}
.y102{bottom:911.173333pt;}
.y8{bottom:915.973333pt;}
.y97{bottom:917.413333pt;}
.y45{bottom:923.973333pt;}
.y1{bottom:929.093333pt;}
.y101{bottom:931.973333pt;}
.y96{bottom:935.173333pt;}
.y44{bottom:941.573333pt;}
.y95{bottom:952.773333pt;}
.y100{bottom:953.413333pt;}
.y43{bottom:959.173333pt;}
.y94{bottom:970.373333pt;}
.ycb{bottom:971.013333pt;}
.y42{bottom:976.933333pt;}
.y92{bottom:988.613333pt;}
.y41{bottom:994.533333pt;}
.y40{bottom:1012.133333pt;}
.y3f{bottom:1038.560000pt;}
.y3e{bottom:1059.040000pt;}
.h13{height:17.600000pt;}
.h15{height:17.632000pt;}
.h11{height:17.760000pt;}
.h17{height:17.792000pt;}
.h18{height:18.880000pt;}
.h1d{height:20.800000pt;}
.h1e{height:20.832000pt;}
.ha{height:23.200000pt;}
.h9{height:24.131250pt;}
.h14{height:35.200000pt;}
.h16{height:35.360000pt;}
.h5{height:37.090625pt;}
.hb{height:37.479688pt;}
.h20{height:38.672812pt;}
.h1a{height:40.640625pt;}
.h1b{height:40.749000pt;}
.hd{height:41.030625pt;}
.he{height:42.691250pt;}
.h1f{height:42.797917pt;}
.h10{height:42.851250pt;}
.h12{height:43.108125pt;}
.h4{height:43.355000pt;}
.h21{height:43.782500pt;}
.hf{height:45.961250pt;}
.h8{height:47.470625pt;}
.h3{height:55.136250pt;}
.h7{height:60.057813pt;}
.h1c{height:63.399375pt;}
.h6{height:65.812500pt;}
.h2{height:144.346667pt;}
.h19{height:217.440000pt;}
.hc{height:423.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:18.720000pt;}
.w18{width:18.880000pt;}
.w1f{width:41.920000pt;}
.w1e{width:75.552000pt;}
.w10{width:79.360000pt;}
.wf{width:79.392000pt;}
.wc{width:79.840000pt;}
.wb{width:79.872000pt;}
.w15{width:81.280000pt;}
.we{width:83.040000pt;}
.wa{width:83.680000pt;}
.w1b{width:86.880000pt;}
.w1c{width:87.072000pt;}
.w1d{width:102.080000pt;}
.w1a{width:122.912000pt;}
.w4{width:128.512000pt;}
.w8{width:136.346667pt;}
.w17{width:151.226667pt;}
.wd{width:181.306667pt;}
.w16{width:181.786667pt;}
.w13{width:182.426667pt;}
.w9{width:182.906667pt;}
.w19{width:320.000000pt;}
.w11{width:404.226667pt;}
.w14{width:501.053333pt;}
.w20{width:516.413333pt;}
.w2{width:550.693333pt;}
.w7{width:557.093333pt;}
.w12{width:585.533333pt;}
.w6{width:693.440000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:1.920000pt;}
.x15{left:3.840000pt;}
.x2{left:7.200000pt;}
.x24{left:8.826667pt;}
.x23{left:15.453333pt;}
.x10{left:18.880000pt;}
.x2d{left:23.360000pt;}
.x1{left:48.000000pt;}
.x6{left:50.240000pt;}
.x30{left:65.599988pt;}
.x20{left:70.466667pt;}
.x26{left:89.306667pt;}
.x1d{left:95.653333pt;}
.x9{left:103.872000pt;}
.x25{left:110.720000pt;}
.x5{left:121.146667pt;}
.x27{left:138.746667pt;}
.x21{left:160.413333pt;}
.x1e{left:181.760000pt;}
.x22{left:252.160000pt;}
.x28{left:261.666667pt;}
.x1f{left:270.813333pt;}
.x11{left:285.666667pt;}
.xb{left:286.786667pt;}
.x29{left:348.546667pt;}
.x12{left:368.706667pt;}
.xc{left:370.466667pt;}
.x8{left:420.893322pt;}
.x17{left:422.813333pt;}
.x1b{left:430.333322pt;}
.x2a{left:435.613333pt;}
.x2e{left:438.493322pt;}
.x13{left:448.093333pt;}
.xd{left:450.333333pt;}
.x2f{left:462.493322pt;}
.x1c{left:469.853322pt;}
.x14{left:527.453333pt;}
.xe{left:530.173333pt;}
.x2b{left:537.693333pt;}
.x18{left:574.053333pt;}
.x3{left:598.693333pt;}
.x16{left:604.933333pt;}
.x7{left:607.333333pt;}
.xf{left:610.053333pt;}
.x2c{left:613.253333pt;}
.x4{left:617.413333pt;}
.x19{left:725.280000pt;}
.x1a{left:740.959988pt;}
}




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