
    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_9bca8ec9828241acff542ff3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_5f84c4bb99522b64f04eca83.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939941;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_4871c9160dea5fcfcb81f451.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.122070;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3e75ed42af727cccaf0fb5a3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.122070;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_bce97150cdfa8228cc8ec3d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e43e307438d2a8f4d665e3a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_26abf6aa365b498bf2679c8f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8c8263264b5d0e65f9d20866.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.160000px;}
.v1{vertical-align:22.320000px;}
.v6{vertical-align:38.160000px;}
.v5{vertical-align:46.080000px;}
.v4{vertical-align:48.240000px;}
.ls7{letter-spacing:-0.774000px;}
.ls24{letter-spacing:-0.612000px;}
.ls25{letter-spacing:-0.584400px;}
.ls5{letter-spacing:-0.540000px;}
.ls26{letter-spacing:-0.460200px;}
.ls9{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.331200px;}
.ls1c{letter-spacing:-0.328800px;}
.lsf{letter-spacing:-0.277200px;}
.ls1d{letter-spacing:-0.157800px;}
.ls1f{letter-spacing:-0.103800px;}
.ls8{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.078000px;}
.ls23{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.109440px;}
.ls21{letter-spacing:0.135360px;}
.ls20{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.399600px;}
.ls28{letter-spacing:0.480000px;}
.ls1a{letter-spacing:0.555840px;}
.ls15{letter-spacing:0.909360px;}
.ls19{letter-spacing:1.119600px;}
.lsb{letter-spacing:2.460960px;}
.lsd{letter-spacing:14.079600px;}
.lsc{letter-spacing:14.199600px;}
.ls13{letter-spacing:14.259600px;}
.ls16{letter-spacing:15.420960px;}
.ls18{letter-spacing:16.093440px;}
.ls12{letter-spacing:16.140960px;}
.ls29{letter-spacing:16.506720px;}
.ls11{letter-spacing:16.860960px;}
.ls10{letter-spacing:17.679600px;}
.ls4{letter-spacing:46.026720px;}
.lsa{letter-spacing:64.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.328000px;}
.wse{word-spacing:-13.225200px;}
.ws8{word-spacing:-13.147200px;}
.wsf{word-spacing:-13.043400px;}
.wsd{word-spacing:-12.989400px;}
.wsa{word-spacing:-12.870000px;}
.wsb{word-spacing:-12.818400px;}
.ws7{word-spacing:-12.816000px;}
.ws4{word-spacing:0.000000px;}
.wsc{word-spacing:0.240480px;}
.ws9{word-spacing:0.344160px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._5{margin-left:-1232.326080px;}
._4{margin-left:-1171.774080px;}
._6{margin-left:-985.800000px;}
._9{margin-left:-6.743760px;}
._7{margin-left:-4.553280px;}
._b{margin-left:-3.286800px;}
._8{margin-left:-2.053440px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._a{width:2.973600px;}
._d{width:4.663680px;}
._c{width:5.871120px;}
._17{width:7.447200px;}
._26{width:9.060720px;}
._24{width:10.660080px;}
._23{width:11.690160px;}
._e{width:12.793680px;}
._f{width:13.840560px;}
._1a{width:16.066800px;}
._28{width:17.148720px;}
._19{width:18.167040px;}
._56{width:19.179360px;}
._11{width:20.196240px;}
._10{width:21.274560px;}
._27{width:22.298400px;}
._29{width:23.343360px;}
._12{width:24.456720px;}
._18{width:25.604640px;}
._1d{width:27.407040px;}
._34{width:28.559760px;}
._33{width:29.797440px;}
._14{width:30.895920px;}
._25{width:31.962960px;}
._20{width:33.066720px;}
._3d{width:34.219680px;}
._15{width:35.235600px;}
._16{width:36.282960px;}
._41{width:37.290240px;}
._2a{width:38.641920px;}
._1f{width:40.255440px;}
._1e{width:41.353920px;}
._1c{width:42.967440px;}
._1b{width:44.102880px;}
._22{width:45.238320px;}
._21{width:46.612800px;}
._3e{width:48.606480px;}
._36{width:49.637760px;}
._31{width:51.513120px;}
._2f{width:53.283120px;}
._37{width:54.419520px;}
._38{width:55.515120px;}
._39{width:57.381360px;}
._4c{width:59.262000px;}
._42{width:60.753120px;}
._3c{width:62.186160px;}
._3b{width:63.285840px;}
._40{width:64.936320px;}
._2c{width:66.490080px;}
._2e{width:67.648320px;}
._3a{width:69.119520px;}
._47{width:70.360320px;}
._32{width:71.509920px;}
._43{width:73.362480px;}
._48{width:74.856480px;}
._35{width:75.954960px;}
._44{width:79.411680px;}
._2b{width:80.832480px;}
._45{width:82.349280px;}
._59{width:83.582400px;}
._2d{width:85.434000px;}
._54{width:87.428880px;}
._46{width:92.127120px;}
._51{width:93.584160px;}
._49{width:94.898880px;}
._58{width:97.393440px;}
._57{width:98.723520px;}
._53{width:102.488400px;}
._4a{width:113.424480px;}
._30{width:116.987280px;}
._3f{width:135.954000px;}
._13{width:155.664000px;}
._4e{width:163.420800px;}
._4f{width:165.063360px;}
._55{width:177.268560px;}
._4b{width:199.450800px;}
._52{width:242.328480px;}
._50{width:418.798080px;}
._4d{width:885.164400px;}
.fc1{color:rgb(0,78,154);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:5.760000px;}
.y124{bottom:5.805000px;}
.y108{bottom:5.940000px;}
.y8{bottom:10.980000px;}
.y180{bottom:14.400000px;}
.y185{bottom:14.580000px;}
.y106{bottom:25.560000px;}
.y123{bottom:25.605000px;}
.y10b{bottom:25.740000px;}
.y17d{bottom:45.390000px;}
.y179{bottom:45.540000px;}
.y9{bottom:57.420000px;}
.y6{bottom:72.900000px;}
.y9b{bottom:101.520000px;}
.yd3{bottom:105.120000px;}
.y17e{bottom:106.740000px;}
.y1b3{bottom:110.340000px;}
.y6d{bottom:110.520000px;}
.y152{bottom:111.600000px;}
.y121{bottom:113.040000px;}
.y36{bottom:115.560000px;}
.ybf{bottom:116.460000px;}
.y9a{bottom:121.320000px;}
.y17c{bottom:121.500000px;}
.yd2{bottom:124.920000px;}
.y1b2{bottom:130.140000px;}
.y6c{bottom:130.320000px;}
.y133{bottom:130.680000px;}
.y151{bottom:131.580000px;}
.y120{bottom:132.840000px;}
.y35{bottom:135.540000px;}
.ybe{bottom:136.260000px;}
.y99{bottom:141.300000px;}
.yd1{bottom:144.720000px;}
.y1b1{bottom:149.940000px;}
.y6b{bottom:150.300000px;}
.y132{bottom:150.480000px;}
.y150{bottom:151.380000px;}
.y11f{bottom:152.670000px;}
.y34{bottom:155.370000px;}
.ybd{bottom:156.090000px;}
.y98{bottom:161.130000px;}
.yd0{bottom:164.550000px;}
.y1b0{bottom:169.770000px;}
.y6a{bottom:170.130000px;}
.y131{bottom:170.310000px;}
.y14f{bottom:171.210000px;}
.y11e{bottom:172.470000px;}
.y33{bottom:175.170000px;}
.ybc{bottom:176.070000px;}
.y97{bottom:180.930000px;}
.y17b{bottom:181.650000px;}
.ycf{bottom:184.350000px;}
.y14e{bottom:185.970000px;}
.y130{bottom:186.870000px;}
.y1af{bottom:189.570000px;}
.y69{bottom:189.930000px;}
.y11d{bottom:192.450000px;}
.y32{bottom:194.970000px;}
.ybb{bottom:195.870000px;}
.y96{bottom:200.730000px;}
.yce{bottom:204.330000px;}
.y14d{bottom:206.490000px;}
.y1ae{bottom:209.550000px;}
.y68{bottom:209.730000px;}
.y11c{bottom:212.250000px;}
.y31{bottom:214.770000px;}
.yba{bottom:215.670000px;}
.y95{bottom:220.530000px;}
.ycd{bottom:224.130000px;}
.y14c{bottom:227.190000px;}
.y1ad{bottom:229.350000px;}
.y67{bottom:229.530000px;}
.y11b{bottom:232.050000px;}
.y30{bottom:234.750000px;}
.yb9{bottom:235.470000px;}
.y94{bottom:240.510000px;}
.y17a{bottom:241.950000px;}
.ycc{bottom:244.110000px;}
.y14b{bottom:247.710000px;}
.y1ac{bottom:249.150000px;}
.y66{bottom:249.510000px;}
.y11a{bottom:251.850000px;}
.y2f{bottom:254.550000px;}
.yb8{bottom:255.270000px;}
.y93{bottom:260.310000px;}
.ycb{bottom:264.270000px;}
.y193{bottom:267.330000px;}
.y119{bottom:268.410000px;}
.y1ab{bottom:268.950000px;}
.y65{bottom:269.310000px;}
.y2e{bottom:274.350000px;}
.yb7{bottom:275.250000px;}
.y92{bottom:280.110000px;}
.yca{bottom:284.610000px;}
.y192{bottom:287.130000px;}
.y1aa{bottom:288.750000px;}
.y14a{bottom:288.930000px;}
.y64{bottom:289.110000px;}
.y2d{bottom:294.150000px;}
.yb6{bottom:295.050000px;}
.y163{bottom:295.590000px;}
.y91{bottom:299.910000px;}
.y178{bottom:302.250000px;}
.yc9{bottom:304.770000px;}
.y191{bottom:306.930000px;}
.y1a9{bottom:308.730000px;}
.y63{bottom:308.910000px;}
.y149{bottom:309.450000px;}
.y2c{bottom:313.950000px;}
.yb5{bottom:314.850000px;}
.y162{bottom:315.390000px;}
.y90{bottom:319.710000px;}
.yc8{bottom:324.570000px;}
.y190{bottom:326.730000px;}
.y1a8{bottom:328.530000px;}
.y62{bottom:328.710000px;}
.y148{bottom:330.150000px;}
.y2b{bottom:333.930000px;}
.yb4{bottom:334.650000px;}
.y161{bottom:335.190000px;}
.y8f{bottom:339.690000px;}
.yc7{bottom:344.370000px;}
.y18f{bottom:346.710000px;}
.y1a7{bottom:348.330000px;}
.y61{bottom:348.690000px;}
.y2a{bottom:353.730000px;}
.yb3{bottom:354.450000px;}
.y160{bottom:355.170000px;}
.y147{bottom:356.430000px;}
.y8e{bottom:359.490000px;}
.y111{bottom:360.930000px;}
.y177{bottom:362.550000px;}
.yc6{bottom:364.350000px;}
.y18e{bottom:366.510000px;}
.y1a6{bottom:368.130000px;}
.y60{bottom:368.490000px;}
.y29{bottom:373.530000px;}
.yb2{bottom:374.430000px;}
.y15f{bottom:374.970000px;}
.y146{bottom:376.230000px;}
.y8d{bottom:379.290000px;}
.y110{bottom:380.730000px;}
.y18d{bottom:383.070000px;}
.yc5{bottom:385.230000px;}
.y1a5{bottom:387.930000px;}
.y5f{bottom:388.290000px;}
.y28{bottom:393.330000px;}
.yb1{bottom:394.230000px;}
.y15e{bottom:394.770000px;}
.y145{bottom:396.210000px;}
.y8c{bottom:399.090000px;}
.y10f{bottom:400.575000px;}
.yc4{bottom:405.075000px;}
.y1a4{bottom:407.955000px;}
.y5e{bottom:408.135000px;}
.y176{bottom:408.855000px;}
.y15d{bottom:411.375000px;}
.y27{bottom:413.175000px;}
.yb0{bottom:414.075000px;}
.y144{bottom:416.055000px;}
.y8b{bottom:418.935000px;}
.y10e{bottom:420.375000px;}
.yc3{bottom:424.875000px;}
.y1a3{bottom:427.755000px;}
.y5d{bottom:427.935000px;}
.y175{bottom:428.655000px;}
.y26{bottom:433.155000px;}
.yaf{bottom:433.875000px;}
.y10d{bottom:435.135000px;}
.y143{bottom:435.855000px;}
.y8a{bottom:438.915000px;}
.yc2{bottom:444.675000px;}
.y1a2{bottom:447.555000px;}
.y5c{bottom:447.915000px;}
.y174{bottom:448.455000px;}
.y25{bottom:452.955000px;}
.yae{bottom:453.675000px;}
.y142{bottom:455.655000px;}
.y89{bottom:458.715000px;}
.yc1{bottom:464.475000px;}
.y1a1{bottom:467.355000px;}
.y5b{bottom:467.715000px;}
.y173{bottom:468.255000px;}
.y24{bottom:472.755000px;}
.yad{bottom:473.475000px;}
.y141{bottom:475.455000px;}
.y10c{bottom:475.635000px;}
.y88{bottom:478.515000px;}
.yc0{bottom:484.455000px;}
.y1a0{bottom:487.155000px;}
.y5a{bottom:487.515000px;}
.y172{bottom:488.055000px;}
.y23{bottom:492.555000px;}
.yac{bottom:493.455000px;}
.y140{bottom:495.435000px;}
.y87{bottom:498.315000px;}
.y19f{bottom:507.135000px;}
.y59{bottom:507.315000px;}
.y171{bottom:508.035000px;}
.y22{bottom:512.355000px;}
.yab{bottom:513.255000px;}
.y13f{bottom:515.235000px;}
.y10a{bottom:515.955000px;}
.y86{bottom:518.115000px;}
.y19e{bottom:526.935000px;}
.y58{bottom:527.115000px;}
.y170{bottom:527.835000px;}
.y21{bottom:532.335000px;}
.yaa{bottom:533.055000px;}
.y13e{bottom:535.035000px;}
.y85{bottom:538.095000px;}
.y19d{bottom:546.735000px;}
.y57{bottom:547.095000px;}
.y16f{bottom:547.635000px;}
.y20{bottom:552.135000px;}
.ya9{bottom:552.855000px;}
.y13d{bottom:554.835000px;}
.y109{bottom:556.455000px;}
.y84{bottom:557.895000px;}
.y19c{bottom:566.535000px;}
.y56{bottom:566.895000px;}
.y16e{bottom:567.435000px;}
.y1f{bottom:571.935000px;}
.ya8{bottom:572.655000px;}
.y13c{bottom:574.635000px;}
.y107{bottom:576.975000px;}
.y83{bottom:577.695000px;}
.y19b{bottom:586.335000px;}
.y55{bottom:586.695000px;}
.y16d{bottom:587.235000px;}
.y1e{bottom:591.735000px;}
.ya7{bottom:592.635000px;}
.y13b{bottom:594.615000px;}
.y82{bottom:597.495000px;}
.y105{bottom:599.115000px;}
.y19a{bottom:606.315000px;}
.y54{bottom:606.495000px;}
.y16c{bottom:607.215000px;}
.y1d{bottom:611.535000px;}
.ya6{bottom:612.435000px;}
.y13a{bottom:614.415000px;}
.y81{bottom:617.295000px;}
.y199{bottom:626.115000px;}
.y53{bottom:626.295000px;}
.y16b{bottom:627.015000px;}
.ya5{bottom:632.235000px;}
.y1c{bottom:633.675000px;}
.y139{bottom:634.215000px;}
.y80{bottom:637.275000px;}
.y104{bottom:645.375000px;}
.y198{bottom:645.915000px;}
.y52{bottom:646.275000px;}
.y16a{bottom:646.815000px;}
.ya4{bottom:652.065000px;}
.y1b{bottom:653.505000px;}
.y138{bottom:654.045000px;}
.y7f{bottom:657.105000px;}
.y12f{bottom:659.985000px;}
.y103{bottom:665.205000px;}
.y197{bottom:665.745000px;}
.y51{bottom:666.105000px;}
.y169{bottom:666.645000px;}
.y118{bottom:667.905000px;}
.ya3{bottom:671.865000px;}
.y1a{bottom:673.485000px;}
.y137{bottom:673.845000px;}
.y7e{bottom:676.905000px;}
.y12e{bottom:679.965000px;}
.yeb{bottom:685.005000px;}
.y196{bottom:685.545000px;}
.y50{bottom:685.905000px;}
.y168{bottom:686.445000px;}
.y117{bottom:687.705000px;}
.ya2{bottom:691.845000px;}
.y19{bottom:693.285000px;}
.y136{bottom:693.825000px;}
.y7d{bottom:696.705000px;}
.y12d{bottom:699.765000px;}
.yea{bottom:704.805000px;}
.y102{bottom:705.525000px;}
.y4f{bottom:705.705000px;}
.y167{bottom:706.425000px;}
.y116{bottom:707.505000px;}
.ya1{bottom:708.405000px;}
.y18{bottom:713.085000px;}
.y135{bottom:713.625000px;}
.y7c{bottom:716.505000px;}
.y12c{bottom:719.565000px;}
.ye9{bottom:724.785000px;}
.y101{bottom:725.325000px;}
.y4e{bottom:725.505000px;}
.y166{bottom:726.225000px;}
.y115{bottom:727.485000px;}
.y134{bottom:730.185000px;}
.y17{bottom:732.885000px;}
.y7b{bottom:736.485000px;}
.y12b{bottom:739.365000px;}
.ye8{bottom:744.585000px;}
.y195{bottom:745.125000px;}
.y100{bottom:745.305000px;}
.y4d{bottom:745.485000px;}
.y165{bottom:746.025000px;}
.y114{bottom:747.285000px;}
.y16{bottom:752.685000px;}
.y12a{bottom:754.125000px;}
.y7a{bottom:756.285000px;}
.y194{bottom:761.685000px;}
.y164{bottom:762.585000px;}
.ye7{bottom:764.385000px;}
.yff{bottom:765.105000px;}
.y4c{bottom:765.285000px;}
.y113{bottom:767.085000px;}
.y15{bottom:772.665000px;}
.y129{bottom:774.825000px;}
.y79{bottom:776.085000px;}
.y18c{bottom:782.385000px;}
.y112{bottom:783.645000px;}
.ye6{bottom:784.185000px;}
.yfe{bottom:784.905000px;}
.y4b{bottom:785.085000px;}
.y14{bottom:792.285000px;}
.y128{bottom:795.345000px;}
.y78{bottom:795.885000px;}
.y18b{bottom:802.185000px;}
.ye5{bottom:803.985000px;}
.yfd{bottom:804.705000px;}
.y4a{bottom:804.885000px;}
.y13{bottom:814.425000px;}
.y77{bottom:815.685000px;}
.y127{bottom:816.045000px;}
.y18a{bottom:821.985000px;}
.ye4{bottom:823.965000px;}
.yfc{bottom:824.505000px;}
.y49{bottom:824.685000px;}
.y12{bottom:834.405000px;}
.y76{bottom:835.665000px;}
.y126{bottom:836.565000px;}
.y189{bottom:841.785000px;}
.ye3{bottom:843.765000px;}
.yfb{bottom:844.485000px;}
.y48{bottom:844.665000px;}
.y11{bottom:854.205000px;}
.y75{bottom:855.465000px;}
.y125{bottom:857.085000px;}
.y15c{bottom:860.685000px;}
.y188{bottom:861.765000px;}
.ye2{bottom:863.565000px;}
.yfa{bottom:864.285000px;}
.y47{bottom:864.465000px;}
.y10{bottom:874.005000px;}
.y74{bottom:875.265000px;}
.y15b{bottom:880.485000px;}
.y187{bottom:881.565000px;}
.ye1{bottom:883.365000px;}
.yf9{bottom:884.085000px;}
.y46{bottom:884.265000px;}
.yf{bottom:893.805000px;}
.y73{bottom:895.065000px;}
.y186{bottom:896.325000px;}
.y122{bottom:897.585000px;}
.y15a{bottom:900.330000px;}
.ye0{bottom:903.210000px;}
.yf8{bottom:903.930000px;}
.y45{bottom:904.110000px;}
.ye{bottom:914.190000px;}
.y72{bottom:914.910000px;}
.y184{bottom:916.890000px;}
.y159{bottom:920.310000px;}
.ydf{bottom:923.190000px;}
.yf7{bottom:923.730000px;}
.y44{bottom:923.910000px;}
.y71{bottom:934.890000px;}
.yd{bottom:935.610000px;}
.y158{bottom:940.110000px;}
.yde{bottom:942.990000px;}
.yf6{bottom:943.710000px;}
.y43{bottom:943.890000px;}
.y183{bottom:946.230000px;}
.y70{bottom:954.690000px;}
.yc{bottom:959.010000px;}
.y157{bottom:959.910000px;}
.ydd{bottom:962.790000px;}
.yf5{bottom:963.510000px;}
.y42{bottom:963.690000px;}
.y182{bottom:966.750000px;}
.y6f{bottom:974.490000px;}
.y156{bottom:974.670000px;}
.ydc{bottom:982.770000px;}
.yf4{bottom:983.310000px;}
.y41{bottom:983.490000px;}
.y181{bottom:987.450000px;}
.yb{bottom:990.690000px;}
.y6e{bottom:994.290000px;}
.y155{bottom:995.190000px;}
.ydb{bottom:1002.930000px;}
.yf3{bottom:1003.110000px;}
.y40{bottom:1003.290000px;}
.y17f{bottom:1007.970000px;}
.ya0{bottom:1014.090000px;}
.y154{bottom:1015.890000px;}
.ya{bottom:1022.550000px;}
.yda{bottom:1022.730000px;}
.yf2{bottom:1022.910000px;}
.y3f{bottom:1023.090000px;}
.y9f{bottom:1034.070000px;}
.y153{bottom:1036.410000px;}
.yd9{bottom:1042.530000px;}
.yf1{bottom:1042.890000px;}
.y3e{bottom:1043.070000px;}
.y5{bottom:1050.630000px;}
.y9e{bottom:1053.870000px;}
.yd8{bottom:1062.330000px;}
.yf0{bottom:1062.690000px;}
.y3d{bottom:1062.870000px;}
.y9d{bottom:1073.670000px;}
.y4{bottom:1081.950000px;}
.yd7{bottom:1082.130000px;}
.yef{bottom:1082.490000px;}
.y3c{bottom:1082.670000px;}
.y9c{bottom:1093.470000px;}
.yd6{bottom:1102.110000px;}
.yee{bottom:1102.290000px;}
.y3b{bottom:1102.470000px;}
.y3{bottom:1112.730000px;}
.yd5{bottom:1121.910000px;}
.yed{bottom:1122.090000px;}
.y3a{bottom:1122.270000px;}
.yec{bottom:1131.630000px;}
.yd4{bottom:1141.890000px;}
.y39{bottom:1142.250000px;}
.y2{bottom:1143.690000px;}
.y38{bottom:1171.620000px;}
.y1{bottom:1177.560000px;}
.y37{bottom:1193.400000px;}
.h10{height:19.800000px;}
.h17{height:19.836000px;}
.hf{height:19.980000px;}
.h5{height:21.240000px;}
.h7{height:28.153828px;}
.h15{height:28.440000px;}
.h16{height:28.620000px;}
.he{height:39.600000px;}
.h12{height:39.636000px;}
.h11{height:39.780000px;}
.h9{height:43.273477px;}
.h3{height:47.965781px;}
.h8{height:48.224531px;}
.h18{height:49.255313px;}
.h4{height:53.573906px;}
.ha{height:57.514219px;}
.hb{height:57.634219px;}
.h6{height:59.383125px;}
.h14{height:59.436000px;}
.h13{height:59.580000px;}
.h2{height:69.341836px;}
.hd{height:91.733906px;}
.hc{height:98.604141px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:52.560000px;}
.w3{width:57.816000px;}
.wd{width:63.000000px;}
.w11{width:71.280000px;}
.w10{width:71.316000px;}
.wc{width:83.556000px;}
.wf{width:84.780000px;}
.w14{width:108.756000px;}
.w13{width:114.516000px;}
.w7{width:128.700000px;}
.w5{width:128.880000px;}
.w6{width:128.916000px;}
.w9{width:161.280000px;}
.w8{width:161.310000px;}
.we{width:215.310000px;}
.wa{width:433.335000px;}
.w12{width:520.845000px;}
.w4{width:718.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x39{left:73.800000px;}
.x8{left:76.499987px;}
.x18{left:81.539987px;}
.x25{left:95.075987px;}
.x2f{left:97.775987px;}
.x10{left:100.295987px;}
.x3c{left:107.135987px;}
.x30{left:116.136000px;}
.x4{left:120.636000px;}
.x1c{left:122.796000px;}
.x7{left:124.595987px;}
.x28{left:129.276000px;}
.x27{left:141.155987px;}
.x6{left:159.159000px;}
.x19{left:171.749987px;}
.x15{left:200.189987px;}
.x31{left:201.630000px;}
.x23{left:212.969987px;}
.x22{left:222.689987px;}
.xd{left:233.849987px;}
.x11{left:247.889987px;}
.x1d{left:252.390000px;}
.x32{left:273.675000px;}
.xe{left:284.114987px;}
.xc{left:307.514987px;}
.x9{left:310.934987px;}
.xb{left:328.574987px;}
.x2c{left:338.835000px;}
.x33{left:345.675000px;}
.x2e{left:374.474987px;}
.x1e{left:382.035000px;}
.x26{left:402.914987px;}
.x5{left:410.649000px;}
.x34{left:417.675000px;}
.xa{left:446.504987px;}
.xf{left:473.504987px;}
.x16{left:475.304987px;}
.x35{left:489.705000px;}
.x12{left:500.504987px;}
.x1f{left:511.665000px;}
.x13{left:527.504987px;}
.x2d{left:554.865000px;}
.x36{left:561.705000px;}
.x29{left:563.325000px;}
.x17{left:583.304987px;}
.x3a{left:595.365000px;}
.x24{left:608.865000px;}
.x2a{left:616.605000px;}
.x1a{left:619.484987px;}
.x37{left:633.750000px;}
.x20{left:641.490000px;}
.x1b{left:663.089987px;}
.x14{left:670.469987px;}
.x2b{left:700.890000px;}
.x38{left:705.750000px;}
.x3b{left:710.610000px;}
.x21{left:743.549987px;}
@media print{
.v3{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.920000pt;}
.v1{vertical-align:19.840000pt;}
.v6{vertical-align:33.920000pt;}
.v5{vertical-align:40.960000pt;}
.v4{vertical-align:42.880000pt;}
.ls7{letter-spacing:-0.688000pt;}
.ls24{letter-spacing:-0.544000pt;}
.ls25{letter-spacing:-0.519467pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls26{letter-spacing:-0.409067pt;}
.ls9{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.294400pt;}
.ls1c{letter-spacing:-0.292267pt;}
.lsf{letter-spacing:-0.246400pt;}
.ls1d{letter-spacing:-0.140267pt;}
.ls1f{letter-spacing:-0.092267pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.069333pt;}
.ls23{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.097280pt;}
.ls21{letter-spacing:0.120320pt;}
.ls20{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.355200pt;}
.ls28{letter-spacing:0.426667pt;}
.ls1a{letter-spacing:0.494080pt;}
.ls15{letter-spacing:0.808320pt;}
.ls19{letter-spacing:0.995200pt;}
.lsb{letter-spacing:2.187520pt;}
.lsd{letter-spacing:12.515200pt;}
.lsc{letter-spacing:12.621867pt;}
.ls13{letter-spacing:12.675200pt;}
.ls16{letter-spacing:13.707520pt;}
.ls18{letter-spacing:14.305280pt;}
.ls12{letter-spacing:14.347520pt;}
.ls29{letter-spacing:14.672640pt;}
.ls11{letter-spacing:14.987520pt;}
.ls10{letter-spacing:15.715200pt;}
.ls4{letter-spacing:40.912640pt;}
.lsa{letter-spacing:56.912640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.ws12{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.736000pt;}
.wse{word-spacing:-11.755733pt;}
.ws8{word-spacing:-11.686400pt;}
.wsf{word-spacing:-11.594133pt;}
.wsd{word-spacing:-11.546133pt;}
.wsa{word-spacing:-11.440000pt;}
.wsb{word-spacing:-11.394133pt;}
.ws7{word-spacing:-11.392000pt;}
.ws4{word-spacing:0.000000pt;}
.wsc{word-spacing:0.213760pt;}
.ws9{word-spacing:0.305920pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._5{margin-left:-1095.400960pt;}
._4{margin-left:-1041.576960pt;}
._6{margin-left:-876.266667pt;}
._9{margin-left:-5.994453pt;}
._7{margin-left:-4.047360pt;}
._b{margin-left:-2.921600pt;}
._8{margin-left:-1.825280pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._a{width:2.643200pt;}
._d{width:4.145493pt;}
._c{width:5.218773pt;}
._17{width:6.619733pt;}
._26{width:8.053973pt;}
._24{width:9.475627pt;}
._23{width:10.391253pt;}
._e{width:11.372160pt;}
._f{width:12.302720pt;}
._1a{width:14.281600pt;}
._28{width:15.243307pt;}
._19{width:16.148480pt;}
._56{width:17.048320pt;}
._11{width:17.952213pt;}
._10{width:18.910720pt;}
._27{width:19.820800pt;}
._29{width:20.749653pt;}
._12{width:21.739307pt;}
._18{width:22.759680pt;}
._1d{width:24.361813pt;}
._34{width:25.386453pt;}
._33{width:26.486613pt;}
._14{width:27.463040pt;}
._25{width:28.411520pt;}
._20{width:29.392640pt;}
._3d{width:30.417493pt;}
._15{width:31.320533pt;}
._16{width:32.251520pt;}
._41{width:33.146880pt;}
._2a{width:34.348373pt;}
._1f{width:35.782613pt;}
._1e{width:36.759040pt;}
._1c{width:38.193280pt;}
._1b{width:39.202560pt;}
._22{width:40.211840pt;}
._21{width:41.433600pt;}
._3e{width:43.205760pt;}
._36{width:44.122453pt;}
._31{width:45.789440pt;}
._2f{width:47.362773pt;}
._37{width:48.372907pt;}
._38{width:49.346773pt;}
._39{width:51.005653pt;}
._4c{width:52.677333pt;}
._42{width:54.002773pt;}
._3c{width:55.276587pt;}
._3b{width:56.254080pt;}
._40{width:57.721173pt;}
._2c{width:59.102293pt;}
._2e{width:60.131840pt;}
._3a{width:61.439573pt;}
._47{width:62.542507pt;}
._32{width:63.564373pt;}
._43{width:65.211093pt;}
._48{width:66.539093pt;}
._35{width:67.515520pt;}
._44{width:70.588160pt;}
._2b{width:71.851093pt;}
._45{width:73.199360pt;}
._59{width:74.295467pt;}
._2d{width:75.941333pt;}
._54{width:77.714560pt;}
._46{width:81.890773pt;}
._51{width:83.185920pt;}
._49{width:84.354560pt;}
._58{width:86.571947pt;}
._57{width:87.754240pt;}
._53{width:91.100800pt;}
._4a{width:100.821760pt;}
._30{width:103.988693pt;}
._3f{width:120.848000pt;}
._13{width:138.368000pt;}
._4e{width:145.262933pt;}
._4f{width:146.722987pt;}
._55{width:157.572053pt;}
._4b{width:177.289600pt;}
._52{width:215.403093pt;}
._50{width:372.264960pt;}
._4d{width:786.812800pt;}
.fs5{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.120000pt;}
.y124{bottom:5.160000pt;}
.y108{bottom:5.280000pt;}
.y8{bottom:9.760000pt;}
.y180{bottom:12.800000pt;}
.y185{bottom:12.960000pt;}
.y106{bottom:22.720000pt;}
.y123{bottom:22.760000pt;}
.y10b{bottom:22.880000pt;}
.y17d{bottom:40.346667pt;}
.y179{bottom:40.480000pt;}
.y9{bottom:51.040000pt;}
.y6{bottom:64.800000pt;}
.y9b{bottom:90.240000pt;}
.yd3{bottom:93.440000pt;}
.y17e{bottom:94.880000pt;}
.y1b3{bottom:98.080000pt;}
.y6d{bottom:98.240000pt;}
.y152{bottom:99.200000pt;}
.y121{bottom:100.480000pt;}
.y36{bottom:102.720000pt;}
.ybf{bottom:103.520000pt;}
.y9a{bottom:107.840000pt;}
.y17c{bottom:108.000000pt;}
.yd2{bottom:111.040000pt;}
.y1b2{bottom:115.680000pt;}
.y6c{bottom:115.840000pt;}
.y133{bottom:116.160000pt;}
.y151{bottom:116.960000pt;}
.y120{bottom:118.080000pt;}
.y35{bottom:120.480000pt;}
.ybe{bottom:121.120000pt;}
.y99{bottom:125.600000pt;}
.yd1{bottom:128.640000pt;}
.y1b1{bottom:133.280000pt;}
.y6b{bottom:133.600000pt;}
.y132{bottom:133.760000pt;}
.y150{bottom:134.560000pt;}
.y11f{bottom:135.706667pt;}
.y34{bottom:138.106667pt;}
.ybd{bottom:138.746667pt;}
.y98{bottom:143.226667pt;}
.yd0{bottom:146.266667pt;}
.y1b0{bottom:150.906667pt;}
.y6a{bottom:151.226667pt;}
.y131{bottom:151.386667pt;}
.y14f{bottom:152.186667pt;}
.y11e{bottom:153.306667pt;}
.y33{bottom:155.706667pt;}
.ybc{bottom:156.506667pt;}
.y97{bottom:160.826667pt;}
.y17b{bottom:161.466667pt;}
.ycf{bottom:163.866667pt;}
.y14e{bottom:165.306667pt;}
.y130{bottom:166.106667pt;}
.y1af{bottom:168.506667pt;}
.y69{bottom:168.826667pt;}
.y11d{bottom:171.066667pt;}
.y32{bottom:173.306667pt;}
.ybb{bottom:174.106667pt;}
.y96{bottom:178.426667pt;}
.yce{bottom:181.626667pt;}
.y14d{bottom:183.546667pt;}
.y1ae{bottom:186.266667pt;}
.y68{bottom:186.426667pt;}
.y11c{bottom:188.666667pt;}
.y31{bottom:190.906667pt;}
.yba{bottom:191.706667pt;}
.y95{bottom:196.026667pt;}
.ycd{bottom:199.226667pt;}
.y14c{bottom:201.946667pt;}
.y1ad{bottom:203.866667pt;}
.y67{bottom:204.026667pt;}
.y11b{bottom:206.266667pt;}
.y30{bottom:208.666667pt;}
.yb9{bottom:209.306667pt;}
.y94{bottom:213.786667pt;}
.y17a{bottom:215.066667pt;}
.ycc{bottom:216.986667pt;}
.y14b{bottom:220.186667pt;}
.y1ac{bottom:221.466667pt;}
.y66{bottom:221.786667pt;}
.y11a{bottom:223.866667pt;}
.y2f{bottom:226.266667pt;}
.yb8{bottom:226.906667pt;}
.y93{bottom:231.386667pt;}
.ycb{bottom:234.906667pt;}
.y193{bottom:237.626667pt;}
.y119{bottom:238.586667pt;}
.y1ab{bottom:239.066667pt;}
.y65{bottom:239.386667pt;}
.y2e{bottom:243.866667pt;}
.yb7{bottom:244.666667pt;}
.y92{bottom:248.986667pt;}
.yca{bottom:252.986667pt;}
.y192{bottom:255.226667pt;}
.y1aa{bottom:256.666667pt;}
.y14a{bottom:256.826667pt;}
.y64{bottom:256.986667pt;}
.y2d{bottom:261.466667pt;}
.yb6{bottom:262.266667pt;}
.y163{bottom:262.746667pt;}
.y91{bottom:266.586667pt;}
.y178{bottom:268.666667pt;}
.yc9{bottom:270.906667pt;}
.y191{bottom:272.826667pt;}
.y1a9{bottom:274.426667pt;}
.y63{bottom:274.586667pt;}
.y149{bottom:275.066667pt;}
.y2c{bottom:279.066667pt;}
.yb5{bottom:279.866667pt;}
.y162{bottom:280.346667pt;}
.y90{bottom:284.186667pt;}
.yc8{bottom:288.506667pt;}
.y190{bottom:290.426667pt;}
.y1a8{bottom:292.026667pt;}
.y62{bottom:292.186667pt;}
.y148{bottom:293.466667pt;}
.y2b{bottom:296.826667pt;}
.yb4{bottom:297.466667pt;}
.y161{bottom:297.946667pt;}
.y8f{bottom:301.946667pt;}
.yc7{bottom:306.106667pt;}
.y18f{bottom:308.186667pt;}
.y1a7{bottom:309.626667pt;}
.y61{bottom:309.946667pt;}
.y2a{bottom:314.426667pt;}
.yb3{bottom:315.066667pt;}
.y160{bottom:315.706667pt;}
.y147{bottom:316.826667pt;}
.y8e{bottom:319.546667pt;}
.y111{bottom:320.826667pt;}
.y177{bottom:322.266667pt;}
.yc6{bottom:323.866667pt;}
.y18e{bottom:325.786667pt;}
.y1a6{bottom:327.226667pt;}
.y60{bottom:327.546667pt;}
.y29{bottom:332.026667pt;}
.yb2{bottom:332.826667pt;}
.y15f{bottom:333.306667pt;}
.y146{bottom:334.426667pt;}
.y8d{bottom:337.146667pt;}
.y110{bottom:338.426667pt;}
.y18d{bottom:340.506667pt;}
.yc5{bottom:342.426667pt;}
.y1a5{bottom:344.826667pt;}
.y5f{bottom:345.146667pt;}
.y28{bottom:349.626667pt;}
.yb1{bottom:350.426667pt;}
.y15e{bottom:350.906667pt;}
.y145{bottom:352.186667pt;}
.y8c{bottom:354.746667pt;}
.y10f{bottom:356.066667pt;}
.yc4{bottom:360.066667pt;}
.y1a4{bottom:362.626667pt;}
.y5e{bottom:362.786667pt;}
.y176{bottom:363.426667pt;}
.y15d{bottom:365.666667pt;}
.y27{bottom:367.266667pt;}
.yb0{bottom:368.066667pt;}
.y144{bottom:369.826667pt;}
.y8b{bottom:372.386667pt;}
.y10e{bottom:373.666667pt;}
.yc3{bottom:377.666667pt;}
.y1a3{bottom:380.226667pt;}
.y5d{bottom:380.386667pt;}
.y175{bottom:381.026667pt;}
.y26{bottom:385.026667pt;}
.yaf{bottom:385.666667pt;}
.y10d{bottom:386.786667pt;}
.y143{bottom:387.426667pt;}
.y8a{bottom:390.146667pt;}
.yc2{bottom:395.266667pt;}
.y1a2{bottom:397.826667pt;}
.y5c{bottom:398.146667pt;}
.y174{bottom:398.626667pt;}
.y25{bottom:402.626667pt;}
.yae{bottom:403.266667pt;}
.y142{bottom:405.026667pt;}
.y89{bottom:407.746667pt;}
.yc1{bottom:412.866667pt;}
.y1a1{bottom:415.426667pt;}
.y5b{bottom:415.746667pt;}
.y173{bottom:416.226667pt;}
.y24{bottom:420.226667pt;}
.yad{bottom:420.866667pt;}
.y141{bottom:422.626667pt;}
.y10c{bottom:422.786667pt;}
.y88{bottom:425.346667pt;}
.yc0{bottom:430.626667pt;}
.y1a0{bottom:433.026667pt;}
.y5a{bottom:433.346667pt;}
.y172{bottom:433.826667pt;}
.y23{bottom:437.826667pt;}
.yac{bottom:438.626667pt;}
.y140{bottom:440.386667pt;}
.y87{bottom:442.946667pt;}
.y19f{bottom:450.786667pt;}
.y59{bottom:450.946667pt;}
.y171{bottom:451.586667pt;}
.y22{bottom:455.426667pt;}
.yab{bottom:456.226667pt;}
.y13f{bottom:457.986667pt;}
.y10a{bottom:458.626667pt;}
.y86{bottom:460.546667pt;}
.y19e{bottom:468.386667pt;}
.y58{bottom:468.546667pt;}
.y170{bottom:469.186667pt;}
.y21{bottom:473.186667pt;}
.yaa{bottom:473.826667pt;}
.y13e{bottom:475.586667pt;}
.y85{bottom:478.306667pt;}
.y19d{bottom:485.986667pt;}
.y57{bottom:486.306667pt;}
.y16f{bottom:486.786667pt;}
.y20{bottom:490.786667pt;}
.ya9{bottom:491.426667pt;}
.y13d{bottom:493.186667pt;}
.y109{bottom:494.626667pt;}
.y84{bottom:495.906667pt;}
.y19c{bottom:503.586667pt;}
.y56{bottom:503.906667pt;}
.y16e{bottom:504.386667pt;}
.y1f{bottom:508.386667pt;}
.ya8{bottom:509.026667pt;}
.y13c{bottom:510.786667pt;}
.y107{bottom:512.866667pt;}
.y83{bottom:513.506667pt;}
.y19b{bottom:521.186667pt;}
.y55{bottom:521.506667pt;}
.y16d{bottom:521.986667pt;}
.y1e{bottom:525.986667pt;}
.ya7{bottom:526.786667pt;}
.y13b{bottom:528.546667pt;}
.y82{bottom:531.106667pt;}
.y105{bottom:532.546667pt;}
.y19a{bottom:538.946667pt;}
.y54{bottom:539.106667pt;}
.y16c{bottom:539.746667pt;}
.y1d{bottom:543.586667pt;}
.ya6{bottom:544.386667pt;}
.y13a{bottom:546.146667pt;}
.y81{bottom:548.706667pt;}
.y199{bottom:556.546667pt;}
.y53{bottom:556.706667pt;}
.y16b{bottom:557.346667pt;}
.ya5{bottom:561.986667pt;}
.y1c{bottom:563.266667pt;}
.y139{bottom:563.746667pt;}
.y80{bottom:566.466667pt;}
.y104{bottom:573.666667pt;}
.y198{bottom:574.146667pt;}
.y52{bottom:574.466667pt;}
.y16a{bottom:574.946667pt;}
.ya4{bottom:579.613333pt;}
.y1b{bottom:580.893333pt;}
.y138{bottom:581.373333pt;}
.y7f{bottom:584.093333pt;}
.y12f{bottom:586.653333pt;}
.y103{bottom:591.293333pt;}
.y197{bottom:591.773333pt;}
.y51{bottom:592.093333pt;}
.y169{bottom:592.573333pt;}
.y118{bottom:593.693333pt;}
.ya3{bottom:597.213333pt;}
.y1a{bottom:598.653333pt;}
.y137{bottom:598.973333pt;}
.y7e{bottom:601.693333pt;}
.y12e{bottom:604.413333pt;}
.yeb{bottom:608.893333pt;}
.y196{bottom:609.373333pt;}
.y50{bottom:609.693333pt;}
.y168{bottom:610.173333pt;}
.y117{bottom:611.293333pt;}
.ya2{bottom:614.973333pt;}
.y19{bottom:616.253333pt;}
.y136{bottom:616.733333pt;}
.y7d{bottom:619.293333pt;}
.y12d{bottom:622.013333pt;}
.yea{bottom:626.493333pt;}
.y102{bottom:627.133333pt;}
.y4f{bottom:627.293333pt;}
.y167{bottom:627.933333pt;}
.y116{bottom:628.893333pt;}
.ya1{bottom:629.693333pt;}
.y18{bottom:633.853333pt;}
.y135{bottom:634.333333pt;}
.y7c{bottom:636.893333pt;}
.y12c{bottom:639.613333pt;}
.ye9{bottom:644.253333pt;}
.y101{bottom:644.733333pt;}
.y4e{bottom:644.893333pt;}
.y166{bottom:645.533333pt;}
.y115{bottom:646.653333pt;}
.y134{bottom:649.053333pt;}
.y17{bottom:651.453333pt;}
.y7b{bottom:654.653333pt;}
.y12b{bottom:657.213333pt;}
.ye8{bottom:661.853333pt;}
.y195{bottom:662.333333pt;}
.y100{bottom:662.493333pt;}
.y4d{bottom:662.653333pt;}
.y165{bottom:663.133333pt;}
.y114{bottom:664.253333pt;}
.y16{bottom:669.053333pt;}
.y12a{bottom:670.333333pt;}
.y7a{bottom:672.253333pt;}
.y194{bottom:677.053333pt;}
.y164{bottom:677.853333pt;}
.ye7{bottom:679.453333pt;}
.yff{bottom:680.093333pt;}
.y4c{bottom:680.253333pt;}
.y113{bottom:681.853333pt;}
.y15{bottom:686.813333pt;}
.y129{bottom:688.733333pt;}
.y79{bottom:689.853333pt;}
.y18c{bottom:695.453333pt;}
.y112{bottom:696.573333pt;}
.ye6{bottom:697.053333pt;}
.yfe{bottom:697.693333pt;}
.y4b{bottom:697.853333pt;}
.y14{bottom:704.253333pt;}
.y128{bottom:706.973333pt;}
.y78{bottom:707.453333pt;}
.y18b{bottom:713.053333pt;}
.ye5{bottom:714.653333pt;}
.yfd{bottom:715.293333pt;}
.y4a{bottom:715.453333pt;}
.y13{bottom:723.933333pt;}
.y77{bottom:725.053333pt;}
.y127{bottom:725.373333pt;}
.y18a{bottom:730.653333pt;}
.ye4{bottom:732.413333pt;}
.yfc{bottom:732.893333pt;}
.y49{bottom:733.053333pt;}
.y12{bottom:741.693333pt;}
.y76{bottom:742.813333pt;}
.y126{bottom:743.613333pt;}
.y189{bottom:748.253333pt;}
.ye3{bottom:750.013333pt;}
.yfb{bottom:750.653333pt;}
.y48{bottom:750.813333pt;}
.y11{bottom:759.293333pt;}
.y75{bottom:760.413333pt;}
.y125{bottom:761.853333pt;}
.y15c{bottom:765.053333pt;}
.y188{bottom:766.013333pt;}
.ye2{bottom:767.613333pt;}
.yfa{bottom:768.253333pt;}
.y47{bottom:768.413333pt;}
.y10{bottom:776.893333pt;}
.y74{bottom:778.013333pt;}
.y15b{bottom:782.653333pt;}
.y187{bottom:783.613333pt;}
.ye1{bottom:785.213333pt;}
.yf9{bottom:785.853333pt;}
.y46{bottom:786.013333pt;}
.yf{bottom:794.493333pt;}
.y73{bottom:795.613333pt;}
.y186{bottom:796.733333pt;}
.y122{bottom:797.853333pt;}
.y15a{bottom:800.293333pt;}
.ye0{bottom:802.853333pt;}
.yf8{bottom:803.493333pt;}
.y45{bottom:803.653333pt;}
.ye{bottom:812.613333pt;}
.y72{bottom:813.253333pt;}
.y184{bottom:815.013333pt;}
.y159{bottom:818.053333pt;}
.ydf{bottom:820.613333pt;}
.yf7{bottom:821.093333pt;}
.y44{bottom:821.253333pt;}
.y71{bottom:831.013333pt;}
.yd{bottom:831.653333pt;}
.y158{bottom:835.653333pt;}
.yde{bottom:838.213333pt;}
.yf6{bottom:838.853333pt;}
.y43{bottom:839.013333pt;}
.y183{bottom:841.093333pt;}
.y70{bottom:848.613333pt;}
.yc{bottom:852.453333pt;}
.y157{bottom:853.253333pt;}
.ydd{bottom:855.813333pt;}
.yf5{bottom:856.453333pt;}
.y42{bottom:856.613333pt;}
.y182{bottom:859.333333pt;}
.y6f{bottom:866.213333pt;}
.y156{bottom:866.373333pt;}
.ydc{bottom:873.573333pt;}
.yf4{bottom:874.053333pt;}
.y41{bottom:874.213333pt;}
.y181{bottom:877.733333pt;}
.yb{bottom:880.613333pt;}
.y6e{bottom:883.813333pt;}
.y155{bottom:884.613333pt;}
.ydb{bottom:891.493333pt;}
.yf3{bottom:891.653333pt;}
.y40{bottom:891.813333pt;}
.y17f{bottom:895.973333pt;}
.ya0{bottom:901.413333pt;}
.y154{bottom:903.013333pt;}
.ya{bottom:908.933333pt;}
.yda{bottom:909.093333pt;}
.yf2{bottom:909.253333pt;}
.y3f{bottom:909.413333pt;}
.y9f{bottom:919.173333pt;}
.y153{bottom:921.253333pt;}
.yd9{bottom:926.693333pt;}
.yf1{bottom:927.013333pt;}
.y3e{bottom:927.173333pt;}
.y5{bottom:933.893333pt;}
.y9e{bottom:936.773333pt;}
.yd8{bottom:944.293333pt;}
.yf0{bottom:944.613333pt;}
.y3d{bottom:944.773333pt;}
.y9d{bottom:954.373333pt;}
.y4{bottom:961.733333pt;}
.yd7{bottom:961.893333pt;}
.yef{bottom:962.213333pt;}
.y3c{bottom:962.373333pt;}
.y9c{bottom:971.973333pt;}
.yd6{bottom:979.653333pt;}
.yee{bottom:979.813333pt;}
.y3b{bottom:979.973333pt;}
.y3{bottom:989.093333pt;}
.yd5{bottom:997.253333pt;}
.yed{bottom:997.413333pt;}
.y3a{bottom:997.573333pt;}
.yec{bottom:1005.893333pt;}
.yd4{bottom:1015.013333pt;}
.y39{bottom:1015.333333pt;}
.y2{bottom:1016.613333pt;}
.y38{bottom:1041.440000pt;}
.y1{bottom:1046.720000pt;}
.y37{bottom:1060.800000pt;}
.h10{height:17.600000pt;}
.h17{height:17.632000pt;}
.hf{height:17.760000pt;}
.h5{height:18.880000pt;}
.h7{height:25.025625pt;}
.h15{height:25.280000pt;}
.h16{height:25.440000pt;}
.he{height:35.200000pt;}
.h12{height:35.232000pt;}
.h11{height:35.360000pt;}
.h9{height:38.465312pt;}
.h3{height:42.636250pt;}
.h8{height:42.866250pt;}
.h18{height:43.782500pt;}
.h4{height:47.621250pt;}
.ha{height:51.123750pt;}
.hb{height:51.230417pt;}
.h6{height:52.785000pt;}
.h14{height:52.832000pt;}
.h13{height:52.960000pt;}
.h2{height:61.637188pt;}
.hd{height:81.541250pt;}
.hc{height:87.648125pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:46.720000pt;}
.w3{width:51.392000pt;}
.wd{width:56.000000pt;}
.w11{width:63.360000pt;}
.w10{width:63.392000pt;}
.wc{width:74.272000pt;}
.wf{width:75.360000pt;}
.w14{width:96.672000pt;}
.w13{width:101.792000pt;}
.w7{width:114.400000pt;}
.w5{width:114.560000pt;}
.w6{width:114.592000pt;}
.w9{width:143.360000pt;}
.w8{width:143.386667pt;}
.we{width:191.386667pt;}
.wa{width:385.186667pt;}
.w12{width:462.973333pt;}
.w4{width:638.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x39{left:65.600000pt;}
.x8{left:67.999988pt;}
.x18{left:72.479988pt;}
.x25{left:84.511988pt;}
.x2f{left:86.911988pt;}
.x10{left:89.151988pt;}
.x3c{left:95.231988pt;}
.x30{left:103.232000pt;}
.x4{left:107.232000pt;}
.x1c{left:109.152000pt;}
.x7{left:110.751988pt;}
.x28{left:114.912000pt;}
.x27{left:125.471988pt;}
.x6{left:141.474667pt;}
.x19{left:152.666655pt;}
.x15{left:177.946655pt;}
.x31{left:179.226667pt;}
.x23{left:189.306655pt;}
.x22{left:197.946655pt;}
.xd{left:207.866655pt;}
.x11{left:220.346655pt;}
.x1d{left:224.346667pt;}
.x32{left:243.266667pt;}
.xe{left:252.546655pt;}
.xc{left:273.346655pt;}
.x9{left:276.386655pt;}
.xb{left:292.066655pt;}
.x2c{left:301.186667pt;}
.x33{left:307.266667pt;}
.x2e{left:332.866655pt;}
.x1e{left:339.586667pt;}
.x26{left:358.146655pt;}
.x5{left:365.021333pt;}
.x34{left:371.266667pt;}
.xa{left:396.893322pt;}
.xf{left:420.893322pt;}
.x16{left:422.493322pt;}
.x35{left:435.293333pt;}
.x12{left:444.893322pt;}
.x1f{left:454.813333pt;}
.x13{left:468.893322pt;}
.x2d{left:493.213333pt;}
.x36{left:499.293333pt;}
.x29{left:500.733333pt;}
.x17{left:518.493322pt;}
.x3a{left:529.213333pt;}
.x24{left:541.213333pt;}
.x2a{left:548.093333pt;}
.x1a{left:550.653322pt;}
.x37{left:563.333333pt;}
.x20{left:570.213333pt;}
.x1b{left:589.413322pt;}
.x14{left:595.973322pt;}
.x2b{left:623.013333pt;}
.x38{left:627.333333pt;}
.x3b{left:631.653333pt;}
.x21{left:660.933322pt;}
}




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