
    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_f8147c46571578d88f9f6184.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_16c66ca417f7e7222b9858ea.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_87ef89feb6919b35723ae86d.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_bf5958b003ac4f48bc8c267d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_fc05bf9656d7b446a676dd58.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_487b77a5530a424ba3c563fe.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_b606066bfb360d5dabbe820a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_89f30e923a076bc090d60c21.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8e4e7354a4ca531ddf3ccb52.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.444600px;}
.ls1e{letter-spacing:-0.375600px;}
.ls21{letter-spacing:-0.273600px;}
.ls1d{letter-spacing:-0.261600px;}
.lsa{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.160800px;}
.ls8{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls10{letter-spacing:-0.063600px;}
.ls22{letter-spacing:-0.038880px;}
.ls15{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls12{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.048960px;}
.ls18{letter-spacing:0.060480px;}
.ls1c{letter-spacing:0.060600px;}
.lse{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls17{letter-spacing:0.098400px;}
.ls1a{letter-spacing:0.115800px;}
.ls16{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.173400px;}
.ls1b{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:3.600000px;}
.ls4{letter-spacing:15.600000px;}
.ls24{letter-spacing:47.726640px;}
.ls20{letter-spacing:55.286640px;}
.ls19{letter-spacing:60.213600px;}
.lsf{letter-spacing:63.566640px;}
.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;}
}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws4{word-spacing:-13.399800px;}
.wsc{word-spacing:-13.342800px;}
.ws10{word-spacing:-13.342200px;}
.wsd{word-spacing:-13.324800px;}
.wse{word-spacing:-13.287000px;}
.ws8{word-spacing:-13.275360px;}
.wsb{word-spacing:-13.271760px;}
.ws2{word-spacing:-13.226400px;}
.ws9{word-spacing:-13.162800px;}
.ws3{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.964800px;}
.ws11{word-spacing:-12.850800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws12{word-spacing:-0.060120px;}
.ws7{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._e{margin-left:-3.967800px;}
._5{margin-left:-2.430600px;}
._0{margin-left:-1.158000px;}
._1{width:1.374492px;}
._4{width:2.765400px;}
._6{width:3.836152px;}
._7{width:5.107838px;}
._11{width:6.853680px;}
._12{width:7.955640px;}
._10{width:9.138240px;}
._13{width:10.280520px;}
._8{width:11.422800px;}
._a{width:14.669400px;}
._9{width:15.687360px;}
._15{width:16.953840px;}
._2{width:18.036000px;}
._3{width:19.254000px;}
._f{width:20.529600px;}
._b{width:21.643200px;}
._1c{width:22.965840px;}
._c{width:24.829800px;}
._d{width:25.850398px;}
._16{width:27.418327px;}
._14{width:29.999880px;}
._1f{width:31.262400px;}
._17{width:32.585040px;}
._27{width:33.967800px;}
._23{width:39.781800px;}
._24{width:41.097240px;}
._26{width:43.466760px;}
._19{width:46.953720px;}
._22{width:55.430640px;}
._1d{width:56.512800px;}
._20{width:60.376680px;}
._25{width:71.031240px;}
._18{width:74.131200px;}
._1e{width:97.274160px;}
._1b{width:128.716920px;}
._21{width:231.768360px;}
._1a{width:307.814520px;}
.fc2{color:transparent;}
.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;}
.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;}
.y104{bottom:7.830000px;}
.y119{bottom:7.860000px;}
.yfd{bottom:7.920000px;}
.y13d{bottom:12.330000px;}
.y10d{bottom:25.380000px;}
.y118{bottom:25.410000px;}
.y111{bottom:25.470000px;}
.y103{bottom:29.880000px;}
.y13b{bottom:29.970000px;}
.y101{bottom:38.910000px;}
.y10c{bottom:43.020000px;}
.y117{bottom:43.050000px;}
.y110{bottom:43.110000px;}
.y13a{bottom:52.020000px;}
.y102{bottom:52.050000px;}
.y100{bottom:56.550000px;}
.y10b{bottom:60.570000px;}
.y116{bottom:60.600000px;}
.y10f{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.yff{bottom:74.100000px;}
.y29{bottom:74.190000px;}
.y10a{bottom:78.210000px;}
.y113{bottom:79.380000px;}
.y109{bottom:95.760000px;}
.y1{bottom:101.640000px;}
.y142{bottom:111.990000px;}
.y108{bottom:113.310000px;}
.y6e{bottom:114.960000px;}
.y84{bottom:115.770000px;}
.ya2{bottom:120.810000px;}
.y41{bottom:124.050000px;}
.y107{bottom:130.950000px;}
.ya1{bottom:138.360000px;}
.yca{bottom:142.500000px;}
.y141{bottom:147.630000px;}
.y106{bottom:148.500000px;}
.y6d{bottom:150.510000px;}
.y83{bottom:151.410000px;}
.yfb{bottom:151.590000px;}
.ya0{bottom:155.910000px;}
.y40{bottom:159.600000px;}
.y1ab{bottom:160.050000px;}
.yc9{bottom:160.140000px;}
.y140{bottom:162.570000px;}
.y189{bottom:166.620000px;}
.y27{bottom:176.250000px;}
.y1aa{bottom:177.600000px;}
.y169{bottom:177.780000px;}
.y124{bottom:180.930000px;}
.y9f{bottom:182.550000px;}
.y6c{bottom:182.730000px;}
.y82{bottom:183.630000px;}
.yb4{bottom:183.900000px;}
.y188{bottom:185.070000px;}
.yc8{bottom:186.690000px;}
.yfa{bottom:187.140000px;}
.y26{bottom:193.800000px;}
.y1a9{bottom:195.150000px;}
.y3f{bottom:195.240000px;}
.y168{bottom:195.330000px;}
.yb3{bottom:201.450000px;}
.y13f{bottom:207.480000px;}
.y25{bottom:211.350000px;}
.ye0{bottom:211.440000px;}
.y187{bottom:212.520000px;}
.y3e{bottom:212.790000px;}
.y167{bottom:212.970000px;}
.y123{bottom:216.480000px;}
.y9e{bottom:218.100000px;}
.yc7{bottom:222.240000px;}
.yf9{bottom:222.780000px;}
.y58{bottom:227.280000px;}
.yb2{bottom:228.000000px;}
.y24{bottom:228.990000px;}
.y1a8{bottom:230.340000px;}
.y122{bottom:234.120000px;}
.y13e{bottom:234.840000px;}
.y9d{bottom:235.740000px;}
.y3d{bottom:239.430000px;}
.y166{bottom:239.520000px;}
.y57{bottom:244.830000px;}
.y23{bottom:246.540000px;}
.ydf{bottom:247.440000px;}
.y186{bottom:248.070000px;}
.y121{bottom:251.670000px;}
.y9c{bottom:253.290000px;}
.yc6{bottom:254.460000px;}
.y1a7{bottom:257.250000px;}
.yf8{bottom:258.330000px;}
.y13c{bottom:262.200000px;}
.y56{bottom:262.470000px;}
.yb1{bottom:263.640000px;}
.y22{bottom:264.090000px;}
.yde{bottom:265.890000px;}
.y185{bottom:266.520000px;}
.y120{bottom:269.220000px;}
.y3c{bottom:274.980000px;}
.y165{bottom:275.070000px;}
.y55{bottom:280.020000px;}
.yb0{bottom:281.190000px;}
.y21{bottom:281.730000px;}
.ydd{bottom:284.340000px;}
.y184{bottom:284.880000px;}
.y9b{bottom:288.840000px;}
.y164{bottom:293.520000px;}
.yf7{bottom:293.880000px;}
.y11f{bottom:295.860000px;}
.y54{bottom:297.570000px;}
.y20{bottom:299.280000px;}
.ydc{bottom:301.890000px;}
.y1a6{bottom:305.580000px;}
.y3b{bottom:307.200000px;}
.yaf{bottom:307.830000px;}
.y163{bottom:311.880000px;}
.y183{bottom:312.330000px;}
.y53{bottom:315.210000px;}
.y1f{bottom:316.920000px;}
.ydb{bottom:319.440000px;}
.y9a{bottom:321.060000px;}
.y1a5{bottom:323.130000px;}
.yf6{bottom:329.520000px;}
.y11e{bottom:331.320000px;}
.y52{bottom:332.760000px;}
.y139{bottom:333.660000px;}
.y1e{bottom:334.470000px;}
.y162{bottom:339.330000px;}
.yae{bottom:343.380000px;}
.yda{bottom:346.890000px;}
.y182{bottom:347.970000px;}
.y1a4{bottom:349.680000px;}
.y11d{bottom:349.770000px;}
.y1d{bottom:352.020000px;}
.y51{bottom:359.400000px;}
.yf5{bottom:365.070000px;}
.y11c{bottom:368.220000px;}
.y1c{bottom:369.660000px;}
.y181{bottom:374.520000px;}
.y161{bottom:374.880000px;}
.yad{bottom:375.600000px;}
.yd9{bottom:382.440000px;}
.y1a3{bottom:385.320000px;}
.y11b{bottom:386.670000px;}
.y160{bottom:393.330000px;}
.y50{bottom:394.950000px;}
.y1b{bottom:396.570000px;}
.yf4{bottom:400.710000px;}
.y1a2{bottom:402.870000px;}
.y6b{bottom:404.400000px;}
.y138{bottom:405.210000px;}
.y180{bottom:410.160000px;}
.y15f{bottom:411.780000px;}
.yd8{bottom:414.660000px;}
.y11a{bottom:420.510000px;}
.y6a{bottom:421.950000px;}
.y4f{bottom:427.170000px;}
.y17f{bottom:427.710000px;}
.y1a1{bottom:429.510000px;}
.y15e{bottom:430.140000px;}
.yf3{bottom:436.170000px;}
.y81{bottom:438.960000px;}
.y69{bottom:439.500000px;}
.y1a{bottom:444.810000px;}
.y17e{bottom:445.260000px;}
.yf2{bottom:454.620000px;}
.y80{bottom:456.510000px;}
.y68{bottom:457.140000px;}
.y15d{bottom:457.590000px;}
.y19{bottom:462.720000px;}
.y1a0{bottom:465.060000px;}
.y115{bottom:465.420000px;}
.y137{bottom:471.480000px;}
.y17d{bottom:471.930000px;}
.y7f{bottom:474.180000px;}
.y67{bottom:474.720000px;}
.yf1{bottom:482.100000px;}
.y19f{bottom:482.640000px;}
.y66{bottom:492.360000px;}
.y15c{bottom:493.260000px;}
.yc5{bottom:494.160000px;}
.y18{bottom:499.830000px;}
.y19e{bottom:500.280000px;}
.y7e{bottom:500.730000px;}
.y136{bottom:507.120000px;}
.y17c{bottom:507.480000px;}
.yc4{bottom:511.710000px;}
.y17{bottom:517.380000px;}
.yf0{bottom:517.650000px;}
.y19d{bottom:517.830000px;}
.y65{bottom:518.910000px;}
.y15b{bottom:519.810000px;}
.yc3{bottom:529.350000px;}
.y3a{bottom:531.060000px;}
.y135{bottom:533.670000px;}
.y16{bottom:534.930000px;}
.yef{bottom:536.100000px;}
.y7d{bottom:536.280000px;}
.y17b{bottom:543.120000px;}
.y19c{bottom:544.380000px;}
.y114{bottom:545.550000px;}
.y15{bottom:552.570000px;}
.y64{bottom:554.460000px;}
.y1c1{bottom:555.000000px;}
.y15a{bottom:555.360000px;}
.yc2{bottom:555.900000px;}
.y7c{bottom:562.920000px;}
.y39{bottom:566.700000px;}
.y134{bottom:569.220000px;}
.y17a{bottom:569.670000px;}
.y14{bottom:570.120000px;}
.y1c0{bottom:572.640000px;}
.yee{bottom:572.910000px;}
.y159{bottom:573.000000px;}
.y19b{bottom:580.020000px;}
.y63{bottom:586.680000px;}
.y13{bottom:587.670000px;}
.y158{bottom:590.550000px;}
.yed{bottom:591.360000px;}
.yc1{bottom:591.450000px;}
.y38{bottom:593.250000px;}
.y7b{bottom:598.470000px;}
.y1bf{bottom:599.190000px;}
.y179{bottom:605.220000px;}
.y12{bottom:605.310000px;}
.y133{bottom:606.030000px;}
.y19a{bottom:606.570000px;}
.y157{bottom:608.190000px;}
.yec{bottom:609.720000px;}
.y7a{bottom:616.110000px;}
.y11{bottom:622.860000px;}
.yc0{bottom:623.670000px;}
.y132{bottom:624.480000px;}
.y112{bottom:625.560000px;}
.y156{bottom:625.740000px;}
.y1be{bottom:625.830000px;}
.y37{bottom:628.890000px;}
.yeb{bottom:637.170000px;}
.y199{bottom:639.150000px;}
.y10{bottom:640.500000px;}
.y79{bottom:642.660000px;}
.y131{bottom:642.840000px;}
.yd7{bottom:645.360000px;}
.y178{bottom:651.120000px;}
.y1bd{bottom:652.380000px;}
.y4e{bottom:657.780000px;}
.yf{bottom:658.050000px;}
.y36{bottom:661.110000px;}
.y130{bottom:661.290000px;}
.yd6{bottom:662.910000px;}
.y1bc{bottom:669.930000px;}
.yac{bottom:671.460000px;}
.yea{bottom:672.810000px;}
.y198{bottom:674.790000px;}
.y4d{bottom:675.420000px;}
.ye{bottom:675.600000px;}
.y78{bottom:678.210000px;}
.y155{bottom:678.930000px;}
.yd5{bottom:680.460000px;}
.y177{bottom:686.670000px;}
.y12f{bottom:688.740000px;}
.yab{bottom:689.100000px;}
.ye9{bottom:690.360000px;}
.y99{bottom:691.260000px;}
.y4c{bottom:692.970000px;}
.yd{bottom:693.240000px;}
.y154{bottom:696.480000px;}
.y1bb{bottom:696.570000px;}
.yd4{bottom:698.100000px;}
.y197{bottom:701.340000px;}
.y10e{bottom:705.660000px;}
.y98{bottom:708.810000px;}
.y77{bottom:710.430000px;}
.y4b{bottom:710.610000px;}
.yc{bottom:710.790000px;}
.yaa{bottom:715.650000px;}
.ye8{bottom:716.910000px;}
.y176{bottom:722.220000px;}
.y153{bottom:723.120000px;}
.y12e{bottom:724.290000px;}
.yd3{bottom:724.650000px;}
.y97{bottom:726.450000px;}
.y4a{bottom:728.160000px;}
.yb{bottom:728.430000px;}
.y196{bottom:736.890000px;}
.y175{bottom:739.860000px;}
.y1ba{bottom:740.670000px;}
.y49{bottom:745.710000px;}
.y12d{bottom:750.930000px;}
.ya9{bottom:751.290000px;}
.ye7{bottom:752.460000px;}
.y96{bottom:753.000000px;}
.ya{bottom:755.340000px;}
.y62{bottom:756.600000px;}
.y152{bottom:758.670000px;}
.yd2{bottom:760.290000px;}
.y48{bottom:763.350000px;}
.y174{bottom:766.410000px;}
.y1b9{bottom:767.310000px;}
.ye6{bottom:770.910000px;}
.y195{bottom:773.700000px;}
.y61{bottom:774.150000px;}
.y151{bottom:776.220000px;}
.yd1{bottom:777.840000px;}
.ya8{bottom:783.510000px;}
.y1b8{bottom:784.860000px;}
.y12c{bottom:786.480000px;}
.y95{bottom:788.550000px;}
.ye5{bottom:789.270000px;}
.y47{bottom:789.900000px;}
.y60{bottom:791.790000px;}
.y150{bottom:793.860000px;}
.yd0{bottom:795.390000px;}
.y194{bottom:801.150000px;}
.y173{bottom:801.960000px;}
.y105{bottom:803.400000px;}
.y9{bottom:803.580000px;}
.y12b{bottom:804.030000px;}
.y94{bottom:806.190000px;}
.ye4{bottom:807.720000px;}
.y5f{bottom:809.340000px;}
.y14f{bottom:811.410000px;}
.y1b7{bottom:811.500000px;}
.ycf{bottom:813.030000px;}
.y172{bottom:820.410000px;}
.y93{bottom:823.740000px;}
.y46{bottom:825.450000px;}
.y5e{bottom:826.890000px;}
.y1b6{bottom:829.050000px;}
.yce{bottom:830.580000px;}
.y12a{bottom:830.670000px;}
.ye3{bottom:835.530000px;}
.y193{bottom:836.790000px;}
.y14e{bottom:837.960000px;}
.y8{bottom:839.130000px;}
.y92{bottom:841.380000px;}
.ybf{bottom:843.090000px;}
.y5d{bottom:844.530000px;}
.y171{bottom:847.860000px;}
.y1b5{bottom:855.600000px;}
.ycd{bottom:857.220000px;}
.y45{bottom:858.120000px;}
.y91{bottom:858.930000px;}
.ybe{bottom:860.640000px;}
.y5c{bottom:862.080000px;}
.y129{bottom:866.220000px;}
.y192{bottom:872.250000px;}
.y1b4{bottom:873.240000px;}
.y14d{bottom:873.600000px;}
.y7{bottom:874.950000px;}
.ybd{bottom:878.280000px;}
.y170{bottom:883.410000px;}
.ye2{bottom:883.770000px;}
.y128{bottom:883.860000px;}
.y90{bottom:885.480000px;}
.y5b{bottom:888.720000px;}
.y191{bottom:890.700000px;}
.y14c{bottom:891.150000px;}
.y35{bottom:891.690000px;}
.ycc{bottom:892.770000px;}
.y44{bottom:894.030000px;}
.ybc{bottom:895.830000px;}
.y1b3{bottom:899.790000px;}
.y16f{bottom:900.960000px;}
.y14b{bottom:908.790000px;}
.y34{bottom:909.240000px;}
.y127{bottom:910.410000px;}
.y6{bottom:910.950000px;}
.ye1{bottom:915.990000px;}
.y1b2{bottom:917.430000px;}
.y190{bottom:918.150000px;}
.y16e{bottom:918.600000px;}
.y8f{bottom:921.120000px;}
.ybb{bottom:922.380000px;}
.y5a{bottom:924.270000px;}
.ycb{bottom:924.990000px;}
.y14a{bottom:926.340000px;}
.y33{bottom:926.880000px;}
.y8e{bottom:938.670000px;}
.y43{bottom:942.270000px;}
.y1b1{bottom:943.980000px;}
.y32{bottom:944.430000px;}
.y16d{bottom:945.150000px;}
.y126{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.y149{bottom:952.890000px;}
.y18f{bottom:953.790000px;}
.yba{bottom:954.960000px;}
.y8d{bottom:956.310000px;}
.y59{bottom:956.490000px;}
.y76{bottom:963.600000px;}
.y1b0{bottom:970.530000px;}
.y31{bottom:970.980000px;}
.yfe{bottom:971.430000px;}
.y8c{bottom:973.860000px;}
.y42{bottom:974.490000px;}
.y18e{bottom:980.340000px;}
.y16c{bottom:980.790000px;}
.y75{bottom:981.150000px;}
.y4{bottom:985.380000px;}
.y1af{bottom:988.170000px;}
.y148{bottom:988.530000px;}
.yb9{bottom:990.600000px;}
.y8b{bottom:992.310000px;}
.y74{bottom:998.790000px;}
.y30{bottom:1003.650000px;}
.y147{bottom:1006.080000px;}
.y125{bottom:1007.790000px;}
.yb8{bottom:1008.150000px;}
.y8a{bottom:1009.890000px;}
.y3{bottom:1010.070000px;}
.y1ae{bottom:1015.110000px;}
.y18d{bottom:1015.920000px;}
.y73{bottom:1016.370000px;}
.y146{bottom:1023.750000px;}
.ya7{bottom:1025.370000px;}
.yb7{bottom:1025.820000px;}
.y89{bottom:1027.440000px;}
.y16b{bottom:1033.920000px;}
.y2f{bottom:1039.230000px;}
.y145{bottom:1041.300000px;}
.y18c{bottom:1042.560000px;}
.y72{bottom:1042.920000px;}
.yb6{bottom:1043.370000px;}
.y88{bottom:1045.800000px;}
.ya6{bottom:1051.920000px;}
.y2e{bottom:1057.590000px;}
.y144{bottom:1058.850000px;}
.y16a{bottom:1060.560000px;}
.yb5{bottom:1060.920000px;}
.y1ad{bottom:1063.350000px;}
.y87{bottom:1064.250000px;}
.yfc{bottom:1064.970000px;}
.y2d{bottom:1076.040000px;}
.y143{bottom:1077.300000px;}
.y18b{bottom:1078.110000px;}
.y71{bottom:1078.560000px;}
.ya5{bottom:1087.560000px;}
.y1ac{bottom:1090.260000px;}
.y86{bottom:1091.700000px;}
.y2c{bottom:1094.400000px;}
.y70{bottom:1096.110000px;}
.y18a{bottom:1104.750000px;}
.ya4{bottom:1105.110000px;}
.y2b{bottom:1112.850000px;}
.y6f{bottom:1113.750000px;}
.ya3{bottom:1122.750000px;}
.y85{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h16{height:26.550000px;}
.hd{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h14{height:44.100000px;}
.h17{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h7{height:60.960938px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.hb{height:68.582109px;}
.h15{height:70.740000px;}
.h4{height:71.019492px;}
.hc{height:74.004654px;}
.h12{height:79.290000px;}
.h13{height:79.320000px;}
.h11{height:79.380000px;}
.he{height:92.820000px;}
.h10{height:96.930000px;}
.hf{height:167.220000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:120.450000px;}
.w3{width:127.200000px;}
.w4{width:134.280000px;}
.w9{width:172.890000px;}
.w6{width:202.500000px;}
.w5{width:289.560000px;}
.w8{width:460.920000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:3.960000px;}
.x27{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x2b{left:111.239987px;}
.x17{left:122.039987px;}
.x2a{left:149.039987px;}
.x28{left:189.930000px;}
.x2{left:191.459987px;}
.x24{left:196.680000px;}
.x25{left:331.680000px;}
.x12{left:335.189987px;}
.x8{left:337.349987px;}
.x14{left:342.389987px;}
.x1c{left:344.459987px;}
.xa{left:354.539987px;}
.x6{left:356.339987px;}
.xe{left:367.499987px;}
.x16{left:371.009987px;}
.xc{left:373.079987px;}
.x10{left:377.129987px;}
.x19{left:387.479987px;}
.x21{left:388.739987px;}
.x9{left:551.309987px;}
.x7{left:563.639987px;}
.xf{left:569.309987px;}
.x1b{left:577.139987px;}
.x1e{left:580.559987px;}
.x11{left:588.389987px;}
.xd{left:590.639987px;}
.x20{left:594.059987px;}
.x1d{left:599.639987px;}
.x1a{left:601.889987px;}
.x1f{left:603.059987px;}
.x13{left:605.309987px;}
.xb{left:607.559987px;}
.x22{left:608.639987px;}
.x15{left:616.559987px;}
.x18{left:617.639987px;}
.x5{left:619.889987px;}
.x26{left:621.960000px;}
.x29{left:651.570000px;}
.x3{left:808.619987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.395200pt;}
.ls1e{letter-spacing:-0.333867pt;}
.ls21{letter-spacing:-0.243200pt;}
.ls1d{letter-spacing:-0.232533pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.142933pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls10{letter-spacing:-0.056533pt;}
.ls22{letter-spacing:-0.034560pt;}
.ls15{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls12{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.043520pt;}
.ls18{letter-spacing:0.053760pt;}
.ls1c{letter-spacing:0.053867pt;}
.lse{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls17{letter-spacing:0.087467pt;}
.ls1a{letter-spacing:0.102933pt;}
.ls16{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:3.200000pt;}
.ls4{letter-spacing:13.866667pt;}
.ls24{letter-spacing:42.423680pt;}
.ls20{letter-spacing:49.143680pt;}
.ls19{letter-spacing:53.523200pt;}
.lsf{letter-spacing:56.503680pt;}
.ls23{letter-spacing:71.863680pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws4{word-spacing:-11.910933pt;}
.wsc{word-spacing:-11.860267pt;}
.ws10{word-spacing:-11.859733pt;}
.wsd{word-spacing:-11.844267pt;}
.wse{word-spacing:-11.810667pt;}
.ws8{word-spacing:-11.800320pt;}
.wsb{word-spacing:-11.797120pt;}
.ws2{word-spacing:-11.756800pt;}
.ws9{word-spacing:-11.700267pt;}
.ws3{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.524267pt;}
.ws11{word-spacing:-11.422933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws12{word-spacing:-0.053440pt;}
.ws7{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._e{margin-left:-3.526933pt;}
._5{margin-left:-2.160533pt;}
._0{margin-left:-1.029333pt;}
._1{width:1.221770pt;}
._4{width:2.458133pt;}
._6{width:3.409913pt;}
._7{width:4.540300pt;}
._11{width:6.092160pt;}
._12{width:7.071680pt;}
._10{width:8.122880pt;}
._13{width:9.138240pt;}
._8{width:10.153600pt;}
._a{width:13.039467pt;}
._9{width:13.944320pt;}
._15{width:15.070080pt;}
._2{width:16.032000pt;}
._3{width:17.114666pt;}
._f{width:18.248533pt;}
._b{width:19.238400pt;}
._1c{width:20.414080pt;}
._c{width:22.070934pt;}
._d{width:22.978131pt;}
._16{width:24.371846pt;}
._14{width:26.666560pt;}
._1f{width:27.788800pt;}
._17{width:28.964480pt;}
._27{width:30.193600pt;}
._23{width:35.361600pt;}
._24{width:36.530880pt;}
._26{width:38.637120pt;}
._19{width:41.736640pt;}
._22{width:49.271680pt;}
._1d{width:50.233600pt;}
._20{width:53.668160pt;}
._25{width:63.138880pt;}
._18{width:65.894400pt;}
._1e{width:86.465920pt;}
._1b{width:114.415040pt;}
._21{width:206.016320pt;}
._1a{width:273.612907pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.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;}
.y104{bottom:6.960000pt;}
.y119{bottom:6.986667pt;}
.yfd{bottom:7.040000pt;}
.y13d{bottom:10.960000pt;}
.y10d{bottom:22.560000pt;}
.y118{bottom:22.586667pt;}
.y111{bottom:22.640000pt;}
.y103{bottom:26.560000pt;}
.y13b{bottom:26.640000pt;}
.y101{bottom:34.586667pt;}
.y10c{bottom:38.240000pt;}
.y117{bottom:38.266667pt;}
.y110{bottom:38.320000pt;}
.y13a{bottom:46.240000pt;}
.y102{bottom:46.266667pt;}
.y100{bottom:50.266667pt;}
.y10b{bottom:53.840000pt;}
.y116{bottom:53.866667pt;}
.y10f{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.yff{bottom:65.866667pt;}
.y29{bottom:65.946667pt;}
.y10a{bottom:69.520000pt;}
.y113{bottom:70.560000pt;}
.y109{bottom:85.120000pt;}
.y1{bottom:90.346667pt;}
.y142{bottom:99.546667pt;}
.y108{bottom:100.720000pt;}
.y6e{bottom:102.186667pt;}
.y84{bottom:102.906667pt;}
.ya2{bottom:107.386667pt;}
.y41{bottom:110.266667pt;}
.y107{bottom:116.400000pt;}
.ya1{bottom:122.986667pt;}
.yca{bottom:126.666667pt;}
.y141{bottom:131.226667pt;}
.y106{bottom:132.000000pt;}
.y6d{bottom:133.786667pt;}
.y83{bottom:134.586667pt;}
.yfb{bottom:134.746667pt;}
.ya0{bottom:138.586667pt;}
.y40{bottom:141.866667pt;}
.y1ab{bottom:142.266667pt;}
.yc9{bottom:142.346667pt;}
.y140{bottom:144.506667pt;}
.y189{bottom:148.106667pt;}
.y27{bottom:156.666667pt;}
.y1aa{bottom:157.866667pt;}
.y169{bottom:158.026667pt;}
.y124{bottom:160.826667pt;}
.y9f{bottom:162.266667pt;}
.y6c{bottom:162.426667pt;}
.y82{bottom:163.226667pt;}
.yb4{bottom:163.466667pt;}
.y188{bottom:164.506667pt;}
.yc8{bottom:165.946667pt;}
.yfa{bottom:166.346667pt;}
.y26{bottom:172.266667pt;}
.y1a9{bottom:173.466667pt;}
.y3f{bottom:173.546667pt;}
.y168{bottom:173.626667pt;}
.yb3{bottom:179.066667pt;}
.y13f{bottom:184.426667pt;}
.y25{bottom:187.866667pt;}
.ye0{bottom:187.946667pt;}
.y187{bottom:188.906667pt;}
.y3e{bottom:189.146667pt;}
.y167{bottom:189.306667pt;}
.y123{bottom:192.426667pt;}
.y9e{bottom:193.866667pt;}
.yc7{bottom:197.546667pt;}
.yf9{bottom:198.026667pt;}
.y58{bottom:202.026667pt;}
.yb2{bottom:202.666667pt;}
.y24{bottom:203.546667pt;}
.y1a8{bottom:204.746667pt;}
.y122{bottom:208.106667pt;}
.y13e{bottom:208.746667pt;}
.y9d{bottom:209.546667pt;}
.y3d{bottom:212.826667pt;}
.y166{bottom:212.906667pt;}
.y57{bottom:217.626667pt;}
.y23{bottom:219.146667pt;}
.ydf{bottom:219.946667pt;}
.y186{bottom:220.506667pt;}
.y121{bottom:223.706667pt;}
.y9c{bottom:225.146667pt;}
.yc6{bottom:226.186667pt;}
.y1a7{bottom:228.666667pt;}
.yf8{bottom:229.626667pt;}
.y13c{bottom:233.066667pt;}
.y56{bottom:233.306667pt;}
.yb1{bottom:234.346667pt;}
.y22{bottom:234.746667pt;}
.yde{bottom:236.346667pt;}
.y185{bottom:236.906667pt;}
.y120{bottom:239.306667pt;}
.y3c{bottom:244.426667pt;}
.y165{bottom:244.506667pt;}
.y55{bottom:248.906667pt;}
.yb0{bottom:249.946667pt;}
.y21{bottom:250.426667pt;}
.ydd{bottom:252.746667pt;}
.y184{bottom:253.226667pt;}
.y9b{bottom:256.746667pt;}
.y164{bottom:260.906667pt;}
.yf7{bottom:261.226667pt;}
.y11f{bottom:262.986667pt;}
.y54{bottom:264.506667pt;}
.y20{bottom:266.026667pt;}
.ydc{bottom:268.346667pt;}
.y1a6{bottom:271.626667pt;}
.y3b{bottom:273.066667pt;}
.yaf{bottom:273.626667pt;}
.y163{bottom:277.226667pt;}
.y183{bottom:277.626667pt;}
.y53{bottom:280.186667pt;}
.y1f{bottom:281.706667pt;}
.ydb{bottom:283.946667pt;}
.y9a{bottom:285.386667pt;}
.y1a5{bottom:287.226667pt;}
.yf6{bottom:292.906667pt;}
.y11e{bottom:294.506667pt;}
.y52{bottom:295.786667pt;}
.y139{bottom:296.586667pt;}
.y1e{bottom:297.306667pt;}
.y162{bottom:301.626667pt;}
.yae{bottom:305.226667pt;}
.yda{bottom:308.346667pt;}
.y182{bottom:309.306667pt;}
.y1a4{bottom:310.826667pt;}
.y11d{bottom:310.906667pt;}
.y1d{bottom:312.906667pt;}
.y51{bottom:319.466667pt;}
.yf5{bottom:324.506667pt;}
.y11c{bottom:327.306667pt;}
.y1c{bottom:328.586667pt;}
.y181{bottom:332.906667pt;}
.y161{bottom:333.226667pt;}
.yad{bottom:333.866667pt;}
.yd9{bottom:339.946667pt;}
.y1a3{bottom:342.506667pt;}
.y11b{bottom:343.706667pt;}
.y160{bottom:349.626667pt;}
.y50{bottom:351.066667pt;}
.y1b{bottom:352.506667pt;}
.yf4{bottom:356.186667pt;}
.y1a2{bottom:358.106667pt;}
.y6b{bottom:359.466667pt;}
.y138{bottom:360.186667pt;}
.y180{bottom:364.586667pt;}
.y15f{bottom:366.026667pt;}
.yd8{bottom:368.586667pt;}
.y11a{bottom:373.786667pt;}
.y6a{bottom:375.066667pt;}
.y4f{bottom:379.706667pt;}
.y17f{bottom:380.186667pt;}
.y1a1{bottom:381.786667pt;}
.y15e{bottom:382.346667pt;}
.yf3{bottom:387.706667pt;}
.y81{bottom:390.186667pt;}
.y69{bottom:390.666667pt;}
.y1a{bottom:395.386667pt;}
.y17e{bottom:395.786667pt;}
.yf2{bottom:404.106667pt;}
.y80{bottom:405.786667pt;}
.y68{bottom:406.346667pt;}
.y15d{bottom:406.746667pt;}
.y19{bottom:411.306667pt;}
.y1a0{bottom:413.386667pt;}
.y115{bottom:413.706667pt;}
.y137{bottom:419.093333pt;}
.y17d{bottom:419.493333pt;}
.y7f{bottom:421.493333pt;}
.y67{bottom:421.973333pt;}
.yf1{bottom:428.533333pt;}
.y19f{bottom:429.013333pt;}
.y66{bottom:437.653333pt;}
.y15c{bottom:438.453333pt;}
.yc5{bottom:439.253333pt;}
.y18{bottom:444.293333pt;}
.y19e{bottom:444.693333pt;}
.y7e{bottom:445.093333pt;}
.y136{bottom:450.773333pt;}
.y17c{bottom:451.093333pt;}
.yc4{bottom:454.853333pt;}
.y17{bottom:459.893333pt;}
.yf0{bottom:460.133333pt;}
.y19d{bottom:460.293333pt;}
.y65{bottom:461.253333pt;}
.y15b{bottom:462.053333pt;}
.yc3{bottom:470.533333pt;}
.y3a{bottom:472.053333pt;}
.y135{bottom:474.373333pt;}
.y16{bottom:475.493333pt;}
.yef{bottom:476.533333pt;}
.y7d{bottom:476.693333pt;}
.y17b{bottom:482.773333pt;}
.y19c{bottom:483.893333pt;}
.y114{bottom:484.933333pt;}
.y15{bottom:491.173333pt;}
.y64{bottom:492.853333pt;}
.y1c1{bottom:493.333333pt;}
.y15a{bottom:493.653333pt;}
.yc2{bottom:494.133333pt;}
.y7c{bottom:500.373333pt;}
.y39{bottom:503.733333pt;}
.y134{bottom:505.973333pt;}
.y17a{bottom:506.373333pt;}
.y14{bottom:506.773333pt;}
.y1c0{bottom:509.013333pt;}
.yee{bottom:509.253333pt;}
.y159{bottom:509.333333pt;}
.y19b{bottom:515.573333pt;}
.y63{bottom:521.493333pt;}
.y13{bottom:522.373333pt;}
.y158{bottom:524.933333pt;}
.yed{bottom:525.653333pt;}
.yc1{bottom:525.733333pt;}
.y38{bottom:527.333333pt;}
.y7b{bottom:531.973333pt;}
.y1bf{bottom:532.613333pt;}
.y179{bottom:537.973333pt;}
.y12{bottom:538.053333pt;}
.y133{bottom:538.693333pt;}
.y19a{bottom:539.173333pt;}
.y157{bottom:540.613333pt;}
.yec{bottom:541.973333pt;}
.y7a{bottom:547.653333pt;}
.y11{bottom:553.653333pt;}
.yc0{bottom:554.373333pt;}
.y132{bottom:555.093333pt;}
.y112{bottom:556.053333pt;}
.y156{bottom:556.213333pt;}
.y1be{bottom:556.293333pt;}
.y37{bottom:559.013333pt;}
.yeb{bottom:566.373333pt;}
.y199{bottom:568.133333pt;}
.y10{bottom:569.333333pt;}
.y79{bottom:571.253333pt;}
.y131{bottom:571.413333pt;}
.yd7{bottom:573.653333pt;}
.y178{bottom:578.773333pt;}
.y1bd{bottom:579.893333pt;}
.y4e{bottom:584.693333pt;}
.yf{bottom:584.933333pt;}
.y36{bottom:587.653333pt;}
.y130{bottom:587.813333pt;}
.yd6{bottom:589.253333pt;}
.y1bc{bottom:595.493333pt;}
.yac{bottom:596.853333pt;}
.yea{bottom:598.053333pt;}
.y198{bottom:599.813333pt;}
.y4d{bottom:600.373333pt;}
.ye{bottom:600.533333pt;}
.y78{bottom:602.853333pt;}
.y155{bottom:603.493333pt;}
.yd5{bottom:604.853333pt;}
.y177{bottom:610.373333pt;}
.y12f{bottom:612.213333pt;}
.yab{bottom:612.533333pt;}
.ye9{bottom:613.653333pt;}
.y99{bottom:614.453333pt;}
.y4c{bottom:615.973333pt;}
.yd{bottom:616.213333pt;}
.y154{bottom:619.093333pt;}
.y1bb{bottom:619.173333pt;}
.yd4{bottom:620.533333pt;}
.y197{bottom:623.413333pt;}
.y10e{bottom:627.253333pt;}
.y98{bottom:630.053333pt;}
.y77{bottom:631.493333pt;}
.y4b{bottom:631.653333pt;}
.yc{bottom:631.813333pt;}
.yaa{bottom:636.133333pt;}
.ye8{bottom:637.253333pt;}
.y176{bottom:641.973333pt;}
.y153{bottom:642.773333pt;}
.y12e{bottom:643.813333pt;}
.yd3{bottom:644.133333pt;}
.y97{bottom:645.733333pt;}
.y4a{bottom:647.253333pt;}
.yb{bottom:647.493333pt;}
.y196{bottom:655.013333pt;}
.y175{bottom:657.653333pt;}
.y1ba{bottom:658.373333pt;}
.y49{bottom:662.853333pt;}
.y12d{bottom:667.493333pt;}
.ya9{bottom:667.813333pt;}
.ye7{bottom:668.853333pt;}
.y96{bottom:669.333333pt;}
.ya{bottom:671.413333pt;}
.y62{bottom:672.533333pt;}
.y152{bottom:674.373333pt;}
.yd2{bottom:675.813333pt;}
.y48{bottom:678.533333pt;}
.y174{bottom:681.253333pt;}
.y1b9{bottom:682.053333pt;}
.ye6{bottom:685.253333pt;}
.y195{bottom:687.733333pt;}
.y61{bottom:688.133333pt;}
.y151{bottom:689.973333pt;}
.yd1{bottom:691.413333pt;}
.ya8{bottom:696.453333pt;}
.y1b8{bottom:697.653333pt;}
.y12c{bottom:699.093333pt;}
.y95{bottom:700.933333pt;}
.ye5{bottom:701.573333pt;}
.y47{bottom:702.133333pt;}
.y60{bottom:703.813333pt;}
.y150{bottom:705.653333pt;}
.yd0{bottom:707.013333pt;}
.y194{bottom:712.133333pt;}
.y173{bottom:712.853333pt;}
.y105{bottom:714.133333pt;}
.y9{bottom:714.293333pt;}
.y12b{bottom:714.693333pt;}
.y94{bottom:716.613333pt;}
.ye4{bottom:717.973333pt;}
.y5f{bottom:719.413333pt;}
.y14f{bottom:721.253333pt;}
.y1b7{bottom:721.333333pt;}
.ycf{bottom:722.693333pt;}
.y172{bottom:729.253333pt;}
.y93{bottom:732.213333pt;}
.y46{bottom:733.733333pt;}
.y5e{bottom:735.013333pt;}
.y1b6{bottom:736.933333pt;}
.yce{bottom:738.293333pt;}
.y12a{bottom:738.373333pt;}
.ye3{bottom:742.693333pt;}
.y193{bottom:743.813333pt;}
.y14e{bottom:744.853333pt;}
.y8{bottom:745.893333pt;}
.y92{bottom:747.893333pt;}
.ybf{bottom:749.413333pt;}
.y5d{bottom:750.693333pt;}
.y171{bottom:753.653333pt;}
.y1b5{bottom:760.533333pt;}
.ycd{bottom:761.973333pt;}
.y45{bottom:762.773333pt;}
.y91{bottom:763.493333pt;}
.ybe{bottom:765.013333pt;}
.y5c{bottom:766.293333pt;}
.y129{bottom:769.973333pt;}
.y192{bottom:775.333333pt;}
.y1b4{bottom:776.213333pt;}
.y14d{bottom:776.533333pt;}
.y7{bottom:777.733333pt;}
.ybd{bottom:780.693333pt;}
.y170{bottom:785.253333pt;}
.ye2{bottom:785.573333pt;}
.y128{bottom:785.653333pt;}
.y90{bottom:787.093333pt;}
.y5b{bottom:789.973333pt;}
.y191{bottom:791.733333pt;}
.y14c{bottom:792.133333pt;}
.y35{bottom:792.613333pt;}
.ycc{bottom:793.573333pt;}
.y44{bottom:794.693333pt;}
.ybc{bottom:796.293333pt;}
.y1b3{bottom:799.813333pt;}
.y16f{bottom:800.853333pt;}
.y14b{bottom:807.813333pt;}
.y34{bottom:808.213333pt;}
.y127{bottom:809.253333pt;}
.y6{bottom:809.733333pt;}
.ye1{bottom:814.213333pt;}
.y1b2{bottom:815.493333pt;}
.y190{bottom:816.133333pt;}
.y16e{bottom:816.533333pt;}
.y8f{bottom:818.773333pt;}
.ybb{bottom:819.893333pt;}
.y5a{bottom:821.573333pt;}
.ycb{bottom:822.213333pt;}
.y14a{bottom:823.413333pt;}
.y33{bottom:823.893333pt;}
.y8e{bottom:834.373333pt;}
.y43{bottom:837.573333pt;}
.y1b1{bottom:839.093333pt;}
.y32{bottom:839.493333pt;}
.y16d{bottom:840.133333pt;}
.y126{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.y149{bottom:847.013333pt;}
.y18f{bottom:847.813333pt;}
.yba{bottom:848.853333pt;}
.y8d{bottom:850.053333pt;}
.y59{bottom:850.213333pt;}
.y76{bottom:856.533333pt;}
.y1b0{bottom:862.693333pt;}
.y31{bottom:863.093333pt;}
.yfe{bottom:863.493333pt;}
.y8c{bottom:865.653333pt;}
.y42{bottom:866.213333pt;}
.y18e{bottom:871.413333pt;}
.y16c{bottom:871.813333pt;}
.y75{bottom:872.133333pt;}
.y4{bottom:875.893333pt;}
.y1af{bottom:878.373333pt;}
.y148{bottom:878.693333pt;}
.yb9{bottom:880.533333pt;}
.y8b{bottom:882.053333pt;}
.y74{bottom:887.813333pt;}
.y30{bottom:892.133333pt;}
.y147{bottom:894.293333pt;}
.y125{bottom:895.813333pt;}
.yb8{bottom:896.133333pt;}
.y8a{bottom:897.680000pt;}
.y3{bottom:897.840000pt;}
.y1ae{bottom:902.320000pt;}
.y18d{bottom:903.040000pt;}
.y73{bottom:903.440000pt;}
.y146{bottom:910.000000pt;}
.ya7{bottom:911.440000pt;}
.yb7{bottom:911.840000pt;}
.y89{bottom:913.280000pt;}
.y16b{bottom:919.040000pt;}
.y2f{bottom:923.760000pt;}
.y145{bottom:925.600000pt;}
.y18c{bottom:926.720000pt;}
.y72{bottom:927.040000pt;}
.yb6{bottom:927.440000pt;}
.y88{bottom:929.600000pt;}
.ya6{bottom:935.040000pt;}
.y2e{bottom:940.080000pt;}
.y144{bottom:941.200000pt;}
.y16a{bottom:942.720000pt;}
.yb5{bottom:943.040000pt;}
.y1ad{bottom:945.200000pt;}
.y87{bottom:946.000000pt;}
.yfc{bottom:946.640000pt;}
.y2d{bottom:956.480000pt;}
.y143{bottom:957.600000pt;}
.y18b{bottom:958.320000pt;}
.y71{bottom:958.720000pt;}
.ya5{bottom:966.720000pt;}
.y1ac{bottom:969.120000pt;}
.y86{bottom:970.400000pt;}
.y2c{bottom:972.800000pt;}
.y70{bottom:974.320000pt;}
.y18a{bottom:982.000000pt;}
.ya4{bottom:982.320000pt;}
.y2b{bottom:989.200000pt;}
.y6f{bottom:990.000000pt;}
.ya3{bottom:998.000000pt;}
.y85{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h16{height:23.600000pt;}
.hd{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h14{height:39.200000pt;}
.h17{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h7{height:54.187500pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.hb{height:60.961875pt;}
.h15{height:62.880000pt;}
.h4{height:63.128437pt;}
.hc{height:65.781915pt;}
.h12{height:70.480000pt;}
.h13{height:70.506667pt;}
.h11{height:70.560000pt;}
.he{height:82.506667pt;}
.h10{height:86.160000pt;}
.hf{height:148.640000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:107.066667pt;}
.w3{width:113.066667pt;}
.w4{width:119.360000pt;}
.w9{width:153.680000pt;}
.w6{width:180.000000pt;}
.w5{width:257.386667pt;}
.w8{width:409.706667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:3.520000pt;}
.x27{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x2b{left:98.879988pt;}
.x17{left:108.479988pt;}
.x2a{left:132.479988pt;}
.x28{left:168.826667pt;}
.x2{left:170.186655pt;}
.x24{left:174.826667pt;}
.x25{left:294.826667pt;}
.x12{left:297.946655pt;}
.x8{left:299.866655pt;}
.x14{left:304.346655pt;}
.x1c{left:306.186655pt;}
.xa{left:315.146655pt;}
.x6{left:316.746655pt;}
.xe{left:326.666655pt;}
.x16{left:329.786655pt;}
.xc{left:331.626655pt;}
.x10{left:335.226655pt;}
.x19{left:344.426655pt;}
.x21{left:345.546655pt;}
.x9{left:490.053322pt;}
.x7{left:501.013322pt;}
.xf{left:506.053322pt;}
.x1b{left:513.013322pt;}
.x1e{left:516.053322pt;}
.x11{left:523.013322pt;}
.xd{left:525.013322pt;}
.x20{left:528.053322pt;}
.x1d{left:533.013322pt;}
.x1a{left:535.013322pt;}
.x1f{left:536.053322pt;}
.x13{left:538.053322pt;}
.xb{left:540.053322pt;}
.x22{left:541.013322pt;}
.x15{left:548.053322pt;}
.x18{left:549.013322pt;}
.x5{left:551.013322pt;}
.x26{left:552.853333pt;}
.x29{left:579.173333pt;}
.x3{left:718.773322pt;}
}




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