
    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_e862de45ced8488dedd9e106.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_9d3311d480fefc6d35dceaae.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_dadeaf502cdeeae60db57c23.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fcc9ddcde9cb66f59e3c5042.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_88eda5602bc2c3c55c83f216.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_18dba021b4686e4fa19eb99f.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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v2{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.504000px;}
.lsb{letter-spacing:0.720000px;}
.ls2{letter-spacing:7.505280px;}
.ls9{letter-spacing:10.800000px;}
.ls5{letter-spacing:33.984000px;}
.ls8{letter-spacing:54.840000px;}
.lsc{letter-spacing:54.864000px;}
.ls6{letter-spacing:64.002720px;}
.ls0{letter-spacing:675.540000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws5{word-spacing:-59.760000px;}
.ws2{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.720000px;}
.ws6{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-9.216000px;}
._40{margin-left:-7.128000px;}
._5{margin-left:-6.072000px;}
._3{margin-left:-4.633200px;}
._4{margin-left:-3.542640px;}
._0{margin-left:-1.872000px;}
._1{width:1.152000px;}
._10{width:3.000000px;}
._14{width:4.248000px;}
._d{width:5.832000px;}
._19{width:7.092000px;}
._c{width:8.136000px;}
._b{width:9.288000px;}
._11{width:10.296000px;}
._8{width:11.592000px;}
._9{width:12.672000px;}
._a{width:14.676000px;}
._12{width:16.128000px;}
._1b{width:19.584000px;}
._6{width:21.312000px;}
._7{width:22.608000px;}
._1a{width:23.904000px;}
._1c{width:25.632000px;}
._15{width:26.928000px;}
._16{width:28.008000px;}
._1f{width:29.042400px;}
._e{width:30.888000px;}
._f{width:32.184000px;}
._39{width:34.173600px;}
._1d{width:36.518400px;}
._1e{width:37.610400px;}
._13{width:38.808000px;}
._43{width:41.472000px;}
._42{width:42.552000px;}
._17{width:44.064000px;}
._18{width:45.228000px;}
._3e{width:47.880000px;}
._34{width:54.720000px;}
._32{width:56.160000px;}
._23{width:57.312000px;}
._35{width:63.648000px;}
._36{width:64.728000px;}
._38{width:65.808000px;}
._3c{width:67.392000px;}
._41{width:68.472000px;}
._30{width:69.984000px;}
._31{width:71.280000px;}
._2a{width:72.720000px;}
._26{width:81.864000px;}
._2f{width:88.056000px;}
._28{width:90.216000px;}
._3b{width:92.664000px;}
._22{width:97.344000px;}
._3a{width:100.584000px;}
._33{width:102.744000px;}
._2b{width:107.496000px;}
._27{width:115.200000px;}
._37{width:118.440000px;}
._21{width:121.392000px;}
._24{width:122.976000px;}
._3d{width:134.640000px;}
._29{width:145.094640px;}
._2c{width:150.552000px;}
._20{width:153.936000px;}
._25{width:162.936000px;}
._2d{width:174.384000px;}
._2e{width:206.496000px;}
._3f{width:2156.616000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,204);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:2.880000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.yd3{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.ya0{bottom:14.565000px;}
.y85{bottom:14.580000px;}
.y13f{bottom:14.610000px;}
.y8a{bottom:14.625000px;}
.ya2{bottom:14.745000px;}
.yac{bottom:14.752500px;}
.y93{bottom:14.760000px;}
.yc1{bottom:14.790000px;}
.y12c{bottom:17.445000px;}
.y175{bottom:17.460000px;}
.y114{bottom:21.420000px;}
.ya8{bottom:24.292500px;}
.y120{bottom:30.960000px;}
.y141{bottom:30.990000px;}
.y118{bottom:31.140000px;}
.y12b{bottom:38.865000px;}
.y9f{bottom:45.525000px;}
.y149{bottom:45.540000px;}
.ya7{bottom:45.705000px;}
.yab{bottom:45.706500px;}
.y87{bottom:45.720000px;}
.y92{bottom:45.750000px;}
.y89{bottom:45.765000px;}
.yd6{bottom:48.586500px;}
.y127{bottom:52.380000px;}
.y11f{bottom:52.410000px;}
.y117{bottom:52.560000px;}
.ya4{bottom:55.426500px;}
.y5{bottom:57.420000px;}
.y13c{bottom:59.070000px;}
.y112{bottom:59.220000px;}
.y138{bottom:62.100000px;}
.y9e{bottom:76.665000px;}
.yda{bottom:76.666500px;}
.ydc{bottom:76.680000px;}
.y13e{bottom:76.710000px;}
.yaa{bottom:76.846500px;}
.y9a{bottom:76.860000px;}
.yd2{bottom:76.890000px;}
.yb7{bottom:76.905000px;}
.y4{bottom:77.256000px;}
.yd9{bottom:79.546500px;}
.ya5{bottom:83.506500px;}
.y137{bottom:83.520000px;}
.y13b{bottom:90.210000px;}
.y14c{bottom:93.045000px;}
.yc5{bottom:93.240000px;}
.y134{bottom:93.285000px;}
.y9d{bottom:107.625000px;}
.y14e{bottom:107.805000px;}
.yd7{bottom:107.806500px;}
.y99{bottom:107.820000px;}
.yd1{bottom:107.850000px;}
.yb6{bottom:107.865000px;}
.y17e{bottom:115.056000px;}
.y27{bottom:116.856000px;}
.ya3{bottom:117.583500px;}
.ya9{bottom:121.003500px;}
.y81{bottom:124.056000px;}
.yba{bottom:124.200000px;}
.yce{bottom:124.230000px;}
.yb1{bottom:124.245000px;}
.y48{bottom:124.956000px;}
.yd5{bottom:131.443500px;}
.y150{bottom:137.736000px;}
.ybf{bottom:138.780000px;}
.y9c{bottom:138.810000px;}
.y98{bottom:138.960000px;}
.yc7{bottom:138.990000px;}
.yb5{bottom:139.005000px;}
.y96{bottom:141.840000px;}
.ycb{bottom:141.870000px;}
.y10f{bottom:142.596000px;}
.y58{bottom:144.216000px;}
.y17d{bottom:146.016000px;}
.y26{bottom:147.996000px;}
.y191{bottom:151.410000px;}
.ya6{bottom:152.145000px;}
.yc3{bottom:152.490000px;}
.ybd{bottom:155.160000px;}
.y80{bottom:155.190000px;}
.y47{bottom:156.090000px;}
.yf7{bottom:168.330000px;}
.y97{bottom:169.920000px;}
.yd0{bottom:169.950000px;}
.yb4{bottom:169.965000px;}
.y57{bottom:175.170000px;}
.y17c{bottom:177.150000px;}
.y25{bottom:178.590000px;}
.y14f{bottom:181.110000px;}
.y190{bottom:182.370000px;}
.ya1{bottom:183.105000px;}
.ybb{bottom:183.420000px;}
.ycc{bottom:183.450000px;}
.yb2{bottom:183.465000px;}
.y7f{bottom:186.150000px;}
.y46{bottom:187.050000px;}
.y12e{bottom:187.950000px;}
.yd4{bottom:190.125000px;}
.y14b{bottom:198.405000px;}
.yf6{bottom:199.650000px;}
.y56{bottom:206.310000px;}
.y14d{bottom:208.485000px;}
.y17b{bottom:209.370000px;}
.y24{bottom:209.730000px;}
.y7e{bottom:217.110000px;}
.y45{bottom:218.190000px;}
.y9b{bottom:218.385000px;}
.yd8{bottom:221.265000px;}
.y18f{bottom:225.030000px;}
.y163{bottom:227.550000px;}
.yf5{bottom:230.610000px;}
.y12d{bottom:230.970000px;}
.y55{bottom:237.270000px;}
.y17a{bottom:240.510000px;}
.y23{bottom:241.050000px;}
.y7d{bottom:248.250000px;}
.y12a{bottom:248.445000px;}
.y44{bottom:249.150000px;}
.yca{bottom:256.365000px;}
.yf4{bottom:261.750000px;}
.ycf{bottom:266.445000px;}
.y54{bottom:268.410000px;}
.y18e{bottom:268.590000px;}
.y162{bottom:270.930000px;}
.y179{bottom:271.470000px;}
.y22{bottom:272.010000px;}
.y43{bottom:280.110000px;}
.y1a6{bottom:283.350000px;}
.y10e{bottom:290.910000px;}
.yf3{bottom:292.710000px;}
.y53{bottom:299.370000px;}
.y18d{bottom:299.550000px;}
.y7c{bottom:300.270000px;}
.y14a{bottom:301.545000px;}
.y161{bottom:301.890000px;}
.y21{bottom:303.150000px;}
.y129{bottom:307.125000px;}
.y42{bottom:311.250000px;}
.y178{bottom:315.930000px;}
.yf2{bottom:323.850000px;}
.y1a5{bottom:326.370000px;}
.y6b{bottom:330.555000px;}
.y7b{bottom:331.455000px;}
.y160{bottom:333.075000px;}
.y20{bottom:333.795000px;}
.y10d{bottom:334.335000px;}
.y146{bottom:336.855000px;}
.y41{bottom:342.255000px;}
.y126{bottom:342.435000px;}
.y147{bottom:346.935000px;}
.y52{bottom:351.435000px;}
.yf1{bottom:354.855000px;}
.y6a{bottom:361.515000px;}
.y7a{bottom:362.415000px;}
.y1f{bottom:365.295000px;}
.y1a4{bottom:369.435000px;}
.y40{bottom:373.035000px;}
.y95{bottom:374.295000px;}
.y148{bottom:378.075000px;}
.y128{bottom:383.475000px;}
.y18c{bottom:385.635000px;}
.yf0{bottom:385.995000px;}
.ycd{bottom:390.675000px;}
.y79{bottom:393.555000px;}
.y1e{bottom:396.255000px;}
.y10c{bottom:396.435000px;}
.y51{bottom:403.455000px;}
.y3f{bottom:403.995000px;}
.yc9{bottom:408.315000px;}
.y145{bottom:409.035000px;}
.y69{bottom:413.175000px;}
.y125{bottom:414.615000px;}
.y18b{bottom:416.775000px;}
.yef{bottom:416.955000px;}
.yc8{bottom:418.395000px;}
.y177{bottom:420.735000px;}
.y1a3{bottom:421.455000px;}
.y78{bottom:424.515000px;}
.y1d{bottom:427.395000px;}
.y50{bottom:434.595000px;}
.y3e{bottom:435.495000px;}
.y10b{bottom:439.095000px;}
.y15f{bottom:440.355000px;}
.y143{bottom:444.135000px;}
.yee{bottom:448.095000px;}
.y123{bottom:449.715000px;}
.y1a2{bottom:452.595000px;}
.y144{bottom:454.395000px;}
.y77{bottom:455.655000px;}
.yc2{bottom:456.915000px;}
.y1c{bottom:458.355000px;}
.y18a{bottom:459.435000px;}
.y176{bottom:463.755000px;}
.y4f{bottom:465.555000px;}
.y3d{bottom:466.455000px;}
.yc6{bottom:466.995000px;}
.yed{bottom:479.055000px;}
.y174{bottom:481.215000px;}
.y10a{bottom:482.475000px;}
.y1a1{bottom:483.555000px;}
.y15e{bottom:483.735000px;}
.y76{bottom:486.255000px;}
.y1b{bottom:489.495000px;}
.y124{bottom:490.935000px;}
.y4e{bottom:496.695000px;}
.y3c{bottom:497.595000px;}
.y189{bottom:502.815000px;}
.y173{bottom:508.935000px;}
.yec{bottom:510.195000px;}
.y109{bottom:513.615000px;}
.y1a0{bottom:514.695000px;}
.y15d{bottom:514.875000px;}
.y75{bottom:517.395000px;}
.y1a{bottom:520.455000px;}
.y122{bottom:521.895000px;}
.y94{bottom:526.215000px;}
.y68{bottom:527.655000px;}
.y3b{bottom:528.555000px;}
.y188{bottom:533.955000px;}
.yeb{bottom:541.155000px;}
.y171{bottom:544.035000px;}
.y108{bottom:544.575000px;}
.y19f{bottom:545.655000px;}
.y15c{bottom:545.835000px;}
.y142{bottom:547.455000px;}
.y4d{bottom:548.715000px;}
.y19{bottom:551.595000px;}
.y172{bottom:554.115000px;}
.y11e{bottom:557.175000px;}
.y67{bottom:558.795000px;}
.y3a{bottom:559.695000px;}
.yc4{bottom:560.235000px;}
.y91{bottom:561.315000px;}
.yea{bottom:572.295000px;}
.y107{bottom:575.715000px;}
.y187{bottom:576.615000px;}
.y19e{bottom:576.795000px;}
.y15b{bottom:576.975000px;}
.y4c{bottom:579.855000px;}
.y18{bottom:582.555000px;}
.y13a{bottom:582.735000px;}
.y170{bottom:585.255000px;}
.y66{bottom:589.755000px;}
.y39{bottom:590.655000px;}
.yc0{bottom:591.195000px;}
.y13d{bottom:592.815000px;}
.y121{bottom:598.425000px;}
.ye9{bottom:603.285000px;}
.y19d{bottom:607.785000px;}
.y15a{bottom:607.965000px;}
.y4b{bottom:610.845000px;}
.y17{bottom:613.725000px;}
.y106{bottom:618.405000px;}
.y186{bottom:620.025000px;}
.y16f{bottom:620.385000px;}
.y65{bottom:620.925000px;}
.y38{bottom:621.825000px;}
.y140{bottom:623.805000px;}
.yb9{bottom:626.505000px;}
.y11d{bottom:629.385000px;}
.y16e{bottom:630.645000px;}
.ye8{bottom:634.425000px;}
.ybe{bottom:636.585000px;}
.y90{bottom:638.565000px;}
.y19c{bottom:638.925000px;}
.y4a{bottom:641.805000px;}
.y16{bottom:644.685000px;}
.y185{bottom:650.985000px;}
.y64{bottom:651.885000px;}
.y159{bottom:652.065000px;}
.y37{bottom:652.785000px;}
.y105{bottom:661.425000px;}
.y11b{bottom:664.485000px;}
.ye7{bottom:665.025000px;}
.y16d{bottom:665.745000px;}
.y8f{bottom:669.525000px;}
.y19b{bottom:669.885000px;}
.y74{bottom:672.945000px;}
.y15{bottom:675.825000px;}
.y63{bottom:683.025000px;}
.y36{bottom:683.925000px;}
.y136{bottom:690.045000px;}
.y49{bottom:693.465000px;}
.y184{bottom:693.825000px;}
.y158{bottom:695.445000px;}
.ye6{bottom:696.525000px;}
.y139{bottom:700.125000px;}
.y8e{bottom:701.025000px;}
.y73{bottom:703.905000px;}
.y104{bottom:704.445000px;}
.y11c{bottom:705.705000px;}
.y14{bottom:706.785000px;}
.y16c{bottom:706.965000px;}
.y62{bottom:713.985000px;}
.y35{bottom:714.885000px;}
.ye5{bottom:727.485000px;}
.y8d{bottom:731.985000px;}
.y72{bottom:735.045000px;}
.y11a{bottom:736.845000px;}
.y183{bottom:737.205000px;}
.y13{bottom:737.925000px;}
.y157{bottom:738.465000px;}
.y16b{bottom:742.065000px;}
.y61{bottom:744.765000px;}
.y34{bottom:746.025000px;}
.y103{bottom:747.825000px;}
.ye4{bottom:758.625000px;}
.yb8{bottom:760.785000px;}
.y19a{bottom:763.125000px;}
.y71{bottom:766.005000px;}
.y182{bottom:768.165000px;}
.y12{bottom:768.885000px;}
.y156{bottom:769.425000px;}
.y116{bottom:771.945000px;}
.y60{bottom:776.085000px;}
.y33{bottom:776.985000px;}
.y102{bottom:778.965000px;}
.y8c{bottom:784.005000px;}
.ye3{bottom:789.225000px;}
.ybc{bottom:791.745000px;}
.y135{bottom:793.365000px;}
.y199{bottom:794.085000px;}
.y70{bottom:797.145000px;}
.y11{bottom:800.025000px;}
.y16a{bottom:800.205000px;}
.y155{bottom:800.565000px;}
.y5f{bottom:807.225000px;}
.y32{bottom:808.125000px;}
.y101{bottom:809.925000px;}
.y181{bottom:810.825000px;}
.y119{bottom:813.165000px;}
.ye2{bottom:820.365000px;}
.y198{bottom:825.225000px;}
.yb0{bottom:827.025000px;}
.y6f{bottom:828.105000px;}
.y131{bottom:828.465000px;}
.y10{bottom:830.985000px;}
.y154{bottom:831.705000px;}
.y8b{bottom:836.205000px;}
.yb3{bottom:837.105000px;}
.y5e{bottom:838.185000px;}
.y132{bottom:838.545000px;}
.y31{bottom:839.085000px;}
.y169{bottom:843.585000px;}
.y115{bottom:844.125000px;}
.ye1{bottom:851.325000px;}
.y88{bottom:853.305000px;}
.y100{bottom:854.385000px;}
.y197{bottom:856.185000px;}
.y6e{bottom:859.245000px;}
.yf{bottom:861.765000px;}
.y153{bottom:863.970000px;}
.y5d{bottom:869.190000px;}
.y30{bottom:870.270000px;}
.y168{bottom:874.770000px;}
.y111{bottom:879.450000px;}
.y196{bottom:887.370000px;}
.y6d{bottom:890.250000px;}
.ye0{bottom:894.390000px;}
.y152{bottom:895.110000px;}
.ye{bottom:896.190000px;}
.yff{bottom:897.450000px;}
.y2f{bottom:901.230000px;}
.y167{bottom:905.730000px;}
.y86{bottom:916.170000px;}
.y195{bottom:918.330000px;}
.yd{bottom:918.870000px;}
.y113{bottom:920.490000px;}
.y5c{bottom:921.390000px;}
.yfe{bottom:928.410000px;}
.y133{bottom:931.830000px;}
.y2e{bottom:932.370000px;}
.ydf{bottom:937.950000px;}
.y166{bottom:938.130000px;}
.y151{bottom:939.030000px;}
.y6c{bottom:942.270000px;}
.yc{bottom:949.470000px;}
.y5b{bottom:952.350000px;}
.yfd{bottom:959.550000px;}
.yaf{bottom:961.350000px;}
.y130{bottom:962.790000px;}
.y2d{bottom:963.330000px;}
.yb{bottom:963.510000px;}
.y165{bottom:969.090000px;}
.y84{bottom:978.990000px;}
.yde{bottom:980.970000px;}
.y110{bottom:982.050000px;}
.y5a{bottom:983.310000px;}
.yfc{bottom:991.770000px;}
.ya{bottom:994.110000px;}
.y2c{bottom:994.470000px;}
.y12f{bottom:998.070000px;}
.y194{bottom:1001.130000px;}
.y164{bottom:1013.010000px;}
.y9{bottom:1020.030000px;}
.yfb{bottom:1022.910000px;}
.ydd{bottom:1023.990000px;}
.y2b{bottom:1025.430000px;}
.yae{bottom:1027.590000px;}
.y59{bottom:1035.510000px;}
.yad{bottom:1037.670000px;}
.ydb{bottom:1041.090000px;}
.y193{bottom:1044.510000px;}
.yfa{bottom:1053.870000px;}
.y180{bottom:1055.130000px;}
.y8{bottom:1055.310000px;}
.y2a{bottom:1056.570000px;}
.y192{bottom:1075.470000px;}
.y7{bottom:1081.410000px;}
.yf9{bottom:1086.270000px;}
.y83{bottom:1087.170000px;}
.y29{bottom:1087.530000px;}
.yf8{bottom:1117.230000px;}
.y17f{bottom:1117.410000px;}
.y82{bottom:1118.310000px;}
.y6{bottom:1118.490000px;}
.y28{bottom:1118.670000px;}
.y3{bottom:1152.180000px;}
.y2{bottom:1171.980000px;}
.y1{bottom:1192.320000px;}
.h10{height:2.826563px;}
.hb{height:30.945000px;}
.h2a{height:30.960000px;}
.h3b{height:30.990000px;}
.h12{height:31.125000px;}
.h1b{height:31.140000px;}
.h2e{height:31.161000px;}
.h28{height:31.162500px;}
.h1d{height:31.170000px;}
.h8{height:33.683203px;}
.h20{height:44.445000px;}
.h3a{height:44.640000px;}
.h9{height:50.273438px;}
.h38{height:50.800781px;}
.h6{height:59.436914px;}
.h25{height:61.423863px;}
.h35{height:61.905000px;}
.hc{height:62.085000px;}
.h19{height:62.100000px;}
.hd{height:62.122500px;}
.he{height:62.130000px;}
.h4{height:66.757500px;}
.h5{height:68.084282px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h26{height:74.004654px;}
.ha{height:74.953125px;}
.h27{height:75.585000px;}
.h39{height:75.600000px;}
.h3c{height:75.630000px;}
.h7{height:84.898125px;}
.h34{height:93.045000px;}
.h2f{height:93.081000px;}
.h24{height:93.090000px;}
.h14{height:93.232500px;}
.h15{height:93.270000px;}
.h13{height:99.892500px;}
.h2d{height:106.545000px;}
.h16{height:106.590000px;}
.h2c{height:106.725000px;}
.h2b{height:106.740000px;}
.h29{height:106.762500px;}
.h33{height:124.185000px;}
.h23{height:124.192500px;}
.h31{height:124.200000px;}
.h37{height:124.221000px;}
.h32{height:137.685000px;}
.h30{height:137.700000px;}
.h36{height:137.721000px;}
.h11{height:155.175000px;}
.h1f{height:155.370000px;}
.h1e{height:168.870000px;}
.hf{height:186.285000px;}
.h1c{height:186.300000px;}
.h22{height:186.315000px;}
.h18{height:186.330000px;}
.h1a{height:199.800000px;}
.h21{height:199.815000px;}
.h17{height:199.830000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1d{width:44.089500px;}
.w2f{width:50.209500px;}
.w21{width:80.089500px;}
.w9{width:82.609500px;}
.w1b{width:82.836000px;}
.w11{width:85.849500px;}
.wa{width:86.749500px;}
.w12{width:92.509500px;}
.w10{width:92.689500px;}
.we{width:100.249500px;}
.w5{width:105.861000px;}
.w1f{width:109.609500px;}
.w3a{width:111.622500px;}
.w13{width:118.821000px;}
.w33{width:118.830000px;}
.w2a{width:119.182500px;}
.w23{width:120.049500px;}
.w4{width:120.229500px;}
.w22{width:121.716000px;}
.w32{width:123.682500px;}
.w2d{width:126.202500px;}
.wb{width:126.216000px;}
.w2e{width:127.830000px;}
.wd{width:130.530000px;}
.wf{width:132.681000px;}
.w14{width:135.030000px;}
.w1a{width:136.642500px;}
.w30{width:138.810000px;}
.wc{width:142.221000px;}
.w6{width:146.016000px;}
.w25{width:146.722500px;}
.w8{width:150.510000px;}
.w20{width:152.310000px;}
.w16{width:152.850000px;}
.w36{width:154.639500px;}
.w18{width:154.830000px;}
.w7{width:162.195000px;}
.w2c{width:163.830000px;}
.w38{width:166.699500px;}
.w26{width:173.730000px;}
.w24{width:174.810000px;}
.w31{width:175.699500px;}
.w29{width:183.810000px;}
.w3b{width:203.239500px;}
.w1e{width:210.270000px;}
.w1c{width:210.630000px;}
.w27{width:219.799500px;}
.w15{width:230.239500px;}
.w17{width:230.250000px;}
.w19{width:230.610000px;}
.w2b{width:235.875000px;}
.w28{width:255.675000px;}
.w2{width:267.859500px;}
.w34{width:273.304500px;}
.w39{width:356.280000px;}
.w37{width:366.900000px;}
.w3c{width:371.220000px;}
.w35{width:386.700000px;}
.w3{width:417.885000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:1.069500px;}
.xf{left:7.729500px;}
.x23{left:61.723500px;}
.x1d{left:100.306500px;}
.xe{left:105.166500px;}
.x5{left:108.036000px;}
.x22{left:110.386500px;}
.x16{left:115.246500px;}
.x7{left:118.296000px;}
.xa{left:122.796000px;}
.x24{left:132.166500px;}
.xc{left:135.036000px;}
.x27{left:142.246500px;}
.xd{left:162.030000px;}
.x2a{left:189.030000px;}
.x2{left:226.830000px;}
.x3{left:292.575000px;}
.x9{left:300.135000px;}
.x1f{left:331.275000px;}
.x13{left:332.715000px;}
.x1e{left:341.355000px;}
.x18{left:342.615000px;}
.x1{left:351.075000px;}
.x25{left:352.695000px;}
.x28{left:362.595000px;}
.x10{left:373.755000px;}
.xb{left:383.115000px;}
.x8{left:389.775000px;}
.x2b{left:406.200000px;}
.x2d{left:413.940000px;}
.x2c{left:416.100000px;}
.x1c{left:433.005000px;}
.x4{left:437.505000px;}
.x6{left:446.505000px;}
.x14{left:479.460000px;}
.x19{left:489.540000px;}
.x11{left:526.785000px;}
.x21{left:562.290000px;}
.x20{left:572.370000px;}
.x26{left:609.090000px;}
.x29{left:619.170000px;}
.x15{left:642.390000px;}
.x1b{left:650.130000px;}
.x1a{left:652.470000px;}
.x12{left:718.350000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.448000pt;}
.lsb{letter-spacing:0.640000pt;}
.ls2{letter-spacing:6.671360pt;}
.ls9{letter-spacing:9.600000pt;}
.ls5{letter-spacing:30.208000pt;}
.ls8{letter-spacing:48.746667pt;}
.lsc{letter-spacing:48.768000pt;}
.ls6{letter-spacing:56.891307pt;}
.ls0{letter-spacing:600.480000pt;}
.ws7{word-spacing:-64.000000pt;}
.ws5{word-spacing:-53.120000pt;}
.ws2{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.640000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-8.192000pt;}
._40{margin-left:-6.336000pt;}
._5{margin-left:-5.397333pt;}
._3{margin-left:-4.118400pt;}
._4{margin-left:-3.149013pt;}
._0{margin-left:-1.664000pt;}
._1{width:1.024000pt;}
._10{width:2.666667pt;}
._14{width:3.776000pt;}
._d{width:5.184000pt;}
._19{width:6.304000pt;}
._c{width:7.232000pt;}
._b{width:8.256000pt;}
._11{width:9.152000pt;}
._8{width:10.304000pt;}
._9{width:11.264000pt;}
._a{width:13.045333pt;}
._12{width:14.336000pt;}
._1b{width:17.408000pt;}
._6{width:18.944000pt;}
._7{width:20.096000pt;}
._1a{width:21.248000pt;}
._1c{width:22.784000pt;}
._15{width:23.936000pt;}
._16{width:24.896000pt;}
._1f{width:25.815467pt;}
._e{width:27.456000pt;}
._f{width:28.608000pt;}
._39{width:30.376533pt;}
._1d{width:32.460800pt;}
._1e{width:33.431467pt;}
._13{width:34.496000pt;}
._43{width:36.864000pt;}
._42{width:37.824000pt;}
._17{width:39.168000pt;}
._18{width:40.202667pt;}
._3e{width:42.560000pt;}
._34{width:48.640000pt;}
._32{width:49.920000pt;}
._23{width:50.944000pt;}
._35{width:56.576000pt;}
._36{width:57.536000pt;}
._38{width:58.496000pt;}
._3c{width:59.904000pt;}
._41{width:60.864000pt;}
._30{width:62.208000pt;}
._31{width:63.360000pt;}
._2a{width:64.640000pt;}
._26{width:72.768000pt;}
._2f{width:78.272000pt;}
._28{width:80.192000pt;}
._3b{width:82.368000pt;}
._22{width:86.528000pt;}
._3a{width:89.408000pt;}
._33{width:91.328000pt;}
._2b{width:95.552000pt;}
._27{width:102.400000pt;}
._37{width:105.280000pt;}
._21{width:107.904000pt;}
._24{width:109.312000pt;}
._3d{width:119.680000pt;}
._29{width:128.973013pt;}
._2c{width:133.824000pt;}
._20{width:136.832000pt;}
._25{width:144.832000pt;}
._2d{width:155.008000pt;}
._2e{width:183.552000pt;}
._3f{width:1916.992000pt;}
.fs5{font-size:2.560000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.yd3{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:12.946667pt;}
.y85{bottom:12.960000pt;}
.y13f{bottom:12.986667pt;}
.y8a{bottom:13.000000pt;}
.ya2{bottom:13.106667pt;}
.yac{bottom:13.113333pt;}
.y93{bottom:13.120000pt;}
.yc1{bottom:13.146667pt;}
.y12c{bottom:15.506667pt;}
.y175{bottom:15.520000pt;}
.y114{bottom:19.040000pt;}
.ya8{bottom:21.593333pt;}
.y120{bottom:27.520000pt;}
.y141{bottom:27.546667pt;}
.y118{bottom:27.680000pt;}
.y12b{bottom:34.546667pt;}
.y9f{bottom:40.466667pt;}
.y149{bottom:40.480000pt;}
.ya7{bottom:40.626667pt;}
.yab{bottom:40.628000pt;}
.y87{bottom:40.640000pt;}
.y92{bottom:40.666667pt;}
.y89{bottom:40.680000pt;}
.yd6{bottom:43.188000pt;}
.y127{bottom:46.560000pt;}
.y11f{bottom:46.586667pt;}
.y117{bottom:46.720000pt;}
.ya4{bottom:49.268000pt;}
.y5{bottom:51.040000pt;}
.y13c{bottom:52.506667pt;}
.y112{bottom:52.640000pt;}
.y138{bottom:55.200000pt;}
.y9e{bottom:68.146667pt;}
.yda{bottom:68.148000pt;}
.ydc{bottom:68.160000pt;}
.y13e{bottom:68.186667pt;}
.yaa{bottom:68.308000pt;}
.y9a{bottom:68.320000pt;}
.yd2{bottom:68.346667pt;}
.yb7{bottom:68.360000pt;}
.y4{bottom:68.672000pt;}
.yd9{bottom:70.708000pt;}
.ya5{bottom:74.228000pt;}
.y137{bottom:74.240000pt;}
.y13b{bottom:80.186667pt;}
.y14c{bottom:82.706667pt;}
.yc5{bottom:82.880000pt;}
.y134{bottom:82.920000pt;}
.y9d{bottom:95.666667pt;}
.y14e{bottom:95.826667pt;}
.yd7{bottom:95.828000pt;}
.y99{bottom:95.840000pt;}
.yd1{bottom:95.866667pt;}
.yb6{bottom:95.880000pt;}
.y17e{bottom:102.272000pt;}
.y27{bottom:103.872000pt;}
.ya3{bottom:104.518667pt;}
.ya9{bottom:107.558667pt;}
.y81{bottom:110.272000pt;}
.yba{bottom:110.400000pt;}
.yce{bottom:110.426667pt;}
.yb1{bottom:110.440000pt;}
.y48{bottom:111.072000pt;}
.yd5{bottom:116.838667pt;}
.y150{bottom:122.432000pt;}
.ybf{bottom:123.360000pt;}
.y9c{bottom:123.386667pt;}
.y98{bottom:123.520000pt;}
.yc7{bottom:123.546667pt;}
.yb5{bottom:123.560000pt;}
.y96{bottom:126.080000pt;}
.ycb{bottom:126.106667pt;}
.y10f{bottom:126.752000pt;}
.y58{bottom:128.192000pt;}
.y17d{bottom:129.792000pt;}
.y26{bottom:131.552000pt;}
.y191{bottom:134.586667pt;}
.ya6{bottom:135.240000pt;}
.yc3{bottom:135.546667pt;}
.ybd{bottom:137.920000pt;}
.y80{bottom:137.946667pt;}
.y47{bottom:138.746667pt;}
.yf7{bottom:149.626667pt;}
.y97{bottom:151.040000pt;}
.yd0{bottom:151.066667pt;}
.yb4{bottom:151.080000pt;}
.y57{bottom:155.706667pt;}
.y17c{bottom:157.466667pt;}
.y25{bottom:158.746667pt;}
.y14f{bottom:160.986667pt;}
.y190{bottom:162.106667pt;}
.ya1{bottom:162.760000pt;}
.ybb{bottom:163.040000pt;}
.ycc{bottom:163.066667pt;}
.yb2{bottom:163.080000pt;}
.y7f{bottom:165.466667pt;}
.y46{bottom:166.266667pt;}
.y12e{bottom:167.066667pt;}
.yd4{bottom:169.000000pt;}
.y14b{bottom:176.360000pt;}
.yf6{bottom:177.466667pt;}
.y56{bottom:183.386667pt;}
.y14d{bottom:185.320000pt;}
.y17b{bottom:186.106667pt;}
.y24{bottom:186.426667pt;}
.y7e{bottom:192.986667pt;}
.y45{bottom:193.946667pt;}
.y9b{bottom:194.120000pt;}
.yd8{bottom:196.680000pt;}
.y18f{bottom:200.026667pt;}
.y163{bottom:202.266667pt;}
.yf5{bottom:204.986667pt;}
.y12d{bottom:205.306667pt;}
.y55{bottom:210.906667pt;}
.y17a{bottom:213.786667pt;}
.y23{bottom:214.266667pt;}
.y7d{bottom:220.666667pt;}
.y12a{bottom:220.840000pt;}
.y44{bottom:221.466667pt;}
.yca{bottom:227.880000pt;}
.yf4{bottom:232.666667pt;}
.ycf{bottom:236.840000pt;}
.y54{bottom:238.586667pt;}
.y18e{bottom:238.746667pt;}
.y162{bottom:240.826667pt;}
.y179{bottom:241.306667pt;}
.y22{bottom:241.786667pt;}
.y43{bottom:248.986667pt;}
.y1a6{bottom:251.866667pt;}
.y10e{bottom:258.586667pt;}
.yf3{bottom:260.186667pt;}
.y53{bottom:266.106667pt;}
.y18d{bottom:266.266667pt;}
.y7c{bottom:266.906667pt;}
.y14a{bottom:268.040000pt;}
.y161{bottom:268.346667pt;}
.y21{bottom:269.466667pt;}
.y129{bottom:273.000000pt;}
.y42{bottom:276.666667pt;}
.y178{bottom:280.826667pt;}
.yf2{bottom:287.866667pt;}
.y1a5{bottom:290.106667pt;}
.y6b{bottom:293.826667pt;}
.y7b{bottom:294.626667pt;}
.y160{bottom:296.066667pt;}
.y20{bottom:296.706667pt;}
.y10d{bottom:297.186667pt;}
.y146{bottom:299.426667pt;}
.y41{bottom:304.226667pt;}
.y126{bottom:304.386667pt;}
.y147{bottom:308.386667pt;}
.y52{bottom:312.386667pt;}
.yf1{bottom:315.426667pt;}
.y6a{bottom:321.346667pt;}
.y7a{bottom:322.146667pt;}
.y1f{bottom:324.706667pt;}
.y1a4{bottom:328.386667pt;}
.y40{bottom:331.586667pt;}
.y95{bottom:332.706667pt;}
.y148{bottom:336.066667pt;}
.y128{bottom:340.866667pt;}
.y18c{bottom:342.786667pt;}
.yf0{bottom:343.106667pt;}
.ycd{bottom:347.266667pt;}
.y79{bottom:349.826667pt;}
.y1e{bottom:352.226667pt;}
.y10c{bottom:352.386667pt;}
.y51{bottom:358.626667pt;}
.y3f{bottom:359.106667pt;}
.yc9{bottom:362.946667pt;}
.y145{bottom:363.586667pt;}
.y69{bottom:367.266667pt;}
.y125{bottom:368.546667pt;}
.y18b{bottom:370.466667pt;}
.yef{bottom:370.626667pt;}
.yc8{bottom:371.906667pt;}
.y177{bottom:373.986667pt;}
.y1a3{bottom:374.626667pt;}
.y78{bottom:377.346667pt;}
.y1d{bottom:379.906667pt;}
.y50{bottom:386.306667pt;}
.y3e{bottom:387.106667pt;}
.y10b{bottom:390.306667pt;}
.y15f{bottom:391.426667pt;}
.y143{bottom:394.786667pt;}
.yee{bottom:398.306667pt;}
.y123{bottom:399.746667pt;}
.y1a2{bottom:402.306667pt;}
.y144{bottom:403.906667pt;}
.y77{bottom:405.026667pt;}
.yc2{bottom:406.146667pt;}
.y1c{bottom:407.426667pt;}
.y18a{bottom:408.386667pt;}
.y176{bottom:412.226667pt;}
.y4f{bottom:413.826667pt;}
.y3d{bottom:414.626667pt;}
.yc6{bottom:415.106667pt;}
.yed{bottom:425.826667pt;}
.y174{bottom:427.746667pt;}
.y10a{bottom:428.866667pt;}
.y1a1{bottom:429.826667pt;}
.y15e{bottom:429.986667pt;}
.y76{bottom:432.226667pt;}
.y1b{bottom:435.106667pt;}
.y124{bottom:436.386667pt;}
.y4e{bottom:441.506667pt;}
.y3c{bottom:442.306667pt;}
.y189{bottom:446.946667pt;}
.y173{bottom:452.386667pt;}
.yec{bottom:453.506667pt;}
.y109{bottom:456.546667pt;}
.y1a0{bottom:457.506667pt;}
.y15d{bottom:457.666667pt;}
.y75{bottom:459.906667pt;}
.y1a{bottom:462.626667pt;}
.y122{bottom:463.906667pt;}
.y94{bottom:467.746667pt;}
.y68{bottom:469.026667pt;}
.y3b{bottom:469.826667pt;}
.y188{bottom:474.626667pt;}
.yeb{bottom:481.026667pt;}
.y171{bottom:483.586667pt;}
.y108{bottom:484.066667pt;}
.y19f{bottom:485.026667pt;}
.y15c{bottom:485.186667pt;}
.y142{bottom:486.626667pt;}
.y4d{bottom:487.746667pt;}
.y19{bottom:490.306667pt;}
.y172{bottom:492.546667pt;}
.y11e{bottom:495.266667pt;}
.y67{bottom:496.706667pt;}
.y3a{bottom:497.506667pt;}
.yc4{bottom:497.986667pt;}
.y91{bottom:498.946667pt;}
.yea{bottom:508.706667pt;}
.y107{bottom:511.746667pt;}
.y187{bottom:512.546667pt;}
.y19e{bottom:512.706667pt;}
.y15b{bottom:512.866667pt;}
.y4c{bottom:515.426667pt;}
.y18{bottom:517.826667pt;}
.y13a{bottom:517.986667pt;}
.y170{bottom:520.226667pt;}
.y66{bottom:524.226667pt;}
.y39{bottom:525.026667pt;}
.yc0{bottom:525.506667pt;}
.y13d{bottom:526.946667pt;}
.y121{bottom:531.933333pt;}
.ye9{bottom:536.253333pt;}
.y19d{bottom:540.253333pt;}
.y15a{bottom:540.413333pt;}
.y4b{bottom:542.973333pt;}
.y17{bottom:545.533333pt;}
.y106{bottom:549.693333pt;}
.y186{bottom:551.133333pt;}
.y16f{bottom:551.453333pt;}
.y65{bottom:551.933333pt;}
.y38{bottom:552.733333pt;}
.y140{bottom:554.493333pt;}
.yb9{bottom:556.893333pt;}
.y11d{bottom:559.453333pt;}
.y16e{bottom:560.573333pt;}
.ye8{bottom:563.933333pt;}
.ybe{bottom:565.853333pt;}
.y90{bottom:567.613333pt;}
.y19c{bottom:567.933333pt;}
.y4a{bottom:570.493333pt;}
.y16{bottom:573.053333pt;}
.y185{bottom:578.653333pt;}
.y64{bottom:579.453333pt;}
.y159{bottom:579.613333pt;}
.y37{bottom:580.253333pt;}
.y105{bottom:587.933333pt;}
.y11b{bottom:590.653333pt;}
.ye7{bottom:591.133333pt;}
.y16d{bottom:591.773333pt;}
.y8f{bottom:595.133333pt;}
.y19b{bottom:595.453333pt;}
.y74{bottom:598.173333pt;}
.y15{bottom:600.733333pt;}
.y63{bottom:607.133333pt;}
.y36{bottom:607.933333pt;}
.y136{bottom:613.373333pt;}
.y49{bottom:616.413333pt;}
.y184{bottom:616.733333pt;}
.y158{bottom:618.173333pt;}
.ye6{bottom:619.133333pt;}
.y139{bottom:622.333333pt;}
.y8e{bottom:623.133333pt;}
.y73{bottom:625.693333pt;}
.y104{bottom:626.173333pt;}
.y11c{bottom:627.293333pt;}
.y14{bottom:628.253333pt;}
.y16c{bottom:628.413333pt;}
.y62{bottom:634.653333pt;}
.y35{bottom:635.453333pt;}
.ye5{bottom:646.653333pt;}
.y8d{bottom:650.653333pt;}
.y72{bottom:653.373333pt;}
.y11a{bottom:654.973333pt;}
.y183{bottom:655.293333pt;}
.y13{bottom:655.933333pt;}
.y157{bottom:656.413333pt;}
.y16b{bottom:659.613333pt;}
.y61{bottom:662.013333pt;}
.y34{bottom:663.133333pt;}
.y103{bottom:664.733333pt;}
.ye4{bottom:674.333333pt;}
.yb8{bottom:676.253333pt;}
.y19a{bottom:678.333333pt;}
.y71{bottom:680.893333pt;}
.y182{bottom:682.813333pt;}
.y12{bottom:683.453333pt;}
.y156{bottom:683.933333pt;}
.y116{bottom:686.173333pt;}
.y60{bottom:689.853333pt;}
.y33{bottom:690.653333pt;}
.y102{bottom:692.413333pt;}
.y8c{bottom:696.893333pt;}
.ye3{bottom:701.533333pt;}
.ybc{bottom:703.773333pt;}
.y135{bottom:705.213333pt;}
.y199{bottom:705.853333pt;}
.y70{bottom:708.573333pt;}
.y11{bottom:711.133333pt;}
.y16a{bottom:711.293333pt;}
.y155{bottom:711.613333pt;}
.y5f{bottom:717.533333pt;}
.y32{bottom:718.333333pt;}
.y101{bottom:719.933333pt;}
.y181{bottom:720.733333pt;}
.y119{bottom:722.813333pt;}
.ye2{bottom:729.213333pt;}
.y198{bottom:733.533333pt;}
.yb0{bottom:735.133333pt;}
.y6f{bottom:736.093333pt;}
.y131{bottom:736.413333pt;}
.y10{bottom:738.653333pt;}
.y154{bottom:739.293333pt;}
.y8b{bottom:743.293333pt;}
.yb3{bottom:744.093333pt;}
.y5e{bottom:745.053333pt;}
.y132{bottom:745.373333pt;}
.y31{bottom:745.853333pt;}
.y169{bottom:749.853333pt;}
.y115{bottom:750.333333pt;}
.ye1{bottom:756.733333pt;}
.y88{bottom:758.493333pt;}
.y100{bottom:759.453333pt;}
.y197{bottom:761.053333pt;}
.y6e{bottom:763.773333pt;}
.yf{bottom:766.013333pt;}
.y153{bottom:767.973333pt;}
.y5d{bottom:772.613333pt;}
.y30{bottom:773.573333pt;}
.y168{bottom:777.573333pt;}
.y111{bottom:781.733333pt;}
.y196{bottom:788.773333pt;}
.y6d{bottom:791.333333pt;}
.ye0{bottom:795.013333pt;}
.y152{bottom:795.653333pt;}
.ye{bottom:796.613333pt;}
.yff{bottom:797.733333pt;}
.y2f{bottom:801.093333pt;}
.y167{bottom:805.093333pt;}
.y86{bottom:814.373333pt;}
.y195{bottom:816.293333pt;}
.yd{bottom:816.773333pt;}
.y113{bottom:818.213333pt;}
.y5c{bottom:819.013333pt;}
.yfe{bottom:825.253333pt;}
.y133{bottom:828.293333pt;}
.y2e{bottom:828.773333pt;}
.ydf{bottom:833.733333pt;}
.y166{bottom:833.893333pt;}
.y151{bottom:834.693333pt;}
.y6c{bottom:837.573333pt;}
.yc{bottom:843.973333pt;}
.y5b{bottom:846.533333pt;}
.yfd{bottom:852.933333pt;}
.yaf{bottom:854.533333pt;}
.y130{bottom:855.813333pt;}
.y2d{bottom:856.293333pt;}
.yb{bottom:856.453333pt;}
.y165{bottom:861.413333pt;}
.y84{bottom:870.213333pt;}
.yde{bottom:871.973333pt;}
.y110{bottom:872.933333pt;}
.y5a{bottom:874.053333pt;}
.yfc{bottom:881.573333pt;}
.ya{bottom:883.653333pt;}
.y2c{bottom:883.973333pt;}
.y12f{bottom:887.173333pt;}
.y194{bottom:889.893333pt;}
.y164{bottom:900.453333pt;}
.y9{bottom:906.693333pt;}
.yfb{bottom:909.253333pt;}
.ydd{bottom:910.213333pt;}
.y2b{bottom:911.493333pt;}
.yae{bottom:913.413333pt;}
.y59{bottom:920.453333pt;}
.yad{bottom:922.373333pt;}
.ydb{bottom:925.413333pt;}
.y193{bottom:928.453333pt;}
.yfa{bottom:936.773333pt;}
.y180{bottom:937.893333pt;}
.y8{bottom:938.053333pt;}
.y2a{bottom:939.173333pt;}
.y192{bottom:955.973333pt;}
.y7{bottom:961.253333pt;}
.yf9{bottom:965.573333pt;}
.y83{bottom:966.373333pt;}
.y29{bottom:966.693333pt;}
.yf8{bottom:993.093333pt;}
.y17f{bottom:993.253333pt;}
.y82{bottom:994.053333pt;}
.y6{bottom:994.213333pt;}
.y28{bottom:994.373333pt;}
.y3{bottom:1024.160000pt;}
.y2{bottom:1041.760000pt;}
.y1{bottom:1059.840000pt;}
.h10{height:2.512500pt;}
.hb{height:27.506667pt;}
.h2a{height:27.520000pt;}
.h3b{height:27.546667pt;}
.h12{height:27.666667pt;}
.h1b{height:27.680000pt;}
.h2e{height:27.698667pt;}
.h28{height:27.700000pt;}
.h1d{height:27.706667pt;}
.h8{height:29.940625pt;}
.h20{height:39.506667pt;}
.h3a{height:39.680000pt;}
.h9{height:44.687500pt;}
.h38{height:45.156250pt;}
.h6{height:52.832812pt;}
.h25{height:54.598989pt;}
.h35{height:55.026667pt;}
.hc{height:55.186667pt;}
.h19{height:55.200000pt;}
.hd{height:55.220000pt;}
.he{height:55.226667pt;}
.h4{height:59.340000pt;}
.h5{height:60.519362pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h26{height:65.781915pt;}
.ha{height:66.625000pt;}
.h27{height:67.186667pt;}
.h39{height:67.200000pt;}
.h3c{height:67.226667pt;}
.h7{height:75.465000pt;}
.h34{height:82.706667pt;}
.h2f{height:82.738667pt;}
.h24{height:82.746667pt;}
.h14{height:82.873333pt;}
.h15{height:82.906667pt;}
.h13{height:88.793333pt;}
.h2d{height:94.706667pt;}
.h16{height:94.746667pt;}
.h2c{height:94.866667pt;}
.h2b{height:94.880000pt;}
.h29{height:94.900000pt;}
.h33{height:110.386667pt;}
.h23{height:110.393333pt;}
.h31{height:110.400000pt;}
.h37{height:110.418667pt;}
.h32{height:122.386667pt;}
.h30{height:122.400000pt;}
.h36{height:122.418667pt;}
.h11{height:137.933333pt;}
.h1f{height:138.106667pt;}
.h1e{height:150.106667pt;}
.hf{height:165.586667pt;}
.h1c{height:165.600000pt;}
.h22{height:165.613333pt;}
.h18{height:165.626667pt;}
.h1a{height:177.600000pt;}
.h21{height:177.613333pt;}
.h17{height:177.626667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1d{width:39.190667pt;}
.w2f{width:44.630667pt;}
.w21{width:71.190667pt;}
.w9{width:73.430667pt;}
.w1b{width:73.632000pt;}
.w11{width:76.310667pt;}
.wa{width:77.110667pt;}
.w12{width:82.230667pt;}
.w10{width:82.390667pt;}
.we{width:89.110667pt;}
.w5{width:94.098667pt;}
.w1f{width:97.430667pt;}
.w3a{width:99.220000pt;}
.w13{width:105.618667pt;}
.w33{width:105.626667pt;}
.w2a{width:105.940000pt;}
.w23{width:106.710667pt;}
.w4{width:106.870667pt;}
.w22{width:108.192000pt;}
.w32{width:109.940000pt;}
.w2d{width:112.180000pt;}
.wb{width:112.192000pt;}
.w2e{width:113.626667pt;}
.wd{width:116.026667pt;}
.wf{width:117.938667pt;}
.w14{width:120.026667pt;}
.w1a{width:121.460000pt;}
.w30{width:123.386667pt;}
.wc{width:126.418667pt;}
.w6{width:129.792000pt;}
.w25{width:130.420000pt;}
.w8{width:133.786667pt;}
.w20{width:135.386667pt;}
.w16{width:135.866667pt;}
.w36{width:137.457333pt;}
.w18{width:137.626667pt;}
.w7{width:144.173333pt;}
.w2c{width:145.626667pt;}
.w38{width:148.177333pt;}
.w26{width:154.426667pt;}
.w24{width:155.386667pt;}
.w31{width:156.177333pt;}
.w29{width:163.386667pt;}
.w3b{width:180.657333pt;}
.w1e{width:186.906667pt;}
.w1c{width:187.226667pt;}
.w27{width:195.377333pt;}
.w15{width:204.657333pt;}
.w17{width:204.666667pt;}
.w19{width:204.986667pt;}
.w2b{width:209.666667pt;}
.w28{width:227.266667pt;}
.w2{width:238.097333pt;}
.w34{width:242.937333pt;}
.w39{width:316.693333pt;}
.w37{width:326.133333pt;}
.w3c{width:329.973333pt;}
.w35{width:343.733333pt;}
.w3{width:371.453333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:0.950667pt;}
.xf{left:6.870667pt;}
.x23{left:54.865333pt;}
.x1d{left:89.161333pt;}
.xe{left:93.481333pt;}
.x5{left:96.032000pt;}
.x22{left:98.121333pt;}
.x16{left:102.441333pt;}
.x7{left:105.152000pt;}
.xa{left:109.152000pt;}
.x24{left:117.481333pt;}
.xc{left:120.032000pt;}
.x27{left:126.441333pt;}
.xd{left:144.026667pt;}
.x2a{left:168.026667pt;}
.x2{left:201.626667pt;}
.x3{left:260.066667pt;}
.x9{left:266.786667pt;}
.x1f{left:294.466667pt;}
.x13{left:295.746667pt;}
.x1e{left:303.426667pt;}
.x18{left:304.546667pt;}
.x1{left:312.066667pt;}
.x25{left:313.506667pt;}
.x28{left:322.306667pt;}
.x10{left:332.226667pt;}
.xb{left:340.546667pt;}
.x8{left:346.466667pt;}
.x2b{left:361.066667pt;}
.x2d{left:367.946667pt;}
.x2c{left:369.866667pt;}
.x1c{left:384.893333pt;}
.x4{left:388.893333pt;}
.x6{left:396.893333pt;}
.x14{left:426.186667pt;}
.x19{left:435.146667pt;}
.x11{left:468.253333pt;}
.x21{left:499.813333pt;}
.x20{left:508.773333pt;}
.x26{left:541.413333pt;}
.x29{left:550.373333pt;}
.x15{left:571.013333pt;}
.x1b{left:577.893333pt;}
.x1a{left:579.973333pt;}
.x12{left:638.533333pt;}
}




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