
    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_b8c327195112a0643c21cae7.woff')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_2a29d3003c4daf68c329a236.woff')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_43bb6abc3d2cdfaad7112cd5.woff')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_055e526d9b4a99dfb85d079b.woff')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_79d23bfada8dc23d5bfa57fe.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_819e9dd15c06e2ff63e9abdf.woff')format("woff");}.ff6{font-family:ff6;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_954a55aec09f1f32bf25fcdc.woff')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_b6c3cfcac67c089ec761330a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lsf{letter-spacing:-0.375000px;}
.ls1a{letter-spacing:-0.243600px;}
.lse{letter-spacing:-0.186600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls13{letter-spacing:-0.014760px;}
.ls1b{letter-spacing:-0.011160px;}
.ls9{letter-spacing:-0.008400px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.065520px;}
.ls12{letter-spacing:0.068400px;}
.lsc{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.098400px;}
.ls6{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls15{letter-spacing:1.893600px;}
.ls19{letter-spacing:47.726640px;}
.ls16{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;}
}
.ws5{word-spacing:-14.493600px;}
.ws9{word-spacing:-14.372400px;}
.wse{word-spacing:-13.425600px;}
.ws7{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.294800px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.215240px;}
.wsc{word-spacing:-13.211640px;}
.ws8{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._4{margin-left:-4.125601px;}
._3{margin-left:-3.066000px;}
._0{margin-left:-1.110000px;}
._2{width:1.006812px;}
._7{width:2.825400px;}
._8{width:3.877203px;}
._a{width:5.141990px;}
._e{width:6.946801px;}
._d{width:7.963199px;}
._b{width:9.198600px;}
._c{width:10.589158px;}
._5{width:11.899200px;}
._6{width:14.669401px;}
._10{width:16.304088px;}
._1{width:17.451312px;}
._f{width:18.583247px;}
._9{width:19.959600px;}
._11{width:21.282961px;}
._2c{width:22.424760px;}
._1c{width:23.627160px;}
._46{width:25.070040px;}
._13{width:26.152200px;}
._25{width:28.076040px;}
._66{width:29.218320px;}
._2b{width:30.360600px;}
._36{width:31.983840px;}
._35{width:33.005880px;}
._31{width:34.596840px;}
._63{width:35.771400px;}
._2d{width:36.913680px;}
._23{width:38.356560px;}
._2f{width:39.679200px;}
._48{width:41.510640px;}
._43{width:42.985800px;}
._1e{width:44.789400px;}
._4c{width:46.532880px;}
._17{width:47.675160px;}
._15{width:49.057920px;}
._3c{width:50.440680px;}
._64{width:52.244280px;}
._4e{width:53.835240px;}
._24{width:55.130040px;}
._3b{width:57.053880px;}
._20{width:58.677120px;}
._53{width:59.879520px;}
._22{width:62.260560px;}
._33{width:64.568880px;}
._7a{width:65.951640px;}
._28{width:67.093920px;}
._5e{width:68.176080px;}
._30{width:69.438600px;}
._37{width:70.761240px;}
._50{width:71.783280px;}
._69{width:73.226160px;}
._3d{width:75.270240px;}
._38{width:76.592880px;}
._86{width:77.735160px;}
._42{width:79.358400px;}
._41{width:80.440560px;}
._12{width:81.642960px;}
._60{width:82.725120px;}
._47{width:83.747160px;}
._29{width:84.949560px;}
._3e{width:86.993640px;}
._61{width:88.075800px;}
._5b{width:91.021680px;}
._1f{width:92.103840px;}
._2a{width:93.486600px;}
._3f{width:94.628880px;}
._58{width:97.454520px;}
._16{width:100.580760px;}
._40{width:102.865320px;}
._68{width:104.248080px;}
._4b{width:105.570720px;}
._6e{width:106.773120px;}
._5a{width:109.839240px;}
._6d{width:111.041640px;}
._51{width:112.123800px;}
._32{width:115.069680px;}
._6c{width:116.512560px;}
._78{width:118.556640px;}
._19{width:120.748800px;}
._27{width:124.328160px;}
._85{width:126.612720px;}
._21{width:128.055600px;}
._4a{width:130.099680px;}
._75{width:131.302080px;}
._62{width:132.985440px;}
._57{width:135.811080px;}
._88{width:137.013480px;}
._1b{width:138.516480px;}
._3a{width:140.861160px;}
._2e{width:145.430280px;}
._7b{width:147.895200px;}
._7f{width:153.125640px;}
._89{width:157.213800px;}
._84{width:161.963280px;}
._80{width:167.915160px;}
._7e{width:170.079480px;}
._44{width:172.484280px;}
._6f{width:175.490280px;}
._49{width:177.594480px;}
._82{width:179.391240px;}
._59{width:182.343960px;}
._4d{width:183.546360px;}
._39{width:187.093440px;}
._67{width:189.858960px;}
._81{width:192.504240px;}
._74{width:194.668560px;}
._5d{width:197.854920px;}
._4f{width:198.997200px;}
._77{width:204.708600px;}
._70{width:207.894960px;}
._14{width:209.458080px;}
._7d{width:218.055240px;}
._72{width:219.498120px;}
._52{width:221.602320px;}
._45{width:229.658400px;}
._18{width:232.063200px;}
._87{width:238.315680px;}
._1a{width:239.938920px;}
._5f{width:242.463960px;}
._6a{width:248.656320px;}
._26{width:250.940880px;}
._54{width:254.427840px;}
._76{width:256.291560px;}
._56{width:257.974920px;}
._5c{width:272.824560px;}
._83{width:274.327560px;}
._71{width:279.257400px;}
._73{width:282.684240px;}
._6b{width:315.630000px;}
._55{width:322.122960px;}
._1d{width:326.331360px;}
._79{width:330.118920px;}
._34{width:348.696000px;}
._65{width:352.603800px;}
._7c{width:388.375200px;}
.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;}
.yb5{bottom:3.330000px;}
.yf7{bottom:3.420000px;}
.yad{bottom:7.830000px;}
.y127{bottom:7.860000px;}
.ya3{bottom:7.920000px;}
.yd7{bottom:12.330000px;}
.y109{bottom:12.420000px;}
.yf9{bottom:16.470000px;}
.yb1{bottom:20.970000px;}
.ycd{bottom:25.380000px;}
.ya2{bottom:25.470000px;}
.yd6{bottom:29.880000px;}
.ye3{bottom:29.970000px;}
.yf5{bottom:30.000000px;}
.yb4{bottom:38.520000px;}
.yed{bottom:38.550000px;}
.yac{bottom:43.020000px;}
.yea{bottom:43.050000px;}
.yb7{bottom:43.110000px;}
.ye2{bottom:47.520000px;}
.yd5{bottom:47.550000px;}
.y104{bottom:47.610000px;}
.yb3{bottom:56.070000px;}
.yf8{bottom:56.160000px;}
.yab{bottom:60.570000px;}
.ydb{bottom:60.600000px;}
.yc3{bottom:60.660000px;}
.ye9{bottom:60.690000px;}
.yd4{bottom:65.100000px;}
.ye1{bottom:65.160000px;}
.yf4{bottom:65.190000px;}
.y108{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.yb0{bottom:73.710000px;}
.y2b{bottom:74.190000px;}
.yaa{bottom:78.210000px;}
.yeb{bottom:78.240000px;}
.ye4{bottom:82.710000px;}
.yda{bottom:82.740000px;}
.ye0{bottom:87.210000px;}
.yd3{bottom:87.240000px;}
.ycb{bottom:91.260000px;}
.yaf{bottom:95.760000px;}
.yec{bottom:95.790000px;}
.yf0{bottom:95.850000px;}
.ya9{bottom:100.260000px;}
.yd9{bottom:100.290000px;}
.yef{bottom:100.350000px;}
.y1{bottom:101.640000px;}
.yd2{bottom:104.790000px;}
.ydf{bottom:104.850000px;}
.yb2{bottom:111.450000px;}
.yc9{bottom:113.310000px;}
.yfd{bottom:113.340000px;}
.yae{bottom:113.400000px;}
.y55{bottom:113.790000px;}
.y103{bottom:114.060000px;}
.y8b{bottom:114.240000px;}
.y1b2{bottom:116.130000px;}
.ycc{bottom:117.810000px;}
.yd8{bottom:117.840000px;}
.ya8{bottom:117.900000px;}
.ye8{bottom:117.930000px;}
.yd1{bottom:122.340000px;}
.yde{bottom:122.400000px;}
.yf3{bottom:122.430000px;}
.y14e{bottom:123.510000px;}
.ybe{bottom:130.950000px;}
.y8a{bottom:131.790000px;}
.y1b1{bottom:133.680000px;}
.y17b{bottom:134.130000px;}
.ya7{bottom:135.450000px;}
.ye7{bottom:135.480000px;}
.y100{bottom:135.540000px;}
.ye5{bottom:136.920000px;}
.ydd{bottom:139.950000px;}
.yd0{bottom:139.980000px;}
.y29{bottom:140.880000px;}
.y14d{bottom:141.150000px;}
.yc0{bottom:144.090000px;}
.y122{bottom:145.650000px;}
.yc8{bottom:148.500000px;}
.ybd{bottom:148.590000px;}
.y89{bottom:149.340000px;}
.y54{bottom:149.430000px;}
.y194{bottom:151.320000px;}
.y17a{bottom:151.680000px;}
.ya6{bottom:153.000000px;}
.yfc{bottom:153.030000px;}
.yc2{bottom:153.090000px;}
.ye6{bottom:153.120000px;}
.ycf{bottom:157.530000px;}
.y10b{bottom:157.590000px;}
.y107{bottom:157.620000px;}
.y28{bottom:158.430000px;}
.yca{bottom:166.140000px;}
.ybc{bottom:166.170000px;}
.y88{bottom:166.980000px;}
.y14c{bottom:167.700000px;}
.y193{bottom:168.870000px;}
.ya5{bottom:170.640000px;}
.yc1{bottom:170.670000px;}
.y27{bottom:176.070000px;}
.y1b0{bottom:177.870000px;}
.y179{bottom:178.320000px;}
.y121{bottom:181.200000px;}
.y53{bottom:181.650000px;}
.ybf{bottom:183.720000px;}
.y87{bottom:184.530000px;}
.y14b{bottom:185.250000px;}
.yc7{bottom:188.190000px;}
.ybb{bottom:188.220000px;}
.y26{bottom:193.620000px;}
.y192{bottom:195.510000px;}
.y178{bottom:195.870000px;}
.yc6{bottom:205.740000px;}
.yba{bottom:205.860000px;}
.y86{bottom:211.170000px;}
.y25{bottom:211.260000px;}
.y14a{bottom:211.890000px;}
.y191{bottom:213.060000px;}
.y120{bottom:216.750000px;}
.y1af{bottom:222.060000px;}
.y177{bottom:222.510000px;}
.yc5{bottom:223.380000px;}
.yb9{bottom:223.410000px;}
.y24{bottom:228.810000px;}
.y149{bottom:229.440000px;}
.y102{bottom:233.850000px;}
.y11f{bottom:234.390000px;}
.y190{bottom:239.610000px;}
.y176{bottom:240.060000px;}
.ya4{bottom:244.290000px;}
.y23{bottom:246.360000px;}
.y85{bottom:246.720000px;}
.y11e{bottom:251.940000px;}
.y148{bottom:256.080000px;}
.y18f{bottom:257.250000px;}
.y22{bottom:264.000000px;}
.y84{bottom:264.270000px;}
.y175{bottom:266.610000px;}
.y11d{bottom:269.580000px;}
.y147{bottom:273.630000px;}
.ydc{bottom:274.260000px;}
.y21{bottom:281.550000px;}
.y83{bottom:281.910000px;}
.y18e{bottom:283.800000px;}
.y174{bottom:284.250000px;}
.yf6{bottom:287.400000px;}
.y11c{bottom:287.670000px;}
.y146{bottom:291.180000px;}
.y20{bottom:299.190000px;}
.y82{bottom:299.460000px;}
.y18d{bottom:301.440000px;}
.y173{bottom:301.800000px;}
.y11b{bottom:307.830000px;}
.y81{bottom:317.100000px;}
.y145{bottom:317.820000px;}
.y1ae{bottom:318.990000px;}
.y172{bottom:319.440000px;}
.y11a{bottom:325.380000px;}
.y1f{bottom:326.010000px;}
.y18c{bottom:327.990000px;}
.y80{bottom:334.650000px;}
.y144{bottom:335.370000px;}
.y171{bottom:336.990000px;}
.y18b{bottom:345.540000px;}
.y7f{bottom:352.200000px;}
.y143{bottom:353.010000px;}
.y119{bottom:358.410000px;}
.y1ad{bottom:363.180000px;}
.y170{bottom:363.540000px;}
.y7e{bottom:369.840000px;}
.y18a{bottom:372.180000px;}
.y1e{bottom:374.340000px;}
.y142{bottom:379.560000px;}
.y1ac{bottom:380.730000px;}
.y16f{bottom:381.180000px;}
.y118{bottom:385.680000px;}
.y7d{bottom:387.390000px;}
.y189{bottom:389.730000px;}
.y1d{bottom:392.250000px;}
.y141{bottom:397.110000px;}
.y16e{bottom:398.730000px;}
.y7c{bottom:404.940000px;}
.y101{bottom:406.380000px;}
.y188{bottom:407.370000px;}
.y117{bottom:413.040000px;}
.y7b{bottom:422.580000px;}
.y140{bottom:424.020000px;}
.y1ab{bottom:424.920000px;}
.y16d{bottom:425.370000px;}
.y1c{bottom:429.240000px;}
.yce{bottom:433.740000px;}
.y187{bottom:433.920000px;}
.ya1{bottom:434.370000px;}
.y7a{bottom:440.130000px;}
.y116{bottom:440.400000px;}
.yf2{bottom:442.290000px;}
.y1aa{bottom:442.470000px;}
.y16c{bottom:442.920000px;}
.y1b{bottom:446.880000px;}
.y186{bottom:451.470000px;}
.y79{bottom:457.770000px;}
.y1a{bottom:464.430000px;}
.y52{bottom:468.480000px;}
.y1a9{bottom:469.110000px;}
.y16b{bottom:469.470000px;}
.y13f{bottom:472.380000px;}
.y78{bottom:475.350000px;}
.y185{bottom:478.140000px;}
.y19{bottom:482.010000px;}
.y51{bottom:486.060000px;}
.y1a8{bottom:486.690000px;}
.y16a{bottom:487.140000px;}
.y115{bottom:489.120000px;}
.y77{bottom:492.900000px;}
.y184{bottom:495.690000px;}
.y13e{bottom:499.290000px;}
.y18{bottom:499.650000px;}
.ya0{bottom:500.730000px;}
.y50{bottom:503.700000px;}
.y169{bottom:504.690000px;}
.y76{bottom:510.540000px;}
.y1a7{bottom:513.330000px;}
.y17{bottom:517.200000px;}
.y4f{bottom:521.880000px;}
.y183{bottom:522.330000px;}
.y114{bottom:524.670000px;}
.y75{bottom:528.090000px;}
.y1a6{bottom:530.880000px;}
.y168{bottom:531.330000px;}
.y16{bottom:534.840000px;}
.y9f{bottom:536.280000px;}
.y13d{bottom:536.640000px;}
.y182{bottom:539.880000px;}
.y113{bottom:542.310000px;}
.y4e{bottom:542.400000px;}
.y74{bottom:545.730000px;}
.y167{bottom:548.880000px;}
.y15{bottom:552.390000px;}
.y9e{bottom:553.830000px;}
.y1a5{bottom:557.430000px;}
.y112{bottom:559.860000px;}
.y4d{bottom:559.950000px;}
.yff{bottom:561.300000px;}
.y73{bottom:563.280000px;}
.y181{bottom:566.430000px;}
.y14{bottom:569.940000px;}
.y9d{bottom:571.470000px;}
.y1a4{bottom:575.070000px;}
.y166{bottom:575.430000px;}
.y111{bottom:577.410000px;}
.y4c{bottom:577.500000px;}
.y72{bottom:580.830000px;}
.y180{bottom:584.070000px;}
.y13c{bottom:584.880000px;}
.y13{bottom:587.580000px;}
.y9c{bottom:589.020000px;}
.y165{bottom:593.070000px;}
.y110{bottom:595.050000px;}
.y4b{bottom:595.140000px;}
.y71{bottom:598.470000px;}
.y1a3{bottom:601.620000px;}
.yf1{bottom:601.800000px;}
.y13b{bottom:602.430000px;}
.y12{bottom:605.130000px;}
.y9b{bottom:606.660000px;}
.y164{bottom:610.620000px;}
.yc4{bottom:610.800000px;}
.y10f{bottom:612.600000px;}
.y4a{bottom:612.690000px;}
.y70{bottom:616.020000px;}
.y13a{bottom:620.070000px;}
.y11{bottom:622.770000px;}
.y9a{bottom:624.210000px;}
.y17f{bottom:628.260000px;}
.y10e{bottom:630.240000px;}
.y49{bottom:630.330000px;}
.y6f{bottom:633.660000px;}
.y163{bottom:637.260000px;}
.y139{bottom:637.620000px;}
.y10{bottom:640.320000px;}
.y99{bottom:641.760000px;}
.y1a2{bottom:645.810000px;}
.y10d{bottom:647.790000px;}
.y48{bottom:647.880000px;}
.y162{bottom:654.810000px;}
.y138{bottom:655.260000px;}
.yf{bottom:657.870000px;}
.y98{bottom:659.400000px;}
.y6e{bottom:660.210000px;}
.y1a1{bottom:663.360000px;}
.y47{bottom:665.430000px;}
.y17e{bottom:672.360000px;}
.y137{bottom:672.810000px;}
.y10c{bottom:674.700000px;}
.ye{bottom:675.510000px;}
.y97{bottom:676.950000px;}
.y161{bottom:681.360000px;}
.y46{bottom:683.070000px;}
.y1a0{bottom:690.000000px;}
.y136{bottom:690.360000px;}
.y96{bottom:694.590000px;}
.y6d{bottom:695.760000px;}
.y160{bottom:699.000000px;}
.y45{bottom:700.620000px;}
.yd{bottom:702.420000px;}
.y19f{bottom:707.550000px;}
.y135{bottom:708.000000px;}
.y6c{bottom:713.400000px;}
.yfe{bottom:716.280000px;}
.y17d{bottom:716.550000px;}
.y44{bottom:718.260000px;}
.y10a{bottom:720.330000px;}
.y95{bottom:721.140000px;}
.y134{bottom:725.550000px;}
.y6b{bottom:730.950000px;}
.y19e{bottom:734.190000px;}
.y43{bottom:735.810000px;}
.y133{bottom:743.100000px;}
.y15f{bottom:743.190000px;}
.y6a{bottom:748.590000px;}
.yc{bottom:749.130000px;}
.y19d{bottom:751.740000px;}
.y42{bottom:753.360000px;}
.y94{bottom:756.690000px;}
.y132{bottom:760.740000px;}
.y69{bottom:766.140000px;}
.y41{bottom:771.000000px;}
.y93{bottom:774.330000px;}
.y131{bottom:778.290000px;}
.y68{bottom:783.690000px;}
.yb{bottom:784.950000px;}
.y15e{bottom:787.290000px;}
.y40{bottom:788.550000px;}
.y92{bottom:791.880000px;}
.y130{bottom:795.930000px;}
.y67{bottom:801.330000px;}
.y15d{bottom:804.930000px;}
.y3f{bottom:806.190000px;}
.yee{bottom:809.430000px;}
.y91{bottom:809.520000px;}
.y12f{bottom:813.480000px;}
.y66{bottom:818.880000px;}
.ya{bottom:820.950000px;}
.y15c{bottom:822.480000px;}
.y3e{bottom:823.740000px;}
.y90{bottom:827.070000px;}
.y65{bottom:836.520000px;}
.y19c{bottom:840.030000px;}
.y12e{bottom:840.390000px;}
.y3d{bottom:841.290000px;}
.y8f{bottom:844.620000px;}
.y15b{bottom:849.030000px;}
.yb8{bottom:853.620000px;}
.y64{bottom:854.070000px;}
.y19b{bottom:857.670000px;}
.y3c{bottom:858.930000px;}
.y9{bottom:860.730000px;}
.y8e{bottom:862.260000px;}
.y15a{bottom:866.670000px;}
.y63{bottom:871.620000px;}
.y19a{bottom:875.220000px;}
.y3b{bottom:876.480000px;}
.y8{bottom:878.730000px;}
.y12d{bottom:888.630000px;}
.y8d{bottom:888.810000px;}
.y62{bottom:889.260000px;}
.y159{bottom:893.220000px;}
.y3a{bottom:894.030000px;}
.y7{bottom:896.730000px;}
.y106{bottom:897.360000px;}
.y199{bottom:901.860000px;}
.y12c{bottom:906.270000px;}
.y61{bottom:906.810000px;}
.y158{bottom:910.860000px;}
.y39{bottom:911.670000px;}
.y6{bottom:914.730000px;}
.y198{bottom:919.410000px;}
.y12b{bottom:923.820000px;}
.yfb{bottom:924.000000px;}
.y60{bottom:924.450000px;}
.y157{bottom:928.410000px;}
.y38{bottom:929.220000px;}
.y12a{bottom:941.460000px;}
.y5f{bottom:942.000000px;}
.y197{bottom:945.960000px;}
.y37{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.y156{bottom:954.960000px;}
.y129{bottom:959.010000px;}
.y5e{bottom:959.550000px;}
.y196{bottom:963.600000px;}
.y36{bottom:964.410000px;}
.y155{bottom:972.600000px;}
.y128{bottom:976.560000px;}
.y5d{bottom:977.190000px;}
.y35{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y154{bottom:990.150000px;}
.y5c{bottom:994.740000px;}
.y34{bottom:999.600000px;}
.y195{bottom:1007.790000px;}
.y126{bottom:1009.590000px;}
.y3{bottom:1010.070000px;}
.y5b{bottom:1012.320000px;}
.y153{bottom:1016.820000px;}
.y33{bottom:1017.180000px;}
.y5a{bottom:1029.960000px;}
.y152{bottom:1034.370000px;}
.y32{bottom:1034.820000px;}
.y125{bottom:1036.890000px;}
.y59{bottom:1047.510000px;}
.y151{bottom:1051.920000px;}
.y31{bottom:1052.370000px;}
.y8c{bottom:1056.870000px;}
.y17c{bottom:1060.920000px;}
.y124{bottom:1064.250000px;}
.y58{bottom:1065.150000px;}
.y30{bottom:1069.920000px;}
.y105{bottom:1074.420000px;}
.y150{bottom:1078.560000px;}
.y2f{bottom:1087.560000px;}
.y123{bottom:1091.610000px;}
.y57{bottom:1091.700000px;}
.y14f{bottom:1096.110000px;}
.yb6{bottom:1096.470000px;}
.y2e{bottom:1105.110000px;}
.yfa{bottom:1114.110000px;}
.y2d{bottom:1122.750000px;}
.y56{bottom:1127.610000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h24{height:26.550000px;}
.h27{height:26.580000px;}
.h25{height:26.640000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h1c{height:39.690000px;}
.hd{height:44.220000px;}
.ha{height:50.902383px;}
.h7{height:52.311445px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.h10{height:57.330000px;}
.h28{height:61.793886px;}
.hc{height:62.585859px;}
.h9{height:62.648438px;}
.hb{height:68.582109px;}
.h4{height:72.985430px;}
.h26{height:74.004654px;}
.h21{height:79.380000px;}
.h20{height:119.070000px;}
.hf{height:132.120000px;}
.h15{height:136.620000px;}
.h1b{height:149.670000px;}
.h1a{height:154.170000px;}
.h1f{height:154.200000px;}
.h1e{height:154.260000px;}
.h14{height:158.670000px;}
.h19{height:158.700000px;}
.h17{height:171.810000px;}
.h16{height:171.840000px;}
.h13{height:176.250000px;}
.h23{height:176.310000px;}
.h22{height:176.340000px;}
.he{height:189.360000px;}
.h1d{height:189.390000px;}
.h18{height:206.910000px;}
.h12{height:242.100000px;}
.h11{height:242.130000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:86.940000px;}
.w8{width:101.460000px;}
.w4{width:138.450000px;}
.w6{width:147.090000px;}
.w7{width:176.580000px;}
.wd{width:186.570000px;}
.w9{width:195.300000px;}
.w5{width:203.760000px;}
.wb{width:219.600000px;}
.wa{width:233.310000px;}
.wc{width:241.140000px;}
.we{width:313.320000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:3.960000px;}
.x10{left:7.650000px;}
.x1{left:68.040000px;}
.xb{left:70.650000px;}
.xf{left:75.420000px;}
.x13{left:111.239987px;}
.x5{left:140.129987px;}
.x7{left:156.420000px;}
.xc{left:172.830000px;}
.x2{left:202.799987px;}
.x8{left:295.590000px;}
.x11{left:317.280000px;}
.xd{left:368.940000px;}
.x9{left:500.070000px;}
.x12{left:504.570000px;}
.xe{left:603.060000px;}
.x4{left:626.639987px;}
.xa{left:647.880000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.333333pt;}
.ls1a{letter-spacing:-0.216533pt;}
.lse{letter-spacing:-0.165867pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls13{letter-spacing:-0.013120pt;}
.ls1b{letter-spacing:-0.009920pt;}
.ls9{letter-spacing:-0.007467pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.058240pt;}
.ls12{letter-spacing:0.060800pt;}
.lsc{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.087467pt;}
.ls6{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls15{letter-spacing:1.683200pt;}
.ls19{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.ws9{word-spacing:-12.775467pt;}
.wse{word-spacing:-11.933867pt;}
.ws7{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.817600pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.746880pt;}
.wsc{word-spacing:-11.743680pt;}
.ws8{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._4{margin-left:-3.667201pt;}
._3{margin-left:-2.725333pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894944pt;}
._7{width:2.511466pt;}
._8{width:3.446403pt;}
._a{width:4.570658pt;}
._e{width:6.174935pt;}
._d{width:7.078399pt;}
._b{width:8.176534pt;}
._c{width:9.412585pt;}
._5{width:10.577066pt;}
._6{width:13.039468pt;}
._10{width:14.492523pt;}
._1{width:15.512278pt;}
._f{width:16.518442pt;}
._9{width:17.741866pt;}
._11{width:18.918188pt;}
._2c{width:19.933120pt;}
._1c{width:21.001920pt;}
._46{width:22.284480pt;}
._13{width:23.246400pt;}
._25{width:24.956480pt;}
._66{width:25.971840pt;}
._2b{width:26.987200pt;}
._36{width:28.430080pt;}
._35{width:29.338560pt;}
._31{width:30.752747pt;}
._63{width:31.796800pt;}
._2d{width:32.812160pt;}
._23{width:34.094720pt;}
._2f{width:35.270400pt;}
._48{width:36.898347pt;}
._43{width:38.209600pt;}
._1e{width:39.812800pt;}
._4c{width:41.362560pt;}
._17{width:42.377920pt;}
._15{width:43.607040pt;}
._3c{width:44.836160pt;}
._64{width:46.439360pt;}
._4e{width:47.853547pt;}
._24{width:49.004480pt;}
._3b{width:50.714560pt;}
._20{width:52.157440pt;}
._53{width:53.226240pt;}
._22{width:55.342720pt;}
._33{width:57.394560pt;}
._7a{width:58.623680pt;}
._28{width:59.639040pt;}
._5e{width:60.600960pt;}
._30{width:61.723200pt;}
._37{width:62.898880pt;}
._50{width:63.807360pt;}
._69{width:65.089920pt;}
._3d{width:66.906880pt;}
._38{width:68.082560pt;}
._86{width:69.097920pt;}
._42{width:70.540800pt;}
._41{width:71.502720pt;}
._12{width:72.571520pt;}
._60{width:73.533440pt;}
._47{width:74.441920pt;}
._29{width:75.510720pt;}
._3e{width:77.327680pt;}
._61{width:78.289600pt;}
._5b{width:80.908160pt;}
._1f{width:81.870080pt;}
._2a{width:83.099200pt;}
._3f{width:84.114560pt;}
._58{width:86.626240pt;}
._16{width:89.405120pt;}
._40{width:91.435840pt;}
._68{width:92.664960pt;}
._4b{width:93.840640pt;}
._6e{width:94.909440pt;}
._5a{width:97.634880pt;}
._6d{width:98.703680pt;}
._51{width:99.665600pt;}
._32{width:102.284160pt;}
._6c{width:103.566720pt;}
._78{width:105.383680pt;}
._19{width:107.332267pt;}
._27{width:110.513920pt;}
._85{width:112.544640pt;}
._21{width:113.827200pt;}
._4a{width:115.644160pt;}
._75{width:116.712960pt;}
._62{width:118.209280pt;}
._57{width:120.720960pt;}
._88{width:121.789760pt;}
._1b{width:123.125760pt;}
._3a{width:125.209920pt;}
._2e{width:129.271360pt;}
._7b{width:131.462400pt;}
._7f{width:136.111680pt;}
._89{width:139.745600pt;}
._84{width:143.967360pt;}
._80{width:149.257920pt;}
._7e{width:151.181760pt;}
._44{width:153.319360pt;}
._6f{width:155.991360pt;}
._49{width:157.861760pt;}
._82{width:159.458880pt;}
._59{width:162.083520pt;}
._4d{width:163.152320pt;}
._39{width:166.305280pt;}
._67{width:168.763520pt;}
._81{width:171.114880pt;}
._74{width:173.038720pt;}
._5d{width:175.871040pt;}
._4f{width:176.886400pt;}
._77{width:181.963200pt;}
._70{width:184.795520pt;}
._14{width:186.184960pt;}
._7d{width:193.826880pt;}
._72{width:195.109440pt;}
._52{width:196.979840pt;}
._45{width:204.140800pt;}
._18{width:206.278400pt;}
._87{width:211.836160pt;}
._1a{width:213.279040pt;}
._5f{width:215.523520pt;}
._6a{width:221.027840pt;}
._26{width:223.058560pt;}
._54{width:226.158080pt;}
._76{width:227.814720pt;}
._56{width:229.311040pt;}
._5c{width:242.510720pt;}
._83{width:243.846720pt;}
._71{width:248.228800pt;}
._73{width:251.274880pt;}
._6b{width:280.560000pt;}
._55{width:286.331520pt;}
._1d{width:290.072320pt;}
._79{width:293.439040pt;}
._34{width:309.952000pt;}
._65{width:313.425600pt;}
._7c{width:345.222400pt;}
.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;}
.yb5{bottom:2.960000pt;}
.yf7{bottom:3.040000pt;}
.yad{bottom:6.960000pt;}
.y127{bottom:6.986667pt;}
.ya3{bottom:7.040000pt;}
.yd7{bottom:10.960000pt;}
.y109{bottom:11.040000pt;}
.yf9{bottom:14.640000pt;}
.yb1{bottom:18.640000pt;}
.ycd{bottom:22.560000pt;}
.ya2{bottom:22.640000pt;}
.yd6{bottom:26.560000pt;}
.ye3{bottom:26.640000pt;}
.yf5{bottom:26.666667pt;}
.yb4{bottom:34.240000pt;}
.yed{bottom:34.266667pt;}
.yac{bottom:38.240000pt;}
.yea{bottom:38.266667pt;}
.yb7{bottom:38.320000pt;}
.ye2{bottom:42.240000pt;}
.yd5{bottom:42.266667pt;}
.y104{bottom:42.320000pt;}
.yb3{bottom:49.840000pt;}
.yf8{bottom:49.920000pt;}
.yab{bottom:53.840000pt;}
.ydb{bottom:53.866667pt;}
.yc3{bottom:53.920000pt;}
.ye9{bottom:53.946667pt;}
.yd4{bottom:57.866667pt;}
.ye1{bottom:57.920000pt;}
.yf4{bottom:57.946667pt;}
.y108{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.yb0{bottom:65.520000pt;}
.y2b{bottom:65.946667pt;}
.yaa{bottom:69.520000pt;}
.yeb{bottom:69.546667pt;}
.ye4{bottom:73.520000pt;}
.yda{bottom:73.546667pt;}
.ye0{bottom:77.520000pt;}
.yd3{bottom:77.546667pt;}
.ycb{bottom:81.120000pt;}
.yaf{bottom:85.120000pt;}
.yec{bottom:85.146667pt;}
.yf0{bottom:85.200000pt;}
.ya9{bottom:89.120000pt;}
.yd9{bottom:89.146667pt;}
.yef{bottom:89.200000pt;}
.y1{bottom:90.346667pt;}
.yd2{bottom:93.146667pt;}
.ydf{bottom:93.200000pt;}
.yb2{bottom:99.066667pt;}
.yc9{bottom:100.720000pt;}
.yfd{bottom:100.746667pt;}
.yae{bottom:100.800000pt;}
.y55{bottom:101.146667pt;}
.y103{bottom:101.386667pt;}
.y8b{bottom:101.546667pt;}
.y1b2{bottom:103.226667pt;}
.ycc{bottom:104.720000pt;}
.yd8{bottom:104.746667pt;}
.ya8{bottom:104.800000pt;}
.ye8{bottom:104.826667pt;}
.yd1{bottom:108.746667pt;}
.yde{bottom:108.800000pt;}
.yf3{bottom:108.826667pt;}
.y14e{bottom:109.786667pt;}
.ybe{bottom:116.400000pt;}
.y8a{bottom:117.146667pt;}
.y1b1{bottom:118.826667pt;}
.y17b{bottom:119.226667pt;}
.ya7{bottom:120.400000pt;}
.ye7{bottom:120.426667pt;}
.y100{bottom:120.480000pt;}
.ye5{bottom:121.706667pt;}
.ydd{bottom:124.400000pt;}
.yd0{bottom:124.426667pt;}
.y29{bottom:125.226667pt;}
.y14d{bottom:125.466667pt;}
.yc0{bottom:128.080000pt;}
.y122{bottom:129.466667pt;}
.yc8{bottom:132.000000pt;}
.ybd{bottom:132.080000pt;}
.y89{bottom:132.746667pt;}
.y54{bottom:132.826667pt;}
.y194{bottom:134.506667pt;}
.y17a{bottom:134.826667pt;}
.ya6{bottom:136.000000pt;}
.yfc{bottom:136.026667pt;}
.yc2{bottom:136.080000pt;}
.ye6{bottom:136.106667pt;}
.ycf{bottom:140.026667pt;}
.y10b{bottom:140.080000pt;}
.y107{bottom:140.106667pt;}
.y28{bottom:140.826667pt;}
.yca{bottom:147.680000pt;}
.ybc{bottom:147.706667pt;}
.y88{bottom:148.426667pt;}
.y14c{bottom:149.066667pt;}
.y193{bottom:150.106667pt;}
.ya5{bottom:151.680000pt;}
.yc1{bottom:151.706667pt;}
.y27{bottom:156.506667pt;}
.y1b0{bottom:158.106667pt;}
.y179{bottom:158.506667pt;}
.y121{bottom:161.066667pt;}
.y53{bottom:161.466667pt;}
.ybf{bottom:163.306667pt;}
.y87{bottom:164.026667pt;}
.y14b{bottom:164.666667pt;}
.yc7{bottom:167.280000pt;}
.ybb{bottom:167.306667pt;}
.y26{bottom:172.106667pt;}
.y192{bottom:173.786667pt;}
.y178{bottom:174.106667pt;}
.yc6{bottom:182.880000pt;}
.yba{bottom:182.986667pt;}
.y86{bottom:187.706667pt;}
.y25{bottom:187.786667pt;}
.y14a{bottom:188.346667pt;}
.y191{bottom:189.386667pt;}
.y120{bottom:192.666667pt;}
.y1af{bottom:197.386667pt;}
.y177{bottom:197.786667pt;}
.yc5{bottom:198.560000pt;}
.yb9{bottom:198.586667pt;}
.y24{bottom:203.386667pt;}
.y149{bottom:203.946667pt;}
.y102{bottom:207.866667pt;}
.y11f{bottom:208.346667pt;}
.y190{bottom:212.986667pt;}
.y176{bottom:213.386667pt;}
.ya4{bottom:217.146667pt;}
.y23{bottom:218.986667pt;}
.y85{bottom:219.306667pt;}
.y11e{bottom:223.946667pt;}
.y148{bottom:227.626667pt;}
.y18f{bottom:228.666667pt;}
.y22{bottom:234.666667pt;}
.y84{bottom:234.906667pt;}
.y175{bottom:236.986667pt;}
.y11d{bottom:239.626667pt;}
.y147{bottom:243.226667pt;}
.ydc{bottom:243.786667pt;}
.y21{bottom:250.266667pt;}
.y83{bottom:250.586667pt;}
.y18e{bottom:252.266667pt;}
.y174{bottom:252.666667pt;}
.yf6{bottom:255.466667pt;}
.y11c{bottom:255.706667pt;}
.y146{bottom:258.826667pt;}
.y20{bottom:265.946667pt;}
.y82{bottom:266.186667pt;}
.y18d{bottom:267.946667pt;}
.y173{bottom:268.266667pt;}
.y11b{bottom:273.626667pt;}
.y81{bottom:281.866667pt;}
.y145{bottom:282.506667pt;}
.y1ae{bottom:283.546667pt;}
.y172{bottom:283.946667pt;}
.y11a{bottom:289.226667pt;}
.y1f{bottom:289.786667pt;}
.y18c{bottom:291.546667pt;}
.y80{bottom:297.466667pt;}
.y144{bottom:298.106667pt;}
.y171{bottom:299.546667pt;}
.y18b{bottom:307.146667pt;}
.y7f{bottom:313.066667pt;}
.y143{bottom:313.786667pt;}
.y119{bottom:318.586667pt;}
.y1ad{bottom:322.826667pt;}
.y170{bottom:323.146667pt;}
.y7e{bottom:328.746667pt;}
.y18a{bottom:330.826667pt;}
.y1e{bottom:332.746667pt;}
.y142{bottom:337.386667pt;}
.y1ac{bottom:338.426667pt;}
.y16f{bottom:338.826667pt;}
.y118{bottom:342.826667pt;}
.y7d{bottom:344.346667pt;}
.y189{bottom:346.426667pt;}
.y1d{bottom:348.666667pt;}
.y141{bottom:352.986667pt;}
.y16e{bottom:354.426667pt;}
.y7c{bottom:359.946667pt;}
.y101{bottom:361.226667pt;}
.y188{bottom:362.106667pt;}
.y117{bottom:367.146667pt;}
.y7b{bottom:375.626667pt;}
.y140{bottom:376.906667pt;}
.y1ab{bottom:377.706667pt;}
.y16d{bottom:378.106667pt;}
.y1c{bottom:381.546667pt;}
.yce{bottom:385.546667pt;}
.y187{bottom:385.706667pt;}
.ya1{bottom:386.106667pt;}
.y7a{bottom:391.226667pt;}
.y116{bottom:391.466667pt;}
.yf2{bottom:393.146667pt;}
.y1aa{bottom:393.306667pt;}
.y16c{bottom:393.706667pt;}
.y1b{bottom:397.226667pt;}
.y186{bottom:401.306667pt;}
.y79{bottom:406.906667pt;}
.y1a{bottom:412.826667pt;}
.y52{bottom:416.426667pt;}
.y1a9{bottom:416.986667pt;}
.y16b{bottom:417.306667pt;}
.y13f{bottom:419.893333pt;}
.y78{bottom:422.533333pt;}
.y185{bottom:425.013333pt;}
.y19{bottom:428.453333pt;}
.y51{bottom:432.053333pt;}
.y1a8{bottom:432.613333pt;}
.y16a{bottom:433.013333pt;}
.y115{bottom:434.773333pt;}
.y77{bottom:438.133333pt;}
.y184{bottom:440.613333pt;}
.y13e{bottom:443.813333pt;}
.y18{bottom:444.133333pt;}
.ya0{bottom:445.093333pt;}
.y50{bottom:447.733333pt;}
.y169{bottom:448.613333pt;}
.y76{bottom:453.813333pt;}
.y1a7{bottom:456.293333pt;}
.y17{bottom:459.733333pt;}
.y4f{bottom:463.893333pt;}
.y183{bottom:464.293333pt;}
.y114{bottom:466.373333pt;}
.y75{bottom:469.413333pt;}
.y1a6{bottom:471.893333pt;}
.y168{bottom:472.293333pt;}
.y16{bottom:475.413333pt;}
.y9f{bottom:476.693333pt;}
.y13d{bottom:477.013333pt;}
.y182{bottom:479.893333pt;}
.y113{bottom:482.053333pt;}
.y4e{bottom:482.133333pt;}
.y74{bottom:485.093333pt;}
.y167{bottom:487.893333pt;}
.y15{bottom:491.013333pt;}
.y9e{bottom:492.293333pt;}
.y1a5{bottom:495.493333pt;}
.y112{bottom:497.653333pt;}
.y4d{bottom:497.733333pt;}
.yff{bottom:498.933333pt;}
.y73{bottom:500.693333pt;}
.y181{bottom:503.493333pt;}
.y14{bottom:506.613333pt;}
.y9d{bottom:507.973333pt;}
.y1a4{bottom:511.173333pt;}
.y166{bottom:511.493333pt;}
.y111{bottom:513.253333pt;}
.y4c{bottom:513.333333pt;}
.y72{bottom:516.293333pt;}
.y180{bottom:519.173333pt;}
.y13c{bottom:519.893333pt;}
.y13{bottom:522.293333pt;}
.y9c{bottom:523.573333pt;}
.y165{bottom:527.173333pt;}
.y110{bottom:528.933333pt;}
.y4b{bottom:529.013333pt;}
.y71{bottom:531.973333pt;}
.y1a3{bottom:534.773333pt;}
.yf1{bottom:534.933333pt;}
.y13b{bottom:535.493333pt;}
.y12{bottom:537.893333pt;}
.y9b{bottom:539.253333pt;}
.y164{bottom:542.773333pt;}
.yc4{bottom:542.933333pt;}
.y10f{bottom:544.533333pt;}
.y4a{bottom:544.613333pt;}
.y70{bottom:547.573333pt;}
.y13a{bottom:551.173333pt;}
.y11{bottom:553.573333pt;}
.y9a{bottom:554.853333pt;}
.y17f{bottom:558.453333pt;}
.y10e{bottom:560.213333pt;}
.y49{bottom:560.293333pt;}
.y6f{bottom:563.253333pt;}
.y163{bottom:566.453333pt;}
.y139{bottom:566.773333pt;}
.y10{bottom:569.173333pt;}
.y99{bottom:570.453333pt;}
.y1a2{bottom:574.053333pt;}
.y10d{bottom:575.813333pt;}
.y48{bottom:575.893333pt;}
.y162{bottom:582.053333pt;}
.y138{bottom:582.453333pt;}
.yf{bottom:584.773333pt;}
.y98{bottom:586.133333pt;}
.y6e{bottom:586.853333pt;}
.y1a1{bottom:589.653333pt;}
.y47{bottom:591.493333pt;}
.y17e{bottom:597.653333pt;}
.y137{bottom:598.053333pt;}
.y10c{bottom:599.733333pt;}
.ye{bottom:600.453333pt;}
.y97{bottom:601.733333pt;}
.y161{bottom:605.653333pt;}
.y46{bottom:607.173333pt;}
.y1a0{bottom:613.333333pt;}
.y136{bottom:613.653333pt;}
.y96{bottom:617.413333pt;}
.y6d{bottom:618.453333pt;}
.y160{bottom:621.333333pt;}
.y45{bottom:622.773333pt;}
.yd{bottom:624.373333pt;}
.y19f{bottom:628.933333pt;}
.y135{bottom:629.333333pt;}
.y6c{bottom:634.133333pt;}
.yfe{bottom:636.693333pt;}
.y17d{bottom:636.933333pt;}
.y44{bottom:638.453333pt;}
.y10a{bottom:640.293333pt;}
.y95{bottom:641.013333pt;}
.y134{bottom:644.933333pt;}
.y6b{bottom:649.733333pt;}
.y19e{bottom:652.613333pt;}
.y43{bottom:654.053333pt;}
.y133{bottom:660.533333pt;}
.y15f{bottom:660.613333pt;}
.y6a{bottom:665.413333pt;}
.yc{bottom:665.893333pt;}
.y19d{bottom:668.213333pt;}
.y42{bottom:669.653333pt;}
.y94{bottom:672.613333pt;}
.y132{bottom:676.213333pt;}
.y69{bottom:681.013333pt;}
.y41{bottom:685.333333pt;}
.y93{bottom:688.293333pt;}
.y131{bottom:691.813333pt;}
.y68{bottom:696.613333pt;}
.yb{bottom:697.733333pt;}
.y15e{bottom:699.813333pt;}
.y40{bottom:700.933333pt;}
.y92{bottom:703.893333pt;}
.y130{bottom:707.493333pt;}
.y67{bottom:712.293333pt;}
.y15d{bottom:715.493333pt;}
.y3f{bottom:716.613333pt;}
.yee{bottom:719.493333pt;}
.y91{bottom:719.573333pt;}
.y12f{bottom:723.093333pt;}
.y66{bottom:727.893333pt;}
.ya{bottom:729.733333pt;}
.y15c{bottom:731.093333pt;}
.y3e{bottom:732.213333pt;}
.y90{bottom:735.173333pt;}
.y65{bottom:743.573333pt;}
.y19c{bottom:746.693333pt;}
.y12e{bottom:747.013333pt;}
.y3d{bottom:747.813333pt;}
.y8f{bottom:750.773333pt;}
.y15b{bottom:754.693333pt;}
.yb8{bottom:758.773333pt;}
.y64{bottom:759.173333pt;}
.y19b{bottom:762.373333pt;}
.y3c{bottom:763.493333pt;}
.y9{bottom:765.093333pt;}
.y8e{bottom:766.453333pt;}
.y15a{bottom:770.373333pt;}
.y63{bottom:774.773333pt;}
.y19a{bottom:777.973333pt;}
.y3b{bottom:779.093333pt;}
.y8{bottom:781.093333pt;}
.y12d{bottom:789.893333pt;}
.y8d{bottom:790.053333pt;}
.y62{bottom:790.453333pt;}
.y159{bottom:793.973333pt;}
.y3a{bottom:794.693333pt;}
.y7{bottom:797.093333pt;}
.y106{bottom:797.653333pt;}
.y199{bottom:801.653333pt;}
.y12c{bottom:805.573333pt;}
.y61{bottom:806.053333pt;}
.y158{bottom:809.653333pt;}
.y39{bottom:810.373333pt;}
.y6{bottom:813.093333pt;}
.y198{bottom:817.253333pt;}
.y12b{bottom:821.173333pt;}
.yfb{bottom:821.333333pt;}
.y60{bottom:821.733333pt;}
.y157{bottom:825.253333pt;}
.y38{bottom:825.973333pt;}
.y12a{bottom:836.853333pt;}
.y5f{bottom:837.333333pt;}
.y197{bottom:840.853333pt;}
.y37{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.y156{bottom:848.853333pt;}
.y129{bottom:852.453333pt;}
.y5e{bottom:852.933333pt;}
.y196{bottom:856.533333pt;}
.y36{bottom:857.253333pt;}
.y155{bottom:864.533333pt;}
.y128{bottom:868.053333pt;}
.y5d{bottom:868.613333pt;}
.y35{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y154{bottom:880.133333pt;}
.y5c{bottom:884.213333pt;}
.y34{bottom:888.533333pt;}
.y195{bottom:895.813333pt;}
.y126{bottom:897.413333pt;}
.y3{bottom:897.840000pt;}
.y5b{bottom:899.840000pt;}
.y153{bottom:903.840000pt;}
.y33{bottom:904.160000pt;}
.y5a{bottom:915.520000pt;}
.y152{bottom:919.440000pt;}
.y32{bottom:919.840000pt;}
.y125{bottom:921.680000pt;}
.y59{bottom:931.120000pt;}
.y151{bottom:935.040000pt;}
.y31{bottom:935.440000pt;}
.y8c{bottom:939.440000pt;}
.y17c{bottom:943.040000pt;}
.y124{bottom:946.000000pt;}
.y58{bottom:946.800000pt;}
.y30{bottom:951.040000pt;}
.y105{bottom:955.040000pt;}
.y150{bottom:958.720000pt;}
.y2f{bottom:966.720000pt;}
.y123{bottom:970.320000pt;}
.y57{bottom:970.400000pt;}
.y14f{bottom:974.320000pt;}
.yb6{bottom:974.640000pt;}
.y2e{bottom:982.320000pt;}
.yfa{bottom:990.320000pt;}
.y2d{bottom:998.000000pt;}
.y56{bottom:1002.320000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h24{height:23.600000pt;}
.h27{height:23.626667pt;}
.h25{height:23.680000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:34.804688pt;}
.h1c{height:35.280000pt;}
.hd{height:39.306667pt;}
.ha{height:45.246562pt;}
.h7{height:46.499062pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.h10{height:50.960000pt;}
.h28{height:54.927899pt;}
.hc{height:55.631875pt;}
.h9{height:55.687500pt;}
.hb{height:60.961875pt;}
.h4{height:64.875937pt;}
.h26{height:65.781915pt;}
.h21{height:70.560000pt;}
.h20{height:105.840000pt;}
.hf{height:117.440000pt;}
.h15{height:121.440000pt;}
.h1b{height:133.040000pt;}
.h1a{height:137.040000pt;}
.h1f{height:137.066667pt;}
.h1e{height:137.120000pt;}
.h14{height:141.040000pt;}
.h19{height:141.066667pt;}
.h17{height:152.720000pt;}
.h16{height:152.746667pt;}
.h13{height:156.666667pt;}
.h23{height:156.720000pt;}
.h22{height:156.746667pt;}
.he{height:168.320000pt;}
.h1d{height:168.346667pt;}
.h18{height:183.920000pt;}
.h12{height:215.200000pt;}
.h11{height:215.226667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:77.280000pt;}
.w8{width:90.186667pt;}
.w4{width:123.066667pt;}
.w6{width:130.746667pt;}
.w7{width:156.960000pt;}
.wd{width:165.840000pt;}
.w9{width:173.600000pt;}
.w5{width:181.120000pt;}
.wb{width:195.200000pt;}
.wa{width:207.386667pt;}
.wc{width:214.346667pt;}
.we{width:278.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:3.520000pt;}
.x10{left:6.800000pt;}
.x1{left:60.480000pt;}
.xb{left:62.800000pt;}
.xf{left:67.040000pt;}
.x13{left:98.879988pt;}
.x5{left:124.559988pt;}
.x7{left:139.040000pt;}
.xc{left:153.626667pt;}
.x2{left:180.266655pt;}
.x8{left:262.746667pt;}
.x11{left:282.026667pt;}
.xd{left:327.946667pt;}
.x9{left:444.506667pt;}
.x12{left:448.506667pt;}
.xe{left:536.053333pt;}
.x4{left:557.013322pt;}
.xa{left:575.893333pt;}
.x3{left:704.053322pt;}
}




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