
    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_641f8f88a30058723382a48a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_93654d225d6bbafea5cec3c1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e1fd67250d0623445dc8bf05.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_06b6612d5f606423eef9f275.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_afe5706124194669bee8ac62.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_eeeccc569401db577c5cc8f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_8fab3f9224c2b17d504f6137.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.320400px;}
.ls6{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.141600px;}
.ls3{letter-spacing:-0.109200px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.174240px;}
.ls8{letter-spacing:0.216000px;}
.ls0{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:33.240000px;}
.ls5{letter-spacing:54.840000px;}
.ls1{letter-spacing:153.792000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws0{word-spacing:-18.305520px;}
.ws7{word-spacing:-16.632000px;}
.ws6{word-spacing:-16.488000px;}
.wsd{word-spacing:-16.416000px;}
.ws4{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.056000px;}
.ws9{word-spacing:-15.912000px;}
.ws8{word-spacing:-15.768000px;}
.wsa{word-spacing:-13.505760px;}
.wsb{word-spacing:-10.760640px;}
.wsc{word-spacing:-10.581840px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:1.584000px;}
._1a{margin-left:-4.680000px;}
._19{margin-left:-3.672000px;}
._f{margin-left:-2.436000px;}
._2{margin-left:-1.320000px;}
._1{width:1.428000px;}
._10{width:2.520000px;}
._a{width:3.600000px;}
._b{width:4.692000px;}
._d{width:5.904000px;}
._e{width:7.920000px;}
._12{width:9.396000px;}
._7{width:10.500000px;}
._6{width:11.736000px;}
._18{width:12.816000px;}
._5{width:13.824000px;}
._14{width:15.120000px;}
._8{width:17.640000px;}
._4{width:18.912000px;}
._11{width:20.160000px;}
._15{width:21.384000px;}
._1f{width:24.552000px;}
._20{width:25.776000px;}
._1b{width:27.072000px;}
._1c{width:28.296000px;}
._1e{width:30.240000px;}
._13{width:33.264000px;}
._9{width:34.632000px;}
._c{width:36.576000px;}
._1d{width:46.584000px;}
._17{width:52.704000px;}
._16{width:53.784000px;}
._3{width:847.884000px;}
._0{width:2717.136000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:3.420000px;}
.y23{bottom:3.600000px;}
.y2c{bottom:4.500000px;}
.yc1{bottom:4.860000px;}
.yde{bottom:5.040000px;}
.y92{bottom:8.100000px;}
.ya4{bottom:8.145000px;}
.y8c{bottom:8.280000px;}
.yae{bottom:8.310000px;}
.y29{bottom:22.530000px;}
.yc0{bottom:26.820000px;}
.yf0{bottom:26.850000px;}
.y103{bottom:26.865000px;}
.ydd{bottom:27.000000px;}
.y91{bottom:33.300000px;}
.yc9{bottom:33.330000px;}
.y9e{bottom:33.345000px;}
.y8b{bottom:33.480000px;}
.yc4{bottom:33.525000px;}
.y28{bottom:41.430000px;}
.yd4{bottom:48.780000px;}
.yef{bottom:48.810000px;}
.y102{bottom:48.825000px;}
.yd9{bottom:48.960000px;}
.yfe{bottom:49.005000px;}
.y96{bottom:58.680000px;}
.ya1{bottom:58.710000px;}
.y90{bottom:58.725000px;}
.y9c{bottom:58.860000px;}
.ye1{bottom:70.740000px;}
.y101{bottom:70.785000px;}
.ydc{bottom:70.920000px;}
.yea{bottom:70.965000px;}
.y95{bottom:83.880000px;}
.y8f{bottom:83.925000px;}
.y9b{bottom:84.060000px;}
.y99{bottom:84.090000px;}
.ye6{bottom:88.920000px;}
.y115{bottom:89.100000px;}
.y108{bottom:89.820000px;}
.y11a{bottom:92.700000px;}
.y106{bottom:92.880000px;}
.y77{bottom:93.600000px;}
.ye5{bottom:94.140000px;}
.y52{bottom:100.440000px;}
.y97{bottom:104.760000px;}
.ye4{bottom:107.280000px;}
.yaf{bottom:108.360000px;}
.y94{bottom:109.260000px;}
.y98{bottom:109.290000px;}
.y8e{bottom:109.305000px;}
.yfa{bottom:111.060000px;}
.y114{bottom:111.780000px;}
.ye3{bottom:112.500000px;}
.y119{bottom:114.660000px;}
.y76{bottom:118.800000px;}
.y51{bottom:125.640000px;}
.yca{bottom:126.180000px;}
.ye2{bottom:126.360000px;}
.y2a{bottom:129.600000px;}
.yf9{bottom:133.740000px;}
.y75{bottom:144.000000px;}
.yc8{bottom:144.180000px;}
.y27{bottom:147.420000px;}
.y50{bottom:150.840000px;}
.yf8{bottom:156.420000px;}
.yad{bottom:159.480000px;}
.y107{bottom:161.280000px;}
.y2b{bottom:168.870000px;}
.y74{bottom:169.410000px;}
.y4f{bottom:176.070000px;}
.y113{bottom:178.410000px;}
.y105{bottom:179.130000px;}
.ye0{bottom:181.110000px;}
.yac{bottom:190.470000px;}
.y73{bottom:194.610000px;}
.y26{bottom:205.230000px;}
.yab{bottom:219.270000px;}
.y72{bottom:219.990000px;}
.y4e{bottom:220.530000px;}
.yc7{bottom:220.710000px;}
.yf7{bottom:223.050000px;}
.y25{bottom:224.850000px;}
.y93{bottom:234.930000px;}
.y24{bottom:244.650000px;}
.y71{bottom:245.190000px;}
.y4d{bottom:245.730000px;}
.y22{bottom:264.270000px;}
.yaa{bottom:268.410000px;}
.ydf{bottom:269.670000px;}
.y70{bottom:270.390000px;}
.y4c{bottom:270.930000px;}
.y20{bottom:284.070000px;}
.y104{bottom:289.830000px;}
.ya9{bottom:293.610000px;}
.y6f{bottom:295.770000px;}
.y4b{bottom:296.310000px;}
.yc6{bottom:297.210000px;}
.y1f{bottom:307.470000px;}
.yf6{bottom:311.790000px;}
.ya8{bottom:318.990000px;}
.y6e{bottom:320.970000px;}
.y4a{bottom:321.510000px;}
.y1e{bottom:329.430000px;}
.ydb{bottom:336.270000px;}
.ya7{bottom:344.190000px;}
.y6d{bottom:346.350000px;}
.yc5{bottom:348.510000px;}
.y1d{bottom:351.390000px;}
.yf5{bottom:356.430000px;}
.y49{bottom:363.810000px;}
.y8d{bottom:365.070000px;}
.ya6{bottom:366.150000px;}
.y6c{bottom:371.550000px;}
.y1c{bottom:373.350000px;}
.y112{bottom:378.390000px;}
.ya5{bottom:388.110000px;}
.y1b{bottom:395.310000px;}
.y6b{bottom:396.750000px;}
.yc3{bottom:399.810000px;}
.y100{bottom:401.250000px;}
.ya3{bottom:406.830000px;}
.y1a{bottom:417.315000px;}
.y6a{bottom:422.175000px;}
.yf4{bottom:423.255000px;}
.y48{bottom:424.875000px;}
.yda{bottom:425.055000px;}
.y19{bottom:439.275000px;}
.y69{bottom:447.375000px;}
.y47{bottom:450.075000px;}
.yc2{bottom:451.155000px;}
.y18{bottom:461.235000px;}
.y111{bottom:467.895000px;}
.y68{bottom:472.575000px;}
.y46{bottom:475.275000px;}
.y17{bottom:483.195000px;}
.yf3{bottom:489.855000px;}
.yd8{bottom:491.655000px;}
.y8a{bottom:495.075000px;}
.y67{bottom:497.955000px;}
.y45{bottom:500.655000px;}
.ybf{bottom:502.455000px;}
.y16{bottom:505.155000px;}
.ya2{bottom:511.635000px;}
.y66{bottom:523.155000px;}
.y44{bottom:525.855000px;}
.y15{bottom:527.115000px;}
.yf2{bottom:534.495000px;}
.y65{bottom:548.535000px;}
.y14{bottom:549.075000px;}
.y43{bottom:551.055000px;}
.ybe{bottom:551.955000px;}
.y89{bottom:552.135000px;}
.yd7{bottom:558.435000px;}
.y13{bottom:571.035000px;}
.ybd{bottom:573.915000px;}
.y110{bottom:579.315000px;}
.y88{bottom:580.755000px;}
.y64{bottom:591.735000px;}
.y12{bottom:592.995000px;}
.y42{bottom:594.435000px;}
.yf1{bottom:601.275000px;}
.ybc{bottom:602.715000px;}
.y11{bottom:614.955000px;}
.ya0{bottom:616.395000px;}
.y63{bottom:616.935000px;}
.y41{bottom:619.635000px;}
.yd6{bottom:625.035000px;}
.y87{bottom:629.895000px;}
.y10{bottom:637.095000px;}
.y62{bottom:642.135000px;}
.y40{bottom:645.015000px;}
.yee{bottom:645.915000px;}
.ybb{bottom:648.615000px;}
.y86{bottom:655.275000px;}
.yf{bottom:659.085000px;}
.y10f{bottom:667.905000px;}
.yd5{bottom:669.705000px;}
.y3f{bottom:670.245000px;}
.yba{bottom:670.605000px;}
.y11d{bottom:676.725000px;}
.y85{bottom:680.505000px;}
.ye{bottom:681.045000px;}
.y61{bottom:684.645000px;}
.yb9{bottom:692.565000px;}
.y3e{bottom:695.445000px;}
.y84{bottom:705.705000px;}
.yed{bottom:712.545000px;}
.yb8{bottom:714.525000px;}
.yd{bottom:716.865000px;}
.y3d{bottom:720.825000px;}
.y83{bottom:731.085000px;}
.y10e{bottom:734.505000px;}
.y11c{bottom:735.405000px;}
.yb7{bottom:736.485000px;}
.y60{bottom:745.485000px;}
.y3c{bottom:746.025000px;}
.y9f{bottom:746.565000px;}
.y82{bottom:756.285000px;}
.yec{bottom:757.365000px;}
.yb6{bottom:758.445000px;}
.y5f{bottom:770.865000px;}
.y3b{bottom:771.405000px;}
.yb5{bottom:776.265000px;}
.yff{bottom:779.325000px;}
.y11b{bottom:780.045000px;}
.yd3{bottom:781.125000px;}
.y81{bottom:781.665000px;}
.y5e{bottom:796.065000px;}
.y3a{bottom:796.605000px;}
.yc{bottom:796.785000px;}
.yeb{bottom:802.005000px;}
.y80{bottom:806.865000px;}
.y5d{bottom:821.265000px;}
.y39{bottom:821.805000px;}
.y10d{bottom:823.245000px;}
.y7f{bottom:832.065000px;}
.y5c{bottom:846.645000px;}
.y38{bottom:847.185000px;}
.yd2{bottom:847.725000px;}
.yb4{bottom:852.945000px;}
.y7e{bottom:857.445000px;}
.yfd{bottom:868.605000px;}
.yb{bottom:871.845000px;}
.y9d{bottom:876.705000px;}
.yd1{bottom:878.685000px;}
.y7d{bottom:882.645000px;}
.y10c{bottom:889.845000px;}
.y37{bottom:890.385000px;}
.ya{bottom:893.805000px;}
.y5b{bottom:897.045000px;}
.yd0{bottom:900.645000px;}
.yb3{bottom:904.290000px;}
.y7c{bottom:913.110000px;}
.y118{bottom:913.470000px;}
.y36{bottom:915.630000px;}
.y9{bottom:915.810000px;}
.yce{bottom:925.890000px;}
.ycf{bottom:931.830000px;}
.y10b{bottom:934.710000px;}
.ye9{bottom:935.430000px;}
.y8{bottom:937.770000px;}
.y5a{bottom:940.470000px;}
.y35{bottom:941.010000px;}
.ycd{bottom:951.270000px;}
.yb2{bottom:955.410000px;}
.y7{bottom:959.730000px;}
.y59{bottom:965.670000px;}
.y34{bottom:966.210000px;}
.y7b{bottom:973.950000px;}
.ycc{bottom:976.470000px;}
.y10a{bottom:979.350000px;}
.ye8{bottom:980.070000px;}
.y6{bottom:981.690000px;}
.y58{bottom:991.050000px;}
.y33{bottom:991.590000px;}
.y7a{bottom:999.150000px;}
.yfc{bottom:1002.030000px;}
.y5{bottom:1003.650000px;}
.y9a{bottom:1006.710000px;}
.ycb{bottom:1006.890000px;}
.y57{bottom:1016.250000px;}
.y32{bottom:1016.790000px;}
.y109{bottom:1023.990000px;}
.y79{bottom:1024.530000px;}
.y4{bottom:1025.790000px;}
.y56{bottom:1041.450000px;}
.y31{bottom:1041.990000px;}
.y117{bottom:1045.950000px;}
.ye7{bottom:1046.670000px;}
.y3{bottom:1047.750000px;}
.yb1{bottom:1058.010000px;}
.y55{bottom:1066.650000px;}
.y30{bottom:1067.190000px;}
.y78{bottom:1067.730000px;}
.y116{bottom:1068.630000px;}
.y2{bottom:1069.710000px;}
.yfb{bottom:1090.770000px;}
.y1{bottom:1091.670000px;}
.y54{bottom:1092.930000px;}
.yb0{bottom:1109.310000px;}
.y2f{bottom:1109.670000px;}
.y53{bottom:1118.310000px;}
.y2e{bottom:1168.560000px;}
.y2d{bottom:1192.860000px;}
.h8{height:18.900000px;}
.ha{height:19.080000px;}
.hc{height:20.160000px;}
.h1e{height:21.960000px;}
.h17{height:25.380000px;}
.h15{height:25.416000px;}
.h24{height:38.671172px;}
.h1a{height:43.920000px;}
.h20{height:43.956000px;}
.h1d{height:47.980898px;}
.h16{height:50.400000px;}
.h18{height:50.436000px;}
.h10{height:50.580000px;}
.h1b{height:50.616000px;}
.hb{height:56.916000px;}
.h25{height:59.439023px;}
.h4{height:62.964844px;}
.h1f{height:65.880000px;}
.hd{height:65.884219px;}
.h28{height:65.916000px;}
.h21{height:66.060000px;}
.h29{height:66.096000px;}
.h9{height:69.086250px;}
.h3{height:71.613281px;}
.h27{height:71.740898px;}
.h6{height:73.722656px;}
.h2{height:74.004654px;}
.h7{height:75.093750px;}
.h19{height:75.780000px;}
.h1c{height:75.816000px;}
.hf{height:86.255508px;}
.h23{height:87.840000px;}
.h2a{height:87.876000px;}
.h26{height:88.020000px;}
.h22{height:88.056000px;}
.h13{height:100.980000px;}
.h14{height:101.016000px;}
.h2b{height:109.980000px;}
.he{height:110.583984px;}
.h12{height:126.360000px;}
.h11{height:126.396000px;}
.h2c{height:131.760000px;}
.h5{height:147.445312px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wd{width:143.496000px;}
.w13{width:147.456000px;}
.w10{width:147.636000px;}
.wc{width:178.950000px;}
.w6{width:179.670000px;}
.wa{width:184.530000px;}
.w7{width:188.130000px;}
.w9{width:219.990000px;}
.wb{width:274.755000px;}
.w3{width:285.870000px;}
.w8{width:302.295000px;}
.we{width:356.835000px;}
.w4{width:390.885000px;}
.w11{width:541.725000px;}
.w14{width:541.905000px;}
.w5{width:678.390000px;}
.w12{width:690.090000px;}
.wf{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x17{left:1.080000px;}
.x12{left:4.680000px;}
.xb{left:7.740000px;}
.x4a{left:11.340000px;}
.x61{left:13.500000px;}
.x32{left:14.580000px;}
.x73{left:15.840000px;}
.x40{left:17.100000px;}
.x5c{left:18.180000px;}
.x34{left:19.260000px;}
.xf{left:21.239987px;}
.x2a{left:23.220000px;}
.x3b{left:24.840000px;}
.x4c{left:26.460000px;}
.x3d{left:27.720000px;}
.x55{left:28.800000px;}
.x5e{left:29.880000px;}
.x62{left:31.680000px;}
.x2d{left:32.760000px;}
.x2b{left:35.640000px;}
.x28{left:37.260000px;}
.x14{left:38.520000px;}
.x39{left:41.400000px;}
.x26{left:43.374000px;}
.x20{left:45.354000px;}
.x5d{left:46.440000px;}
.x23{left:48.774000px;}
.x3f{left:50.214000px;}
.x36{left:52.020000px;}
.x3c{left:54.174000px;}
.x15{left:55.440000px;}
.x24{left:57.240000px;}
.x46{left:58.854000px;}
.x47{left:61.200000px;}
.x2{left:63.719987px;}
.x69{left:68.940000px;}
.x58{left:73.440000px;}
.x68{left:76.140000px;}
.x2c{left:77.940000px;}
.x5a{left:81.900000px;}
.x38{left:83.340000px;}
.x72{left:86.580000px;}
.x4e{left:90.180000px;}
.x6f{left:93.780000px;}
.x5b{left:100.440000px;}
.x43{left:103.320000px;}
.xa{left:106.235987px;}
.x44{left:107.460000px;}
.x2e{left:108.900000px;}
.x33{left:111.060000px;}
.x1{left:114.155987px;}
.x51{left:117.360000px;}
.x71{left:119.700000px;}
.x57{left:121.140000px;}
.x41{left:125.280000px;}
.x4b{left:130.500000px;}
.x10{left:133.235987px;}
.x6b{left:135.180000px;}
.x45{left:137.880000px;}
.x53{left:140.760000px;}
.x4f{left:142.740000px;}
.x52{left:151.380000px;}
.x67{left:152.640000px;}
.x22{left:153.720000px;}
.x6d{left:156.450000px;}
.x11{left:160.229987px;}
.x74{left:161.850000px;}
.x54{left:167.250000px;}
.x30{left:169.230000px;}
.x4d{left:172.290000px;}
.x6e{left:173.910000px;}
.x49{left:178.050000px;}
.x37{left:180.930000px;}
.x3a{left:183.090000px;}
.x64{left:184.170000px;}
.x63{left:189.750000px;}
.x50{left:191.730000px;}
.x56{left:194.610000px;}
.x65{left:195.690000px;}
.x42{left:197.670000px;}
.x25{left:200.730000px;}
.x76{left:202.890000px;}
.x77{left:204.690000px;}
.x70{left:207.570000px;}
.x2f{left:209.370000px;}
.x29{left:221.070000px;}
.x60{left:223.410000px;}
.x59{left:226.290000px;}
.x6a{left:227.730000px;}
.x31{left:231.510000px;}
.x66{left:233.310000px;}
.x35{left:234.390000px;}
.x27{left:244.650000px;}
.x48{left:247.350000px;}
.x6c{left:253.650000px;}
.x21{left:255.495000px;}
.x4{left:259.994987px;}
.x75{left:270.930000px;}
.x1a{left:285.195000px;}
.x13{left:286.815000px;}
.x3e{left:322.274987px;}
.x18{left:326.235000px;}
.xd{left:339.189000px;}
.xc{left:393.915000px;}
.x5{left:411.044987px;}
.x1b{left:428.685000px;}
.x16{left:475.845000px;}
.x1c{left:494.744973px;}
.x1d{left:500.864987px;}
.x19{left:510.765000px;}
.x8{left:611.789987px;}
.x9{left:626.009987px;}
.x5f{left:697.289987px;}
.x1e{left:698.549973px;}
.x1f{left:704.669987px;}
.xe{left:706.469987px;}
.x7{left:722.129987px;}
.x3{left:733.829987px;}
.x6{left:785.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.284800pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.125867pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154880pt;}
.ls8{letter-spacing:0.192000pt;}
.ls0{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:29.546667pt;}
.ls5{letter-spacing:48.746667pt;}
.ls1{letter-spacing:136.704000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws0{word-spacing:-16.271573pt;}
.ws7{word-spacing:-14.784000pt;}
.ws6{word-spacing:-14.656000pt;}
.wsd{word-spacing:-14.592000pt;}
.ws4{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.272000pt;}
.ws9{word-spacing:-14.144000pt;}
.ws8{word-spacing:-14.016000pt;}
.wsa{word-spacing:-12.005120pt;}
.wsb{word-spacing:-9.565013pt;}
.wsc{word-spacing:-9.406080pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:1.408000pt;}
._1a{margin-left:-4.160000pt;}
._19{margin-left:-3.264000pt;}
._f{margin-left:-2.165333pt;}
._2{margin-left:-1.173333pt;}
._1{width:1.269333pt;}
._10{width:2.240000pt;}
._a{width:3.200000pt;}
._b{width:4.170667pt;}
._d{width:5.248000pt;}
._e{width:7.040000pt;}
._12{width:8.352000pt;}
._7{width:9.333333pt;}
._6{width:10.432000pt;}
._18{width:11.392000pt;}
._5{width:12.288000pt;}
._14{width:13.440000pt;}
._8{width:15.680000pt;}
._4{width:16.810667pt;}
._11{width:17.920000pt;}
._15{width:19.008000pt;}
._1f{width:21.824000pt;}
._20{width:22.912000pt;}
._1b{width:24.064000pt;}
._1c{width:25.152000pt;}
._1e{width:26.880000pt;}
._13{width:29.568000pt;}
._9{width:30.784000pt;}
._c{width:32.512000pt;}
._1d{width:41.408000pt;}
._17{width:46.848000pt;}
._16{width:47.808000pt;}
._3{width:753.674667pt;}
._0{width:2415.232000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:3.040000pt;}
.y23{bottom:3.200000pt;}
.y2c{bottom:4.000000pt;}
.yc1{bottom:4.320000pt;}
.yde{bottom:4.480000pt;}
.y92{bottom:7.200000pt;}
.ya4{bottom:7.240000pt;}
.y8c{bottom:7.360000pt;}
.yae{bottom:7.386667pt;}
.y29{bottom:20.026667pt;}
.yc0{bottom:23.840000pt;}
.yf0{bottom:23.866667pt;}
.y103{bottom:23.880000pt;}
.ydd{bottom:24.000000pt;}
.y91{bottom:29.600000pt;}
.yc9{bottom:29.626667pt;}
.y9e{bottom:29.640000pt;}
.y8b{bottom:29.760000pt;}
.yc4{bottom:29.800000pt;}
.y28{bottom:36.826667pt;}
.yd4{bottom:43.360000pt;}
.yef{bottom:43.386667pt;}
.y102{bottom:43.400000pt;}
.yd9{bottom:43.520000pt;}
.yfe{bottom:43.560000pt;}
.y96{bottom:52.160000pt;}
.ya1{bottom:52.186667pt;}
.y90{bottom:52.200000pt;}
.y9c{bottom:52.320000pt;}
.ye1{bottom:62.880000pt;}
.y101{bottom:62.920000pt;}
.ydc{bottom:63.040000pt;}
.yea{bottom:63.080000pt;}
.y95{bottom:74.560000pt;}
.y8f{bottom:74.600000pt;}
.y9b{bottom:74.720000pt;}
.y99{bottom:74.746667pt;}
.ye6{bottom:79.040000pt;}
.y115{bottom:79.200000pt;}
.y108{bottom:79.840000pt;}
.y11a{bottom:82.400000pt;}
.y106{bottom:82.560000pt;}
.y77{bottom:83.200000pt;}
.ye5{bottom:83.680000pt;}
.y52{bottom:89.280000pt;}
.y97{bottom:93.120000pt;}
.ye4{bottom:95.360000pt;}
.yaf{bottom:96.320000pt;}
.y94{bottom:97.120000pt;}
.y98{bottom:97.146667pt;}
.y8e{bottom:97.160000pt;}
.yfa{bottom:98.720000pt;}
.y114{bottom:99.360000pt;}
.ye3{bottom:100.000000pt;}
.y119{bottom:101.920000pt;}
.y76{bottom:105.600000pt;}
.y51{bottom:111.680000pt;}
.yca{bottom:112.160000pt;}
.ye2{bottom:112.320000pt;}
.y2a{bottom:115.200000pt;}
.yf9{bottom:118.880000pt;}
.y75{bottom:128.000000pt;}
.yc8{bottom:128.160000pt;}
.y27{bottom:131.040000pt;}
.y50{bottom:134.080000pt;}
.yf8{bottom:139.040000pt;}
.yad{bottom:141.760000pt;}
.y107{bottom:143.360000pt;}
.y2b{bottom:150.106667pt;}
.y74{bottom:150.586667pt;}
.y4f{bottom:156.506667pt;}
.y113{bottom:158.586667pt;}
.y105{bottom:159.226667pt;}
.ye0{bottom:160.986667pt;}
.yac{bottom:169.306667pt;}
.y73{bottom:172.986667pt;}
.y26{bottom:182.426667pt;}
.yab{bottom:194.906667pt;}
.y72{bottom:195.546667pt;}
.y4e{bottom:196.026667pt;}
.yc7{bottom:196.186667pt;}
.yf7{bottom:198.266667pt;}
.y25{bottom:199.866667pt;}
.y93{bottom:208.826667pt;}
.y24{bottom:217.466667pt;}
.y71{bottom:217.946667pt;}
.y4d{bottom:218.426667pt;}
.y22{bottom:234.906667pt;}
.yaa{bottom:238.586667pt;}
.ydf{bottom:239.706667pt;}
.y70{bottom:240.346667pt;}
.y4c{bottom:240.826667pt;}
.y20{bottom:252.506667pt;}
.y104{bottom:257.626667pt;}
.ya9{bottom:260.986667pt;}
.y6f{bottom:262.906667pt;}
.y4b{bottom:263.386667pt;}
.yc6{bottom:264.186667pt;}
.y1f{bottom:273.306667pt;}
.yf6{bottom:277.146667pt;}
.ya8{bottom:283.546667pt;}
.y6e{bottom:285.306667pt;}
.y4a{bottom:285.786667pt;}
.y1e{bottom:292.826667pt;}
.ydb{bottom:298.906667pt;}
.ya7{bottom:305.946667pt;}
.y6d{bottom:307.866667pt;}
.yc5{bottom:309.786667pt;}
.y1d{bottom:312.346667pt;}
.yf5{bottom:316.826667pt;}
.y49{bottom:323.386667pt;}
.y8d{bottom:324.506667pt;}
.ya6{bottom:325.466667pt;}
.y6c{bottom:330.266667pt;}
.y1c{bottom:331.866667pt;}
.y112{bottom:336.346667pt;}
.ya5{bottom:344.986667pt;}
.y1b{bottom:351.386667pt;}
.y6b{bottom:352.666667pt;}
.yc3{bottom:355.386667pt;}
.y100{bottom:356.666667pt;}
.ya3{bottom:361.626667pt;}
.y1a{bottom:370.946667pt;}
.y6a{bottom:375.266667pt;}
.yf4{bottom:376.226667pt;}
.y48{bottom:377.666667pt;}
.yda{bottom:377.826667pt;}
.y19{bottom:390.466667pt;}
.y69{bottom:397.666667pt;}
.y47{bottom:400.066667pt;}
.yc2{bottom:401.026667pt;}
.y18{bottom:409.986667pt;}
.y111{bottom:415.906667pt;}
.y68{bottom:420.066667pt;}
.y46{bottom:422.466667pt;}
.y17{bottom:429.506667pt;}
.yf3{bottom:435.426667pt;}
.yd8{bottom:437.026667pt;}
.y8a{bottom:440.066667pt;}
.y67{bottom:442.626667pt;}
.y45{bottom:445.026667pt;}
.ybf{bottom:446.626667pt;}
.y16{bottom:449.026667pt;}
.ya2{bottom:454.786667pt;}
.y66{bottom:465.026667pt;}
.y44{bottom:467.426667pt;}
.y15{bottom:468.546667pt;}
.yf2{bottom:475.106667pt;}
.y65{bottom:487.586667pt;}
.y14{bottom:488.066667pt;}
.y43{bottom:489.826667pt;}
.ybe{bottom:490.626667pt;}
.y89{bottom:490.786667pt;}
.yd7{bottom:496.386667pt;}
.y13{bottom:507.586667pt;}
.ybd{bottom:510.146667pt;}
.y110{bottom:514.946667pt;}
.y88{bottom:516.226667pt;}
.y64{bottom:525.986667pt;}
.y12{bottom:527.106667pt;}
.y42{bottom:528.386667pt;}
.yf1{bottom:534.466667pt;}
.ybc{bottom:535.746667pt;}
.y11{bottom:546.626667pt;}
.ya0{bottom:547.906667pt;}
.y63{bottom:548.386667pt;}
.y41{bottom:550.786667pt;}
.yd6{bottom:555.586667pt;}
.y87{bottom:559.906667pt;}
.y10{bottom:566.306667pt;}
.y62{bottom:570.786667pt;}
.y40{bottom:573.346667pt;}
.yee{bottom:574.146667pt;}
.ybb{bottom:576.546667pt;}
.y86{bottom:582.466667pt;}
.yf{bottom:585.853333pt;}
.y10f{bottom:593.693333pt;}
.yd5{bottom:595.293333pt;}
.y3f{bottom:595.773333pt;}
.yba{bottom:596.093333pt;}
.y11d{bottom:601.533333pt;}
.y85{bottom:604.893333pt;}
.ye{bottom:605.373333pt;}
.y61{bottom:608.573333pt;}
.yb9{bottom:615.613333pt;}
.y3e{bottom:618.173333pt;}
.y84{bottom:627.293333pt;}
.yed{bottom:633.373333pt;}
.yb8{bottom:635.133333pt;}
.yd{bottom:637.213333pt;}
.y3d{bottom:640.733333pt;}
.y83{bottom:649.853333pt;}
.y10e{bottom:652.893333pt;}
.y11c{bottom:653.693333pt;}
.yb7{bottom:654.653333pt;}
.y60{bottom:662.653333pt;}
.y3c{bottom:663.133333pt;}
.y9f{bottom:663.613333pt;}
.y82{bottom:672.253333pt;}
.yec{bottom:673.213333pt;}
.yb6{bottom:674.173333pt;}
.y5f{bottom:685.213333pt;}
.y3b{bottom:685.693333pt;}
.yb5{bottom:690.013333pt;}
.yff{bottom:692.733333pt;}
.y11b{bottom:693.373333pt;}
.yd3{bottom:694.333333pt;}
.y81{bottom:694.813333pt;}
.y5e{bottom:707.613333pt;}
.y3a{bottom:708.093333pt;}
.yc{bottom:708.253333pt;}
.yeb{bottom:712.893333pt;}
.y80{bottom:717.213333pt;}
.y5d{bottom:730.013333pt;}
.y39{bottom:730.493333pt;}
.y10d{bottom:731.773333pt;}
.y7f{bottom:739.613333pt;}
.y5c{bottom:752.573333pt;}
.y38{bottom:753.053333pt;}
.yd2{bottom:753.533333pt;}
.yb4{bottom:758.173333pt;}
.y7e{bottom:762.173333pt;}
.yfd{bottom:772.093333pt;}
.yb{bottom:774.973333pt;}
.y9d{bottom:779.293333pt;}
.yd1{bottom:781.053333pt;}
.y7d{bottom:784.573333pt;}
.y10c{bottom:790.973333pt;}
.y37{bottom:791.453333pt;}
.ya{bottom:794.493333pt;}
.y5b{bottom:797.373333pt;}
.yd0{bottom:800.573333pt;}
.yb3{bottom:803.813333pt;}
.y7c{bottom:811.653333pt;}
.y118{bottom:811.973333pt;}
.y36{bottom:813.893333pt;}
.y9{bottom:814.053333pt;}
.yce{bottom:823.013333pt;}
.ycf{bottom:828.293333pt;}
.y10b{bottom:830.853333pt;}
.ye9{bottom:831.493333pt;}
.y8{bottom:833.573333pt;}
.y5a{bottom:835.973333pt;}
.y35{bottom:836.453333pt;}
.ycd{bottom:845.573333pt;}
.yb2{bottom:849.253333pt;}
.y7{bottom:853.093333pt;}
.y59{bottom:858.373333pt;}
.y34{bottom:858.853333pt;}
.y7b{bottom:865.733333pt;}
.ycc{bottom:867.973333pt;}
.y10a{bottom:870.533333pt;}
.ye8{bottom:871.173333pt;}
.y6{bottom:872.613333pt;}
.y58{bottom:880.933333pt;}
.y33{bottom:881.413333pt;}
.y7a{bottom:888.133333pt;}
.yfc{bottom:890.693333pt;}
.y5{bottom:892.133333pt;}
.y9a{bottom:894.853333pt;}
.ycb{bottom:895.013333pt;}
.y57{bottom:903.333333pt;}
.y32{bottom:903.813333pt;}
.y109{bottom:910.213333pt;}
.y79{bottom:910.693333pt;}
.y4{bottom:911.813333pt;}
.y56{bottom:925.733333pt;}
.y31{bottom:926.213333pt;}
.y117{bottom:929.733333pt;}
.ye7{bottom:930.373333pt;}
.y3{bottom:931.333333pt;}
.yb1{bottom:940.453333pt;}
.y55{bottom:948.133333pt;}
.y30{bottom:948.613333pt;}
.y78{bottom:949.093333pt;}
.y116{bottom:949.893333pt;}
.y2{bottom:950.853333pt;}
.yfb{bottom:969.573333pt;}
.y1{bottom:970.373333pt;}
.y54{bottom:971.493333pt;}
.yb0{bottom:986.053333pt;}
.y2f{bottom:986.373333pt;}
.y53{bottom:994.053333pt;}
.y2e{bottom:1038.720000pt;}
.y2d{bottom:1060.320000pt;}
.h8{height:16.800000pt;}
.ha{height:16.960000pt;}
.hc{height:17.920000pt;}
.h1e{height:19.520000pt;}
.h17{height:22.560000pt;}
.h15{height:22.592000pt;}
.h24{height:34.374375pt;}
.h1a{height:39.040000pt;}
.h20{height:39.072000pt;}
.h1d{height:42.649687pt;}
.h16{height:44.800000pt;}
.h18{height:44.832000pt;}
.h10{height:44.960000pt;}
.h1b{height:44.992000pt;}
.hb{height:50.592000pt;}
.h25{height:52.834688pt;}
.h4{height:55.968750pt;}
.h1f{height:58.560000pt;}
.hd{height:58.563750pt;}
.h28{height:58.592000pt;}
.h21{height:58.720000pt;}
.h29{height:58.752000pt;}
.h9{height:61.410000pt;}
.h3{height:63.656250pt;}
.h27{height:63.769687pt;}
.h6{height:65.531250pt;}
.h2{height:65.781915pt;}
.h7{height:66.750000pt;}
.h19{height:67.360000pt;}
.h1c{height:67.392000pt;}
.hf{height:76.671562pt;}
.h23{height:78.080000pt;}
.h2a{height:78.112000pt;}
.h26{height:78.240000pt;}
.h22{height:78.272000pt;}
.h13{height:89.760000pt;}
.h14{height:89.792000pt;}
.h2b{height:97.760000pt;}
.he{height:98.296875pt;}
.h12{height:112.320000pt;}
.h11{height:112.352000pt;}
.h2c{height:117.120000pt;}
.h5{height:131.062500pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wd{width:127.552000pt;}
.w13{width:131.072000pt;}
.w10{width:131.232000pt;}
.wc{width:159.066667pt;}
.w6{width:159.706667pt;}
.wa{width:164.026667pt;}
.w7{width:167.226667pt;}
.w9{width:195.546667pt;}
.wb{width:244.226667pt;}
.w3{width:254.106667pt;}
.w8{width:268.706667pt;}
.we{width:317.186667pt;}
.w4{width:347.453333pt;}
.w11{width:481.533333pt;}
.w14{width:481.693333pt;}
.w5{width:603.013333pt;}
.w12{width:613.413333pt;}
.wf{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x17{left:0.960000pt;}
.x12{left:4.160000pt;}
.xb{left:6.880000pt;}
.x4a{left:10.080000pt;}
.x61{left:12.000000pt;}
.x32{left:12.960000pt;}
.x73{left:14.080000pt;}
.x40{left:15.200000pt;}
.x5c{left:16.160000pt;}
.x34{left:17.120000pt;}
.xf{left:18.879988pt;}
.x2a{left:20.640000pt;}
.x3b{left:22.080000pt;}
.x4c{left:23.520000pt;}
.x3d{left:24.640000pt;}
.x55{left:25.600000pt;}
.x5e{left:26.560000pt;}
.x62{left:28.160000pt;}
.x2d{left:29.120000pt;}
.x2b{left:31.680000pt;}
.x28{left:33.120000pt;}
.x14{left:34.240000pt;}
.x39{left:36.800000pt;}
.x26{left:38.554667pt;}
.x20{left:40.314667pt;}
.x5d{left:41.280000pt;}
.x23{left:43.354667pt;}
.x3f{left:44.634667pt;}
.x36{left:46.240000pt;}
.x3c{left:48.154667pt;}
.x15{left:49.280000pt;}
.x24{left:50.880000pt;}
.x46{left:52.314667pt;}
.x47{left:54.400000pt;}
.x2{left:56.639988pt;}
.x69{left:61.280000pt;}
.x58{left:65.280000pt;}
.x68{left:67.680000pt;}
.x2c{left:69.280000pt;}
.x5a{left:72.800000pt;}
.x38{left:74.080000pt;}
.x72{left:76.960000pt;}
.x4e{left:80.160000pt;}
.x6f{left:83.360000pt;}
.x5b{left:89.280000pt;}
.x43{left:91.840000pt;}
.xa{left:94.431988pt;}
.x44{left:95.520000pt;}
.x2e{left:96.800000pt;}
.x33{left:98.720000pt;}
.x1{left:101.471988pt;}
.x51{left:104.320000pt;}
.x71{left:106.400000pt;}
.x57{left:107.680000pt;}
.x41{left:111.360000pt;}
.x4b{left:116.000000pt;}
.x10{left:118.431988pt;}
.x6b{left:120.160000pt;}
.x45{left:122.560000pt;}
.x53{left:125.120000pt;}
.x4f{left:126.880000pt;}
.x52{left:134.560000pt;}
.x67{left:135.680000pt;}
.x22{left:136.640000pt;}
.x6d{left:139.066667pt;}
.x11{left:142.426655pt;}
.x74{left:143.866667pt;}
.x54{left:148.666667pt;}
.x30{left:150.426667pt;}
.x4d{left:153.146667pt;}
.x6e{left:154.586667pt;}
.x49{left:158.266667pt;}
.x37{left:160.826667pt;}
.x3a{left:162.746667pt;}
.x64{left:163.706667pt;}
.x63{left:168.666667pt;}
.x50{left:170.426667pt;}
.x56{left:172.986667pt;}
.x65{left:173.946667pt;}
.x42{left:175.706667pt;}
.x25{left:178.426667pt;}
.x76{left:180.346667pt;}
.x77{left:181.946667pt;}
.x70{left:184.506667pt;}
.x2f{left:186.106667pt;}
.x29{left:196.506667pt;}
.x60{left:198.586667pt;}
.x59{left:201.146667pt;}
.x6a{left:202.426667pt;}
.x31{left:205.786667pt;}
.x66{left:207.386667pt;}
.x35{left:208.346667pt;}
.x27{left:217.466667pt;}
.x48{left:219.866667pt;}
.x6c{left:225.466667pt;}
.x21{left:227.106667pt;}
.x4{left:231.106655pt;}
.x75{left:240.826667pt;}
.x1a{left:253.506667pt;}
.x13{left:254.946667pt;}
.x3e{left:286.466655pt;}
.x18{left:289.986667pt;}
.xd{left:301.501333pt;}
.xc{left:350.146667pt;}
.x5{left:365.373322pt;}
.x1b{left:381.053333pt;}
.x16{left:422.973333pt;}
.x1c{left:439.773310pt;}
.x1d{left:445.213322pt;}
.x19{left:454.013333pt;}
.x8{left:543.813322pt;}
.x9{left:556.453322pt;}
.x5f{left:619.813322pt;}
.x1e{left:620.933310pt;}
.x1f{left:626.373322pt;}
.xe{left:627.973322pt;}
.x7{left:641.893322pt;}
.x3{left:652.293322pt;}
.x6{left:698.079988pt;}
}




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