
    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_be02735b688430cd38746ffc.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_9b7f9ba8d6fb097fad12211b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.097168;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_ddf53faf5b770332cb6b5033.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_31cdbde7daaebb7525d5fecf.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9d53769dcc70be95123938d6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_45aeccd00e366c096ee21ba1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_88730e7619a6caeb93fda1af.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7b3a4775b184fff825b65dfb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-14.400000px;}
.v7{vertical-align:-4.800000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:7.200000px;}
.vb{vertical-align:9.600000px;}
.v3{vertical-align:14.400000px;}
.v9{vertical-align:15.600000px;}
.v2{vertical-align:26.400000px;}
.v8{vertical-align:40.800000px;}
.v5{vertical-align:48.000000px;}
.v4{vertical-align:54.600000px;}
.va{vertical-align:63.000000px;}
.lsa{letter-spacing:-3.000000px;}
.lsc{letter-spacing:-2.994000px;}
.ls9{letter-spacing:-2.988000px;}
.lsb{letter-spacing:-2.700000px;}
.ls2e{letter-spacing:-0.264000px;}
.lse{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.168000px;}
.ls2a{letter-spacing:-0.144000px;}
.ls2d{letter-spacing:-0.096000px;}
.ls8{letter-spacing:-0.012000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012000px;}
.ls1{letter-spacing:0.024000px;}
.ls4{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.120000px;}
.ls2c{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.150000px;}
.ls1e{letter-spacing:0.180000px;}
.ls25{letter-spacing:0.192000px;}
.ls14{letter-spacing:0.228000px;}
.ls2b{letter-spacing:0.240000px;}
.ls15{letter-spacing:0.252000px;}
.lsf{letter-spacing:0.264000px;}
.ls2{letter-spacing:0.300000px;}
.ls12{letter-spacing:0.312000px;}
.ls2f{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.600000px;}
.ls17{letter-spacing:1.464000px;}
.ls11{letter-spacing:1.488000px;}
.ls22{letter-spacing:1.836000px;}
.ls21{letter-spacing:1.944000px;}
.ls19{letter-spacing:2.196000px;}
.ls18{letter-spacing:2.280000px;}
.ls23{letter-spacing:2.436000px;}
.ls26{letter-spacing:2.871000px;}
.ls16{letter-spacing:2.931000px;}
.ls1c{letter-spacing:3.186000px;}
.ls10{letter-spacing:3.561000px;}
.ls13{letter-spacing:4.101000px;}
.ls1d{letter-spacing:4.200000px;}
.ls24{letter-spacing:4.221000px;}
.ls1f{letter-spacing:4.761000px;}
.ls29{letter-spacing:4.800000px;}
.ls1a{letter-spacing:15.366000px;}
.ls30{letter-spacing:33.984000px;}
.ls20{letter-spacing:276.180000px;}
.ls1b{letter-spacing:276.240000px;}
.ls27{letter-spacing:278.991000px;}
.ls28{letter-spacing:280.131000px;}
.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;}
}
.ws1b{word-spacing:-72.144000px;}
.wsc{word-spacing:-72.000000px;}
.ws1c{word-spacing:-71.904000px;}
.ws11{word-spacing:-71.856000px;}
.ws24{word-spacing:-71.784000px;}
.ws25{word-spacing:-71.736000px;}
.ws23{word-spacing:-59.760000px;}
.ws26{word-spacing:-56.280000px;}
.ws10{word-spacing:-56.220000px;}
.ws16{word-spacing:-56.184000px;}
.ws21{word-spacing:-56.124000px;}
.wse{word-spacing:-52.080000px;}
.ws14{word-spacing:-52.044000px;}
.ws1e{word-spacing:-52.008000px;}
.ws19{word-spacing:-51.984000px;}
.ws28{word-spacing:-51.960000px;}
.ws1a{word-spacing:-51.804000px;}
.ws13{word-spacing:-43.890000px;}
.ws27{word-spacing:-30.135000px;}
.ws1f{word-spacing:-30.099000px;}
.ws22{word-spacing:-25.758000px;}
.ws20{word-spacing:-25.668000px;}
.ws12{word-spacing:-18.192000px;}
.ws1d{word-spacing:-18.024000px;}
.wsd{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.832000px;}
.wsa{word-spacing:-17.784000px;}
.ws1{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.000000px;}
.ws3{word-spacing:-13.524000px;}
.ws2{word-spacing:-13.512000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.488000px;}
.ws17{word-spacing:-12.750000px;}
.ws6{word-spacing:-10.512000px;}
.ws8{word-spacing:-10.506000px;}
.ws7{word-spacing:-10.500000px;}
.wsb{word-spacing:0.000000px;}
.ws15{word-spacing:6.546000px;}
.ws18{word-spacing:10.686000px;}
.wsf{word-spacing:204.240000px;}
.ws29{word-spacing:230.478000px;}
._3e{margin-left:-9.900000px;}
._39{margin-left:-8.040000px;}
._3f{margin-left:-5.568000px;}
._f{margin-left:-4.440000px;}
._2{margin-left:-3.240000px;}
._3{margin-left:-2.160000px;}
._1{margin-left:-1.140000px;}
._0{width:1.050000px;}
._6{width:2.376000px;}
._11{width:3.816000px;}
._14{width:5.274000px;}
._a{width:6.540000px;}
._4{width:7.560000px;}
._5{width:8.568000px;}
._7{width:10.368000px;}
._8{width:11.448000px;}
._12{width:12.672000px;}
._35{width:13.680000px;}
._c{width:14.832000px;}
._9{width:16.344000px;}
._3a{width:17.502000px;}
._1d{width:19.296000px;}
._20{width:20.304000px;}
._e{width:21.312000px;}
._22{width:22.440000px;}
._13{width:23.556000px;}
._b{width:24.720000px;}
._2c{width:25.854000px;}
._21{width:27.000000px;}
._34{width:28.128000px;}
._1a{width:29.448000px;}
._1b{width:30.480000px;}
._d{width:31.608000px;}
._33{width:32.832000px;}
._1c{width:33.840000px;}
._2a{width:35.352000px;}
._2f{width:36.648000px;}
._30{width:37.656000px;}
._32{width:38.880000px;}
._2e{width:40.176000px;}
._40{width:41.184000px;}
._2d{width:42.552000px;}
._2b{width:43.992000px;}
._19{width:45.360000px;}
._31{width:47.520000px;}
._36{width:48.702000px;}
._41{width:49.764000px;}
._46{width:50.976000px;}
._16{width:51.984000px;}
._17{width:53.784000px;}
._18{width:54.864000px;}
._25{width:56.808000px;}
._42{width:57.816000px;}
._45{width:58.998000px;}
._3b{width:60.336000px;}
._28{width:61.704000px;}
._29{width:62.928000px;}
._4d{width:64.440000px;}
._4e{width:66.240000px;}
._37{width:67.752000px;}
._38{width:68.976000px;}
._50{width:70.344000px;}
._23{width:71.928000px;}
._24{width:73.008000px;}
._3c{width:74.088000px;}
._3d{width:75.456000px;}
._49{width:83.880000px;}
._4a{width:84.888000px;}
._43{width:85.992000px;}
._44{width:87.144000px;}
._26{width:93.240000px;}
._27{width:94.320000px;}
._51{width:96.120000px;}
._15{width:100.296000px;}
._48{width:108.936000px;}
._10{width:121.968000px;}
._1e{width:130.734000px;}
._1f{width:131.832000px;}
._4f{width:133.272000px;}
._47{width:202.392000px;}
._4c{width:215.280000px;}
._4b{width:216.720000px;}
.fc2{color:transparent;}
.fc1{color:rgb(32,33,36);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.100000px;}
.y1f{bottom:3.900000px;}
.y23{bottom:3.915000px;}
.y7{bottom:5.400000px;}
.yb{bottom:6.000000px;}
.yc{bottom:6.750000px;}
.y103{bottom:6.900000px;}
.yff{bottom:7.035000px;}
.yfb{bottom:7.050000px;}
.y101{bottom:7.500000px;}
.yfd{bottom:7.515000px;}
.ya{bottom:19.950000px;}
.y6{bottom:20.550000px;}
.y1e{bottom:24.600000px;}
.y22{bottom:24.615000px;}
.y9{bottom:33.900000px;}
.y5{bottom:36.000000px;}
.y1d{bottom:45.300000px;}
.y3{bottom:57.637500px;}
.y1c{bottom:66.000000px;}
.y2{bottom:81.637500px;}
.y1b{bottom:86.700000px;}
.y108{bottom:111.487500px;}
.y3d{bottom:121.987500px;}
.yb5{bottom:124.387500px;}
.y68{bottom:125.287500px;}
.y91{bottom:126.637500px;}
.y107{bottom:135.337500px;}
.ydf{bottom:142.987500px;}
.y3c{bottom:145.837500px;}
.yb4{bottom:148.387500px;}
.y67{bottom:149.137500px;}
.y90{bottom:150.495000px;}
.y106{bottom:159.045000px;}
.yde{bottom:166.845000px;}
.y3b{bottom:169.695000px;}
.yb3{bottom:172.380000px;}
.y66{bottom:172.995000px;}
.y8f{bottom:174.345000px;}
.y105{bottom:182.895000px;}
.ydd{bottom:190.545000px;}
.y3a{bottom:193.395000px;}
.yb2{bottom:196.395000px;}
.y65{bottom:196.695000px;}
.y8e{bottom:198.195000px;}
.y104{bottom:206.745000px;}
.ydc{bottom:214.395000px;}
.y39{bottom:217.245000px;}
.y64{bottom:220.545000px;}
.yb1{bottom:220.695000px;}
.y8d{bottom:221.895000px;}
.y102{bottom:224.295000px;}
.ydb{bottom:238.245000px;}
.y38{bottom:241.095000px;}
.y63{bottom:244.395000px;}
.yb0{bottom:244.995000px;}
.y8c{bottom:245.745000px;}
.y100{bottom:248.745000px;}
.yda{bottom:261.945000px;}
.y37{bottom:264.795000px;}
.yaf{bottom:265.395000px;}
.y62{bottom:268.095000px;}
.y8b{bottom:269.595000px;}
.yfe{bottom:273.795000px;}
.yae{bottom:277.395000px;}
.yd9{bottom:285.795000px;}
.y36{bottom:288.645000px;}
.y61{bottom:291.945000px;}
.y8a{bottom:293.295000px;}
.yfc{bottom:298.380000px;}
.yd8{bottom:309.645000px;}
.y35{bottom:312.495000px;}
.yad{bottom:313.245000px;}
.y60{bottom:315.795000px;}
.y89{bottom:317.130000px;}
.yfa{bottom:323.445000px;}
.yd7{bottom:333.345000px;}
.y34{bottom:336.195000px;}
.yac{bottom:337.095000px;}
.y5f{bottom:339.495000px;}
.y88{bottom:340.995000px;}
.yf9{bottom:354.945000px;}
.yd6{bottom:357.195000px;}
.y33{bottom:360.045000px;}
.yab{bottom:360.795000px;}
.y5e{bottom:363.345000px;}
.y87{bottom:364.695000px;}
.yf8{bottom:378.795000px;}
.yd5{bottom:381.075000px;}
.y32{bottom:383.925000px;}
.yaa{bottom:384.675000px;}
.y5d{bottom:387.225000px;}
.y86{bottom:388.575000px;}
.yf7{bottom:402.675000px;}
.yd4{bottom:404.775000px;}
.y31{bottom:407.775000px;}
.ya9{bottom:408.525000px;}
.y5c{bottom:410.925000px;}
.y85{bottom:412.425000px;}
.yf6{bottom:426.375000px;}
.yd3{bottom:428.625000px;}
.y30{bottom:431.475000px;}
.ya8{bottom:432.225000px;}
.y5b{bottom:434.775000px;}
.y84{bottom:436.125000px;}
.yf5{bottom:450.225000px;}
.yd2{bottom:452.475000px;}
.y2f{bottom:455.325000px;}
.ya7{bottom:456.075000px;}
.y5a{bottom:458.625000px;}
.y83{bottom:459.975000px;}
.yf4{bottom:474.075000px;}
.yd1{bottom:478.575000px;}
.y2e{bottom:479.175000px;}
.ya6{bottom:479.925000px;}
.y59{bottom:482.325000px;}
.y82{bottom:483.825000px;}
.yf3{bottom:497.775000px;}
.yd0{bottom:502.275000px;}
.y2d{bottom:502.875000px;}
.ya5{bottom:503.775000px;}
.y58{bottom:506.175000px;}
.y81{bottom:507.525000px;}
.yf2{bottom:521.625000px;}
.ycf{bottom:525.825000px;}
.y2c{bottom:526.725000px;}
.ya4{bottom:527.475000px;}
.y57{bottom:530.025000px;}
.y80{bottom:531.375000px;}
.ycd{bottom:537.825000px;}
.yf1{bottom:545.475000px;}
.y2b{bottom:550.575000px;}
.ya3{bottom:551.325000px;}
.yce{bottom:551.475000px;}
.y56{bottom:553.875000px;}
.y7f{bottom:555.225000px;}
.yf0{bottom:569.325000px;}
.ycc{bottom:573.975000px;}
.y2a{bottom:574.275000px;}
.ya2{bottom:575.175000px;}
.y55{bottom:577.575000px;}
.y7e{bottom:579.075000px;}
.yef{bottom:593.025000px;}
.ycb{bottom:597.825000px;}
.y29{bottom:598.125000px;}
.ya1{bottom:598.875000px;}
.y54{bottom:601.425000px;}
.y7d{bottom:602.775000px;}
.yee{bottom:616.875000px;}
.yca{bottom:621.825000px;}
.y28{bottom:621.975000px;}
.ya0{bottom:622.725000px;}
.y53{bottom:625.275000px;}
.y7c{bottom:626.625000px;}
.yed{bottom:640.725000px;}
.y27{bottom:645.675000px;}
.yc9{bottom:645.825000px;}
.y9f{bottom:646.575000px;}
.y52{bottom:648.975000px;}
.y7b{bottom:650.475000px;}
.yec{bottom:664.425000px;}
.y26{bottom:669.525000px;}
.y9e{bottom:670.275000px;}
.y51{bottom:672.825000px;}
.y7a{bottom:674.175000px;}
.yeb{bottom:688.275000px;}
.y25{bottom:693.375000px;}
.yc8{bottom:693.975000px;}
.y9d{bottom:694.125000px;}
.y50{bottom:696.675000px;}
.y79{bottom:698.025000px;}
.yea{bottom:712.125000px;}
.yc7{bottom:717.825000px;}
.y9c{bottom:717.975000px;}
.y4f{bottom:720.375000px;}
.y78{bottom:721.875000px;}
.y24{bottom:726.075000px;}
.ye9{bottom:735.825000px;}
.y9b{bottom:741.720000px;}
.y21{bottom:742.905000px;}
.y4e{bottom:744.270000px;}
.y77{bottom:745.620000px;}
.ye8{bottom:759.720000px;}
.yc6{bottom:765.420000px;}
.y9a{bottom:765.720000px;}
.y4d{bottom:768.120000px;}
.y76{bottom:769.470000px;}
.ye7{bottom:783.570000px;}
.y20{bottom:784.320000px;}
.yc5{bottom:789.270000px;}
.y99{bottom:790.020000px;}
.y4c{bottom:791.820000px;}
.y75{bottom:793.320000px;}
.y1a{bottom:805.020000px;}
.ye6{bottom:807.270000px;}
.yc4{bottom:813.120000px;}
.y98{bottom:814.320000px;}
.y4b{bottom:815.670000px;}
.y74{bottom:817.020000px;}
.ye5{bottom:831.120000px;}
.yc3{bottom:836.820000px;}
.y97{bottom:838.620000px;}
.y4a{bottom:839.520000px;}
.y73{bottom:840.870000px;}
.ye4{bottom:854.970000px;}
.yc2{bottom:860.670000px;}
.y96{bottom:862.770000px;}
.y49{bottom:863.520000px;}
.y72{bottom:864.720000px;}
.ye3{bottom:878.670000px;}
.yc1{bottom:884.520000px;}
.y95{bottom:886.920000px;}
.y48{bottom:887.520000px;}
.y71{bottom:888.420000px;}
.ye2{bottom:902.520000px;}
.yc0{bottom:908.220000px;}
.y94{bottom:910.770000px;}
.y47{bottom:911.370000px;}
.y19{bottom:912.120000px;}
.y70{bottom:912.270000px;}
.ye1{bottom:926.370000px;}
.y18{bottom:931.320000px;}
.ybf{bottom:932.070000px;}
.y93{bottom:934.770000px;}
.y46{bottom:935.220000px;}
.y6f{bottom:936.120000px;}
.ye0{bottom:946.170000px;}
.y17{bottom:952.020000px;}
.ybe{bottom:955.920000px;}
.y45{bottom:958.920000px;}
.y6e{bottom:959.970000px;}
.y16{bottom:972.720000px;}
.ybd{bottom:976.320000px;}
.ybc{bottom:979.920000px;}
.y44{bottom:982.920000px;}
.y6d{bottom:983.670000px;}
.y15{bottom:993.420000px;}
.ybb{bottom:1000.470000px;}
.yba{bottom:1004.070000px;}
.y43{bottom:1007.070000px;}
.y6c{bottom:1007.520000px;}
.y14{bottom:1014.120000px;}
.yb9{bottom:1028.370000px;}
.y42{bottom:1030.770000px;}
.y6b{bottom:1031.370000px;}
.y13{bottom:1034.820000px;}
.yb8{bottom:1052.670000px;}
.y41{bottom:1054.620000px;}
.y92{bottom:1054.770000px;}
.y6a{bottom:1055.070000px;}
.y12{bottom:1055.520000px;}
.yb7{bottom:1075.470000px;}
.y11{bottom:1076.220000px;}
.y40{bottom:1078.620000px;}
.y69{bottom:1078.920000px;}
.yb6{bottom:1079.070000px;}
.y10{bottom:1096.950000px;}
.y3f{bottom:1102.800000px;}
.y3e{bottom:1126.500000px;}
.yf{bottom:1129.650000px;}
.ye{bottom:1150.350000px;}
.y1{bottom:1176.900000px;}
.y4{bottom:1202.550000px;}
.y8{bottom:1207.800000px;}
.h8{height:17.887500px;}
.he{height:20.700000px;}
.h1d{height:23.700000px;}
.h1b{height:23.850000px;}
.h1c{height:24.300000px;}
.hf{height:41.400000px;}
.h6{height:45.300000px;}
.h3{height:48.600000px;}
.h7{height:52.998047px;}
.h5{height:55.942383px;}
.h4{height:58.886719px;}
.h15{height:60.679688px;}
.h10{height:63.457031px;}
.hc{height:64.775391px;}
.h9{height:65.645508px;}
.h12{height:70.628906px;}
.hb{height:70.664062px;}
.h11{height:71.228906px;}
.h19{height:71.864062px;}
.ha{height:72.562500px;}
.h1e{height:74.004654px;}
.h16{height:77.857031px;}
.h17{height:80.264063px;}
.h2{height:82.441406px;}
.h18{height:85.064062px;}
.hd{height:103.500000px;}
.h13{height:115.279688px;}
.h1a{height:119.264062px;}
.h14{height:125.864063px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wa{width:144.300000px;}
.w6{width:178.350000px;}
.w9{width:244.095000px;}
.w5{width:262.995000px;}
.w3{width:282.495000px;}
.w4{width:297.780000px;}
.w7{width:745.770000px;}
.w8{width:750.270000px;}
.w2{width:892.949987px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:6.900000px;}
.x9{left:12.435000px;}
.x7{left:16.200000px;}
.xe{left:17.295000px;}
.x1c{left:20.887500px;}
.x5{left:22.200000px;}
.xb{left:32.100000px;}
.x3{left:42.599987px;}
.x31{left:69.599987px;}
.x1d{left:95.699987px;}
.x10{left:97.349987px;}
.x1b{left:100.200000px;}
.x1a{left:104.700000px;}
.xd{left:106.980000px;}
.x22{left:116.249987px;}
.x6{left:121.687500px;}
.x21{left:123.037487px;}
.xa{left:128.130000px;}
.x23{left:132.637487px;}
.x20{left:133.837487px;}
.x1{left:303.494987px;}
.x8{left:305.145000px;}
.x11{left:362.744987px;}
.x19{left:448.124987px;}
.x13{left:451.124987px;}
.x1e{left:457.274987px;}
.x32{left:484.274987px;}
.x27{left:487.424987px;}
.x28{left:491.774987px;}
.x18{left:492.974987px;}
.x29{left:501.974987px;}
.x1f{left:510.374987px;}
.x24{left:544.724987px;}
.x26{left:570.074987px;}
.x12{left:580.274987px;}
.x15{left:583.124987px;}
.x17{left:588.524987px;}
.x2a{left:591.824987px;}
.x2b{left:599.324987px;}
.x25{left:606.074987px;}
.xc{left:625.425000px;}
.x2c{left:655.004987px;}
.x14{left:694.619987px;}
.x2e{left:696.269987px;}
.x2d{left:697.754987px;}
.x30{left:702.870000px;}
.xf{left:713.655000px;}
.x2{left:829.619987px;}
.x2f{left:839.204987px;}
.x16{left:850.619987px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v7{vertical-align:-4.266667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:6.400000pt;}
.vb{vertical-align:8.533333pt;}
.v3{vertical-align:12.800000pt;}
.v9{vertical-align:13.866667pt;}
.v2{vertical-align:23.466667pt;}
.v8{vertical-align:36.266667pt;}
.v5{vertical-align:42.666667pt;}
.v4{vertical-align:48.533333pt;}
.va{vertical-align:56.000000pt;}
.lsa{letter-spacing:-2.666667pt;}
.lsc{letter-spacing:-2.661333pt;}
.ls9{letter-spacing:-2.656000pt;}
.lsb{letter-spacing:-2.400000pt;}
.ls2e{letter-spacing:-0.234667pt;}
.lse{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.149333pt;}
.ls2a{letter-spacing:-0.128000pt;}
.ls2d{letter-spacing:-0.085333pt;}
.ls8{letter-spacing:-0.010667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.010667pt;}
.ls1{letter-spacing:0.021333pt;}
.ls4{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.106667pt;}
.ls2c{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.133333pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls25{letter-spacing:0.170667pt;}
.ls14{letter-spacing:0.202667pt;}
.ls2b{letter-spacing:0.213333pt;}
.ls15{letter-spacing:0.224000pt;}
.lsf{letter-spacing:0.234667pt;}
.ls2{letter-spacing:0.266667pt;}
.ls12{letter-spacing:0.277333pt;}
.ls2f{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.533333pt;}
.ls17{letter-spacing:1.301333pt;}
.ls11{letter-spacing:1.322667pt;}
.ls22{letter-spacing:1.632000pt;}
.ls21{letter-spacing:1.728000pt;}
.ls19{letter-spacing:1.952000pt;}
.ls18{letter-spacing:2.026667pt;}
.ls23{letter-spacing:2.165333pt;}
.ls26{letter-spacing:2.552000pt;}
.ls16{letter-spacing:2.605333pt;}
.ls1c{letter-spacing:2.832000pt;}
.ls10{letter-spacing:3.165333pt;}
.ls13{letter-spacing:3.645333pt;}
.ls1d{letter-spacing:3.733333pt;}
.ls24{letter-spacing:3.752000pt;}
.ls1f{letter-spacing:4.232000pt;}
.ls29{letter-spacing:4.266667pt;}
.ls1a{letter-spacing:13.658667pt;}
.ls30{letter-spacing:30.208000pt;}
.ls20{letter-spacing:245.493333pt;}
.ls1b{letter-spacing:245.546667pt;}
.ls27{letter-spacing:247.992000pt;}
.ls28{letter-spacing:249.005333pt;}
.ws1b{word-spacing:-64.128000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws1c{word-spacing:-63.914667pt;}
.ws11{word-spacing:-63.872000pt;}
.ws24{word-spacing:-63.808000pt;}
.ws25{word-spacing:-63.765333pt;}
.ws23{word-spacing:-53.120000pt;}
.ws26{word-spacing:-50.026667pt;}
.ws10{word-spacing:-49.973333pt;}
.ws16{word-spacing:-49.941333pt;}
.ws21{word-spacing:-49.888000pt;}
.wse{word-spacing:-46.293333pt;}
.ws14{word-spacing:-46.261333pt;}
.ws1e{word-spacing:-46.229333pt;}
.ws19{word-spacing:-46.208000pt;}
.ws28{word-spacing:-46.186667pt;}
.ws1a{word-spacing:-46.048000pt;}
.ws13{word-spacing:-39.013333pt;}
.ws27{word-spacing:-26.786667pt;}
.ws1f{word-spacing:-26.754667pt;}
.ws22{word-spacing:-22.896000pt;}
.ws20{word-spacing:-22.816000pt;}
.ws12{word-spacing:-16.170667pt;}
.ws1d{word-spacing:-16.021333pt;}
.wsd{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.850667pt;}
.wsa{word-spacing:-15.808000pt;}
.ws1{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-12.021333pt;}
.ws2{word-spacing:-12.010667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws17{word-spacing:-11.333333pt;}
.ws6{word-spacing:-9.344000pt;}
.ws8{word-spacing:-9.338667pt;}
.ws7{word-spacing:-9.333333pt;}
.wsb{word-spacing:0.000000pt;}
.ws15{word-spacing:5.818667pt;}
.ws18{word-spacing:9.498667pt;}
.wsf{word-spacing:181.546667pt;}
.ws29{word-spacing:204.869333pt;}
._3e{margin-left:-8.800000pt;}
._39{margin-left:-7.146667pt;}
._3f{margin-left:-4.949333pt;}
._f{margin-left:-3.946667pt;}
._2{margin-left:-2.880000pt;}
._3{margin-left:-1.920000pt;}
._1{margin-left:-1.013333pt;}
._0{width:0.933333pt;}
._6{width:2.112000pt;}
._11{width:3.392000pt;}
._14{width:4.688000pt;}
._a{width:5.813333pt;}
._4{width:6.720000pt;}
._5{width:7.616000pt;}
._7{width:9.216000pt;}
._8{width:10.176000pt;}
._12{width:11.264000pt;}
._35{width:12.160000pt;}
._c{width:13.184000pt;}
._9{width:14.528000pt;}
._3a{width:15.557333pt;}
._1d{width:17.152000pt;}
._20{width:18.048000pt;}
._e{width:18.944000pt;}
._22{width:19.946667pt;}
._13{width:20.938667pt;}
._b{width:21.973333pt;}
._2c{width:22.981333pt;}
._21{width:24.000000pt;}
._34{width:25.002667pt;}
._1a{width:26.176000pt;}
._1b{width:27.093333pt;}
._d{width:28.096000pt;}
._33{width:29.184000pt;}
._1c{width:30.080000pt;}
._2a{width:31.424000pt;}
._2f{width:32.576000pt;}
._30{width:33.472000pt;}
._32{width:34.560000pt;}
._2e{width:35.712000pt;}
._40{width:36.608000pt;}
._2d{width:37.824000pt;}
._2b{width:39.104000pt;}
._19{width:40.320000pt;}
._31{width:42.240000pt;}
._36{width:43.290667pt;}
._41{width:44.234667pt;}
._46{width:45.312000pt;}
._16{width:46.208000pt;}
._17{width:47.808000pt;}
._18{width:48.768000pt;}
._25{width:50.496000pt;}
._42{width:51.392000pt;}
._45{width:52.442667pt;}
._3b{width:53.632000pt;}
._28{width:54.848000pt;}
._29{width:55.936000pt;}
._4d{width:57.280000pt;}
._4e{width:58.880000pt;}
._37{width:60.224000pt;}
._38{width:61.312000pt;}
._50{width:62.528000pt;}
._23{width:63.936000pt;}
._24{width:64.896000pt;}
._3c{width:65.856000pt;}
._3d{width:67.072000pt;}
._49{width:74.560000pt;}
._4a{width:75.456000pt;}
._43{width:76.437333pt;}
._44{width:77.461333pt;}
._26{width:82.880000pt;}
._27{width:83.840000pt;}
._51{width:85.440000pt;}
._15{width:89.152000pt;}
._48{width:96.832000pt;}
._10{width:108.416000pt;}
._1e{width:116.208000pt;}
._1f{width:117.184000pt;}
._4f{width:118.464000pt;}
._47{width:179.904000pt;}
._4c{width:191.360000pt;}
._4b{width:192.640000pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:1.866667pt;}
.y1f{bottom:3.466667pt;}
.y23{bottom:3.480000pt;}
.y7{bottom:4.800000pt;}
.yb{bottom:5.333333pt;}
.yc{bottom:6.000000pt;}
.y103{bottom:6.133333pt;}
.yff{bottom:6.253333pt;}
.yfb{bottom:6.266667pt;}
.y101{bottom:6.666667pt;}
.yfd{bottom:6.680000pt;}
.ya{bottom:17.733333pt;}
.y6{bottom:18.266667pt;}
.y1e{bottom:21.866667pt;}
.y22{bottom:21.880000pt;}
.y9{bottom:30.133333pt;}
.y5{bottom:32.000000pt;}
.y1d{bottom:40.266667pt;}
.y3{bottom:51.233333pt;}
.y1c{bottom:58.666667pt;}
.y2{bottom:72.566667pt;}
.y1b{bottom:77.066667pt;}
.y108{bottom:99.100000pt;}
.y3d{bottom:108.433333pt;}
.yb5{bottom:110.566667pt;}
.y68{bottom:111.366667pt;}
.y91{bottom:112.566667pt;}
.y107{bottom:120.300000pt;}
.ydf{bottom:127.100000pt;}
.y3c{bottom:129.633333pt;}
.yb4{bottom:131.900000pt;}
.y67{bottom:132.566667pt;}
.y90{bottom:133.773333pt;}
.y106{bottom:141.373333pt;}
.yde{bottom:148.306667pt;}
.y3b{bottom:150.840000pt;}
.yb3{bottom:153.226667pt;}
.y66{bottom:153.773333pt;}
.y8f{bottom:154.973333pt;}
.y105{bottom:162.573333pt;}
.ydd{bottom:169.373333pt;}
.y3a{bottom:171.906667pt;}
.yb2{bottom:174.573333pt;}
.y65{bottom:174.840000pt;}
.y8e{bottom:176.173333pt;}
.y104{bottom:183.773333pt;}
.ydc{bottom:190.573333pt;}
.y39{bottom:193.106667pt;}
.y64{bottom:196.040000pt;}
.yb1{bottom:196.173333pt;}
.y8d{bottom:197.240000pt;}
.y102{bottom:199.373333pt;}
.ydb{bottom:211.773333pt;}
.y38{bottom:214.306667pt;}
.y63{bottom:217.240000pt;}
.yb0{bottom:217.773333pt;}
.y8c{bottom:218.440000pt;}
.y100{bottom:221.106667pt;}
.yda{bottom:232.840000pt;}
.y37{bottom:235.373333pt;}
.yaf{bottom:235.906667pt;}
.y62{bottom:238.306667pt;}
.y8b{bottom:239.640000pt;}
.yfe{bottom:243.373333pt;}
.yae{bottom:246.573333pt;}
.yd9{bottom:254.040000pt;}
.y36{bottom:256.573333pt;}
.y61{bottom:259.506667pt;}
.y8a{bottom:260.706667pt;}
.yfc{bottom:265.226667pt;}
.yd8{bottom:275.240000pt;}
.y35{bottom:277.773333pt;}
.yad{bottom:278.440000pt;}
.y60{bottom:280.706667pt;}
.y89{bottom:281.893333pt;}
.yfa{bottom:287.506667pt;}
.yd7{bottom:296.306667pt;}
.y34{bottom:298.840000pt;}
.yac{bottom:299.640000pt;}
.y5f{bottom:301.773333pt;}
.y88{bottom:303.106667pt;}
.yf9{bottom:315.506667pt;}
.yd6{bottom:317.506667pt;}
.y33{bottom:320.040000pt;}
.yab{bottom:320.706667pt;}
.y5e{bottom:322.973333pt;}
.y87{bottom:324.173333pt;}
.yf8{bottom:336.706667pt;}
.yd5{bottom:338.733333pt;}
.y32{bottom:341.266667pt;}
.yaa{bottom:341.933333pt;}
.y5d{bottom:344.200000pt;}
.y86{bottom:345.400000pt;}
.yf7{bottom:357.933333pt;}
.yd4{bottom:359.800000pt;}
.y31{bottom:362.466667pt;}
.ya9{bottom:363.133333pt;}
.y5c{bottom:365.266667pt;}
.y85{bottom:366.600000pt;}
.yf6{bottom:379.000000pt;}
.yd3{bottom:381.000000pt;}
.y30{bottom:383.533333pt;}
.ya8{bottom:384.200000pt;}
.y5b{bottom:386.466667pt;}
.y84{bottom:387.666667pt;}
.yf5{bottom:400.200000pt;}
.yd2{bottom:402.200000pt;}
.y2f{bottom:404.733333pt;}
.ya7{bottom:405.400000pt;}
.y5a{bottom:407.666667pt;}
.y83{bottom:408.866667pt;}
.yf4{bottom:421.400000pt;}
.yd1{bottom:425.400000pt;}
.y2e{bottom:425.933333pt;}
.ya6{bottom:426.600000pt;}
.y59{bottom:428.733333pt;}
.y82{bottom:430.066667pt;}
.yf3{bottom:442.466667pt;}
.yd0{bottom:446.466667pt;}
.y2d{bottom:447.000000pt;}
.ya5{bottom:447.800000pt;}
.y58{bottom:449.933333pt;}
.y81{bottom:451.133333pt;}
.yf2{bottom:463.666667pt;}
.ycf{bottom:467.400000pt;}
.y2c{bottom:468.200000pt;}
.ya4{bottom:468.866667pt;}
.y57{bottom:471.133333pt;}
.y80{bottom:472.333333pt;}
.ycd{bottom:478.066667pt;}
.yf1{bottom:484.866667pt;}
.y2b{bottom:489.400000pt;}
.ya3{bottom:490.066667pt;}
.yce{bottom:490.200000pt;}
.y56{bottom:492.333333pt;}
.y7f{bottom:493.533333pt;}
.yf0{bottom:506.066667pt;}
.ycc{bottom:510.200000pt;}
.y2a{bottom:510.466667pt;}
.ya2{bottom:511.266667pt;}
.y55{bottom:513.400000pt;}
.y7e{bottom:514.733333pt;}
.yef{bottom:527.133333pt;}
.ycb{bottom:531.400000pt;}
.y29{bottom:531.666667pt;}
.ya1{bottom:532.333333pt;}
.y54{bottom:534.600000pt;}
.y7d{bottom:535.800000pt;}
.yee{bottom:548.333333pt;}
.yca{bottom:552.733333pt;}
.y28{bottom:552.866667pt;}
.ya0{bottom:553.533333pt;}
.y53{bottom:555.800000pt;}
.y7c{bottom:557.000000pt;}
.yed{bottom:569.533333pt;}
.y27{bottom:573.933333pt;}
.yc9{bottom:574.066667pt;}
.y9f{bottom:574.733333pt;}
.y52{bottom:576.866667pt;}
.y7b{bottom:578.200000pt;}
.yec{bottom:590.600000pt;}
.y26{bottom:595.133333pt;}
.y9e{bottom:595.800000pt;}
.y51{bottom:598.066667pt;}
.y7a{bottom:599.266667pt;}
.yeb{bottom:611.800000pt;}
.y25{bottom:616.333333pt;}
.yc8{bottom:616.866667pt;}
.y9d{bottom:617.000000pt;}
.y50{bottom:619.266667pt;}
.y79{bottom:620.466667pt;}
.yea{bottom:633.000000pt;}
.yc7{bottom:638.066667pt;}
.y9c{bottom:638.200000pt;}
.y4f{bottom:640.333333pt;}
.y78{bottom:641.666667pt;}
.y24{bottom:645.400000pt;}
.ye9{bottom:654.066667pt;}
.y9b{bottom:659.306667pt;}
.y21{bottom:660.360000pt;}
.y4e{bottom:661.573333pt;}
.y77{bottom:662.773333pt;}
.ye8{bottom:675.306667pt;}
.yc6{bottom:680.373333pt;}
.y9a{bottom:680.640000pt;}
.y4d{bottom:682.773333pt;}
.y76{bottom:683.973333pt;}
.ye7{bottom:696.506667pt;}
.y20{bottom:697.173333pt;}
.yc5{bottom:701.573333pt;}
.y99{bottom:702.240000pt;}
.y4c{bottom:703.840000pt;}
.y75{bottom:705.173333pt;}
.y1a{bottom:715.573333pt;}
.ye6{bottom:717.573333pt;}
.yc4{bottom:722.773333pt;}
.y98{bottom:723.840000pt;}
.y4b{bottom:725.040000pt;}
.y74{bottom:726.240000pt;}
.ye5{bottom:738.773333pt;}
.yc3{bottom:743.840000pt;}
.y97{bottom:745.440000pt;}
.y4a{bottom:746.240000pt;}
.y73{bottom:747.440000pt;}
.ye4{bottom:759.973333pt;}
.yc2{bottom:765.040000pt;}
.y96{bottom:766.906667pt;}
.y49{bottom:767.573333pt;}
.y72{bottom:768.640000pt;}
.ye3{bottom:781.040000pt;}
.yc1{bottom:786.240000pt;}
.y95{bottom:788.373333pt;}
.y48{bottom:788.906667pt;}
.y71{bottom:789.706667pt;}
.ye2{bottom:802.240000pt;}
.yc0{bottom:807.306667pt;}
.y94{bottom:809.573333pt;}
.y47{bottom:810.106667pt;}
.y19{bottom:810.773333pt;}
.y70{bottom:810.906667pt;}
.ye1{bottom:823.440000pt;}
.y18{bottom:827.840000pt;}
.ybf{bottom:828.506667pt;}
.y93{bottom:830.906667pt;}
.y46{bottom:831.306667pt;}
.y6f{bottom:832.106667pt;}
.ye0{bottom:841.040000pt;}
.y17{bottom:846.240000pt;}
.ybe{bottom:849.706667pt;}
.y45{bottom:852.373333pt;}
.y6e{bottom:853.306667pt;}
.y16{bottom:864.640000pt;}
.ybd{bottom:867.840000pt;}
.ybc{bottom:871.040000pt;}
.y44{bottom:873.706667pt;}
.y6d{bottom:874.373333pt;}
.y15{bottom:883.040000pt;}
.ybb{bottom:889.306667pt;}
.yba{bottom:892.506667pt;}
.y43{bottom:895.173333pt;}
.y6c{bottom:895.573333pt;}
.y14{bottom:901.440000pt;}
.yb9{bottom:914.106667pt;}
.y42{bottom:916.240000pt;}
.y6b{bottom:916.773333pt;}
.y13{bottom:919.840000pt;}
.yb8{bottom:935.706667pt;}
.y41{bottom:937.440000pt;}
.y92{bottom:937.573333pt;}
.y6a{bottom:937.840000pt;}
.y12{bottom:938.240000pt;}
.yb7{bottom:955.973333pt;}
.y11{bottom:956.640000pt;}
.y40{bottom:958.773333pt;}
.y69{bottom:959.040000pt;}
.yb6{bottom:959.173333pt;}
.y10{bottom:975.066667pt;}
.y3f{bottom:980.266667pt;}
.y3e{bottom:1001.333333pt;}
.yf{bottom:1004.133333pt;}
.ye{bottom:1022.533333pt;}
.y1{bottom:1046.133333pt;}
.y4{bottom:1068.933333pt;}
.y8{bottom:1073.600000pt;}
.h8{height:15.900000pt;}
.he{height:18.400000pt;}
.h1d{height:21.066667pt;}
.h1b{height:21.200000pt;}
.h1c{height:21.600000pt;}
.hf{height:36.800000pt;}
.h6{height:40.266667pt;}
.h3{height:43.200000pt;}
.h7{height:47.109375pt;}
.h5{height:49.726562pt;}
.h4{height:52.343750pt;}
.h15{height:53.937500pt;}
.h10{height:56.406250pt;}
.hc{height:57.578125pt;}
.h9{height:58.351562pt;}
.h12{height:62.781250pt;}
.hb{height:62.812500pt;}
.h11{height:63.314583pt;}
.h19{height:63.879167pt;}
.ha{height:64.500000pt;}
.h1e{height:65.781915pt;}
.h16{height:69.206250pt;}
.h17{height:71.345833pt;}
.h2{height:73.281250pt;}
.h18{height:75.612500pt;}
.hd{height:92.000000pt;}
.h13{height:102.470833pt;}
.h1a{height:106.012500pt;}
.h14{height:111.879167pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wa{width:128.266667pt;}
.w6{width:158.533333pt;}
.w9{width:216.973333pt;}
.w5{width:233.773333pt;}
.w3{width:251.106667pt;}
.w4{width:264.693333pt;}
.w7{width:662.906667pt;}
.w8{width:666.906667pt;}
.w2{width:793.733322pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.133333pt;}
.x9{left:11.053333pt;}
.x7{left:14.400000pt;}
.xe{left:15.373333pt;}
.x1c{left:18.566667pt;}
.x5{left:19.733333pt;}
.xb{left:28.533333pt;}
.x3{left:37.866655pt;}
.x31{left:61.866655pt;}
.x1d{left:85.066655pt;}
.x10{left:86.533322pt;}
.x1b{left:89.066667pt;}
.x1a{left:93.066667pt;}
.xd{left:95.093333pt;}
.x22{left:103.333322pt;}
.x6{left:108.166667pt;}
.x21{left:109.366655pt;}
.xa{left:113.893333pt;}
.x23{left:117.899988pt;}
.x20{left:118.966655pt;}
.x1{left:269.773322pt;}
.x8{left:271.240000pt;}
.x11{left:322.439988pt;}
.x19{left:398.333322pt;}
.x13{left:400.999988pt;}
.x1e{left:406.466655pt;}
.x32{left:430.466655pt;}
.x27{left:433.266655pt;}
.x28{left:437.133322pt;}
.x18{left:438.199988pt;}
.x29{left:446.199988pt;}
.x1f{left:453.666655pt;}
.x24{left:484.199988pt;}
.x26{left:506.733322pt;}
.x12{left:515.799988pt;}
.x15{left:518.333322pt;}
.x17{left:523.133322pt;}
.x2a{left:526.066655pt;}
.x2b{left:532.733322pt;}
.x25{left:538.733322pt;}
.xc{left:555.933333pt;}
.x2c{left:582.226655pt;}
.x14{left:617.439988pt;}
.x2e{left:618.906655pt;}
.x2d{left:620.226655pt;}
.x30{left:624.773333pt;}
.xf{left:634.360000pt;}
.x2{left:737.439988pt;}
.x2f{left:745.959988pt;}
.x16{left:756.106655pt;}
}




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