
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_23559b166adc9fbed1c706d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e9030b871b8ab66291eb4f9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0397437bc901b5cef87b8492.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28e85272af6566eaa7db8ce1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4718ed893fb7b401d5fd52be.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_b51ffa59177ed2da9e60c62c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_732db263539c923da533fd7a.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls20{letter-spacing:-0.373200px;}
.lsc{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.ls13{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls1c{letter-spacing:-0.066000px;}
.ls18{letter-spacing:-0.038880px;}
.ls1e{letter-spacing:-0.013320px;}
.ls1d{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.045360px;}
.ls14{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls22{letter-spacing:0.068400px;}
.ls1f{letter-spacing:0.069480px;}
.lse{letter-spacing:0.074160px;}
.ls17{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.098400px;}
.ls16{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.160800px;}
.lsd{letter-spacing:0.173400px;}
.ls1b{letter-spacing:0.173520px;}
.lsa{letter-spacing:0.174600px;}
.ls5{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.533400px;}
.ls24{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls4{letter-spacing:80.344800px;}
.ls23{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws7{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.387200px;}
.wsc{word-spacing:-13.369800px;}
.ws9{word-spacing:-13.324800px;}
.wsa{word-spacing:-13.300800px;}
.ws12{word-spacing:-13.294800px;}
.ws8{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wse{word-spacing:-13.218840px;}
.ws10{word-spacing:-13.213080px;}
.wsb{word-spacing:-13.187520px;}
.wsd{word-spacing:-13.160400px;}
.ws3{word-spacing:-13.039800px;}
.ws11{word-spacing:-12.853200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-3.731388px;}
._4{margin-left:-2.701212px;}
._0{margin-left:-1.110000px;}
._3{width:1.125263px;}
._d{width:2.238409px;}
._8{width:3.246600px;}
._7{width:4.449000px;}
._5{width:6.410520px;}
._e{width:7.898040px;}
._12{width:8.918640px;}
._c{width:9.919800px;}
._b{width:11.422800px;}
._a{width:14.789400px;}
._9{width:15.931800px;}
._f{width:17.030977px;}
._10{width:18.122207px;}
._45{width:19.599120px;}
._14{width:20.801520px;}
._15{width:22.158577px;}
._68{width:23.266440px;}
._18{width:24.288480px;}
._11{width:25.791480px;}
._29{width:27.775440px;}
._2{width:29.239548px;}
._1{width:30.369600px;}
._58{width:31.743360px;}
._1d{width:32.945760px;}
._17{width:34.828080px;}
._16{width:35.831520px;}
._28{width:37.454760px;}
._21{width:38.536920px;}
._69{width:39.558960px;}
._3c{width:40.701240px;}
._2d{width:41.723280px;}
._31{width:42.985800px;}
._59{width:45.029880px;}
._33{width:46.051920px;}
._65{width:47.134080px;}
._50{width:48.516840px;}
._2c{width:49.599000px;}
._5b{width:51.102000px;}
._13{width:52.304400px;}
._40{width:54.408600px;}
._6a{width:55.486320px;}
._4c{width:56.572920px;}
._51{width:57.594960px;}
._67{width:59.639040px;}
._38{width:62.080200px;}
._37{width:63.186120px;}
._42{width:64.629000px;}
._1f{width:66.612960px;}
._2f{width:68.296320px;}
._1a{width:69.859440px;}
._56{width:71.302320px;}
._2e{width:72.564840px;}
._24{width:73.647000px;}
._5d{width:76.893480px;}
._3d{width:78.697080px;}
._32{width:80.861400px;}
._36{width:82.304280px;}
._25{width:83.687040px;}
._54{width:86.813280px;}
._62{width:88.015680px;}
._34{width:90.841320px;}
._5a{width:92.665080px;}
._39{width:94.448520px;}
._3f{width:95.530680px;}
._30{width:96.973560px;}
._5c{width:99.258120px;}
._4b{width:100.280160px;}
._53{width:104.248080px;}
._44{width:105.330240px;}
._48{width:108.095760px;}
._3e{width:109.719000px;}
._27{width:111.041640px;}
._4a{width:112.664880px;}
._1c{width:116.871720px;}
._3b{width:120.179880px;}
._57{width:124.027560px;}
._41{width:130.099680px;}
._66{width:132.805080px;}
._43{width:133.887240px;}
._3a{width:138.456360px;}
._61{width:142.003440px;}
._52{width:143.807040px;}
._22{width:153.065520px;}
._46{width:156.432240px;}
._4e{width:160.760880px;}
._35{width:162.263880px;}
._26{width:164.027520px;}
._1e{width:165.690720px;}
._64{width:168.456240px;}
._20{width:173.145600px;}
._4d{width:174.287880px;}
._60{width:184.508280px;}
._2a{width:191.021400px;}
._2b{width:192.083400px;}
._23{width:193.526280px;}
._5f{width:197.313840px;}
._47{width:204.468120px;}
._49{width:214.748640px;}
._1b{width:219.137400px;}
._63{width:223.947000px;}
._4f{width:226.592280px;}
._5e{width:228.696480px;}
._19{width:235.009080px;}
._55{width:292.243320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:3.420000px;}
.y8a{bottom:7.830000px;}
.y8f{bottom:7.920000px;}
.ycb{bottom:20.970000px;}
.y89{bottom:25.380000px;}
.y8e{bottom:25.470000px;}
.yca{bottom:38.520000px;}
.y88{bottom:43.020000px;}
.y97{bottom:43.050000px;}
.y99{bottom:43.110000px;}
.yc9{bottom:56.160000px;}
.y92{bottom:60.570000px;}
.y96{bottom:60.600000px;}
.y8d{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y8c{bottom:78.210000px;}
.y95{bottom:78.240000px;}
.y91{bottom:95.760000px;}
.yb0{bottom:95.790000px;}
.y9c{bottom:95.850000px;}
.y1{bottom:101.640000px;}
.y156{bottom:111.720000px;}
.y136{bottom:112.980000px;}
.yb2{bottom:113.400000px;}
.yaf{bottom:113.430000px;}
.y58{bottom:114.330000px;}
.yab{bottom:115.140000px;}
.ye2{bottom:121.170000px;}
.yc8{bottom:121.440000px;}
.y155{bottom:129.360000px;}
.y135{bottom:130.530000px;}
.yae{bottom:130.980000px;}
.y57{bottom:131.880000px;}
.yf7{bottom:139.350000px;}
.y90{bottom:143.850000px;}
.y154{bottom:146.910000px;}
.y134{bottom:148.170000px;}
.y56{bottom:150.330000px;}
.y1a4{bottom:151.320000px;}
.y17d{bottom:155.910000px;}
.y27{bottom:160.320000px;}
.y133{bottom:165.720000px;}
.y55{bottom:167.880000px;}
.y1a3{bottom:168.870000px;}
.y17c{bottom:173.460000px;}
.y153{bottom:173.820000px;}
.yf6{bottom:174.180000px;}
.yaa{bottom:177.600000px;}
.y26{bottom:177.870000px;}
.y105{bottom:179.760000px;}
.y132{bottom:183.270000px;}
.ye1{bottom:183.720000px;}
.y54{bottom:186.330000px;}
.yf5{bottom:188.220000px;}
.y25{bottom:195.510000px;}
.yc7{bottom:197.040000px;}
.y104{bottom:197.400000px;}
.y17b{bottom:200.100000px;}
.y131{bottom:200.910000px;}
.y53{bottom:203.880000px;}
.y152{bottom:210.810000px;}
.y24{bottom:213.060000px;}
.y103{bottom:214.950000px;}
.yf4{bottom:217.650000px;}
.ye0{bottom:228.630000px;}
.y1a2{bottom:230.610000px;}
.y23{bottom:230.700000px;}
.y52{bottom:231.600000px;}
.y102{bottom:232.500000px;}
.y130{bottom:236.460000px;}
.y151{bottom:237.720000px;}
.y17a{bottom:244.200000px;}
.y22{bottom:248.250000px;}
.y101{bottom:250.140000px;}
.y12f{bottom:254.100000px;}
.y1a1{bottom:257.250000px;}
.y8b{bottom:259.050000px;}
.ya9{bottom:261.480000px;}
.y179{bottom:261.840000px;}
.y21{bottom:265.800000px;}
.y100{bottom:267.690000px;}
.y51{bottom:268.680000px;}
.y12e{bottom:271.650000px;}
.y150{bottom:274.800000px;}
.ya8{bottom:279.030000px;}
.y178{bottom:279.390000px;}
.yc6{bottom:280.920000px;}
.y20{bottom:283.440000px;}
.yff{bottom:285.330000px;}
.y50{bottom:286.230000px;}
.y12d{bottom:289.200000px;}
.yc5{bottom:298.470000px;}
.y1a0{bottom:301.440000px;}
.y14f{bottom:301.710000px;}
.yfe{bottom:302.880000px;}
.y4f{bottom:303.780000px;}
.y177{bottom:305.940000px;}
.y12c{bottom:306.840000px;}
.ydf{bottom:308.730000px;}
.ya7{bottom:314.670000px;}
.y1f{bottom:318.990000px;}
.yfd{bottom:320.430000px;}
.y4e{bottom:321.420000px;}
.y176{bottom:323.580000px;}
.y12b{bottom:324.390000px;}
.ya6{bottom:332.220000px;}
.yc4{bottom:334.110000px;}
.y1e{bottom:336.630000px;}
.y14e{bottom:338.700000px;}
.y4d{bottom:338.970000px;}
.y7b{bottom:342.300000px;}
.y19f{bottom:345.540000px;}
.ya5{bottom:349.860000px;}
.y175{bottom:350.130000px;}
.yc3{bottom:351.660000px;}
.y1d{bottom:354.180000px;}
.yfc{bottom:356.070000px;}
.y14d{bottom:356.250000px;}
.y87{bottom:356.790000px;}
.y7a{bottom:359.850000px;}
.y12a{bottom:359.940000px;}
.y19e{bottom:363.180000px;}
.ya4{bottom:367.410000px;}
.y174{bottom:367.770000px;}
.yc2{bottom:369.300000px;}
.yde{bottom:371.190000px;}
.y1c{bottom:371.730000px;}
.y4c{bottom:374.610000px;}
.y79{bottom:377.490000px;}
.y129{bottom:377.580000px;}
.y14c{bottom:383.160000px;}
.ya3{bottom:384.960000px;}
.yc1{bottom:386.850000px;}
.yfb{bottom:388.290000px;}
.y1b{bottom:389.370000px;}
.y19d{bottom:389.730000px;}
.y4b{bottom:392.160000px;}
.y173{bottom:394.320000px;}
.y78{bottom:395.040000px;}
.y128{bottom:395.130000px;}
.ya2{bottom:402.600000px;}
.yc0{bottom:404.400000px;}
.y19c{bottom:407.370000px;}
.y4a{bottom:409.710000px;}
.y172{bottom:411.870000px;}
.y77{bottom:412.590000px;}
.y127{bottom:412.770000px;}
.ya1{bottom:420.150000px;}
.y14b{bottom:420.240000px;}
.ybf{bottom:422.040000px;}
.y1a{bottom:424.920000px;}
.y171{bottom:429.510000px;}
.y126{bottom:430.320000px;}
.y19b{bottom:433.920000px;}
.ya0{bottom:437.790000px;}
.y76{bottom:439.230000px;}
.ybe{bottom:439.590000px;}
.y86{bottom:440.670000px;}
.y19{bottom:442.470000px;}
.y49{bottom:445.350000px;}
.y14a{bottom:447.150000px;}
.y125{bottom:447.870000px;}
.y19a{bottom:451.470000px;}
.ydd{bottom:455.070000px;}
.y9f{bottom:455.340000px;}
.y170{bottom:456.060000px;}
.ybd{bottom:457.230000px;}
.y85{bottom:458.220000px;}
.y18{bottom:460.920000px;}
.y48{bottom:462.900000px;}
.ydc{bottom:472.740000px;}
.y16f{bottom:473.730000px;}
.y75{bottom:474.810000px;}
.y199{bottom:478.140000px;}
.y17{bottom:479.400000px;}
.y47{bottom:480.480000px;}
.y124{bottom:483.540000px;}
.y149{bottom:484.530000px;}
.y9e{bottom:488.310000px;}
.y16e{bottom:491.280000px;}
.y74{bottom:492.450000px;}
.ybc{bottom:492.810000px;}
.y84{bottom:493.800000px;}
.y198{bottom:495.690000px;}
.y16{bottom:496.950000px;}
.y46{bottom:498.120000px;}
.y123{bottom:501.090000px;}
.ydb{bottom:508.290000px;}
.y73{bottom:510.000000px;}
.ybb{bottom:510.360000px;}
.y83{bottom:511.440000px;}
.y197{bottom:513.330000px;}
.y15{bottom:514.500000px;}
.y16d{bottom:517.830000px;}
.y122{bottom:518.730000px;}
.yda{bottom:525.930000px;}
.yba{bottom:528.810000px;}
.y82{bottom:528.990000px;}
.y148{bottom:532.770000px;}
.y45{bottom:533.670000px;}
.y16c{bottom:535.470000px;}
.y121{bottom:536.280000px;}
.y72{bottom:536.550000px;}
.y196{bottom:539.880000px;}
.yd9{bottom:543.480000px;}
.yb9{bottom:546.360000px;}
.y81{bottom:546.540000px;}
.y147{bottom:550.320000px;}
.y14{bottom:550.950000px;}
.y44{bottom:551.310000px;}
.y16b{bottom:553.020000px;}
.y120{bottom:553.830000px;}
.y195{bottom:557.430000px;}
.yd8{bottom:561.030000px;}
.yb8{bottom:564.810000px;}
.y146{bottom:567.960000px;}
.y43{bottom:568.860000px;}
.y71{bottom:572.190000px;}
.y80{bottom:573.450000px;}
.yd7{bottom:578.670000px;}
.y16a{bottom:579.660000px;}
.yb7{bottom:583.170000px;}
.y194{bottom:584.070000px;}
.y145{bottom:585.510000px;}
.y9d{bottom:586.050000px;}
.y13{bottom:586.590000px;}
.y11f{bottom:589.470000px;}
.y70{bottom:589.740000px;}
.yd6{bottom:596.220000px;}
.y169{bottom:597.210000px;}
.yb6{bottom:601.620000px;}
.y144{bottom:603.150000px;}
.y12{bottom:604.140000px;}
.y42{bottom:604.410000px;}
.y11e{bottom:607.020000px;}
.y6f{bottom:607.380000px;}
.yd5{bottom:613.860000px;}
.yb5{bottom:619.170000px;}
.y143{bottom:620.700000px;}
.y11{bottom:621.690000px;}
.y7f{bottom:621.780000px;}
.y41{bottom:622.050000px;}
.y168{bottom:623.760000px;}
.y11d{bottom:624.660000px;}
.y6e{bottom:624.930000px;}
.y193{bottom:628.260000px;}
.yd4{bottom:631.410000px;}
.y142{bottom:638.250000px;}
.y10{bottom:639.330000px;}
.y40{bottom:639.600000px;}
.y167{bottom:641.400000px;}
.y11c{bottom:642.210000px;}
.y192{bottom:645.810000px;}
.y6d{bottom:651.480000px;}
.yb4{bottom:653.010000px;}
.y1b9{bottom:654.360000px;}
.yf{bottom:656.880000px;}
.y7e{bottom:656.970000px;}
.y11b{bottom:659.760000px;}
.yf3{bottom:662.100000px;}
.y191{bottom:663.360000px;}
.y141{bottom:665.160000px;}
.y9b{bottom:666.060000px;}
.yd3{bottom:666.240000px;}
.y166{bottom:667.950000px;}
.y1b8{bottom:672.000000px;}
.y3f{bottom:675.240000px;}
.y11a{bottom:677.400000px;}
.yd2{bottom:678.480000px;}
.yf2{bottom:679.650000px;}
.ye{bottom:683.790000px;}
.y165{bottom:685.590000px;}
.y6c{bottom:687.030000px;}
.y190{bottom:690.000000px;}
.y7d{bottom:692.520000px;}
.y3e{bottom:692.790000px;}
.y119{bottom:694.950000px;}
.yf1{bottom:697.200000px;}
.y1b7{bottom:698.550000px;}
.y140{bottom:702.240000px;}
.y164{bottom:703.140000px;}
.y6b{bottom:705.480000px;}
.y18f{bottom:707.550000px;}
.y3d{bottom:710.340000px;}
.yf0{bottom:714.840000px;}
.y1b6{bottom:716.190000px;}
.y13f{bottom:719.790000px;}
.y6a{bottom:723.930000px;}
.y7c{bottom:724.740000px;}
.y3c{bottom:727.980000px;}
.y163{bottom:729.690000px;}
.y118{bottom:730.590000px;}
.yd{bottom:732.030000px;}
.yef{bottom:732.390000px;}
.yb3{bottom:733.110000px;}
.y18e{bottom:734.190000px;}
.y13e{bottom:737.340000px;}
.y69{bottom:742.290000px;}
.y1b5{bottom:742.740000px;}
.y3b{bottom:745.530000px;}
.y162{bottom:747.330000px;}
.y117{bottom:748.140000px;}
.yee{bottom:750.030000px;}
.y18d{bottom:751.740000px;}
.y13d{bottom:754.980000px;}
.yd1{bottom:758.490000px;}
.y1b4{bottom:760.290000px;}
.y3a{bottom:763.170000px;}
.y161{bottom:764.880000px;}
.y116{bottom:765.690000px;}
.yed{bottom:767.580000px;}
.yc{bottom:767.850000px;}
.y68{bottom:769.740000px;}
.y13c{bottom:772.530000px;}
.y18c{bottom:778.290000px;}
.y39{bottom:780.720000px;}
.y9a{bottom:781.350000px;}
.y115{bottom:783.330000px;}
.yec{bottom:785.130000px;}
.y1b3{bottom:786.930000px;}
.y13b{bottom:790.170000px;}
.y160{bottom:791.520000px;}
.y18b{bottom:795.930000px;}
.y114{bottom:800.880000px;}
.yeb{bottom:802.770000px;}
.yb{bottom:803.850000px;}
.y1b2{bottom:804.480000px;}
.y67{bottom:805.290000px;}
.y13a{bottom:807.720000px;}
.y15f{bottom:809.070000px;}
.yb1{bottom:813.210000px;}
.y38{bottom:816.270000px;}
.y113{bottom:818.520000px;}
.yea{bottom:820.320000px;}
.y18a{bottom:822.480000px;}
.y66{bottom:823.740000px;}
.y139{bottom:825.270000px;}
.y1b1{bottom:831.030000px;}
.y37{bottom:833.910000px;}
.y15e{bottom:835.620000px;}
.y112{bottom:836.070000px;}
.y189{bottom:840.030000px;}
.y65{bottom:842.190000px;}
.ya{bottom:843.630000px;}
.y1b0{bottom:848.670000px;}
.y36{bottom:851.460000px;}
.y138{bottom:852.180000px;}
.y15d{bottom:853.260000px;}
.ye9{bottom:855.240000px;}
.yd0{bottom:856.230000px;}
.y188{bottom:857.670000px;}
.y64{bottom:859.740000px;}
.y9{bottom:861.630000px;}
.ye8{bottom:867.390000px;}
.y35{bottom:869.100000px;}
.y111{bottom:871.620000px;}
.y1af{bottom:875.220000px;}
.y63{bottom:878.190000px;}
.y98{bottom:879.000000px;}
.y8{bottom:879.630000px;}
.y15c{bottom:879.810000px;}
.y187{bottom:884.220000px;}
.y110{bottom:889.260000px;}
.y1ae{bottom:892.860000px;}
.y62{bottom:895.740000px;}
.y15b{bottom:897.450000px;}
.y7{bottom:897.630000px;}
.y186{bottom:901.860000px;}
.y34{bottom:904.650000px;}
.y10f{bottom:906.810000px;}
.ye7{bottom:912.300000px;}
.y61{bottom:914.100000px;}
.y15a{bottom:915.000000px;}
.y1ad{bottom:919.410000px;}
.y33{bottom:922.200000px;}
.y10e{bottom:924.450000px;}
.y185{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.ycf{bottom:936.330000px;}
.y1ac{bottom:936.960000px;}
.y32{bottom:939.840000px;}
.y60{bottom:941.550000px;}
.y10d{bottom:942.000000px;}
.y184{bottom:945.960000px;}
.yad{bottom:946.050000px;}
.y5{bottom:949.290000px;}
.y159{bottom:959.190000px;}
.y10c{bottom:959.550000px;}
.y1ab{bottom:963.600000px;}
.y31{bottom:966.750000px;}
.y183{bottom:972.600000px;}
.ye6{bottom:974.850000px;}
.y94{bottom:976.740000px;}
.y5f{bottom:977.190000px;}
.y1aa{bottom:981.150000px;}
.y158{bottom:985.740000px;}
.y4{bottom:987.630000px;}
.y182{bottom:990.150000px;}
.y5e{bottom:994.740000px;}
.y157{bottom:1003.290000px;}
.y1a9{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y10b{bottom:1012.770000px;}
.y30{bottom:1015.020000px;}
.y181{bottom:1016.820000px;}
.yfa{bottom:1017.180000px;}
.ye5{bottom:1019.790000px;}
.y137{bottom:1021.680000px;}
.y1a8{bottom:1025.370000px;}
.y5d{bottom:1029.960000px;}
.y10a{bottom:1030.320000px;}
.y2f{bottom:1032.930000px;}
.yce{bottom:1034.010000px;}
.y180{bottom:1034.370000px;}
.yf9{bottom:1034.820000px;}
.y5c{bottom:1047.510000px;}
.y109{bottom:1047.960000px;}
.y1a7{bottom:1051.920000px;}
.yf8{bottom:1052.370000px;}
.y17f{bottom:1060.920000px;}
.ye4{bottom:1064.700000px;}
.y5b{bottom:1065.150000px;}
.y108{bottom:1065.510000px;}
.y1a6{bottom:1069.560000px;}
.y2e{bottom:1069.920000px;}
.y93{bottom:1074.420000px;}
.y17e{bottom:1078.560000px;}
.y107{bottom:1083.150000px;}
.y2d{bottom:1087.560000px;}
.y5a{bottom:1091.700000px;}
.y1a5{bottom:1096.110000px;}
.yac{bottom:1096.470000px;}
.y106{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.ye3{bottom:1109.610000px;}
.ycd{bottom:1114.110000px;}
.y2b{bottom:1122.750000px;}
.y59{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h19{height:39.690000px;}
.h1a{height:41.661211px;}
.h1d{height:44.100000px;}
.h1e{height:44.130000px;}
.h1c{height:44.190000px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h15{height:57.330000px;}
.h9{height:60.960938px;}
.hd{height:61.740000px;}
.hb{height:61.793886px;}
.h1b{height:61.830000px;}
.hc{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h18{height:74.880000px;}
.h14{height:79.290000px;}
.h11{height:79.380000px;}
.hf{height:96.930000px;}
.h12{height:96.960000px;}
.h10{height:114.480000px;}
.h13{height:114.570000px;}
.h17{height:132.120000px;}
.h16{height:149.700000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w18{width:74.970000px;}
.wd{width:90.360000px;}
.w11{width:91.890000px;}
.w1a{width:106.020000px;}
.w10{width:107.820000px;}
.w3{width:110.190000px;}
.wf{width:112.800000px;}
.w19{width:114.480000px;}
.w9{width:115.860000px;}
.wc{width:118.830000px;}
.w16{width:122.130000px;}
.wb{width:123.930000px;}
.w5{width:124.200000px;}
.w12{width:125.310000px;}
.w8{width:126.000000px;}
.w4{width:127.260000px;}
.w7{width:130.230000px;}
.w6{width:134.130000px;}
.we{width:137.430000px;}
.w13{width:153.720000px;}
.w15{width:155.550000px;}
.w14{width:160.470000px;}
.wa{width:165.510000px;}
.w17{width:178.860000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:68.040000px;}
.x20{left:90.809987px;}
.x2{left:95.040000px;}
.x18{left:102.239987px;}
.x24{left:111.239987px;}
.x22{left:120.059987px;}
.x3{left:122.040000px;}
.x23{left:149.579987px;}
.x9{left:179.670000px;}
.x13{left:182.280000px;}
.xe{left:185.340000px;}
.x7{left:199.739987px;}
.x4{left:202.799987px;}
.x19{left:225.030000px;}
.x14{left:290.820000px;}
.xa{left:307.650000px;}
.x1e{left:331.229987px;}
.x1a{left:347.880000px;}
.xf{left:351.570000px;}
.x21{left:357.419987px;}
.x15{left:383.430000px;}
.xb{left:432.660000px;}
.x10{left:476.310000px;}
.x16{left:509.460000px;}
.x1b{left:527.460000px;}
.xc{left:567.510000px;}
.x6{left:589.739987px;}
.x11{left:595.860000px;}
.x1c{left:603.150000px;}
.x17{left:663.990000px;}
.x12{left:687.030000px;}
.xd{left:698.460000px;}
.x1d{left:718.440000px;}
.x5{left:792.059987px;}
.x1f{left:799.889987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls20{letter-spacing:-0.331733pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls13{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls1c{letter-spacing:-0.058667pt;}
.ls18{letter-spacing:-0.034560pt;}
.ls1e{letter-spacing:-0.011840pt;}
.ls1d{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.040320pt;}
.ls14{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls22{letter-spacing:0.060800pt;}
.ls1f{letter-spacing:0.061760pt;}
.lse{letter-spacing:0.065920pt;}
.ls17{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.087467pt;}
.ls16{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.142933pt;}
.lsd{letter-spacing:0.154133pt;}
.ls1b{letter-spacing:0.154240pt;}
.lsa{letter-spacing:0.155200pt;}
.ls5{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.474133pt;}
.ls24{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls4{letter-spacing:71.417600pt;}
.ls23{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.899733pt;}
.wsc{word-spacing:-11.884267pt;}
.ws9{word-spacing:-11.844267pt;}
.wsa{word-spacing:-11.822933pt;}
.ws12{word-spacing:-11.817600pt;}
.ws8{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wse{word-spacing:-11.750080pt;}
.ws10{word-spacing:-11.744960pt;}
.wsb{word-spacing:-11.722240pt;}
.wsd{word-spacing:-11.698133pt;}
.ws3{word-spacing:-11.590933pt;}
.ws11{word-spacing:-11.425067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-3.316789pt;}
._4{margin-left:-2.401077pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.000234pt;}
._d{width:1.989697pt;}
._8{width:2.885867pt;}
._7{width:3.954667pt;}
._5{width:5.698240pt;}
._e{width:7.020480pt;}
._12{width:7.927680pt;}
._c{width:8.817600pt;}
._b{width:10.153600pt;}
._a{width:13.146133pt;}
._9{width:14.161600pt;}
._f{width:15.138646pt;}
._10{width:16.108628pt;}
._45{width:17.421440pt;}
._14{width:18.490240pt;}
._15{width:19.696513pt;}
._68{width:20.681280pt;}
._18{width:21.589760pt;}
._11{width:22.925760pt;}
._29{width:24.689280pt;}
._2{width:25.990710pt;}
._1{width:26.995200pt;}
._58{width:28.216320pt;}
._1d{width:29.285120pt;}
._17{width:30.958293pt;}
._16{width:31.850240pt;}
._28{width:33.293120pt;}
._21{width:34.255040pt;}
._69{width:35.163520pt;}
._3c{width:36.178880pt;}
._2d{width:37.087360pt;}
._31{width:38.209600pt;}
._59{width:40.026560pt;}
._33{width:40.935040pt;}
._65{width:41.896960pt;}
._50{width:43.126080pt;}
._2c{width:44.088000pt;}
._5b{width:45.424000pt;}
._13{width:46.492800pt;}
._40{width:48.363200pt;}
._6a{width:49.321173pt;}
._4c{width:50.287040pt;}
._51{width:51.195520pt;}
._67{width:53.012480pt;}
._38{width:55.182400pt;}
._37{width:56.165440pt;}
._42{width:57.448000pt;}
._1f{width:59.211520pt;}
._2f{width:60.707840pt;}
._1a{width:62.097280pt;}
._56{width:63.379840pt;}
._2e{width:64.502080pt;}
._24{width:65.464000pt;}
._5d{width:68.349760pt;}
._3d{width:69.952960pt;}
._32{width:71.876800pt;}
._36{width:73.159360pt;}
._25{width:74.388480pt;}
._54{width:77.167360pt;}
._62{width:78.236160pt;}
._34{width:80.747840pt;}
._5a{width:82.368960pt;}
._39{width:83.954240pt;}
._3f{width:84.916160pt;}
._30{width:86.198720pt;}
._5c{width:88.229440pt;}
._4b{width:89.137920pt;}
._53{width:92.664960pt;}
._44{width:93.626880pt;}
._48{width:96.085120pt;}
._3e{width:97.528000pt;}
._27{width:98.703680pt;}
._4a{width:100.146560pt;}
._1c{width:103.885973pt;}
._3b{width:106.826560pt;}
._57{width:110.246720pt;}
._41{width:115.644160pt;}
._66{width:118.048960pt;}
._43{width:119.010880pt;}
._3a{width:123.072320pt;}
._61{width:126.225280pt;}
._52{width:127.828480pt;}
._22{width:136.058240pt;}
._46{width:139.050880pt;}
._4e{width:142.898560pt;}
._35{width:144.234560pt;}
._26{width:145.802240pt;}
._1e{width:147.280640pt;}
._64{width:149.738880pt;}
._20{width:153.907200pt;}
._4d{width:154.922560pt;}
._60{width:164.007360pt;}
._2a{width:169.796800pt;}
._2b{width:170.740800pt;}
._23{width:172.023360pt;}
._5f{width:175.390080pt;}
._47{width:181.749440pt;}
._49{width:190.887680pt;}
._1b{width:194.788800pt;}
._63{width:199.064000pt;}
._4f{width:201.415360pt;}
._5e{width:203.285760pt;}
._19{width:208.896960pt;}
._55{width:259.771840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:3.040000pt;}
.y8a{bottom:6.960000pt;}
.y8f{bottom:7.040000pt;}
.ycb{bottom:18.640000pt;}
.y89{bottom:22.560000pt;}
.y8e{bottom:22.640000pt;}
.yca{bottom:34.240000pt;}
.y88{bottom:38.240000pt;}
.y97{bottom:38.266667pt;}
.y99{bottom:38.320000pt;}
.yc9{bottom:49.920000pt;}
.y92{bottom:53.840000pt;}
.y96{bottom:53.866667pt;}
.y8d{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y8c{bottom:69.520000pt;}
.y95{bottom:69.546667pt;}
.y91{bottom:85.120000pt;}
.yb0{bottom:85.146667pt;}
.y9c{bottom:85.200000pt;}
.y1{bottom:90.346667pt;}
.y156{bottom:99.306667pt;}
.y136{bottom:100.426667pt;}
.yb2{bottom:100.800000pt;}
.yaf{bottom:100.826667pt;}
.y58{bottom:101.626667pt;}
.yab{bottom:102.346667pt;}
.ye2{bottom:107.706667pt;}
.yc8{bottom:107.946667pt;}
.y155{bottom:114.986667pt;}
.y135{bottom:116.026667pt;}
.yae{bottom:116.426667pt;}
.y57{bottom:117.226667pt;}
.yf7{bottom:123.866667pt;}
.y90{bottom:127.866667pt;}
.y154{bottom:130.586667pt;}
.y134{bottom:131.706667pt;}
.y56{bottom:133.626667pt;}
.y1a4{bottom:134.506667pt;}
.y17d{bottom:138.586667pt;}
.y27{bottom:142.506667pt;}
.y133{bottom:147.306667pt;}
.y55{bottom:149.226667pt;}
.y1a3{bottom:150.106667pt;}
.y17c{bottom:154.186667pt;}
.y153{bottom:154.506667pt;}
.yf6{bottom:154.826667pt;}
.yaa{bottom:157.866667pt;}
.y26{bottom:158.106667pt;}
.y105{bottom:159.786667pt;}
.y132{bottom:162.906667pt;}
.ye1{bottom:163.306667pt;}
.y54{bottom:165.626667pt;}
.yf5{bottom:167.306667pt;}
.y25{bottom:173.786667pt;}
.yc7{bottom:175.146667pt;}
.y104{bottom:175.466667pt;}
.y17b{bottom:177.866667pt;}
.y131{bottom:178.586667pt;}
.y53{bottom:181.226667pt;}
.y152{bottom:187.386667pt;}
.y24{bottom:189.386667pt;}
.y103{bottom:191.066667pt;}
.yf4{bottom:193.466667pt;}
.ye0{bottom:203.226667pt;}
.y1a2{bottom:204.986667pt;}
.y23{bottom:205.066667pt;}
.y52{bottom:205.866667pt;}
.y102{bottom:206.666667pt;}
.y130{bottom:210.186667pt;}
.y151{bottom:211.306667pt;}
.y17a{bottom:217.066667pt;}
.y22{bottom:220.666667pt;}
.y101{bottom:222.346667pt;}
.y12f{bottom:225.866667pt;}
.y1a1{bottom:228.666667pt;}
.y8b{bottom:230.266667pt;}
.ya9{bottom:232.426667pt;}
.y179{bottom:232.746667pt;}
.y21{bottom:236.266667pt;}
.y100{bottom:237.946667pt;}
.y51{bottom:238.826667pt;}
.y12e{bottom:241.466667pt;}
.y150{bottom:244.266667pt;}
.ya8{bottom:248.026667pt;}
.y178{bottom:248.346667pt;}
.yc6{bottom:249.706667pt;}
.y20{bottom:251.946667pt;}
.yff{bottom:253.626667pt;}
.y50{bottom:254.426667pt;}
.y12d{bottom:257.066667pt;}
.yc5{bottom:265.306667pt;}
.y1a0{bottom:267.946667pt;}
.y14f{bottom:268.186667pt;}
.yfe{bottom:269.226667pt;}
.y4f{bottom:270.026667pt;}
.y177{bottom:271.946667pt;}
.y12c{bottom:272.746667pt;}
.ydf{bottom:274.426667pt;}
.ya7{bottom:279.706667pt;}
.y1f{bottom:283.546667pt;}
.yfd{bottom:284.826667pt;}
.y4e{bottom:285.706667pt;}
.y176{bottom:287.626667pt;}
.y12b{bottom:288.346667pt;}
.ya6{bottom:295.306667pt;}
.yc4{bottom:296.986667pt;}
.y1e{bottom:299.226667pt;}
.y14e{bottom:301.066667pt;}
.y4d{bottom:301.306667pt;}
.y7b{bottom:304.266667pt;}
.y19f{bottom:307.146667pt;}
.ya5{bottom:310.986667pt;}
.y175{bottom:311.226667pt;}
.yc3{bottom:312.586667pt;}
.y1d{bottom:314.826667pt;}
.yfc{bottom:316.506667pt;}
.y14d{bottom:316.666667pt;}
.y87{bottom:317.146667pt;}
.y7a{bottom:319.866667pt;}
.y12a{bottom:319.946667pt;}
.y19e{bottom:322.826667pt;}
.ya4{bottom:326.586667pt;}
.y174{bottom:326.906667pt;}
.yc2{bottom:328.266667pt;}
.yde{bottom:329.946667pt;}
.y1c{bottom:330.426667pt;}
.y4c{bottom:332.986667pt;}
.y79{bottom:335.546667pt;}
.y129{bottom:335.626667pt;}
.y14c{bottom:340.586667pt;}
.ya3{bottom:342.186667pt;}
.yc1{bottom:343.866667pt;}
.yfb{bottom:345.146667pt;}
.y1b{bottom:346.106667pt;}
.y19d{bottom:346.426667pt;}
.y4b{bottom:348.586667pt;}
.y173{bottom:350.506667pt;}
.y78{bottom:351.146667pt;}
.y128{bottom:351.226667pt;}
.ya2{bottom:357.866667pt;}
.yc0{bottom:359.466667pt;}
.y19c{bottom:362.106667pt;}
.y4a{bottom:364.186667pt;}
.y172{bottom:366.106667pt;}
.y77{bottom:366.746667pt;}
.y127{bottom:366.906667pt;}
.ya1{bottom:373.466667pt;}
.y14b{bottom:373.546667pt;}
.ybf{bottom:375.146667pt;}
.y1a{bottom:377.706667pt;}
.y171{bottom:381.786667pt;}
.y126{bottom:382.506667pt;}
.y19b{bottom:385.706667pt;}
.ya0{bottom:389.146667pt;}
.y76{bottom:390.426667pt;}
.ybe{bottom:390.746667pt;}
.y86{bottom:391.706667pt;}
.y19{bottom:393.306667pt;}
.y49{bottom:395.866667pt;}
.y14a{bottom:397.466667pt;}
.y125{bottom:398.106667pt;}
.y19a{bottom:401.306667pt;}
.ydd{bottom:404.506667pt;}
.y9f{bottom:404.746667pt;}
.y170{bottom:405.386667pt;}
.ybd{bottom:406.426667pt;}
.y85{bottom:407.306667pt;}
.y18{bottom:409.706667pt;}
.y48{bottom:411.466667pt;}
.ydc{bottom:420.213333pt;}
.y16f{bottom:421.093333pt;}
.y75{bottom:422.053333pt;}
.y199{bottom:425.013333pt;}
.y17{bottom:426.133333pt;}
.y47{bottom:427.093333pt;}
.y124{bottom:429.813333pt;}
.y149{bottom:430.693333pt;}
.y9e{bottom:434.053333pt;}
.y16e{bottom:436.693333pt;}
.y74{bottom:437.733333pt;}
.ybc{bottom:438.053333pt;}
.y84{bottom:438.933333pt;}
.y198{bottom:440.613333pt;}
.y16{bottom:441.733333pt;}
.y46{bottom:442.773333pt;}
.y123{bottom:445.413333pt;}
.ydb{bottom:451.813333pt;}
.y73{bottom:453.333333pt;}
.ybb{bottom:453.653333pt;}
.y83{bottom:454.613333pt;}
.y197{bottom:456.293333pt;}
.y15{bottom:457.333333pt;}
.y16d{bottom:460.293333pt;}
.y122{bottom:461.093333pt;}
.yda{bottom:467.493333pt;}
.yba{bottom:470.053333pt;}
.y82{bottom:470.213333pt;}
.y148{bottom:473.573333pt;}
.y45{bottom:474.373333pt;}
.y16c{bottom:475.973333pt;}
.y121{bottom:476.693333pt;}
.y72{bottom:476.933333pt;}
.y196{bottom:479.893333pt;}
.yd9{bottom:483.093333pt;}
.yb9{bottom:485.653333pt;}
.y81{bottom:485.813333pt;}
.y147{bottom:489.173333pt;}
.y14{bottom:489.733333pt;}
.y44{bottom:490.053333pt;}
.y16b{bottom:491.573333pt;}
.y120{bottom:492.293333pt;}
.y195{bottom:495.493333pt;}
.yd8{bottom:498.693333pt;}
.yb8{bottom:502.053333pt;}
.y146{bottom:504.853333pt;}
.y43{bottom:505.653333pt;}
.y71{bottom:508.613333pt;}
.y80{bottom:509.733333pt;}
.yd7{bottom:514.373333pt;}
.y16a{bottom:515.253333pt;}
.yb7{bottom:518.373333pt;}
.y194{bottom:519.173333pt;}
.y145{bottom:520.453333pt;}
.y9d{bottom:520.933333pt;}
.y13{bottom:521.413333pt;}
.y11f{bottom:523.973333pt;}
.y70{bottom:524.213333pt;}
.yd6{bottom:529.973333pt;}
.y169{bottom:530.853333pt;}
.yb6{bottom:534.773333pt;}
.y144{bottom:536.133333pt;}
.y12{bottom:537.013333pt;}
.y42{bottom:537.253333pt;}
.y11e{bottom:539.573333pt;}
.y6f{bottom:539.893333pt;}
.yd5{bottom:545.653333pt;}
.yb5{bottom:550.373333pt;}
.y143{bottom:551.733333pt;}
.y11{bottom:552.613333pt;}
.y7f{bottom:552.693333pt;}
.y41{bottom:552.933333pt;}
.y168{bottom:554.453333pt;}
.y11d{bottom:555.253333pt;}
.y6e{bottom:555.493333pt;}
.y193{bottom:558.453333pt;}
.yd4{bottom:561.253333pt;}
.y142{bottom:567.333333pt;}
.y10{bottom:568.293333pt;}
.y40{bottom:568.533333pt;}
.y167{bottom:570.133333pt;}
.y11c{bottom:570.853333pt;}
.y192{bottom:574.053333pt;}
.y6d{bottom:579.093333pt;}
.yb4{bottom:580.453333pt;}
.y1b9{bottom:581.653333pt;}
.yf{bottom:583.893333pt;}
.y7e{bottom:583.973333pt;}
.y11b{bottom:586.453333pt;}
.yf3{bottom:588.533333pt;}
.y191{bottom:589.653333pt;}
.y141{bottom:591.253333pt;}
.y9b{bottom:592.053333pt;}
.yd3{bottom:592.213333pt;}
.y166{bottom:593.733333pt;}
.y1b8{bottom:597.333333pt;}
.y3f{bottom:600.213333pt;}
.y11a{bottom:602.133333pt;}
.yd2{bottom:603.093333pt;}
.yf2{bottom:604.133333pt;}
.ye{bottom:607.813333pt;}
.y165{bottom:609.413333pt;}
.y6c{bottom:610.693333pt;}
.y190{bottom:613.333333pt;}
.y7d{bottom:615.573333pt;}
.y3e{bottom:615.813333pt;}
.y119{bottom:617.733333pt;}
.yf1{bottom:619.733333pt;}
.y1b7{bottom:620.933333pt;}
.y140{bottom:624.213333pt;}
.y164{bottom:625.013333pt;}
.y6b{bottom:627.093333pt;}
.y18f{bottom:628.933333pt;}
.y3d{bottom:631.413333pt;}
.yf0{bottom:635.413333pt;}
.y1b6{bottom:636.613333pt;}
.y13f{bottom:639.813333pt;}
.y6a{bottom:643.493333pt;}
.y7c{bottom:644.213333pt;}
.y3c{bottom:647.093333pt;}
.y163{bottom:648.613333pt;}
.y118{bottom:649.413333pt;}
.yd{bottom:650.693333pt;}
.yef{bottom:651.013333pt;}
.yb3{bottom:651.653333pt;}
.y18e{bottom:652.613333pt;}
.y13e{bottom:655.413333pt;}
.y69{bottom:659.813333pt;}
.y1b5{bottom:660.213333pt;}
.y3b{bottom:662.693333pt;}
.y162{bottom:664.293333pt;}
.y117{bottom:665.013333pt;}
.yee{bottom:666.693333pt;}
.y18d{bottom:668.213333pt;}
.y13d{bottom:671.093333pt;}
.yd1{bottom:674.213333pt;}
.y1b4{bottom:675.813333pt;}
.y3a{bottom:678.373333pt;}
.y161{bottom:679.893333pt;}
.y116{bottom:680.613333pt;}
.yed{bottom:682.293333pt;}
.yc{bottom:682.533333pt;}
.y68{bottom:684.213333pt;}
.y13c{bottom:686.693333pt;}
.y18c{bottom:691.813333pt;}
.y39{bottom:693.973333pt;}
.y9a{bottom:694.533333pt;}
.y115{bottom:696.293333pt;}
.yec{bottom:697.893333pt;}
.y1b3{bottom:699.493333pt;}
.y13b{bottom:702.373333pt;}
.y160{bottom:703.573333pt;}
.y18b{bottom:707.493333pt;}
.y114{bottom:711.893333pt;}
.yeb{bottom:713.573333pt;}
.yb{bottom:714.533333pt;}
.y1b2{bottom:715.093333pt;}
.y67{bottom:715.813333pt;}
.y13a{bottom:717.973333pt;}
.y15f{bottom:719.173333pt;}
.yb1{bottom:722.853333pt;}
.y38{bottom:725.573333pt;}
.y113{bottom:727.573333pt;}
.yea{bottom:729.173333pt;}
.y18a{bottom:731.093333pt;}
.y66{bottom:732.213333pt;}
.y139{bottom:733.573333pt;}
.y1b1{bottom:738.693333pt;}
.y37{bottom:741.253333pt;}
.y15e{bottom:742.773333pt;}
.y112{bottom:743.173333pt;}
.y189{bottom:746.693333pt;}
.y65{bottom:748.613333pt;}
.ya{bottom:749.893333pt;}
.y1b0{bottom:754.373333pt;}
.y36{bottom:756.853333pt;}
.y138{bottom:757.493333pt;}
.y15d{bottom:758.453333pt;}
.ye9{bottom:760.213333pt;}
.yd0{bottom:761.093333pt;}
.y188{bottom:762.373333pt;}
.y64{bottom:764.213333pt;}
.y9{bottom:765.893333pt;}
.ye8{bottom:771.013333pt;}
.y35{bottom:772.533333pt;}
.y111{bottom:774.773333pt;}
.y1af{bottom:777.973333pt;}
.y63{bottom:780.613333pt;}
.y98{bottom:781.333333pt;}
.y8{bottom:781.893333pt;}
.y15c{bottom:782.053333pt;}
.y187{bottom:785.973333pt;}
.y110{bottom:790.453333pt;}
.y1ae{bottom:793.653333pt;}
.y62{bottom:796.213333pt;}
.y15b{bottom:797.733333pt;}
.y7{bottom:797.893333pt;}
.y186{bottom:801.653333pt;}
.y34{bottom:804.133333pt;}
.y10f{bottom:806.053333pt;}
.ye7{bottom:810.933333pt;}
.y61{bottom:812.533333pt;}
.y15a{bottom:813.333333pt;}
.y1ad{bottom:817.253333pt;}
.y33{bottom:819.733333pt;}
.y10e{bottom:821.733333pt;}
.y185{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.ycf{bottom:832.293333pt;}
.y1ac{bottom:832.853333pt;}
.y32{bottom:835.413333pt;}
.y60{bottom:836.933333pt;}
.y10d{bottom:837.333333pt;}
.y184{bottom:840.853333pt;}
.yad{bottom:840.933333pt;}
.y5{bottom:843.813333pt;}
.y159{bottom:852.613333pt;}
.y10c{bottom:852.933333pt;}
.y1ab{bottom:856.533333pt;}
.y31{bottom:859.333333pt;}
.y183{bottom:864.533333pt;}
.ye6{bottom:866.533333pt;}
.y94{bottom:868.213333pt;}
.y5f{bottom:868.613333pt;}
.y1aa{bottom:872.133333pt;}
.y158{bottom:876.213333pt;}
.y4{bottom:877.893333pt;}
.y182{bottom:880.133333pt;}
.y5e{bottom:884.213333pt;}
.y157{bottom:891.813333pt;}
.y1a9{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y10b{bottom:900.240000pt;}
.y30{bottom:902.240000pt;}
.y181{bottom:903.840000pt;}
.yfa{bottom:904.160000pt;}
.ye5{bottom:906.480000pt;}
.y137{bottom:908.160000pt;}
.y1a8{bottom:911.440000pt;}
.y5d{bottom:915.520000pt;}
.y10a{bottom:915.840000pt;}
.y2f{bottom:918.160000pt;}
.yce{bottom:919.120000pt;}
.y180{bottom:919.440000pt;}
.yf9{bottom:919.840000pt;}
.y5c{bottom:931.120000pt;}
.y109{bottom:931.520000pt;}
.y1a7{bottom:935.040000pt;}
.yf8{bottom:935.440000pt;}
.y17f{bottom:943.040000pt;}
.ye4{bottom:946.400000pt;}
.y5b{bottom:946.800000pt;}
.y108{bottom:947.120000pt;}
.y1a6{bottom:950.720000pt;}
.y2e{bottom:951.040000pt;}
.y93{bottom:955.040000pt;}
.y17e{bottom:958.720000pt;}
.y107{bottom:962.800000pt;}
.y2d{bottom:966.720000pt;}
.y5a{bottom:970.400000pt;}
.y1a5{bottom:974.320000pt;}
.yac{bottom:974.640000pt;}
.y106{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.ye3{bottom:986.320000pt;}
.ycd{bottom:990.320000pt;}
.y2b{bottom:998.000000pt;}
.y59{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h19{height:35.280000pt;}
.h1a{height:37.032187pt;}
.h1d{height:39.200000pt;}
.h1e{height:39.226667pt;}
.h1c{height:39.280000pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h15{height:50.960000pt;}
.h9{height:54.187500pt;}
.hd{height:54.880000pt;}
.hb{height:54.927899pt;}
.h1b{height:54.960000pt;}
.hc{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h18{height:66.560000pt;}
.h14{height:70.480000pt;}
.h11{height:70.560000pt;}
.hf{height:86.160000pt;}
.h12{height:86.186667pt;}
.h10{height:101.760000pt;}
.h13{height:101.840000pt;}
.h17{height:117.440000pt;}
.h16{height:133.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w18{width:66.640000pt;}
.wd{width:80.320000pt;}
.w11{width:81.680000pt;}
.w1a{width:94.240000pt;}
.w10{width:95.840000pt;}
.w3{width:97.946667pt;}
.wf{width:100.266667pt;}
.w19{width:101.760000pt;}
.w9{width:102.986667pt;}
.wc{width:105.626667pt;}
.w16{width:108.560000pt;}
.wb{width:110.160000pt;}
.w5{width:110.400000pt;}
.w12{width:111.386667pt;}
.w8{width:112.000000pt;}
.w4{width:113.120000pt;}
.w7{width:115.760000pt;}
.w6{width:119.226667pt;}
.we{width:122.160000pt;}
.w13{width:136.640000pt;}
.w15{width:138.266667pt;}
.w14{width:142.640000pt;}
.wa{width:147.120000pt;}
.w17{width:158.986667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:60.480000pt;}
.x20{left:80.719988pt;}
.x2{left:84.480000pt;}
.x18{left:90.879988pt;}
.x24{left:98.879988pt;}
.x22{left:106.719988pt;}
.x3{left:108.480000pt;}
.x23{left:132.959988pt;}
.x9{left:159.706667pt;}
.x13{left:162.026667pt;}
.xe{left:164.746667pt;}
.x7{left:177.546655pt;}
.x4{left:180.266655pt;}
.x19{left:200.026667pt;}
.x14{left:258.506667pt;}
.xa{left:273.466667pt;}
.x1e{left:294.426655pt;}
.x1a{left:309.226667pt;}
.xf{left:312.506667pt;}
.x21{left:317.706655pt;}
.x15{left:340.826667pt;}
.xb{left:384.586667pt;}
.x10{left:423.386667pt;}
.x16{left:452.853333pt;}
.x1b{left:468.853333pt;}
.xc{left:504.453333pt;}
.x6{left:524.213322pt;}
.x11{left:529.653333pt;}
.x1c{left:536.133333pt;}
.x17{left:590.213333pt;}
.x12{left:610.693333pt;}
.xd{left:620.853333pt;}
.x1d{left:638.613333pt;}
.x5{left:704.053322pt;}
.x1f{left:711.013322pt;}
}




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