
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_32ff91622e2165a632318e48.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_77278bfbff697d735bcadd65.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.109375;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_ae98bc7e5f47447cad6d6b98.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2f645f1207b35676d151f731.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109375;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_947df377bd7657e8a33ff68d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9ba8d7634b4a40bee3d8981d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_85a03ec6faa3088543c6432a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls16{letter-spacing:-0.391800px;}
.ls13{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsd{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsb{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.007560px;}
.ls6{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.006840px;}
.ls4{letter-spacing:0.014760px;}
.ls5{letter-spacing:0.033600px;}
.ls18{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls10{letter-spacing:0.064800px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1d{letter-spacing:0.098400px;}
.ls3{letter-spacing:0.099600px;}
.ls1c{letter-spacing:0.116400px;}
.ls20{letter-spacing:0.143400px;}
.ls7{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls19{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:9.480000px;}
.ls1f{letter-spacing:47.726640px;}
.ls11{letter-spacing:63.566640px;}
.ls1b{letter-spacing:64.646640px;}
.ls1e{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;}
}
.ws2{word-spacing:-18.553200px;}
.ws5{word-spacing:-14.493600px;}
.wse{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.369800px;}
.wsc{word-spacing:-13.275360px;}
.ws6{word-spacing:-13.260000px;}
.ws3{word-spacing:-13.226400px;}
.wsd{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.101000px;}
.wsb{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._a{margin-left:-3.727200px;}
._1{margin-left:-2.348388px;}
._0{margin-left:-1.110000px;}
._2{width:1.089517px;}
._8{width:2.524800px;}
._9{width:4.509000px;}
._7{width:5.712001px;}
._6{width:6.733200px;}
._b{width:8.356800px;}
._c{width:9.718680px;}
._17{width:11.603160px;}
._4{width:14.368800px;}
._5{width:15.390600px;}
._3{width:17.402400px;}
._12{width:19.418760px;}
._e{width:21.342600px;}
._f{width:23.498280px;}
._33{width:24.915600px;}
._25{width:26.512920px;}
._19{width:27.835560px;}
._11{width:29.458800px;}
._d{width:31.021920px;}
._27{width:33.426720px;}
._26{width:34.550400px;}
._1f{width:36.011880px;}
._36{width:38.260080px;}
._37{width:39.282120px;}
._38{width:40.353120px;}
._32{width:42.708960px;}
._14{width:44.368560px;}
._15{width:46.172160px;}
._2e{width:49.689000px;}
._2f{width:50.867520px;}
._13{width:53.386560px;}
._18{width:56.152080px;}
._10{width:57.414600px;}
._35{width:66.219588px;}
._22{width:67.334400px;}
._16{width:74.777400px;}
._23{width:77.675040px;}
._34{width:84.528720px;}
._29{width:91.983600px;}
._1a{width:93.125880px;}
._28{width:95.530680px;}
._1e{width:97.815240px;}
._24{width:161.422200px;}
._2b{width:163.406160px;}
._2c{width:164.608560px;}
._2a{width:173.145600px;}
._1b{width:179.157600px;}
._21{width:202.773600px;}
._1d{width:209.037240px;}
._20{width:285.810480px;}
._30{width:289.778400px;}
._31{width:290.979360px;}
._1c{width:300.458520px;}
._2d{width:808.819440px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.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;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y49{bottom:4.500000px;}
.y117{bottom:7.830000px;}
.y40{bottom:7.920000px;}
.y48{bottom:10.350000px;}
.y50{bottom:19.350000px;}
.y90{bottom:23.850000px;}
.y116{bottom:25.470000px;}
.y11c{bottom:29.880000px;}
.y7f{bottom:31.500000px;}
.y47{bottom:32.400000px;}
.y86{bottom:37.380000px;}
.y4f{bottom:41.400000px;}
.y8f{bottom:41.490000px;}
.y6e{bottom:46.350000px;}
.y7e{bottom:49.050000px;}
.y46{bottom:54.540000px;}
.y85{bottom:54.930000px;}
.y8e{bottom:59.040000px;}
.y7c{bottom:62.100000px;}
.y4e{bottom:63.450000px;}
.y91{bottom:63.540000px;}
.y74{bottom:63.900000px;}
.y7d{bottom:66.600000px;}
.y6d{bottom:68.400000px;}
.y8b{bottom:72.180000px;}
.y2{bottom:73.380000px;}
.y26{bottom:74.190000px;}
.y45{bottom:76.590000px;}
.y84{bottom:76.980000px;}
.y8d{bottom:81.180000px;}
.y73{bottom:81.450000px;}
.y87{bottom:81.480000px;}
.y7b{bottom:84.240000px;}
.y4d{bottom:85.590000px;}
.y6c{bottom:90.540000px;}
.y5c{bottom:92.190000px;}
.y8a{bottom:94.230000px;}
.y52{bottom:94.590000px;}
.y44{bottom:98.670000px;}
.y8c{bottom:98.730000px;}
.y83{bottom:99.120000px;}
.y1{bottom:101.640000px;}
.y7a{bottom:101.790000px;}
.y75{bottom:102.870000px;}
.y43{bottom:103.170000px;}
.y72{bottom:103.590000px;}
.y4c{bottom:107.640000px;}
.y5b{bottom:109.740000px;}
.y51{bottom:112.140000px;}
.y6b{bottom:112.590000px;}
.y89{bottom:116.280000px;}
.y82{bottom:116.670000px;}
.y79{bottom:119.430000px;}
.y42{bottom:120.810000px;}
.y71{bottom:121.140000px;}
.yc5{bottom:123.240000px;}
.y5a{bottom:127.380000px;}
.y4b{bottom:129.780000px;}
.y6a{bottom:130.230000px;}
.yec{bottom:130.350000px;}
.y81{bottom:134.310000px;}
.y78{bottom:136.980000px;}
.y70{bottom:138.780000px;}
.y15d{bottom:138.900000px;}
.y58{bottom:140.430000px;}
.y133{bottom:140.520000px;}
.y59{bottom:144.930000px;}
.y67{bottom:145.800000px;}
.y69{bottom:147.780000px;}
.yeb{bottom:148.800000px;}
.y76{bottom:149.430000px;}
.y63{bottom:154.350000px;}
.y77{bottom:154.530000px;}
.y15c{bottom:156.450000px;}
.yc4{bottom:158.880000px;}
.y185{bottom:159.870000px;}
.y57{bottom:162.480000px;}
.y66{bottom:163.350000px;}
.y62{bottom:171.990000px;}
.y132{bottom:176.070000px;}
.yea{bottom:176.250000px;}
.y184{bottom:177.510000px;}
.y56{bottom:180.120000px;}
.y65{bottom:180.990000px;}
.y15b{bottom:183.000000px;}
.y131{bottom:193.620000px;}
.y61{bottom:194.040000px;}
.y112{bottom:194.160000px;}
.yc3{bottom:194.430000px;}
.y183{bottom:195.060000px;}
.y55{bottom:197.670000px;}
.y64{bottom:198.540000px;}
.y15a{bottom:200.640000px;}
.yab{bottom:206.310000px;}
.y24{bottom:210.540000px;}
.y111{bottom:211.710000px;}
.ye9{bottom:211.800000px;}
.y54{bottom:215.310000px;}
.y60{bottom:216.180000px;}
.y159{bottom:218.190000px;}
.y130{bottom:220.260000px;}
.y182{bottom:221.610000px;}
.yaa{bottom:223.950000px;}
.y23{bottom:228.090000px;}
.ye8{bottom:229.350000px;}
.yc2{bottom:229.980000px;}
.y5f{bottom:233.730000px;}
.y110{bottom:238.260000px;}
.y181{bottom:239.250000px;}
.y4a{bottom:239.340000px;}
.ya9{bottom:241.500000px;}
.y158{bottom:244.830000px;}
.y22{bottom:245.730000px;}
.ye7{bottom:247.800000px;}
.y5e{bottom:251.280000px;}
.y12f{bottom:255.810000px;}
.yc1{bottom:262.200000px;}
.y157{bottom:262.380000px;}
.y21{bottom:263.280000px;}
.ye6{bottom:265.350000px;}
.y180{bottom:265.800000px;}
.ya8{bottom:268.050000px;}
.y12e{bottom:273.450000px;}
.y10f{bottom:273.900000px;}
.y156{bottom:279.930000px;}
.y20{bottom:280.920000px;}
.y10e{bottom:291.450000px;}
.y17f{bottom:292.440000px;}
.ye5{bottom:292.800000px;}
.y1f{bottom:298.470000px;}
.y12d{bottom:300.000000px;}
.ya7{bottom:300.720000px;}
.y155{bottom:306.570000px;}
.y10d{bottom:309.090000px;}
.y1e{bottom:316.020000px;}
.ya6{bottom:318.270000px;}
.y17e{bottom:318.990000px;}
.y6f{bottom:323.490000px;}
.y154{bottom:324.120000px;}
.ye4{bottom:328.350000px;}
.y1d{bottom:333.660000px;}
.y12c{bottom:335.550000px;}
.y10c{bottom:335.640000px;}
.y153{bottom:341.760000px;}
.y17d{bottom:345.540000px;}
.ye3{bottom:346.800000px;}
.y12b{bottom:353.190000px;}
.ya5{bottom:353.910000px;}
.y17c{bottom:363.180000px;}
.ye2{bottom:364.350000px;}
.y152{bottom:368.310000px;}
.y1c{bottom:369.210000px;}
.y10b{bottom:371.190000px;}
.ya4{bottom:371.460000px;}
.y12a{bottom:379.740000px;}
.y151{bottom:385.860000px;}
.y1b{bottom:386.850000px;}
.y41{bottom:388.560000px;}
.y10a{bottom:388.830000px;}
.ya3{bottom:389.010000px;}
.y17b{bottom:389.730000px;}
.ye1{bottom:391.800000px;}
.y150{bottom:403.500000px;}
.y1a{bottom:404.400000px;}
.y109{bottom:406.380000px;}
.y17a{bottom:407.370000px;}
.y129{bottom:415.380000px;}
.ya2{bottom:415.650000px;}
.ye0{bottom:424.380000px;}
.y14f{bottom:430.050000px;}
.y19{bottom:431.310000px;}
.y128{bottom:432.930000px;}
.y108{bottom:433.020000px;}
.y179{bottom:433.920000px;}
.y14e{bottom:447.690000px;}
.ya1{bottom:451.200000px;}
.y178{bottom:451.470000px;}
.y127{bottom:459.480000px;}
.ydf{bottom:459.930000px;}
.y190{bottom:460.110000px;}
.y107{bottom:468.570000px;}
.ya0{bottom:468.750000px;}
.y14d{bottom:474.270000px;}
.y18f{bottom:477.690000px;}
.y177{bottom:478.140000px;}
.yde{bottom:478.410000px;}
.y18{bottom:479.580000px;}
.y68{bottom:481.740000px;}
.y106{bottom:486.150000px;}
.y14c{bottom:491.820000px;}
.y126{bottom:492.090000px;}
.y9f{bottom:495.420000px;}
.y176{bottom:495.690000px;}
.ydd{bottom:495.960000px;}
.y17{bottom:497.490000px;}
.y105{bottom:503.790000px;}
.y18e{bottom:504.330000px;}
.y14b{bottom:509.460000px;}
.y175{bottom:513.330000px;}
.ydc{bottom:514.410000px;}
.y104{bottom:521.340000px;}
.y18d{bottom:521.880000px;}
.y125{bottom:527.730000px;}
.y3f{bottom:528.810000px;}
.y9e{bottom:530.970000px;}
.ydb{bottom:531.960000px;}
.y16{bottom:534.570000px;}
.y14a{bottom:536.370000px;}
.y103{bottom:538.980000px;}
.y174{bottom:539.880000px;}
.y124{bottom:545.280000px;}
.y18c{bottom:548.430000px;}
.y9d{bottom:548.610000px;}
.y15{bottom:552.120000px;}
.y173{bottom:557.430000px;}
.y123{bottom:562.920000px;}
.y102{bottom:565.530000px;}
.yda{bottom:568.410000px;}
.y14{bottom:569.670000px;}
.y172{bottom:575.070000px;}
.y9c{bottom:575.160000px;}
.y3e{bottom:577.500000px;}
.y122{bottom:580.470000px;}
.y149{bottom:584.610000px;}
.yd9{bottom:586.050000px;}
.y13{bottom:587.310000px;}
.y18b{bottom:592.620000px;}
.y121{bottom:598.020000px;}
.y101{bottom:601.080000px;}
.y171{bottom:601.620000px;}
.y12{bottom:604.860000px;}
.y9b{bottom:610.710000px;}
.y148{bottom:611.520000px;}
.yd8{bottom:612.960000px;}
.y3d{bottom:613.140000px;}
.y120{bottom:615.660000px;}
.y100{bottom:618.720000px;}
.y170{bottom:619.260000px;}
.y11{bottom:622.500000px;}
.yc0{bottom:623.400000px;}
.y9a{bottom:628.350000px;}
.y3c{bottom:630.690000px;}
.yff{bottom:636.270000px;}
.y18a{bottom:636.810000px;}
.y10{bottom:640.050000px;}
.ybf{bottom:640.950000px;}
.y16f{bottom:645.810000px;}
.y5d{bottom:648.960000px;}
.y11f{bottom:651.210000px;}
.yfe{bottom:653.910000px;}
.y99{bottom:654.900000px;}
.yf{bottom:657.600000px;}
.y3b{bottom:658.140000px;}
.ybe{bottom:658.590000px;}
.y147{bottom:659.760000px;}
.yd7{bottom:661.110000px;}
.y16e{bottom:663.360000px;}
.ye{bottom:675.240000px;}
.ybd{bottom:676.140000px;}
.y146{bottom:677.400000px;}
.y11e{bottom:677.850000px;}
.yd6{bottom:679.560000px;}
.yfd{bottom:680.460000px;}
.y189{bottom:681.000000px;}
.y16d{bottom:690.000000px;}
.y98{bottom:690.540000px;}
.yd{bottom:692.790000px;}
.y3a{bottom:693.690000px;}
.y145{bottom:694.950000px;}
.yd5{bottom:698.010000px;}
.y16c{bottom:707.550000px;}
.y97{bottom:708.090000px;}
.yc{bottom:710.430000px;}
.y11d{bottom:710.790000px;}
.y39{bottom:711.240000px;}
.ybc{bottom:711.330000px;}
.y144{bottom:712.590000px;}
.yfc{bottom:716.010000px;}
.y188{bottom:725.190000px;}
.y96{bottom:725.640000px;}
.yb{bottom:727.980000px;}
.ybb{bottom:728.880000px;}
.y38{bottom:729.690000px;}
.y143{bottom:730.140000px;}
.y16b{bottom:734.190000px;}
.yd4{bottom:734.460000px;}
.y11b{bottom:738.150000px;}
.y37{bottom:747.240000px;}
.y142{bottom:747.690000px;}
.y16a{bottom:751.740000px;}
.y95{bottom:752.280000px;}
.ya{bottom:754.890000px;}
.yba{bottom:755.790000px;}
.yd3{bottom:761.010000px;}
.yfb{bottom:761.910000px;}
.y141{bottom:765.330000px;}
.y187{bottom:769.290000px;}
.y36{bottom:774.690000px;}
.y169{bottom:778.290000px;}
.y11a{bottom:787.560000px;}
.y94{bottom:787.830000px;}
.y140{bottom:792.240000px;}
.y168{bottom:795.930000px;}
.yd2{bottom:796.560000px;}
.yfa{bottom:797.370000px;}
.y9{bottom:803.130000px;}
.yb9{bottom:804.030000px;}
.y93{bottom:805.470000px;}
.y35{bottom:810.240000px;}
.y186{bottom:813.480000px;}
.y119{bottom:814.920000px;}
.yd1{bottom:815.010000px;}
.yf9{bottom:815.820000px;}
.yb8{bottom:821.670000px;}
.y167{bottom:822.480000px;}
.y34{bottom:827.790000px;}
.y92{bottom:832.020000px;}
.yd0{bottom:833.460000px;}
.y8{bottom:838.950000px;}
.yb7{bottom:839.220000px;}
.y166{bottom:840.030000px;}
.y13f{bottom:840.480000px;}
.y118{bottom:842.190000px;}
.yf8{bottom:843.270000px;}
.y33{bottom:846.240000px;}
.ycf{bottom:851.820000px;}
.y165{bottom:857.670000px;}
.y13e{bottom:858.030000px;}
.y32{bottom:863.790000px;}
.y88{bottom:864.960000px;}
.yb6{bottom:865.860000px;}
.yce{bottom:869.370000px;}
.y115{bottom:869.550000px;}
.y7{bottom:874.950000px;}
.y13d{bottom:875.670000px;}
.yf7{bottom:878.820000px;}
.y164{bottom:884.220000px;}
.y31{bottom:891.240000px;}
.y13c{bottom:893.220000px;}
.ycd{bottom:896.820000px;}
.yf6{bottom:897.270000px;}
.yb5{bottom:901.410000px;}
.y163{bottom:901.860000px;}
.y13b{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y114{bottom:914.460000px;}
.yb4{bottom:918.960000px;}
.y53{bottom:919.770000px;}
.yf5{bottom:924.720000px;}
.y30{bottom:926.790000px;}
.y13a{bottom:928.410000px;}
.ycc{bottom:932.370000px;}
.y2f{bottom:945.240000px;}
.yb3{bottom:945.600000px;}
.y139{bottom:945.960000px;}
.y5{bottom:947.040000px;}
.ycb{bottom:950.820000px;}
.yf4{bottom:960.270000px;}
.y113{bottom:963.150000px;}
.y2e{bottom:963.690000px;}
.yca{bottom:969.270000px;}
.y138{bottom:972.600000px;}
.yf3{bottom:977.820000px;}
.yb2{bottom:981.150000px;}
.y2d{bottom:981.240000px;}
.y4{bottom:985.380000px;}
.y162{bottom:990.150000px;}
.yf2{bottom:996.270000px;}
.yc9{bottom:996.720000px;}
.yb1{bottom:998.790000px;}
.y80{bottom:1000.770000px;}
.y137{bottom:1008.150000px;}
.y2c{bottom:1008.690000px;}
.y3{bottom:1010.070000px;}
.yf1{bottom:1013.850000px;}
.yb0{bottom:1016.370000px;}
.y161{bottom:1016.820000px;}
.y136{bottom:1025.820000px;}
.yc8{bottom:1032.210000px;}
.y160{bottom:1034.370000px;}
.yf0{bottom:1041.300000px;}
.yaf{bottom:1042.920000px;}
.y135{bottom:1043.370000px;}
.y2b{bottom:1044.270000px;}
.yc7{bottom:1050.660000px;}
.y134{bottom:1060.920000px;}
.y2a{bottom:1061.820000px;}
.yef{bottom:1076.850000px;}
.yc6{bottom:1078.110000px;}
.yae{bottom:1078.560000px;}
.y29{bottom:1080.270000px;}
.yee{bottom:1095.300000px;}
.yad{bottom:1096.110000px;}
.y15f{bottom:1105.110000px;}
.y28{bottom:1107.720000px;}
.yed{bottom:1112.850000px;}
.yac{bottom:1113.750000px;}
.y15e{bottom:1122.750000px;}
.y27{bottom:1140.300000px;}
.y25{bottom:1194.300000px;}
.he{height:2.566406px;}
.h1a{height:26.550000px;}
.hc{height:26.640000px;}
.h2{height:30.022383px;}
.h14{height:34.646484px;}
.h3{height:40.100098px;}
.h19{height:44.190000px;}
.h1b{height:48.600000px;}
.h6{height:50.902383px;}
.h7{height:53.573730px;}
.h8{height:55.779258px;}
.h5{height:58.706543px;}
.ha{height:59.973223px;}
.hb{height:61.793886px;}
.h9{height:62.585859px;}
.h18{height:68.582109px;}
.h4{height:74.746582px;}
.h17{height:135.000000px;}
.hd{height:139.530000px;}
.hf{height:148.500000px;}
.h16{height:153.030000px;}
.h13{height:157.530000px;}
.h12{height:166.500000px;}
.h15{height:173.250000px;}
.h10{height:234.030000px;}
.h11{height:270.000000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:85.140000px;}
.w7{width:163.380000px;}
.w6{width:175.770000px;}
.w4{width:193.530000px;}
.w8{width:288.120000px;}
.w5{width:298.920000px;}
.w9{width:302.580000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.039987px;}
.x12{left:111.239987px;}
.x5{left:122.039987px;}
.x7{left:154.620000px;}
.x2{left:202.799987px;}
.x10{left:232.950000px;}
.xa{left:284.520000px;}
.xd{left:286.770000px;}
.xc{left:289.020000px;}
.xb{left:291.270000px;}
.x8{left:348.960000px;}
.xf{left:363.809987px;}
.x11{left:521.880000px;}
.x9{left:648.690000px;}
.xe{left:684.059987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls16{letter-spacing:-0.348267pt;}
.ls13{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsd{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsb{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.006720pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.006080pt;}
.ls4{letter-spacing:0.013120pt;}
.ls5{letter-spacing:0.029867pt;}
.ls18{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls10{letter-spacing:0.057600pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1d{letter-spacing:0.087467pt;}
.ls3{letter-spacing:0.088533pt;}
.ls1c{letter-spacing:0.103467pt;}
.ls20{letter-spacing:0.127467pt;}
.ls7{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls19{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:8.426667pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls11{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:57.463680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.491733pt;}
.ws5{word-spacing:-12.883200pt;}
.wse{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.884267pt;}
.wsc{word-spacing:-11.800320pt;}
.ws6{word-spacing:-11.786667pt;}
.ws3{word-spacing:-11.756800pt;}
.wsd{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.645333pt;}
.wsb{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._a{margin-left:-3.313066pt;}
._1{margin-left:-2.087456pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.968460pt;}
._8{width:2.244266pt;}
._9{width:4.008000pt;}
._7{width:5.077334pt;}
._6{width:5.985066pt;}
._b{width:7.428267pt;}
._c{width:8.638826pt;}
._17{width:10.313920pt;}
._4{width:12.772267pt;}
._5{width:13.680533pt;}
._3{width:15.468800pt;}
._12{width:17.261120pt;}
._e{width:18.971200pt;}
._f{width:20.887360pt;}
._33{width:22.147200pt;}
._25{width:23.567040pt;}
._19{width:24.742720pt;}
._11{width:26.185600pt;}
._d{width:27.575040pt;}
._27{width:29.712640pt;}
._26{width:30.711467pt;}
._1f{width:32.010560pt;}
._36{width:34.008960pt;}
._37{width:34.917440pt;}
._38{width:35.869440pt;}
._32{width:37.963520pt;}
._14{width:39.438720pt;}
._15{width:41.041920pt;}
._2e{width:44.168000pt;}
._2f{width:45.215573pt;}
._13{width:47.454720pt;}
._18{width:49.912960pt;}
._10{width:51.035200pt;}
._35{width:58.861856pt;}
._22{width:59.852800pt;}
._16{width:66.468800pt;}
._23{width:69.044480pt;}
._34{width:75.136640pt;}
._29{width:81.763200pt;}
._1a{width:82.778560pt;}
._28{width:84.916160pt;}
._1e{width:86.946880pt;}
._24{width:143.486400pt;}
._2b{width:145.249920pt;}
._2c{width:146.318720pt;}
._2a{width:153.907200pt;}
._1b{width:159.251200pt;}
._21{width:180.243200pt;}
._1d{width:185.810880pt;}
._20{width:254.053760pt;}
._30{width:257.580800pt;}
._31{width:258.648320pt;}
._1c{width:267.074240pt;}
._2d{width:718.950613pt;}
.fs7{font-size:2.560000pt;}
.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;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:4.000000pt;}
.y117{bottom:6.960000pt;}
.y40{bottom:7.040000pt;}
.y48{bottom:9.200000pt;}
.y50{bottom:17.200000pt;}
.y90{bottom:21.200000pt;}
.y116{bottom:22.640000pt;}
.y11c{bottom:26.560000pt;}
.y7f{bottom:28.000000pt;}
.y47{bottom:28.800000pt;}
.y86{bottom:33.226667pt;}
.y4f{bottom:36.800000pt;}
.y8f{bottom:36.880000pt;}
.y6e{bottom:41.200000pt;}
.y7e{bottom:43.600000pt;}
.y46{bottom:48.480000pt;}
.y85{bottom:48.826667pt;}
.y8e{bottom:52.480000pt;}
.y7c{bottom:55.200000pt;}
.y4e{bottom:56.400000pt;}
.y91{bottom:56.480000pt;}
.y74{bottom:56.800000pt;}
.y7d{bottom:59.200000pt;}
.y6d{bottom:60.800000pt;}
.y8b{bottom:64.160000pt;}
.y2{bottom:65.226667pt;}
.y26{bottom:65.946667pt;}
.y45{bottom:68.080000pt;}
.y84{bottom:68.426667pt;}
.y8d{bottom:72.160000pt;}
.y73{bottom:72.400000pt;}
.y87{bottom:72.426667pt;}
.y7b{bottom:74.880000pt;}
.y4d{bottom:76.080000pt;}
.y6c{bottom:80.480000pt;}
.y5c{bottom:81.946667pt;}
.y8a{bottom:83.760000pt;}
.y52{bottom:84.080000pt;}
.y44{bottom:87.706667pt;}
.y8c{bottom:87.760000pt;}
.y83{bottom:88.106667pt;}
.y1{bottom:90.346667pt;}
.y7a{bottom:90.480000pt;}
.y75{bottom:91.440000pt;}
.y43{bottom:91.706667pt;}
.y72{bottom:92.080000pt;}
.y4c{bottom:95.680000pt;}
.y5b{bottom:97.546667pt;}
.y51{bottom:99.680000pt;}
.y6b{bottom:100.080000pt;}
.y89{bottom:103.360000pt;}
.y82{bottom:103.706667pt;}
.y79{bottom:106.160000pt;}
.y42{bottom:107.386667pt;}
.y71{bottom:107.680000pt;}
.yc5{bottom:109.546667pt;}
.y5a{bottom:113.226667pt;}
.y4b{bottom:115.360000pt;}
.y6a{bottom:115.760000pt;}
.yec{bottom:115.866667pt;}
.y81{bottom:119.386667pt;}
.y78{bottom:121.760000pt;}
.y70{bottom:123.360000pt;}
.y15d{bottom:123.466667pt;}
.y58{bottom:124.826667pt;}
.y133{bottom:124.906667pt;}
.y59{bottom:128.826667pt;}
.y67{bottom:129.600000pt;}
.y69{bottom:131.360000pt;}
.yeb{bottom:132.266667pt;}
.y76{bottom:132.826667pt;}
.y63{bottom:137.200000pt;}
.y77{bottom:137.360000pt;}
.y15c{bottom:139.066667pt;}
.yc4{bottom:141.226667pt;}
.y185{bottom:142.106667pt;}
.y57{bottom:144.426667pt;}
.y66{bottom:145.200000pt;}
.y62{bottom:152.880000pt;}
.y132{bottom:156.506667pt;}
.yea{bottom:156.666667pt;}
.y184{bottom:157.786667pt;}
.y56{bottom:160.106667pt;}
.y65{bottom:160.880000pt;}
.y15b{bottom:162.666667pt;}
.y131{bottom:172.106667pt;}
.y61{bottom:172.480000pt;}
.y112{bottom:172.586667pt;}
.yc3{bottom:172.826667pt;}
.y183{bottom:173.386667pt;}
.y55{bottom:175.706667pt;}
.y64{bottom:176.480000pt;}
.y15a{bottom:178.346667pt;}
.yab{bottom:183.386667pt;}
.y24{bottom:187.146667pt;}
.y111{bottom:188.186667pt;}
.ye9{bottom:188.266667pt;}
.y54{bottom:191.386667pt;}
.y60{bottom:192.160000pt;}
.y159{bottom:193.946667pt;}
.y130{bottom:195.786667pt;}
.y182{bottom:196.986667pt;}
.yaa{bottom:199.066667pt;}
.y23{bottom:202.746667pt;}
.ye8{bottom:203.866667pt;}
.yc2{bottom:204.426667pt;}
.y5f{bottom:207.760000pt;}
.y110{bottom:211.786667pt;}
.y181{bottom:212.666667pt;}
.y4a{bottom:212.746667pt;}
.ya9{bottom:214.666667pt;}
.y158{bottom:217.626667pt;}
.y22{bottom:218.426667pt;}
.ye7{bottom:220.266667pt;}
.y5e{bottom:223.360000pt;}
.y12f{bottom:227.386667pt;}
.yc1{bottom:233.066667pt;}
.y157{bottom:233.226667pt;}
.y21{bottom:234.026667pt;}
.ye6{bottom:235.866667pt;}
.y180{bottom:236.266667pt;}
.ya8{bottom:238.266667pt;}
.y12e{bottom:243.066667pt;}
.y10f{bottom:243.466667pt;}
.y156{bottom:248.826667pt;}
.y20{bottom:249.706667pt;}
.y10e{bottom:259.066667pt;}
.y17f{bottom:259.946667pt;}
.ye5{bottom:260.266667pt;}
.y1f{bottom:265.306667pt;}
.y12d{bottom:266.666667pt;}
.ya7{bottom:267.306667pt;}
.y155{bottom:272.506667pt;}
.y10d{bottom:274.746667pt;}
.y1e{bottom:280.906667pt;}
.ya6{bottom:282.906667pt;}
.y17e{bottom:283.546667pt;}
.y6f{bottom:287.546667pt;}
.y154{bottom:288.106667pt;}
.ye4{bottom:291.866667pt;}
.y1d{bottom:296.586667pt;}
.y12c{bottom:298.266667pt;}
.y10c{bottom:298.346667pt;}
.y153{bottom:303.786667pt;}
.y17d{bottom:307.146667pt;}
.ye3{bottom:308.266667pt;}
.y12b{bottom:313.946667pt;}
.ya5{bottom:314.586667pt;}
.y17c{bottom:322.826667pt;}
.ye2{bottom:323.866667pt;}
.y152{bottom:327.386667pt;}
.y1c{bottom:328.186667pt;}
.y10b{bottom:329.946667pt;}
.ya4{bottom:330.186667pt;}
.y12a{bottom:337.546667pt;}
.y151{bottom:342.986667pt;}
.y1b{bottom:343.866667pt;}
.y41{bottom:345.386667pt;}
.y10a{bottom:345.626667pt;}
.ya3{bottom:345.786667pt;}
.y17b{bottom:346.426667pt;}
.ye1{bottom:348.266667pt;}
.y150{bottom:358.666667pt;}
.y1a{bottom:359.466667pt;}
.y109{bottom:361.226667pt;}
.y17a{bottom:362.106667pt;}
.y129{bottom:369.226667pt;}
.ya2{bottom:369.466667pt;}
.ye0{bottom:377.226667pt;}
.y14f{bottom:382.266667pt;}
.y19{bottom:383.386667pt;}
.y128{bottom:384.826667pt;}
.y108{bottom:384.906667pt;}
.y179{bottom:385.706667pt;}
.y14e{bottom:397.946667pt;}
.ya1{bottom:401.066667pt;}
.y178{bottom:401.306667pt;}
.y127{bottom:408.426667pt;}
.ydf{bottom:408.826667pt;}
.y190{bottom:408.986667pt;}
.y107{bottom:416.506667pt;}
.ya0{bottom:416.666667pt;}
.y14d{bottom:421.573333pt;}
.y18f{bottom:424.613333pt;}
.y177{bottom:425.013333pt;}
.yde{bottom:425.253333pt;}
.y18{bottom:426.293333pt;}
.y68{bottom:428.213333pt;}
.y106{bottom:432.133333pt;}
.y14c{bottom:437.173333pt;}
.y126{bottom:437.413333pt;}
.y9f{bottom:440.373333pt;}
.y176{bottom:440.613333pt;}
.ydd{bottom:440.853333pt;}
.y17{bottom:442.213333pt;}
.y105{bottom:447.813333pt;}
.y18e{bottom:448.293333pt;}
.y14b{bottom:452.853333pt;}
.y175{bottom:456.293333pt;}
.ydc{bottom:457.253333pt;}
.y104{bottom:463.413333pt;}
.y18d{bottom:463.893333pt;}
.y125{bottom:469.093333pt;}
.y3f{bottom:470.053333pt;}
.y9e{bottom:471.973333pt;}
.ydb{bottom:472.853333pt;}
.y16{bottom:475.173333pt;}
.y14a{bottom:476.773333pt;}
.y103{bottom:479.093333pt;}
.y174{bottom:479.893333pt;}
.y124{bottom:484.693333pt;}
.y18c{bottom:487.493333pt;}
.y9d{bottom:487.653333pt;}
.y15{bottom:490.773333pt;}
.y173{bottom:495.493333pt;}
.y123{bottom:500.373333pt;}
.y102{bottom:502.693333pt;}
.yda{bottom:505.253333pt;}
.y14{bottom:506.373333pt;}
.y172{bottom:511.173333pt;}
.y9c{bottom:511.253333pt;}
.y3e{bottom:513.333333pt;}
.y122{bottom:515.973333pt;}
.y149{bottom:519.653333pt;}
.yd9{bottom:520.933333pt;}
.y13{bottom:522.053333pt;}
.y18b{bottom:526.773333pt;}
.y121{bottom:531.573333pt;}
.y101{bottom:534.293333pt;}
.y171{bottom:534.773333pt;}
.y12{bottom:537.653333pt;}
.y9b{bottom:542.853333pt;}
.y148{bottom:543.573333pt;}
.yd8{bottom:544.853333pt;}
.y3d{bottom:545.013333pt;}
.y120{bottom:547.253333pt;}
.y100{bottom:549.973333pt;}
.y170{bottom:550.453333pt;}
.y11{bottom:553.333333pt;}
.yc0{bottom:554.133333pt;}
.y9a{bottom:558.533333pt;}
.y3c{bottom:560.613333pt;}
.yff{bottom:565.573333pt;}
.y18a{bottom:566.053333pt;}
.y10{bottom:568.933333pt;}
.ybf{bottom:569.733333pt;}
.y16f{bottom:574.053333pt;}
.y5d{bottom:576.853333pt;}
.y11f{bottom:578.853333pt;}
.yfe{bottom:581.253333pt;}
.y99{bottom:582.133333pt;}
.yf{bottom:584.533333pt;}
.y3b{bottom:585.013333pt;}
.ybe{bottom:585.413333pt;}
.y147{bottom:586.453333pt;}
.yd7{bottom:587.653333pt;}
.y16e{bottom:589.653333pt;}
.ye{bottom:600.213333pt;}
.ybd{bottom:601.013333pt;}
.y146{bottom:602.133333pt;}
.y11e{bottom:602.533333pt;}
.yd6{bottom:604.053333pt;}
.yfd{bottom:604.853333pt;}
.y189{bottom:605.333333pt;}
.y16d{bottom:613.333333pt;}
.y98{bottom:613.813333pt;}
.yd{bottom:615.813333pt;}
.y3a{bottom:616.613333pt;}
.y145{bottom:617.733333pt;}
.yd5{bottom:620.453333pt;}
.y16c{bottom:628.933333pt;}
.y97{bottom:629.413333pt;}
.yc{bottom:631.493333pt;}
.y11d{bottom:631.813333pt;}
.y39{bottom:632.213333pt;}
.ybc{bottom:632.293333pt;}
.y144{bottom:633.413333pt;}
.yfc{bottom:636.453333pt;}
.y188{bottom:644.613333pt;}
.y96{bottom:645.013333pt;}
.yb{bottom:647.093333pt;}
.ybb{bottom:647.893333pt;}
.y38{bottom:648.613333pt;}
.y143{bottom:649.013333pt;}
.y16b{bottom:652.613333pt;}
.yd4{bottom:652.853333pt;}
.y11b{bottom:656.133333pt;}
.y37{bottom:664.213333pt;}
.y142{bottom:664.613333pt;}
.y16a{bottom:668.213333pt;}
.y95{bottom:668.693333pt;}
.ya{bottom:671.013333pt;}
.yba{bottom:671.813333pt;}
.yd3{bottom:676.453333pt;}
.yfb{bottom:677.253333pt;}
.y141{bottom:680.293333pt;}
.y187{bottom:683.813333pt;}
.y36{bottom:688.613333pt;}
.y169{bottom:691.813333pt;}
.y11a{bottom:700.053333pt;}
.y94{bottom:700.293333pt;}
.y140{bottom:704.213333pt;}
.y168{bottom:707.493333pt;}
.yd2{bottom:708.053333pt;}
.yfa{bottom:708.773333pt;}
.y9{bottom:713.893333pt;}
.yb9{bottom:714.693333pt;}
.y93{bottom:715.973333pt;}
.y35{bottom:720.213333pt;}
.y186{bottom:723.093333pt;}
.y119{bottom:724.373333pt;}
.yd1{bottom:724.453333pt;}
.yf9{bottom:725.173333pt;}
.yb8{bottom:730.373333pt;}
.y167{bottom:731.093333pt;}
.y34{bottom:735.813333pt;}
.y92{bottom:739.573333pt;}
.yd0{bottom:740.853333pt;}
.y8{bottom:745.733333pt;}
.yb7{bottom:745.973333pt;}
.y166{bottom:746.693333pt;}
.y13f{bottom:747.093333pt;}
.y118{bottom:748.613333pt;}
.yf8{bottom:749.573333pt;}
.y33{bottom:752.213333pt;}
.ycf{bottom:757.173333pt;}
.y165{bottom:762.373333pt;}
.y13e{bottom:762.693333pt;}
.y32{bottom:767.813333pt;}
.y88{bottom:768.853333pt;}
.yb6{bottom:769.653333pt;}
.yce{bottom:772.773333pt;}
.y115{bottom:772.933333pt;}
.y7{bottom:777.733333pt;}
.y13d{bottom:778.373333pt;}
.yf7{bottom:781.173333pt;}
.y164{bottom:785.973333pt;}
.y31{bottom:792.213333pt;}
.y13c{bottom:793.973333pt;}
.ycd{bottom:797.173333pt;}
.yf6{bottom:797.573333pt;}
.yb5{bottom:801.253333pt;}
.y163{bottom:801.653333pt;}
.y13b{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y114{bottom:812.853333pt;}
.yb4{bottom:816.853333pt;}
.y53{bottom:817.573333pt;}
.yf5{bottom:821.973333pt;}
.y30{bottom:823.813333pt;}
.y13a{bottom:825.253333pt;}
.ycc{bottom:828.773333pt;}
.y2f{bottom:840.213333pt;}
.yb3{bottom:840.533333pt;}
.y139{bottom:840.853333pt;}
.y5{bottom:841.813333pt;}
.ycb{bottom:845.173333pt;}
.yf4{bottom:853.573333pt;}
.y113{bottom:856.133333pt;}
.y2e{bottom:856.613333pt;}
.yca{bottom:861.573333pt;}
.y138{bottom:864.533333pt;}
.yf3{bottom:869.173333pt;}
.yb2{bottom:872.133333pt;}
.y2d{bottom:872.213333pt;}
.y4{bottom:875.893333pt;}
.y162{bottom:880.133333pt;}
.yf2{bottom:885.573333pt;}
.yc9{bottom:885.973333pt;}
.yb1{bottom:887.813333pt;}
.y80{bottom:889.573333pt;}
.y137{bottom:896.133333pt;}
.y2c{bottom:896.613333pt;}
.y3{bottom:897.840000pt;}
.yf1{bottom:901.200000pt;}
.yb0{bottom:903.440000pt;}
.y161{bottom:903.840000pt;}
.y136{bottom:911.840000pt;}
.yc8{bottom:917.520000pt;}
.y160{bottom:919.440000pt;}
.yf0{bottom:925.600000pt;}
.yaf{bottom:927.040000pt;}
.y135{bottom:927.440000pt;}
.y2b{bottom:928.240000pt;}
.yc7{bottom:933.920000pt;}
.y134{bottom:943.040000pt;}
.y2a{bottom:943.840000pt;}
.yef{bottom:957.200000pt;}
.yc6{bottom:958.320000pt;}
.yae{bottom:958.720000pt;}
.y29{bottom:960.240000pt;}
.yee{bottom:973.600000pt;}
.yad{bottom:974.320000pt;}
.y15f{bottom:982.320000pt;}
.y28{bottom:984.640000pt;}
.yed{bottom:989.200000pt;}
.yac{bottom:990.000000pt;}
.y15e{bottom:998.000000pt;}
.y27{bottom:1013.600000pt;}
.y25{bottom:1061.600000pt;}
.he{height:2.281250pt;}
.h1a{height:23.600000pt;}
.hc{height:23.680000pt;}
.h2{height:26.686562pt;}
.h14{height:30.796875pt;}
.h3{height:35.644531pt;}
.h19{height:39.280000pt;}
.h1b{height:43.200000pt;}
.h6{height:45.246562pt;}
.h7{height:47.621094pt;}
.h8{height:49.581562pt;}
.h5{height:52.183594pt;}
.ha{height:53.309531pt;}
.hb{height:54.927899pt;}
.h9{height:55.631875pt;}
.h18{height:60.961875pt;}
.h4{height:66.441406pt;}
.h17{height:120.000000pt;}
.hd{height:124.026667pt;}
.hf{height:132.000000pt;}
.h16{height:136.026667pt;}
.h13{height:140.026667pt;}
.h12{height:148.000000pt;}
.h15{height:154.000000pt;}
.h10{height:208.026667pt;}
.h11{height:240.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:75.680000pt;}
.w7{width:145.226667pt;}
.w6{width:156.240000pt;}
.w4{width:172.026667pt;}
.w8{width:256.106667pt;}
.w5{width:265.706667pt;}
.w9{width:268.960000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.479988pt;}
.x12{left:98.879988pt;}
.x5{left:108.479988pt;}
.x7{left:137.440000pt;}
.x2{left:180.266655pt;}
.x10{left:207.066667pt;}
.xa{left:252.906667pt;}
.xd{left:254.906667pt;}
.xc{left:256.906667pt;}
.xb{left:258.906667pt;}
.x8{left:310.186667pt;}
.xf{left:323.386655pt;}
.x11{left:463.893333pt;}
.x9{left:576.613333pt;}
.xe{left:608.053322pt;}
.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; }
  