
    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_4ac8b44e474ad7c1012be9b3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_a4ff70fa28edef0e3154fd3b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_943b7b5a6b7d23b17c434d0b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_f7f659dce030963d545fe804.woff')format("woff");}.ff4{font-family:ff4;line-height:0.923340;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_af7cb50a4adef2b2c94ae7ce.woff')format("woff");}.ff5{font-family:ff5;line-height:1.163086;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_68bb37554028ed4ca95907ca.woff')format("woff");}.ff6{font-family:ff6;line-height:1.163086;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_e660ade5c9baab3f101d8130.woff')format("woff");}.ff7{font-family:ff7;line-height:1.112305;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_f33b676cf785798286c9b817.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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:ff9;src:url('chunks/assets/font_3bb5278192d49a7bff3487c8.woff')format("woff");}.ff9{font-family:ff9;line-height:0.960938;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:ffa;src:url('chunks/assets/font_cb4c25e17364f8381a3c357b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1d07534261b6ae23584f0f3d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_3f5165cef986e7f7863f0266.woff')format("woff");}.ffc{font-family:ffc;line-height:0.875488;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:ffd;src:url('chunks/assets/font_f87a69e31dc778c4ebaead55.woff')format("woff");}.ffd{font-family:ffd;line-height:0.866699;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:ffe;src:url('chunks/assets/font_a7d6646196e4ec760cdd1af5.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;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:fff;src:url('chunks/assets/font_1fd2ef4f2966f4255ad77584.woff')format("woff");}.fff{font-family:fff;line-height:1.040039;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:ff10;src:url('chunks/assets/font_b195b60abd8c97c329db94ff.woff')format("woff");}.ff10{font-family:ff10;line-height:0.919434;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:ff11;src:url('chunks/assets/font_acc93d4d1f87e5ed4b18eb12.woff')format("woff");}.ff11{font-family:ff11;line-height:0.919434;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:ff12;src:url('chunks/assets/font_d5b4b7840e41ecb6e4767a2c.woff')format("woff");}.ff12{font-family:ff12;line-height:0.912109;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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.230400px;}
.ls8{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.015120px;}
.ls3{letter-spacing:0.018000px;}
.ls11{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.126000px;}
.lse{letter-spacing:0.144000px;}
.ls1a{letter-spacing:0.162000px;}
.ls2{letter-spacing:0.174240px;}
.ls4{letter-spacing:0.178560px;}
.lsf{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.317520px;}
.ls14{letter-spacing:0.324000px;}
.lsa{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls12{letter-spacing:0.504000px;}
.ls19{letter-spacing:1.584000px;}
.ls16{letter-spacing:1.620000px;}
.lsc{letter-spacing:15.984000px;}
.lsb{letter-spacing:16.020000px;}
.ls15{letter-spacing:28.980000px;}
.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;}
}
.ws1{word-spacing:-108.144000px;}
.ws2{word-spacing:-108.000000px;}
.ws13{word-spacing:-72.000000px;}
.ws1b{word-spacing:-54.360000px;}
.ws1c{word-spacing:-54.324000px;}
.ws1a{word-spacing:-54.000000px;}
.ws6{word-spacing:-28.800000px;}
.ws0{word-spacing:-19.368000px;}
.ws5{word-spacing:-18.000000px;}
.ws19{word-spacing:-14.976000px;}
.ws8{word-spacing:-14.940000px;}
.wse{word-spacing:-14.004000px;}
.wsf{word-spacing:-13.968000px;}
.ws11{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.824000px;}
.ws18{word-spacing:-13.626000px;}
.ws9{word-spacing:-13.536000px;}
.ws3{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.944000px;}
.wsd{word-spacing:-10.902240px;}
.ws7{word-spacing:-10.440000px;}
.ws14{word-spacing:-9.684000px;}
.ws10{word-spacing:-9.180000px;}
.ws17{word-spacing:-9.144000px;}
.ws12{word-spacing:-9.137520px;}
.wsb{word-spacing:-8.820000px;}
.ws16{word-spacing:-8.460000px;}
.wsc{word-spacing:0.000000px;}
._6{margin-left:-8.426880px;}
._c{margin-left:-3.395040px;}
._2{margin-left:-1.360800px;}
._3{width:1.179360px;}
._5{width:2.471760px;}
._4{width:3.583440px;}
._0{width:5.443200px;}
._1{width:6.577200px;}
._a{width:7.603200px;}
._9{width:8.650800px;}
._b{width:10.149840px;}
._d{width:11.440800px;}
._1c{width:12.471600px;}
._e{width:15.444000px;}
._11{width:16.632000px;}
._18{width:17.676000px;}
._17{width:18.712800px;}
._f{width:19.810800px;}
._10{width:21.734400px;}
._12{width:23.050800px;}
._19{width:25.560000px;}
._13{width:26.568000px;}
._1a{width:27.630000px;}
._16{width:34.147440px;}
._7{width:37.059120px;}
._8{width:38.178000px;}
._15{width:42.957840px;}
._14{width:46.378800px;}
._1b{width:54.638496px;}
.fc2{color:rgb(10,80,164);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.280000px;}
.fsd{font-size:35.424000px;}
.fse{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs5{font-size:45.504000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:48.384000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs3{font-size:59.760000px;}
.fsf{font-size:59.904000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:108.144000px;}
.y0{bottom:0.000000px;}
.y4e{bottom:18.900000px;}
.y6{bottom:19.620000px;}
.y4d{bottom:37.980000px;}
.ya{bottom:61.020000px;}
.y9{bottom:75.096000px;}
.y8{bottom:89.316000px;}
.y7{bottom:103.536000px;}
.ye{bottom:137.556000px;}
.y16d{bottom:142.236000px;}
.y7c{bottom:144.576000px;}
.yaa{bottom:146.196000px;}
.yce{bottom:154.470000px;}
.yed{bottom:156.270000px;}
.y119{bottom:158.070000px;}
.y3e{bottom:158.610000px;}
.y16c{bottom:159.330000px;}
.yd{bottom:166.710000px;}
.y7b{bottom:170.490000px;}
.ya9{bottom:173.190000px;}
.y118{bottom:175.170000px;}
.y3d{bottom:175.710000px;}
.y142{bottom:176.970000px;}
.ycd{bottom:181.290000px;}
.yec{bottom:183.090000px;}
.y16b{bottom:185.250000px;}
.y7a{bottom:187.590000px;}
.ya8{bottom:190.110000px;}
.y117{bottom:192.090000px;}
.yc{bottom:192.630000px;}
.y141{bottom:193.890000px;}
.yeb{bottom:200.190000px;}
.y16a{bottom:202.350000px;}
.y79{bottom:204.510000px;}
.ya7{bottom:207.210000px;}
.ycc{bottom:208.110000px;}
.y116{bottom:209.190000px;}
.yb{bottom:209.370000px;}
.y4c{bottom:212.970000px;}
.yea{bottom:217.290000px;}
.y169{bottom:219.450000px;}
.y140{bottom:219.990000px;}
.y78{bottom:221.610000px;}
.ya6{bottom:224.130000px;}
.ycb{bottom:225.210000px;}
.y115{bottom:226.110000px;}
.y13f{bottom:236.910000px;}
.y4b{bottom:239.070000px;}
.yca{bottom:242.130000px;}
.ye9{bottom:243.210000px;}
.y168{bottom:245.370000px;}
.y77{bottom:247.530000px;}
.ya5{bottom:250.230000px;}
.y13e{bottom:254.010000px;}
.y4a{bottom:255.990000px;}
.y114{bottom:260.130000px;}
.ye8{bottom:260.310000px;}
.y167{bottom:262.470000px;}
.y76{bottom:264.630000px;}
.ya4{bottom:267.150000px;}
.yc9{bottom:268.230000px;}
.y49{bottom:273.090000px;}
.ye7{bottom:277.230000px;}
.y166{bottom:279.390000px;}
.y13d{bottom:280.110000px;}
.y75{bottom:281.550000px;}
.ya3{bottom:284.250000px;}
.yc8{bottom:285.150000px;}
.y113{bottom:286.230000px;}
.y48{bottom:290.010000px;}
.y165{bottom:296.490000px;}
.y13c{bottom:297.030000px;}
.y74{bottom:298.650000px;}
.ya2{bottom:301.170000px;}
.yc7{bottom:302.250000px;}
.ye6{bottom:303.150000px;}
.y47{bottom:307.110000px;}
.y164{bottom:313.410000px;}
.y73{bottom:315.570000px;}
.ya1{bottom:318.270000px;}
.yc6{bottom:319.170000px;}
.y112{bottom:320.250000px;}
.y13b{bottom:323.130000px;}
.y46{bottom:324.030000px;}
.ye5{bottom:329.070000px;}
.y163{bottom:330.510000px;}
.yc5{bottom:336.270000px;}
.y111{bottom:337.170000px;}
.y13a{bottom:340.095000px;}
.y72{bottom:341.715000px;}
.ya0{bottom:344.235000px;}
.ye4{bottom:346.035000px;}
.y45{bottom:350.175000px;}
.yc4{bottom:353.235000px;}
.y110{bottom:354.315000px;}
.y162{bottom:356.475000px;}
.y139{bottom:357.195000px;}
.y71{bottom:358.635000px;}
.y9f{bottom:361.335000px;}
.ye3{bottom:363.135000px;}
.y44{bottom:367.095000px;}
.yc3{bottom:370.335000px;}
.y10f{bottom:371.235000px;}
.y161{bottom:373.575000px;}
.y138{bottom:374.115000px;}
.ye2{bottom:380.055000px;}
.y43{bottom:384.195000px;}
.y70{bottom:385.455000px;}
.y9e{bottom:387.975000px;}
.y10e{bottom:388.335000px;}
.y160{bottom:390.495000px;}
.y137{bottom:391.215000px;}
.yc2{bottom:396.975000px;}
.y42{bottom:401.295000px;}
.ye1{bottom:406.155000px;}
.y6f{bottom:412.275000px;}
.y9d{bottom:414.975000px;}
.y15f{bottom:416.595000px;}
.y136{bottom:417.135000px;}
.y41{bottom:418.215000px;}
.ye0{bottom:423.255000px;}
.yc1{bottom:423.975000px;}
.y6e{bottom:429.375000px;}
.y9c{bottom:431.895000px;}
.y15e{bottom:433.515000px;}
.y135{bottom:434.235000px;}
.y40{bottom:435.315000px;}
.ydf{bottom:440.175000px;}
.yc0{bottom:440.895000px;}
.y10d{bottom:441.975000px;}
.y6d{bottom:446.295000px;}
.y9b{bottom:448.995000px;}
.y15d{bottom:450.615000px;}
.y134{bottom:451.155000px;}
.ybf{bottom:457.995000px;}
.y10c{bottom:458.895000px;}
.y3f{bottom:461.955000px;}
.yde{bottom:466.275000px;}
.y15c{bottom:467.535000px;}
.y133{bottom:468.255000px;}
.y6c{bottom:472.395000px;}
.y9a{bottom:474.915000px;}
.y10b{bottom:475.995000px;}
.ydd{bottom:483.195000px;}
.ybe{bottom:483.915000px;}
.y6b{bottom:489.495000px;}
.y99{bottom:492.015000px;}
.y34{bottom:492.735000px;}
.y15b{bottom:493.635000px;}
.y132{bottom:494.175000px;}
.ydc{bottom:500.295000px;}
.ybd{bottom:501.015000px;}
.y10a{bottom:502.095000px;}
.y6a{bottom:506.415000px;}
.y98{bottom:508.935000px;}
.y33{bottom:509.835000px;}
.y15a{bottom:510.555000px;}
.y131{bottom:511.275000px;}
.ybc{bottom:517.935000px;}
.y109{bottom:519.015000px;}
.y69{bottom:523.515000px;}
.ydb{bottom:526.215000px;}
.y32{bottom:526.755000px;}
.y159{bottom:527.655000px;}
.y97{bottom:535.035000px;}
.y108{bottom:536.115000px;}
.y130{bottom:537.195000px;}
.yda{bottom:543.315000px;}
.y31{bottom:543.855000px;}
.y158{bottom:544.575000px;}
.y68{bottom:549.435000px;}
.y96{bottom:551.955000px;}
.y107{bottom:553.035000px;}
.y12f{bottom:554.295000px;}
.yd9{bottom:560.235000px;}
.y30{bottom:560.775000px;}
.ybb{bottom:560.955000px;}
.y157{bottom:561.675000px;}
.y67{bottom:566.535000px;}
.y95{bottom:569.055000px;}
.y12e{bottom:571.215000px;}
.y1a{bottom:573.915000px;}
.yd8{bottom:577.335000px;}
.y2f{bottom:577.875000px;}
.yba{bottom:578.055000px;}
.y106{bottom:579.135000px;}
.y66{bottom:583.455000px;}
.y94{bottom:586.155000px;}
.y19{bottom:587.055000px;}
.y156{bottom:587.595000px;}
.y12d{bottom:588.315000px;}
.y2e{bottom:594.795000px;}
.yb9{bottom:595.155000px;}
.y105{bottom:596.055000px;}
.y18{bottom:600.375000px;}
.y93{bottom:603.075000px;}
.yd7{bottom:603.255000px;}
.y155{bottom:604.695000px;}
.y12c{bottom:605.235000px;}
.y65{bottom:609.585000px;}
.yb8{bottom:612.105000px;}
.y104{bottom:613.185000px;}
.y173{bottom:613.725000px;}
.y2d{bottom:616.425000px;}
.y154{bottom:621.645000px;}
.y64{bottom:626.505000px;}
.y92{bottom:629.205000px;}
.y172{bottom:630.645000px;}
.y12b{bottom:631.365000px;}
.y2c{bottom:633.345000px;}
.y153{bottom:638.745000px;}
.y103{bottom:639.105000px;}
.y63{bottom:643.605000px;}
.y91{bottom:646.125000px;}
.y171{bottom:647.745000px;}
.y12a{bottom:648.285000px;}
.y2b{bottom:650.445000px;}
.yb7{bottom:655.125000px;}
.y102{bottom:656.205000px;}
.y3c{bottom:657.285000px;}
.y62{bottom:660.525000px;}
.y90{bottom:663.225000px;}
.y152{bottom:664.845000px;}
.y129{bottom:665.385000px;}
.y2a{bottom:667.365000px;}
.y3b{bottom:670.605000px;}
.yb6{bottom:672.225000px;}
.y101{bottom:673.125000px;}
.y170{bottom:673.845000px;}
.y8f{bottom:680.145000px;}
.y151{bottom:681.765000px;}
.y128{bottom:682.305000px;}
.y3a{bottom:683.745000px;}
.y29{bottom:684.465000px;}
.y61{bottom:686.625000px;}
.yb5{bottom:689.145000px;}
.yd6{bottom:689.865000px;}
.y100{bottom:690.225000px;}
.y16f{bottom:690.765000px;}
.y39{bottom:697.065000px;}
.y150{bottom:698.865000px;}
.y28{bottom:701.385000px;}
.y60{bottom:703.545000px;}
.y8e{bottom:706.245000px;}
.yff{bottom:707.325000px;}
.y16e{bottom:707.865000px;}
.y127{bottom:708.405000px;}
.y38{bottom:710.205000px;}
.yd5{bottom:716.865000px;}
.y5f{bottom:720.645000px;}
.y27{bottom:722.985000px;}
.y8d{bottom:723.165000px;}
.y37{bottom:724.065000px;}
.y14f{bottom:724.785000px;}
.y126{bottom:725.505000px;}
.yfe{bottom:733.245000px;}
.yd4{bottom:733.785000px;}
.y5e{bottom:737.565000px;}
.y36{bottom:739.185000px;}
.y26{bottom:739.905000px;}
.y8c{bottom:740.265000px;}
.y14e{bottom:741.885000px;}
.yd3{bottom:750.885000px;}
.y125{bottom:751.425000px;}
.y35{bottom:754.305000px;}
.y5d{bottom:754.665000px;}
.y25{bottom:757.005000px;}
.y8b{bottom:757.185000px;}
.yfd{bottom:758.985000px;}
.yb4{bottom:766.185000px;}
.y14d{bottom:767.805000px;}
.y124{bottom:768.525000px;}
.y24{bottom:773.925000px;}
.yfc{bottom:776.085000px;}
.yd2{bottom:776.805000px;}
.y5c{bottom:780.585000px;}
.y8a{bottom:783.285000px;}
.y14c{bottom:784.905000px;}
.y123{bottom:785.445000px;}
.y23{bottom:791.025000px;}
.yfb{bottom:793.005000px;}
.yd1{bottom:793.905000px;}
.y5b{bottom:797.685000px;}
.y89{bottom:800.205000px;}
.y14b{bottom:801.825000px;}
.y122{bottom:802.545000px;}
.yb3{bottom:809.925000px;}
.yd0{bottom:810.825000px;}
.y22{bottom:812.445000px;}
.y88{bottom:817.305000px;}
.y14a{bottom:818.925000px;}
.yfa{bottom:819.105000px;}
.y17{bottom:823.605000px;}
.y5a{bottom:824.325000px;}
.ycf{bottom:827.925000px;}
.y121{bottom:829.185000px;}
.y21{bottom:829.545000px;}
.yf9{bottom:836.025000px;}
.y16{bottom:836.745000px;}
.yb2{bottom:836.925000px;}
.y87{bottom:843.945000px;}
.y149{bottom:844.845000px;}
.y20{bottom:846.645000px;}
.y59{bottom:851.325000px;}
.yf8{bottom:853.125000px;}
.yb1{bottom:853.845000px;}
.y15{bottom:855.285000px;}
.y120{bottom:856.185000px;}
.y148{bottom:861.945000px;}
.y1f{bottom:863.565000px;}
.y58{bottom:868.245000px;}
.y14{bottom:868.785000px;}
.y86{bottom:870.945000px;}
.y147{bottom:878.910000px;}
.yf7{bottom:879.090000px;}
.y1e{bottom:880.710000px;}
.y11f{bottom:882.870000px;}
.y57{bottom:885.390000px;}
.y13{bottom:886.470000px;}
.y85{bottom:887.910000px;}
.yf6{bottom:896.190000px;}
.y1d{bottom:902.850000px;}
.y12{bottom:905.010000px;}
.y11e{bottom:909.870000px;}
.y56{bottom:911.310000px;}
.yf5{bottom:913.290000px;}
.yb0{bottom:914.010000px;}
.y146{bottom:921.930000px;}
.y11{bottom:922.650000px;}
.y55{bottom:928.410000px;}
.y1c{bottom:929.490000px;}
.y84{bottom:930.930000px;}
.y11d{bottom:936.510000px;}
.y145{bottom:939.030000px;}
.yf4{bottom:939.210000px;}
.y54{bottom:945.330000px;}
.y83{bottom:948.030000px;}
.y1b{bottom:949.110000px;}
.yf3{bottom:956.310000px;}
.y3{bottom:957.930000px;}
.y11c{bottom:963.330000px;}
.y82{bottom:964.950000px;}
.y53{bottom:971.430000px;}
.yf2{bottom:973.230000px;}
.y11b{bottom:980.430000px;}
.y81{bottom:982.050000px;}
.y2{bottom:983.670000px;}
.y10{bottom:984.210000px;}
.y52{bottom:988.530000px;}
.yaf{bottom:991.050000px;}
.y11a{bottom:997.530000px;}
.y144{bottom:998.970000px;}
.yf1{bottom:999.330000px;}
.y80{bottom:1007.970000px;}
.yf{bottom:1009.050000px;}
.y1{bottom:1009.410000px;}
.y51{bottom:1014.450000px;}
.y143{bottom:1016.070000px;}
.yf0{bottom:1016.250000px;}
.y7f{bottom:1025.070000px;}
.y50{bottom:1031.550000px;}
.yef{bottom:1033.350000px;}
.y7e{bottom:1041.990000px;}
.y4f{bottom:1058.190000px;}
.y7d{bottom:1059.090000px;}
.yee{bottom:1059.270000px;}
.yae{bottom:1120.290000px;}
.y5{bottom:1127.850000px;}
.yad{bottom:1133.070000px;}
.yac{bottom:1163.880000px;}
.y4{bottom:1169.280000px;}
.yab{bottom:1185.480000px;}
.h19{height:25.681641px;}
.hb{height:32.152148px;}
.hd{height:32.248125px;}
.hc{height:32.717461px;}
.h13{height:34.036523px;}
.h8{height:36.180000px;}
.he{height:37.437188px;}
.h1a{height:38.100586px;}
.hf{height:39.760312px;}
.h6{height:40.664531px;}
.h7{height:40.793625px;}
.h10{height:42.164648px;}
.h1b{height:42.266250px;}
.h14{height:43.246406px;}
.h16{height:47.980898px;}
.h12{height:48.410156px;}
.h11{height:48.539250px;}
.ha{height:50.800781px;}
.h18{height:51.644531px;}
.h15{height:55.387969px;}
.h17{height:55.517063px;}
.h2{height:56.566406px;}
.h5{height:59.439023px;}
.h9{height:67.565039px;}
.h4{height:77.466797px;}
.h3{height:77.570086px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:64.619987px;}
.x9{left:67.859987px;}
.xa{left:69.479987px;}
.x1{left:70.559987px;}
.xf{left:85.139987px;}
.x7{left:89.675987px;}
.x10{left:102.635987px;}
.x8{left:212.069987px;}
.x5{left:224.849987px;}
.x6{left:260.129987px;}
.xb{left:262.289987px;}
.xc{left:366.194987px;}
.x4{left:438.194987px;}
.xd{left:439.994987px;}
.x13{left:454.574987px;}
.x12{left:475.124987px;}
.x11{left:492.584987px;}
.x16{left:627.584987px;}
.x2{left:734.189987px;}
.x3{left:742.109987px;}
.x17{left:746.789987px;}
.x14{left:771.629987px;}
.x15{left:776.849987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.204800pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.013440pt;}
.ls3{letter-spacing:0.016000pt;}
.ls11{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.112000pt;}
.lse{letter-spacing:0.128000pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls2{letter-spacing:0.154880pt;}
.ls4{letter-spacing:0.158720pt;}
.lsf{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.282240pt;}
.ls14{letter-spacing:0.288000pt;}
.lsa{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls19{letter-spacing:1.408000pt;}
.ls16{letter-spacing:1.440000pt;}
.lsc{letter-spacing:14.208000pt;}
.lsb{letter-spacing:14.240000pt;}
.ls15{letter-spacing:25.760000pt;}
.ws1{word-spacing:-96.128000pt;}
.ws2{word-spacing:-96.000000pt;}
.ws13{word-spacing:-64.000000pt;}
.ws1b{word-spacing:-48.320000pt;}
.ws1c{word-spacing:-48.288000pt;}
.ws1a{word-spacing:-48.000000pt;}
.ws6{word-spacing:-25.600000pt;}
.ws0{word-spacing:-17.216000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws19{word-spacing:-13.312000pt;}
.ws8{word-spacing:-13.280000pt;}
.wse{word-spacing:-12.448000pt;}
.wsf{word-spacing:-12.416000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.288000pt;}
.ws18{word-spacing:-12.112000pt;}
.ws9{word-spacing:-12.032000pt;}
.ws3{word-spacing:-12.005120pt;}
.wsa{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.728000pt;}
.wsd{word-spacing:-9.690880pt;}
.ws7{word-spacing:-9.280000pt;}
.ws14{word-spacing:-8.608000pt;}
.ws10{word-spacing:-8.160000pt;}
.ws17{word-spacing:-8.128000pt;}
.ws12{word-spacing:-8.122240pt;}
.wsb{word-spacing:-7.840000pt;}
.ws16{word-spacing:-7.520000pt;}
.wsc{word-spacing:0.000000pt;}
._6{margin-left:-7.490560pt;}
._c{margin-left:-3.017813pt;}
._2{margin-left:-1.209600pt;}
._3{width:1.048320pt;}
._5{width:2.197120pt;}
._4{width:3.185280pt;}
._0{width:4.838400pt;}
._1{width:5.846400pt;}
._a{width:6.758400pt;}
._9{width:7.689600pt;}
._b{width:9.022080pt;}
._d{width:10.169600pt;}
._1c{width:11.085867pt;}
._e{width:13.728000pt;}
._11{width:14.784000pt;}
._18{width:15.712000pt;}
._17{width:16.633600pt;}
._f{width:17.609600pt;}
._10{width:19.319467pt;}
._12{width:20.489600pt;}
._19{width:22.720000pt;}
._13{width:23.616000pt;}
._1a{width:24.560000pt;}
._16{width:30.353280pt;}
._7{width:32.941440pt;}
._8{width:33.936000pt;}
._15{width:38.184747pt;}
._14{width:41.225600pt;}
._1b{width:48.567552pt;}
.fsc{font-size:31.360000pt;}
.fsd{font-size:31.488000pt;}
.fse{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs5{font-size:40.448000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:43.008000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs3{font-size:53.120000pt;}
.fsf{font-size:53.248000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:96.128000pt;}
.y0{bottom:0.000000pt;}
.y4e{bottom:16.800000pt;}
.y6{bottom:17.440000pt;}
.y4d{bottom:33.760000pt;}
.ya{bottom:54.240000pt;}
.y9{bottom:66.752000pt;}
.y8{bottom:79.392000pt;}
.y7{bottom:92.032000pt;}
.ye{bottom:122.272000pt;}
.y16d{bottom:126.432000pt;}
.y7c{bottom:128.512000pt;}
.yaa{bottom:129.952000pt;}
.yce{bottom:137.306667pt;}
.yed{bottom:138.906667pt;}
.y119{bottom:140.506667pt;}
.y3e{bottom:140.986667pt;}
.y16c{bottom:141.626667pt;}
.yd{bottom:148.186667pt;}
.y7b{bottom:151.546667pt;}
.ya9{bottom:153.946667pt;}
.y118{bottom:155.706667pt;}
.y3d{bottom:156.186667pt;}
.y142{bottom:157.306667pt;}
.ycd{bottom:161.146667pt;}
.yec{bottom:162.746667pt;}
.y16b{bottom:164.666667pt;}
.y7a{bottom:166.746667pt;}
.ya8{bottom:168.986667pt;}
.y117{bottom:170.746667pt;}
.yc{bottom:171.226667pt;}
.y141{bottom:172.346667pt;}
.yeb{bottom:177.946667pt;}
.y16a{bottom:179.866667pt;}
.y79{bottom:181.786667pt;}
.ya7{bottom:184.186667pt;}
.ycc{bottom:184.986667pt;}
.y116{bottom:185.946667pt;}
.yb{bottom:186.106667pt;}
.y4c{bottom:189.306667pt;}
.yea{bottom:193.146667pt;}
.y169{bottom:195.066667pt;}
.y140{bottom:195.546667pt;}
.y78{bottom:196.986667pt;}
.ya6{bottom:199.226667pt;}
.ycb{bottom:200.186667pt;}
.y115{bottom:200.986667pt;}
.y13f{bottom:210.586667pt;}
.y4b{bottom:212.506667pt;}
.yca{bottom:215.226667pt;}
.ye9{bottom:216.186667pt;}
.y168{bottom:218.106667pt;}
.y77{bottom:220.026667pt;}
.ya5{bottom:222.426667pt;}
.y13e{bottom:225.786667pt;}
.y4a{bottom:227.546667pt;}
.y114{bottom:231.226667pt;}
.ye8{bottom:231.386667pt;}
.y167{bottom:233.306667pt;}
.y76{bottom:235.226667pt;}
.ya4{bottom:237.466667pt;}
.yc9{bottom:238.426667pt;}
.y49{bottom:242.746667pt;}
.ye7{bottom:246.426667pt;}
.y166{bottom:248.346667pt;}
.y13d{bottom:248.986667pt;}
.y75{bottom:250.266667pt;}
.ya3{bottom:252.666667pt;}
.yc8{bottom:253.466667pt;}
.y113{bottom:254.426667pt;}
.y48{bottom:257.786667pt;}
.y165{bottom:263.546667pt;}
.y13c{bottom:264.026667pt;}
.y74{bottom:265.466667pt;}
.ya2{bottom:267.706667pt;}
.yc7{bottom:268.666667pt;}
.ye6{bottom:269.466667pt;}
.y47{bottom:272.986667pt;}
.y164{bottom:278.586667pt;}
.y73{bottom:280.506667pt;}
.ya1{bottom:282.906667pt;}
.yc6{bottom:283.706667pt;}
.y112{bottom:284.666667pt;}
.y13b{bottom:287.226667pt;}
.y46{bottom:288.026667pt;}
.ye5{bottom:292.506667pt;}
.y163{bottom:293.786667pt;}
.yc5{bottom:298.906667pt;}
.y111{bottom:299.706667pt;}
.y13a{bottom:302.306667pt;}
.y72{bottom:303.746667pt;}
.ya0{bottom:305.986667pt;}
.ye4{bottom:307.586667pt;}
.y45{bottom:311.266667pt;}
.yc4{bottom:313.986667pt;}
.y110{bottom:314.946667pt;}
.y162{bottom:316.866667pt;}
.y139{bottom:317.506667pt;}
.y71{bottom:318.786667pt;}
.y9f{bottom:321.186667pt;}
.ye3{bottom:322.786667pt;}
.y44{bottom:326.306667pt;}
.yc3{bottom:329.186667pt;}
.y10f{bottom:329.986667pt;}
.y161{bottom:332.066667pt;}
.y138{bottom:332.546667pt;}
.ye2{bottom:337.826667pt;}
.y43{bottom:341.506667pt;}
.y70{bottom:342.626667pt;}
.y9e{bottom:344.866667pt;}
.y10e{bottom:345.186667pt;}
.y160{bottom:347.106667pt;}
.y137{bottom:347.746667pt;}
.yc2{bottom:352.866667pt;}
.y42{bottom:356.706667pt;}
.ye1{bottom:361.026667pt;}
.y6f{bottom:366.466667pt;}
.y9d{bottom:368.866667pt;}
.y15f{bottom:370.306667pt;}
.y136{bottom:370.786667pt;}
.y41{bottom:371.746667pt;}
.ye0{bottom:376.226667pt;}
.yc1{bottom:376.866667pt;}
.y6e{bottom:381.666667pt;}
.y9c{bottom:383.906667pt;}
.y15e{bottom:385.346667pt;}
.y135{bottom:385.986667pt;}
.y40{bottom:386.946667pt;}
.ydf{bottom:391.266667pt;}
.yc0{bottom:391.906667pt;}
.y10d{bottom:392.866667pt;}
.y6d{bottom:396.706667pt;}
.y9b{bottom:399.106667pt;}
.y15d{bottom:400.546667pt;}
.y134{bottom:401.026667pt;}
.ybf{bottom:407.106667pt;}
.y10c{bottom:407.906667pt;}
.y3f{bottom:410.626667pt;}
.yde{bottom:414.466667pt;}
.y15c{bottom:415.586667pt;}
.y133{bottom:416.226667pt;}
.y6c{bottom:419.906667pt;}
.y9a{bottom:422.146667pt;}
.y10b{bottom:423.106667pt;}
.ydd{bottom:429.506667pt;}
.ybe{bottom:430.146667pt;}
.y6b{bottom:435.106667pt;}
.y99{bottom:437.346667pt;}
.y34{bottom:437.986667pt;}
.y15b{bottom:438.786667pt;}
.y132{bottom:439.266667pt;}
.ydc{bottom:444.706667pt;}
.ybd{bottom:445.346667pt;}
.y10a{bottom:446.306667pt;}
.y6a{bottom:450.146667pt;}
.y98{bottom:452.386667pt;}
.y33{bottom:453.186667pt;}
.y15a{bottom:453.826667pt;}
.y131{bottom:454.466667pt;}
.ybc{bottom:460.386667pt;}
.y109{bottom:461.346667pt;}
.y69{bottom:465.346667pt;}
.ydb{bottom:467.746667pt;}
.y32{bottom:468.226667pt;}
.y159{bottom:469.026667pt;}
.y97{bottom:475.586667pt;}
.y108{bottom:476.546667pt;}
.y130{bottom:477.506667pt;}
.yda{bottom:482.946667pt;}
.y31{bottom:483.426667pt;}
.y158{bottom:484.066667pt;}
.y68{bottom:488.386667pt;}
.y96{bottom:490.626667pt;}
.y107{bottom:491.586667pt;}
.y12f{bottom:492.706667pt;}
.yd9{bottom:497.986667pt;}
.y30{bottom:498.466667pt;}
.ybb{bottom:498.626667pt;}
.y157{bottom:499.266667pt;}
.y67{bottom:503.586667pt;}
.y95{bottom:505.826667pt;}
.y12e{bottom:507.746667pt;}
.y1a{bottom:510.146667pt;}
.yd8{bottom:513.186667pt;}
.y2f{bottom:513.666667pt;}
.yba{bottom:513.826667pt;}
.y106{bottom:514.786667pt;}
.y66{bottom:518.626667pt;}
.y94{bottom:521.026667pt;}
.y19{bottom:521.826667pt;}
.y156{bottom:522.306667pt;}
.y12d{bottom:522.946667pt;}
.y2e{bottom:528.706667pt;}
.yb9{bottom:529.026667pt;}
.y105{bottom:529.826667pt;}
.y18{bottom:533.666667pt;}
.y93{bottom:536.066667pt;}
.yd7{bottom:536.226667pt;}
.y155{bottom:537.506667pt;}
.y12c{bottom:537.986667pt;}
.y65{bottom:541.853333pt;}
.yb8{bottom:544.093333pt;}
.y104{bottom:545.053333pt;}
.y173{bottom:545.533333pt;}
.y2d{bottom:547.933333pt;}
.y154{bottom:552.573333pt;}
.y64{bottom:556.893333pt;}
.y92{bottom:559.293333pt;}
.y172{bottom:560.573333pt;}
.y12b{bottom:561.213333pt;}
.y2c{bottom:562.973333pt;}
.y153{bottom:567.773333pt;}
.y103{bottom:568.093333pt;}
.y63{bottom:572.093333pt;}
.y91{bottom:574.333333pt;}
.y171{bottom:575.773333pt;}
.y12a{bottom:576.253333pt;}
.y2b{bottom:578.173333pt;}
.yb7{bottom:582.333333pt;}
.y102{bottom:583.293333pt;}
.y3c{bottom:584.253333pt;}
.y62{bottom:587.133333pt;}
.y90{bottom:589.533333pt;}
.y152{bottom:590.973333pt;}
.y129{bottom:591.453333pt;}
.y2a{bottom:593.213333pt;}
.y3b{bottom:596.093333pt;}
.yb6{bottom:597.533333pt;}
.y101{bottom:598.333333pt;}
.y170{bottom:598.973333pt;}
.y8f{bottom:604.573333pt;}
.y151{bottom:606.013333pt;}
.y128{bottom:606.493333pt;}
.y3a{bottom:607.773333pt;}
.y29{bottom:608.413333pt;}
.y61{bottom:610.333333pt;}
.yb5{bottom:612.573333pt;}
.yd6{bottom:613.213333pt;}
.y100{bottom:613.533333pt;}
.y16f{bottom:614.013333pt;}
.y39{bottom:619.613333pt;}
.y150{bottom:621.213333pt;}
.y28{bottom:623.453333pt;}
.y60{bottom:625.373333pt;}
.y8e{bottom:627.773333pt;}
.yff{bottom:628.733333pt;}
.y16e{bottom:629.213333pt;}
.y127{bottom:629.693333pt;}
.y38{bottom:631.293333pt;}
.yd5{bottom:637.213333pt;}
.y5f{bottom:640.573333pt;}
.y27{bottom:642.653333pt;}
.y8d{bottom:642.813333pt;}
.y37{bottom:643.613333pt;}
.y14f{bottom:644.253333pt;}
.y126{bottom:644.893333pt;}
.yfe{bottom:651.773333pt;}
.yd4{bottom:652.253333pt;}
.y5e{bottom:655.613333pt;}
.y36{bottom:657.053333pt;}
.y26{bottom:657.693333pt;}
.y8c{bottom:658.013333pt;}
.y14e{bottom:659.453333pt;}
.yd3{bottom:667.453333pt;}
.y125{bottom:667.933333pt;}
.y35{bottom:670.493333pt;}
.y5d{bottom:670.813333pt;}
.y25{bottom:672.893333pt;}
.y8b{bottom:673.053333pt;}
.yfd{bottom:674.653333pt;}
.yb4{bottom:681.053333pt;}
.y14d{bottom:682.493333pt;}
.y124{bottom:683.133333pt;}
.y24{bottom:687.933333pt;}
.yfc{bottom:689.853333pt;}
.yd2{bottom:690.493333pt;}
.y5c{bottom:693.853333pt;}
.y8a{bottom:696.253333pt;}
.y14c{bottom:697.693333pt;}
.y123{bottom:698.173333pt;}
.y23{bottom:703.133333pt;}
.yfb{bottom:704.893333pt;}
.yd1{bottom:705.693333pt;}
.y5b{bottom:709.053333pt;}
.y89{bottom:711.293333pt;}
.y14b{bottom:712.733333pt;}
.y122{bottom:713.373333pt;}
.yb3{bottom:719.933333pt;}
.yd0{bottom:720.733333pt;}
.y22{bottom:722.173333pt;}
.y88{bottom:726.493333pt;}
.y14a{bottom:727.933333pt;}
.yfa{bottom:728.093333pt;}
.y17{bottom:732.093333pt;}
.y5a{bottom:732.733333pt;}
.ycf{bottom:735.933333pt;}
.y121{bottom:737.053333pt;}
.y21{bottom:737.373333pt;}
.yf9{bottom:743.133333pt;}
.y16{bottom:743.773333pt;}
.yb2{bottom:743.933333pt;}
.y87{bottom:750.173333pt;}
.y149{bottom:750.973333pt;}
.y20{bottom:752.573333pt;}
.y59{bottom:756.733333pt;}
.yf8{bottom:758.333333pt;}
.yb1{bottom:758.973333pt;}
.y15{bottom:760.253333pt;}
.y120{bottom:761.053333pt;}
.y148{bottom:766.173333pt;}
.y1f{bottom:767.613333pt;}
.y58{bottom:771.773333pt;}
.y14{bottom:772.253333pt;}
.y86{bottom:774.173333pt;}
.y147{bottom:781.253333pt;}
.yf7{bottom:781.413333pt;}
.y1e{bottom:782.853333pt;}
.y11f{bottom:784.773333pt;}
.y57{bottom:787.013333pt;}
.y13{bottom:787.973333pt;}
.y85{bottom:789.253333pt;}
.yf6{bottom:796.613333pt;}
.y1d{bottom:802.533333pt;}
.y12{bottom:804.453333pt;}
.y11e{bottom:808.773333pt;}
.y56{bottom:810.053333pt;}
.yf5{bottom:811.813333pt;}
.yb0{bottom:812.453333pt;}
.y146{bottom:819.493333pt;}
.y11{bottom:820.133333pt;}
.y55{bottom:825.253333pt;}
.y1c{bottom:826.213333pt;}
.y84{bottom:827.493333pt;}
.y11d{bottom:832.453333pt;}
.y145{bottom:834.693333pt;}
.yf4{bottom:834.853333pt;}
.y54{bottom:840.293333pt;}
.y83{bottom:842.693333pt;}
.y1b{bottom:843.653333pt;}
.yf3{bottom:850.053333pt;}
.y3{bottom:851.493333pt;}
.y11c{bottom:856.293333pt;}
.y82{bottom:857.733333pt;}
.y53{bottom:863.493333pt;}
.yf2{bottom:865.093333pt;}
.y11b{bottom:871.493333pt;}
.y81{bottom:872.933333pt;}
.y2{bottom:874.373333pt;}
.y10{bottom:874.853333pt;}
.y52{bottom:878.693333pt;}
.yaf{bottom:880.933333pt;}
.y11a{bottom:886.693333pt;}
.y144{bottom:887.973333pt;}
.yf1{bottom:888.293333pt;}
.y80{bottom:895.973333pt;}
.yf{bottom:896.933333pt;}
.y1{bottom:897.253333pt;}
.y51{bottom:901.733333pt;}
.y143{bottom:903.173333pt;}
.yf0{bottom:903.333333pt;}
.y7f{bottom:911.173333pt;}
.y50{bottom:916.933333pt;}
.yef{bottom:918.533333pt;}
.y7e{bottom:926.213333pt;}
.y4f{bottom:940.613333pt;}
.y7d{bottom:941.413333pt;}
.yee{bottom:941.573333pt;}
.yae{bottom:995.813333pt;}
.y5{bottom:1002.533333pt;}
.yad{bottom:1007.173333pt;}
.yac{bottom:1034.560000pt;}
.y4{bottom:1039.360000pt;}
.yab{bottom:1053.760000pt;}
.h19{height:22.828125pt;}
.hb{height:28.579687pt;}
.hd{height:28.665000pt;}
.hc{height:29.082187pt;}
.h13{height:30.254687pt;}
.h8{height:32.160000pt;}
.he{height:33.277500pt;}
.h1a{height:33.867188pt;}
.hf{height:35.342500pt;}
.h6{height:36.146250pt;}
.h7{height:36.261000pt;}
.h10{height:37.479688pt;}
.h1b{height:37.570000pt;}
.h14{height:38.441250pt;}
.h16{height:42.649687pt;}
.h12{height:43.031250pt;}
.h11{height:43.146000pt;}
.ha{height:45.156250pt;}
.h18{height:45.906250pt;}
.h15{height:49.233750pt;}
.h17{height:49.348500pt;}
.h2{height:50.281250pt;}
.h5{height:52.834688pt;}
.h9{height:60.057813pt;}
.h4{height:68.859375pt;}
.h3{height:68.951188pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:57.439988pt;}
.x9{left:60.319988pt;}
.xa{left:61.759988pt;}
.x1{left:62.719988pt;}
.xf{left:75.679988pt;}
.x7{left:79.711988pt;}
.x10{left:91.231988pt;}
.x8{left:188.506655pt;}
.x5{left:199.866655pt;}
.x6{left:231.226655pt;}
.xb{left:233.146655pt;}
.xc{left:325.506655pt;}
.x4{left:389.506655pt;}
.xd{left:391.106655pt;}
.x13{left:404.066655pt;}
.x12{left:422.333322pt;}
.x11{left:437.853322pt;}
.x16{left:557.853322pt;}
.x2{left:652.613322pt;}
.x3{left:659.653322pt;}
.x17{left:663.813322pt;}
.x14{left:685.893322pt;}
.x15{left:690.533322pt;}
}




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