
    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_73469dc8e5baab21e9fc063a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_72cb62b48bc321af593c86da.woff')format("woff");}.ff2{font-family:ff2;line-height:1.091797;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_ed1a2b0b655ee936da282fbf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_4524085f7de634ce6779e337.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_462e0878df53ef27966810b3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.087891;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_fdbfd6c2a2aaa343953b8788.woff')format("woff");}.ff6{font-family:ff6;line-height:1.087891;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')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);}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-2.040000px;}
.lsd{letter-spacing:-0.876000px;}
.ls3{letter-spacing:-0.444000px;}
.lsc{letter-spacing:-0.432000px;}
.ls4{letter-spacing:-0.366000px;}
.lsb{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.330000px;}
.lse{letter-spacing:-0.246000px;}
.ls8{letter-spacing:-0.198000px;}
.lsf{letter-spacing:-0.174000px;}
.ls9{letter-spacing:-0.138000px;}
.ls6{letter-spacing:-0.012000px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000001px;}
.ls13{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.300000px;}
.lsa{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.420000px;}
.ls16{letter-spacing:0.540000px;}
.ls2{letter-spacing:35.652000px;}
.ls7{letter-spacing:63.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-60.000000px;}
.ws8{word-spacing:-13.704000px;}
.ws0{word-spacing:-13.398000px;}
.ws5{word-spacing:-13.386000px;}
.ws7{word-spacing:-13.260000px;}
.wsb{word-spacing:-13.152000px;}
.ws4{word-spacing:-13.068000px;}
.ws9{word-spacing:-13.032000px;}
.ws3{word-spacing:-12.954000px;}
.ws1{word-spacing:-12.910800px;}
.ws10{word-spacing:-12.720000px;}
.wse{word-spacing:-12.540000px;}
.wsa{word-spacing:-12.522000px;}
.wsd{word-spacing:-12.240000px;}
.wsc{word-spacing:-12.180000px;}
.wsf{word-spacing:-10.140000px;}
.ws2{word-spacing:0.000000px;}
._10{margin-left:-9.240000px;}
._11{margin-left:-7.422000px;}
._f{margin-left:-5.412000px;}
._8{margin-left:-4.398000px;}
._c{margin-left:-3.317250px;}
._2{margin-left:-2.286000px;}
._0{margin-left:-1.218000px;}
._1{width:1.206000px;}
._5{width:2.244000px;}
._3{width:3.510000px;}
._4{width:4.674000px;}
._b{width:5.874000px;}
._9{width:7.830000px;}
._a{width:9.000000px;}
._6{width:11.778000px;}
._d{width:14.874000px;}
._7{width:16.146000px;}
._e{width:36.330000px;}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:60.000000px;}
.fs2{font-size:63.600000px;}
.fs1{font-size:63.750000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.yb5{bottom:4.200000px;}
.y134{bottom:4.245000px;}
.y32{bottom:4.500000px;}
.y73{bottom:4.800000px;}
.yb7{bottom:13.200000px;}
.yc0{bottom:13.500000px;}
.y130{bottom:13.530000px;}
.y133{bottom:13.545000px;}
.y3c{bottom:18.000000px;}
.y3e{bottom:18.045000px;}
.y36{bottom:18.300000px;}
.y57{bottom:18.337500px;}
.y34{bottom:18.345000px;}
.yb3{bottom:22.500000px;}
.y115{bottom:22.530000px;}
.yeb{bottom:22.537500px;}
.ycf{bottom:22.545000px;}
.yda{bottom:22.800000px;}
.y31{bottom:24.600000px;}
.yaf{bottom:24.630000px;}
.y70{bottom:24.637500px;}
.ya1{bottom:24.645000px;}
.y72{bottom:24.900000px;}
.ya8{bottom:24.945000px;}
.yb6{bottom:31.500000px;}
.ye7{bottom:31.537500px;}
.ybe{bottom:31.800000px;}
.y113{bottom:31.830000px;}
.y124{bottom:31.837500px;}
.yca{bottom:31.845000px;}
.y19{bottom:38.925000px;}
.y1a{bottom:39.450000px;}
.yb4{bottom:40.800000px;}
.yf4{bottom:40.830000px;}
.yea{bottom:40.837500px;}
.yce{bottom:40.845000px;}
.yd9{bottom:41.100000px;}
.y13c{bottom:41.145000px;}
.y67{bottom:44.700000px;}
.y9a{bottom:44.730000px;}
.y8f{bottom:44.737500px;}
.y61{bottom:44.745000px;}
.y6d{bottom:45.000000px;}
.y6f{bottom:45.037500px;}
.ya7{bottom:45.045000px;}
.yfd{bottom:49.800000px;}
.ye6{bottom:49.837500px;}
.y100{bottom:49.845000px;}
.ybd{bottom:50.100000px;}
.y112{bottom:50.130000px;}
.y123{bottom:50.137500px;}
.yc9{bottom:50.145000px;}
.yba{bottom:59.100000px;}
.yf3{bottom:59.130000px;}
.ye1{bottom:59.137500px;}
.yc7{bottom:59.145000px;}
.yd5{bottom:59.400000px;}
.y132{bottom:59.445000px;}
.y92{bottom:64.800000px;}
.y66{bottom:64.830000px;}
.y8e{bottom:64.837500px;}
.y85{bottom:64.845000px;}
.y6c{bottom:65.100000px;}
.ya3{bottom:65.130000px;}
.y97{bottom:65.137500px;}
.y91{bottom:65.145000px;}
.yfc{bottom:68.100000px;}
.y12a{bottom:68.130000px;}
.ye5{bottom:68.137500px;}
.yff{bottom:68.145000px;}
.yb8{bottom:68.400000px;}
.y111{bottom:68.430000px;}
.y122{bottom:68.437500px;}
.yc5{bottom:68.445000px;}
.yb9{bottom:77.400000px;}
.yf0{bottom:77.430000px;}
.ydf{bottom:77.437500px;}
.y101{bottom:77.445000px;}
.yd3{bottom:77.700000px;}
.yc6{bottom:77.745000px;}
.y65{bottom:84.930000px;}
.y8d{bottom:84.937500px;}
.ya0{bottom:84.945000px;}
.y94{bottom:85.200000px;}
.y87{bottom:85.230000px;}
.y6b{bottom:85.245000px;}
.yfb{bottom:86.400000px;}
.y12c{bottom:86.430000px;}
.ye4{bottom:86.437500px;}
.y11b{bottom:86.445000px;}
.ybc{bottom:86.700000px;}
.yd1{bottom:86.730000px;}
.y121{bottom:86.737500px;}
.yc8{bottom:86.745000px;}
.y42{bottom:87.637500px;}
.y117{bottom:89.137500px;}
.y10a{bottom:90.037500px;}
.y11d{bottom:90.637500px;}
.yc3{bottom:95.700000px;}
.yee{bottom:95.730000px;}
.ye0{bottom:95.737500px;}
.y102{bottom:95.745000px;}
.yf7{bottom:96.000000px;}
.yd2{bottom:96.030000px;}
.ycd{bottom:96.045000px;}
.ya5{bottom:98.437500px;}
.y7e{bottom:99.037500px;}
.y88{bottom:99.937500px;}
.y6e{bottom:100.537500px;}
.y58{bottom:101.737500px;}
.yfa{bottom:104.700000px;}
.y12b{bottom:104.730000px;}
.ye3{bottom:104.737500px;}
.y11a{bottom:104.745000px;}
.ybb{bottom:105.000000px;}
.y64{bottom:105.030000px;}
.y8c{bottom:105.037500px;}
.y9f{bottom:105.045000px;}
.y9d{bottom:105.300000px;}
.y77{bottom:105.330000px;}
.y6a{bottom:105.345000px;}
.yde{bottom:108.337500px;}
.yef{bottom:114.030000px;}
.ye9{bottom:114.037500px;}
.yc2{bottom:114.045000px;}
.yd4{bottom:114.330000px;}
.ycc{bottom:114.345000px;}
.y56{bottom:117.937500px;}
.y18{bottom:119.820000px;}
.y1b{bottom:119.925000px;}
.y41{bottom:122.175000px;}
.ye2{bottom:123.037500px;}
.ydb{bottom:123.330000px;}
.y120{bottom:123.337500px;}
.ybf{bottom:123.345000px;}
.y136{bottom:123.375000px;}
.y63{bottom:125.430000px;}
.y8b{bottom:125.437500px;}
.y69{bottom:125.445000px;}
.yf9{bottom:126.675000px;}
.y2e{bottom:128.775000px;}
.yf2{bottom:132.330000px;}
.y11e{bottom:132.337500px;}
.yc1{bottom:132.345000px;}
.y114{bottom:132.375000px;}
.ye8{bottom:132.382500px;}
.yd8{bottom:132.630000px;}
.ycb{bottom:132.645000px;}
.y13b{bottom:132.675000px;}
.y17{bottom:137.250000px;}
.yac{bottom:139.275000px;}
.ydd{bottom:141.630000px;}
.y11f{bottom:141.637500px;}
.y128{bottom:141.645000px;}
.y12f{bottom:141.675000px;}
.y116{bottom:144.975000px;}
.y76{bottom:145.530000px;}
.y7d{bottom:145.545000px;}
.yae{bottom:145.575000px;}
.y8a{bottom:145.582500px;}
.yb1{bottom:150.375000px;}
.y104{bottom:150.630000px;}
.y125{bottom:150.645000px;}
.y2d{bottom:150.675000px;}
.yec{bottom:150.682500px;}
.yd7{bottom:150.930000px;}
.y108{bottom:150.945000px;}
.y13a{bottom:150.975000px;}
.y55{bottom:152.475000px;}
.y40{bottom:156.675000px;}
.ya4{bottom:159.675000px;}
.ydc{bottom:159.930000px;}
.y127{bottom:159.945000px;}
.y13d{bottom:159.975000px;}
.y79{bottom:160.275000px;}
.y68{bottom:161.775000px;}
.y15{bottom:162.975000px;}
.y106{bottom:163.875000px;}
.y75{bottom:165.630000px;}
.y7c{bottom:165.645000px;}
.y99{bottom:165.675000px;}
.y89{bottom:165.682500px;}
.y10c{bottom:168.930000px;}
.y13f{bottom:168.945000px;}
.yf1{bottom:168.975000px;}
.yd6{bottom:169.230000px;}
.y107{bottom:169.245000px;}
.y139{bottom:169.275000px;}
.y16{bottom:178.800000px;}
.y95{bottom:180.375000px;}
.y12d{bottom:181.575000px;}
.y2c{bottom:184.275000px;}
.y7b{bottom:185.745000px;}
.y84{bottom:185.775000px;}
.y96{bottom:186.075000px;}
.y54{bottom:186.975000px;}
.y10b{bottom:187.230000px;}
.yf5{bottom:187.275000px;}
.yf8{bottom:187.530000px;}
.y109{bottom:187.545000px;}
.y138{bottom:187.575000px;}
.y3f{bottom:191.175000px;}
.y14{bottom:192.075000px;}
.yb0{bottom:200.475000px;}
.y10f{bottom:205.575000px;}
.y83{bottom:205.875000px;}
.y2b{bottom:206.175000px;}
.y53{bottom:221.475000px;}
.y10e{bottom:223.875000px;}
.y137{bottom:224.175000px;}
.y3d{bottom:225.675000px;}
.y7a{bottom:226.275000px;}
.y135{bottom:237.075000px;}
.y2a{bottom:239.820000px;}
.y10d{bottom:242.175000px;}
.y82{bottom:246.375000px;}
.yf6{bottom:255.420000px;}
.y52{bottom:256.020000px;}
.y11c{bottom:256.320000px;}
.y3b{bottom:260.220000px;}
.y29{bottom:261.420000px;}
.y81{bottom:266.475000px;}
.yd0{bottom:273.720000px;}
.yab{bottom:281.220000px;}
.y86{bottom:281.820000px;}
.y80{bottom:286.575000px;}
.y51{bottom:290.520000px;}
.y129{bottom:292.320000px;}
.y3a{bottom:294.420000px;}
.y28{bottom:295.320000px;}
.ya2{bottom:301.320000px;}
.y62{bottom:303.720000px;}
.y27{bottom:316.920000px;}
.y98{bottom:322.320000px;}
.y50{bottom:325.020000px;}
.y39{bottom:328.920000px;}
.yad{bottom:342.420000px;}
.y110{bottom:347.820000px;}
.y26{bottom:350.820000px;}
.y13{bottom:352.920000px;}
.y4f{bottom:359.550000px;}
.y38{bottom:363.450000px;}
.y105{bottom:366.150000px;}
.y141{bottom:371.850000px;}
.y25{bottom:372.450000px;}
.y12{bottom:374.850000px;}
.y93{bottom:382.650000px;}
.y4e{bottom:394.050000px;}
.y24{bottom:394.350000px;}
.y11{bottom:396.450000px;}
.y37{bottom:397.950000px;}
.y78{bottom:402.750000px;}
.y140{bottom:405.450000px;}
.y23{bottom:415.950000px;}
.y10{bottom:418.350000px;}
.y126{bottom:421.050000px;}
.y119{bottom:421.950000px;}
.yaa{bottom:422.850000px;}
.y7f{bottom:423.750000px;}
.y4d{bottom:428.550000px;}
.y35{bottom:432.450000px;}
.y60{bottom:445.350000px;}
.y22{bottom:449.850000px;}
.yf{bottom:451.950000px;}
.yc4{bottom:457.650000px;}
.y4c{bottom:463.050000px;}
.y9e{bottom:463.350000px;}
.y33{bottom:466.950000px;}
.y131{bottom:475.950000px;}
.y21{bottom:483.495000px;}
.ye{bottom:485.895000px;}
.y4b{bottom:497.595000px;}
.y30{bottom:501.495000px;}
.y20{bottom:505.395000px;}
.yd{bottom:507.495000px;}
.y103{bottom:513.495000px;}
.y5f{bottom:524.595000px;}
.y1f{bottom:526.995000px;}
.yc{bottom:529.395000px;}
.y4a{bottom:532.095000px;}
.y74{bottom:544.695000px;}
.yb{bottom:550.995000px;}
.y5e{bottom:558.495000px;}
.y1e{bottom:560.595000px;}
.ya9{bottom:564.795000px;}
.y49{bottom:566.595000px;}
.yed{bottom:568.395000px;}
.y118{bottom:569.295000px;}
.ya{bottom:572.595000px;}
.y5d{bottom:580.095000px;}
.y12e{bottom:586.695000px;}
.y9{bottom:594.495000px;}
.y48{bottom:601.125000px;}
.y5c{bottom:602.025000px;}
.y9c{bottom:605.025000px;}
.y8{bottom:616.125000px;}
.y13e{bottom:624.225000px;}
.y47{bottom:635.625000px;}
.y7{bottom:638.025000px;}
.y6{bottom:659.625000px;}
.y90{bottom:666.225000px;}
.y5b{bottom:669.525000px;}
.y46{bottom:670.125000px;}
.yfe{bottom:679.125000px;}
.y5{bottom:681.525000px;}
.y2f{bottom:693.525000px;}
.y4{bottom:703.125000px;}
.y45{bottom:704.625000px;}
.ya6{bottom:706.425000px;}
.y1d{bottom:715.125000px;}
.y5a{bottom:725.070000px;}
.y71{bottom:726.570000px;}
.y3{bottom:737.070000px;}
.y44{bottom:739.170000px;}
.y9b{bottom:746.970000px;}
.y1c{bottom:749.070000px;}
.yb2{bottom:752.370000px;}
.y59{bottom:758.670000px;}
.y2{bottom:770.670000px;}
.y43{bottom:773.670000px;}
.y1{bottom:792.570000px;}
.hd{height:33.585000px;}
.hb{height:33.600000px;}
.hc{height:33.637500px;}
.ha{height:33.900000px;}
.h9{height:33.937500px;}
.h25{height:36.585000px;}
.h8{height:40.200000px;}
.h1c{height:40.237500px;}
.h21{height:51.855469px;}
.h1e{height:52.001953px;}
.h1f{height:52.089844px;}
.h1d{height:54.885000px;}
.h2f{height:54.937500px;}
.h7{height:55.122070px;}
.h6{height:55.252075px;}
.h4{height:57.041016px;}
.h3{height:57.202148px;}
.h2{height:57.298828px;}
.h18{height:60.285000px;}
.he{height:60.337500px;}
.h10{height:60.637500px;}
.h2b{height:73.237500px;}
.h11{height:80.700000px;}
.h16{height:80.737500px;}
.h33{height:91.537500px;}
.h2d{height:91.800000px;}
.h1b{height:100.837500px;}
.h35{height:109.800000px;}
.h2e{height:109.837500px;}
.h27{height:110.137500px;}
.h29{height:128.137500px;}
.hf{height:141.037500px;}
.h19{height:141.075000px;}
.h20{height:146.437500px;}
.h22{height:146.775000px;}
.h1a{height:161.130000px;}
.h2a{height:164.730000px;}
.h31{height:164.745000px;}
.h24{height:164.775000px;}
.h12{height:181.275000px;}
.h36{height:183.030000px;}
.h23{height:183.345000px;}
.h32{height:183.375000px;}
.h26{height:201.375000px;}
.h28{height:201.630000px;}
.h15{height:201.675000px;}
.h17{height:221.475000px;}
.h30{height:237.960000px;}
.h34{height:238.275000px;}
.h13{height:241.875000px;}
.h5{height:255.300000px;}
.h2c{height:256.275000px;}
.h14{height:302.205000px;}
.h0{height:893.100000px;}
.h1{height:893.250000px;}
.we{width:31.500000px;}
.w7{width:33.300000px;}
.w3{width:83.400000px;}
.wf{width:121.500000px;}
.w8{width:129.337500px;}
.w13{width:129.937500px;}
.wb{width:141.337500px;}
.w11{width:147.037500px;}
.wc{width:163.830000px;}
.w12{width:175.845000px;}
.w9{width:183.330000px;}
.wa{width:194.745000px;}
.w14{width:206.745000px;}
.wd{width:219.945000px;}
.w6{width:221.445000px;}
.w10{width:253.275000px;}
.w4{width:322.575000px;}
.w5{width:358.275000px;}
.w2{width:1262.699981px;}
.w0{width:1262.700000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x10{left:7.800000px;}
.x42{left:9.000000px;}
.x2e{left:10.200000px;}
.x20{left:11.400000px;}
.x2c{left:13.200000px;}
.x2d{left:15.000000px;}
.x26{left:16.185000px;}
.x2f{left:18.300000px;}
.x23{left:19.800000px;}
.x24{left:21.300000px;}
.x22{left:23.400000px;}
.x16{left:24.600000px;}
.x29{left:26.400000px;}
.x31{left:28.200000px;}
.x15{left:30.000000px;}
.x3a{left:32.100000px;}
.x27{left:33.285000px;}
.x36{left:34.507500px;}
.x1d{left:36.000000px;}
.x38{left:37.785000px;}
.x3b{left:39.600000px;}
.x1e{left:40.800000px;}
.x17{left:42.592500px;}
.x3f{left:44.400000px;}
.x44{left:45.585000px;}
.x19{left:46.800000px;}
.x46{left:48.285000px;}
.x39{left:49.785000px;}
.x2a{left:51.000000px;}
.x35{left:53.400000px;}
.x33{left:54.900000px;}
.x4e{left:56.130000px;}
.x34{left:57.300000px;}
.x25{left:58.800000px;}
.x47{left:60.000000px;}
.x30{left:61.500000px;}
.x3c{left:62.700000px;}
.x3d{left:64.800000px;}
.x1b{left:65.985000px;}
.x32{left:67.500000px;}
.x41{left:68.700000px;}
.x43{left:70.785000px;}
.x45{left:73.500000px;}
.x37{left:74.700000px;}
.x54{left:76.200000px;}
.x53{left:77.430000px;}
.x40{left:79.200000px;}
.x50{left:80.400000px;}
.x2b{left:81.900000px;}
.x4f{left:83.130000px;}
.x1{left:84.937481px;}
.x3e{left:86.400000px;}
.x4b{left:87.600000px;}
.x52{left:89.430000px;}
.x56{left:90.630000px;}
.x4{left:92.437481px;}
.x28{left:97.185000px;}
.x55{left:98.730000px;}
.x51{left:106.530000px;}
.x7{left:109.462481px;}
.xe{left:111.937481px;}
.x3{left:116.437481px;}
.x48{left:117.937500px;}
.x14{left:119.737500px;}
.x8{left:131.062481px;}
.xf{left:138.937481px;}
.x11{left:170.145000px;}
.x49{left:240.045000px;}
.x18{left:249.975000px;}
.x9{left:353.249981px;}
.x5{left:379.874981px;}
.x1a{left:434.220000px;}
.xa{left:483.449981px;}
.x12{left:493.320000px;}
.xb{left:496.649981px;}
.x2{left:541.319981px;}
.x1c{left:629.550000px;}
.x4a{left:642.150000px;}
.xc{left:769.424981px;}
.x1f{left:771.795000px;}
.x4c{left:818.595000px;}
.x13{left:852.195000px;}
.xd{left:906.149981px;}
.x21{left:936.225000px;}
.x4d{left:949.425000px;}
.x6{left:1155.569981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-1.813333pt;}
.lsd{letter-spacing:-0.778667pt;}
.ls3{letter-spacing:-0.394667pt;}
.lsc{letter-spacing:-0.384000pt;}
.ls4{letter-spacing:-0.325333pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.293333pt;}
.lse{letter-spacing:-0.218667pt;}
.ls8{letter-spacing:-0.176000pt;}
.lsf{letter-spacing:-0.154667pt;}
.ls9{letter-spacing:-0.122667pt;}
.ls6{letter-spacing:-0.010667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000001pt;}
.ls13{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.266667pt;}
.lsa{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.373333pt;}
.ls16{letter-spacing:0.480000pt;}
.ls2{letter-spacing:31.690667pt;}
.ls7{letter-spacing:56.640000pt;}
.ws6{word-spacing:-53.333333pt;}
.ws8{word-spacing:-12.181333pt;}
.ws0{word-spacing:-11.909333pt;}
.ws5{word-spacing:-11.898667pt;}
.ws7{word-spacing:-11.786667pt;}
.wsb{word-spacing:-11.690667pt;}
.ws4{word-spacing:-11.616000pt;}
.ws9{word-spacing:-11.584000pt;}
.ws3{word-spacing:-11.514667pt;}
.ws1{word-spacing:-11.476267pt;}
.ws10{word-spacing:-11.306667pt;}
.wse{word-spacing:-11.146667pt;}
.wsa{word-spacing:-11.130667pt;}
.wsd{word-spacing:-10.880000pt;}
.wsc{word-spacing:-10.826667pt;}
.wsf{word-spacing:-9.013333pt;}
.ws2{word-spacing:0.000000pt;}
._10{margin-left:-8.213333pt;}
._11{margin-left:-6.597333pt;}
._f{margin-left:-4.810667pt;}
._8{margin-left:-3.909333pt;}
._c{margin-left:-2.948667pt;}
._2{margin-left:-2.032000pt;}
._0{margin-left:-1.082667pt;}
._1{width:1.072000pt;}
._5{width:1.994667pt;}
._3{width:3.120000pt;}
._4{width:4.154667pt;}
._b{width:5.221333pt;}
._9{width:6.960000pt;}
._a{width:8.000000pt;}
._6{width:10.469333pt;}
._d{width:13.221333pt;}
._7{width:14.352000pt;}
._e{width:32.293333pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:56.533333pt;}
.fs1{font-size:56.666667pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.yb5{bottom:3.733333pt;}
.y134{bottom:3.773333pt;}
.y32{bottom:4.000000pt;}
.y73{bottom:4.266667pt;}
.yb7{bottom:11.733333pt;}
.yc0{bottom:12.000000pt;}
.y130{bottom:12.026667pt;}
.y133{bottom:12.040000pt;}
.y3c{bottom:16.000000pt;}
.y3e{bottom:16.040000pt;}
.y36{bottom:16.266667pt;}
.y57{bottom:16.300000pt;}
.y34{bottom:16.306667pt;}
.yb3{bottom:20.000000pt;}
.y115{bottom:20.026667pt;}
.yeb{bottom:20.033333pt;}
.ycf{bottom:20.040000pt;}
.yda{bottom:20.266667pt;}
.y31{bottom:21.866667pt;}
.yaf{bottom:21.893333pt;}
.y70{bottom:21.900000pt;}
.ya1{bottom:21.906667pt;}
.y72{bottom:22.133333pt;}
.ya8{bottom:22.173333pt;}
.yb6{bottom:28.000000pt;}
.ye7{bottom:28.033333pt;}
.ybe{bottom:28.266667pt;}
.y113{bottom:28.293333pt;}
.y124{bottom:28.300000pt;}
.yca{bottom:28.306667pt;}
.y19{bottom:34.600000pt;}
.y1a{bottom:35.066667pt;}
.yb4{bottom:36.266667pt;}
.yf4{bottom:36.293333pt;}
.yea{bottom:36.300000pt;}
.yce{bottom:36.306667pt;}
.yd9{bottom:36.533333pt;}
.y13c{bottom:36.573333pt;}
.y67{bottom:39.733333pt;}
.y9a{bottom:39.760000pt;}
.y8f{bottom:39.766667pt;}
.y61{bottom:39.773333pt;}
.y6d{bottom:40.000000pt;}
.y6f{bottom:40.033333pt;}
.ya7{bottom:40.040000pt;}
.yfd{bottom:44.266667pt;}
.ye6{bottom:44.300000pt;}
.y100{bottom:44.306667pt;}
.ybd{bottom:44.533333pt;}
.y112{bottom:44.560000pt;}
.y123{bottom:44.566667pt;}
.yc9{bottom:44.573333pt;}
.yba{bottom:52.533333pt;}
.yf3{bottom:52.560000pt;}
.ye1{bottom:52.566667pt;}
.yc7{bottom:52.573333pt;}
.yd5{bottom:52.800000pt;}
.y132{bottom:52.840000pt;}
.y92{bottom:57.600000pt;}
.y66{bottom:57.626667pt;}
.y8e{bottom:57.633333pt;}
.y85{bottom:57.640000pt;}
.y6c{bottom:57.866667pt;}
.ya3{bottom:57.893333pt;}
.y97{bottom:57.900000pt;}
.y91{bottom:57.906667pt;}
.yfc{bottom:60.533333pt;}
.y12a{bottom:60.560000pt;}
.ye5{bottom:60.566667pt;}
.yff{bottom:60.573333pt;}
.yb8{bottom:60.800000pt;}
.y111{bottom:60.826667pt;}
.y122{bottom:60.833333pt;}
.yc5{bottom:60.840000pt;}
.yb9{bottom:68.800000pt;}
.yf0{bottom:68.826667pt;}
.ydf{bottom:68.833333pt;}
.y101{bottom:68.840000pt;}
.yd3{bottom:69.066667pt;}
.yc6{bottom:69.106667pt;}
.y65{bottom:75.493333pt;}
.y8d{bottom:75.500000pt;}
.ya0{bottom:75.506667pt;}
.y94{bottom:75.733333pt;}
.y87{bottom:75.760000pt;}
.y6b{bottom:75.773333pt;}
.yfb{bottom:76.800000pt;}
.y12c{bottom:76.826667pt;}
.ye4{bottom:76.833333pt;}
.y11b{bottom:76.840000pt;}
.ybc{bottom:77.066667pt;}
.yd1{bottom:77.093333pt;}
.y121{bottom:77.100000pt;}
.yc8{bottom:77.106667pt;}
.y42{bottom:77.900000pt;}
.y117{bottom:79.233333pt;}
.y10a{bottom:80.033333pt;}
.y11d{bottom:80.566667pt;}
.yc3{bottom:85.066667pt;}
.yee{bottom:85.093333pt;}
.ye0{bottom:85.100000pt;}
.y102{bottom:85.106667pt;}
.yf7{bottom:85.333333pt;}
.yd2{bottom:85.360000pt;}
.ycd{bottom:85.373333pt;}
.ya5{bottom:87.500000pt;}
.y7e{bottom:88.033333pt;}
.y88{bottom:88.833333pt;}
.y6e{bottom:89.366667pt;}
.y58{bottom:90.433333pt;}
.yfa{bottom:93.066667pt;}
.y12b{bottom:93.093333pt;}
.ye3{bottom:93.100000pt;}
.y11a{bottom:93.106667pt;}
.ybb{bottom:93.333333pt;}
.y64{bottom:93.360000pt;}
.y8c{bottom:93.366667pt;}
.y9f{bottom:93.373333pt;}
.y9d{bottom:93.600000pt;}
.y77{bottom:93.626667pt;}
.y6a{bottom:93.640000pt;}
.yde{bottom:96.300000pt;}
.yef{bottom:101.360000pt;}
.ye9{bottom:101.366667pt;}
.yc2{bottom:101.373333pt;}
.yd4{bottom:101.626667pt;}
.ycc{bottom:101.640000pt;}
.y56{bottom:104.833333pt;}
.y18{bottom:106.506667pt;}
.y1b{bottom:106.600000pt;}
.y41{bottom:108.600000pt;}
.ye2{bottom:109.366667pt;}
.ydb{bottom:109.626667pt;}
.y120{bottom:109.633333pt;}
.ybf{bottom:109.640000pt;}
.y136{bottom:109.666667pt;}
.y63{bottom:111.493333pt;}
.y8b{bottom:111.500000pt;}
.y69{bottom:111.506667pt;}
.yf9{bottom:112.600000pt;}
.y2e{bottom:114.466667pt;}
.yf2{bottom:117.626667pt;}
.y11e{bottom:117.633333pt;}
.yc1{bottom:117.640000pt;}
.y114{bottom:117.666667pt;}
.ye8{bottom:117.673333pt;}
.yd8{bottom:117.893333pt;}
.ycb{bottom:117.906667pt;}
.y13b{bottom:117.933333pt;}
.y17{bottom:122.000000pt;}
.yac{bottom:123.800000pt;}
.ydd{bottom:125.893333pt;}
.y11f{bottom:125.900000pt;}
.y128{bottom:125.906667pt;}
.y12f{bottom:125.933333pt;}
.y116{bottom:128.866667pt;}
.y76{bottom:129.360000pt;}
.y7d{bottom:129.373333pt;}
.yae{bottom:129.400000pt;}
.y8a{bottom:129.406667pt;}
.yb1{bottom:133.666667pt;}
.y104{bottom:133.893333pt;}
.y125{bottom:133.906667pt;}
.y2d{bottom:133.933333pt;}
.yec{bottom:133.940000pt;}
.yd7{bottom:134.160000pt;}
.y108{bottom:134.173333pt;}
.y13a{bottom:134.200000pt;}
.y55{bottom:135.533333pt;}
.y40{bottom:139.266667pt;}
.ya4{bottom:141.933333pt;}
.ydc{bottom:142.160000pt;}
.y127{bottom:142.173333pt;}
.y13d{bottom:142.200000pt;}
.y79{bottom:142.466667pt;}
.y68{bottom:143.800000pt;}
.y15{bottom:144.866667pt;}
.y106{bottom:145.666667pt;}
.y75{bottom:147.226667pt;}
.y7c{bottom:147.240000pt;}
.y99{bottom:147.266667pt;}
.y89{bottom:147.273333pt;}
.y10c{bottom:150.160000pt;}
.y13f{bottom:150.173333pt;}
.yf1{bottom:150.200000pt;}
.yd6{bottom:150.426667pt;}
.y107{bottom:150.440000pt;}
.y139{bottom:150.466667pt;}
.y16{bottom:158.933333pt;}
.y95{bottom:160.333333pt;}
.y12d{bottom:161.400000pt;}
.y2c{bottom:163.800000pt;}
.y7b{bottom:165.106667pt;}
.y84{bottom:165.133333pt;}
.y96{bottom:165.400000pt;}
.y54{bottom:166.200000pt;}
.y10b{bottom:166.426667pt;}
.yf5{bottom:166.466667pt;}
.yf8{bottom:166.693333pt;}
.y109{bottom:166.706667pt;}
.y138{bottom:166.733333pt;}
.y3f{bottom:169.933333pt;}
.y14{bottom:170.733333pt;}
.yb0{bottom:178.200000pt;}
.y10f{bottom:182.733333pt;}
.y83{bottom:183.000000pt;}
.y2b{bottom:183.266667pt;}
.y53{bottom:196.866667pt;}
.y10e{bottom:199.000000pt;}
.y137{bottom:199.266667pt;}
.y3d{bottom:200.600000pt;}
.y7a{bottom:201.133333pt;}
.y135{bottom:210.733333pt;}
.y2a{bottom:213.173333pt;}
.y10d{bottom:215.266667pt;}
.y82{bottom:219.000000pt;}
.yf6{bottom:227.040000pt;}
.y52{bottom:227.573333pt;}
.y11c{bottom:227.840000pt;}
.y3b{bottom:231.306667pt;}
.y29{bottom:232.373333pt;}
.y81{bottom:236.866667pt;}
.yd0{bottom:243.306667pt;}
.yab{bottom:249.973333pt;}
.y86{bottom:250.506667pt;}
.y80{bottom:254.733333pt;}
.y51{bottom:258.240000pt;}
.y129{bottom:259.840000pt;}
.y3a{bottom:261.706667pt;}
.y28{bottom:262.506667pt;}
.ya2{bottom:267.840000pt;}
.y62{bottom:269.973333pt;}
.y27{bottom:281.706667pt;}
.y98{bottom:286.506667pt;}
.y50{bottom:288.906667pt;}
.y39{bottom:292.373333pt;}
.yad{bottom:304.373333pt;}
.y110{bottom:309.173333pt;}
.y26{bottom:311.840000pt;}
.y13{bottom:313.706667pt;}
.y4f{bottom:319.600000pt;}
.y38{bottom:323.066667pt;}
.y105{bottom:325.466667pt;}
.y141{bottom:330.533333pt;}
.y25{bottom:331.066667pt;}
.y12{bottom:333.200000pt;}
.y93{bottom:340.133333pt;}
.y4e{bottom:350.266667pt;}
.y24{bottom:350.533333pt;}
.y11{bottom:352.400000pt;}
.y37{bottom:353.733333pt;}
.y78{bottom:358.000000pt;}
.y140{bottom:360.400000pt;}
.y23{bottom:369.733333pt;}
.y10{bottom:371.866667pt;}
.y126{bottom:374.266667pt;}
.y119{bottom:375.066667pt;}
.yaa{bottom:375.866667pt;}
.y7f{bottom:376.666667pt;}
.y4d{bottom:380.933333pt;}
.y35{bottom:384.400000pt;}
.y60{bottom:395.866667pt;}
.y22{bottom:399.866667pt;}
.yf{bottom:401.733333pt;}
.yc4{bottom:406.800000pt;}
.y4c{bottom:411.600000pt;}
.y9e{bottom:411.866667pt;}
.y33{bottom:415.066667pt;}
.y131{bottom:423.066667pt;}
.y21{bottom:429.773333pt;}
.ye{bottom:431.906667pt;}
.y4b{bottom:442.306667pt;}
.y30{bottom:445.773333pt;}
.y20{bottom:449.240000pt;}
.yd{bottom:451.106667pt;}
.y103{bottom:456.440000pt;}
.y5f{bottom:466.306667pt;}
.y1f{bottom:468.440000pt;}
.yc{bottom:470.573333pt;}
.y4a{bottom:472.973333pt;}
.y74{bottom:484.173333pt;}
.yb{bottom:489.773333pt;}
.y5e{bottom:496.440000pt;}
.y1e{bottom:498.306667pt;}
.ya9{bottom:502.040000pt;}
.y49{bottom:503.640000pt;}
.yed{bottom:505.240000pt;}
.y118{bottom:506.040000pt;}
.ya{bottom:508.973333pt;}
.y5d{bottom:515.640000pt;}
.y12e{bottom:521.506667pt;}
.y9{bottom:528.440000pt;}
.y48{bottom:534.333333pt;}
.y5c{bottom:535.133333pt;}
.y9c{bottom:537.800000pt;}
.y8{bottom:547.666667pt;}
.y13e{bottom:554.866667pt;}
.y47{bottom:565.000000pt;}
.y7{bottom:567.133333pt;}
.y6{bottom:586.333333pt;}
.y90{bottom:592.200000pt;}
.y5b{bottom:595.133333pt;}
.y46{bottom:595.666667pt;}
.yfe{bottom:603.666667pt;}
.y5{bottom:605.800000pt;}
.y2f{bottom:616.466667pt;}
.y4{bottom:625.000000pt;}
.y45{bottom:626.333333pt;}
.ya6{bottom:627.933333pt;}
.y1d{bottom:635.666667pt;}
.y5a{bottom:644.506667pt;}
.y71{bottom:645.840000pt;}
.y3{bottom:655.173333pt;}
.y44{bottom:657.040000pt;}
.y9b{bottom:663.973333pt;}
.y1c{bottom:665.840000pt;}
.yb2{bottom:668.773333pt;}
.y59{bottom:674.373333pt;}
.y2{bottom:685.040000pt;}
.y43{bottom:687.706667pt;}
.y1{bottom:704.506667pt;}
.hd{height:29.853333pt;}
.hb{height:29.866667pt;}
.hc{height:29.900000pt;}
.ha{height:30.133333pt;}
.h9{height:30.166667pt;}
.h25{height:32.520000pt;}
.h8{height:35.733333pt;}
.h1c{height:35.766667pt;}
.h21{height:46.093750pt;}
.h1e{height:46.223958pt;}
.h1f{height:46.302083pt;}
.h1d{height:48.786667pt;}
.h2f{height:48.833333pt;}
.h7{height:48.997396pt;}
.h6{height:49.112956pt;}
.h4{height:50.703125pt;}
.h3{height:50.846354pt;}
.h2{height:50.932292pt;}
.h18{height:53.586667pt;}
.he{height:53.633333pt;}
.h10{height:53.900000pt;}
.h2b{height:65.100000pt;}
.h11{height:71.733333pt;}
.h16{height:71.766667pt;}
.h33{height:81.366667pt;}
.h2d{height:81.600000pt;}
.h1b{height:89.633333pt;}
.h35{height:97.600000pt;}
.h2e{height:97.633333pt;}
.h27{height:97.900000pt;}
.h29{height:113.900000pt;}
.hf{height:125.366667pt;}
.h19{height:125.400000pt;}
.h20{height:130.166667pt;}
.h22{height:130.466667pt;}
.h1a{height:143.226667pt;}
.h2a{height:146.426667pt;}
.h31{height:146.440000pt;}
.h24{height:146.466667pt;}
.h12{height:161.133333pt;}
.h36{height:162.693333pt;}
.h23{height:162.973333pt;}
.h32{height:163.000000pt;}
.h26{height:179.000000pt;}
.h28{height:179.226667pt;}
.h15{height:179.266667pt;}
.h17{height:196.866667pt;}
.h30{height:211.520000pt;}
.h34{height:211.800000pt;}
.h13{height:215.000000pt;}
.h5{height:226.933333pt;}
.h2c{height:227.800000pt;}
.h14{height:268.626667pt;}
.h0{height:793.866667pt;}
.h1{height:794.000000pt;}
.we{width:28.000000pt;}
.w7{width:29.600000pt;}
.w3{width:74.133333pt;}
.wf{width:108.000000pt;}
.w8{width:114.966667pt;}
.w13{width:115.500000pt;}
.wb{width:125.633333pt;}
.w11{width:130.700000pt;}
.wc{width:145.626667pt;}
.w12{width:156.306667pt;}
.w9{width:162.960000pt;}
.wa{width:173.106667pt;}
.w14{width:183.773333pt;}
.wd{width:195.506667pt;}
.w6{width:196.840000pt;}
.w10{width:225.133333pt;}
.w4{width:286.733333pt;}
.w5{width:318.466667pt;}
.w2{width:1122.399983pt;}
.w0{width:1122.400000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x10{left:6.933333pt;}
.x42{left:8.000000pt;}
.x2e{left:9.066667pt;}
.x20{left:10.133333pt;}
.x2c{left:11.733333pt;}
.x2d{left:13.333333pt;}
.x26{left:14.386667pt;}
.x2f{left:16.266667pt;}
.x23{left:17.600000pt;}
.x24{left:18.933333pt;}
.x22{left:20.800000pt;}
.x16{left:21.866667pt;}
.x29{left:23.466667pt;}
.x31{left:25.066667pt;}
.x15{left:26.666667pt;}
.x3a{left:28.533333pt;}
.x27{left:29.586667pt;}
.x36{left:30.673333pt;}
.x1d{left:32.000000pt;}
.x38{left:33.586667pt;}
.x3b{left:35.200000pt;}
.x1e{left:36.266667pt;}
.x17{left:37.860000pt;}
.x3f{left:39.466667pt;}
.x44{left:40.520000pt;}
.x19{left:41.600000pt;}
.x46{left:42.920000pt;}
.x39{left:44.253333pt;}
.x2a{left:45.333333pt;}
.x35{left:47.466667pt;}
.x33{left:48.800000pt;}
.x4e{left:49.893333pt;}
.x34{left:50.933333pt;}
.x25{left:52.266667pt;}
.x47{left:53.333333pt;}
.x30{left:54.666667pt;}
.x3c{left:55.733333pt;}
.x3d{left:57.600000pt;}
.x1b{left:58.653333pt;}
.x32{left:60.000000pt;}
.x41{left:61.066667pt;}
.x43{left:62.920000pt;}
.x45{left:65.333333pt;}
.x37{left:66.400000pt;}
.x54{left:67.733333pt;}
.x53{left:68.826667pt;}
.x40{left:70.400000pt;}
.x50{left:71.466667pt;}
.x2b{left:72.800000pt;}
.x4f{left:73.893333pt;}
.x1{left:75.499983pt;}
.x3e{left:76.800000pt;}
.x4b{left:77.866667pt;}
.x52{left:79.493333pt;}
.x56{left:80.560000pt;}
.x4{left:82.166650pt;}
.x28{left:86.386667pt;}
.x55{left:87.760000pt;}
.x51{left:94.693333pt;}
.x7{left:97.299983pt;}
.xe{left:99.499983pt;}
.x3{left:103.499983pt;}
.x48{left:104.833333pt;}
.x14{left:106.433333pt;}
.x8{left:116.499983pt;}
.xf{left:123.499983pt;}
.x11{left:151.240000pt;}
.x49{left:213.373333pt;}
.x18{left:222.200000pt;}
.x9{left:313.999983pt;}
.x5{left:337.666650pt;}
.x1a{left:385.973333pt;}
.xa{left:429.733317pt;}
.x12{left:438.506667pt;}
.xb{left:441.466650pt;}
.x2{left:481.173317pt;}
.x1c{left:559.600000pt;}
.x4a{left:570.800000pt;}
.xc{left:683.933317pt;}
.x1f{left:686.040000pt;}
.x4c{left:727.640000pt;}
.x13{left:757.506667pt;}
.xd{left:805.466650pt;}
.x21{left:832.200000pt;}
.x4d{left:843.933333pt;}
.x6{left:1027.173317pt;}
}




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