
    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_9930ed299d90f8bd83514b87.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d7122420972ae0e1c28d54bd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7c0aa91f4325af9ab21df875.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5d9e0aa6cafaaa2b3d030f49.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f7b2fb88eeaed5816ca9f4cf.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4357e45cee6cbf0fc23f8b17.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ab917d733893b9537a74aafa.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9943af35aa60bbf4a4c7c260.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_da39e6b1795975708a882693.woff')format("woff");}.ff9{font-family:ff9;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;}
.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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.520000px;}
.v4{vertical-align:12.960000px;}
.v2{vertical-align:15.120000px;}
.ls7{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.178800px;}
.ls5{letter-spacing:-0.135000px;}
.ls12{letter-spacing:-0.125400px;}
.ls9{letter-spacing:-0.121200px;}
.ls4{letter-spacing:-0.090000px;}
.ls6{letter-spacing:-0.084600px;}
.lse{letter-spacing:-0.063600px;}
.ls1a{letter-spacing:-0.008640px;}
.ls16{letter-spacing:-0.006840px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.060480px;}
.lsf{letter-spacing:0.060600px;}
.ls19{letter-spacing:0.068400px;}
.ls13{letter-spacing:0.075000px;}
.ls1{letter-spacing:0.090000px;}
.ls17{letter-spacing:0.092400px;}
.ls18{letter-spacing:0.093600px;}
.ls1e{letter-spacing:0.098400px;}
.ls11{letter-spacing:0.115800px;}
.ls1b{letter-spacing:0.118200px;}
.ls3{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.475800px;}
.ls0{letter-spacing:13.347360px;}
.ls1d{letter-spacing:47.726640px;}
.ls1c{letter-spacing:80.846640px;}
.ls15{letter-spacing:82.654920px;}
.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;}
}
.ws15{word-spacing:-60.120000px;}
.ws14{word-spacing:-60.113160px;}
.ws12{word-spacing:-59.985000px;}
.ws13{word-spacing:-46.885680px;}
.ws3{word-spacing:-18.453600px;}
.ws8{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws18{word-spacing:-13.344600px;}
.wsf{word-spacing:-13.342200px;}
.ws19{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.162800px;}
.ws10{word-spacing:-13.101000px;}
.wse{word-spacing:-13.047600px;}
.ws5{word-spacing:-13.039800px;}
.ws11{word-spacing:-10.608600px;}
.ws1{word-spacing:-9.900000px;}
.ws0{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.wsd{word-spacing:-8.614200px;}
.ws17{word-spacing:-8.544960px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.304880px;}
.ws16{word-spacing:541.936920px;}
._12{margin-left:-6.314283px;}
._13{margin-left:-5.293205px;}
._7{margin-left:-4.027800px;}
._6{margin-left:-3.006000px;}
._3{margin-left:-1.021800px;}
._2{width:1.089098px;}
._5{width:2.404800px;}
._11{width:3.443905px;}
._4{width:4.449000px;}
._a{width:5.711400px;}
._b{width:6.793199px;}
._8{width:7.815600px;}
._9{width:9.131302px;}
._f{width:10.347698px;}
._c{width:12.083399px;}
._1{width:13.757410px;}
._0{width:14.930388px;}
._d{width:16.593000px;}
._e{width:18.036000px;}
._17{width:19.502640px;}
._16{width:21.042000px;}
._15{width:22.124160px;}
._14{width:23.206320px;}
._10{width:30.661200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y72{bottom:7.830000px;}
.yca{bottom:7.860000px;}
.y71{bottom:7.920000px;}
.ybf{bottom:21.510000px;}
.y6f{bottom:21.540000px;}
.ycb{bottom:35.190000px;}
.yc7{bottom:35.220000px;}
.y112{bottom:35.280000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:100.200000px;}
.yc4{bottom:111.720000px;}
.y172{bottom:123.330000px;}
.y150{bottom:124.050000px;}
.y10e{bottom:124.500000px;}
.yc3{bottom:126.750000px;}
.ya9{bottom:127.290000px;}
.y53{bottom:134.040000px;}
.y171{bottom:140.970000px;}
.y25{bottom:141.600000px;}
.y14f{bottom:141.690000px;}
.y7e{bottom:144.480000px;}
.ya8{bottom:144.930000px;}
.y52{bottom:151.680000px;}
.y10f{bottom:151.770000px;}
.yc2{bottom:154.020000px;}
.y24{bottom:159.240000px;}
.y7d{bottom:162.120000px;}
.ya7{bottom:162.480000px;}
.y170{bottom:167.520000px;}
.y51{bottom:169.230000px;}
.y23{bottom:176.790000px;}
.y14e{bottom:177.240000px;}
.y10b{bottom:179.130000px;}
.ya6{bottom:180.030000px;}
.yee{bottom:181.110000px;}
.yc1{bottom:181.380000px;}
.y16f{bottom:185.070000px;}
.y7c{bottom:188.670000px;}
.y13a{bottom:189.750000px;}
.y22{bottom:194.340000px;}
.y14d{bottom:194.880000px;}
.y50{bottom:195.780000px;}
.ya5{bottom:197.670000px;}
.yed{bottom:198.660000px;}
.y18a{bottom:204.060000px;}
.y10d{bottom:206.490000px;}
.y139{bottom:207.300000px;}
.ybe{bottom:208.740000px;}
.y16e{bottom:211.710000px;}
.y21{bottom:211.980000px;}
.y14c{bottom:212.430000px;}
.yec{bottom:216.210000px;}
.y189{bottom:221.610000px;}
.y7b{bottom:223.500000px;}
.ya4{bottom:224.220000px;}
.y138{bottom:224.940000px;}
.y16d{bottom:229.260000px;}
.y20{bottom:229.530000px;}
.y14b{bottom:229.980000px;}
.y4f{bottom:231.420000px;}
.y10c{bottom:233.760000px;}
.yeb{bottom:233.850000px;}
.y7a{bottom:235.740000px;}
.yc0{bottom:236.100000px;}
.y188{bottom:239.250000px;}
.y1f{bottom:247.170000px;}
.y14a{bottom:247.620000px;}
.yea{bottom:251.400000px;}
.y137{bottom:251.490000px;}
.y16c{bottom:255.900000px;}
.y4e{bottom:257.970000px;}
.ya3{bottom:260.130000px;}
.y109{bottom:261.120000px;}
.y79{bottom:263.010000px;}
.y149{bottom:265.170000px;}
.y187{bottom:265.800000px;}
.y16b{bottom:273.450000px;}
.y1e{bottom:274.080000px;}
.ye9{bottom:278.040000px;}
.y148{bottom:282.810000px;}
.y186{bottom:283.440000px;}
.ybd{bottom:284.790000px;}
.y136{bottom:287.040000px;}
.y10a{bottom:288.480000px;}
.y78{bottom:290.370000px;}
.y4d{bottom:293.610000px;}
.y16a{bottom:300.000000px;}
.y135{bottom:304.680000px;}
.ya2{bottom:308.460000px;}
.y185{bottom:309.990000px;}
.y4c{bottom:311.160000px;}
.ye8{bottom:313.590000px;}
.y169{bottom:317.640000px;}
.y77{bottom:317.730000px;}
.y147{bottom:318.360000px;}
.ybc{bottom:320.340000px;}
.y134{bottom:322.230000px;}
.y1d{bottom:322.680000px;}
.y184{bottom:327.540000px;}
.ye7{bottom:331.140000px;}
.y108{bottom:337.170000px;}
.y4b{bottom:337.710000px;}
.ybb{bottom:337.980000px;}
.y133{bottom:339.870000px;}
.ya1{bottom:340.770000px;}
.y9f{bottom:344.010000px;}
.y168{bottom:344.190000px;}
.y76{bottom:345.090000px;}
.y183{bottom:345.180000px;}
.ye6{bottom:348.780000px;}
.ya0{bottom:349.680000px;}
.y146{bottom:350.580000px;}
.yba{bottom:355.530000px;}
.y1c{bottom:359.670000px;}
.y167{bottom:361.830000px;}
.ye5{bottom:366.330000px;}
.y132{bottom:366.420000px;}
.y4a{bottom:370.290000px;}
.y182{bottom:371.730000px;}
.y75{bottom:372.360000px;}
.y107{bottom:372.720000px;}
.yb9{bottom:373.080000px;}
.y1b{bottom:377.220000px;}
.y9e{bottom:379.920000px;}
.ye4{bottom:383.970000px;}
.y105{bottom:387.750000px;}
.y166{bottom:388.380000px;}
.y181{bottom:389.370000px;}
.y1a{bottom:394.860000px;}
.y9d{bottom:397.470000px;}
.y74{bottom:399.720000px;}
.ye3{bottom:401.520000px;}
.y131{bottom:401.970000px;}
.y49{bottom:405.930000px;}
.y106{bottom:415.020000px;}
.y9c{bottom:415.110000px;}
.y180{bottom:415.920000px;}
.y130{bottom:419.610000px;}
.y48{bottom:423.480000px;}
.y73{bottom:427.080000px;}
.ye2{bottom:428.070000px;}
.y19{bottom:430.410000px;}
.y165{bottom:432.570000px;}
.y9b{bottom:432.660000px;}
.y17f{bottom:433.470000px;}
.yb8{bottom:435.270000px;}
.y12f{bottom:437.160000px;}
.y47{bottom:441.120000px;}
.y103{bottom:442.380000px;}
.y18{bottom:448.050000px;}
.y164{bottom:450.120000px;}
.y9a{bottom:450.300000px;}
.y6e{bottom:454.440000px;}
.y12e{bottom:454.800000px;}
.y46{bottom:458.670000px;}
.y17e{bottom:460.110000px;}
.ye1{bottom:463.710000px;}
.y17{bottom:465.600000px;}
.yb7{bottom:467.490000px;}
.y99{bottom:467.850000px;}
.y104{bottom:469.740000px;}
.y12d{bottom:472.380000px;}
.y45{bottom:476.250000px;}
.y163{bottom:476.790000px;}
.y17d{bottom:477.690000px;}
.ye0{bottom:481.290000px;}
.y70{bottom:481.740000px;}
.y16{bottom:483.180000px;}
.y98{bottom:485.430000px;}
.y12c{bottom:489.930000px;}
.y44{bottom:493.890000px;}
.y162{bottom:494.340000px;}
.y101{bottom:497.130000px;}
.ydf{bottom:498.840000px;}
.y97{bottom:503.070000px;}
.y17c{bottom:504.330000px;}
.yde{bottom:516.480000px;}
.y12b{bottom:516.570000px;}
.y15{bottom:518.820000px;}
.y43{bottom:520.440000px;}
.y96{bottom:520.620000px;}
.y161{bottom:520.890000px;}
.y17b{bottom:521.880000px;}
.y102{bottom:524.400000px;}
.y6d{bottom:530.430000px;}
.ydd{bottom:534.030000px;}
.y14{bottom:536.370000px;}
.y95{bottom:538.260000px;}
.y160{bottom:538.530000px;}
.y17a{bottom:548.430000px;}
.ydc{bottom:551.670000px;}
.yff{bottom:551.760000px;}
.y12a{bottom:552.120000px;}
.y13{bottom:553.920000px;}
.y94{bottom:555.810000px;}
.y42{bottom:556.080000px;}
.y6c{bottom:566.070000px;}
.ydb{bottom:569.220000px;}
.y129{bottom:569.760000px;}
.y12{bottom:571.560000px;}
.y93{bottom:573.360000px;}
.y41{bottom:573.630000px;}
.y100{bottom:579.120000px;}
.y145{bottom:580.830000px;}
.y15f{bottom:582.990000px;}
.y6b{bottom:583.620000px;}
.yda{bottom:586.770000px;}
.y128{bottom:587.310000px;}
.y40{bottom:591.180000px;}
.y179{bottom:592.620000px;}
.y92{bottom:600.000000px;}
.y6a{bottom:601.260000px;}
.yd9{bottom:604.410000px;}
.y127{bottom:604.860000px;}
.y11{bottom:607.110000px;}
.y144{bottom:608.190000px;}
.y3f{bottom:608.820000px;}
.y178{bottom:610.260000px;}
.y69{bottom:618.810000px;}
.yd8{bottom:621.960000px;}
.y126{bottom:622.500000px;}
.y10{bottom:624.750000px;}
.y3e{bottom:626.370000px;}
.yfe{bottom:627.810000px;}
.y15e{bottom:631.230000px;}
.y91{bottom:635.550000px;}
.y68{bottom:636.360000px;}
.y177{bottom:636.810000px;}
.y125{bottom:640.050000px;}
.yd7{bottom:648.600000px;}
.y3d{bottom:652.920000px;}
.y90{bottom:653.190000px;}
.y67{bottom:654.000000px;}
.y176{bottom:654.360000px;}
.y124{bottom:657.690000px;}
.y15d{bottom:658.140000px;}
.yf{bottom:660.300000px;}
.y143{bottom:662.910000px;}
.yfd{bottom:663.360000px;}
.y8f{bottom:670.740000px;}
.y66{bottom:671.550000px;}
.y123{bottom:675.240000px;}
.ye{bottom:677.850000px;}
.yfc{bottom:681.000000px;}
.yd4{bottom:681.540000px;}
.y3c{bottom:685.590000px;}
.y8e{bottom:688.290000px;}
.y65{bottom:689.190000px;}
.y122{bottom:692.790000px;}
.y15c{bottom:695.220000px;}
.yd{bottom:695.490000px;}
.yfb{bottom:698.550000px;}
.yd6{bottom:708.900000px;}
.y142{bottom:711.600000px;}
.yc{bottom:713.040000px;}
.y8d{bottom:714.930000px;}
.y64{bottom:715.740000px;}
.y121{bottom:719.430000px;}
.y3b{bottom:721.140000px;}
.y15b{bottom:722.130000px;}
.yfa{bottom:725.190000px;}
.yb{bottom:730.680000px;}
.yd5{bottom:736.170000px;}
.y3a{bottom:738.690000px;}
.y175{bottom:742.740000px;}
.yb6{bottom:743.190000px;}
.y141{bottom:747.150000px;}
.y8c{bottom:750.480000px;}
.y63{bottom:751.290000px;}
.y120{bottom:754.980000px;}
.y39{bottom:756.330000px;}
.ya{bottom:757.590000px;}
.y15a{bottom:759.120000px;}
.yb5{bottom:760.740000px;}
.y13f{bottom:762.090000px;}
.yd1{bottom:763.530000px;}
.y8b{bottom:768.030000px;}
.y174{bottom:769.290000px;}
.y11f{bottom:772.530000px;}
.y38{bottom:773.880000px;}
.y159{bottom:776.670000px;}
.yb4{bottom:778.290000px;}
.y8a{bottom:785.670000px;}
.y62{bottom:786.930000px;}
.y140{bottom:789.450000px;}
.y11e{bottom:790.170000px;}
.yd3{bottom:790.890000px;}
.yb3{bottom:795.930000px;}
.y37{bottom:800.520000px;}
.y158{bottom:803.580000px;}
.y9{bottom:805.830000px;}
.y11d{bottom:807.720000px;}
.y89{bottom:812.220000px;}
.yf9{bottom:813.480000px;}
.y13e{bottom:816.810000px;}
.yd2{bottom:818.250000px;}
.y61{bottom:822.480000px;}
.y11c{bottom:825.360000px;}
.yf8{bottom:831.030000px;}
.yb2{bottom:831.480000px;}
.y36{bottom:836.070000px;}
.y60{bottom:840.030000px;}
.y157{bottom:840.930000px;}
.y8{bottom:841.380000px;}
.y13d{bottom:844.170000px;}
.yce{bottom:845.520000px;}
.y88{bottom:847.860000px;}
.yf7{bottom:848.670000px;}
.yb1{bottom:849.030000px;}
.y11b{bottom:851.910000px;}
.y35{bottom:853.620000px;}
.y5f{bottom:857.670000px;}
.y87{bottom:865.410000px;}
.yb0{bottom:866.670000px;}
.y34{bottom:871.260000px;}
.yd0{bottom:872.880000px;}
.y5e{bottom:875.220000px;}
.y7{bottom:877.200000px;}
.y118{bottom:881.880000px;}
.yaf{bottom:884.220000px;}
.y156{bottom:889.260000px;}
.y86{bottom:891.960000px;}
.y5d{bottom:892.860000px;}
.y33{bottom:897.810000px;}
.ycf{bottom:900.240000px;}
.yae{bottom:901.860000px;}
.y155{bottom:906.810000px;}
.y11a{bottom:909.240000px;}
.y5c{bottom:910.410000px;}
.yf6{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.yad{bottom:919.410000px;}
.y154{bottom:924.450000px;}
.y85{bottom:927.600000px;}
.y5b{bottom:927.960000px;}
.yf5{bottom:928.410000px;}
.y32{bottom:933.720000px;}
.y119{bottom:936.600000px;}
.y153{bottom:942.000000px;}
.y84{bottom:945.150000px;}
.yf4{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y5a{bottom:954.600000px;}
.ycd{bottom:954.870000px;}
.yac{bottom:954.960000px;}
.y152{bottom:959.550000px;}
.yf3{bottom:963.600000px;}
.y115{bottom:963.870000px;}
.yab{bottom:972.600000px;}
.y83{bottom:980.790000px;}
.y13c{bottom:981.150000px;}
.y31{bottom:981.960000px;}
.ycc{bottom:982.230000px;}
.y151{bottom:986.460000px;}
.y4{bottom:987.630000px;}
.y59{bottom:990.150000px;}
.y117{bottom:991.230000px;}
.y13b{bottom:998.790000px;}
.y30{bottom:999.600000px;}
.y58{bottom:1007.790000px;}
.yc6{bottom:1009.590000px;}
.y3{bottom:1012.320000px;}
.y82{bottom:1016.370000px;}
.y2f{bottom:1017.180000px;}
.y116{bottom:1018.620000px;}
.y57{bottom:1025.370000px;}
.yf2{bottom:1025.820000px;}
.y81{bottom:1033.920000px;}
.yaa{bottom:1034.370000px;}
.y2e{bottom:1034.820000px;}
.yc9{bottom:1036.890000px;}
.y56{bottom:1042.920000px;}
.yf1{bottom:1043.370000px;}
.y111{bottom:1045.890000px;}
.y173{bottom:1051.920000px;}
.y2d{bottom:1052.370000px;}
.y55{bottom:1060.560000px;}
.yf0{bottom:1060.920000px;}
.yc8{bottom:1064.250000px;}
.y2c{bottom:1069.920000px;}
.y114{bottom:1073.250000px;}
.yef{bottom:1078.560000px;}
.y54{bottom:1087.110000px;}
.y2b{bottom:1087.560000px;}
.yc5{bottom:1091.610000px;}
.y80{bottom:1096.110000px;}
.y113{bottom:1100.610000px;}
.y2a{bottom:1105.110000px;}
.y7f{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y110{bottom:1127.970000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hc{height:26.580000px;}
.hb{height:26.640000px;}
.h2{height:32.918906px;}
.h10{height:35.497617px;}
.h3{height:38.100586px;}
.he{height:40.539023px;}
.h6{height:50.902383px;}
.hf{height:53.187539px;}
.h12{height:53.910000px;}
.ha{height:53.940000px;}
.h5{height:55.779258px;}
.h9{height:59.973223px;}
.h16{height:61.793886px;}
.h8{height:62.585859px;}
.h11{height:63.862383px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h14{height:81.180000px;}
.h15{height:81.270000px;}
.h13{height:81.300000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w1e{width:41.040000px;}
.w15{width:51.660000px;}
.w17{width:56.700000px;}
.wb{width:57.060000px;}
.w7{width:57.240000px;}
.w6{width:57.270000px;}
.w9{width:74.160000px;}
.w14{width:76.590000px;}
.w10{width:76.950000px;}
.w18{width:85.230000px;}
.wc{width:85.590000px;}
.w22{width:99.900000px;}
.w21{width:99.990000px;}
.w20{width:100.350000px;}
.w1c{width:103.320000px;}
.w11{width:103.440000px;}
.w13{width:106.650000px;}
.w12{width:107.010000px;}
.w1a{width:107.280000px;}
.we{width:107.730000px;}
.w19{width:115.590000px;}
.wd{width:116.040000px;}
.w23{width:116.850000px;}
.w1d{width:126.000000px;}
.w3{width:128.790000px;}
.wf{width:128.970000px;}
.w4{width:162.000000px;}
.w8{width:162.360000px;}
.w1f{width:169.590000px;}
.w1b{width:207.120000px;}
.w5{width:230.070000px;}
.w16{width:367.050000px;}
.wa{width:367.500000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.650000px;}
.x1{left:68.040000px;}
.x29{left:111.239987px;}
.x5{left:185.700000px;}
.x2{left:192.719987px;}
.x18{left:198.210000px;}
.x28{left:222.689987px;}
.x10{left:225.660000px;}
.x21{left:227.550000px;}
.x15{left:237.900000px;}
.x19{left:275.520000px;}
.xc{left:290.099987px;}
.x11{left:300.180000px;}
.x7{left:315.210000px;}
.xd{left:325.829987px;}
.x1a{left:327.990000px;}
.x4{left:331.319987px;}
.x22{left:353.910000px;}
.x12{left:357.600000px;}
.x16{left:367.230000px;}
.x25{left:375.330000px;}
.x1b{left:385.410000px;}
.x1e{left:392.700000px;}
.x23{left:395.400000px;}
.xe{left:403.499987px;}
.x13{left:443.550000px;}
.x1c{left:471.360000px;}
.x26{left:476.040000px;}
.x8{left:477.570000px;}
.x20{left:496.380000px;}
.x9{left:535.200000px;}
.x17{left:548.340000px;}
.x14{left:559.950000px;}
.x24{left:565.350000px;}
.x1d{left:587.760000px;}
.xa{left:592.800000px;}
.x1f{left:600.540000px;}
.x27{left:634.559987px;}
.xf{left:639.059987px;}
.xb{left:650.400000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.240000pt;}
.v4{vertical-align:11.520000pt;}
.v2{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.158933pt;}
.ls5{letter-spacing:-0.120000pt;}
.ls12{letter-spacing:-0.111467pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls4{letter-spacing:-0.080000pt;}
.ls6{letter-spacing:-0.075200pt;}
.lse{letter-spacing:-0.056533pt;}
.ls1a{letter-spacing:-0.007680pt;}
.ls16{letter-spacing:-0.006080pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.053760pt;}
.lsf{letter-spacing:0.053867pt;}
.ls19{letter-spacing:0.060800pt;}
.ls13{letter-spacing:0.066667pt;}
.ls1{letter-spacing:0.080000pt;}
.ls17{letter-spacing:0.082133pt;}
.ls18{letter-spacing:0.083200pt;}
.ls1e{letter-spacing:0.087467pt;}
.ls11{letter-spacing:0.102933pt;}
.ls1b{letter-spacing:0.105067pt;}
.ls3{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.422933pt;}
.ls0{letter-spacing:11.864320pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls1c{letter-spacing:71.863680pt;}
.ls15{letter-spacing:73.471040pt;}
.ws15{word-spacing:-53.440000pt;}
.ws14{word-spacing:-53.433920pt;}
.ws12{word-spacing:-53.320000pt;}
.ws13{word-spacing:-41.676160pt;}
.ws3{word-spacing:-16.403200pt;}
.ws8{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws18{word-spacing:-11.861867pt;}
.wsf{word-spacing:-11.859733pt;}
.ws19{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.700267pt;}
.ws10{word-spacing:-11.645333pt;}
.wse{word-spacing:-11.597867pt;}
.ws5{word-spacing:-11.590933pt;}
.ws11{word-spacing:-9.429867pt;}
.ws1{word-spacing:-8.800000pt;}
.ws0{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.wsd{word-spacing:-7.657067pt;}
.ws17{word-spacing:-7.595520pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:3.826560pt;}
.ws16{word-spacing:481.721707pt;}
._12{margin-left:-5.612696pt;}
._13{margin-left:-4.705071pt;}
._7{margin-left:-3.580266pt;}
._6{margin-left:-2.672000pt;}
._3{margin-left:-0.908266pt;}
._2{width:0.968087pt;}
._5{width:2.137600pt;}
._11{width:3.061249pt;}
._4{width:3.954667pt;}
._a{width:5.076800pt;}
._b{width:6.038399pt;}
._8{width:6.947200pt;}
._9{width:8.116713pt;}
._f{width:9.197954pt;}
._c{width:10.740799pt;}
._1{width:12.228809pt;}
._0{width:13.271456pt;}
._d{width:14.749333pt;}
._e{width:16.032000pt;}
._17{width:17.335680pt;}
._16{width:18.704000pt;}
._15{width:19.665920pt;}
._14{width:20.627840pt;}
._10{width:27.254400pt;}
.fs0{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:6.960000pt;}
.yca{bottom:6.986667pt;}
.y71{bottom:7.040000pt;}
.ybf{bottom:19.120000pt;}
.y6f{bottom:19.146667pt;}
.ycb{bottom:31.280000pt;}
.yc7{bottom:31.306667pt;}
.y112{bottom:31.360000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:89.066667pt;}
.yc4{bottom:99.306667pt;}
.y172{bottom:109.626667pt;}
.y150{bottom:110.266667pt;}
.y10e{bottom:110.666667pt;}
.yc3{bottom:112.666667pt;}
.ya9{bottom:113.146667pt;}
.y53{bottom:119.146667pt;}
.y171{bottom:125.306667pt;}
.y25{bottom:125.866667pt;}
.y14f{bottom:125.946667pt;}
.y7e{bottom:128.426667pt;}
.ya8{bottom:128.826667pt;}
.y52{bottom:134.826667pt;}
.y10f{bottom:134.906667pt;}
.yc2{bottom:136.906667pt;}
.y24{bottom:141.546667pt;}
.y7d{bottom:144.106667pt;}
.ya7{bottom:144.426667pt;}
.y170{bottom:148.906667pt;}
.y51{bottom:150.426667pt;}
.y23{bottom:157.146667pt;}
.y14e{bottom:157.546667pt;}
.y10b{bottom:159.226667pt;}
.ya6{bottom:160.026667pt;}
.yee{bottom:160.986667pt;}
.yc1{bottom:161.226667pt;}
.y16f{bottom:164.506667pt;}
.y7c{bottom:167.706667pt;}
.y13a{bottom:168.666667pt;}
.y22{bottom:172.746667pt;}
.y14d{bottom:173.226667pt;}
.y50{bottom:174.026667pt;}
.ya5{bottom:175.706667pt;}
.yed{bottom:176.586667pt;}
.y18a{bottom:181.386667pt;}
.y10d{bottom:183.546667pt;}
.y139{bottom:184.266667pt;}
.ybe{bottom:185.546667pt;}
.y16e{bottom:188.186667pt;}
.y21{bottom:188.426667pt;}
.y14c{bottom:188.826667pt;}
.yec{bottom:192.186667pt;}
.y189{bottom:196.986667pt;}
.y7b{bottom:198.666667pt;}
.ya4{bottom:199.306667pt;}
.y138{bottom:199.946667pt;}
.y16d{bottom:203.786667pt;}
.y20{bottom:204.026667pt;}
.y14b{bottom:204.426667pt;}
.y4f{bottom:205.706667pt;}
.y10c{bottom:207.786667pt;}
.yeb{bottom:207.866667pt;}
.y7a{bottom:209.546667pt;}
.yc0{bottom:209.866667pt;}
.y188{bottom:212.666667pt;}
.y1f{bottom:219.706667pt;}
.y14a{bottom:220.106667pt;}
.yea{bottom:223.466667pt;}
.y137{bottom:223.546667pt;}
.y16c{bottom:227.466667pt;}
.y4e{bottom:229.306667pt;}
.ya3{bottom:231.226667pt;}
.y109{bottom:232.106667pt;}
.y79{bottom:233.786667pt;}
.y149{bottom:235.706667pt;}
.y187{bottom:236.266667pt;}
.y16b{bottom:243.066667pt;}
.y1e{bottom:243.626667pt;}
.ye9{bottom:247.146667pt;}
.y148{bottom:251.386667pt;}
.y186{bottom:251.946667pt;}
.ybd{bottom:253.146667pt;}
.y136{bottom:255.146667pt;}
.y10a{bottom:256.426667pt;}
.y78{bottom:258.106667pt;}
.y4d{bottom:260.986667pt;}
.y16a{bottom:266.666667pt;}
.y135{bottom:270.826667pt;}
.ya2{bottom:274.186667pt;}
.y185{bottom:275.546667pt;}
.y4c{bottom:276.586667pt;}
.ye8{bottom:278.746667pt;}
.y169{bottom:282.346667pt;}
.y77{bottom:282.426667pt;}
.y147{bottom:282.986667pt;}
.ybc{bottom:284.746667pt;}
.y134{bottom:286.426667pt;}
.y1d{bottom:286.826667pt;}
.y184{bottom:291.146667pt;}
.ye7{bottom:294.346667pt;}
.y108{bottom:299.706667pt;}
.y4b{bottom:300.186667pt;}
.ybb{bottom:300.426667pt;}
.y133{bottom:302.106667pt;}
.ya1{bottom:302.906667pt;}
.y9f{bottom:305.786667pt;}
.y168{bottom:305.946667pt;}
.y76{bottom:306.746667pt;}
.y183{bottom:306.826667pt;}
.ye6{bottom:310.026667pt;}
.ya0{bottom:310.826667pt;}
.y146{bottom:311.626667pt;}
.yba{bottom:316.026667pt;}
.y1c{bottom:319.706667pt;}
.y167{bottom:321.626667pt;}
.ye5{bottom:325.626667pt;}
.y132{bottom:325.706667pt;}
.y4a{bottom:329.146667pt;}
.y182{bottom:330.426667pt;}
.y75{bottom:330.986667pt;}
.y107{bottom:331.306667pt;}
.yb9{bottom:331.626667pt;}
.y1b{bottom:335.306667pt;}
.y9e{bottom:337.706667pt;}
.ye4{bottom:341.306667pt;}
.y105{bottom:344.666667pt;}
.y166{bottom:345.226667pt;}
.y181{bottom:346.106667pt;}
.y1a{bottom:350.986667pt;}
.y9d{bottom:353.306667pt;}
.y74{bottom:355.306667pt;}
.ye3{bottom:356.906667pt;}
.y131{bottom:357.306667pt;}
.y49{bottom:360.826667pt;}
.y106{bottom:368.906667pt;}
.y9c{bottom:368.986667pt;}
.y180{bottom:369.706667pt;}
.y130{bottom:372.986667pt;}
.y48{bottom:376.426667pt;}
.y73{bottom:379.626667pt;}
.ye2{bottom:380.506667pt;}
.y19{bottom:382.586667pt;}
.y165{bottom:384.506667pt;}
.y9b{bottom:384.586667pt;}
.y17f{bottom:385.306667pt;}
.yb8{bottom:386.906667pt;}
.y12f{bottom:388.586667pt;}
.y47{bottom:392.106667pt;}
.y103{bottom:393.226667pt;}
.y18{bottom:398.266667pt;}
.y164{bottom:400.106667pt;}
.y9a{bottom:400.266667pt;}
.y6e{bottom:403.946667pt;}
.y12e{bottom:404.266667pt;}
.y46{bottom:407.706667pt;}
.y17e{bottom:408.986667pt;}
.ye1{bottom:412.186667pt;}
.y17{bottom:413.866667pt;}
.yb7{bottom:415.546667pt;}
.y99{bottom:415.866667pt;}
.y104{bottom:417.546667pt;}
.y12d{bottom:419.893333pt;}
.y45{bottom:423.333333pt;}
.y163{bottom:423.813333pt;}
.y17d{bottom:424.613333pt;}
.ye0{bottom:427.813333pt;}
.y70{bottom:428.213333pt;}
.y16{bottom:429.493333pt;}
.y98{bottom:431.493333pt;}
.y12c{bottom:435.493333pt;}
.y44{bottom:439.013333pt;}
.y162{bottom:439.413333pt;}
.y101{bottom:441.893333pt;}
.ydf{bottom:443.413333pt;}
.y97{bottom:447.173333pt;}
.y17c{bottom:448.293333pt;}
.yde{bottom:459.093333pt;}
.y12b{bottom:459.173333pt;}
.y15{bottom:461.173333pt;}
.y43{bottom:462.613333pt;}
.y96{bottom:462.773333pt;}
.y161{bottom:463.013333pt;}
.y17b{bottom:463.893333pt;}
.y102{bottom:466.133333pt;}
.y6d{bottom:471.493333pt;}
.ydd{bottom:474.693333pt;}
.y14{bottom:476.773333pt;}
.y95{bottom:478.453333pt;}
.y160{bottom:478.693333pt;}
.y17a{bottom:487.493333pt;}
.ydc{bottom:490.373333pt;}
.yff{bottom:490.453333pt;}
.y12a{bottom:490.773333pt;}
.y13{bottom:492.373333pt;}
.y94{bottom:494.053333pt;}
.y42{bottom:494.293333pt;}
.y6c{bottom:503.173333pt;}
.ydb{bottom:505.973333pt;}
.y129{bottom:506.453333pt;}
.y12{bottom:508.053333pt;}
.y93{bottom:509.653333pt;}
.y41{bottom:509.893333pt;}
.y100{bottom:514.773333pt;}
.y145{bottom:516.293333pt;}
.y15f{bottom:518.213333pt;}
.y6b{bottom:518.773333pt;}
.yda{bottom:521.573333pt;}
.y128{bottom:522.053333pt;}
.y40{bottom:525.493333pt;}
.y179{bottom:526.773333pt;}
.y92{bottom:533.333333pt;}
.y6a{bottom:534.453333pt;}
.yd9{bottom:537.253333pt;}
.y127{bottom:537.653333pt;}
.y11{bottom:539.653333pt;}
.y144{bottom:540.613333pt;}
.y3f{bottom:541.173333pt;}
.y178{bottom:542.453333pt;}
.y69{bottom:550.053333pt;}
.yd8{bottom:552.853333pt;}
.y126{bottom:553.333333pt;}
.y10{bottom:555.333333pt;}
.y3e{bottom:556.773333pt;}
.yfe{bottom:558.053333pt;}
.y15e{bottom:561.093333pt;}
.y91{bottom:564.933333pt;}
.y68{bottom:565.653333pt;}
.y177{bottom:566.053333pt;}
.y125{bottom:568.933333pt;}
.yd7{bottom:576.533333pt;}
.y3d{bottom:580.373333pt;}
.y90{bottom:580.613333pt;}
.y67{bottom:581.333333pt;}
.y176{bottom:581.653333pt;}
.y124{bottom:584.613333pt;}
.y15d{bottom:585.013333pt;}
.yf{bottom:586.933333pt;}
.y143{bottom:589.253333pt;}
.yfd{bottom:589.653333pt;}
.y8f{bottom:596.213333pt;}
.y66{bottom:596.933333pt;}
.y123{bottom:600.213333pt;}
.ye{bottom:602.533333pt;}
.yfc{bottom:605.333333pt;}
.yd4{bottom:605.813333pt;}
.y3c{bottom:609.413333pt;}
.y8e{bottom:611.813333pt;}
.y65{bottom:612.613333pt;}
.y122{bottom:615.813333pt;}
.y15c{bottom:617.973333pt;}
.yd{bottom:618.213333pt;}
.yfb{bottom:620.933333pt;}
.yd6{bottom:630.133333pt;}
.y142{bottom:632.533333pt;}
.yc{bottom:633.813333pt;}
.y8d{bottom:635.493333pt;}
.y64{bottom:636.213333pt;}
.y121{bottom:639.493333pt;}
.y3b{bottom:641.013333pt;}
.y15b{bottom:641.893333pt;}
.yfa{bottom:644.613333pt;}
.yb{bottom:649.493333pt;}
.yd5{bottom:654.373333pt;}
.y3a{bottom:656.613333pt;}
.y175{bottom:660.213333pt;}
.yb6{bottom:660.613333pt;}
.y141{bottom:664.133333pt;}
.y8c{bottom:667.093333pt;}
.y63{bottom:667.813333pt;}
.y120{bottom:671.093333pt;}
.y39{bottom:672.293333pt;}
.ya{bottom:673.413333pt;}
.y15a{bottom:674.773333pt;}
.yb5{bottom:676.213333pt;}
.y13f{bottom:677.413333pt;}
.yd1{bottom:678.693333pt;}
.y8b{bottom:682.693333pt;}
.y174{bottom:683.813333pt;}
.y11f{bottom:686.693333pt;}
.y38{bottom:687.893333pt;}
.y159{bottom:690.373333pt;}
.yb4{bottom:691.813333pt;}
.y8a{bottom:698.373333pt;}
.y62{bottom:699.493333pt;}
.y140{bottom:701.733333pt;}
.y11e{bottom:702.373333pt;}
.yd3{bottom:703.013333pt;}
.yb3{bottom:707.493333pt;}
.y37{bottom:711.573333pt;}
.y158{bottom:714.293333pt;}
.y9{bottom:716.293333pt;}
.y11d{bottom:717.973333pt;}
.y89{bottom:721.973333pt;}
.yf9{bottom:723.093333pt;}
.y13e{bottom:726.053333pt;}
.yd2{bottom:727.333333pt;}
.y61{bottom:731.093333pt;}
.y11c{bottom:733.653333pt;}
.yf8{bottom:738.693333pt;}
.yb2{bottom:739.093333pt;}
.y36{bottom:743.173333pt;}
.y60{bottom:746.693333pt;}
.y157{bottom:747.493333pt;}
.y8{bottom:747.893333pt;}
.y13d{bottom:750.373333pt;}
.yce{bottom:751.573333pt;}
.y88{bottom:753.653333pt;}
.yf7{bottom:754.373333pt;}
.yb1{bottom:754.693333pt;}
.y11b{bottom:757.253333pt;}
.y35{bottom:758.773333pt;}
.y5f{bottom:762.373333pt;}
.y87{bottom:769.253333pt;}
.yb0{bottom:770.373333pt;}
.y34{bottom:774.453333pt;}
.yd0{bottom:775.893333pt;}
.y5e{bottom:777.973333pt;}
.y7{bottom:779.733333pt;}
.y118{bottom:783.893333pt;}
.yaf{bottom:785.973333pt;}
.y156{bottom:790.453333pt;}
.y86{bottom:792.853333pt;}
.y5d{bottom:793.653333pt;}
.y33{bottom:798.053333pt;}
.ycf{bottom:800.213333pt;}
.yae{bottom:801.653333pt;}
.y155{bottom:806.053333pt;}
.y11a{bottom:808.213333pt;}
.y5c{bottom:809.253333pt;}
.yf6{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.yad{bottom:817.253333pt;}
.y154{bottom:821.733333pt;}
.y85{bottom:824.533333pt;}
.y5b{bottom:824.853333pt;}
.yf5{bottom:825.253333pt;}
.y32{bottom:829.973333pt;}
.y119{bottom:832.533333pt;}
.y153{bottom:837.333333pt;}
.y84{bottom:840.133333pt;}
.yf4{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y5a{bottom:848.533333pt;}
.ycd{bottom:848.773333pt;}
.yac{bottom:848.853333pt;}
.y152{bottom:852.933333pt;}
.yf3{bottom:856.533333pt;}
.y115{bottom:856.773333pt;}
.yab{bottom:864.533333pt;}
.y83{bottom:871.813333pt;}
.y13c{bottom:872.133333pt;}
.y31{bottom:872.853333pt;}
.ycc{bottom:873.093333pt;}
.y151{bottom:876.853333pt;}
.y4{bottom:877.893333pt;}
.y59{bottom:880.133333pt;}
.y117{bottom:881.093333pt;}
.y13b{bottom:887.813333pt;}
.y30{bottom:888.533333pt;}
.y58{bottom:895.813333pt;}
.yc6{bottom:897.413333pt;}
.y3{bottom:899.840000pt;}
.y82{bottom:903.440000pt;}
.y2f{bottom:904.160000pt;}
.y116{bottom:905.440000pt;}
.y57{bottom:911.440000pt;}
.yf2{bottom:911.840000pt;}
.y81{bottom:919.040000pt;}
.yaa{bottom:919.440000pt;}
.y2e{bottom:919.840000pt;}
.yc9{bottom:921.680000pt;}
.y56{bottom:927.040000pt;}
.yf1{bottom:927.440000pt;}
.y111{bottom:929.680000pt;}
.y173{bottom:935.040000pt;}
.y2d{bottom:935.440000pt;}
.y55{bottom:942.720000pt;}
.yf0{bottom:943.040000pt;}
.yc8{bottom:946.000000pt;}
.y2c{bottom:951.040000pt;}
.y114{bottom:954.000000pt;}
.yef{bottom:958.720000pt;}
.y54{bottom:966.320000pt;}
.y2b{bottom:966.720000pt;}
.yc5{bottom:970.320000pt;}
.y80{bottom:974.320000pt;}
.y113{bottom:978.320000pt;}
.y2a{bottom:982.320000pt;}
.y7f{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y110{bottom:1002.640000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hc{height:23.626667pt;}
.hb{height:23.680000pt;}
.h2{height:29.261250pt;}
.h10{height:31.553437pt;}
.h3{height:33.867188pt;}
.he{height:36.034687pt;}
.h6{height:45.246562pt;}
.hf{height:47.277812pt;}
.h12{height:47.920000pt;}
.ha{height:47.946667pt;}
.h5{height:49.581562pt;}
.h9{height:53.309531pt;}
.h16{height:54.927899pt;}
.h8{height:55.631875pt;}
.h11{height:56.766563pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h14{height:72.160000pt;}
.h15{height:72.240000pt;}
.h13{height:72.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w1e{width:36.480000pt;}
.w15{width:45.920000pt;}
.w17{width:50.400000pt;}
.wb{width:50.720000pt;}
.w7{width:50.880000pt;}
.w6{width:50.906667pt;}
.w9{width:65.920000pt;}
.w14{width:68.080000pt;}
.w10{width:68.400000pt;}
.w18{width:75.760000pt;}
.wc{width:76.080000pt;}
.w22{width:88.800000pt;}
.w21{width:88.880000pt;}
.w20{width:89.200000pt;}
.w1c{width:91.840000pt;}
.w11{width:91.946667pt;}
.w13{width:94.800000pt;}
.w12{width:95.120000pt;}
.w1a{width:95.360000pt;}
.we{width:95.760000pt;}
.w19{width:102.746667pt;}
.wd{width:103.146667pt;}
.w23{width:103.866667pt;}
.w1d{width:112.000000pt;}
.w3{width:114.480000pt;}
.wf{width:114.640000pt;}
.w4{width:144.000000pt;}
.w8{width:144.320000pt;}
.w1f{width:150.746667pt;}
.w1b{width:184.106667pt;}
.w5{width:204.506667pt;}
.w16{width:326.266667pt;}
.wa{width:326.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.800000pt;}
.x1{left:60.480000pt;}
.x29{left:98.879988pt;}
.x5{left:165.066667pt;}
.x2{left:171.306655pt;}
.x18{left:176.186667pt;}
.x28{left:197.946655pt;}
.x10{left:200.586667pt;}
.x21{left:202.266667pt;}
.x15{left:211.466667pt;}
.x19{left:244.906667pt;}
.xc{left:257.866655pt;}
.x11{left:266.826667pt;}
.x7{left:280.186667pt;}
.xd{left:289.626655pt;}
.x1a{left:291.546667pt;}
.x4{left:294.506655pt;}
.x22{left:314.586667pt;}
.x12{left:317.866667pt;}
.x16{left:326.426667pt;}
.x25{left:333.626667pt;}
.x1b{left:342.586667pt;}
.x1e{left:349.066667pt;}
.x23{left:351.466667pt;}
.xe{left:358.666655pt;}
.x13{left:394.266667pt;}
.x1c{left:418.986667pt;}
.x26{left:423.146667pt;}
.x8{left:424.506667pt;}
.x20{left:441.226667pt;}
.x9{left:475.733333pt;}
.x17{left:487.413333pt;}
.x14{left:497.733333pt;}
.x24{left:502.533333pt;}
.x1d{left:522.453333pt;}
.xa{left:526.933333pt;}
.x1f{left:533.813333pt;}
.x27{left:564.053322pt;}
.xf{left:568.053322pt;}
.xb{left:578.133333pt;}
.x3{left:711.413322pt;}
}




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