
    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_1fd7f00dfaea51583660b73f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a4ab3ece19b39886bf62609b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_eeb47f2a05c01cdc2a354758.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_0efc42fda54fc9ce7d30cd9f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b1bdfe74d08ef9328ac72e6e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_246b4dd9b91126092cddac00.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0b6ae3d14d90687bf4db2694.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894043;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_c8db322c02dc87fd105a6719.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.649414;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_70f7bb8e7159072f7885e34d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.m3{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);}
.v9{vertical-align:-61.920000px;}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:19.440000px;}
.v8{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v4{vertical-align:37.440000px;}
.ls21{letter-spacing:-0.702000px;}
.ls20{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.240600px;}
.ls9{letter-spacing:-0.226200px;}
.ls10{letter-spacing:-0.223800px;}
.ls18{letter-spacing:-0.054000px;}
.lsf{letter-spacing:-0.053280px;}
.lsd{letter-spacing:-0.018000px;}
.ls8{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls15{letter-spacing:0.018000px;}
.ls1f{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.106560px;}
.lse{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181200px;}
.ls19{letter-spacing:0.252000px;}
.ls11{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.315360px;}
.ls16{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.900000px;}
.ls22{letter-spacing:1.080000px;}
.ls14{letter-spacing:2.260800px;}
.ls13{letter-spacing:5.940000px;}
.ls1c{letter-spacing:24.660000px;}
.ls1b{letter-spacing:26.100000px;}
.ls4{letter-spacing:66.240000px;}
.ls6{letter-spacing:66.960000px;}
.ls5{letter-spacing:67.680000px;}
.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;}
}
.wsc{word-spacing:-54.360000px;}
.ws4{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.865400px;}
.wse{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws20{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.886720px;}
.ws21{word-spacing:-14.580000px;}
.ws0{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.482000px;}
.ws16{word-spacing:-13.160160px;}
.ws15{word-spacing:-13.147200px;}
.wsa{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.420000px;}
.ws1c{word-spacing:-12.204000px;}
.ws1f{word-spacing:-12.060000px;}
.ws1a{word-spacing:-11.880000px;}
.ws10{word-spacing:-11.836200px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.ws6{word-spacing:-9.720000px;}
.ws12{word-spacing:-9.187200px;}
.ws18{word-spacing:-9.000000px;}
.ws13{word-spacing:-8.946600px;}
.ws7{word-spacing:-7.560000px;}
.wsf{word-spacing:0.000000px;}
.ws1e{word-spacing:2.502000px;}
.ws1d{word-spacing:2.682000px;}
.ws1b{word-spacing:3.222000px;}
.ws19{word-spacing:3.294000px;}
.ws14{word-spacing:67.125960px;}
._13{margin-left:-2.239920px;}
._2{margin-left:-1.080000px;}
._0{width:1.085760px;}
._1{width:2.228160px;}
._4{width:3.780000px;}
._9{width:4.986000px;}
._8{width:6.082080px;}
._c{width:7.574160px;}
._b{width:8.964000px;}
._d{width:10.044000px;}
._10{width:11.816160px;}
._11{width:13.625280px;}
._14{width:15.102000px;}
._a{width:16.578000px;}
._5{width:17.982000px;}
._6{width:19.242720px;}
._12{width:20.297040px;}
._f{width:21.300000px;}
._22{width:23.328000px;}
._17{width:24.800400px;}
._15{width:26.115120px;}
._16{width:27.801840px;}
._1a{width:29.754000px;}
._19{width:39.690000px;}
._18{width:41.094000px;}
._23{width:47.874000px;}
._1e{width:60.210000px;}
._1d{width:61.236000px;}
._7{width:66.871680px;}
._1f{width:85.428000px;}
._1c{width:91.314000px;}
._1b{width:92.532000px;}
._20{width:114.588000px;}
._21{width:116.330400px;}
._e{width:1834.296000px;}
._3{width:2055.186720px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc6{color:rgb(3,50,255);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsc{font-size:18.000000px;}
.fsb{font-size:23.760000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fsa{font-size:50.848916px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsd{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fse{font-size:84.240000px;}
.fsf{font-size:95.760000px;}
.fs8{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.ya7{bottom:3.060000px;}
.y4b{bottom:4.320000px;}
.y2a{bottom:5.580000px;}
.yb7{bottom:5.760000px;}
.yb0{bottom:5.940000px;}
.yaf{bottom:6.120000px;}
.yad{bottom:8.100000px;}
.yb1{bottom:8.460000px;}
.ya9{bottom:10.800000px;}
.yb6{bottom:11.160000px;}
.yb5{bottom:11.340000px;}
.y3{bottom:18.000000px;}
.y4a{bottom:18.180000px;}
.ya6{bottom:18.540000px;}
.y91{bottom:18.900000px;}
.y29{bottom:19.440000px;}
.y4f{bottom:19.980000px;}
.yb3{bottom:22.320000px;}
.ya8{bottom:26.280000px;}
.y28{bottom:27.000000px;}
.y2{bottom:30.060000px;}
.yab{bottom:32.940000px;}
.ya5{bottom:34.020000px;}
.y4e{bottom:39.960000px;}
.y27{bottom:42.480000px;}
.y1{bottom:43.020000px;}
.y26{bottom:58.140000px;}
.y25{bottom:73.620000px;}
.y10d{bottom:75.780000px;}
.y149{bottom:76.680000px;}
.ybf{bottom:79.920000px;}
.y48{bottom:82.620000px;}
.ydc{bottom:83.160000px;}
.y8e{bottom:88.020000px;}
.y24{bottom:89.130000px;}
.y10c{bottom:91.260000px;}
.ybe{bottom:97.200000px;}
.y148{bottom:98.100000px;}
.y47{bottom:99.900000px;}
.ydb{bottom:100.260000px;}
.y23{bottom:104.610000px;}
.y10b{bottom:106.740000px;}
.y8d{bottom:107.820000px;}
.y147{bottom:113.760000px;}
.ybd{bottom:114.480000px;}
.y46{bottom:117.180000px;}
.yda{bottom:117.540000px;}
.y22{bottom:120.270000px;}
.y8c{bottom:127.620000px;}
.y10a{bottom:128.340000px;}
.y146{bottom:129.240000px;}
.ybc{bottom:131.760000px;}
.y2c{bottom:131.790000px;}
.y45{bottom:134.460000px;}
.yd9{bottom:134.820000px;}
.y21{bottom:135.750000px;}
.y109{bottom:143.820000px;}
.ybb{bottom:145.260000px;}
.y8b{bottom:147.420000px;}
.y145{bottom:150.870000px;}
.y20{bottom:151.230000px;}
.y44{bottom:151.770000px;}
.yd8{bottom:152.130000px;}
.y108{bottom:165.450000px;}
.y144{bottom:166.350000px;}
.y1f{bottom:166.710000px;}
.y8a{bottom:166.890000px;}
.y43{bottom:168.870000px;}
.yd7{bottom:169.410000px;}
.y107{bottom:180.930000px;}
.y143{bottom:181.830000px;}
.y1e{bottom:182.370000px;}
.y89{bottom:184.350000px;}
.y42{bottom:186.150000px;}
.yd6{bottom:186.690000px;}
.y1d{bottom:197.850000px;}
.y88{bottom:201.990000px;}
.y106{bottom:202.530000px;}
.y41{bottom:203.430000px;}
.yd5{bottom:203.790000px;}
.y1c{bottom:213.330000px;}
.y87{bottom:216.210000px;}
.y142{bottom:218.910000px;}
.y40{bottom:220.710000px;}
.yd4{bottom:221.070000px;}
.y86{bottom:223.770000px;}
.y105{bottom:223.950000px;}
.y1b{bottom:228.810000px;}
.y141{bottom:234.390000px;}
.y3f{bottom:237.990000px;}
.yd3{bottom:238.350000px;}
.y104{bottom:239.610000px;}
.y85{bottom:246.270000px;}
.y1a{bottom:250.950000px;}
.y3e{bottom:255.270000px;}
.yd2{bottom:255.630000px;}
.y140{bottom:255.990000px;}
.y103{bottom:256.890000px;}
.y84{bottom:263.370000px;}
.y2b{bottom:263.550000px;}
.y13f{bottom:271.470000px;}
.y3d{bottom:272.370000px;}
.yd1{bottom:272.910000px;}
.y83{bottom:280.650000px;}
.y3c{bottom:289.650000px;}
.yd0{bottom:290.010000px;}
.y13e{bottom:292.890000px;}
.y82{bottom:297.930000px;}
.y102{bottom:306.210000px;}
.y3b{bottom:306.930000px;}
.ycf{bottom:307.290000px;}
.y13d{bottom:308.550000px;}
.y81{bottom:315.210000px;}
.y101{bottom:323.490000px;}
.y13c{bottom:324.030000px;}
.y3a{bottom:324.210000px;}
.yce{bottom:324.570000px;}
.y80{bottom:332.490000px;}
.y13b{bottom:339.510000px;}
.y100{bottom:340.410000px;}
.y39{bottom:341.490000px;}
.ycd{bottom:341.850000px;}
.y7f{bottom:349.770000px;}
.yff{bottom:357.510000px;}
.y38{bottom:358.590000px;}
.ycc{bottom:359.130000px;}
.y13a{bottom:361.110000px;}
.y7e{bottom:366.870000px;}
.yfe{bottom:375.150000px;}
.y37{bottom:375.870000px;}
.ycb{bottom:376.410000px;}
.y139{bottom:376.590000px;}
.y7d{bottom:384.150000px;}
.yfd{bottom:392.070000px;}
.y36{bottom:393.150000px;}
.yca{bottom:393.510000px;}
.y138{bottom:398.190000px;}
.y7c{bottom:401.115000px;}
.yfc{bottom:409.395000px;}
.y35{bottom:410.475000px;}
.yc9{bottom:410.835000px;}
.y137{bottom:413.715000px;}
.y7b{bottom:418.395000px;}
.yfb{bottom:427.035000px;}
.y34{bottom:427.755000px;}
.yc8{bottom:428.115000px;}
.y136{bottom:429.195000px;}
.y7a{bottom:436.035000px;}
.yfa{bottom:443.955000px;}
.y33{bottom:445.035000px;}
.yc7{bottom:445.395000px;}
.y135{bottom:450.795000px;}
.y79{bottom:453.315000px;}
.yf9{bottom:461.055000px;}
.y32{bottom:462.135000px;}
.yc6{bottom:462.675000px;}
.y134{bottom:466.275000px;}
.y78{bottom:470.415000px;}
.yf8{bottom:478.695000px;}
.y31{bottom:479.415000px;}
.yc5{bottom:479.595000px;}
.y133{bottom:481.755000px;}
.y77{bottom:487.695000px;}
.yf7{bottom:495.975000px;}
.y30{bottom:496.695000px;}
.y132{bottom:503.355000px;}
.y76{bottom:504.975000px;}
.yf6{bottom:513.255000px;}
.yc4{bottom:514.335000px;}
.y2f{bottom:516.315000px;}
.y131{bottom:518.835000px;}
.y75{bottom:522.255000px;}
.yf5{bottom:530.535000px;}
.yc3{bottom:531.615000px;}
.y2e{bottom:535.755000px;}
.y74{bottom:539.535000px;}
.y130{bottom:540.435000px;}
.yf4{bottom:547.275000px;}
.yc2{bottom:548.895000px;}
.y12f{bottom:555.915000px;}
.y2d{bottom:556.095000px;}
.y73{bottom:556.635000px;}
.yf3{bottom:564.555000px;}
.yc1{bottom:566.175000px;}
.y19{bottom:569.775000px;}
.y12e{bottom:571.395000px;}
.y72{bottom:573.915000px;}
.yc0{bottom:579.675000px;}
.yf2{bottom:582.195000px;}
.y71{bottom:591.195000px;}
.y12d{bottom:592.995000px;}
.yf1{bottom:599.475000px;}
.y70{bottom:608.475000px;}
.yf0{bottom:616.755000px;}
.yba{bottom:622.875000px;}
.y6f{bottom:625.395000px;}
.y12c{bottom:629.895000px;}
.yef{bottom:634.035000px;}
.y6e{bottom:642.675000px;}
.yb9{bottom:644.835000px;}
.y12b{bottom:645.555000px;}
.yee{bottom:651.165000px;}
.yb8{bottom:658.725000px;}
.y6d{bottom:660.165000px;}
.y12a{bottom:667.005000px;}
.yed{bottom:668.085000px;}
.yb2{bottom:670.245000px;}
.y6c{bottom:677.445000px;}
.y129{bottom:682.485000px;}
.yec{bottom:685.365000px;}
.yb4{bottom:692.205000px;}
.y6b{bottom:694.725000px;}
.yeb{bottom:703.005000px;}
.y128{bottom:704.085000px;}
.y6a{bottom:712.005000px;}
.y127{bottom:719.565000px;}
.yea{bottom:720.285000px;}
.yaa{bottom:724.605000px;}
.y69{bottom:729.285000px;}
.y126{bottom:735.225000px;}
.ye9{bottom:737.565000px;}
.y68{bottom:746.565000px;}
.y125{bottom:750.705000px;}
.yae{bottom:751.785000px;}
.ye8{bottom:754.305000px;}
.y67{bottom:763.665000px;}
.ye7{bottom:771.585000px;}
.y124{bottom:772.125000px;}
.yac{bottom:774.465000px;}
.y66{bottom:780.945000px;}
.y123{bottom:787.785000px;}
.ye6{bottom:788.865000px;}
.y65{bottom:798.225000px;}
.ya4{bottom:800.205000px;}
.y122{bottom:803.265000px;}
.ye5{bottom:806.145000px;}
.y64{bottom:815.145000px;}
.ye4{bottom:823.785000px;}
.y121{bottom:824.685000px;}
.y63{bottom:832.425000px;}
.y18{bottom:838.005000px;}
.y120{bottom:840.345000px;}
.ye3{bottom:840.885000px;}
.y62{bottom:849.885000px;}
.ya3{bottom:851.325000px;}
.y17{bottom:854.025000px;}
.y11f{bottom:855.825000px;}
.ye2{bottom:858.165000px;}
.y61{bottom:867.165000px;}
.y16{bottom:867.525000px;}
.ya2{bottom:868.605000px;}
.ye1{bottom:875.445000px;}
.y11e{bottom:877.245000px;}
.y15{bottom:881.205000px;}
.y60{bottom:884.445000px;}
.ya1{bottom:886.785000px;}
.ye0{bottom:892.725000px;}
.y11d{bottom:892.905000px;}
.y14{bottom:894.885000px;}
.y158{bottom:897.630000px;}
.y5f{bottom:901.770000px;}
.y13{bottom:903.570000px;}
.ya0{bottom:910.050000px;}
.y157{bottom:913.110000px;}
.y11c{bottom:914.370000px;}
.y5e{bottom:919.050000px;}
.y12{bottom:922.650000px;}
.y9f{bottom:927.330000px;}
.y156{bottom:928.590000px;}
.y11b{bottom:930.030000px;}
.y11{bottom:931.110000px;}
.y5d{bottom:935.970000px;}
.y155{bottom:944.070000px;}
.y9e{bottom:944.430000px;}
.y11a{bottom:945.510000px;}
.y10{bottom:950.190000px;}
.y5c{bottom:953.070000px;}
.yf{bottom:958.290000px;}
.y154{bottom:959.730000px;}
.ydf{bottom:961.350000px;}
.y9d{bottom:961.710000px;}
.y119{bottom:966.930000px;}
.y5b{bottom:970.350000px;}
.ye{bottom:971.250000px;}
.y153{bottom:975.210000px;}
.yde{bottom:978.630000px;}
.y9c{bottom:978.990000px;}
.y118{bottom:982.590000px;}
.y5a{bottom:987.630000px;}
.y152{bottom:990.690000px;}
.yd{bottom:991.230000px;}
.y9b{bottom:996.270000px;}
.y117{bottom:1004.010000px;}
.y59{bottom:1005.270000px;}
.y151{bottom:1006.170000px;}
.yc{bottom:1011.750000px;}
.y9a{bottom:1013.550000px;}
.y116{bottom:1019.490000px;}
.y150{bottom:1021.830000px;}
.y58{bottom:1022.550000px;}
.y99{bottom:1030.830000px;}
.yb{bottom:1032.270000px;}
.y57{bottom:1039.830000px;}
.y115{bottom:1041.090000px;}
.y98{bottom:1047.930000px;}
.y14f{bottom:1052.790000px;}
.y114{bottom:1056.570000px;}
.y56{bottom:1056.930000px;}
.y97{bottom:1065.210000px;}
.y14e{bottom:1068.270000px;}
.ya{bottom:1068.450000px;}
.y113{bottom:1072.050000px;}
.y55{bottom:1074.210000px;}
.y96{bottom:1082.490000px;}
.y14d{bottom:1089.870000px;}
.y54{bottom:1091.490000px;}
.y112{bottom:1093.650000px;}
.y95{bottom:1099.770000px;}
.y9{bottom:1101.210000px;}
.y53{bottom:1108.770000px;}
.y111{bottom:1109.130000px;}
.y14c{bottom:1111.470000px;}
.y49{bottom:1112.730000px;}
.y94{bottom:1117.050000px;}
.y8{bottom:1117.950000px;}
.y52{bottom:1126.050000px;}
.y14b{bottom:1129.830000px;}
.y110{bottom:1130.730000px;}
.y93{bottom:1134.330000px;}
.y51{bottom:1143.330000px;}
.y10f{bottom:1146.240000px;}
.y92{bottom:1151.100000px;}
.ydd{bottom:1151.460000px;}
.y14a{bottom:1152.720000px;}
.y7{bottom:1155.960000px;}
.y50{bottom:1160.460000px;}
.y10e{bottom:1161.720000px;}
.y6{bottom:1167.480000px;}
.y90{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y4d{bottom:1178.460000px;}
.y8f{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y4c{bottom:1197.720000px;}
.h6{height:5.650313px;}
.h13{height:18.140625px;}
.h26{height:20.520000px;}
.h22{height:21.240000px;}
.h11{height:23.319141px;}
.h1f{height:25.020000px;}
.h23{height:25.740000px;}
.h16{height:27.705000px;}
.he{height:29.664141px;}
.h25{height:31.680000px;}
.h3{height:40.985156px;}
.h17{height:42.922699px;}
.h1d{height:46.620000px;}
.hf{height:47.321367px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h27{height:50.558906px;}
.h10{height:52.264673px;}
.h2{height:52.998047px;}
.h24{height:53.640000px;}
.h8{height:54.421875px;}
.h15{height:55.503472px;}
.hc{height:58.651172px;}
.h20{height:59.092031px;}
.h9{height:60.226875px;}
.h21{height:62.629453px;}
.h19{height:65.518594px;}
.hd{height:66.543750px;}
.h14{height:66.757500px;}
.h18{height:70.664062px;}
.h5{height:72.562500px;}
.h1e{height:74.880000px;}
.h28{height:82.676953px;}
.h1a{height:83.828672px;}
.h1c{height:84.898125px;}
.h29{height:93.983203px;}
.h1b{height:96.623789px;}
.ha{height:126.984375px;}
.hb{height:129.508145px;}
.h12{height:263.550000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:67.129500px;}
.w9{width:82.785000px;}
.w7{width:82.800000px;}
.wb{width:87.330000px;}
.w8{width:93.456000px;}
.w3{width:101.730000px;}
.w6{width:107.662500px;}
.wa{width:212.775000px;}
.w4{width:232.050000px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xd{left:-36.900000px;}
.xc{left:-19.800000px;}
.xb{left:-5.040000px;}
.x0{left:0.000000px;}
.x14{left:8.089500px;}
.xa{left:10.650000px;}
.x9{left:26.850000px;}
.x8{left:42.510000px;}
.x7{left:58.710000px;}
.x6{left:78.150000px;}
.x2{left:81.036000px;}
.xe{left:108.036000px;}
.x1d{left:113.076000px;}
.x15{left:148.186500px;}
.x1e{left:158.250000px;}
.x12{left:246.675000px;}
.x16{left:255.855000px;}
.x17{left:338.655000px;}
.x10{left:359.715000px;}
.x13{left:376.095000px;}
.x4{left:413.745000px;}
.x18{left:432.120000px;}
.x11{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x19{left:514.920000px;}
.xf{left:590.370000px;}
.x5{left:721.950000px;}
.x1a{left:727.890000px;}
.x1c{left:803.340000px;}
.x1b{left:814.680000px;}
@media print{
.v9{vertical-align:-55.040000pt;}
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:17.280000pt;}
.v8{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v4{vertical-align:33.280000pt;}
.ls21{letter-spacing:-0.624000pt;}
.ls20{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.213867pt;}
.ls9{letter-spacing:-0.201067pt;}
.ls10{letter-spacing:-0.198933pt;}
.ls18{letter-spacing:-0.048000pt;}
.lsf{letter-spacing:-0.047360pt;}
.lsd{letter-spacing:-0.016000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls15{letter-spacing:0.016000pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161067pt;}
.ls19{letter-spacing:0.224000pt;}
.ls11{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.280320pt;}
.ls16{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.800000pt;}
.ls22{letter-spacing:0.960000pt;}
.ls14{letter-spacing:2.009600pt;}
.ls13{letter-spacing:5.280000pt;}
.ls1c{letter-spacing:21.920000pt;}
.ls1b{letter-spacing:23.200000pt;}
.ls4{letter-spacing:58.880000pt;}
.ls6{letter-spacing:59.520000pt;}
.ls5{letter-spacing:60.160000pt;}
.wsc{word-spacing:-48.320000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.991467pt;}
.wse{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws20{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.232640pt;}
.ws21{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.984000pt;}
.ws16{word-spacing:-11.697920pt;}
.ws15{word-spacing:-11.686400pt;}
.wsa{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws1c{word-spacing:-10.848000pt;}
.ws1f{word-spacing:-10.720000pt;}
.ws1a{word-spacing:-10.560000pt;}
.ws10{word-spacing:-10.521067pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.ws6{word-spacing:-8.640000pt;}
.ws12{word-spacing:-8.166400pt;}
.ws18{word-spacing:-8.000000pt;}
.ws13{word-spacing:-7.952533pt;}
.ws7{word-spacing:-6.720000pt;}
.wsf{word-spacing:0.000000pt;}
.ws1e{word-spacing:2.224000pt;}
.ws1d{word-spacing:2.384000pt;}
.ws1b{word-spacing:2.864000pt;}
.ws19{word-spacing:2.928000pt;}
.ws14{word-spacing:59.667520pt;}
._13{margin-left:-1.991040pt;}
._2{margin-left:-0.960000pt;}
._0{width:0.965120pt;}
._1{width:1.980587pt;}
._4{width:3.360000pt;}
._9{width:4.432000pt;}
._8{width:5.406293pt;}
._c{width:6.732587pt;}
._b{width:7.968000pt;}
._d{width:8.928000pt;}
._10{width:10.503253pt;}
._11{width:12.111360pt;}
._14{width:13.424000pt;}
._a{width:14.736000pt;}
._5{width:15.984000pt;}
._6{width:17.104640pt;}
._12{width:18.041813pt;}
._f{width:18.933333pt;}
._22{width:20.736000pt;}
._17{width:22.044800pt;}
._15{width:23.213440pt;}
._16{width:24.712747pt;}
._1a{width:26.448000pt;}
._19{width:35.280000pt;}
._18{width:36.528000pt;}
._23{width:42.554667pt;}
._1e{width:53.520000pt;}
._1d{width:54.432000pt;}
._7{width:59.441493pt;}
._1f{width:75.936000pt;}
._1c{width:81.168000pt;}
._1b{width:82.250667pt;}
._20{width:101.856000pt;}
._21{width:103.404800pt;}
._e{width:1630.485333pt;}
._3{width:1826.832640pt;}
.fs6{font-size:5.120000pt;}
.fsc{font-size:16.000000pt;}
.fsb{font-size:21.120000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fsa{font-size:45.199037pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsd{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fse{font-size:74.880000pt;}
.fsf{font-size:85.120000pt;}
.fs8{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.ya7{bottom:2.720000pt;}
.y4b{bottom:3.840000pt;}
.y2a{bottom:4.960000pt;}
.yb7{bottom:5.120000pt;}
.yb0{bottom:5.280000pt;}
.yaf{bottom:5.440000pt;}
.yad{bottom:7.200000pt;}
.yb1{bottom:7.520000pt;}
.ya9{bottom:9.600000pt;}
.yb6{bottom:9.920000pt;}
.yb5{bottom:10.080000pt;}
.y3{bottom:16.000000pt;}
.y4a{bottom:16.160000pt;}
.ya6{bottom:16.480000pt;}
.y91{bottom:16.800000pt;}
.y29{bottom:17.280000pt;}
.y4f{bottom:17.760000pt;}
.yb3{bottom:19.840000pt;}
.ya8{bottom:23.360000pt;}
.y28{bottom:24.000000pt;}
.y2{bottom:26.720000pt;}
.yab{bottom:29.280000pt;}
.ya5{bottom:30.240000pt;}
.y4e{bottom:35.520000pt;}
.y27{bottom:37.760000pt;}
.y1{bottom:38.240000pt;}
.y26{bottom:51.680000pt;}
.y25{bottom:65.440000pt;}
.y10d{bottom:67.360000pt;}
.y149{bottom:68.160000pt;}
.ybf{bottom:71.040000pt;}
.y48{bottom:73.440000pt;}
.ydc{bottom:73.920000pt;}
.y8e{bottom:78.240000pt;}
.y24{bottom:79.226667pt;}
.y10c{bottom:81.120000pt;}
.ybe{bottom:86.400000pt;}
.y148{bottom:87.200000pt;}
.y47{bottom:88.800000pt;}
.ydb{bottom:89.120000pt;}
.y23{bottom:92.986667pt;}
.y10b{bottom:94.880000pt;}
.y8d{bottom:95.840000pt;}
.y147{bottom:101.120000pt;}
.ybd{bottom:101.760000pt;}
.y46{bottom:104.160000pt;}
.yda{bottom:104.480000pt;}
.y22{bottom:106.906667pt;}
.y8c{bottom:113.440000pt;}
.y10a{bottom:114.080000pt;}
.y146{bottom:114.880000pt;}
.ybc{bottom:117.120000pt;}
.y2c{bottom:117.146667pt;}
.y45{bottom:119.520000pt;}
.yd9{bottom:119.840000pt;}
.y21{bottom:120.666667pt;}
.y109{bottom:127.840000pt;}
.ybb{bottom:129.120000pt;}
.y8b{bottom:131.040000pt;}
.y145{bottom:134.106667pt;}
.y20{bottom:134.426667pt;}
.y44{bottom:134.906667pt;}
.yd8{bottom:135.226667pt;}
.y108{bottom:147.066667pt;}
.y144{bottom:147.866667pt;}
.y1f{bottom:148.186667pt;}
.y8a{bottom:148.346667pt;}
.y43{bottom:150.106667pt;}
.yd7{bottom:150.586667pt;}
.y107{bottom:160.826667pt;}
.y143{bottom:161.626667pt;}
.y1e{bottom:162.106667pt;}
.y89{bottom:163.866667pt;}
.y42{bottom:165.466667pt;}
.yd6{bottom:165.946667pt;}
.y1d{bottom:175.866667pt;}
.y88{bottom:179.546667pt;}
.y106{bottom:180.026667pt;}
.y41{bottom:180.826667pt;}
.yd5{bottom:181.146667pt;}
.y1c{bottom:189.626667pt;}
.y87{bottom:192.186667pt;}
.y142{bottom:194.586667pt;}
.y40{bottom:196.186667pt;}
.yd4{bottom:196.506667pt;}
.y86{bottom:198.906667pt;}
.y105{bottom:199.066667pt;}
.y1b{bottom:203.386667pt;}
.y141{bottom:208.346667pt;}
.y3f{bottom:211.546667pt;}
.yd3{bottom:211.866667pt;}
.y104{bottom:212.986667pt;}
.y85{bottom:218.906667pt;}
.y1a{bottom:223.066667pt;}
.y3e{bottom:226.906667pt;}
.yd2{bottom:227.226667pt;}
.y140{bottom:227.546667pt;}
.y103{bottom:228.346667pt;}
.y84{bottom:234.106667pt;}
.y2b{bottom:234.266667pt;}
.y13f{bottom:241.306667pt;}
.y3d{bottom:242.106667pt;}
.yd1{bottom:242.586667pt;}
.y83{bottom:249.466667pt;}
.y3c{bottom:257.466667pt;}
.yd0{bottom:257.786667pt;}
.y13e{bottom:260.346667pt;}
.y82{bottom:264.826667pt;}
.y102{bottom:272.186667pt;}
.y3b{bottom:272.826667pt;}
.ycf{bottom:273.146667pt;}
.y13d{bottom:274.266667pt;}
.y81{bottom:280.186667pt;}
.y101{bottom:287.546667pt;}
.y13c{bottom:288.026667pt;}
.y3a{bottom:288.186667pt;}
.yce{bottom:288.506667pt;}
.y80{bottom:295.546667pt;}
.y13b{bottom:301.786667pt;}
.y100{bottom:302.586667pt;}
.y39{bottom:303.546667pt;}
.ycd{bottom:303.866667pt;}
.y7f{bottom:310.906667pt;}
.yff{bottom:317.786667pt;}
.y38{bottom:318.746667pt;}
.ycc{bottom:319.226667pt;}
.y13a{bottom:320.986667pt;}
.y7e{bottom:326.106667pt;}
.yfe{bottom:333.466667pt;}
.y37{bottom:334.106667pt;}
.ycb{bottom:334.586667pt;}
.y139{bottom:334.746667pt;}
.y7d{bottom:341.466667pt;}
.yfd{bottom:348.506667pt;}
.y36{bottom:349.466667pt;}
.yca{bottom:349.786667pt;}
.y138{bottom:353.946667pt;}
.y7c{bottom:356.546667pt;}
.yfc{bottom:363.906667pt;}
.y35{bottom:364.866667pt;}
.yc9{bottom:365.186667pt;}
.y137{bottom:367.746667pt;}
.y7b{bottom:371.906667pt;}
.yfb{bottom:379.586667pt;}
.y34{bottom:380.226667pt;}
.yc8{bottom:380.546667pt;}
.y136{bottom:381.506667pt;}
.y7a{bottom:387.586667pt;}
.yfa{bottom:394.626667pt;}
.y33{bottom:395.586667pt;}
.yc7{bottom:395.906667pt;}
.y135{bottom:400.706667pt;}
.y79{bottom:402.946667pt;}
.yf9{bottom:409.826667pt;}
.y32{bottom:410.786667pt;}
.yc6{bottom:411.266667pt;}
.y134{bottom:414.466667pt;}
.y78{bottom:418.146667pt;}
.yf8{bottom:425.506667pt;}
.y31{bottom:426.146667pt;}
.yc5{bottom:426.306667pt;}
.y133{bottom:428.226667pt;}
.y77{bottom:433.506667pt;}
.yf7{bottom:440.866667pt;}
.y30{bottom:441.506667pt;}
.y132{bottom:447.426667pt;}
.y76{bottom:448.866667pt;}
.yf6{bottom:456.226667pt;}
.yc4{bottom:457.186667pt;}
.y2f{bottom:458.946667pt;}
.y131{bottom:461.186667pt;}
.y75{bottom:464.226667pt;}
.yf5{bottom:471.586667pt;}
.yc3{bottom:472.546667pt;}
.y2e{bottom:476.226667pt;}
.y74{bottom:479.586667pt;}
.y130{bottom:480.386667pt;}
.yf4{bottom:486.466667pt;}
.yc2{bottom:487.906667pt;}
.y12f{bottom:494.146667pt;}
.y2d{bottom:494.306667pt;}
.y73{bottom:494.786667pt;}
.yf3{bottom:501.826667pt;}
.yc1{bottom:503.266667pt;}
.y19{bottom:506.466667pt;}
.y12e{bottom:507.906667pt;}
.y72{bottom:510.146667pt;}
.yc0{bottom:515.266667pt;}
.yf2{bottom:517.506667pt;}
.y71{bottom:525.506667pt;}
.y12d{bottom:527.106667pt;}
.yf1{bottom:532.866667pt;}
.y70{bottom:540.866667pt;}
.yf0{bottom:548.226667pt;}
.yba{bottom:553.666667pt;}
.y6f{bottom:555.906667pt;}
.y12c{bottom:559.906667pt;}
.yef{bottom:563.586667pt;}
.y6e{bottom:571.266667pt;}
.yb9{bottom:573.186667pt;}
.y12b{bottom:573.826667pt;}
.yee{bottom:578.813333pt;}
.yb8{bottom:585.533333pt;}
.y6d{bottom:586.813333pt;}
.y12a{bottom:592.893333pt;}
.yed{bottom:593.853333pt;}
.yb2{bottom:595.773333pt;}
.y6c{bottom:602.173333pt;}
.y129{bottom:606.653333pt;}
.yec{bottom:609.213333pt;}
.yb4{bottom:615.293333pt;}
.y6b{bottom:617.533333pt;}
.yeb{bottom:624.893333pt;}
.y128{bottom:625.853333pt;}
.y6a{bottom:632.893333pt;}
.y127{bottom:639.613333pt;}
.yea{bottom:640.253333pt;}
.yaa{bottom:644.093333pt;}
.y69{bottom:648.253333pt;}
.y126{bottom:653.533333pt;}
.ye9{bottom:655.613333pt;}
.y68{bottom:663.613333pt;}
.y125{bottom:667.293333pt;}
.yae{bottom:668.253333pt;}
.ye8{bottom:670.493333pt;}
.y67{bottom:678.813333pt;}
.ye7{bottom:685.853333pt;}
.y124{bottom:686.333333pt;}
.yac{bottom:688.413333pt;}
.y66{bottom:694.173333pt;}
.y123{bottom:700.253333pt;}
.ye6{bottom:701.213333pt;}
.y65{bottom:709.533333pt;}
.ya4{bottom:711.293333pt;}
.y122{bottom:714.013333pt;}
.ye5{bottom:716.573333pt;}
.y64{bottom:724.573333pt;}
.ye4{bottom:732.253333pt;}
.y121{bottom:733.053333pt;}
.y63{bottom:739.933333pt;}
.y18{bottom:744.893333pt;}
.y120{bottom:746.973333pt;}
.ye3{bottom:747.453333pt;}
.y62{bottom:755.453333pt;}
.ya3{bottom:756.733333pt;}
.y17{bottom:759.133333pt;}
.y11f{bottom:760.733333pt;}
.ye2{bottom:762.813333pt;}
.y61{bottom:770.813333pt;}
.y16{bottom:771.133333pt;}
.ya2{bottom:772.093333pt;}
.ye1{bottom:778.173333pt;}
.y11e{bottom:779.773333pt;}
.y15{bottom:783.293333pt;}
.y60{bottom:786.173333pt;}
.ya1{bottom:788.253333pt;}
.ye0{bottom:793.533333pt;}
.y11d{bottom:793.693333pt;}
.y14{bottom:795.453333pt;}
.y158{bottom:797.893333pt;}
.y5f{bottom:801.573333pt;}
.y13{bottom:803.173333pt;}
.ya0{bottom:808.933333pt;}
.y157{bottom:811.653333pt;}
.y11c{bottom:812.773333pt;}
.y5e{bottom:816.933333pt;}
.y12{bottom:820.133333pt;}
.y9f{bottom:824.293333pt;}
.y156{bottom:825.413333pt;}
.y11b{bottom:826.693333pt;}
.y11{bottom:827.653333pt;}
.y5d{bottom:831.973333pt;}
.y155{bottom:839.173333pt;}
.y9e{bottom:839.493333pt;}
.y11a{bottom:840.453333pt;}
.y10{bottom:844.613333pt;}
.y5c{bottom:847.173333pt;}
.yf{bottom:851.813333pt;}
.y154{bottom:853.093333pt;}
.ydf{bottom:854.533333pt;}
.y9d{bottom:854.853333pt;}
.y119{bottom:859.493333pt;}
.y5b{bottom:862.533333pt;}
.ye{bottom:863.333333pt;}
.y153{bottom:866.853333pt;}
.yde{bottom:869.893333pt;}
.y9c{bottom:870.213333pt;}
.y118{bottom:873.413333pt;}
.y5a{bottom:877.893333pt;}
.y152{bottom:880.613333pt;}
.yd{bottom:881.093333pt;}
.y9b{bottom:885.573333pt;}
.y117{bottom:892.453333pt;}
.y59{bottom:893.573333pt;}
.y151{bottom:894.373333pt;}
.yc{bottom:899.333333pt;}
.y9a{bottom:900.933333pt;}
.y116{bottom:906.213333pt;}
.y150{bottom:908.293333pt;}
.y58{bottom:908.933333pt;}
.y99{bottom:916.293333pt;}
.yb{bottom:917.573333pt;}
.y57{bottom:924.293333pt;}
.y115{bottom:925.413333pt;}
.y98{bottom:931.493333pt;}
.y14f{bottom:935.813333pt;}
.y114{bottom:939.173333pt;}
.y56{bottom:939.493333pt;}
.y97{bottom:946.853333pt;}
.y14e{bottom:949.573333pt;}
.ya{bottom:949.733333pt;}
.y113{bottom:952.933333pt;}
.y55{bottom:954.853333pt;}
.y96{bottom:962.213333pt;}
.y14d{bottom:968.773333pt;}
.y54{bottom:970.213333pt;}
.y112{bottom:972.133333pt;}
.y95{bottom:977.573333pt;}
.y9{bottom:978.853333pt;}
.y53{bottom:985.573333pt;}
.y111{bottom:985.893333pt;}
.y14c{bottom:987.973333pt;}
.y49{bottom:989.093333pt;}
.y94{bottom:992.933333pt;}
.y8{bottom:993.733333pt;}
.y52{bottom:1000.933333pt;}
.y14b{bottom:1004.293333pt;}
.y110{bottom:1005.093333pt;}
.y93{bottom:1008.293333pt;}
.y51{bottom:1016.293333pt;}
.y10f{bottom:1018.880000pt;}
.y92{bottom:1023.200000pt;}
.ydd{bottom:1023.520000pt;}
.y14a{bottom:1024.640000pt;}
.y7{bottom:1027.520000pt;}
.y50{bottom:1031.520000pt;}
.y10e{bottom:1032.640000pt;}
.y6{bottom:1037.760000pt;}
.y90{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y4d{bottom:1047.520000pt;}
.y8f{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y4c{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.h13{height:16.125000pt;}
.h26{height:18.240000pt;}
.h22{height:18.880000pt;}
.h11{height:20.728125pt;}
.h1f{height:22.240000pt;}
.h23{height:22.880000pt;}
.h16{height:24.626667pt;}
.he{height:26.368125pt;}
.h25{height:28.160000pt;}
.h3{height:36.431250pt;}
.h17{height:38.153511pt;}
.h1d{height:41.440000pt;}
.hf{height:42.063437pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h27{height:44.941250pt;}
.h10{height:46.457487pt;}
.h2{height:47.109375pt;}
.h24{height:47.680000pt;}
.h8{height:48.375000pt;}
.h15{height:49.336419pt;}
.hc{height:52.134375pt;}
.h20{height:52.526250pt;}
.h9{height:53.535000pt;}
.h21{height:55.670625pt;}
.h19{height:58.238750pt;}
.hd{height:59.150000pt;}
.h14{height:59.340000pt;}
.h18{height:62.812500pt;}
.h5{height:64.500000pt;}
.h1e{height:66.560000pt;}
.h28{height:73.490625pt;}
.h1a{height:74.514375pt;}
.h1c{height:75.465000pt;}
.h29{height:83.540625pt;}
.h1b{height:85.887813pt;}
.ha{height:112.875000pt;}
.hb{height:115.118351pt;}
.h12{height:234.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:59.670667pt;}
.w9{width:73.586667pt;}
.w7{width:73.600000pt;}
.wb{width:77.626667pt;}
.w8{width:83.072000pt;}
.w3{width:90.426667pt;}
.w6{width:95.700000pt;}
.wa{width:189.133333pt;}
.w4{width:206.266667pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xd{left:-32.800000pt;}
.xc{left:-17.600000pt;}
.xb{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x14{left:7.190667pt;}
.xa{left:9.466667pt;}
.x9{left:23.866667pt;}
.x8{left:37.786667pt;}
.x7{left:52.186667pt;}
.x6{left:69.466667pt;}
.x2{left:72.032000pt;}
.xe{left:96.032000pt;}
.x1d{left:100.512000pt;}
.x15{left:131.721333pt;}
.x1e{left:140.666667pt;}
.x12{left:219.266667pt;}
.x16{left:227.426667pt;}
.x17{left:301.026667pt;}
.x10{left:319.746667pt;}
.x13{left:334.306667pt;}
.x4{left:367.773333pt;}
.x18{left:384.106667pt;}
.x11{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x19{left:457.706667pt;}
.xf{left:524.773333pt;}
.x5{left:641.733333pt;}
.x1a{left:647.013333pt;}
.x1c{left:714.080000pt;}
.x1b{left:724.160000pt;}
}




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