
    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_1e1d458970e1bf749840c2d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b05be1b8fb607392ab2e8d3e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0167ee549f39b26cba0ef17d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fb1ef0040330939053286054.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_722479935ef188be141f4494.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_c46f79fdfd956fc50a95b23d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.776855;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_1054374950a4e86cd02a3da9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a9edc8a5ecb0c1596c82cc21.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d81bb597ee08febae5acb1f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.869141;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);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-77.760000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.512000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls1c{letter-spacing:-1.332000px;}
.ls1e{letter-spacing:-1.290000px;}
.ls36{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.270000px;}
.ls7{letter-spacing:-0.259800px;}
.ls35{letter-spacing:-0.252000px;}
.ls16{letter-spacing:-0.216000px;}
.ls2e{letter-spacing:-0.198000px;}
.lsa{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.027360px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.054000px;}
.ls1{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.288000px;}
.ls2c{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.396000px;}
.ls20{letter-spacing:0.432000px;}
.ls2d{letter-spacing:0.522000px;}
.ls15{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.738000px;}
.ls26{letter-spacing:1.044000px;}
.ls33{letter-spacing:1.764000px;}
.ls2a{letter-spacing:3.924000px;}
.ls31{letter-spacing:5.364000px;}
.ls34{letter-spacing:6.084000px;}
.ls29{letter-spacing:6.804000px;}
.ls22{letter-spacing:7.920000px;}
.ls39{letter-spacing:9.630000px;}
.ls21{letter-spacing:12.240000px;}
.ls32{letter-spacing:12.564000px;}
.ls38{letter-spacing:13.464000px;}
.ls2b{letter-spacing:14.184000px;}
.ls27{letter-spacing:16.884000px;}
.ls2f{letter-spacing:24.084000px;}
.ls24{letter-spacing:30.564000px;}
.ls25{letter-spacing:31.680000px;}
.ls17{letter-spacing:33.960000px;}
.ls19{letter-spacing:54.864000px;}
.ls37{letter-spacing:56.880000px;}
.lse{letter-spacing:109.440000px;}
.ls14{letter-spacing:110.160000px;}
.ls28{letter-spacing:156.420000px;}
.ls1a{letter-spacing:254.856000px;}
.ls23{letter-spacing:454.320000px;}
.ls30{letter-spacing:610.344000px;}
.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;}
}
.ws13{word-spacing:-72.000000px;}
.ws10{word-spacing:-18.720000px;}
.ws18{word-spacing:-18.432000px;}
.ws19{word-spacing:-18.288000px;}
.ws12{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.784000px;}
.wse{word-spacing:-17.712000px;}
.ws15{word-spacing:-16.560000px;}
.ws17{word-spacing:-16.102200px;}
.ws6{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.270000px;}
.wsd{word-spacing:-15.226440px;}
.ws14{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.850000px;}
.ws7{word-spacing:-14.680200px;}
.ws4{word-spacing:-14.220000px;}
.ws2{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.140000px;}
.wsb{word-spacing:-12.258000px;}
.ws8{word-spacing:-12.204000px;}
.wsa{word-spacing:-12.024000px;}
.ws9{word-spacing:-11.934000px;}
.wsc{word-spacing:0.000000px;}
._11{margin-left:-4.428000px;}
._f{margin-left:-3.348000px;}
._b{margin-left:-2.286000px;}
._8{margin-left:-1.260000px;}
._1{width:1.128000px;}
._7{width:2.261520px;}
._9{width:3.450000px;}
._a{width:4.573920px;}
._e{width:6.258000px;}
._c{width:8.100000px;}
._d{width:9.428400px;}
._3{width:10.533600px;}
._16{width:12.528000px;}
._14{width:13.968000px;}
._6{width:15.944880px;}
._27{width:16.968480px;}
._20{width:18.745920px;}
._1c{width:20.208000px;}
._1d{width:21.288000px;}
._18{width:22.464000px;}
._17{width:24.408000px;}
._15{width:25.428000px;}
._22{width:26.652000px;}
._23{width:27.792000px;}
._12{width:28.992000px;}
._13{width:30.108000px;}
._1a{width:31.608000px;}
._1b{width:33.012000px;}
._26{width:34.188000px;}
._1e{width:35.280000px;}
._1f{width:36.432000px;}
._21{width:37.572000px;}
._35{width:38.956320px;}
._25{width:41.688000px;}
._24{width:44.112000px;}
._2a{width:45.907200px;}
._5{width:47.518080px;}
._4{width:48.646080px;}
._3b{width:51.804000px;}
._28{width:53.423280px;}
._47{width:56.424000px;}
._34{width:66.506400px;}
._31{width:70.814880px;}
._2c{width:73.296720px;}
._39{width:78.164640px;}
._36{width:80.883360px;}
._3a{width:83.927520px;}
._43{width:94.608000px;}
._2e{width:97.241760px;}
._3f{width:104.432400px;}
._3e{width:105.720480px;}
._3c{width:111.157920px;}
._2b{width:115.824240px;}
._29{width:123.276960px;}
._33{width:129.898080px;}
._37{width:139.156560px;}
._40{width:140.490000px;}
._44{width:156.168000px;}
._41{width:159.081840px;}
._2d{width:163.784880px;}
._32{width:164.843280px;}
._46{width:166.140720px;}
._30{width:168.614640px;}
._3d{width:195.544800px;}
._2f{width:206.705520px;}
._38{width:222.637680px;}
._42{width:313.200000px;}
._19{width:427.040640px;}
._0{width:483.276000px;}
._45{width:611.328000px;}
._2{width:1080.300000px;}
._10{width:1542.666000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:3.600000px;}
.yb7{bottom:3.780000px;}
.yf0{bottom:3.810000px;}
.yf3{bottom:22.500000px;}
.yc6{bottom:22.680000px;}
.yef{bottom:22.710000px;}
.ye9{bottom:41.574000px;}
.ye2{bottom:41.580000px;}
.yc5{bottom:41.625000px;}
.ycd{bottom:41.754000px;}
.yd3{bottom:41.760000px;}
.yee{bottom:41.790000px;}
.y5{bottom:45.180000px;}
.y32{bottom:45.900000px;}
.yf2{bottom:60.480000px;}
.yc4{bottom:60.525000px;}
.ycc{bottom:60.654000px;}
.yd2{bottom:60.660000px;}
.ye1{bottom:60.690000px;}
.y4{bottom:60.840000px;}
.y31{bottom:61.740000px;}
.y3{bottom:76.320000px;}
.y30{bottom:77.220000px;}
.ycb{bottom:79.554000px;}
.yd1{bottom:79.560000px;}
.ye0{bottom:79.590000px;}
.yc3{bottom:79.605000px;}
.y2{bottom:91.836000px;}
.y2f{bottom:92.916000px;}
.yc2{bottom:98.505000px;}
.yca{bottom:98.634000px;}
.yd0{bottom:98.640000px;}
.ydf{bottom:98.670000px;}
.y18d{bottom:108.936000px;}
.y162{bottom:112.176000px;}
.y171{bottom:113.256000px;}
.y78{bottom:114.876000px;}
.yc9{bottom:117.534000px;}
.ycf{bottom:117.540000px;}
.yde{bottom:117.570000px;}
.y101{bottom:117.576000px;}
.yc1{bottom:117.585000px;}
.y57{bottom:118.836000px;}
.ye8{bottom:120.456000px;}
.y121{bottom:124.596000px;}
.y151{bottom:125.856000px;}
.y2c{bottom:127.296000px;}
.y70{bottom:127.476000px;}
.y96{bottom:127.836000px;}
.y18c{bottom:129.636000px;}
.yb5{bottom:130.536000px;}
.y161{bottom:132.876000px;}
.y143{bottom:134.676000px;}
.y77{bottom:135.576000px;}
.ydd{bottom:136.470000px;}
.yc0{bottom:136.485000px;}
.yc8{bottom:136.614000px;}
.yed{bottom:136.650000px;}
.ye7{bottom:136.665000px;}
.y100{bottom:138.276000px;}
.y12f{bottom:138.816000px;}
.y56{bottom:139.536000px;}
.y1a1{bottom:144.936000px;}
.y120{bottom:145.296000px;}
.y150{bottom:146.556000px;}
.y170{bottom:146.916000px;}
.y6f{bottom:148.176000px;}
.y95{bottom:149.796000px;}
.y18b{bottom:150.330000px;}
.yb4{bottom:152.490000px;}
.y2b{bottom:153.570000px;}
.y142{bottom:155.370000px;}
.ydc{bottom:155.550000px;}
.ybf{bottom:155.565000px;}
.y76{bottom:156.270000px;}
.yff{bottom:158.970000px;}
.y12e{bottom:159.330000px;}
.y55{bottom:160.230000px;}
.y1a0{bottom:165.630000px;}
.y11f{bottom:165.990000px;}
.y14f{bottom:167.250000px;}
.y16f{bottom:167.430000px;}
.y6e{bottom:168.870000px;}
.y2a{bottom:170.130000px;}
.y18a{bottom:171.030000px;}
.y94{bottom:171.750000px;}
.yb3{bottom:174.450000px;}
.ybe{bottom:174.465000px;}
.yec{bottom:174.630000px;}
.y12d{bottom:174.810000px;}
.y141{bottom:176.070000px;}
.y75{bottom:176.970000px;}
.ye3{bottom:178.050000px;}
.yfe{bottom:179.670000px;}
.y54{bottom:180.930000px;}
.y19f{bottom:186.330000px;}
.y29{bottom:186.510000px;}
.y11e{bottom:186.690000px;}
.y160{bottom:187.410000px;}
.y14e{bottom:187.950000px;}
.y6d{bottom:189.570000px;}
.y189{bottom:191.730000px;}
.y93{bottom:192.450000px;}
.ybd{bottom:193.365000px;}
.ydb{bottom:193.530000px;}
.ye6{bottom:193.545000px;}
.yb2{bottom:195.150000px;}
.y140{bottom:196.770000px;}
.y74{bottom:198.930000px;}
.yfd{bottom:200.370000px;}
.y53{bottom:201.630000px;}
.y28{bottom:203.070000px;}
.y19e{bottom:207.030000px;}
.y15f{bottom:207.750000px;}
.y14d{bottom:208.650000px;}
.y6c{bottom:210.270000px;}
.yda{bottom:212.430000px;}
.ybc{bottom:212.445000px;}
.y92{bottom:213.150000px;}
.yb1{bottom:215.850000px;}
.y16e{bottom:216.930000px;}
.y13f{bottom:217.470000px;}
.y10f{bottom:218.190000px;}
.y27{bottom:219.450000px;}
.y73{bottom:219.630000px;}
.y11d{bottom:220.350000px;}
.yfc{bottom:221.070000px;}
.y173{bottom:221.250000px;}
.y52{bottom:222.330000px;}
.y19d{bottom:227.730000px;}
.y15e{bottom:228.270000px;}
.y14c{bottom:229.350000px;}
.y6b{bottom:230.970000px;}
.ybb{bottom:231.345000px;}
.yd9{bottom:231.510000px;}
.ye5{bottom:231.525000px;}
.yeb{bottom:231.555000px;}
.y188{bottom:233.130000px;}
.y91{bottom:233.850000px;}
.y11c{bottom:235.830000px;}
.y26{bottom:236.010000px;}
.yb0{bottom:236.550000px;}
.y13e{bottom:238.170000px;}
.y10e{bottom:238.890000px;}
.y72{bottom:241.590000px;}
.yfb{bottom:241.770000px;}
.y51{bottom:243.030000px;}
.y15d{bottom:243.750000px;}
.y19c{bottom:248.430000px;}
.y14b{bottom:250.050000px;}
.yd8{bottom:250.410000px;}
.ye4{bottom:250.425000px;}
.yba{bottom:250.455000px;}
.y6a{bottom:251.670000px;}
.y25{bottom:252.390000px;}
.y187{bottom:253.830000px;}
.y90{bottom:254.550000px;}
.yaf{bottom:257.250000px;}
.y13d{bottom:258.870000px;}
.y10d{bottom:259.590000px;}
.y71{bottom:262.470000px;}
.y50{bottom:263.730000px;}
.y24{bottom:268.950000px;}
.y19b{bottom:269.130000px;}
.yd7{bottom:269.310000px;}
.yb9{bottom:269.355000px;}
.y14a{bottom:270.750000px;}
.y172{bottom:270.930000px;}
.yb8{bottom:271.470000px;}
.y69{bottom:272.370000px;}
.y186{bottom:274.530000px;}
.y8f{bottom:275.250000px;}
.yae{bottom:277.950000px;}
.y13c{bottom:279.570000px;}
.y10c{bottom:280.290000px;}
.yfa{bottom:283.170000px;}
.y4f{bottom:284.430000px;}
.y23{bottom:285.510000px;}
.yd6{bottom:288.435000px;}
.y19a{bottom:289.830000px;}
.y149{bottom:291.450000px;}
.y68{bottom:293.070000px;}
.y185{bottom:295.230000px;}
.y8e{bottom:295.950000px;}
.yad{bottom:298.695000px;}
.y13b{bottom:300.315000px;}
.y10b{bottom:301.035000px;}
.yf9{bottom:303.915000px;}
.y4e{bottom:305.175000px;}
.yd5{bottom:307.335000px;}
.y22{bottom:307.875000px;}
.y199{bottom:310.575000px;}
.y67{bottom:313.815000px;}
.y184{bottom:315.975000px;}
.y8d{bottom:316.695000px;}
.yac{bottom:319.395000px;}
.y13a{bottom:321.015000px;}
.y10a{bottom:321.735000px;}
.y21{bottom:324.435000px;}
.yf8{bottom:324.615000px;}
.y148{bottom:325.335000px;}
.y4d{bottom:325.875000px;}
.y198{bottom:331.275000px;}
.y66{bottom:334.515000px;}
.y183{bottom:336.675000px;}
.y8c{bottom:337.395000px;}
.yab{bottom:340.095000px;}
.y20{bottom:340.995000px;}
.y139{bottom:341.715000px;}
.y109{bottom:342.435000px;}
.yf7{bottom:345.315000px;}
.y4c{bottom:346.575000px;}
.y197{bottom:351.975000px;}
.y147{bottom:354.315000px;}
.y65{bottom:355.215000px;}
.y1f{bottom:357.375000px;}
.y8b{bottom:358.275000px;}
.yaa{bottom:360.795000px;}
.y138{bottom:362.415000px;}
.y108{bottom:363.135000px;}
.yf6{bottom:366.015000px;}
.y4b{bottom:367.275000px;}
.y196{bottom:372.675000px;}
.y1e{bottom:373.935000px;}
.y64{bottom:375.915000px;}
.y182{bottom:378.075000px;}
.y8a{bottom:380.235000px;}
.ya9{bottom:381.495000px;}
.y137{bottom:383.115000px;}
.y107{bottom:383.835000px;}
.y12c{bottom:385.815000px;}
.yf5{bottom:386.535000px;}
.y4a{bottom:387.975000px;}
.y1d{bottom:390.315000px;}
.y195{bottom:393.375000px;}
.y63{bottom:396.435000px;}
.y181{bottom:398.775000px;}
.y89{bottom:402.195000px;}
.y136{bottom:403.815000px;}
.y106{bottom:404.535000px;}
.y12b{bottom:406.515000px;}
.y1c{bottom:406.875000px;}
.yf4{bottom:407.235000px;}
.y49{bottom:408.675000px;}
.y194{bottom:414.075000px;}
.y62{bottom:417.135000px;}
.y180{bottom:419.475000px;}
.y88{bottom:422.895000px;}
.y1b{bottom:423.255000px;}
.y135{bottom:424.515000px;}
.yf1{bottom:424.875000px;}
.y105{bottom:425.235000px;}
.y16d{bottom:426.315000px;}
.y12a{bottom:427.215000px;}
.y48{bottom:429.375000px;}
.y193{bottom:434.775000px;}
.y61{bottom:437.835000px;}
.y1a{bottom:439.815000px;}
.y17f{bottom:440.175000px;}
.y15c{bottom:441.255000px;}
.ya8{bottom:443.595000px;}
.yd4{bottom:444.495000px;}
.y87{bottom:444.855000px;}
.y134{bottom:445.215000px;}
.y16c{bottom:447.015000px;}
.y11b{bottom:447.735000px;}
.y129{bottom:447.915000px;}
.y47{bottom:450.075000px;}
.y192{bottom:455.475000px;}
.y19{bottom:456.195000px;}
.y60{bottom:458.535000px;}
.y104{bottom:459.075000px;}
.y17e{bottom:460.875000px;}
.y15b{bottom:461.955000px;}
.ya7{bottom:464.295000px;}
.y86{bottom:465.555000px;}
.y133{bottom:465.915000px;}
.y16b{bottom:467.715000px;}
.y11a{bottom:468.435000px;}
.y128{bottom:468.615000px;}
.y46{bottom:470.775000px;}
.y18{bottom:472.755000px;}
.y191{bottom:476.175000px;}
.y5f{bottom:479.235000px;}
.y103{bottom:479.415000px;}
.y17d{bottom:481.575000px;}
.y15a{bottom:482.655000px;}
.ya6{bottom:484.995000px;}
.y85{bottom:486.255000px;}
.y16a{bottom:488.415000px;}
.y17{bottom:488.955000px;}
.y119{bottom:489.135000px;}
.y127{bottom:489.315000px;}
.y45{bottom:491.475000px;}
.y190{bottom:496.335000px;}
.y132{bottom:499.575000px;}
.y5e{bottom:499.755000px;}
.yea{bottom:501.375000px;}
.y17c{bottom:502.275000px;}
.y159{bottom:503.355000px;}
.ya5{bottom:505.725000px;}
.y16{bottom:506.085000px;}
.y84{bottom:506.985000px;}
.y102{bottom:508.425000px;}
.y169{bottom:509.145000px;}
.y118{bottom:509.865000px;}
.y126{bottom:510.045000px;}
.y44{bottom:512.205000px;}
.y18f{bottom:514.905000px;}
.y5d{bottom:518.685000px;}
.y131{bottom:520.125000px;}
.y17b{bottom:523.005000px;}
.y15{bottom:523.365000px;}
.y158{bottom:524.085000px;}
.ya4{bottom:526.425000px;}
.y83{bottom:527.685000px;}
.y168{bottom:529.845000px;}
.y117{bottom:530.565000px;}
.y125{bottom:530.745000px;}
.y43{bottom:532.905000px;}
.y18e{bottom:535.065000px;}
.y130{bottom:535.605000px;}
.y5c{bottom:537.765000px;}
.y14{bottom:540.645000px;}
.y17a{bottom:543.705000px;}
.y157{bottom:544.785000px;}
.ya3{bottom:547.125000px;}
.y82{bottom:548.385000px;}
.y167{bottom:550.545000px;}
.y116{bottom:551.265000px;}
.y42{bottom:553.605000px;}
.y5b{bottom:556.665000px;}
.yb6{bottom:556.845000px;}
.y13{bottom:561.885000px;}
.y124{bottom:564.405000px;}
.y156{bottom:565.485000px;}
.y81{bottom:569.085000px;}
.y166{bottom:571.245000px;}
.y115{bottom:571.965000px;}
.y41{bottom:574.125000px;}
.y5a{bottom:575.565000px;}
.y12{bottom:579.165000px;}
.y146{bottom:582.945000px;}
.y123{bottom:584.925000px;}
.y179{bottom:585.105000px;}
.y155{bottom:586.185000px;}
.y80{bottom:589.785000px;}
.ya2{bottom:591.045000px;}
.y114{bottom:592.665000px;}
.y40{bottom:594.825000px;}
.y11{bottom:596.445000px;}
.y122{bottom:600.405000px;}
.y145{bottom:603.285000px;}
.y165{bottom:604.905000px;}
.y7f{bottom:610.485000px;}
.ya1{bottom:613.005000px;}
.y113{bottom:613.365000px;}
.y10{bottom:613.725000px;}
.y3f{bottom:615.525000px;}
.y144{bottom:618.765000px;}
.y154{bottom:619.845000px;}
.y164{bottom:625.425000px;}
.y178{bottom:626.505000px;}
.yf{bottom:630.825000px;}
.y7e{bottom:631.185000px;}
.ya0{bottom:633.705000px;}
.y3e{bottom:636.225000px;}
.y153{bottom:640.365000px;}
.y112{bottom:647.025000px;}
.y177{bottom:647.205000px;}
.ye{bottom:648.105000px;}
.y7d{bottom:653.145000px;}
.y163{bottom:654.225000px;}
.y9f{bottom:654.405000px;}
.y3d{bottom:656.925000px;}
.yd{bottom:666.105000px;}
.y111{bottom:667.545000px;}
.y152{bottom:669.345000px;}
.y7c{bottom:675.105000px;}
.y3c{bottom:677.625000px;}
.y176{bottom:680.865000px;}
.y110{bottom:683.025000px;}
.y7b{bottom:695.805000px;}
.y3b{bottom:698.325000px;}
.y175{bottom:701.385000px;}
.yc{bottom:702.825000px;}
.y9e{bottom:716.550000px;}
.y7a{bottom:717.810000px;}
.y3a{bottom:719.070000px;}
.y174{bottom:730.410000px;}
.yb{bottom:732.210000px;}
.y9d{bottom:737.250000px;}
.y79{bottom:738.510000px;}
.y39{bottom:739.770000px;}
.y9c{bottom:757.950000px;}
.y38{bottom:760.470000px;}
.ya{bottom:761.550000px;}
.yce{bottom:767.850000px;}
.y9b{bottom:778.650000px;}
.y37{bottom:781.170000px;}
.y9{bottom:790.710000px;}
.y9a{bottom:799.350000px;}
.y36{bottom:801.870000px;}
.y8{bottom:820.050000px;}
.y35{bottom:822.570000px;}
.y99{bottom:840.750000px;}
.y59{bottom:843.270000px;}
.y7{bottom:849.390000px;}
.y98{bottom:862.710000px;}
.y34{bottom:863.970000px;}
.y6{bottom:878.730000px;}
.y97{bottom:883.410000px;}
.y33{bottom:884.670000px;}
.y2e{bottom:916.710000px;}
.y58{bottom:917.070000px;}
.y1{bottom:924.120000px;}
.y2d{bottom:936.900000px;}
.he{height:19.080000px;}
.h1a{height:41.317383px;}
.h19{height:45.724570px;}
.h3{height:52.998047px;}
.h8{height:53.709961px;}
.h7{height:55.291992px;}
.h16{height:56.880000px;}
.h6{height:58.651172px;}
.h11{height:59.383125px;}
.hb{height:64.546875px;}
.h10{height:64.978594px;}
.ha{height:65.010937px;}
.h2{height:65.884219px;}
.hd{height:70.628906px;}
.h5{height:70.664062px;}
.h9{height:72.562500px;}
.hc{height:74.004654px;}
.h18{height:75.780000px;}
.h4{height:95.245664px;}
.h13{height:132.840000px;}
.h12{height:151.920000px;}
.h15{height:265.710000px;}
.h17{height:265.755000px;}
.hf{height:284.655000px;}
.h14{height:322.635000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:94.500000px;}
.w6{width:137.016000px;}
.w4{width:137.556000px;}
.w5{width:158.790000px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x12{left:7.920000px;}
.x11{left:9.180000px;}
.x18{left:10.440000px;}
.x17{left:11.700000px;}
.x1c{left:13.140000px;}
.xd{left:14.760000px;}
.x9{left:16.020000px;}
.x1b{left:17.460000px;}
.x1f{left:18.720000px;}
.x1e{left:19.980000px;}
.x15{left:21.960000px;}
.x1a{left:23.220000px;}
.x19{left:25.020000px;}
.x13{left:27.900000px;}
.x16{left:29.160000px;}
.xf{left:35.100000px;}
.x1d{left:36.720000px;}
.xb{left:38.700000px;}
.x14{left:39.780000px;}
.x10{left:47.340000px;}
.x1{left:95.795989px;}
.x3a{left:98.675989px;}
.x21{left:100.115989px;}
.x2b{left:101.375989px;}
.x37{left:102.455989px;}
.x34{left:107.315989px;}
.x28{left:108.935989px;}
.x3d{left:112.175989px;}
.x2f{left:115.415989px;}
.x40{left:117.035989px;}
.x43{left:118.835989px;}
.x7{left:122.795989px;}
.x26{left:126.035989px;}
.x4{left:127.655989px;}
.x38{left:129.095989px;}
.x5{left:132.335989px;}
.x46{left:138.275989px;}
.x2e{left:145.115989px;}
.x3{left:146.195989px;}
.x8{left:149.795989px;}
.x6{left:159.329989px;}
.x29{left:175.349989px;}
.x32{left:184.169989px;}
.xa{left:191.730000px;}
.x3b{left:195.689989px;}
.x2{left:262.874989px;}
.x22{left:288.074989px;}
.x35{left:290.594989px;}
.x24{left:304.094989px;}
.x3e{left:307.694989px;}
.x2c{left:310.934989px;}
.x30{left:316.874989px;}
.xc{left:330.015000px;}
.x44{left:334.154989px;}
.x41{left:338.654989px;}
.x45{left:361.514989px;}
.xe{left:489.525000px;}
.x3c{left:501.044989px;}
.x36{left:505.904989px;}
.x3f{left:515.624989px;}
.x25{left:518.324989px;}
.x2d{left:528.404989px;}
.x31{left:531.464989px;}
.x20{left:532.544989px;}
.x23{left:542.264989px;}
.x2a{left:543.344989px;}
.x27{left:552.704989px;}
.x33{left:576.509989px;}
.x39{left:579.029989px;}
.x42{left:627.269989px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-69.120000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.344000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls1c{letter-spacing:-1.184000pt;}
.ls1e{letter-spacing:-1.146667pt;}
.ls36{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls7{letter-spacing:-0.230933pt;}
.ls35{letter-spacing:-0.224000pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls2e{letter-spacing:-0.176000pt;}
.lsa{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.024320pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.048000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.256000pt;}
.ls2c{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.352000pt;}
.ls20{letter-spacing:0.384000pt;}
.ls2d{letter-spacing:0.464000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.656000pt;}
.ls26{letter-spacing:0.928000pt;}
.ls33{letter-spacing:1.568000pt;}
.ls2a{letter-spacing:3.488000pt;}
.ls31{letter-spacing:4.768000pt;}
.ls34{letter-spacing:5.408000pt;}
.ls29{letter-spacing:6.048000pt;}
.ls22{letter-spacing:7.040000pt;}
.ls39{letter-spacing:8.560000pt;}
.ls21{letter-spacing:10.880000pt;}
.ls32{letter-spacing:11.168000pt;}
.ls38{letter-spacing:11.968000pt;}
.ls2b{letter-spacing:12.608000pt;}
.ls27{letter-spacing:15.008000pt;}
.ls2f{letter-spacing:21.408000pt;}
.ls24{letter-spacing:27.168000pt;}
.ls25{letter-spacing:28.160000pt;}
.ls17{letter-spacing:30.186667pt;}
.ls19{letter-spacing:48.768000pt;}
.ls37{letter-spacing:50.560000pt;}
.lse{letter-spacing:97.280000pt;}
.ls14{letter-spacing:97.920000pt;}
.ls28{letter-spacing:139.040000pt;}
.ls1a{letter-spacing:226.538667pt;}
.ls23{letter-spacing:403.840000pt;}
.ls30{letter-spacing:542.528000pt;}
.ws13{word-spacing:-64.000000pt;}
.ws10{word-spacing:-16.640000pt;}
.ws18{word-spacing:-16.384000pt;}
.ws19{word-spacing:-16.256000pt;}
.ws12{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.744000pt;}
.ws15{word-spacing:-14.720000pt;}
.ws17{word-spacing:-14.313067pt;}
.ws6{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.573333pt;}
.wsd{word-spacing:-13.534613pt;}
.ws14{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.200000pt;}
.ws7{word-spacing:-13.049067pt;}
.ws4{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.wsb{word-spacing:-10.896000pt;}
.ws8{word-spacing:-10.848000pt;}
.wsa{word-spacing:-10.688000pt;}
.ws9{word-spacing:-10.608000pt;}
.wsc{word-spacing:0.000000pt;}
._11{margin-left:-3.936000pt;}
._f{margin-left:-2.976000pt;}
._b{margin-left:-2.032000pt;}
._8{margin-left:-1.120000pt;}
._1{width:1.002667pt;}
._7{width:2.010240pt;}
._9{width:3.066667pt;}
._a{width:4.065707pt;}
._e{width:5.562667pt;}
._c{width:7.200000pt;}
._d{width:8.380800pt;}
._3{width:9.363200pt;}
._16{width:11.136000pt;}
._14{width:12.416000pt;}
._6{width:14.173227pt;}
._27{width:15.083093pt;}
._20{width:16.663040pt;}
._1c{width:17.962667pt;}
._1d{width:18.922667pt;}
._18{width:19.968000pt;}
._17{width:21.696000pt;}
._15{width:22.602667pt;}
._22{width:23.690667pt;}
._23{width:24.704000pt;}
._12{width:25.770667pt;}
._13{width:26.762667pt;}
._1a{width:28.096000pt;}
._1b{width:29.344000pt;}
._26{width:30.389333pt;}
._1e{width:31.360000pt;}
._1f{width:32.384000pt;}
._21{width:33.397333pt;}
._35{width:34.627840pt;}
._25{width:37.056000pt;}
._24{width:39.210667pt;}
._2a{width:40.806400pt;}
._5{width:42.238293pt;}
._4{width:43.240960pt;}
._3b{width:46.048000pt;}
._28{width:47.487360pt;}
._47{width:50.154667pt;}
._34{width:59.116800pt;}
._31{width:62.946560pt;}
._2c{width:65.152640pt;}
._39{width:69.479680pt;}
._36{width:71.896320pt;}
._3a{width:74.602240pt;}
._43{width:84.096000pt;}
._2e{width:86.437120pt;}
._3f{width:92.828800pt;}
._3e{width:93.973760pt;}
._3c{width:98.807040pt;}
._2b{width:102.954880pt;}
._29{width:109.579520pt;}
._33{width:115.464960pt;}
._37{width:123.694720pt;}
._40{width:124.880000pt;}
._44{width:138.816000pt;}
._41{width:141.406080pt;}
._2d{width:145.586560pt;}
._32{width:146.527360pt;}
._46{width:147.680640pt;}
._30{width:149.879680pt;}
._3d{width:173.817600pt;}
._2f{width:183.738240pt;}
._38{width:197.900160pt;}
._42{width:278.400000pt;}
._19{width:379.591680pt;}
._0{width:429.578667pt;}
._45{width:543.402667pt;}
._2{width:960.266667pt;}
._10{width:1371.258667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:3.200000pt;}
.yb7{bottom:3.360000pt;}
.yf0{bottom:3.386667pt;}
.yf3{bottom:20.000000pt;}
.yc6{bottom:20.160000pt;}
.yef{bottom:20.186667pt;}
.ye9{bottom:36.954667pt;}
.ye2{bottom:36.960000pt;}
.yc5{bottom:37.000000pt;}
.ycd{bottom:37.114667pt;}
.yd3{bottom:37.120000pt;}
.yee{bottom:37.146667pt;}
.y5{bottom:40.160000pt;}
.y32{bottom:40.800000pt;}
.yf2{bottom:53.760000pt;}
.yc4{bottom:53.800000pt;}
.ycc{bottom:53.914667pt;}
.yd2{bottom:53.920000pt;}
.ye1{bottom:53.946667pt;}
.y4{bottom:54.080000pt;}
.y31{bottom:54.880000pt;}
.y3{bottom:67.840000pt;}
.y30{bottom:68.640000pt;}
.ycb{bottom:70.714667pt;}
.yd1{bottom:70.720000pt;}
.ye0{bottom:70.746667pt;}
.yc3{bottom:70.760000pt;}
.y2{bottom:81.632000pt;}
.y2f{bottom:82.592000pt;}
.yc2{bottom:87.560000pt;}
.yca{bottom:87.674667pt;}
.yd0{bottom:87.680000pt;}
.ydf{bottom:87.706667pt;}
.y18d{bottom:96.832000pt;}
.y162{bottom:99.712000pt;}
.y171{bottom:100.672000pt;}
.y78{bottom:102.112000pt;}
.yc9{bottom:104.474667pt;}
.ycf{bottom:104.480000pt;}
.yde{bottom:104.506667pt;}
.y101{bottom:104.512000pt;}
.yc1{bottom:104.520000pt;}
.y57{bottom:105.632000pt;}
.ye8{bottom:107.072000pt;}
.y121{bottom:110.752000pt;}
.y151{bottom:111.872000pt;}
.y2c{bottom:113.152000pt;}
.y70{bottom:113.312000pt;}
.y96{bottom:113.632000pt;}
.y18c{bottom:115.232000pt;}
.yb5{bottom:116.032000pt;}
.y161{bottom:118.112000pt;}
.y143{bottom:119.712000pt;}
.y77{bottom:120.512000pt;}
.ydd{bottom:121.306667pt;}
.yc0{bottom:121.320000pt;}
.yc8{bottom:121.434667pt;}
.yed{bottom:121.466667pt;}
.ye7{bottom:121.480000pt;}
.y100{bottom:122.912000pt;}
.y12f{bottom:123.392000pt;}
.y56{bottom:124.032000pt;}
.y1a1{bottom:128.832000pt;}
.y120{bottom:129.152000pt;}
.y150{bottom:130.272000pt;}
.y170{bottom:130.592000pt;}
.y6f{bottom:131.712000pt;}
.y95{bottom:133.152000pt;}
.y18b{bottom:133.626667pt;}
.yb4{bottom:135.546667pt;}
.y2b{bottom:136.506667pt;}
.y142{bottom:138.106667pt;}
.ydc{bottom:138.266667pt;}
.ybf{bottom:138.280000pt;}
.y76{bottom:138.906667pt;}
.yff{bottom:141.306667pt;}
.y12e{bottom:141.626667pt;}
.y55{bottom:142.426667pt;}
.y1a0{bottom:147.226667pt;}
.y11f{bottom:147.546667pt;}
.y14f{bottom:148.666667pt;}
.y16f{bottom:148.826667pt;}
.y6e{bottom:150.106667pt;}
.y2a{bottom:151.226667pt;}
.y18a{bottom:152.026667pt;}
.y94{bottom:152.666667pt;}
.yb3{bottom:155.066667pt;}
.ybe{bottom:155.080000pt;}
.yec{bottom:155.226667pt;}
.y12d{bottom:155.386667pt;}
.y141{bottom:156.506667pt;}
.y75{bottom:157.306667pt;}
.ye3{bottom:158.266667pt;}
.yfe{bottom:159.706667pt;}
.y54{bottom:160.826667pt;}
.y19f{bottom:165.626667pt;}
.y29{bottom:165.786667pt;}
.y11e{bottom:165.946667pt;}
.y160{bottom:166.586667pt;}
.y14e{bottom:167.066667pt;}
.y6d{bottom:168.506667pt;}
.y189{bottom:170.426667pt;}
.y93{bottom:171.066667pt;}
.ybd{bottom:171.880000pt;}
.ydb{bottom:172.026667pt;}
.ye6{bottom:172.040000pt;}
.yb2{bottom:173.466667pt;}
.y140{bottom:174.906667pt;}
.y74{bottom:176.826667pt;}
.yfd{bottom:178.106667pt;}
.y53{bottom:179.226667pt;}
.y28{bottom:180.506667pt;}
.y19e{bottom:184.026667pt;}
.y15f{bottom:184.666667pt;}
.y14d{bottom:185.466667pt;}
.y6c{bottom:186.906667pt;}
.yda{bottom:188.826667pt;}
.ybc{bottom:188.840000pt;}
.y92{bottom:189.466667pt;}
.yb1{bottom:191.866667pt;}
.y16e{bottom:192.826667pt;}
.y13f{bottom:193.306667pt;}
.y10f{bottom:193.946667pt;}
.y27{bottom:195.066667pt;}
.y73{bottom:195.226667pt;}
.y11d{bottom:195.866667pt;}
.yfc{bottom:196.506667pt;}
.y173{bottom:196.666667pt;}
.y52{bottom:197.626667pt;}
.y19d{bottom:202.426667pt;}
.y15e{bottom:202.906667pt;}
.y14c{bottom:203.866667pt;}
.y6b{bottom:205.306667pt;}
.ybb{bottom:205.640000pt;}
.yd9{bottom:205.786667pt;}
.ye5{bottom:205.800000pt;}
.yeb{bottom:205.826667pt;}
.y188{bottom:207.226667pt;}
.y91{bottom:207.866667pt;}
.y11c{bottom:209.626667pt;}
.y26{bottom:209.786667pt;}
.yb0{bottom:210.266667pt;}
.y13e{bottom:211.706667pt;}
.y10e{bottom:212.346667pt;}
.y72{bottom:214.746667pt;}
.yfb{bottom:214.906667pt;}
.y51{bottom:216.026667pt;}
.y15d{bottom:216.666667pt;}
.y19c{bottom:220.826667pt;}
.y14b{bottom:222.266667pt;}
.yd8{bottom:222.586667pt;}
.ye4{bottom:222.600000pt;}
.yba{bottom:222.626667pt;}
.y6a{bottom:223.706667pt;}
.y25{bottom:224.346667pt;}
.y187{bottom:225.626667pt;}
.y90{bottom:226.266667pt;}
.yaf{bottom:228.666667pt;}
.y13d{bottom:230.106667pt;}
.y10d{bottom:230.746667pt;}
.y71{bottom:233.306667pt;}
.y50{bottom:234.426667pt;}
.y24{bottom:239.066667pt;}
.y19b{bottom:239.226667pt;}
.yd7{bottom:239.386667pt;}
.yb9{bottom:239.426667pt;}
.y14a{bottom:240.666667pt;}
.y172{bottom:240.826667pt;}
.yb8{bottom:241.306667pt;}
.y69{bottom:242.106667pt;}
.y186{bottom:244.026667pt;}
.y8f{bottom:244.666667pt;}
.yae{bottom:247.066667pt;}
.y13c{bottom:248.506667pt;}
.y10c{bottom:249.146667pt;}
.yfa{bottom:251.706667pt;}
.y4f{bottom:252.826667pt;}
.y23{bottom:253.786667pt;}
.yd6{bottom:256.386667pt;}
.y19a{bottom:257.626667pt;}
.y149{bottom:259.066667pt;}
.y68{bottom:260.506667pt;}
.y185{bottom:262.426667pt;}
.y8e{bottom:263.066667pt;}
.yad{bottom:265.506667pt;}
.y13b{bottom:266.946667pt;}
.y10b{bottom:267.586667pt;}
.yf9{bottom:270.146667pt;}
.y4e{bottom:271.266667pt;}
.yd5{bottom:273.186667pt;}
.y22{bottom:273.666667pt;}
.y199{bottom:276.066667pt;}
.y67{bottom:278.946667pt;}
.y184{bottom:280.866667pt;}
.y8d{bottom:281.506667pt;}
.yac{bottom:283.906667pt;}
.y13a{bottom:285.346667pt;}
.y10a{bottom:285.986667pt;}
.y21{bottom:288.386667pt;}
.yf8{bottom:288.546667pt;}
.y148{bottom:289.186667pt;}
.y4d{bottom:289.666667pt;}
.y198{bottom:294.466667pt;}
.y66{bottom:297.346667pt;}
.y183{bottom:299.266667pt;}
.y8c{bottom:299.906667pt;}
.yab{bottom:302.306667pt;}
.y20{bottom:303.106667pt;}
.y139{bottom:303.746667pt;}
.y109{bottom:304.386667pt;}
.yf7{bottom:306.946667pt;}
.y4c{bottom:308.066667pt;}
.y197{bottom:312.866667pt;}
.y147{bottom:314.946667pt;}
.y65{bottom:315.746667pt;}
.y1f{bottom:317.666667pt;}
.y8b{bottom:318.466667pt;}
.yaa{bottom:320.706667pt;}
.y138{bottom:322.146667pt;}
.y108{bottom:322.786667pt;}
.yf6{bottom:325.346667pt;}
.y4b{bottom:326.466667pt;}
.y196{bottom:331.266667pt;}
.y1e{bottom:332.386667pt;}
.y64{bottom:334.146667pt;}
.y182{bottom:336.066667pt;}
.y8a{bottom:337.986667pt;}
.ya9{bottom:339.106667pt;}
.y137{bottom:340.546667pt;}
.y107{bottom:341.186667pt;}
.y12c{bottom:342.946667pt;}
.yf5{bottom:343.586667pt;}
.y4a{bottom:344.866667pt;}
.y1d{bottom:346.946667pt;}
.y195{bottom:349.666667pt;}
.y63{bottom:352.386667pt;}
.y181{bottom:354.466667pt;}
.y89{bottom:357.506667pt;}
.y136{bottom:358.946667pt;}
.y106{bottom:359.586667pt;}
.y12b{bottom:361.346667pt;}
.y1c{bottom:361.666667pt;}
.yf4{bottom:361.986667pt;}
.y49{bottom:363.266667pt;}
.y194{bottom:368.066667pt;}
.y62{bottom:370.786667pt;}
.y180{bottom:372.866667pt;}
.y88{bottom:375.906667pt;}
.y1b{bottom:376.226667pt;}
.y135{bottom:377.346667pt;}
.yf1{bottom:377.666667pt;}
.y105{bottom:377.986667pt;}
.y16d{bottom:378.946667pt;}
.y12a{bottom:379.746667pt;}
.y48{bottom:381.666667pt;}
.y193{bottom:386.466667pt;}
.y61{bottom:389.186667pt;}
.y1a{bottom:390.946667pt;}
.y17f{bottom:391.266667pt;}
.y15c{bottom:392.226667pt;}
.ya8{bottom:394.306667pt;}
.yd4{bottom:395.106667pt;}
.y87{bottom:395.426667pt;}
.y134{bottom:395.746667pt;}
.y16c{bottom:397.346667pt;}
.y11b{bottom:397.986667pt;}
.y129{bottom:398.146667pt;}
.y47{bottom:400.066667pt;}
.y192{bottom:404.866667pt;}
.y19{bottom:405.506667pt;}
.y60{bottom:407.586667pt;}
.y104{bottom:408.066667pt;}
.y17e{bottom:409.666667pt;}
.y15b{bottom:410.626667pt;}
.ya7{bottom:412.706667pt;}
.y86{bottom:413.826667pt;}
.y133{bottom:414.146667pt;}
.y16b{bottom:415.746667pt;}
.y11a{bottom:416.386667pt;}
.y128{bottom:416.546667pt;}
.y46{bottom:418.466667pt;}
.y18{bottom:420.226667pt;}
.y191{bottom:423.266667pt;}
.y5f{bottom:425.986667pt;}
.y103{bottom:426.146667pt;}
.y17d{bottom:428.066667pt;}
.y15a{bottom:429.026667pt;}
.ya6{bottom:431.106667pt;}
.y85{bottom:432.226667pt;}
.y16a{bottom:434.146667pt;}
.y17{bottom:434.626667pt;}
.y119{bottom:434.786667pt;}
.y127{bottom:434.946667pt;}
.y45{bottom:436.866667pt;}
.y190{bottom:441.186667pt;}
.y132{bottom:444.066667pt;}
.y5e{bottom:444.226667pt;}
.yea{bottom:445.666667pt;}
.y17c{bottom:446.466667pt;}
.y159{bottom:447.426667pt;}
.ya5{bottom:449.533333pt;}
.y16{bottom:449.853333pt;}
.y84{bottom:450.653333pt;}
.y102{bottom:451.933333pt;}
.y169{bottom:452.573333pt;}
.y118{bottom:453.213333pt;}
.y126{bottom:453.373333pt;}
.y44{bottom:455.293333pt;}
.y18f{bottom:457.693333pt;}
.y5d{bottom:461.053333pt;}
.y131{bottom:462.333333pt;}
.y17b{bottom:464.893333pt;}
.y15{bottom:465.213333pt;}
.y158{bottom:465.853333pt;}
.ya4{bottom:467.933333pt;}
.y83{bottom:469.053333pt;}
.y168{bottom:470.973333pt;}
.y117{bottom:471.613333pt;}
.y125{bottom:471.773333pt;}
.y43{bottom:473.693333pt;}
.y18e{bottom:475.613333pt;}
.y130{bottom:476.093333pt;}
.y5c{bottom:478.013333pt;}
.y14{bottom:480.573333pt;}
.y17a{bottom:483.293333pt;}
.y157{bottom:484.253333pt;}
.ya3{bottom:486.333333pt;}
.y82{bottom:487.453333pt;}
.y167{bottom:489.373333pt;}
.y116{bottom:490.013333pt;}
.y42{bottom:492.093333pt;}
.y5b{bottom:494.813333pt;}
.yb6{bottom:494.973333pt;}
.y13{bottom:499.453333pt;}
.y124{bottom:501.693333pt;}
.y156{bottom:502.653333pt;}
.y81{bottom:505.853333pt;}
.y166{bottom:507.773333pt;}
.y115{bottom:508.413333pt;}
.y41{bottom:510.333333pt;}
.y5a{bottom:511.613333pt;}
.y12{bottom:514.813333pt;}
.y146{bottom:518.173333pt;}
.y123{bottom:519.933333pt;}
.y179{bottom:520.093333pt;}
.y155{bottom:521.053333pt;}
.y80{bottom:524.253333pt;}
.ya2{bottom:525.373333pt;}
.y114{bottom:526.813333pt;}
.y40{bottom:528.733333pt;}
.y11{bottom:530.173333pt;}
.y122{bottom:533.693333pt;}
.y145{bottom:536.253333pt;}
.y165{bottom:537.693333pt;}
.y7f{bottom:542.653333pt;}
.ya1{bottom:544.893333pt;}
.y113{bottom:545.213333pt;}
.y10{bottom:545.533333pt;}
.y3f{bottom:547.133333pt;}
.y144{bottom:550.013333pt;}
.y154{bottom:550.973333pt;}
.y164{bottom:555.933333pt;}
.y178{bottom:556.893333pt;}
.yf{bottom:560.733333pt;}
.y7e{bottom:561.053333pt;}
.ya0{bottom:563.293333pt;}
.y3e{bottom:565.533333pt;}
.y153{bottom:569.213333pt;}
.y112{bottom:575.133333pt;}
.y177{bottom:575.293333pt;}
.ye{bottom:576.093333pt;}
.y7d{bottom:580.573333pt;}
.y163{bottom:581.533333pt;}
.y9f{bottom:581.693333pt;}
.y3d{bottom:583.933333pt;}
.yd{bottom:592.093333pt;}
.y111{bottom:593.373333pt;}
.y152{bottom:594.973333pt;}
.y7c{bottom:600.093333pt;}
.y3c{bottom:602.333333pt;}
.y176{bottom:605.213333pt;}
.y110{bottom:607.133333pt;}
.y7b{bottom:618.493333pt;}
.y3b{bottom:620.733333pt;}
.y175{bottom:623.453333pt;}
.yc{bottom:624.733333pt;}
.y9e{bottom:636.933333pt;}
.y7a{bottom:638.053333pt;}
.y3a{bottom:639.173333pt;}
.y174{bottom:649.253333pt;}
.yb{bottom:650.853333pt;}
.y9d{bottom:655.333333pt;}
.y79{bottom:656.453333pt;}
.y39{bottom:657.573333pt;}
.y9c{bottom:673.733333pt;}
.y38{bottom:675.973333pt;}
.ya{bottom:676.933333pt;}
.yce{bottom:682.533333pt;}
.y9b{bottom:692.133333pt;}
.y37{bottom:694.373333pt;}
.y9{bottom:702.853333pt;}
.y9a{bottom:710.533333pt;}
.y36{bottom:712.773333pt;}
.y8{bottom:728.933333pt;}
.y35{bottom:731.173333pt;}
.y99{bottom:747.333333pt;}
.y59{bottom:749.573333pt;}
.y7{bottom:755.013333pt;}
.y98{bottom:766.853333pt;}
.y34{bottom:767.973333pt;}
.y6{bottom:781.093333pt;}
.y97{bottom:785.253333pt;}
.y33{bottom:786.373333pt;}
.y2e{bottom:814.853333pt;}
.y58{bottom:815.173333pt;}
.y1{bottom:821.440000pt;}
.y2d{bottom:832.800000pt;}
.he{height:16.960000pt;}
.h1a{height:36.726562pt;}
.h19{height:40.644063pt;}
.h3{height:47.109375pt;}
.h8{height:47.742188pt;}
.h7{height:49.148438pt;}
.h16{height:50.560000pt;}
.h6{height:52.134375pt;}
.h11{height:52.785000pt;}
.hb{height:57.375000pt;}
.h10{height:57.758750pt;}
.ha{height:57.787500pt;}
.h2{height:58.563750pt;}
.hd{height:62.781250pt;}
.h5{height:62.812500pt;}
.h9{height:64.500000pt;}
.hc{height:65.781915pt;}
.h18{height:67.360000pt;}
.h4{height:84.662813pt;}
.h13{height:118.080000pt;}
.h12{height:135.040000pt;}
.h15{height:236.186667pt;}
.h17{height:236.226667pt;}
.hf{height:253.026667pt;}
.h14{height:286.786667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:84.000000pt;}
.w6{width:121.792000pt;}
.w4{width:122.272000pt;}
.w5{width:141.146667pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x12{left:7.040000pt;}
.x11{left:8.160000pt;}
.x18{left:9.280000pt;}
.x17{left:10.400000pt;}
.x1c{left:11.680000pt;}
.xd{left:13.120000pt;}
.x9{left:14.240000pt;}
.x1b{left:15.520000pt;}
.x1f{left:16.640000pt;}
.x1e{left:17.760000pt;}
.x15{left:19.520000pt;}
.x1a{left:20.640000pt;}
.x19{left:22.240000pt;}
.x13{left:24.800000pt;}
.x16{left:25.920000pt;}
.xf{left:31.200000pt;}
.x1d{left:32.640000pt;}
.xb{left:34.400000pt;}
.x14{left:35.360000pt;}
.x10{left:42.080000pt;}
.x1{left:85.151990pt;}
.x3a{left:87.711990pt;}
.x21{left:88.991990pt;}
.x2b{left:90.111990pt;}
.x37{left:91.071990pt;}
.x34{left:95.391990pt;}
.x28{left:96.831990pt;}
.x3d{left:99.711990pt;}
.x2f{left:102.591990pt;}
.x40{left:104.031990pt;}
.x43{left:105.631990pt;}
.x7{left:109.151990pt;}
.x26{left:112.031990pt;}
.x4{left:113.471990pt;}
.x38{left:114.751990pt;}
.x5{left:117.631990pt;}
.x46{left:122.911990pt;}
.x2e{left:128.991990pt;}
.x3{left:129.951990pt;}
.x8{left:133.151990pt;}
.x6{left:141.626657pt;}
.x29{left:155.866657pt;}
.x32{left:163.706657pt;}
.xa{left:170.426667pt;}
.x3b{left:173.946657pt;}
.x2{left:233.666657pt;}
.x22{left:256.066657pt;}
.x35{left:258.306657pt;}
.x24{left:270.306657pt;}
.x3e{left:273.506657pt;}
.x2c{left:276.386657pt;}
.x30{left:281.666657pt;}
.xc{left:293.346667pt;}
.x44{left:297.026657pt;}
.x41{left:301.026657pt;}
.x45{left:321.346657pt;}
.xe{left:435.133333pt;}
.x3c{left:445.373324pt;}
.x36{left:449.693324pt;}
.x3f{left:458.333324pt;}
.x25{left:460.733324pt;}
.x2d{left:469.693324pt;}
.x31{left:472.413324pt;}
.x20{left:473.373324pt;}
.x23{left:482.013324pt;}
.x2a{left:482.973324pt;}
.x27{left:491.293324pt;}
.x33{left:512.453324pt;}
.x39{left:514.693324pt;}
.x42{left:557.573324pt;}
}




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