
    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_fa8e67348b69816233688ef0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_94cc1a4962b442fdf98bd1b2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3d5728ab0d43ef095ea1ca99.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_c6f075125d649e9c7ed6df9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_8b45289e9af8352efe7f1307.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_b8179e0c69d6a371f8149094.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_59ca1d7b919cdd3a4dc825ad.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2db866aefd37479692cfed9d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_944a25890f7f37c5e2e988f5.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_00cd2a18505fa44df2c0b5d6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c3cbd4b4ad27c1e00e794154.woff2')format("woff");}.fff{font-family:fff;line-height:0.938965;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_a77d67d4b9df4cfe969bcfef.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938965;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_7d935b2b923fcdd454cb9f06.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_52f5ce8f2d44d58cbca86a52.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;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;}
@font-face{font-family:ff14;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff14{font-family:ff14;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls16{letter-spacing:-3.960000px;}
.lse{letter-spacing:-0.924000px;}
.ls12{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.064800px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls17{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106560px;}
.lsf{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsd{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls10{letter-spacing:0.774000px;}
.ls3{letter-spacing:0.786240px;}
.ls19{letter-spacing:16.506720px;}
.ls18{letter-spacing:46.026720px;}
.ls13{letter-spacing:64.170720px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.wsf{word-spacing:-15.714000px;}
.ws11{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.238800px;}
.wse{word-spacing:-15.059520px;}
.wsd{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.440960px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws13{word-spacing:-10.980000px;}
.ws4{word-spacing:-8.786880px;}
.ws5{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._44{margin-left:-6.971040px;}
._5{margin-left:-5.557680px;}
._4{margin-left:-4.158000px;}
._2{margin-left:-2.795040px;}
._0{margin-left:-1.080000px;}
._1{width:1.002000px;}
._3{width:2.436000px;}
._c{width:3.449760px;}
._b{width:4.530720px;}
._6{width:5.743440px;}
._a{width:7.551120px;}
._8{width:9.561600px;}
._7{width:10.936080px;}
._13{width:12.054720px;}
._9{width:13.101360px;}
._f{width:15.969840px;}
._14{width:17.091360px;}
._1e{width:18.838320px;}
._15{width:19.914000px;}
._16{width:20.974800px;}
._3b{width:22.230720px;}
._24{width:23.366160px;}
._17{width:25.398000px;}
._10{width:26.905920px;}
._31{width:29.461680px;}
._12{width:31.332240px;}
._11{width:32.403840px;}
._3d{width:33.644880px;}
._28{width:35.796240px;}
._19{width:36.885840px;}
._27{width:39.142800px;}
._34{width:41.473440px;}
._21{width:43.744320px;}
._e{width:45.059040px;}
._d{width:46.314000px;}
._3a{width:47.509200px;}
._26{width:50.138640px;}
._1a{width:51.871680px;}
._35{width:53.425440px;}
._2d{width:54.919440px;}
._1f{width:55.995120px;}
._2b{width:58.684320px;}
._36{width:61.014960px;}
._37{width:62.987040px;}
._1d{width:69.142320px;}
._2a{width:72.966960px;}
._39{width:75.237840px;}
._43{width:76.446960px;}
._2f{width:77.508720px;}
._25{width:79.421040px;}
._18{width:82.229760px;}
._1c{width:86.785440px;}
._3c{width:88.683840px;}
._38{width:90.177840px;}
._1b{width:92.926800px;}
._2e{width:95.211600px;}
._29{width:100.157760px;}
._2c{width:101.651760px;}
._23{width:104.460480px;}
._20{width:106.133760px;}
._33{width:112.229280px;}
._30{width:118.862640px;}
._32{width:122.388480px;}
._3e{width:126.093600px;}
._3f{width:129.022080px;}
._40{width:152.581200px;}
._22{width:159.021360px;}
._42{width:208.557840px;}
._41{width:313.933200px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:3.234000px;}
.y4a{bottom:3.240000px;}
.ycc{bottom:3.270000px;}
.y3{bottom:3.600000px;}
.y4f{bottom:3.960000px;}
.y1a{bottom:5.040000px;}
.ye{bottom:9.540000px;}
.y4d{bottom:10.620000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y49{bottom:20.340000px;}
.ybc{bottom:20.514000px;}
.yad{bottom:20.520000px;}
.ycb{bottom:20.550000px;}
.y4e{bottom:22.320000px;}
.y4c{bottom:25.380000px;}
.y19{bottom:29.520000px;}
.yb{bottom:30.240000px;}
.y5{bottom:37.080000px;}
.y48{bottom:37.620000px;}
.ybb{bottom:37.794000px;}
.yac{bottom:37.800000px;}
.yca{bottom:37.830000px;}
.y18{bottom:42.120000px;}
.ya{bottom:46.620000px;}
.y47{bottom:54.900000px;}
.yb4{bottom:54.945000px;}
.yba{bottom:55.074000px;}
.yb2{bottom:55.080000px;}
.yc9{bottom:55.110000px;}
.yd9{bottom:55.125000px;}
.y1{bottom:59.580000px;}
.y17{bottom:62.505000px;}
.yb1{bottom:72.180000px;}
.y46{bottom:72.225000px;}
.yb9{bottom:72.354000px;}
.yc5{bottom:72.360000px;}
.yc8{bottom:72.390000px;}
.yd1{bottom:72.405000px;}
.y9{bottom:73.440000px;}
.y16{bottom:78.885000px;}
.yb8{bottom:89.454000px;}
.yb0{bottom:89.460000px;}
.yc0{bottom:89.490000px;}
.y45{bottom:89.505000px;}
.yd7{bottom:89.640000px;}
.yc7{bottom:89.670000px;}
.y8{bottom:93.090000px;}
.y15{bottom:94.725000px;}
.y57{bottom:102.096000px;}
.y14{bottom:105.165000px;}
.y44{bottom:106.605000px;}
.yb7{bottom:106.734000px;}
.yaf{bottom:106.740000px;}
.ybf{bottom:106.770000px;}
.yc3{bottom:106.785000px;}
.y95{bottom:108.756000px;}
.y7{bottom:111.450000px;}
.ye2{bottom:113.796000px;}
.yd3{bottom:115.236000px;}
.y56{bottom:119.376000px;}
.y13{bottom:123.525000px;}
.y43{bottom:123.885000px;}
.yb6{bottom:124.014000px;}
.ydc{bottom:124.050000px;}
.yd0{bottom:124.065000px;}
.y94{bottom:126.036000px;}
.y10b{bottom:134.316000px;}
.y9f{bottom:135.756000px;}
.y55{bottom:136.656000px;}
.y42{bottom:141.165000px;}
.y12{bottom:142.425000px;}
.y93{bottom:143.316000px;}
.yb5{bottom:149.976000px;}
.y10a{bottom:151.590000px;}
.y9e{bottom:153.030000px;}
.y54{bottom:153.930000px;}
.y41{bottom:158.445000px;}
.y92{bottom:160.590000px;}
.ye1{bottom:166.350000px;}
.yd2{bottom:167.790000px;}
.y11{bottom:168.165000px;}
.y109{bottom:168.870000px;}
.y9d{bottom:170.310000px;}
.y53{bottom:171.210000px;}
.y40{bottom:175.725000px;}
.y91{bottom:177.870000px;}
.y108{bottom:185.970000px;}
.y9c{bottom:187.590000px;}
.y52{bottom:188.490000px;}
.y10{bottom:192.645000px;}
.y3f{bottom:193.005000px;}
.y90{bottom:194.970000px;}
.y107{bottom:203.250000px;}
.y9b{bottom:204.690000px;}
.y51{bottom:205.590000px;}
.y3e{bottom:210.105000px;}
.y8f{bottom:212.250000px;}
.ye0{bottom:218.730000px;}
.y106{bottom:220.530000px;}
.y9a{bottom:221.970000px;}
.y50{bottom:222.870000px;}
.y3d{bottom:227.385000px;}
.y8e{bottom:229.530000px;}
.y4b{bottom:236.910000px;}
.y105{bottom:237.810000px;}
.y99{bottom:239.250000px;}
.y3c{bottom:244.665000px;}
.y8d{bottom:246.810000px;}
.y2c{bottom:253.125000px;}
.y104{bottom:255.090000px;}
.y98{bottom:256.530000px;}
.y3b{bottom:261.945000px;}
.y8c{bottom:264.090000px;}
.y2b{bottom:268.425000px;}
.ydf{bottom:271.290000px;}
.ycf{bottom:272.010000px;}
.y103{bottom:272.370000px;}
.y1d{bottom:273.630000px;}
.y97{bottom:273.810000px;}
.y3a{bottom:279.225000px;}
.y8b{bottom:281.370000px;}
.y2a{bottom:286.065000px;}
.y96{bottom:287.850000px;}
.yb3{bottom:288.750000px;}
.y102{bottom:289.470000px;}
.y39{bottom:296.505000px;}
.y8a{bottom:298.470000px;}
.y29{bottom:303.165000px;}
.y101{bottom:306.750000px;}
.y38{bottom:313.605000px;}
.y89{bottom:315.750000px;}
.y28{bottom:320.445000px;}
.y100{bottom:324.030000px;}
.y37{bottom:330.915000px;}
.y88{bottom:333.030000px;}
.y27{bottom:338.295000px;}
.yff{bottom:341.355000px;}
.y36{bottom:348.195000px;}
.y87{bottom:350.355000px;}
.y26{bottom:355.035000px;}
.yfe{bottom:358.635000px;}
.y35{bottom:365.475000px;}
.y86{bottom:367.635000px;}
.y25{bottom:371.415000px;}
.yde{bottom:375.555000px;}
.yfd{bottom:375.915000px;}
.y34{bottom:382.755000px;}
.y85{bottom:384.915000px;}
.y24{bottom:388.515000px;}
.yae{bottom:393.015000px;}
.y33{bottom:399.855000px;}
.y84{bottom:402.015000px;}
.y23{bottom:405.795000px;}
.yfc{bottom:410.295000px;}
.yce{bottom:410.835000px;}
.y32{bottom:417.135000px;}
.y83{bottom:419.295000px;}
.y22{bottom:423.255000px;}
.yfb{bottom:427.575000px;}
.y31{bottom:434.415000px;}
.y82{bottom:436.575000px;}
.y21{bottom:440.715000px;}
.yfa{bottom:444.855000px;}
.y30{bottom:451.695000px;}
.y81{bottom:453.855000px;}
.y20{bottom:460.875000px;}
.yf9{bottom:462.135000px;}
.y2f{bottom:468.975000px;}
.y80{bottom:471.135000px;}
.yf8{bottom:479.235000px;}
.y2e{bottom:486.255000px;}
.y7f{bottom:488.235000px;}
.y1f{bottom:488.415000px;}
.yf7{bottom:496.515000px;}
.ydd{bottom:497.055000px;}
.ycd{bottom:497.775000px;}
.y2d{bottom:503.355000px;}
.y7e{bottom:505.515000px;}
.y1e{bottom:506.055000px;}
.yf6{bottom:513.795000px;}
.yab{bottom:514.515000px;}
.y7d{bottom:522.795000px;}
.yf5{bottom:531.075000px;}
.y7c{bottom:540.075000px;}
.yf4{bottom:548.355000px;}
.y7b{bottom:557.355000px;}
.yf3{bottom:565.635000px;}
.yaa{bottom:570.315000px;}
.y7a{bottom:574.635000px;}
.yf2{bottom:582.735000px;}
.ydb{bottom:583.995000px;}
.ya9{bottom:587.595000px;}
.y79{bottom:591.735000px;}
.yf1{bottom:597.495000px;}
.yc6{bottom:601.995000px;}
.ya8{bottom:604.725000px;}
.y78{bottom:609.045000px;}
.ya7{bottom:622.005000px;}
.y77{bottom:626.325000px;}
.yf0{bottom:632.805000px;}
.ya6{bottom:639.285000px;}
.y76{bottom:643.605000px;}
.ya5{bottom:656.565000px;}
.y75{bottom:660.885000px;}
.yef{bottom:668.085000px;}
.ya4{bottom:673.845000px;}
.y74{bottom:678.165000px;}
.ya3{bottom:690.945000px;}
.y73{bottom:695.265000px;}
.yee{bottom:703.365000px;}
.ya2{bottom:709.305000px;}
.y72{bottom:712.545000px;}
.yda{bottom:722.805000px;}
.yc4{bottom:723.525000px;}
.ya1{bottom:727.665000px;}
.y71{bottom:729.825000px;}
.ya0{bottom:746.025000px;}
.y70{bottom:747.105000px;}
.yed{bottom:755.925000px;}
.y6f{bottom:764.385000px;}
.y6e{bottom:781.665000px;}
.y1b{bottom:791.025000px;}
.y6d{bottom:798.765000px;}
.yc2{bottom:810.645000px;}
.y6c{bottom:816.045000px;}
.yf{bottom:820.545000px;}
.yd8{bottom:827.025000px;}
.yec{bottom:829.545000px;}
.y6b{bottom:833.325000px;}
.yeb{bottom:846.825000px;}
.y6a{bottom:850.605000px;}
.yea{bottom:864.105000px;}
.y69{bottom:867.885000px;}
.ye9{bottom:881.430000px;}
.y68{bottom:885.030000px;}
.ye8{bottom:898.530000px;}
.y67{bottom:902.310000px;}
.ye7{bottom:915.810000px;}
.y66{bottom:919.590000px;}
.yd6{bottom:931.290000px;}
.yc1{bottom:932.190000px;}
.ye6{bottom:933.090000px;}
.y65{bottom:936.870000px;}
.ye5{bottom:947.850000px;}
.y64{bottom:954.150000px;}
.y63{bottom:971.430000px;}
.y62{bottom:988.530000px;}
.ye4{bottom:1000.410000px;}
.y61{bottom:1005.810000px;}
.y60{bottom:1023.090000px;}
.yd{bottom:1028.310000px;}
.yd5{bottom:1035.690000px;}
.y5f{bottom:1040.370000px;}
.ye3{bottom:1052.790000px;}
.y6{bottom:1053.510000px;}
.ybe{bottom:1053.690000px;}
.y5e{bottom:1057.650000px;}
.y5d{bottom:1074.930000px;}
.y5c{bottom:1092.030000px;}
.y5b{bottom:1109.310000px;}
.yd4{bottom:1122.630000px;}
.y5a{bottom:1126.590000px;}
.y59{bottom:1143.900000px;}
.y58{bottom:1161.180000px;}
.hb{height:24.840000px;}
.h12{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h31{height:34.380000px;}
.h30{height:34.560000px;}
.h32{height:34.596000px;}
.h11{height:35.806641px;}
.h8{height:36.180000px;}
.h1e{height:36.720000px;}
.h1c{height:38.818125px;}
.h20{height:42.164648px;}
.h1d{height:43.215117px;}
.h13{height:43.453125px;}
.h21{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h1a{height:45.770625px;}
.h19{height:46.881563px;}
.h17{height:47.980898px;}
.h1f{height:48.088125px;}
.h1b{height:49.255313px;}
.h2e{height:51.660000px;}
.h2d{height:51.696000px;}
.h22{height:51.840000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h2f{height:69.120000px;}
.h6{height:71.613281px;}
.h15{height:73.722656px;}
.h2b{height:86.220000px;}
.h28{height:86.400000px;}
.h2a{height:103.500000px;}
.h24{height:103.536000px;}
.h27{height:120.600000px;}
.h26{height:120.636000px;}
.h23{height:120.780000px;}
.h29{height:120.816000px;}
.h7{height:121.536000px;}
.h25{height:138.060000px;}
.h2c{height:138.096000px;}
.hc{height:207.750000px;}
.h16{height:517.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:57.996000px;}
.wb{width:68.760000px;}
.w10{width:71.280000px;}
.we{width:72.576000px;}
.w3{width:73.080000px;}
.wf{width:73.620000px;}
.wd{width:89.280000px;}
.w11{width:89.316000px;}
.w15{width:94.680000px;}
.w14{width:94.896000px;}
.wa{width:99.576000px;}
.w12{width:101.340000px;}
.w13{width:106.776000px;}
.w5{width:151.950000px;}
.w17{width:203.250000px;}
.w8{width:223.455000px;}
.w16{width:226.830000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:7.560000px;}
.x2{left:8.676000px;}
.x14{left:12.600000px;}
.xb{left:15.696000px;}
.xf{left:23.796000px;}
.x11{left:41.616000px;}
.xe{left:60.156000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x17{left:101.195987px;}
.x28{left:108.035987px;}
.xc{left:121.170000px;}
.x19{left:182.190000px;}
.x22{left:189.390000px;}
.x21{left:201.989987px;}
.xd{left:203.835000px;}
.x12{left:215.175000px;}
.x5{left:232.950000px;}
.x1a{left:251.670000px;}
.x8{left:272.235000px;}
.x16{left:278.354987px;}
.x23{left:285.015000px;}
.x13{left:304.455000px;}
.x1b{left:310.395000px;}
.x18{left:312.194987px;}
.x10{left:315.255000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x24{left:380.415000px;}
.x27{left:396.074987px;}
.x1c{left:400.395000px;}
.x9{left:439.500000px;}
.x1d{left:473.685000px;}
.x1e{left:548.025000px;}
.x25{left:608.145000px;}
.x1f{left:620.025000px;}
.x15{left:691.889987px;}
.x20{left:710.070000px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls16{letter-spacing:-3.520000pt;}
.lse{letter-spacing:-0.821333pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.057600pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls17{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094720pt;}
.lsf{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsd{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls10{letter-spacing:0.688000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls19{letter-spacing:14.672640pt;}
.ls18{letter-spacing:40.912640pt;}
.ls13{letter-spacing:57.040640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.wsf{word-spacing:-13.968000pt;}
.ws11{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.386240pt;}
.wsd{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.185067pt;}
.ws7{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.947520pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws13{word-spacing:-9.760000pt;}
.ws4{word-spacing:-7.810560pt;}
.ws5{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._44{margin-left:-6.196480pt;}
._5{margin-left:-4.940160pt;}
._4{margin-left:-3.696000pt;}
._2{margin-left:-2.484480pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.890667pt;}
._3{width:2.165333pt;}
._c{width:3.066453pt;}
._b{width:4.027307pt;}
._6{width:5.105280pt;}
._a{width:6.712107pt;}
._8{width:8.499200pt;}
._7{width:9.720960pt;}
._13{width:10.715307pt;}
._9{width:11.645653pt;}
._f{width:14.195413pt;}
._14{width:15.192320pt;}
._1e{width:16.745173pt;}
._15{width:17.701333pt;}
._16{width:18.644267pt;}
._3b{width:19.760640pt;}
._24{width:20.769920pt;}
._17{width:22.576000pt;}
._10{width:23.916373pt;}
._31{width:26.188160pt;}
._12{width:27.850880pt;}
._11{width:28.803413pt;}
._3d{width:29.906560pt;}
._28{width:31.818880pt;}
._19{width:32.787413pt;}
._27{width:34.793600pt;}
._34{width:36.865280pt;}
._21{width:38.883840pt;}
._e{width:40.052480pt;}
._d{width:41.168000pt;}
._3a{width:42.230400pt;}
._26{width:44.567680pt;}
._1a{width:46.108160pt;}
._35{width:47.489280pt;}
._2d{width:48.817280pt;}
._1f{width:49.773440pt;}
._2b{width:52.163840pt;}
._36{width:54.235520pt;}
._37{width:55.988480pt;}
._1d{width:61.459840pt;}
._2a{width:64.859520pt;}
._39{width:66.878080pt;}
._43{width:67.952853pt;}
._2f{width:68.896640pt;}
._25{width:70.596480pt;}
._18{width:73.093120pt;}
._1c{width:77.142613pt;}
._3c{width:78.830080pt;}
._38{width:80.158080pt;}
._1b{width:82.601600pt;}
._2e{width:84.632533pt;}
._29{width:89.029120pt;}
._2c{width:90.357120pt;}
._23{width:92.853760pt;}
._20{width:94.341120pt;}
._33{width:99.759360pt;}
._30{width:105.655680pt;}
._32{width:108.789760pt;}
._3e{width:112.083200pt;}
._3f{width:114.686293pt;}
._40{width:135.627733pt;}
._22{width:141.352320pt;}
._42{width:185.384747pt;}
._41{width:279.051733pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:2.874667pt;}
.y4a{bottom:2.880000pt;}
.ycc{bottom:2.906667pt;}
.y3{bottom:3.200000pt;}
.y4f{bottom:3.520000pt;}
.y1a{bottom:4.480000pt;}
.ye{bottom:8.480000pt;}
.y4d{bottom:9.440000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y49{bottom:18.080000pt;}
.ybc{bottom:18.234667pt;}
.yad{bottom:18.240000pt;}
.ycb{bottom:18.266667pt;}
.y4e{bottom:19.840000pt;}
.y4c{bottom:22.560000pt;}
.y19{bottom:26.240000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:32.960000pt;}
.y48{bottom:33.440000pt;}
.ybb{bottom:33.594667pt;}
.yac{bottom:33.600000pt;}
.yca{bottom:33.626667pt;}
.y18{bottom:37.440000pt;}
.ya{bottom:41.440000pt;}
.y47{bottom:48.800000pt;}
.yb4{bottom:48.840000pt;}
.yba{bottom:48.954667pt;}
.yb2{bottom:48.960000pt;}
.yc9{bottom:48.986667pt;}
.yd9{bottom:49.000000pt;}
.y1{bottom:52.960000pt;}
.y17{bottom:55.560000pt;}
.yb1{bottom:64.160000pt;}
.y46{bottom:64.200000pt;}
.yb9{bottom:64.314667pt;}
.yc5{bottom:64.320000pt;}
.yc8{bottom:64.346667pt;}
.yd1{bottom:64.360000pt;}
.y9{bottom:65.280000pt;}
.y16{bottom:70.120000pt;}
.yb8{bottom:79.514667pt;}
.yb0{bottom:79.520000pt;}
.yc0{bottom:79.546667pt;}
.y45{bottom:79.560000pt;}
.yd7{bottom:79.680000pt;}
.yc7{bottom:79.706667pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:84.200000pt;}
.y57{bottom:90.752000pt;}
.y14{bottom:93.480000pt;}
.y44{bottom:94.760000pt;}
.yb7{bottom:94.874667pt;}
.yaf{bottom:94.880000pt;}
.ybf{bottom:94.906667pt;}
.yc3{bottom:94.920000pt;}
.y95{bottom:96.672000pt;}
.y7{bottom:99.066667pt;}
.ye2{bottom:101.152000pt;}
.yd3{bottom:102.432000pt;}
.y56{bottom:106.112000pt;}
.y13{bottom:109.800000pt;}
.y43{bottom:110.120000pt;}
.yb6{bottom:110.234667pt;}
.ydc{bottom:110.266667pt;}
.yd0{bottom:110.280000pt;}
.y94{bottom:112.032000pt;}
.y10b{bottom:119.392000pt;}
.y9f{bottom:120.672000pt;}
.y55{bottom:121.472000pt;}
.y42{bottom:125.480000pt;}
.y12{bottom:126.600000pt;}
.y93{bottom:127.392000pt;}
.yb5{bottom:133.312000pt;}
.y10a{bottom:134.746667pt;}
.y9e{bottom:136.026667pt;}
.y54{bottom:136.826667pt;}
.y41{bottom:140.840000pt;}
.y92{bottom:142.746667pt;}
.ye1{bottom:147.866667pt;}
.yd2{bottom:149.146667pt;}
.y11{bottom:149.480000pt;}
.y109{bottom:150.106667pt;}
.y9d{bottom:151.386667pt;}
.y53{bottom:152.186667pt;}
.y40{bottom:156.200000pt;}
.y91{bottom:158.106667pt;}
.y108{bottom:165.306667pt;}
.y9c{bottom:166.746667pt;}
.y52{bottom:167.546667pt;}
.y10{bottom:171.240000pt;}
.y3f{bottom:171.560000pt;}
.y90{bottom:173.306667pt;}
.y107{bottom:180.666667pt;}
.y9b{bottom:181.946667pt;}
.y51{bottom:182.746667pt;}
.y3e{bottom:186.760000pt;}
.y8f{bottom:188.666667pt;}
.ye0{bottom:194.426667pt;}
.y106{bottom:196.026667pt;}
.y9a{bottom:197.306667pt;}
.y50{bottom:198.106667pt;}
.y3d{bottom:202.120000pt;}
.y8e{bottom:204.026667pt;}
.y4b{bottom:210.586667pt;}
.y105{bottom:211.386667pt;}
.y99{bottom:212.666667pt;}
.y3c{bottom:217.480000pt;}
.y8d{bottom:219.386667pt;}
.y2c{bottom:225.000000pt;}
.y104{bottom:226.746667pt;}
.y98{bottom:228.026667pt;}
.y3b{bottom:232.840000pt;}
.y8c{bottom:234.746667pt;}
.y2b{bottom:238.600000pt;}
.ydf{bottom:241.146667pt;}
.ycf{bottom:241.786667pt;}
.y103{bottom:242.106667pt;}
.y1d{bottom:243.226667pt;}
.y97{bottom:243.386667pt;}
.y3a{bottom:248.200000pt;}
.y8b{bottom:250.106667pt;}
.y2a{bottom:254.280000pt;}
.y96{bottom:255.866667pt;}
.yb3{bottom:256.666667pt;}
.y102{bottom:257.306667pt;}
.y39{bottom:263.560000pt;}
.y8a{bottom:265.306667pt;}
.y29{bottom:269.480000pt;}
.y101{bottom:272.666667pt;}
.y38{bottom:278.760000pt;}
.y89{bottom:280.666667pt;}
.y28{bottom:284.840000pt;}
.y100{bottom:288.026667pt;}
.y37{bottom:294.146667pt;}
.y88{bottom:296.026667pt;}
.y27{bottom:300.706667pt;}
.yff{bottom:303.426667pt;}
.y36{bottom:309.506667pt;}
.y87{bottom:311.426667pt;}
.y26{bottom:315.586667pt;}
.yfe{bottom:318.786667pt;}
.y35{bottom:324.866667pt;}
.y86{bottom:326.786667pt;}
.y25{bottom:330.146667pt;}
.yde{bottom:333.826667pt;}
.yfd{bottom:334.146667pt;}
.y34{bottom:340.226667pt;}
.y85{bottom:342.146667pt;}
.y24{bottom:345.346667pt;}
.yae{bottom:349.346667pt;}
.y33{bottom:355.426667pt;}
.y84{bottom:357.346667pt;}
.y23{bottom:360.706667pt;}
.yfc{bottom:364.706667pt;}
.yce{bottom:365.186667pt;}
.y32{bottom:370.786667pt;}
.y83{bottom:372.706667pt;}
.y22{bottom:376.226667pt;}
.yfb{bottom:380.066667pt;}
.y31{bottom:386.146667pt;}
.y82{bottom:388.066667pt;}
.y21{bottom:391.746667pt;}
.yfa{bottom:395.426667pt;}
.y30{bottom:401.506667pt;}
.y81{bottom:403.426667pt;}
.y20{bottom:409.666667pt;}
.yf9{bottom:410.786667pt;}
.y2f{bottom:416.866667pt;}
.y80{bottom:418.786667pt;}
.yf8{bottom:425.986667pt;}
.y2e{bottom:432.226667pt;}
.y7f{bottom:433.986667pt;}
.y1f{bottom:434.146667pt;}
.yf7{bottom:441.346667pt;}
.ydd{bottom:441.826667pt;}
.ycd{bottom:442.466667pt;}
.y2d{bottom:447.426667pt;}
.y7e{bottom:449.346667pt;}
.y1e{bottom:449.826667pt;}
.yf6{bottom:456.706667pt;}
.yab{bottom:457.346667pt;}
.y7d{bottom:464.706667pt;}
.yf5{bottom:472.066667pt;}
.y7c{bottom:480.066667pt;}
.yf4{bottom:487.426667pt;}
.y7b{bottom:495.426667pt;}
.yf3{bottom:502.786667pt;}
.yaa{bottom:506.946667pt;}
.y7a{bottom:510.786667pt;}
.yf2{bottom:517.986667pt;}
.ydb{bottom:519.106667pt;}
.ya9{bottom:522.306667pt;}
.y79{bottom:525.986667pt;}
.yf1{bottom:531.106667pt;}
.yc6{bottom:535.106667pt;}
.ya8{bottom:537.533333pt;}
.y78{bottom:541.373333pt;}
.ya7{bottom:552.893333pt;}
.y77{bottom:556.733333pt;}
.yf0{bottom:562.493333pt;}
.ya6{bottom:568.253333pt;}
.y76{bottom:572.093333pt;}
.ya5{bottom:583.613333pt;}
.y75{bottom:587.453333pt;}
.yef{bottom:593.853333pt;}
.ya4{bottom:598.973333pt;}
.y74{bottom:602.813333pt;}
.ya3{bottom:614.173333pt;}
.y73{bottom:618.013333pt;}
.yee{bottom:625.213333pt;}
.ya2{bottom:630.493333pt;}
.y72{bottom:633.373333pt;}
.yda{bottom:642.493333pt;}
.yc4{bottom:643.133333pt;}
.ya1{bottom:646.813333pt;}
.y71{bottom:648.733333pt;}
.ya0{bottom:663.133333pt;}
.y70{bottom:664.093333pt;}
.yed{bottom:671.933333pt;}
.y6f{bottom:679.453333pt;}
.y6e{bottom:694.813333pt;}
.y1b{bottom:703.133333pt;}
.y6d{bottom:710.013333pt;}
.yc2{bottom:720.573333pt;}
.y6c{bottom:725.373333pt;}
.yf{bottom:729.373333pt;}
.yd8{bottom:735.133333pt;}
.yec{bottom:737.373333pt;}
.y6b{bottom:740.733333pt;}
.yeb{bottom:752.733333pt;}
.y6a{bottom:756.093333pt;}
.yea{bottom:768.093333pt;}
.y69{bottom:771.453333pt;}
.ye9{bottom:783.493333pt;}
.y68{bottom:786.693333pt;}
.ye8{bottom:798.693333pt;}
.y67{bottom:802.053333pt;}
.ye7{bottom:814.053333pt;}
.y66{bottom:817.413333pt;}
.yd6{bottom:827.813333pt;}
.yc1{bottom:828.613333pt;}
.ye6{bottom:829.413333pt;}
.y65{bottom:832.773333pt;}
.ye5{bottom:842.533333pt;}
.y64{bottom:848.133333pt;}
.y63{bottom:863.493333pt;}
.y62{bottom:878.693333pt;}
.ye4{bottom:889.253333pt;}
.y61{bottom:894.053333pt;}
.y60{bottom:909.413333pt;}
.yd{bottom:914.053333pt;}
.yd5{bottom:920.613333pt;}
.y5f{bottom:924.773333pt;}
.ye3{bottom:935.813333pt;}
.y6{bottom:936.453333pt;}
.ybe{bottom:936.613333pt;}
.y5e{bottom:940.133333pt;}
.y5d{bottom:955.493333pt;}
.y5c{bottom:970.693333pt;}
.y5b{bottom:986.053333pt;}
.yd4{bottom:997.893333pt;}
.y5a{bottom:1001.413333pt;}
.y59{bottom:1016.800000pt;}
.y58{bottom:1032.160000pt;}
.hb{height:22.080000pt;}
.h12{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h31{height:30.560000pt;}
.h30{height:30.720000pt;}
.h32{height:30.752000pt;}
.h11{height:31.828125pt;}
.h8{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1c{height:34.505000pt;}
.h20{height:37.479688pt;}
.h1d{height:38.413438pt;}
.h13{height:38.625000pt;}
.h21{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h19{height:41.672500pt;}
.h17{height:42.649687pt;}
.h1f{height:42.745000pt;}
.h1b{height:43.782500pt;}
.h2e{height:45.920000pt;}
.h2d{height:45.952000pt;}
.h22{height:46.080000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h2f{height:61.440000pt;}
.h6{height:63.656250pt;}
.h15{height:65.531250pt;}
.h2b{height:76.640000pt;}
.h28{height:76.800000pt;}
.h2a{height:92.000000pt;}
.h24{height:92.032000pt;}
.h27{height:107.200000pt;}
.h26{height:107.232000pt;}
.h23{height:107.360000pt;}
.h29{height:107.392000pt;}
.h7{height:108.032000pt;}
.h25{height:122.720000pt;}
.h2c{height:122.752000pt;}
.hc{height:184.666667pt;}
.h16{height:459.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:51.552000pt;}
.wb{width:61.120000pt;}
.w10{width:63.360000pt;}
.we{width:64.512000pt;}
.w3{width:64.960000pt;}
.wf{width:65.440000pt;}
.wd{width:79.360000pt;}
.w11{width:79.392000pt;}
.w15{width:84.160000pt;}
.w14{width:84.352000pt;}
.wa{width:88.512000pt;}
.w12{width:90.080000pt;}
.w13{width:94.912000pt;}
.w5{width:135.066667pt;}
.w17{width:180.666667pt;}
.w8{width:198.626667pt;}
.w16{width:201.626667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.720000pt;}
.x2{left:7.712000pt;}
.x14{left:11.200000pt;}
.xb{left:13.952000pt;}
.xf{left:21.152000pt;}
.x11{left:36.992000pt;}
.xe{left:53.472000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x17{left:89.951988pt;}
.x28{left:96.031988pt;}
.xc{left:107.706667pt;}
.x19{left:161.946667pt;}
.x22{left:168.346667pt;}
.x21{left:179.546655pt;}
.xd{left:181.186667pt;}
.x12{left:191.266667pt;}
.x5{left:207.066667pt;}
.x1a{left:223.706667pt;}
.x8{left:241.986667pt;}
.x16{left:247.426655pt;}
.x23{left:253.346667pt;}
.x13{left:270.626667pt;}
.x1b{left:275.906667pt;}
.x18{left:277.506655pt;}
.x10{left:280.226667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x24{left:338.146667pt;}
.x27{left:352.066655pt;}
.x1c{left:355.906667pt;}
.x9{left:390.666667pt;}
.x1d{left:421.053333pt;}
.x1e{left:487.133333pt;}
.x25{left:540.573333pt;}
.x1f{left:551.133333pt;}
.x15{left:615.013322pt;}
.x20{left:631.173333pt;}
.x3{left:656.933333pt;}
}




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