
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e60ace092fd76b1015610df3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_20b98ec4f3511de968d75236.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_25f942ccde6bc589580ee624.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_545187ca80b2c1d5ff69c342.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2d0c8192e87e1824e6f51c0b.woff')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_02b4f6c580445d256beec044.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_15207346d6aae51e63ecfaf6.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_23b9242dd227e959e48fd5d7.woff')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1f{letter-spacing:-0.310800px;}
.ls9{letter-spacing:-0.275400px;}
.lsd{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.084000px;}
.ls1b{letter-spacing:-0.063600px;}
.ls21{letter-spacing:-0.040320px;}
.ls16{letter-spacing:-0.038880px;}
.ls24{letter-spacing:-0.022320px;}
.ls20{letter-spacing:-0.006120px;}
.ls5{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.ls1e{letter-spacing:0.051840px;}
.ls14{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.065520px;}
.ls23{letter-spacing:0.075000px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.098400px;}
.ls1c{letter-spacing:0.105600px;}
.ls22{letter-spacing:0.107400px;}
.ls1a{letter-spacing:0.115800px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.lsa{letter-spacing:0.174600px;}
.ls1d{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:1.533600px;}
.ls11{letter-spacing:2.973600px;}
.ls26{letter-spacing:47.726640px;}
.ls15{letter-spacing:63.566640px;}
.ls25{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;}
}
.ws7{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws5{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.342200px;}
.ws11{word-spacing:-13.332000px;}
.wse{word-spacing:-13.324800px;}
.ws12{word-spacing:-13.278240px;}
.ws8{word-spacing:-13.275600px;}
.wsd{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws13{word-spacing:-13.220280px;}
.wsa{word-spacing:-13.187520px;}
.wsf{word-spacing:-13.162800px;}
.wsb{word-spacing:-13.072800px;}
.ws4{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws2{word-spacing:-8.553600px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._d{margin-left:-4.263599px;}
._9{margin-left:-2.978400px;}
._0{margin-left:-1.110000px;}
._2{width:1.627660px;}
._5{width:3.257736px;}
._3{width:4.629000px;}
._8{width:6.400199px;}
._4{width:7.695600px;}
._c{width:8.714643px;}
._a{width:9.739200px;}
._b{width:10.989381px;}
._6{width:12.024000px;}
._e{width:14.466240px;}
._7{width:16.352400px;}
._12{width:17.615160px;}
._11{width:18.966960px;}
._f{width:25.941600px;}
._10{width:27.175320px;}
._1{width:40.430496px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y109{bottom:3.330000px;}
.y108{bottom:3.420000px;}
.y131{bottom:7.740000px;}
.y6f{bottom:7.830000px;}
.yf4{bottom:7.860000px;}
.y72{bottom:7.920000px;}
.y122{bottom:7.950000px;}
.yb9{bottom:8.640000px;}
.y106{bottom:26.190000px;}
.y12a{bottom:33.660000px;}
.ycb{bottom:35.190000px;}
.yfc{bottom:35.280000px;}
.y10d{bottom:49.080000px;}
.y12f{bottom:59.490000px;}
.y101{bottom:62.460000px;}
.yf6{bottom:62.490000px;}
.ye1{bottom:62.550000px;}
.yd0{bottom:62.580000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y133{bottom:110.640000px;}
.y9a{bottom:115.410000px;}
.yb6{bottom:117.660000px;}
.y7b{bottom:118.650000px;}
.y104{bottom:118.830000px;}
.y14f{bottom:121.710000px;}
.y132{bottom:124.680000px;}
.yaf{bottom:130.080000px;}
.y103{bottom:132.870000px;}
.y54{bottom:133.320000px;}
.y12e{bottom:136.920000px;}
.y14e{bottom:139.260000px;}
.y27{bottom:141.330000px;}
.y100{bottom:145.110000px;}
.y7a{bottom:145.290000px;}
.yb5{bottom:149.880000px;}
.y99{bottom:150.960000px;}
.ydd{bottom:152.670000px;}
.y26{bottom:158.970000px;}
.y130{bottom:162.750000px;}
.yae{bottom:165.720000px;}
.y14d{bottom:165.900000px;}
.ydc{bottom:166.710000px;}
.y53{bottom:168.960000px;}
.y102{bottom:172.380000px;}
.y25{bottom:176.520000px;}
.ydb{bottom:178.860000px;}
.y79{bottom:180.840000px;}
.y98{bottom:183.180000px;}
.y14c{bottom:183.450000px;}
.y52{bottom:186.510000px;}
.y12d{bottom:188.580000px;}
.y24{bottom:194.160000px;}
.yad{bottom:197.940000px;}
.y78{bottom:198.480000px;}
.yff{bottom:199.740000px;}
.y14b{bottom:201.090000px;}
.yda{bottom:206.220000px;}
.y51{bottom:213.060000px;}
.y12c{bottom:214.410000px;}
.y77{bottom:216.030000px;}
.yfe{bottom:227.100000px;}
.y14a{bottom:227.640000px;}
.y23{bottom:229.710000px;}
.yd9{bottom:233.580000px;}
.y129{bottom:240.240000px;}
.y76{bottom:242.580000px;}
.y149{bottom:245.190000px;}
.y22{bottom:247.260000px;}
.y50{bottom:248.610000px;}
.yfb{bottom:254.370000px;}
.yd7{bottom:260.940000px;}
.y21{bottom:264.900000px;}
.y12b{bottom:266.070000px;}
.y4f{bottom:266.250000px;}
.ya3{bottom:268.770000px;}
.y148{bottom:271.830000px;}
.y75{bottom:278.220000px;}
.yfd{bottom:281.730000px;}
.y20{bottom:282.450000px;}
.y4e{bottom:284.610000px;}
.ya2{bottom:286.410000px;}
.yd8{bottom:288.210000px;}
.y147{bottom:289.380000px;}
.y91{bottom:297.030000px;}
.y74{bottom:304.770000px;}
.y1f{bottom:309.090000px;}
.y4d{bottom:312.060000px;}
.y128{bottom:313.230000px;}
.y146{bottom:316.020000px;}
.ya1{bottom:322.860000px;}
.yfa{bottom:330.420000px;}
.y127{bottom:330.870000px;}
.y90{bottom:333.480000px;}
.y145{bottom:333.570000px;}
.yd6{bottom:336.900000px;}
.y73{bottom:337.800000px;}
.y1e{bottom:345.000000px;}
.y4c{bottom:347.700000px;}
.yf9{bottom:348.060000px;}
.yd5{bottom:354.540000px;}
.ya0{bottom:355.080000px;}
.y126{bottom:357.420000px;}
.y144{bottom:360.120000px;}
.y71{bottom:365.070000px;}
.y8f{bottom:365.700000px;}
.y4b{bottom:374.250000px;}
.y125{bottom:375.060000px;}
.yf8{bottom:382.890000px;}
.y143{bottom:386.760000px;}
.yd4{bottom:389.370000px;}
.y70{bottom:392.430000px;}
.y1d{bottom:393.510000px;}
.yf7{bottom:396.930000px;}
.y142{bottom:404.310000px;}
.yf5{bottom:409.170000px;}
.y4a{bottom:409.800000px;}
.y124{bottom:409.890000px;}
.y6e{bottom:419.790000px;}
.yd3{bottom:421.410000px;}
.y123{bottom:423.930000px;}
.y1c{bottom:430.590000px;}
.y141{bottom:431.220000px;}
.yb4{bottom:432.930000px;}
.yd2{bottom:435.540000px;}
.y120{bottom:436.170000px;}
.y49{bottom:436.440000px;}
.ycf{bottom:447.690000px;}
.y1b{bottom:448.140000px;}
.yac{bottom:451.740000px;}
.y121{bottom:463.440000px;}
.yf3{bottom:463.800000px;}
.y1a{bottom:465.780000px;}
.y6d{bottom:468.480000px;}
.yab{bottom:469.380000px;}
.y48{bottom:472.020000px;}
.yd1{bottom:475.080000px;}
.y140{bottom:479.580000px;}
.y19{bottom:483.360000px;}
.y11f{bottom:490.830000px;}
.yf2{bottom:491.190000px;}
.y47{bottom:498.570000px;}
.y18{bottom:500.910000px;}
.yb3{bottom:501.630000px;}
.yce{bottom:502.350000px;}
.y6c{bottom:504.060000px;}
.yaa{bottom:505.860000px;}
.y13f{bottom:506.400000px;}
.y97{bottom:509.010000px;}
.y11e{bottom:518.190000px;}
.y17{bottom:518.550000px;}
.y6b{bottom:521.700000px;}
.ycd{bottom:529.710000px;}
.y46{bottom:534.120000px;}
.y16{bottom:536.100000px;}
.ya9{bottom:538.080000px;}
.y6a{bottom:539.250000px;}
.y13e{bottom:543.480000px;}
.y96{bottom:545.550000px;}
.yf1{bottom:545.820000px;}
.y45{bottom:551.760000px;}
.y15{bottom:553.740000px;}
.yca{bottom:557.070000px;}
.y69{bottom:565.800000px;}
.y44{bottom:569.400000px;}
.y13d{bottom:570.390000px;}
.y14{bottom:571.290000px;}
.y11d{bottom:572.820000px;}
.y95{bottom:577.770000px;}
.ycc{bottom:584.430000px;}
.y43{bottom:586.950000px;}
.y13{bottom:588.840000px;}
.yf0{bottom:594.510000px;}
.y68{bottom:601.440000px;}
.y42{bottom:605.400000px;}
.y12{bottom:606.480000px;}
.y13c{bottom:607.380000px;}
.yef{bottom:612.150000px;}
.y67{bottom:618.990000px;}
.y11c{bottom:621.510000px;}
.y41{bottom:622.950000px;}
.y11{bottom:624.030000px;}
.yc9{bottom:633.120000px;}
.y13b{bottom:634.290000px;}
.y11b{bottom:639.150000px;}
.y40{bottom:640.590000px;}
.y10{bottom:641.670000px;}
.y66{bottom:645.630000px;}
.yee{bottom:646.980000px;}
.y3f{bottom:658.140000px;}
.yf{bottom:659.220000px;}
.yc8{bottom:659.670000px;}
.yed{bottom:661.020000px;}
.y13a{bottom:671.370000px;}
.yeb{bottom:673.260000px;}
.y11a{bottom:673.980000px;}
.ye{bottom:676.770000px;}
.yc7{bottom:677.310000px;}
.y9f{bottom:678.570000px;}
.y65{bottom:681.180000px;}
.y3e{bottom:685.590000px;}
.y119{bottom:688.020000px;}
.yc6{bottom:694.860000px;}
.y9e{bottom:696.210000px;}
.y139{bottom:698.190000px;}
.y64{bottom:698.730000px;}
.y117{bottom:700.260000px;}
.yec{bottom:700.530000px;}
.yd{bottom:703.770000px;}
.y8e{bottom:705.030000px;}
.y3d{bottom:721.500000px;}
.y63{bottom:725.370000px;}
.y118{bottom:727.530000px;}
.yea{bottom:727.890000px;}
.yc5{bottom:729.690000px;}
.y8d{bottom:732.480000px;}
.y9d{bottom:732.660000px;}
.y138{bottom:735.540000px;}
.yc4{bottom:741.930000px;}
.yc{bottom:750.480000px;}
.y116{bottom:754.890000px;}
.ye9{bottom:755.250000px;}
.y62{bottom:760.920000px;}
.y8c{bottom:764.970000px;}
.yc3{bottom:769.200000px;}
.y3c{bottom:769.740000px;}
.y61{bottom:778.560000px;}
.y115{bottom:782.250000px;}
.y9c{bottom:782.520000px;}
.ye7{bottom:782.610000px;}
.y8b{bottom:782.700000px;}
.y137{bottom:783.870000px;}
.yb{bottom:786.030000px;}
.y3b{bottom:787.290000px;}
.ya8{bottom:791.880000px;}
.yc2{bottom:796.560000px;}
.y8a{bottom:800.250000px;}
.y136{bottom:801.420000px;}
.yb2{bottom:804.300000px;}
.y3a{bottom:804.930000px;}
.y60{bottom:805.110000px;}
.ya7{bottom:809.520000px;}
.y113{bottom:809.610000px;}
.ye8{bottom:809.880000px;}
.y89{bottom:818.700000px;}
.y135{bottom:819.060000px;}
.ya{bottom:821.850000px;}
.y39{bottom:822.480000px;}
.yc1{bottom:823.920000px;}
.ya6{bottom:827.070000px;}
.y88{bottom:836.250000px;}
.y134{bottom:836.610000px;}
.y114{bottom:836.880000px;}
.yb1{bottom:839.850000px;}
.y5f{bottom:840.660000px;}
.y94{bottom:851.820000px;}
.y87{bottom:853.800000px;}
.y38{bottom:858.030000px;}
.ye6{bottom:858.570000px;}
.y5e{bottom:859.110000px;}
.y9{bottom:861.630000px;}
.ya5{bottom:863.520000px;}
.yb0{bottom:872.070000px;}
.y86{bottom:872.250000px;}
.yc0{bottom:873.420000px;}
.y37{bottom:875.670000px;}
.ye5{bottom:876.210000px;}
.y5d{bottom:877.470000px;}
.y8{bottom:879.630000px;}
.y112{bottom:885.570000px;}
.y93{bottom:888.270000px;}
.y85{bottom:890.610000px;}
.ybf{bottom:890.970000px;}
.y36{bottom:893.220000px;}
.ya4{bottom:895.740000px;}
.y7{bottom:897.630000px;}
.y111{bottom:903.210000px;}
.y5c{bottom:904.830000px;}
.y84{bottom:909.060000px;}
.y35{bottom:910.860000px;}
.ye4{bottom:911.040000px;}
.ybe{bottom:917.520000px;}
.y92{bottom:920.490000px;}
.ye3{bottom:925.170000px;}
.y34{bottom:928.410000px;}
.y6{bottom:929.940000px;}
.ye0{bottom:937.320000px;}
.y5b{bottom:937.410000px;}
.y110{bottom:938.040000px;}
.y83{bottom:945.510000px;}
.y33{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.y10f{bottom:952.170000px;}
.ybd{bottom:952.440000px;}
.y5a{bottom:955.860000px;}
.y10c{bottom:964.320000px;}
.ybc{bottom:964.590000px;}
.ye2{bottom:964.680000px;}
.y82{bottom:972.060000px;}
.y32{bottom:981.600000px;}
.y59{bottom:983.310000px;}
.y10e{bottom:987.180000px;}
.y4{bottom:987.630000px;}
.ybb{bottom:991.950000px;}
.y31{bottom:999.150000px;}
.y81{bottom:1007.970000px;}
.y10b{bottom:1009.980000px;}
.y3{bottom:1012.320000px;}
.y58{bottom:1015.920000px;}
.y30{bottom:1016.820000px;}
.yba{bottom:1019.340000px;}
.y10a{bottom:1032.840000px;}
.y2f{bottom:1034.370000px;}
.yb8{bottom:1046.610000px;}
.yde{bottom:1046.700000px;}
.y57{bottom:1051.560000px;}
.y2e{bottom:1051.920000px;}
.y105{bottom:1055.700000px;}
.y80{bottom:1056.330000px;}
.y151{bottom:1060.920000px;}
.ydf{bottom:1073.970000px;}
.y56{bottom:1078.110000px;}
.y107{bottom:1078.470000px;}
.y150{bottom:1078.560000px;}
.y7f{bottom:1085.760000px;}
.y2d{bottom:1087.560000px;}
.yb7{bottom:1096.110000px;}
.y7e{bottom:1103.400000px;}
.y2c{bottom:1105.110000px;}
.y55{bottom:1113.750000px;}
.y9b{bottom:1121.760000px;}
.y7d{bottom:1121.850000px;}
.y2b{bottom:1122.750000px;}
.y7c{bottom:1139.400000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h1a{height:22.050000px;}
.h19{height:22.140000px;}
.h1f{height:25.020000px;}
.h1d{height:25.110000px;}
.hc{height:26.550000px;}
.hf{height:26.580000px;}
.hd{height:26.640000px;}
.h13{height:26.670000px;}
.he{height:27.360000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:38.100586px;}
.h10{height:40.539023px;}
.h18{height:44.910000px;}
.h7{height:50.902383px;}
.h1c{height:50.940000px;}
.h11{height:53.910000px;}
.h16{height:54.000000px;}
.h5{height:55.779258px;}
.hb{height:59.973223px;}
.ha{height:61.793886px;}
.h8{height:62.585859px;}
.h1b{height:67.800000px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1e{height:76.770000px;}
.h17{height:81.180000px;}
.h15{height:81.210000px;}
.h14{height:81.270000px;}
.h12{height:81.300000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2a{width:36.540000px;}
.w10{width:36.630000px;}
.w5{width:36.810000px;}
.w21{width:37.170000px;}
.w28{width:40.050000px;}
.we{width:40.140000px;}
.w20{width:41.220000px;}
.w4{width:53.760000px;}
.w9{width:73.380000px;}
.w29{width:74.340000px;}
.wf{width:74.430000px;}
.wa{width:80.820000px;}
.w13{width:80.910000px;}
.w16{width:80.940000px;}
.w3{width:92.160000px;}
.w23{width:104.340000px;}
.w7{width:105.600000px;}
.w12{width:108.300000px;}
.w18{width:111.900000px;}
.w1a{width:116.580000px;}
.w8{width:123.120000px;}
.w6{width:130.140000px;}
.w26{width:152.550000px;}
.wb{width:152.640000px;}
.wd{width:152.730000px;}
.w14{width:152.820000px;}
.w25{width:156.900000px;}
.w1c{width:158.160000px;}
.w1d{width:160.740000px;}
.w27{width:161.670000px;}
.wc{width:161.760000px;}
.w1f{width:171.270000px;}
.w1e{width:181.650000px;}
.w11{width:624.300000px;}
.w17{width:631.950000px;}
.w24{width:655.350000px;}
.w15{width:659.310000px;}
.w19{width:662.910000px;}
.w1b{width:667.500000px;}
.w2b{width:707.820000px;}
.w22{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x25{left:3.870000px;}
.x5a{left:5.220000px;}
.x7{left:7.650000px;}
.x53{left:9.540000px;}
.x59{left:11.700000px;}
.x5b{left:14.130000px;}
.x55{left:15.840000px;}
.x4b{left:25.470000px;}
.x58{left:27.900000px;}
.x56{left:29.970000px;}
.x54{left:32.040000px;}
.x4e{left:37.890000px;}
.x57{left:46.710000px;}
.x1{left:68.040000px;}
.x6d{left:70.379987px;}
.x38{left:71.639987px;}
.x2f{left:72.719987px;}
.x49{left:76.139987px;}
.x5c{left:77.579987px;}
.x2c{left:80.369987px;}
.x36{left:83.159987px;}
.x40{left:91.529987px;}
.x68{left:92.700000px;}
.x4{left:95.039987px;}
.x6e{left:111.239987px;}
.x4a{left:112.860000px;}
.x42{left:115.200000px;}
.x30{left:117.000000px;}
.x61{left:118.980000px;}
.x5{left:122.039987px;}
.x3a{left:130.680000px;}
.x24{left:134.460000px;}
.x19{left:149.039987px;}
.x67{left:158.399987px;}
.x41{left:161.819987px;}
.xc{left:173.459987px;}
.x22{left:176.789987px;}
.x23{left:180.209987px;}
.x37{left:184.799987px;}
.x1d{left:187.499987px;}
.x2{left:192.719987px;}
.x60{left:196.679987px;}
.x16{left:199.919987px;}
.xa{left:202.079987px;}
.x39{left:203.609987px;}
.x18{left:204.689987px;}
.x2d{left:206.939987px;}
.x26{left:208.560000px;}
.x3b{left:212.340000px;}
.x13{left:215.849987px;}
.xe{left:222.689987px;}
.x62{left:224.040000px;}
.x10{left:226.649987px;}
.x43{left:227.820000px;}
.x4c{left:230.160000px;}
.x15{left:232.769987px;}
.x12{left:237.359987px;}
.x1e{left:247.620000px;}
.x69{left:250.320000px;}
.x1f{left:285.240000px;}
.x27{left:290.190000px;}
.x3c{left:293.970000px;}
.x63{left:305.670000px;}
.x31{left:307.650000px;}
.x44{left:309.450000px;}
.x4d{left:311.790000px;}
.x2a{left:331.050000px;}
.x3e{left:334.830000px;}
.x65{left:346.530000px;}
.x34{left:348.510000px;}
.x47{left:350.310000px;}
.x51{left:352.650000px;}
.x6{left:373.350000px;}
.x2b{left:406.200000px;}
.x3f{left:409.980000px;}
.x20{left:416.190000px;}
.x66{left:421.680000px;}
.x35{left:423.660000px;}
.x48{left:425.460000px;}
.x52{left:427.800000px;}
.x5f{left:432.840000px;}
.x28{left:443.550000px;}
.x2e{left:446.609987px;}
.x6c{left:447.960000px;}
.x64{left:459.030000px;}
.x32{left:461.010000px;}
.x45{left:462.810000px;}
.x4f{left:465.150000px;}
.x8{left:466.230000px;}
.x5d{left:470.730000px;}
.x6a{left:485.310000px;}
.x21{left:522.510000px;}
.x29{left:606.030000px;}
.x3d{left:609.810000px;}
.x11{left:619.889987px;}
.x1b{left:621.059987px;}
.x33{left:623.490000px;}
.x46{left:625.290000px;}
.x50{left:627.630000px;}
.x14{left:628.889987px;}
.x1a{left:640.139987px;}
.x1c{left:641.309987px;}
.x6b{left:647.790000px;}
.x5e{left:653.190000px;}
.xd{left:661.559987px;}
.xb{left:662.909987px;}
.xf{left:664.889987px;}
.x17{left:672.809987px;}
.x9{left:714.389987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1f{letter-spacing:-0.276267pt;}
.ls9{letter-spacing:-0.244800pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.074667pt;}
.ls1b{letter-spacing:-0.056533pt;}
.ls21{letter-spacing:-0.035840pt;}
.ls16{letter-spacing:-0.034560pt;}
.ls24{letter-spacing:-0.019840pt;}
.ls20{letter-spacing:-0.005440pt;}
.ls5{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.ls1e{letter-spacing:0.046080pt;}
.ls14{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.058240pt;}
.ls23{letter-spacing:0.066667pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.087467pt;}
.ls1c{letter-spacing:0.093867pt;}
.ls22{letter-spacing:0.095467pt;}
.ls1a{letter-spacing:0.102933pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.lsa{letter-spacing:0.155200pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:1.363200pt;}
.ls11{letter-spacing:2.643200pt;}
.ls26{letter-spacing:42.423680pt;}
.ls15{letter-spacing:56.503680pt;}
.ls25{letter-spacing:71.863680pt;}
.ws7{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws5{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.859733pt;}
.ws11{word-spacing:-11.850667pt;}
.wse{word-spacing:-11.844267pt;}
.ws12{word-spacing:-11.802880pt;}
.ws8{word-spacing:-11.800533pt;}
.wsd{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws13{word-spacing:-11.751360pt;}
.wsa{word-spacing:-11.722240pt;}
.wsf{word-spacing:-11.700267pt;}
.wsb{word-spacing:-11.620267pt;}
.ws4{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws2{word-spacing:-7.603200pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._d{margin-left:-3.789866pt;}
._9{margin-left:-2.647467pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.446809pt;}
._5{width:2.895765pt;}
._3{width:4.114666pt;}
._8{width:5.689066pt;}
._4{width:6.840534pt;}
._c{width:7.746350pt;}
._a{width:8.657066pt;}
._b{width:9.768339pt;}
._6{width:10.688000pt;}
._e{width:12.858880pt;}
._7{width:14.535466pt;}
._12{width:15.657920pt;}
._11{width:16.859520pt;}
._f{width:23.059200pt;}
._10{width:24.155840pt;}
._1{width:35.938218pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y109{bottom:2.960000pt;}
.y108{bottom:3.040000pt;}
.y131{bottom:6.880000pt;}
.y6f{bottom:6.960000pt;}
.yf4{bottom:6.986667pt;}
.y72{bottom:7.040000pt;}
.y122{bottom:7.066667pt;}
.yb9{bottom:7.680000pt;}
.y106{bottom:23.280000pt;}
.y12a{bottom:29.920000pt;}
.ycb{bottom:31.280000pt;}
.yfc{bottom:31.360000pt;}
.y10d{bottom:43.626667pt;}
.y12f{bottom:52.880000pt;}
.y101{bottom:55.520000pt;}
.yf6{bottom:55.546667pt;}
.ye1{bottom:55.600000pt;}
.yd0{bottom:55.626667pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y133{bottom:98.346667pt;}
.y9a{bottom:102.586667pt;}
.yb6{bottom:104.586667pt;}
.y7b{bottom:105.466667pt;}
.y104{bottom:105.626667pt;}
.y14f{bottom:108.186667pt;}
.y132{bottom:110.826667pt;}
.yaf{bottom:115.626667pt;}
.y103{bottom:118.106667pt;}
.y54{bottom:118.506667pt;}
.y12e{bottom:121.706667pt;}
.y14e{bottom:123.786667pt;}
.y27{bottom:125.626667pt;}
.y100{bottom:128.986667pt;}
.y7a{bottom:129.146667pt;}
.yb5{bottom:133.226667pt;}
.y99{bottom:134.186667pt;}
.ydd{bottom:135.706667pt;}
.y26{bottom:141.306667pt;}
.y130{bottom:144.666667pt;}
.yae{bottom:147.306667pt;}
.y14d{bottom:147.466667pt;}
.ydc{bottom:148.186667pt;}
.y53{bottom:150.186667pt;}
.y102{bottom:153.226667pt;}
.y25{bottom:156.906667pt;}
.ydb{bottom:158.986667pt;}
.y79{bottom:160.746667pt;}
.y98{bottom:162.826667pt;}
.y14c{bottom:163.066667pt;}
.y52{bottom:165.786667pt;}
.y12d{bottom:167.626667pt;}
.y24{bottom:172.586667pt;}
.yad{bottom:175.946667pt;}
.y78{bottom:176.426667pt;}
.yff{bottom:177.546667pt;}
.y14b{bottom:178.746667pt;}
.yda{bottom:183.306667pt;}
.y51{bottom:189.386667pt;}
.y12c{bottom:190.586667pt;}
.y77{bottom:192.026667pt;}
.yfe{bottom:201.866667pt;}
.y14a{bottom:202.346667pt;}
.y23{bottom:204.186667pt;}
.yd9{bottom:207.626667pt;}
.y129{bottom:213.546667pt;}
.y76{bottom:215.626667pt;}
.y149{bottom:217.946667pt;}
.y22{bottom:219.786667pt;}
.y50{bottom:220.986667pt;}
.yfb{bottom:226.106667pt;}
.yd7{bottom:231.946667pt;}
.y21{bottom:235.466667pt;}
.y12b{bottom:236.506667pt;}
.y4f{bottom:236.666667pt;}
.ya3{bottom:238.906667pt;}
.y148{bottom:241.626667pt;}
.y75{bottom:247.306667pt;}
.yfd{bottom:250.426667pt;}
.y20{bottom:251.066667pt;}
.y4e{bottom:252.986667pt;}
.ya2{bottom:254.586667pt;}
.yd8{bottom:256.186667pt;}
.y147{bottom:257.226667pt;}
.y91{bottom:264.026667pt;}
.y74{bottom:270.906667pt;}
.y1f{bottom:274.746667pt;}
.y4d{bottom:277.386667pt;}
.y128{bottom:278.426667pt;}
.y146{bottom:280.906667pt;}
.ya1{bottom:286.986667pt;}
.yfa{bottom:293.706667pt;}
.y127{bottom:294.106667pt;}
.y90{bottom:296.426667pt;}
.y145{bottom:296.506667pt;}
.yd6{bottom:299.466667pt;}
.y73{bottom:300.266667pt;}
.y1e{bottom:306.666667pt;}
.y4c{bottom:309.066667pt;}
.yf9{bottom:309.386667pt;}
.yd5{bottom:315.146667pt;}
.ya0{bottom:315.626667pt;}
.y126{bottom:317.706667pt;}
.y144{bottom:320.106667pt;}
.y71{bottom:324.506667pt;}
.y8f{bottom:325.066667pt;}
.y4b{bottom:332.666667pt;}
.y125{bottom:333.386667pt;}
.yf8{bottom:340.346667pt;}
.y143{bottom:343.786667pt;}
.yd4{bottom:346.106667pt;}
.y70{bottom:348.826667pt;}
.y1d{bottom:349.786667pt;}
.yf7{bottom:352.826667pt;}
.y142{bottom:359.386667pt;}
.yf5{bottom:363.706667pt;}
.y4a{bottom:364.266667pt;}
.y124{bottom:364.346667pt;}
.y6e{bottom:373.146667pt;}
.yd3{bottom:374.586667pt;}
.y123{bottom:376.826667pt;}
.y1c{bottom:382.746667pt;}
.y141{bottom:383.306667pt;}
.yb4{bottom:384.826667pt;}
.yd2{bottom:387.146667pt;}
.y120{bottom:387.706667pt;}
.y49{bottom:387.946667pt;}
.ycf{bottom:397.946667pt;}
.y1b{bottom:398.346667pt;}
.yac{bottom:401.546667pt;}
.y121{bottom:411.946667pt;}
.yf3{bottom:412.266667pt;}
.y1a{bottom:414.026667pt;}
.y6d{bottom:416.426667pt;}
.yab{bottom:417.226667pt;}
.y48{bottom:419.573333pt;}
.yd1{bottom:422.293333pt;}
.y140{bottom:426.293333pt;}
.y19{bottom:429.653333pt;}
.y11f{bottom:436.293333pt;}
.yf2{bottom:436.613333pt;}
.y47{bottom:443.173333pt;}
.y18{bottom:445.253333pt;}
.yb3{bottom:445.893333pt;}
.yce{bottom:446.533333pt;}
.y6c{bottom:448.053333pt;}
.yaa{bottom:449.653333pt;}
.y13f{bottom:450.133333pt;}
.y97{bottom:452.453333pt;}
.y11e{bottom:460.613333pt;}
.y17{bottom:460.933333pt;}
.y6b{bottom:463.733333pt;}
.ycd{bottom:470.853333pt;}
.y46{bottom:474.773333pt;}
.y16{bottom:476.533333pt;}
.ya9{bottom:478.293333pt;}
.y6a{bottom:479.333333pt;}
.y13e{bottom:483.093333pt;}
.y96{bottom:484.933333pt;}
.yf1{bottom:485.173333pt;}
.y45{bottom:490.453333pt;}
.y15{bottom:492.213333pt;}
.yca{bottom:495.173333pt;}
.y69{bottom:502.933333pt;}
.y44{bottom:506.133333pt;}
.y13d{bottom:507.013333pt;}
.y14{bottom:507.813333pt;}
.y11d{bottom:509.173333pt;}
.y95{bottom:513.573333pt;}
.ycc{bottom:519.493333pt;}
.y43{bottom:521.733333pt;}
.y13{bottom:523.413333pt;}
.yf0{bottom:528.453333pt;}
.y68{bottom:534.613333pt;}
.y42{bottom:538.133333pt;}
.y12{bottom:539.093333pt;}
.y13c{bottom:539.893333pt;}
.yef{bottom:544.133333pt;}
.y67{bottom:550.213333pt;}
.y11c{bottom:552.453333pt;}
.y41{bottom:553.733333pt;}
.y11{bottom:554.693333pt;}
.yc9{bottom:562.773333pt;}
.y13b{bottom:563.813333pt;}
.y11b{bottom:568.133333pt;}
.y40{bottom:569.413333pt;}
.y10{bottom:570.373333pt;}
.y66{bottom:573.893333pt;}
.yee{bottom:575.093333pt;}
.y3f{bottom:585.013333pt;}
.yf{bottom:585.973333pt;}
.yc8{bottom:586.373333pt;}
.yed{bottom:587.573333pt;}
.y13a{bottom:596.773333pt;}
.yeb{bottom:598.453333pt;}
.y11a{bottom:599.093333pt;}
.ye{bottom:601.573333pt;}
.yc7{bottom:602.053333pt;}
.y9f{bottom:603.173333pt;}
.y65{bottom:605.493333pt;}
.y3e{bottom:609.413333pt;}
.y119{bottom:611.573333pt;}
.yc6{bottom:617.653333pt;}
.y9e{bottom:618.853333pt;}
.y139{bottom:620.613333pt;}
.y64{bottom:621.093333pt;}
.y117{bottom:622.453333pt;}
.yec{bottom:622.693333pt;}
.yd{bottom:625.573333pt;}
.y8e{bottom:626.693333pt;}
.y3d{bottom:641.333333pt;}
.y63{bottom:644.773333pt;}
.y118{bottom:646.693333pt;}
.yea{bottom:647.013333pt;}
.yc5{bottom:648.613333pt;}
.y8d{bottom:651.093333pt;}
.y9d{bottom:651.253333pt;}
.y138{bottom:653.813333pt;}
.yc4{bottom:659.493333pt;}
.yc{bottom:667.093333pt;}
.y116{bottom:671.013333pt;}
.ye9{bottom:671.333333pt;}
.y62{bottom:676.373333pt;}
.y8c{bottom:679.973333pt;}
.yc3{bottom:683.733333pt;}
.y3c{bottom:684.213333pt;}
.y61{bottom:692.053333pt;}
.y115{bottom:695.333333pt;}
.y9c{bottom:695.573333pt;}
.ye7{bottom:695.653333pt;}
.y8b{bottom:695.733333pt;}
.y137{bottom:696.773333pt;}
.yb{bottom:698.693333pt;}
.y3b{bottom:699.813333pt;}
.ya8{bottom:703.893333pt;}
.yc2{bottom:708.053333pt;}
.y8a{bottom:711.333333pt;}
.y136{bottom:712.373333pt;}
.yb2{bottom:714.933333pt;}
.y3a{bottom:715.493333pt;}
.y60{bottom:715.653333pt;}
.ya7{bottom:719.573333pt;}
.y113{bottom:719.653333pt;}
.ye8{bottom:719.893333pt;}
.y89{bottom:727.733333pt;}
.y135{bottom:728.053333pt;}
.ya{bottom:730.533333pt;}
.y39{bottom:731.093333pt;}
.yc1{bottom:732.373333pt;}
.ya6{bottom:735.173333pt;}
.y88{bottom:743.333333pt;}
.y134{bottom:743.653333pt;}
.y114{bottom:743.893333pt;}
.yb1{bottom:746.533333pt;}
.y5f{bottom:747.253333pt;}
.y94{bottom:757.173333pt;}
.y87{bottom:758.933333pt;}
.y38{bottom:762.693333pt;}
.ye6{bottom:763.173333pt;}
.y5e{bottom:763.653333pt;}
.y9{bottom:765.893333pt;}
.ya5{bottom:767.573333pt;}
.yb0{bottom:775.173333pt;}
.y86{bottom:775.333333pt;}
.yc0{bottom:776.373333pt;}
.y37{bottom:778.373333pt;}
.ye5{bottom:778.853333pt;}
.y5d{bottom:779.973333pt;}
.y8{bottom:781.893333pt;}
.y112{bottom:787.173333pt;}
.y93{bottom:789.573333pt;}
.y85{bottom:791.653333pt;}
.ybf{bottom:791.973333pt;}
.y36{bottom:793.973333pt;}
.ya4{bottom:796.213333pt;}
.y7{bottom:797.893333pt;}
.y111{bottom:802.853333pt;}
.y5c{bottom:804.293333pt;}
.y84{bottom:808.053333pt;}
.y35{bottom:809.653333pt;}
.ye4{bottom:809.813333pt;}
.ybe{bottom:815.573333pt;}
.y92{bottom:818.213333pt;}
.ye3{bottom:822.373333pt;}
.y34{bottom:825.253333pt;}
.y6{bottom:826.613333pt;}
.ye0{bottom:833.173333pt;}
.y5b{bottom:833.253333pt;}
.y110{bottom:833.813333pt;}
.y83{bottom:840.453333pt;}
.y33{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.y10f{bottom:846.373333pt;}
.ybd{bottom:846.613333pt;}
.y5a{bottom:849.653333pt;}
.y10c{bottom:857.173333pt;}
.ybc{bottom:857.413333pt;}
.ye2{bottom:857.493333pt;}
.y82{bottom:864.053333pt;}
.y32{bottom:872.533333pt;}
.y59{bottom:874.053333pt;}
.y10e{bottom:877.493333pt;}
.y4{bottom:877.893333pt;}
.ybb{bottom:881.733333pt;}
.y31{bottom:888.133333pt;}
.y81{bottom:895.973333pt;}
.y10b{bottom:897.760000pt;}
.y3{bottom:899.840000pt;}
.y58{bottom:903.040000pt;}
.y30{bottom:903.840000pt;}
.yba{bottom:906.080000pt;}
.y10a{bottom:918.080000pt;}
.y2f{bottom:919.440000pt;}
.yb8{bottom:930.320000pt;}
.yde{bottom:930.400000pt;}
.y57{bottom:934.720000pt;}
.y2e{bottom:935.040000pt;}
.y105{bottom:938.400000pt;}
.y80{bottom:938.960000pt;}
.y151{bottom:943.040000pt;}
.ydf{bottom:954.640000pt;}
.y56{bottom:958.320000pt;}
.y107{bottom:958.640000pt;}
.y150{bottom:958.720000pt;}
.y7f{bottom:965.120000pt;}
.y2d{bottom:966.720000pt;}
.yb7{bottom:974.320000pt;}
.y7e{bottom:980.800000pt;}
.y2c{bottom:982.320000pt;}
.y55{bottom:990.000000pt;}
.y9b{bottom:997.120000pt;}
.y7d{bottom:997.200000pt;}
.y2b{bottom:998.000000pt;}
.y7c{bottom:1012.800000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h1a{height:19.600000pt;}
.h19{height:19.680000pt;}
.h1f{height:22.240000pt;}
.h1d{height:22.320000pt;}
.hc{height:23.600000pt;}
.hf{height:23.626667pt;}
.hd{height:23.680000pt;}
.h13{height:23.706667pt;}
.he{height:24.320000pt;}
.h2{height:26.686562pt;}
.h6{height:31.806563pt;}
.h3{height:33.867188pt;}
.h10{height:36.034687pt;}
.h18{height:39.920000pt;}
.h7{height:45.246562pt;}
.h1c{height:45.280000pt;}
.h11{height:47.920000pt;}
.h16{height:48.000000pt;}
.h5{height:49.581562pt;}
.hb{height:53.309531pt;}
.ha{height:54.927899pt;}
.h8{height:55.631875pt;}
.h1b{height:60.266667pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1e{height:68.240000pt;}
.h17{height:72.160000pt;}
.h15{height:72.186667pt;}
.h14{height:72.240000pt;}
.h12{height:72.266667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2a{width:32.480000pt;}
.w10{width:32.560000pt;}
.w5{width:32.720000pt;}
.w21{width:33.040000pt;}
.w28{width:35.600000pt;}
.we{width:35.680000pt;}
.w20{width:36.640000pt;}
.w4{width:47.786667pt;}
.w9{width:65.226667pt;}
.w29{width:66.080000pt;}
.wf{width:66.160000pt;}
.wa{width:71.840000pt;}
.w13{width:71.920000pt;}
.w16{width:71.946667pt;}
.w3{width:81.920000pt;}
.w23{width:92.746667pt;}
.w7{width:93.866667pt;}
.w12{width:96.266667pt;}
.w18{width:99.466667pt;}
.w1a{width:103.626667pt;}
.w8{width:109.440000pt;}
.w6{width:115.680000pt;}
.w26{width:135.600000pt;}
.wb{width:135.680000pt;}
.wd{width:135.760000pt;}
.w14{width:135.840000pt;}
.w25{width:139.466667pt;}
.w1c{width:140.586667pt;}
.w1d{width:142.880000pt;}
.w27{width:143.706667pt;}
.wc{width:143.786667pt;}
.w1f{width:152.240000pt;}
.w1e{width:161.466667pt;}
.w11{width:554.933333pt;}
.w17{width:561.733333pt;}
.w24{width:582.533333pt;}
.w15{width:586.053333pt;}
.w19{width:589.253333pt;}
.w1b{width:593.333333pt;}
.w2b{width:629.173333pt;}
.w22{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x25{left:3.440000pt;}
.x5a{left:4.640000pt;}
.x7{left:6.800000pt;}
.x53{left:8.480000pt;}
.x59{left:10.400000pt;}
.x5b{left:12.560000pt;}
.x55{left:14.080000pt;}
.x4b{left:22.640000pt;}
.x58{left:24.800000pt;}
.x56{left:26.640000pt;}
.x54{left:28.480000pt;}
.x4e{left:33.680000pt;}
.x57{left:41.520000pt;}
.x1{left:60.480000pt;}
.x6d{left:62.559988pt;}
.x38{left:63.679988pt;}
.x2f{left:64.639988pt;}
.x49{left:67.679988pt;}
.x5c{left:68.959988pt;}
.x2c{left:71.439988pt;}
.x36{left:73.919988pt;}
.x40{left:81.359988pt;}
.x68{left:82.400000pt;}
.x4{left:84.479988pt;}
.x6e{left:98.879988pt;}
.x4a{left:100.320000pt;}
.x42{left:102.400000pt;}
.x30{left:104.000000pt;}
.x61{left:105.760000pt;}
.x5{left:108.479988pt;}
.x3a{left:116.160000pt;}
.x24{left:119.520000pt;}
.x19{left:132.479988pt;}
.x67{left:140.799988pt;}
.x41{left:143.839988pt;}
.xc{left:154.186655pt;}
.x22{left:157.146655pt;}
.x23{left:160.186655pt;}
.x37{left:164.266655pt;}
.x1d{left:166.666655pt;}
.x2{left:171.306655pt;}
.x60{left:174.826655pt;}
.x16{left:177.706655pt;}
.xa{left:179.626655pt;}
.x39{left:180.986655pt;}
.x18{left:181.946655pt;}
.x2d{left:183.946655pt;}
.x26{left:185.386667pt;}
.x3b{left:188.746667pt;}
.x13{left:191.866655pt;}
.xe{left:197.946655pt;}
.x62{left:199.146667pt;}
.x10{left:201.466655pt;}
.x43{left:202.506667pt;}
.x4c{left:204.586667pt;}
.x15{left:206.906655pt;}
.x12{left:210.986655pt;}
.x1e{left:220.106667pt;}
.x69{left:222.506667pt;}
.x1f{left:253.546667pt;}
.x27{left:257.946667pt;}
.x3c{left:261.306667pt;}
.x63{left:271.706667pt;}
.x31{left:273.466667pt;}
.x44{left:275.066667pt;}
.x4d{left:277.146667pt;}
.x2a{left:294.266667pt;}
.x3e{left:297.626667pt;}
.x65{left:308.026667pt;}
.x34{left:309.786667pt;}
.x47{left:311.386667pt;}
.x51{left:313.466667pt;}
.x6{left:331.866667pt;}
.x2b{left:361.066667pt;}
.x3f{left:364.426667pt;}
.x20{left:369.946667pt;}
.x66{left:374.826667pt;}
.x35{left:376.586667pt;}
.x48{left:378.186667pt;}
.x52{left:380.266667pt;}
.x5f{left:384.746667pt;}
.x28{left:394.266667pt;}
.x2e{left:396.986655pt;}
.x6c{left:398.186667pt;}
.x64{left:408.026667pt;}
.x32{left:409.786667pt;}
.x45{left:411.386667pt;}
.x4f{left:413.466667pt;}
.x8{left:414.426667pt;}
.x5d{left:418.426667pt;}
.x6a{left:431.386667pt;}
.x21{left:464.453333pt;}
.x29{left:538.693333pt;}
.x3d{left:542.053333pt;}
.x11{left:551.013322pt;}
.x1b{left:552.053322pt;}
.x33{left:554.213333pt;}
.x46{left:555.813333pt;}
.x50{left:557.893333pt;}
.x14{left:559.013322pt;}
.x1a{left:569.013322pt;}
.x1c{left:570.053322pt;}
.x6b{left:575.813333pt;}
.x5e{left:580.613333pt;}
.xd{left:588.053322pt;}
.xb{left:589.253322pt;}
.xf{left:591.013322pt;}
.x17{left:598.053322pt;}
.x9{left:635.013322pt;}
.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; }
  