
    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_403724686b513495ccb5eef9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8e7ce48eb92994f828262c51.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c7ca2ab1e57d7e2d12f7d916.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e68d6c2a3574ac98994fc4b8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1085d9e8c17d4d5f383cdb5f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dd2ff501f706b228aede9135.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908203;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);}
.v5{vertical-align:-29.880000px;}
.v3{vertical-align:-24.120000px;}
.v4{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:24.120000px;}
.v2{vertical-align:29.880000px;}
.v1{vertical-align:85.680000px;}
.ls1e{letter-spacing:-0.378000px;}
.lsc{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.342000px;}
.ls8{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.144000px;}
.ls17{letter-spacing:-0.134400px;}
.ls14{letter-spacing:-0.126000px;}
.ls9{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.045600px;}
.ls1a{letter-spacing:-0.045360px;}
.ls4{letter-spacing:-0.027600px;}
.ls18{letter-spacing:-0.022200px;}
.ls10{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.014040px;}
.lsd{letter-spacing:0.018000px;}
.ls19{letter-spacing:0.021960px;}
.lsf{letter-spacing:0.022200px;}
.ls16{letter-spacing:0.045600px;}
.ls1f{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.090000px;}
.ls13{letter-spacing:0.090600px;}
.ls1b{letter-spacing:0.090720px;}
.lsa{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.126000px;}
.ls7{letter-spacing:0.130800px;}
.ls5{letter-spacing:0.139200px;}
.ls1d{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.198000px;}
.ls1c{letter-spacing:0.360000px;}
.ls12{letter-spacing:83.160000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-20.970000px;}
.ws3{word-spacing:-20.430000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.ws0{word-spacing:-16.650000px;}
.ws15{word-spacing:-16.560600px;}
.ws16{word-spacing:-16.515600px;}
.ws11{word-spacing:-16.492200px;}
.ws10{word-spacing:-16.470000px;}
.ws18{word-spacing:-16.447800px;}
.ws19{word-spacing:-16.424640px;}
.wse{word-spacing:-16.424400px;}
.ws17{word-spacing:-16.335600px;}
.wsf{word-spacing:-16.290000px;}
.ws5{word-spacing:-14.220000px;}
.ws4{word-spacing:-14.192400px;}
.ws1c{word-spacing:-13.644000px;}
.ws7{word-spacing:-13.626000px;}
.wsb{word-spacing:-13.608000px;}
.ws12{word-spacing:-13.518000px;}
.ws9{word-spacing:-13.500000px;}
.ws13{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.374000px;}
.ws14{word-spacing:-13.356000px;}
.wsc{word-spacing:-13.140000px;}
.ws1d{word-spacing:-13.122000px;}
.ws1b{word-spacing:-11.970000px;}
.ws1f{word-spacing:-9.072000px;}
.ws8{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
.ws20{word-spacing:4.566000px;}
.ws1e{word-spacing:31.584000px;}
._1{margin-left:-3.141018px;}
._0{margin-left:-1.031976px;}
._3{width:1.314611px;}
._4{width:2.436042px;}
._5{width:3.695790px;}
._6{width:5.070000px;}
._c{width:6.648066px;}
._8{width:7.823934px;}
._7{width:8.910000px;}
._b{width:10.260000px;}
._10{width:11.429389px;}
._e{width:14.699413px;}
._a{width:17.226000px;}
._9{width:18.306000px;}
._2{width:145.623036px;}
._d{width:1038.946909px;}
._f{width:1041.330000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:42.120000px;}
.fsa{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs9{font-size:60.120000px;}
.fs8{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:2.970000px;}
.yc9{bottom:3.060000px;}
.yf4{bottom:3.238500px;}
.yd3{bottom:3.240000px;}
.yd9{bottom:3.328500px;}
.yc2{bottom:3.330000px;}
.y77{bottom:3.690000px;}
.y3d{bottom:7.200000px;}
.y3f{bottom:7.290000px;}
.ya3{bottom:7.320000px;}
.y6b{bottom:8.370000px;}
.y5b{bottom:9.570000px;}
.yb8{bottom:10.260000px;}
.yb6{bottom:14.490000px;}
.y87{bottom:14.760000px;}
.yb1{bottom:18.540000px;}
.yd8{bottom:18.808500px;}
.yc4{bottom:18.810000px;}
.yc1{bottom:18.840000px;}
.y76{bottom:22.680000px;}
.y7d{bottom:22.710000px;}
.yb5{bottom:29.970000px;}
.yb4{bottom:31.320000px;}
.y12a{bottom:32.323500px;}
.yc8{bottom:34.020000px;}
.yf3{bottom:34.288500px;}
.yd2{bottom:34.290000px;}
.ye1{bottom:34.320000px;}
.yd7{bottom:34.378500px;}
.ye5{bottom:34.380000px;}
.y75{bottom:41.670000px;}
.yb3{bottom:45.540000px;}
.ye8{bottom:49.770000px;}
.yd6{bottom:49.858500px;}
.yd1{bottom:49.860000px;}
.ye0{bottom:49.890000px;}
.y8c{bottom:57.630000px;}
.yaf{bottom:61.740000px;}
.yf2{bottom:65.338500px;}
.yd0{bottom:65.340000px;}
.ydf{bottom:65.370000px;}
.yd5{bottom:65.428500px;}
.ye4{bottom:65.430000px;}
.y1{bottom:76.620000px;}
.yae{bottom:77.310000px;}
.ye7{bottom:80.820000px;}
.ycf{bottom:80.910000px;}
.yde{bottom:80.940000px;}
.yd4{bottom:94.081500px;}
.yce{bottom:96.390000px;}
.ydd{bottom:96.420000px;}
.ye3{bottom:96.480000px;}
.yf1{bottom:96.691500px;}
.y81{bottom:100.260000px;}
.y89{bottom:103.350000px;}
.y9d{bottom:106.950000px;}
.ycd{bottom:111.960000px;}
.ydc{bottom:111.990000px;}
.y7a{bottom:115.770000px;}
.y9c{bottom:119.370000px;}
.y73{bottom:120.990000px;}
.ycc{bottom:127.440000px;}
.yec{bottom:127.530000px;}
.ycb{bottom:143.010000px;}
.y72{bottom:152.220000px;}
.y64{bottom:155.370000px;}
.y23{bottom:156.810000px;}
.yeb{bottom:158.490000px;}
.yca{bottom:172.470000px;}
.y54{bottom:172.740000px;}
.yf0{bottom:175.080000px;}
.y71{bottom:183.360000px;}
.y63{bottom:186.330000px;}
.y129{bottom:188.400000px;}
.y53{bottom:196.050000px;}
.y128{bottom:203.970000px;}
.y62{bottom:217.740000px;}
.y52{bottom:219.270000px;}
.y127{bottom:219.630000px;}
.y70{bottom:227.820000px;}
.y61{bottom:234.390000px;}
.y126{bottom:235.200000px;}
.yef{bottom:237.900000px;}
.y51{bottom:242.490000px;}
.y125{bottom:250.770000px;}
.y60{bottom:250.950000px;}
.y6f{bottom:251.130000px;}
.y50{bottom:265.800000px;}
.y124{bottom:266.430000px;}
.y6e{bottom:274.350000px;}
.y123{bottom:282.000000px;}
.y5f{bottom:283.080000px;}
.yee{bottom:285.240000px;}
.y4f{bottom:289.020000px;}
.y6d{bottom:297.570000px;}
.y4e{bottom:312.240000px;}
.y122{bottom:313.230000px;}
.y6c{bottom:320.880000px;}
.yc7{bottom:328.440000px;}
.y121{bottom:328.800000px;}
.y4d{bottom:335.550000px;}
.y6a{bottom:344.100000px;}
.y120{bottom:344.370000px;}
.y4c{bottom:358.770000px;}
.y11f{bottom:360.030000px;}
.y105{bottom:366.150000px;}
.y69{bottom:371.730000px;}
.y11e{bottom:375.600000px;}
.yc6{bottom:379.020000px;}
.yed{bottom:379.110000px;}
.y4b{bottom:381.990000px;}
.y22{bottom:389.460000px;}
.y11d{bottom:391.170000px;}
.y21{bottom:404.940000px;}
.y4a{bottom:405.300000px;}
.y11c{bottom:406.830000px;}
.yc5{bottom:407.730000px;}
.y9b{bottom:410.610000px;}
.y68{bottom:418.440000px;}
.y20{bottom:420.510000px;}
.y11b{bottom:422.400000px;}
.y9a{bottom:426.180000px;}
.y49{bottom:428.520000px;}
.yc3{bottom:430.950000px;}
.y1f{bottom:435.990000px;}
.y11a{bottom:437.970000px;}
.y99{bottom:438.600000px;}
.y88{bottom:449.760000px;}
.y1e{bottom:451.560000px;}
.y48{bottom:451.740000px;}
.y119{bottom:453.630000px;}
.y103{bottom:458.760000px;}
.yc0{bottom:462.720000px;}
.y1d{bottom:467.040000px;}
.y118{bottom:469.200000px;}
.y47{bottom:475.080000px;}
.y1c{bottom:482.640000px;}
.y117{bottom:484.800000px;}
.ybf{bottom:494.610000px;}
.y1b{bottom:498.120000px;}
.y46{bottom:498.300000px;}
.yea{bottom:504.060000px;}
.y1a{bottom:513.690000px;}
.y116{bottom:515.760000px;}
.ybe{bottom:517.830000px;}
.y45{bottom:524.850000px;}
.y19{bottom:528.990000px;}
.ybd{bottom:541.050000px;}
.y115{bottom:547.260000px;}
.y44{bottom:555.990000px;}
.y114{bottom:562.740000px;}
.ybc{bottom:564.360000px;}
.y18{bottom:566.700000px;}
.y43{bottom:571.290000px;}
.y113{bottom:578.310000px;}
.ybb{bottom:587.580000px;}
.y17{bottom:590.820000px;}
.y5e{bottom:593.790000px;}
.y42{bottom:600.270000px;}
.y16{bottom:606.390000px;}
.y112{bottom:609.360000px;}
.yba{bottom:610.800000px;}
.y15{bottom:621.870000px;}
.y41{bottom:623.490000px;}
.y5d{bottom:624.750000px;}
.y111{bottom:624.840000px;}
.yb9{bottom:634.110000px;}
.y14{bottom:637.440000px;}
.y110{bottom:640.410000px;}
.y40{bottom:646.800000px;}
.y13{bottom:652.920000px;}
.y10f{bottom:655.890000px;}
.yb7{bottom:657.330000px;}
.y12{bottom:668.490000px;}
.y3e{bottom:670.020000px;}
.y10e{bottom:671.460000px;}
.y5c{bottom:671.820000px;}
.ye9{bottom:675.600000px;}
.yad{bottom:680.550000px;}
.y11{bottom:683.970000px;}
.y10d{bottom:686.940000px;}
.y3c{bottom:693.240000px;}
.y10{bottom:699.540000px;}
.y10c{bottom:702.510000px;}
.yf{bottom:715.020000px;}
.y10b{bottom:717.990000px;}
.y3b{bottom:719.790000px;}
.y104{bottom:721.500000px;}
.ye{bottom:730.320000px;}
.y10a{bottom:733.470000px;}
.yb0{bottom:739.320000px;}
.y109{bottom:749.040000px;}
.y3a{bottom:751.020000px;}
.y108{bottom:764.520000px;}
.y39{bottom:766.500000px;}
.y98{bottom:772.710000px;}
.yac{bottom:774.420000px;}
.yd{bottom:778.470000px;}
.y38{bottom:782.070000px;}
.y67{bottom:782.520000px;}
.y86{bottom:784.410000px;}
.ye6{bottom:785.040000px;}
.y97{bottom:788.190000px;}
.yc{bottom:793.950000px;}
.y107{bottom:795.480000px;}
.y37{bottom:797.550000px;}
.y66{bottom:798.000000px;}
.yab{bottom:803.040000px;}
.y96{bottom:803.670000px;}
.y80{bottom:807.630000px;}
.y102{bottom:809.250000px;}
.yb{bottom:809.520000px;}
.y36{bottom:813.120000px;}
.y95{bottom:819.060000px;}
.yaa{bottom:826.350000px;}
.y106{bottom:826.980000px;}
.y65{bottom:829.230000px;}
.y85{bottom:830.850000px;}
.y101{bottom:832.560000px;}
.y94{bottom:834.630000px;}
.ya{bottom:842.820000px;}
.y35{bottom:843.990000px;}
.y93{bottom:850.470000px;}
.y84{bottom:854.160000px;}
.y100{bottom:855.780000px;}
.ya9{bottom:864.960000px;}
.y92{bottom:866.130000px;}
.y9{bottom:866.760000px;}
.y34{bottom:875.490000px;}
.y83{bottom:877.380000px;}
.y8{bottom:878.550000px;}
.yff{bottom:879.000000px;}
.y91{bottom:881.610000px;}
.ya8{bottom:888.270000px;}
.y33{bottom:890.970000px;}
.ye2{bottom:894.390000px;}
.y90{bottom:897.180000px;}
.y82{bottom:900.600000px;}
.yfe{bottom:902.310000px;}
.ya7{bottom:911.490000px;}
.y8f{bottom:912.750000px;}
.y7{bottom:915.360000px;}
.y32{bottom:921.930000px;}
.y79{bottom:923.910000px;}
.yfd{bottom:925.530000px;}
.y8e{bottom:928.320000px;}
.ya6{bottom:934.710000px;}
.y8d{bottom:940.740000px;}
.y7f{bottom:947.130000px;}
.yfc{bottom:948.750000px;}
.y31{bottom:953.430000px;}
.y6{bottom:956.220000px;}
.ya5{bottom:958.020000px;}
.y30{bottom:968.910000px;}
.y7e{bottom:970.350000px;}
.yfb{bottom:972.060000px;}
.ya4{bottom:981.240000px;}
.y2f{bottom:984.480000px;}
.y7c{bottom:993.660000px;}
.yfa{bottom:995.280000px;}
.y2e{bottom:999.960000px;}
.ydb{bottom:1003.830000px;}
.ya2{bottom:1004.460000px;}
.y5a{bottom:1006.350000px;}
.y2d{bottom:1015.560000px;}
.yf9{bottom:1018.530000px;}
.ya1{bottom:1027.800000px;}
.y2c{bottom:1031.040000px;}
.y59{bottom:1031.940000px;}
.y7b{bottom:1032.390000px;}
.y4{bottom:1034.100000px;}
.y5{bottom:1039.140000px;}
.yf8{bottom:1041.840000px;}
.y2b{bottom:1046.700000px;}
.ya0{bottom:1051.020000px;}
.y78{bottom:1055.610000px;}
.y3{bottom:1057.320000px;}
.y58{bottom:1058.400000px;}
.y2a{bottom:1062.180000px;}
.yf7{bottom:1065.060000px;}
.y29{bottom:1077.750000px;}
.y74{bottom:1078.830000px;}
.y57{bottom:1089.360000px;}
.yf6{bottom:1091.610000px;}
.y9f{bottom:1092.960000px;}
.y28{bottom:1093.230000px;}
.y27{bottom:1108.800000px;}
.yf5{bottom:1120.230000px;}
.y56{bottom:1121.040000px;}
.y9e{bottom:1124.190000px;}
.y26{bottom:1124.280000px;}
.yda{bottom:1128.780000px;}
.y55{bottom:1138.230000px;}
.y25{bottom:1139.760000px;}
.y8b{bottom:1155.780000px;}
.y2{bottom:1157.940000px;}
.y8a{bottom:1174.770000px;}
.y24{bottom:1193.670000px;}
.hd{height:22.500000px;}
.h19{height:22.522500px;}
.h12{height:23.670000px;}
.h11{height:24.772500px;}
.h1c{height:31.050000px;}
.h1e{height:31.080000px;}
.h9{height:35.314453px;}
.h2b{height:37.494141px;}
.h1a{height:37.890000px;}
.h15{height:37.912500px;}
.h18{height:37.980000px;}
.h17{height:41.338477px;}
.h1f{height:46.530000px;}
.h8{height:52.971680px;}
.hc{height:52.998047px;}
.ha{height:54.421875px;}
.h13{height:56.970000px;}
.h1d{height:58.050000px;}
.hf{height:59.004492px;}
.h2a{height:59.452031px;}
.h10{height:60.589687px;}
.hb{height:61.800293px;}
.h28{height:62.100000px;}
.h2{height:64.657617px;}
.he{height:66.394687px;}
.h7{height:72.329063px;}
.h3{height:72.562500px;}
.h29{height:77.578500px;}
.h21{height:77.668500px;}
.h4{height:81.632812px;}
.h6{height:84.535312px;}
.h1b{height:89.820000px;}
.h27{height:93.150000px;}
.h24{height:108.630000px;}
.h23{height:108.720000px;}
.h16{height:115.470000px;}
.h22{height:124.222500px;}
.h26{height:124.230000px;}
.h14{height:130.972500px;}
.h5{height:143.004375px;}
.h20{height:155.250000px;}
.h25{height:170.730000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w28{width:35.818500px;}
.wd{width:46.254000px;}
.w16{width:49.588500px;}
.w3e{width:52.230000px;}
.w21{width:53.098500px;}
.w2{width:53.544000px;}
.w7{width:53.550000px;}
.w24{width:54.900000px;}
.w12{width:57.690000px;}
.w3d{width:58.590000px;}
.w3c{width:59.400000px;}
.w39{width:61.830000px;}
.w1a{width:63.000000px;}
.w1f{width:63.090000px;}
.w1e{width:65.550000px;}
.w38{width:67.500000px;}
.w3f{width:71.460000px;}
.w1b{width:73.740000px;}
.w3b{width:74.160000px;}
.w11{width:82.710000px;}
.w9{width:83.340000px;}
.w2e{width:84.240000px;}
.w2b{width:84.360000px;}
.w2a{width:84.600000px;}
.w35{width:87.930000px;}
.w1c{width:90.630000px;}
.w2d{width:92.430000px;}
.w10{width:93.450000px;}
.w31{width:94.860000px;}
.w30{width:94.980000px;}
.w1d{width:96.570000px;}
.w29{width:98.212500px;}
.w18{width:98.280000px;}
.wa{width:99.810000px;}
.w37{width:99.900000px;}
.w2f{width:105.570000px;}
.w3{width:105.750000px;}
.wb{width:107.580000px;}
.w17{width:110.812500px;}
.w32{width:111.172500px;}
.w25{width:112.230000px;}
.w13{width:114.510000px;}
.w5{width:125.010000px;}
.w26{width:129.900000px;}
.w36{width:132.060000px;}
.w23{width:134.400000px;}
.w33{width:136.350000px;}
.w27{width:138.780000px;}
.w34{width:141.600000px;}
.w15{width:144.300000px;}
.w22{width:153.298500px;}
.w8{width:155.730000px;}
.w4{width:156.720000px;}
.we{width:157.950000px;}
.w3a{width:162.570000px;}
.w14{width:172.620000px;}
.w6{width:174.900000px;}
.w19{width:193.170000px;}
.wf{width:275.340000px;}
.w2c{width:381.990000px;}
.wc{width:587.130000px;}
.w20{width:781.018500px;}
.w0{width:893.970000px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x3b{left:9.898500px;}
.x3d{left:11.098500px;}
.x5b{left:12.418500px;}
.x1b{left:13.860000px;}
.x19{left:16.200000px;}
.x42{left:17.460000px;}
.x2d{left:18.540000px;}
.x18{left:20.790000px;}
.x17{left:22.590000px;}
.x62{left:24.750000px;}
.x12{left:26.280000px;}
.x43{left:28.200000px;}
.x1c{left:29.520000px;}
.x46{left:30.870000px;}
.x29{left:32.940000px;}
.x47{left:34.140000px;}
.x63{left:35.640000px;}
.x2c{left:36.900000px;}
.x26{left:38.790000px;}
.x4a{left:39.808500px;}
.x2a{left:41.130000px;}
.x48{left:42.570000px;}
.x55{left:43.830000px;}
.x1e{left:45.090000px;}
.x27{left:47.160000px;}
.x28{left:49.140000px;}
.x2b{left:51.030000px;}
.x14{left:53.550000px;}
.x3a{left:56.071500px;}
.x59{left:60.870000px;}
.x8{left:63.810000px;}
.x1a{left:77.160000px;}
.x1d{left:83.370000px;}
.x72{left:90.810000px;}
.x5c{left:92.611500px;}
.x3c{left:106.381500px;}
.x53{left:109.891500px;}
.x6{left:112.140000px;}
.x2f{left:117.300000px;}
.x64{left:129.900000px;}
.xf{left:137.100000px;}
.x20{left:153.030000px;}
.x5f{left:158.400000px;}
.x30{left:164.280000px;}
.x65{left:168.060000px;}
.x6a{left:174.270000px;}
.x4c{left:176.610000px;}
.x11{left:191.460000px;}
.x35{left:200.190000px;}
.x21{left:207.300000px;}
.xe{left:211.080000px;}
.x3e{left:217.920000px;}
.x6f{left:234.480000px;}
.x6b{left:236.820000px;}
.x52{left:238.080000px;}
.x70{left:242.220000px;}
.x4{left:244.020000px;}
.x71{left:254.640000px;}
.x4b{left:257.430000px;}
.x37{left:259.320000px;}
.x2e{left:261.480000px;}
.x54{left:263.910000px;}
.x2{left:274.260000px;}
.x5d{left:276.870000px;}
.x7{left:279.390000px;}
.x5a{left:282.720000px;}
.x3{left:290.460000px;}
.xb{left:294.690000px;}
.x13{left:297.930000px;}
.x39{left:303.150000px;}
.x66{left:305.130000px;}
.x3f{left:316.920000px;}
.x31{left:322.950000px;}
.x51{left:325.830000px;}
.x34{left:343.830000px;}
.x36{left:352.020000px;}
.xd{left:356.970000px;}
.x5e{left:361.950000px;}
.x22{left:363.840000px;}
.x38{left:374.550000px;}
.x49{left:383.190000px;}
.x56{left:399.030000px;}
.xa{left:400.920000px;}
.x1f{left:415.770000px;}
.x9{left:418.110000px;}
.xc{left:434.220000px;}
.x1{left:440.610000px;}
.x4e{left:446.550000px;}
.x23{left:447.900000px;}
.x15{left:455.370000px;}
.x6c{left:475.080000px;}
.x5{left:504.960000px;}
.x40{left:510.810000px;}
.x67{left:536.190000px;}
.x24{left:548.430000px;}
.x61{left:553.380000px;}
.x57{left:567.690000px;}
.x41{left:574.530000px;}
.x16{left:581.190000px;}
.x6d{left:594.600000px;}
.x32{left:599.010000px;}
.x4d{left:626.580000px;}
.x4f{left:627.750000px;}
.x6e{left:647.550000px;}
.x44{left:649.080000px;}
.x25{left:656.820000px;}
.x68{left:668.970000px;}
.x33{left:693.180000px;}
.x58{left:698.310000px;}
.x45{left:740.520000px;}
.x60{left:744.660000px;}
.x50{left:758.340000px;}
.x69{left:769.590000px;}
@media print{
.v5{vertical-align:-26.560000pt;}
.v3{vertical-align:-21.440000pt;}
.v4{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.440000pt;}
.v2{vertical-align:26.560000pt;}
.v1{vertical-align:76.160000pt;}
.ls1e{letter-spacing:-0.336000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.304000pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls17{letter-spacing:-0.119467pt;}
.ls14{letter-spacing:-0.112000pt;}
.ls9{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.040533pt;}
.ls1a{letter-spacing:-0.040320pt;}
.ls4{letter-spacing:-0.024533pt;}
.ls18{letter-spacing:-0.019733pt;}
.ls10{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.012480pt;}
.lsd{letter-spacing:0.016000pt;}
.ls19{letter-spacing:0.019520pt;}
.lsf{letter-spacing:0.019733pt;}
.ls16{letter-spacing:0.040533pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.080000pt;}
.ls13{letter-spacing:0.080533pt;}
.ls1b{letter-spacing:0.080640pt;}
.lsa{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.112000pt;}
.ls7{letter-spacing:0.116267pt;}
.ls5{letter-spacing:0.123733pt;}
.ls1d{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.176000pt;}
.ls1c{letter-spacing:0.320000pt;}
.ls12{letter-spacing:73.920000pt;}
.ws6{word-spacing:-18.640000pt;}
.ws3{word-spacing:-18.160000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.ws0{word-spacing:-14.800000pt;}
.ws15{word-spacing:-14.720533pt;}
.ws16{word-spacing:-14.680533pt;}
.ws11{word-spacing:-14.659733pt;}
.ws10{word-spacing:-14.640000pt;}
.ws18{word-spacing:-14.620267pt;}
.ws19{word-spacing:-14.599680pt;}
.wse{word-spacing:-14.599467pt;}
.ws17{word-spacing:-14.520533pt;}
.wsf{word-spacing:-14.480000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.615467pt;}
.ws1c{word-spacing:-12.128000pt;}
.ws7{word-spacing:-12.112000pt;}
.wsb{word-spacing:-12.096000pt;}
.ws12{word-spacing:-12.016000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws13{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.888000pt;}
.ws14{word-spacing:-11.872000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws1d{word-spacing:-11.664000pt;}
.ws1b{word-spacing:-10.640000pt;}
.ws1f{word-spacing:-8.064000pt;}
.ws8{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
.ws20{word-spacing:4.058667pt;}
.ws1e{word-spacing:28.074667pt;}
._1{margin-left:-2.792016pt;}
._0{margin-left:-0.917312pt;}
._3{width:1.168543pt;}
._4{width:2.165371pt;}
._5{width:3.285147pt;}
._6{width:4.506667pt;}
._c{width:5.909392pt;}
._8{width:6.954608pt;}
._7{width:7.920000pt;}
._b{width:9.120000pt;}
._10{width:10.159457pt;}
._e{width:13.066145pt;}
._a{width:15.312000pt;}
._9{width:16.272000pt;}
._2{width:129.442699pt;}
._d{width:923.508364pt;}
._f{width:925.626667pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.440000pt;}
.fsa{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs9{font-size:53.440000pt;}
.fs8{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:2.640000pt;}
.yc9{bottom:2.720000pt;}
.yf4{bottom:2.878667pt;}
.yd3{bottom:2.880000pt;}
.yd9{bottom:2.958667pt;}
.yc2{bottom:2.960000pt;}
.y77{bottom:3.280000pt;}
.y3d{bottom:6.400000pt;}
.y3f{bottom:6.480000pt;}
.ya3{bottom:6.506667pt;}
.y6b{bottom:7.440000pt;}
.y5b{bottom:8.506667pt;}
.yb8{bottom:9.120000pt;}
.yb6{bottom:12.880000pt;}
.y87{bottom:13.120000pt;}
.yb1{bottom:16.480000pt;}
.yd8{bottom:16.718667pt;}
.yc4{bottom:16.720000pt;}
.yc1{bottom:16.746667pt;}
.y76{bottom:20.160000pt;}
.y7d{bottom:20.186667pt;}
.yb5{bottom:26.640000pt;}
.yb4{bottom:27.840000pt;}
.y12a{bottom:28.732000pt;}
.yc8{bottom:30.240000pt;}
.yf3{bottom:30.478667pt;}
.yd2{bottom:30.480000pt;}
.ye1{bottom:30.506667pt;}
.yd7{bottom:30.558667pt;}
.ye5{bottom:30.560000pt;}
.y75{bottom:37.040000pt;}
.yb3{bottom:40.480000pt;}
.ye8{bottom:44.240000pt;}
.yd6{bottom:44.318667pt;}
.yd1{bottom:44.320000pt;}
.ye0{bottom:44.346667pt;}
.y8c{bottom:51.226667pt;}
.yaf{bottom:54.880000pt;}
.yf2{bottom:58.078667pt;}
.yd0{bottom:58.080000pt;}
.ydf{bottom:58.106667pt;}
.yd5{bottom:58.158667pt;}
.ye4{bottom:58.160000pt;}
.y1{bottom:68.106667pt;}
.yae{bottom:68.720000pt;}
.ye7{bottom:71.840000pt;}
.ycf{bottom:71.920000pt;}
.yde{bottom:71.946667pt;}
.yd4{bottom:83.628000pt;}
.yce{bottom:85.680000pt;}
.ydd{bottom:85.706667pt;}
.ye3{bottom:85.760000pt;}
.yf1{bottom:85.948000pt;}
.y81{bottom:89.120000pt;}
.y89{bottom:91.866667pt;}
.y9d{bottom:95.066667pt;}
.ycd{bottom:99.520000pt;}
.ydc{bottom:99.546667pt;}
.y7a{bottom:102.906667pt;}
.y9c{bottom:106.106667pt;}
.y73{bottom:107.546667pt;}
.ycc{bottom:113.280000pt;}
.yec{bottom:113.360000pt;}
.ycb{bottom:127.120000pt;}
.y72{bottom:135.306667pt;}
.y64{bottom:138.106667pt;}
.y23{bottom:139.386667pt;}
.yeb{bottom:140.880000pt;}
.yca{bottom:153.306667pt;}
.y54{bottom:153.546667pt;}
.yf0{bottom:155.626667pt;}
.y71{bottom:162.986667pt;}
.y63{bottom:165.626667pt;}
.y129{bottom:167.466667pt;}
.y53{bottom:174.266667pt;}
.y128{bottom:181.306667pt;}
.y62{bottom:193.546667pt;}
.y52{bottom:194.906667pt;}
.y127{bottom:195.226667pt;}
.y70{bottom:202.506667pt;}
.y61{bottom:208.346667pt;}
.y126{bottom:209.066667pt;}
.yef{bottom:211.466667pt;}
.y51{bottom:215.546667pt;}
.y125{bottom:222.906667pt;}
.y60{bottom:223.066667pt;}
.y6f{bottom:223.226667pt;}
.y50{bottom:236.266667pt;}
.y124{bottom:236.826667pt;}
.y6e{bottom:243.866667pt;}
.y123{bottom:250.666667pt;}
.y5f{bottom:251.626667pt;}
.yee{bottom:253.546667pt;}
.y4f{bottom:256.906667pt;}
.y6d{bottom:264.506667pt;}
.y4e{bottom:277.546667pt;}
.y122{bottom:278.426667pt;}
.y6c{bottom:285.226667pt;}
.yc7{bottom:291.946667pt;}
.y121{bottom:292.266667pt;}
.y4d{bottom:298.266667pt;}
.y6a{bottom:305.866667pt;}
.y120{bottom:306.106667pt;}
.y4c{bottom:318.906667pt;}
.y11f{bottom:320.026667pt;}
.y105{bottom:325.466667pt;}
.y69{bottom:330.426667pt;}
.y11e{bottom:333.866667pt;}
.yc6{bottom:336.906667pt;}
.yed{bottom:336.986667pt;}
.y4b{bottom:339.546667pt;}
.y22{bottom:346.186667pt;}
.y11d{bottom:347.706667pt;}
.y21{bottom:359.946667pt;}
.y4a{bottom:360.266667pt;}
.y11c{bottom:361.626667pt;}
.yc5{bottom:362.426667pt;}
.y9b{bottom:364.986667pt;}
.y68{bottom:371.946667pt;}
.y20{bottom:373.786667pt;}
.y11b{bottom:375.466667pt;}
.y9a{bottom:378.826667pt;}
.y49{bottom:380.906667pt;}
.yc3{bottom:383.066667pt;}
.y1f{bottom:387.546667pt;}
.y11a{bottom:389.306667pt;}
.y99{bottom:389.866667pt;}
.y88{bottom:399.786667pt;}
.y1e{bottom:401.386667pt;}
.y48{bottom:401.546667pt;}
.y119{bottom:403.226667pt;}
.y103{bottom:407.786667pt;}
.yc0{bottom:411.306667pt;}
.y1d{bottom:415.146667pt;}
.y118{bottom:417.066667pt;}
.y47{bottom:422.293333pt;}
.y1c{bottom:429.013333pt;}
.y117{bottom:430.933333pt;}
.ybf{bottom:439.653333pt;}
.y1b{bottom:442.773333pt;}
.y46{bottom:442.933333pt;}
.yea{bottom:448.053333pt;}
.y1a{bottom:456.613333pt;}
.y116{bottom:458.453333pt;}
.ybe{bottom:460.293333pt;}
.y45{bottom:466.533333pt;}
.y19{bottom:470.213333pt;}
.ybd{bottom:480.933333pt;}
.y115{bottom:486.453333pt;}
.y44{bottom:494.213333pt;}
.y114{bottom:500.213333pt;}
.ybc{bottom:501.653333pt;}
.y18{bottom:503.733333pt;}
.y43{bottom:507.813333pt;}
.y113{bottom:514.053333pt;}
.ybb{bottom:522.293333pt;}
.y17{bottom:525.173333pt;}
.y5e{bottom:527.813333pt;}
.y42{bottom:533.573333pt;}
.y16{bottom:539.013333pt;}
.y112{bottom:541.653333pt;}
.yba{bottom:542.933333pt;}
.y15{bottom:552.773333pt;}
.y41{bottom:554.213333pt;}
.y5d{bottom:555.333333pt;}
.y111{bottom:555.413333pt;}
.yb9{bottom:563.653333pt;}
.y14{bottom:566.613333pt;}
.y110{bottom:569.253333pt;}
.y40{bottom:574.933333pt;}
.y13{bottom:580.373333pt;}
.y10f{bottom:583.013333pt;}
.yb7{bottom:584.293333pt;}
.y12{bottom:594.213333pt;}
.y3e{bottom:595.573333pt;}
.y10e{bottom:596.853333pt;}
.y5c{bottom:597.173333pt;}
.ye9{bottom:600.533333pt;}
.yad{bottom:604.933333pt;}
.y11{bottom:607.973333pt;}
.y10d{bottom:610.613333pt;}
.y3c{bottom:616.213333pt;}
.y10{bottom:621.813333pt;}
.y10c{bottom:624.453333pt;}
.yf{bottom:635.573333pt;}
.y10b{bottom:638.213333pt;}
.y3b{bottom:639.813333pt;}
.y104{bottom:641.333333pt;}
.ye{bottom:649.173333pt;}
.y10a{bottom:651.973333pt;}
.yb0{bottom:657.173333pt;}
.y109{bottom:665.813333pt;}
.y3a{bottom:667.573333pt;}
.y108{bottom:679.573333pt;}
.y39{bottom:681.333333pt;}
.y98{bottom:686.853333pt;}
.yac{bottom:688.373333pt;}
.yd{bottom:691.973333pt;}
.y38{bottom:695.173333pt;}
.y67{bottom:695.573333pt;}
.y86{bottom:697.253333pt;}
.ye6{bottom:697.813333pt;}
.y97{bottom:700.613333pt;}
.yc{bottom:705.733333pt;}
.y107{bottom:707.093333pt;}
.y37{bottom:708.933333pt;}
.y66{bottom:709.333333pt;}
.yab{bottom:713.813333pt;}
.y96{bottom:714.373333pt;}
.y80{bottom:717.893333pt;}
.y102{bottom:719.333333pt;}
.yb{bottom:719.573333pt;}
.y36{bottom:722.773333pt;}
.y95{bottom:728.053333pt;}
.yaa{bottom:734.533333pt;}
.y106{bottom:735.093333pt;}
.y65{bottom:737.093333pt;}
.y85{bottom:738.533333pt;}
.y101{bottom:740.053333pt;}
.y94{bottom:741.893333pt;}
.ya{bottom:749.173333pt;}
.y35{bottom:750.213333pt;}
.y93{bottom:755.973333pt;}
.y84{bottom:759.253333pt;}
.y100{bottom:760.693333pt;}
.ya9{bottom:768.853333pt;}
.y92{bottom:769.893333pt;}
.y9{bottom:770.453333pt;}
.y34{bottom:778.213333pt;}
.y83{bottom:779.893333pt;}
.y8{bottom:780.933333pt;}
.yff{bottom:781.333333pt;}
.y91{bottom:783.653333pt;}
.ya8{bottom:789.573333pt;}
.y33{bottom:791.973333pt;}
.ye2{bottom:795.013333pt;}
.y90{bottom:797.493333pt;}
.y82{bottom:800.533333pt;}
.yfe{bottom:802.053333pt;}
.ya7{bottom:810.213333pt;}
.y8f{bottom:811.333333pt;}
.y7{bottom:813.653333pt;}
.y32{bottom:819.493333pt;}
.y79{bottom:821.253333pt;}
.yfd{bottom:822.693333pt;}
.y8e{bottom:825.173333pt;}
.ya6{bottom:830.853333pt;}
.y8d{bottom:836.213333pt;}
.y7f{bottom:841.893333pt;}
.yfc{bottom:843.333333pt;}
.y31{bottom:847.493333pt;}
.y6{bottom:849.973333pt;}
.ya5{bottom:851.573333pt;}
.y30{bottom:861.253333pt;}
.y7e{bottom:862.533333pt;}
.yfb{bottom:864.053333pt;}
.ya4{bottom:872.213333pt;}
.y2f{bottom:875.093333pt;}
.y7c{bottom:883.253333pt;}
.yfa{bottom:884.693333pt;}
.y2e{bottom:888.853333pt;}
.ydb{bottom:892.293333pt;}
.ya2{bottom:892.853333pt;}
.y5a{bottom:894.533333pt;}
.y2d{bottom:902.720000pt;}
.yf9{bottom:905.360000pt;}
.ya1{bottom:913.600000pt;}
.y2c{bottom:916.480000pt;}
.y59{bottom:917.280000pt;}
.y7b{bottom:917.680000pt;}
.y4{bottom:919.200000pt;}
.y5{bottom:923.680000pt;}
.yf8{bottom:926.080000pt;}
.y2b{bottom:930.400000pt;}
.ya0{bottom:934.240000pt;}
.y78{bottom:938.320000pt;}
.y3{bottom:939.840000pt;}
.y58{bottom:940.800000pt;}
.y2a{bottom:944.160000pt;}
.yf7{bottom:946.720000pt;}
.y29{bottom:958.000000pt;}
.y74{bottom:958.960000pt;}
.y57{bottom:968.320000pt;}
.yf6{bottom:970.320000pt;}
.y9f{bottom:971.520000pt;}
.y28{bottom:971.760000pt;}
.y27{bottom:985.600000pt;}
.yf5{bottom:995.760000pt;}
.y56{bottom:996.480000pt;}
.y9e{bottom:999.280000pt;}
.y26{bottom:999.360000pt;}
.yda{bottom:1003.360000pt;}
.y55{bottom:1011.760000pt;}
.y25{bottom:1013.120000pt;}
.y8b{bottom:1027.360000pt;}
.y2{bottom:1029.280000pt;}
.y8a{bottom:1044.240000pt;}
.y24{bottom:1061.040000pt;}
.hd{height:20.000000pt;}
.h19{height:20.020000pt;}
.h12{height:21.040000pt;}
.h11{height:22.020000pt;}
.h1c{height:27.600000pt;}
.h1e{height:27.626667pt;}
.h9{height:31.390625pt;}
.h2b{height:33.328125pt;}
.h1a{height:33.680000pt;}
.h15{height:33.700000pt;}
.h18{height:33.760000pt;}
.h17{height:36.745312pt;}
.h1f{height:41.360000pt;}
.h8{height:47.085938pt;}
.hc{height:47.109375pt;}
.ha{height:48.375000pt;}
.h13{height:50.640000pt;}
.h1d{height:51.600000pt;}
.hf{height:52.448437pt;}
.h2a{height:52.846250pt;}
.h10{height:53.857500pt;}
.hb{height:54.933594pt;}
.h28{height:55.200000pt;}
.h2{height:57.473437pt;}
.he{height:59.017500pt;}
.h7{height:64.292500pt;}
.h3{height:64.500000pt;}
.h29{height:68.958667pt;}
.h21{height:69.038667pt;}
.h4{height:72.562500pt;}
.h6{height:75.142500pt;}
.h1b{height:79.840000pt;}
.h27{height:82.800000pt;}
.h24{height:96.560000pt;}
.h23{height:96.640000pt;}
.h16{height:102.640000pt;}
.h22{height:110.420000pt;}
.h26{height:110.426667pt;}
.h14{height:116.420000pt;}
.h5{height:127.115000pt;}
.h20{height:138.000000pt;}
.h25{height:151.760000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w28{width:31.838667pt;}
.wd{width:41.114667pt;}
.w16{width:44.078667pt;}
.w3e{width:46.426667pt;}
.w21{width:47.198667pt;}
.w2{width:47.594667pt;}
.w7{width:47.600000pt;}
.w24{width:48.800000pt;}
.w12{width:51.280000pt;}
.w3d{width:52.080000pt;}
.w3c{width:52.800000pt;}
.w39{width:54.960000pt;}
.w1a{width:56.000000pt;}
.w1f{width:56.080000pt;}
.w1e{width:58.266667pt;}
.w38{width:60.000000pt;}
.w3f{width:63.520000pt;}
.w1b{width:65.546667pt;}
.w3b{width:65.920000pt;}
.w11{width:73.520000pt;}
.w9{width:74.080000pt;}
.w2e{width:74.880000pt;}
.w2b{width:74.986667pt;}
.w2a{width:75.200000pt;}
.w35{width:78.160000pt;}
.w1c{width:80.560000pt;}
.w2d{width:82.160000pt;}
.w10{width:83.066667pt;}
.w31{width:84.320000pt;}
.w30{width:84.426667pt;}
.w1d{width:85.840000pt;}
.w29{width:87.300000pt;}
.w18{width:87.360000pt;}
.wa{width:88.720000pt;}
.w37{width:88.800000pt;}
.w2f{width:93.840000pt;}
.w3{width:94.000000pt;}
.wb{width:95.626667pt;}
.w17{width:98.500000pt;}
.w32{width:98.820000pt;}
.w25{width:99.760000pt;}
.w13{width:101.786667pt;}
.w5{width:111.120000pt;}
.w26{width:115.466667pt;}
.w36{width:117.386667pt;}
.w23{width:119.466667pt;}
.w33{width:121.200000pt;}
.w27{width:123.360000pt;}
.w34{width:125.866667pt;}
.w15{width:128.266667pt;}
.w22{width:136.265333pt;}
.w8{width:138.426667pt;}
.w4{width:139.306667pt;}
.we{width:140.400000pt;}
.w3a{width:144.506667pt;}
.w14{width:153.440000pt;}
.w6{width:155.466667pt;}
.w19{width:171.706667pt;}
.wf{width:244.746667pt;}
.w2c{width:339.546667pt;}
.wc{width:521.893333pt;}
.w20{width:694.238667pt;}
.w0{width:794.640000pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x3b{left:8.798667pt;}
.x3d{left:9.865333pt;}
.x5b{left:11.038667pt;}
.x1b{left:12.320000pt;}
.x19{left:14.400000pt;}
.x42{left:15.520000pt;}
.x2d{left:16.480000pt;}
.x18{left:18.480000pt;}
.x17{left:20.080000pt;}
.x62{left:22.000000pt;}
.x12{left:23.360000pt;}
.x43{left:25.066667pt;}
.x1c{left:26.240000pt;}
.x46{left:27.440000pt;}
.x29{left:29.280000pt;}
.x47{left:30.346667pt;}
.x63{left:31.680000pt;}
.x2c{left:32.800000pt;}
.x26{left:34.480000pt;}
.x4a{left:35.385333pt;}
.x2a{left:36.560000pt;}
.x48{left:37.840000pt;}
.x55{left:38.960000pt;}
.x1e{left:40.080000pt;}
.x27{left:41.920000pt;}
.x28{left:43.680000pt;}
.x2b{left:45.360000pt;}
.x14{left:47.600000pt;}
.x3a{left:49.841333pt;}
.x59{left:54.106667pt;}
.x8{left:56.720000pt;}
.x1a{left:68.586667pt;}
.x1d{left:74.106667pt;}
.x72{left:80.720000pt;}
.x5c{left:82.321333pt;}
.x3c{left:94.561333pt;}
.x53{left:97.681333pt;}
.x6{left:99.680000pt;}
.x2f{left:104.266667pt;}
.x64{left:115.466667pt;}
.xf{left:121.866667pt;}
.x20{left:136.026667pt;}
.x5f{left:140.800000pt;}
.x30{left:146.026667pt;}
.x65{left:149.386667pt;}
.x6a{left:154.906667pt;}
.x4c{left:156.986667pt;}
.x11{left:170.186667pt;}
.x35{left:177.946667pt;}
.x21{left:184.266667pt;}
.xe{left:187.626667pt;}
.x3e{left:193.706667pt;}
.x6f{left:208.426667pt;}
.x6b{left:210.506667pt;}
.x52{left:211.626667pt;}
.x70{left:215.306667pt;}
.x4{left:216.906667pt;}
.x71{left:226.346667pt;}
.x4b{left:228.826667pt;}
.x37{left:230.506667pt;}
.x2e{left:232.426667pt;}
.x54{left:234.586667pt;}
.x2{left:243.786667pt;}
.x5d{left:246.106667pt;}
.x7{left:248.346667pt;}
.x5a{left:251.306667pt;}
.x3{left:258.186667pt;}
.xb{left:261.946667pt;}
.x13{left:264.826667pt;}
.x39{left:269.466667pt;}
.x66{left:271.226667pt;}
.x3f{left:281.706667pt;}
.x31{left:287.066667pt;}
.x51{left:289.626667pt;}
.x34{left:305.626667pt;}
.x36{left:312.906667pt;}
.xd{left:317.306667pt;}
.x5e{left:321.733333pt;}
.x22{left:323.413333pt;}
.x38{left:332.933333pt;}
.x49{left:340.613333pt;}
.x56{left:354.693333pt;}
.xa{left:356.373333pt;}
.x1f{left:369.573333pt;}
.x9{left:371.653333pt;}
.xc{left:385.973333pt;}
.x1{left:391.653333pt;}
.x4e{left:396.933333pt;}
.x23{left:398.133333pt;}
.x15{left:404.773333pt;}
.x6c{left:422.293333pt;}
.x5{left:448.853333pt;}
.x40{left:454.053333pt;}
.x67{left:476.613333pt;}
.x24{left:487.493333pt;}
.x61{left:491.893333pt;}
.x57{left:504.613333pt;}
.x41{left:510.693333pt;}
.x16{left:516.613333pt;}
.x6d{left:528.533333pt;}
.x32{left:532.453333pt;}
.x4d{left:556.960000pt;}
.x4f{left:558.000000pt;}
.x6e{left:575.600000pt;}
.x44{left:576.960000pt;}
.x25{left:583.840000pt;}
.x68{left:594.640000pt;}
.x33{left:616.160000pt;}
.x58{left:620.720000pt;}
.x45{left:658.240000pt;}
.x60{left:661.920000pt;}
.x50{left:674.080000pt;}
.x69{left:684.080000pt;}
}




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