
    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_0dd234d9ac99870676f50a5c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.753418;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_0baeba14ec7df6b8999ef339.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3624d87d6ba3347068a39351.woff')format("woff");}.ff3{font-family:ff3;line-height:1.060059;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_760b1759543e45652f44c0a0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_9fa19f391f67930d4339abd8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.060059;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_7111d1d24b4b0799916a97d6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.753906;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_8b06c941ca115dbc3df91d5d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5b4a5083291aaeebd8b1418b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.884766;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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.835000;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_7ffcb32841c7d4d886ea631a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_1fe7a43116e3fa158cf883f1.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4308435f16e2db63da2527c2.woff')format("woff");}.ffc{font-family:ffc;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_973ca41df58e4b0c9785d415.woff')format("woff");}.ffd{font-family:ffd;line-height:1.084961;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_ccebda026b9b8791b6e80120.woff')format("woff");}.ffe{font-family:ffe;line-height:0.694336;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_d632cbf86c9394616a076d26.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;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_609a8e17e2d1329e77259ad4.woff')format("woff");}.ff10{font-family:ff10;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff12{font-family:ff12;line-height:1.003906;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_0737947fbc755c377b9d0d7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.745117;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:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls11{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.870000px;}
.lse{letter-spacing:-0.720000px;}
.ls1e{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.414600px;}
.ls18{letter-spacing:-0.305400px;}
.ls17{letter-spacing:-0.262200px;}
.lsc{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.190200px;}
.lsa{letter-spacing:-0.144000px;}
.ls6{letter-spacing:-0.114000px;}
.lsb{letter-spacing:-0.017280px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls2{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.078000px;}
.ls21{letter-spacing:0.109200px;}
.ls5{letter-spacing:0.152640px;}
.ls1{letter-spacing:0.187200px;}
.ls13{letter-spacing:0.262080px;}
.ls12{letter-spacing:0.262200px;}
.ls10{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.414600px;}
.ls3{letter-spacing:0.576000px;}
.ls22{letter-spacing:6.761280px;}
.ls1c{letter-spacing:6.785280px;}
.lsf{letter-spacing:39.881280px;}
.ls1b{letter-spacing:39.905280px;}
.ls14{letter-spacing:59.345280px;}
.ls19{letter-spacing:59.760000px;}
.ls15{letter-spacing:64.026720px;}
.ls1d{letter-spacing:100.800000px;}
.ls20{letter-spacing:107.280000px;}
.ls1f{letter-spacing:908.820000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-69.120000px;}
.wsc{word-spacing:-66.240000px;}
.ws13{word-spacing:-59.760000px;}
.ws0{word-spacing:-24.062880px;}
.ws8{word-spacing:-19.457280px;}
.ws7{word-spacing:-19.422720px;}
.ws1{word-spacing:-19.010880px;}
.ws3{word-spacing:-18.532800px;}
.ws2{word-spacing:-18.342600px;}
.wsa{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.974600px;}
.ws14{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.822200px;}
.ws15{word-spacing:-16.669200px;}
.wsd{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.297800px;}
.ws12{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.912000px;}
.ws6{word-spacing:-15.696000px;}
.wsb{word-spacing:-15.690000px;}
.ws4{word-spacing:-14.650800px;}
.wse{word-spacing:0.000000px;}
._67{margin-left:-7.531200px;}
._65{margin-left:-5.232960px;}
._63{margin-left:-3.209040px;}
._17{margin-left:-2.190240px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.597280px;}
._8{width:3.775680px;}
._7{width:4.870800px;}
._10{width:6.359040px;}
._6{width:7.440960px;}
._4{width:8.611200px;}
._5{width:9.620640px;}
._c{width:10.730880px;}
._b{width:12.254400px;}
._a{width:13.752000px;}
._9{width:14.856960px;}
._4d{width:16.930080px;}
._3{width:18.149760px;}
._e{width:19.253520px;}
._d{width:20.468160px;}
._30{width:21.614400px;}
._f{width:22.654080px;}
._51{width:23.693760px;}
._1c{width:24.711840px;}
._26{width:25.860240px;}
._18{width:27.816480px;}
._16{width:29.114640px;}
._2b{width:31.066560px;}
._12{width:32.095440px;}
._11{width:33.186240px;}
._15{width:35.208720px;}
._47{width:36.264240px;}
._3a{width:37.425600px;}
._52{width:38.796480px;}
._38{width:39.896640px;}
._28{width:41.135040px;}
._33{width:42.459840px;}
._34{width:44.283600px;}
._31{width:46.169280px;}
._39{width:47.759040px;}
._37{width:48.864960px;}
._24{width:50.761440px;}
._23{width:51.995280px;}
._2c{width:54.008880px;}
._35{width:55.088400px;}
._1a{width:56.568960px;}
._19{width:57.597840px;}
._1b{width:58.644000px;}
._25{width:59.950080px;}
._22{width:60.980400px;}
._21{width:62.066880px;}
._27{width:63.391680px;}
._29{width:65.511360px;}
._2a{width:67.113120px;}
._4e{width:68.394000px;}
._3e{width:69.750720px;}
._50{width:71.605440px;}
._32{width:72.930240px;}
._2e{width:74.917440px;}
._2f{width:76.394880px;}
._5b{width:78.560640px;}
._13{width:79.686720px;}
._14{width:80.848080px;}
._54{width:84.545280px;}
._2d{width:86.641920px;}
._42{width:88.430400px;}
._55{width:90.702720px;}
._36{width:91.742400px;}
._43{width:93.472080px;}
._1d{width:95.186880px;}
._61{width:97.729920px;}
._59{width:99.956160px;}
._5a{width:101.016000px;}
._5c{width:103.438800px;}
._4f{width:105.156720px;}
._45{width:106.351200px;}
._44{width:107.441280px;}
._3d{width:111.548160px;}
._60{width:123.283440px;}
._5e{width:126.573840px;}
._56{width:132.903360px;}
._69{width:141.086880px;}
._68{width:142.619040px;}
._64{width:145.661760px;}
._20{width:152.893440px;}
._3f{width:159.903360px;}
._5d{width:175.668480px;}
._57{width:178.516800px;}
._3c{width:187.754400px;}
._1e{width:189.617520px;}
._4b{width:193.942320px;}
._1f{width:197.647200px;}
._53{width:199.664640px;}
._6f{width:224.752320px;}
._6d{width:231.343200px;}
._6c{width:232.531920px;}
._4a{width:246.811680px;}
._4c{width:262.045440px;}
._49{width:276.419520px;}
._6a{width:279.864000px;}
._48{width:282.120840px;}
._3b{width:288.720000px;}
._62{width:292.714560px;}
._58{width:312.621840px;}
._46{width:335.439360px;}
._41{width:346.368960px;}
._66{width:403.269120px;}
._5f{width:418.703040px;}
._6e{width:529.257600px;}
._6b{width:552.445920px;}
._70{width:586.193040px;}
._71{width:847.596000px;}
._40{width:849.185760px;}
.fc4{color:rgb(88,89,91);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(192,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:18.000000px;}
.fs5{font-size:23.760000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs9{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.yf{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.ya5{bottom:3.585000px;}
.yc0{bottom:3.600000px;}
.ycd{bottom:3.780000px;}
.yaf{bottom:3.945000px;}
.yb8{bottom:3.960000px;}
.yf4{bottom:4.125000px;}
.yed{bottom:4.140000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ya6{bottom:13.125000px;}
.yd0{bottom:13.140000px;}
.yf7{bottom:22.485000px;}
.yb7{bottom:22.500000px;}
.yc9{bottom:22.545000px;}
.ya4{bottom:22.665000px;}
.yc3{bottom:22.680000px;}
.yf8{bottom:22.845000px;}
.ybf{bottom:22.860000px;}
.ycb{bottom:22.905000px;}
.yae{bottom:23.025000px;}
.yc2{bottom:23.040000px;}
.y15{bottom:26.685000px;}
.ycf{bottom:32.040000px;}
.y5{bottom:33.120000px;}
.yaa{bottom:41.565000px;}
.yb3{bottom:41.580000px;}
.ybc{bottom:41.610000px;}
.yc8{bottom:41.625000px;}
.yf2{bottom:41.745000px;}
.yeb{bottom:41.760000px;}
.yad{bottom:41.925000px;}
.yb6{bottom:41.940000px;}
.ybe{bottom:41.970000px;}
.yca{bottom:41.985000px;}
.yf3{bottom:42.105000px;}
.yec{bottom:42.150000px;}
.ye0{bottom:51.266161px;}
.y1{bottom:51.480000px;}
.y14{bottom:56.205000px;}
.ya9{bottom:60.465000px;}
.yb2{bottom:60.480000px;}
.ybb{bottom:60.510000px;}
.yc5{bottom:60.660000px;}
.yac{bottom:60.825000px;}
.yb5{bottom:60.840000px;}
.ybd{bottom:60.870000px;}
.yc6{bottom:61.020000px;}
.y3d{bottom:75.240000px;}
.ya8{bottom:79.545000px;}
.yb1{bottom:79.590000px;}
.yab{bottom:79.905000px;}
.yb4{bottom:79.950000px;}
.y13{bottom:79.965000px;}
.y12{bottom:103.725000px;}
.y11{bottom:119.205000px;}
.yb9{bottom:119.880000px;}
.y39{bottom:122.400000px;}
.yfe{bottom:129.600000px;}
.y68{bottom:133.740000px;}
.y73{bottom:134.100000px;}
.yb0{bottom:136.440000px;}
.y38{bottom:147.060000px;}
.yfd{bottom:154.260000px;}
.y67{bottom:158.400000px;}
.y72{bottom:158.760000px;}
.y37{bottom:171.720000px;}
.yfc{bottom:178.560000px;}
.y101{bottom:178.920000px;}
.y66{bottom:183.060000px;}
.y71{bottom:183.420000px;}
.y36{bottom:196.380000px;}
.yfb{bottom:203.220000px;}
.y100{bottom:203.580000px;}
.y65{bottom:207.750000px;}
.y70{bottom:208.110000px;}
.ydf{bottom:220.710000px;}
.y35{bottom:221.070000px;}
.yfa{bottom:227.910000px;}
.yff{bottom:228.270000px;}
.ya7{bottom:232.065000px;}
.y64{bottom:232.770000px;}
.y34{bottom:245.730000px;}
.yf9{bottom:252.570000px;}
.y63{bottom:257.430000px;}
.yf6{bottom:268.785000px;}
.y33{bottom:270.390000px;}
.y108{bottom:281.730000px;}
.y62{bottom:282.090000px;}
.y32{bottom:295.050000px;}
.y61{bottom:306.750000px;}
.y31{bottom:319.710000px;}
.yf5{bottom:326.385000px;}
.ya3{bottom:327.645000px;}
.ye2{bottom:331.050000px;}
.y60{bottom:331.410000px;}
.y30{bottom:344.370000px;}
.y104{bottom:355.710000px;}
.y5f{bottom:356.070000px;}
.y2f{bottom:369.030000px;}
.ya2{bottom:375.690000px;}
.y5e{bottom:380.730000px;}
.yf1{bottom:383.985000px;}
.y2e{bottom:393.690000px;}
.ya1{bottom:400.350000px;}
.y5d{bottom:405.390000px;}
.y2d{bottom:417.990000px;}
.y3a{bottom:418.350000px;}
.y82{bottom:425.550000px;}
.y107{bottom:429.690000px;}
.y5c{bottom:430.050000px;}
.yf0{bottom:441.795000px;}
.y2c{bottom:442.695000px;}
.ydc{bottom:443.235000px;}
.ya0{bottom:445.395000px;}
.y81{bottom:450.975000px;}
.y106{bottom:454.395000px;}
.y5b{bottom:454.755000px;}
.y2b{bottom:466.635000px;}
.ydb{bottom:467.895000px;}
.y9f{bottom:469.695000px;}
.y80{bottom:475.995000px;}
.y105{bottom:479.235000px;}
.y5a{bottom:479.595000px;}
.y2a{bottom:491.295000px;}
.yda{bottom:492.555000px;}
.y9e{bottom:494.355000px;}
.yef{bottom:499.395000px;}
.y7f{bottom:500.655000px;}
.y103{bottom:503.895000px;}
.y59{bottom:504.255000px;}
.y29{bottom:513.075000px;}
.yde{bottom:516.855000px;}
.yd9{bottom:517.215000px;}
.y9d{bottom:519.015000px;}
.y7e{bottom:525.315000px;}
.y102{bottom:528.555000px;}
.y58{bottom:528.915000px;}
.y28{bottom:534.855000px;}
.yd8{bottom:541.875000px;}
.y9c{bottom:544.035000px;}
.y7d{bottom:550.695000px;}
.y57{bottom:553.215000px;}
.y6f{bottom:553.575000px;}
.y27{bottom:556.635000px;}
.yd7{bottom:566.535000px;}
.y9b{bottom:568.695000px;}
.y7c{bottom:575.715000px;}
.yee{bottom:576.075000px;}
.y56{bottom:577.875000px;}
.y6e{bottom:578.235000px;}
.y26{bottom:578.415000px;}
.yd6{bottom:591.195000px;}
.y9a{bottom:593.355000px;}
.y25{bottom:600.375000px;}
.y7b{bottom:600.555000px;}
.y109{bottom:602.535000px;}
.y55{bottom:602.895000px;}
.yd5{bottom:615.855000px;}
.y99{bottom:618.195000px;}
.y24{bottom:622.155000px;}
.y7a{bottom:625.215000px;}
.y54{bottom:627.555000px;}
.yea{bottom:633.675000px;}
.yd4{bottom:640.515000px;}
.y98{bottom:643.575000px;}
.y23{bottom:643.935000px;}
.y79{bottom:650.955000px;}
.ye1{bottom:651.855000px;}
.y53{bottom:652.215000px;}
.yd3{bottom:664.815000px;}
.ydd{bottom:665.175000px;}
.y22{bottom:665.715000px;}
.y97{bottom:668.595000px;}
.y78{bottom:675.615000px;}
.ye4{bottom:676.545000px;}
.y52{bottom:676.905000px;}
.y21{bottom:687.705000px;}
.yd2{bottom:689.505000px;}
.ye9{bottom:691.485000px;}
.y96{bottom:693.285000px;}
.y77{bottom:700.485000px;}
.y51{bottom:701.565000px;}
.yd1{bottom:705.525000px;}
.y20{bottom:709.485000px;}
.y95{bottom:718.665000px;}
.y76{bottom:725.865000px;}
.y50{bottom:726.225000px;}
.y1f{bottom:731.265000px;}
.y94{bottom:743.685000px;}
.y4f{bottom:750.885000px;}
.y1e{bottom:753.045000px;}
.ye8{bottom:768.165000px;}
.y93{bottom:768.525000px;}
.y1d{bottom:774.825000px;}
.y4e{bottom:775.545000px;}
.yce{bottom:782.205000px;}
.y92{bottom:793.905000px;}
.y1c{bottom:796.785000px;}
.y4d{bottom:800.205000px;}
.y1b{bottom:818.565000px;}
.y91{bottom:818.925000px;}
.y4c{bottom:824.865000px;}
.ycc{bottom:839.805000px;}
.y1a{bottom:840.345000px;}
.y90{bottom:843.765000px;}
.ye7{bottom:844.665000px;}
.y6d{bottom:849.165000px;}
.y4b{bottom:849.525000px;}
.y19{bottom:861.765000px;}
.y8f{bottom:869.145000px;}
.y6c{bottom:873.825000px;}
.y4a{bottom:874.185000px;}
.y17{bottom:877.065000px;}
.y10{bottom:884.265000px;}
.y16{bottom:888.590927px;}
.y8e{bottom:894.165000px;}
.yc7{bottom:897.585000px;}
.y49{bottom:898.485000px;}
.y6b{bottom:898.845000px;}
.y8d{bottom:918.870000px;}
.y75{bottom:923.190000px;}
.y48{bottom:923.550000px;}
.y8c{bottom:943.530000px;}
.y74{bottom:947.850000px;}
.y47{bottom:948.210000px;}
.yc4{bottom:955.230000px;}
.y8b{bottom:968.910000px;}
.ye6{bottom:972.510000px;}
.y46{bottom:972.870000px;}
.y8a{bottom:993.570000px;}
.ye5{bottom:997.170000px;}
.y45{bottom:997.530000px;}
.y89{bottom:1018.590000px;}
.y44{bottom:1022.190000px;}
.ye{bottom:1029.210000px;}
.yc1{bottom:1031.910000px;}
.y88{bottom:1043.430000px;}
.y6a{bottom:1046.490000px;}
.y43{bottom:1046.850000px;}
.yd{bottom:1058.370031px;}
.y87{bottom:1069.170000px;}
.y69{bottom:1071.150000px;}
.y42{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y86{bottom:1094.010000px;}
.y41{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.yba{bottom:1108.590000px;}
.y85{bottom:1119.390000px;}
.y40{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y84{bottom:1144.410000px;}
.y3f{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y83{bottom:1169.100000px;}
.ye3{bottom:1169.820000px;}
.y3e{bottom:1170.180000px;}
.y3c{bottom:1187.280000px;}
.y3b{bottom:1200.600000px;}
.hc{height:5.385000px;}
.hf{height:6.285000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h10{height:19.008000px;}
.h29{height:19.080000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1c{height:30.480469px;}
.h1f{height:37.965000px;}
.h1b{height:46.251562px;}
.h13{height:48.616875px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h2c{height:56.865000px;}
.h27{height:56.880000px;}
.h26{height:56.902500px;}
.h2d{height:57.081000px;}
.h2b{height:57.090000px;}
.h1d{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h14{height:63.492188px;}
.h18{height:64.978594px;}
.h1a{height:65.010937px;}
.h22{height:65.884219px;}
.h19{height:66.757500px;}
.h1e{height:68.084282px;}
.h6{height:71.324297px;}
.h15{height:72.562500px;}
.h24{height:75.765000px;}
.h2a{height:75.780000px;}
.h23{height:75.810000px;}
.h25{height:75.945000px;}
.h28{height:75.960000px;}
.h4{height:76.317188px;}
.he{height:78.367500px;}
.h12{height:81.736875px;}
.h20{height:94.845000px;}
.h21{height:94.896000px;}
.h3{height:103.530000px;}
.h11{height:144.922500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w8{width:169.039500px;}
.wb{width:190.279500px;}
.wa{width:218.715000px;}
.wd{width:239.955000px;}
.wc{width:243.750000px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w9{width:286.410000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.x14{left:68.563500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x21{left:100.306500px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1d{left:113.076000px;}
.x15{left:123.463500px;}
.x13{left:130.526310px;}
.x1e{left:140.076000px;}
.x1c{left:150.510000px;}
.x19{left:162.030000px;}
.x4{left:168.885000px;}
.x24{left:190.110000px;}
.x16{left:205.948500px;}
.x6{left:209.010000px;}
.x22{left:270.075000px;}
.x25{left:291.315000px;}
.x17{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1a{left:473.505000px;}
.x1f{left:478.545000px;}
.x27{left:488.985000px;}
.x20{left:505.545000px;}
.x28{left:515.985000px;}
.x1b{left:527.505000px;}
.x26{left:535.980000px;}
.x23{left:557.220000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls11{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.773333pt;}
.lse{letter-spacing:-0.640000pt;}
.ls1e{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.368533pt;}
.ls18{letter-spacing:-0.271467pt;}
.ls17{letter-spacing:-0.233067pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.169067pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:-0.101333pt;}
.lsb{letter-spacing:-0.015360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls2{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.069333pt;}
.ls21{letter-spacing:0.097067pt;}
.ls5{letter-spacing:0.135680pt;}
.ls1{letter-spacing:0.166400pt;}
.ls13{letter-spacing:0.232960pt;}
.ls12{letter-spacing:0.233067pt;}
.ls10{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.368533pt;}
.ls3{letter-spacing:0.512000pt;}
.ls22{letter-spacing:6.010027pt;}
.ls1c{letter-spacing:6.031360pt;}
.lsf{letter-spacing:35.450027pt;}
.ls1b{letter-spacing:35.471360pt;}
.ls14{letter-spacing:52.751360pt;}
.ls19{letter-spacing:53.120000pt;}
.ls15{letter-spacing:56.912640pt;}
.ls1d{letter-spacing:89.600000pt;}
.ls20{letter-spacing:95.360000pt;}
.ls1f{letter-spacing:807.840000pt;}
.ws9{word-spacing:-61.440000pt;}
.wsc{word-spacing:-58.880000pt;}
.ws13{word-spacing:-53.120000pt;}
.ws0{word-spacing:-21.389227pt;}
.ws8{word-spacing:-17.295360pt;}
.ws7{word-spacing:-17.264640pt;}
.ws1{word-spacing:-16.898560pt;}
.ws3{word-spacing:-16.473600pt;}
.ws2{word-spacing:-16.304533pt;}
.wsa{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.088533pt;}
.ws14{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.953067pt;}
.ws15{word-spacing:-14.817067pt;}
.wsd{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.486933pt;}
.ws12{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.144000pt;}
.ws6{word-spacing:-13.952000pt;}
.wsb{word-spacing:-13.946667pt;}
.ws4{word-spacing:-13.022933pt;}
.wse{word-spacing:0.000000pt;}
._67{margin-left:-6.694400pt;}
._65{margin-left:-4.651520pt;}
._63{margin-left:-2.852480pt;}
._17{margin-left:-1.946880pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.308693pt;}
._8{width:3.356160pt;}
._7{width:4.329600pt;}
._10{width:5.652480pt;}
._6{width:6.614187pt;}
._4{width:7.654400pt;}
._5{width:8.551680pt;}
._c{width:9.538560pt;}
._b{width:10.892800pt;}
._a{width:12.224000pt;}
._9{width:13.206187pt;}
._4d{width:15.048960pt;}
._3{width:16.133120pt;}
._e{width:17.114240pt;}
._d{width:18.193920pt;}
._30{width:19.212800pt;}
._f{width:20.136960pt;}
._51{width:21.061120pt;}
._1c{width:21.966080pt;}
._26{width:22.986880pt;}
._18{width:24.725760pt;}
._16{width:25.879680pt;}
._2b{width:27.614720pt;}
._12{width:28.529280pt;}
._11{width:29.498880pt;}
._15{width:31.296640pt;}
._47{width:32.234880pt;}
._3a{width:33.267200pt;}
._52{width:34.485760pt;}
._38{width:35.463680pt;}
._28{width:36.564480pt;}
._33{width:37.742080pt;}
._34{width:39.363200pt;}
._31{width:41.039360pt;}
._39{width:42.452480pt;}
._37{width:43.435520pt;}
._24{width:45.121280pt;}
._23{width:46.218027pt;}
._2c{width:48.007893pt;}
._35{width:48.967467pt;}
._1a{width:50.283520pt;}
._19{width:51.198080pt;}
._1b{width:52.128000pt;}
._25{width:53.288960pt;}
._22{width:54.204800pt;}
._21{width:55.170560pt;}
._27{width:56.348160pt;}
._29{width:58.232320pt;}
._2a{width:59.656107pt;}
._4e{width:60.794667pt;}
._3e{width:62.000640pt;}
._50{width:63.649280pt;}
._32{width:64.826880pt;}
._2e{width:66.593280pt;}
._2f{width:67.906560pt;}
._5b{width:69.831680pt;}
._13{width:70.832640pt;}
._14{width:71.864960pt;}
._54{width:75.151360pt;}
._2d{width:77.015040pt;}
._42{width:78.604800pt;}
._55{width:80.624640pt;}
._36{width:81.548800pt;}
._43{width:83.086293pt;}
._1d{width:84.610560pt;}
._61{width:86.871040pt;}
._59{width:88.849920pt;}
._5a{width:89.792000pt;}
._5c{width:91.945600pt;}
._4f{width:93.472640pt;}
._45{width:94.534400pt;}
._44{width:95.503360pt;}
._3d{width:99.153920pt;}
._60{width:109.585280pt;}
._5e{width:112.510080pt;}
._56{width:118.136320pt;}
._69{width:125.410560pt;}
._68{width:126.772480pt;}
._64{width:129.477120pt;}
._20{width:135.905280pt;}
._3f{width:142.136320pt;}
._5d{width:156.149760pt;}
._57{width:158.681600pt;}
._3c{width:166.892800pt;}
._1e{width:168.548907pt;}
._4b{width:172.393173pt;}
._1f{width:175.686400pt;}
._53{width:177.479680pt;}
._6f{width:199.779840pt;}
._6d{width:205.638400pt;}
._6c{width:206.695040pt;}
._4a{width:219.388160pt;}
._4c{width:232.929280pt;}
._49{width:245.706240pt;}
._6a{width:248.768000pt;}
._48{width:250.774080pt;}
._3b{width:256.640000pt;}
._62{width:260.190720pt;}
._58{width:277.886080pt;}
._46{width:298.168320pt;}
._41{width:307.883520pt;}
._66{width:358.461440pt;}
._5f{width:372.180480pt;}
._6e{width:470.451200pt;}
._6b{width:491.063040pt;}
._70{width:521.060480pt;}
._71{width:753.418667pt;}
._40{width:754.831787pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs9{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.yf{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.ya5{bottom:3.186667pt;}
.yc0{bottom:3.200000pt;}
.ycd{bottom:3.360000pt;}
.yaf{bottom:3.506667pt;}
.yb8{bottom:3.520000pt;}
.yf4{bottom:3.666667pt;}
.yed{bottom:3.680000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ya6{bottom:11.666667pt;}
.yd0{bottom:11.680000pt;}
.yf7{bottom:19.986667pt;}
.yb7{bottom:20.000000pt;}
.yc9{bottom:20.040000pt;}
.ya4{bottom:20.146667pt;}
.yc3{bottom:20.160000pt;}
.yf8{bottom:20.306667pt;}
.ybf{bottom:20.320000pt;}
.ycb{bottom:20.360000pt;}
.yae{bottom:20.466667pt;}
.yc2{bottom:20.480000pt;}
.y15{bottom:23.720000pt;}
.ycf{bottom:28.480000pt;}
.y5{bottom:29.440000pt;}
.yaa{bottom:36.946667pt;}
.yb3{bottom:36.960000pt;}
.ybc{bottom:36.986667pt;}
.yc8{bottom:37.000000pt;}
.yf2{bottom:37.106667pt;}
.yeb{bottom:37.120000pt;}
.yad{bottom:37.266667pt;}
.yb6{bottom:37.280000pt;}
.ybe{bottom:37.306667pt;}
.yca{bottom:37.320000pt;}
.yf3{bottom:37.426667pt;}
.yec{bottom:37.466667pt;}
.ye0{bottom:45.569921pt;}
.y1{bottom:45.760000pt;}
.y14{bottom:49.960000pt;}
.ya9{bottom:53.746667pt;}
.yb2{bottom:53.760000pt;}
.ybb{bottom:53.786667pt;}
.yc5{bottom:53.920000pt;}
.yac{bottom:54.066667pt;}
.yb5{bottom:54.080000pt;}
.ybd{bottom:54.106667pt;}
.yc6{bottom:54.240000pt;}
.y3d{bottom:66.880000pt;}
.ya8{bottom:70.706667pt;}
.yb1{bottom:70.746667pt;}
.yab{bottom:71.026667pt;}
.yb4{bottom:71.066667pt;}
.y13{bottom:71.080000pt;}
.y12{bottom:92.200000pt;}
.y11{bottom:105.960000pt;}
.yb9{bottom:106.560000pt;}
.y39{bottom:108.800000pt;}
.yfe{bottom:115.200000pt;}
.y68{bottom:118.880000pt;}
.y73{bottom:119.200000pt;}
.yb0{bottom:121.280000pt;}
.y38{bottom:130.720000pt;}
.yfd{bottom:137.120000pt;}
.y67{bottom:140.800000pt;}
.y72{bottom:141.120000pt;}
.y37{bottom:152.640000pt;}
.yfc{bottom:158.720000pt;}
.y101{bottom:159.040000pt;}
.y66{bottom:162.720000pt;}
.y71{bottom:163.040000pt;}
.y36{bottom:174.560000pt;}
.yfb{bottom:180.640000pt;}
.y100{bottom:180.960000pt;}
.y65{bottom:184.666667pt;}
.y70{bottom:184.986667pt;}
.ydf{bottom:196.186667pt;}
.y35{bottom:196.506667pt;}
.yfa{bottom:202.586667pt;}
.yff{bottom:202.906667pt;}
.ya7{bottom:206.280000pt;}
.y64{bottom:206.906667pt;}
.y34{bottom:218.426667pt;}
.yf9{bottom:224.506667pt;}
.y63{bottom:228.826667pt;}
.yf6{bottom:238.920000pt;}
.y33{bottom:240.346667pt;}
.y108{bottom:250.426667pt;}
.y62{bottom:250.746667pt;}
.y32{bottom:262.266667pt;}
.y61{bottom:272.666667pt;}
.y31{bottom:284.186667pt;}
.yf5{bottom:290.120000pt;}
.ya3{bottom:291.240000pt;}
.ye2{bottom:294.266667pt;}
.y60{bottom:294.586667pt;}
.y30{bottom:306.106667pt;}
.y104{bottom:316.186667pt;}
.y5f{bottom:316.506667pt;}
.y2f{bottom:328.026667pt;}
.ya2{bottom:333.946667pt;}
.y5e{bottom:338.426667pt;}
.yf1{bottom:341.320000pt;}
.y2e{bottom:349.946667pt;}
.ya1{bottom:355.866667pt;}
.y5d{bottom:360.346667pt;}
.y2d{bottom:371.546667pt;}
.y3a{bottom:371.866667pt;}
.y82{bottom:378.266667pt;}
.y107{bottom:381.946667pt;}
.y5c{bottom:382.266667pt;}
.yf0{bottom:392.706667pt;}
.y2c{bottom:393.506667pt;}
.ydc{bottom:393.986667pt;}
.ya0{bottom:395.906667pt;}
.y81{bottom:400.866667pt;}
.y106{bottom:403.906667pt;}
.y5b{bottom:404.226667pt;}
.y2b{bottom:414.786667pt;}
.ydb{bottom:415.906667pt;}
.y9f{bottom:417.506667pt;}
.y80{bottom:423.106667pt;}
.y105{bottom:425.986667pt;}
.y5a{bottom:426.306667pt;}
.y2a{bottom:436.706667pt;}
.yda{bottom:437.826667pt;}
.y9e{bottom:439.426667pt;}
.yef{bottom:443.906667pt;}
.y7f{bottom:445.026667pt;}
.y103{bottom:447.906667pt;}
.y59{bottom:448.226667pt;}
.y29{bottom:456.066667pt;}
.yde{bottom:459.426667pt;}
.yd9{bottom:459.746667pt;}
.y9d{bottom:461.346667pt;}
.y7e{bottom:466.946667pt;}
.y102{bottom:469.826667pt;}
.y58{bottom:470.146667pt;}
.y28{bottom:475.426667pt;}
.yd8{bottom:481.666667pt;}
.y9c{bottom:483.586667pt;}
.y7d{bottom:489.506667pt;}
.y57{bottom:491.746667pt;}
.y6f{bottom:492.066667pt;}
.y27{bottom:494.786667pt;}
.yd7{bottom:503.586667pt;}
.y9b{bottom:505.506667pt;}
.y7c{bottom:511.746667pt;}
.yee{bottom:512.066667pt;}
.y56{bottom:513.666667pt;}
.y6e{bottom:513.986667pt;}
.y26{bottom:514.146667pt;}
.yd6{bottom:525.506667pt;}
.y9a{bottom:527.426667pt;}
.y25{bottom:533.666667pt;}
.y7b{bottom:533.826667pt;}
.y109{bottom:535.586667pt;}
.y55{bottom:535.906667pt;}
.yd5{bottom:547.426667pt;}
.y99{bottom:549.506667pt;}
.y24{bottom:553.026667pt;}
.y7a{bottom:555.746667pt;}
.y54{bottom:557.826667pt;}
.yea{bottom:563.266667pt;}
.yd4{bottom:569.346667pt;}
.y98{bottom:572.066667pt;}
.y23{bottom:572.386667pt;}
.y79{bottom:578.626667pt;}
.ye1{bottom:579.426667pt;}
.y53{bottom:579.746667pt;}
.yd3{bottom:590.946667pt;}
.ydd{bottom:591.266667pt;}
.y22{bottom:591.746667pt;}
.y97{bottom:594.306667pt;}
.y78{bottom:600.546667pt;}
.ye4{bottom:601.373333pt;}
.y52{bottom:601.693333pt;}
.y21{bottom:611.293333pt;}
.yd2{bottom:612.893333pt;}
.ye9{bottom:614.653333pt;}
.y96{bottom:616.253333pt;}
.y77{bottom:622.653333pt;}
.y51{bottom:623.613333pt;}
.yd1{bottom:627.133333pt;}
.y20{bottom:630.653333pt;}
.y95{bottom:638.813333pt;}
.y76{bottom:645.213333pt;}
.y50{bottom:645.533333pt;}
.y1f{bottom:650.013333pt;}
.y94{bottom:661.053333pt;}
.y4f{bottom:667.453333pt;}
.y1e{bottom:669.373333pt;}
.ye8{bottom:682.813333pt;}
.y93{bottom:683.133333pt;}
.y1d{bottom:688.733333pt;}
.y4e{bottom:689.373333pt;}
.yce{bottom:695.293333pt;}
.y92{bottom:705.693333pt;}
.y1c{bottom:708.253333pt;}
.y4d{bottom:711.293333pt;}
.y1b{bottom:727.613333pt;}
.y91{bottom:727.933333pt;}
.y4c{bottom:733.213333pt;}
.ycc{bottom:746.493333pt;}
.y1a{bottom:746.973333pt;}
.y90{bottom:750.013333pt;}
.ye7{bottom:750.813333pt;}
.y6d{bottom:754.813333pt;}
.y4b{bottom:755.133333pt;}
.y19{bottom:766.013333pt;}
.y8f{bottom:772.573333pt;}
.y6c{bottom:776.733333pt;}
.y4a{bottom:777.053333pt;}
.y17{bottom:779.613333pt;}
.y10{bottom:786.013333pt;}
.y16{bottom:789.858602pt;}
.y8e{bottom:794.813333pt;}
.yc7{bottom:797.853333pt;}
.y49{bottom:798.653333pt;}
.y6b{bottom:798.973333pt;}
.y8d{bottom:816.773333pt;}
.y75{bottom:820.613333pt;}
.y48{bottom:820.933333pt;}
.y8c{bottom:838.693333pt;}
.y74{bottom:842.533333pt;}
.y47{bottom:842.853333pt;}
.yc4{bottom:849.093333pt;}
.y8b{bottom:861.253333pt;}
.ye6{bottom:864.453333pt;}
.y46{bottom:864.773333pt;}
.y8a{bottom:883.173333pt;}
.ye5{bottom:886.373333pt;}
.y45{bottom:886.693333pt;}
.y89{bottom:905.413333pt;}
.y44{bottom:908.613333pt;}
.ye{bottom:914.853333pt;}
.yc1{bottom:917.253333pt;}
.y88{bottom:927.493333pt;}
.y6a{bottom:930.213333pt;}
.y43{bottom:930.533333pt;}
.yd{bottom:940.773360pt;}
.y87{bottom:950.373333pt;}
.y69{bottom:952.133333pt;}
.y42{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y86{bottom:972.453333pt;}
.y41{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.yba{bottom:985.413333pt;}
.y85{bottom:995.013333pt;}
.y40{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y84{bottom:1017.253333pt;}
.y3f{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y83{bottom:1039.200000pt;}
.ye3{bottom:1039.840000pt;}
.y3e{bottom:1040.160000pt;}
.y3c{bottom:1055.360000pt;}
.y3b{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.hf{height:5.586667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h10{height:16.896000pt;}
.h29{height:16.960000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1c{height:27.093750pt;}
.h1f{height:33.746667pt;}
.h1b{height:41.112500pt;}
.h13{height:43.215000pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h2c{height:50.546667pt;}
.h27{height:50.560000pt;}
.h26{height:50.580000pt;}
.h2d{height:50.738667pt;}
.h2b{height:50.746667pt;}
.h1d{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h14{height:56.437500pt;}
.h18{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h22{height:58.563750pt;}
.h19{height:59.340000pt;}
.h1e{height:60.519362pt;}
.h6{height:63.399375pt;}
.h15{height:64.500000pt;}
.h24{height:67.346667pt;}
.h2a{height:67.360000pt;}
.h23{height:67.386667pt;}
.h25{height:67.506667pt;}
.h28{height:67.520000pt;}
.h4{height:67.837500pt;}
.he{height:69.660000pt;}
.h12{height:72.655000pt;}
.h20{height:84.306667pt;}
.h21{height:84.352000pt;}
.h3{height:92.026667pt;}
.h11{height:128.820000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w8{width:150.257333pt;}
.wb{width:169.137333pt;}
.wa{width:194.413333pt;}
.wd{width:213.293333pt;}
.wc{width:216.666667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w9{width:254.586667pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.x14{left:60.945333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x21{left:89.161333pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1d{left:100.512000pt;}
.x15{left:109.745333pt;}
.x13{left:116.023387pt;}
.x1e{left:124.512000pt;}
.x1c{left:133.786667pt;}
.x19{left:144.026667pt;}
.x4{left:150.120000pt;}
.x24{left:168.986667pt;}
.x16{left:183.065333pt;}
.x6{left:185.786667pt;}
.x22{left:240.066667pt;}
.x25{left:258.946667pt;}
.x17{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1a{left:420.893333pt;}
.x1f{left:425.373333pt;}
.x27{left:434.653333pt;}
.x20{left:449.373333pt;}
.x28{left:458.653333pt;}
.x1b{left:468.893333pt;}
.x26{left:476.426667pt;}
.x23{left:495.306667pt;}
.x7{left:642.213333pt;}
.x1{left:665.733333pt;}
}




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