
    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_c26499fe175c94b3d793d8ae.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_7612c03b819e5c4dac9ee925.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_06bb0dfb40f8389c41d6d98e.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_93907ee6d3bc235a3c849fef.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_26850c8ff19fbf3502df2a0b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6dc0cb17aede4939dde97a4e.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_97cc70df733703de7dc47a06.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_2d58cd343a586efe83cf11e3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.973633;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_f77820e7888b1a137d467494.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_e0d36973d18ce27a9f48544b.woff')format("woff");}.ffd{font-family:ffd;line-height:0.886719;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_1b654092c95aa0c2ee38395a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.976562;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fef1de9420b62901368f62a6.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_fd0f2b4834b1a6115d70dca0.woff')format("woff");}.ff11{font-family:ff11;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.567600px;}
.ls10{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.262200px;}
.ls6{letter-spacing:-0.190200px;}
.ls8{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.114000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.078000px;}
.ls1{letter-spacing:0.187200px;}
.lsb{letter-spacing:0.262200px;}
.lsf{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.576000px;}
.lsd{letter-spacing:21.600000px;}
.lsc{letter-spacing:39.905280px;}
.ls4{letter-spacing:59.345280px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.wsa{word-spacing:-24.062880px;}
.ws0{word-spacing:-19.010880px;}
.ws2{word-spacing:-18.532800px;}
.ws1{word-spacing:-18.342600px;}
.ws6{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.822200px;}
.wsc{word-spacing:-16.560000px;}
.ws7{word-spacing:-16.297800px;}
.wse{word-spacing:-16.145400px;}
.ws4{word-spacing:-15.912000px;}
.ws5{word-spacing:-15.696000px;}
.ws3{word-spacing:-14.650800px;}
.ws9{word-spacing:0.000000px;}
._2a{margin-left:-2.397840px;}
._0{margin-left:-1.095120px;}
._1{width:1.044000px;}
._2{width:2.814240px;}
._b{width:4.703040px;}
._5{width:6.359040px;}
._4{width:7.652880px;}
._6{width:8.778960px;}
._9{width:9.815040px;}
._e{width:10.851840px;}
._2f{width:12.254400px;}
._14{width:13.746960px;}
._8{width:15.235200px;}
._34{width:17.623440px;}
._4a{width:18.944640px;}
._36{width:20.004480px;}
._a{width:21.418560px;}
._7{width:23.184000px;}
._2d{width:24.840000px;}
._31{width:26.445600px;}
._15{width:27.555840px;}
._18{width:29.149200px;}
._30{width:30.195360px;}
._17{width:31.664400px;}
._13{width:32.788800px;}
._12{width:33.950160px;}
._1d{width:35.723520px;}
._1e{width:37.074240px;}
._16{width:38.684160px;}
._24{width:40.013280px;}
._20{width:41.135040px;}
._46{width:42.526080px;}
._4b{width:43.652160px;}
._33{width:44.910720px;}
._d{width:46.964160px;}
._27{width:48.124800px;}
._28{width:49.649040px;}
._3f{width:51.095760px;}
._3a{width:52.201440px;}
._39{width:53.323200px;}
._19{width:54.912960px;}
._11{width:55.941840px;}
._10{width:57.098880px;}
._48{width:58.111920px;}
._4c{width:60.278400px;}
._42{width:62.066880px;}
._c{width:63.146880px;}
._43{width:64.183680px;}
._2e{width:65.445120px;}
._29{width:66.672720px;}
._40{width:67.864320px;}
._2c{width:68.991120px;}
._2b{width:70.611840px;}
._f{width:71.671680px;}
._49{width:72.996480px;}
._4d{width:74.290320px;}
._1b{width:75.420720px;}
._1a{width:76.507200px;}
._32{width:78.626880px;}
._54{width:81.006480px;}
._4e{width:82.402560px;}
._25{width:83.520000px;}
._26{width:84.892800px;}
._3d{width:86.225760px;}
._3e{width:88.032960px;}
._38{width:92.704320px;}
._44{width:94.259520px;}
._45{width:95.685840px;}
._1f{width:96.877440px;}
._3c{width:118.035840px;}
._52{width:120.490560px;}
._53{width:123.935040px;}
._3b{width:129.432960px;}
._3{width:133.176000px;}
._1c{width:135.247920px;}
._35{width:148.443840px;}
._23{width:152.893440px;}
._37{width:173.849040px;}
._41{width:175.911360px;}
._21{width:189.617520px;}
._47{width:193.420800px;}
._22{width:197.647200px;}
._4f{width:209.185920px;}
._51{width:237.439440px;}
._50{width:693.864000px;}
._55{width:847.596000px;}
.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;}
.fs9{font-size:36.000000px;}
.fs7{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs8{font-size:92.880000px;}
.y0{bottom:0.000000px;}
.yc{bottom:0.900000px;}
.y18{bottom:1.260000px;}
.y10{bottom:1.620000px;}
.y3{bottom:3.420000px;}
.y8{bottom:6.660000px;}
.ya{bottom:7.380000px;}
.y6{bottom:8.460000px;}
.ye{bottom:22.860000px;}
.y15{bottom:26.505000px;}
.y5{bottom:33.120000px;}
.y14{bottom:47.925000px;}
.y1{bottom:51.480000px;}
.y13{bottom:70.605000px;}
.y4f{bottom:75.240000px;}
.y12{bottom:93.285000px;}
.y4c{bottom:122.400000px;}
.ybc{bottom:125.820000px;}
.y39{bottom:126.000000px;}
.y79{bottom:128.160000px;}
.ydf{bottom:129.420000px;}
.y105{bottom:134.100000px;}
.y4b{bottom:147.060000px;}
.ya9{bottom:150.480000px;}
.y38{bottom:150.660000px;}
.yd1{bottom:151.740000px;}
.y78{bottom:152.820000px;}
.y8c{bottom:154.080000px;}
.y104{bottom:158.760000px;}
.y4a{bottom:171.720000px;}
.ya8{bottom:175.140000px;}
.y37{bottom:175.320000px;}
.yd0{bottom:176.400000px;}
.y77{bottom:177.660000px;}
.y8b{bottom:178.740000px;}
.y103{bottom:183.420000px;}
.y49{bottom:196.380000px;}
.ya7{bottom:199.800000px;}
.y36{bottom:199.980000px;}
.ycf{bottom:201.060000px;}
.y76{bottom:203.040000px;}
.y8a{bottom:203.400000px;}
.y102{bottom:208.110000px;}
.y48{bottom:221.070000px;}
.y35{bottom:224.670000px;}
.ybb{bottom:225.390000px;}
.yce{bottom:225.750000px;}
.y75{bottom:228.090000px;}
.y101{bottom:232.770000px;}
.y47{bottom:245.910000px;}
.y34{bottom:249.330000px;}
.ya6{bottom:250.050000px;}
.ycd{bottom:250.410000px;}
.y74{bottom:252.750000px;}
.y100{bottom:257.430000px;}
.y46{bottom:271.650000px;}
.y33{bottom:273.990000px;}
.ya5{bottom:274.710000px;}
.yba{bottom:275.070000px;}
.ycc{bottom:275.790000px;}
.y73{bottom:277.410000px;}
.y89{bottom:277.590000px;}
.y10a{bottom:281.730000px;}
.yff{bottom:282.090000px;}
.y45{bottom:296.310000px;}
.y32{bottom:298.650000px;}
.ya4{bottom:299.730000px;}
.ycb{bottom:300.450000px;}
.yde{bottom:301.710000px;}
.y72{bottom:302.070000px;}
.y88{bottom:302.970000px;}
.y109{bottom:306.390000px;}
.yfe{bottom:306.750000px;}
.y44{bottom:320.970000px;}
.y31{bottom:323.310000px;}
.ya3{bottom:324.390000px;}
.yca{bottom:325.470000px;}
.ydd{bottom:326.370000px;}
.y71{bottom:326.730000px;}
.y87{bottom:327.990000px;}
.yfd{bottom:331.410000px;}
.y43{bottom:345.630000px;}
.y30{bottom:347.970000px;}
.ya2{bottom:349.050000px;}
.yc9{bottom:350.130000px;}
.y70{bottom:351.390000px;}
.y86{bottom:352.650000px;}
.yfc{bottom:356.070000px;}
.y42{bottom:370.290000px;}
.y2f{bottom:372.630000px;}
.ya1{bottom:373.710000px;}
.yc8{bottom:374.790000px;}
.y6f{bottom:376.050000px;}
.y85{bottom:377.310000px;}
.yfb{bottom:380.730000px;}
.y41{bottom:395.130000px;}
.y2e{bottom:397.290000px;}
.yb9{bottom:398.370000px;}
.ya0{bottom:398.550000px;}
.yc7{bottom:399.630000px;}
.ydc{bottom:400.710000px;}
.y6e{bottom:400.890000px;}
.y84{bottom:401.970000px;}
.yfa{bottom:405.390000px;}
.y40{bottom:420.870000px;}
.y2d{bottom:421.950000px;}
.yb8{bottom:423.210000px;}
.y9f{bottom:424.290000px;}
.ydb{bottom:425.370000px;}
.y6d{bottom:426.270000px;}
.y83{bottom:426.630000px;}
.yf9{bottom:430.050000px;}
.y3f{bottom:445.575000px;}
.y2c{bottom:446.655000px;}
.y9e{bottom:448.995000px;}
.yda{bottom:450.075000px;}
.y6c{bottom:451.335000px;}
.yf8{bottom:454.755000px;}
.y3e{bottom:470.235000px;}
.y2b{bottom:471.315000px;}
.y9d{bottom:473.655000px;}
.yd9{bottom:474.735000px;}
.y6b{bottom:475.995000px;}
.yf7{bottom:479.595000px;}
.y3d{bottom:494.895000px;}
.y2a{bottom:495.975000px;}
.y9c{bottom:498.315000px;}
.yd8{bottom:499.395000px;}
.y6a{bottom:500.655000px;}
.yf6{bottom:504.255000px;}
.y3c{bottom:519.555000px;}
.y29{bottom:520.635000px;}
.y9b{bottom:522.975000px;}
.yd7{bottom:523.695000px;}
.yc6{bottom:524.055000px;}
.y69{bottom:525.315000px;}
.y82{bottom:526.035000px;}
.y108{bottom:528.555000px;}
.yf5{bottom:528.915000px;}
.y3b{bottom:544.215000px;}
.y28{bottom:545.295000px;}
.y9a{bottom:547.635000px;}
.yd6{bottom:548.355000px;}
.yc5{bottom:548.715000px;}
.y68{bottom:549.975000px;}
.y81{bottom:550.695000px;}
.yf4{bottom:553.575000px;}
.y3a{bottom:568.875000px;}
.y27{bottom:569.955000px;}
.yb7{bottom:572.295000px;}
.y99{bottom:573.375000px;}
.y67{bottom:574.635000px;}
.y80{bottom:575.715000px;}
.yf3{bottom:578.235000px;}
.y26{bottom:594.255000px;}
.y98{bottom:598.035000px;}
.y66{bottom:599.295000px;}
.y7f{bottom:600.555000px;}
.yf2{bottom:602.895000px;}
.y25{bottom:618.915000px;}
.y97{bottom:622.695000px;}
.yc4{bottom:622.875000px;}
.y65{bottom:623.955000px;}
.y7e{bottom:625.215000px;}
.yf1{bottom:627.555000px;}
.y24{bottom:643.035000px;}
.yd5{bottom:647.355000px;}
.y96{bottom:647.535000px;}
.yc3{bottom:648.615000px;}
.y64{bottom:648.795000px;}
.y7d{bottom:649.875000px;}
.y10b{bottom:651.855000px;}
.yf0{bottom:652.215000px;}
.y23{bottom:669.675000px;}
.yd4{bottom:672.195000px;}
.yb6{bottom:672.915000px;}
.y95{bottom:673.275000px;}
.y63{bottom:674.535000px;}
.yef{bottom:676.545000px;}
.y107{bottom:676.905000px;}
.y22{bottom:691.665000px;}
.yb5{bottom:697.605000px;}
.y94{bottom:697.965000px;}
.y62{bottom:699.225000px;}
.yee{bottom:701.205000px;}
.y106{bottom:701.565000px;}
.y21{bottom:713.445000px;}
.y93{bottom:722.625000px;}
.y61{bottom:723.885000px;}
.yed{bottom:726.225000px;}
.y20{bottom:735.225000px;}
.y92{bottom:747.285000px;}
.yc2{bottom:747.465000px;}
.y60{bottom:748.545000px;}
.yec{bottom:750.885000px;}
.y1f{bottom:757.005000px;}
.yb4{bottom:771.945000px;}
.y91{bottom:772.125000px;}
.yc1{bottom:772.845000px;}
.y5f{bottom:773.205000px;}
.yeb{bottom:775.545000px;}
.y1e{bottom:778.965000px;}
.yb3{bottom:796.605000px;}
.yc0{bottom:797.505000px;}
.y5e{bottom:797.865000px;}
.yea{bottom:800.205000px;}
.y1d{bottom:800.745000px;}
.yb2{bottom:821.265000px;}
.yd3{bottom:821.445000px;}
.y1c{bottom:822.525000px;}
.ye9{bottom:824.865000px;}
.y1b{bottom:844.305000px;}
.yb1{bottom:845.925000px;}
.yd2{bottom:846.825000px;}
.y5d{bottom:847.185000px;}
.ye8{bottom:849.525000px;}
.y1a{bottom:866.085000px;}
.yb0{bottom:870.585000px;}
.ybf{bottom:871.845000px;}
.y90{bottom:872.565000px;}
.y5c{bottom:872.925000px;}
.ye7{bottom:874.185000px;}
.y19{bottom:887.685000px;}
.yaf{bottom:895.425000px;}
.ybe{bottom:896.505000px;}
.y8f{bottom:897.225000px;}
.y5b{bottom:897.585000px;}
.ye6{bottom:898.845000px;}
.y17{bottom:902.985000px;}
.y11{bottom:910.185000px;}
.y16{bottom:914.694626px;}
.yae{bottom:921.210000px;}
.y5a{bottom:922.290000px;}
.ye5{bottom:923.550000px;}
.yad{bottom:945.870000px;}
.y59{bottom:947.130000px;}
.ye4{bottom:948.210000px;}
.yac{bottom:970.530000px;}
.y58{bottom:971.790000px;}
.ye3{bottom:972.870000px;}
.yab{bottom:995.190000px;}
.ybd{bottom:995.370000px;}
.y57{bottom:996.450000px;}
.ye2{bottom:997.530000px;}
.yaa{bottom:1020.030000px;}
.y56{bottom:1021.110000px;}
.ye1{bottom:1022.190000px;}
.yf{bottom:1029.210000px;}
.yd{bottom:1035.510000px;}
.y55{bottom:1045.770000px;}
.ye0{bottom:1046.850000px;}
.y54{bottom:1070.430000px;}
.y7c{bottom:1071.510000px;}
.yb{bottom:1076.550000px;}
.y9{bottom:1081.950000px;}
.y8e{bottom:1095.090000px;}
.y53{bottom:1095.810000px;}
.y7b{bottom:1096.170000px;}
.y2{bottom:1106.250000px;}
.y8d{bottom:1119.750000px;}
.y52{bottom:1120.470000px;}
.y7a{bottom:1120.830000px;}
.y7{bottom:1128.570000px;}
.y51{bottom:1145.520000px;}
.y4{bottom:1156.860000px;}
.y50{bottom:1170.180000px;}
.y4e{bottom:1187.280000px;}
.y4d{bottom:1200.600000px;}
.hc{height:5.385000px;}
.h10{height:6.285000px;}
.h16{height:7.200000px;}
.hd{height:13.324219px;}
.h17{height:17.587969px;}
.h11{height:19.008000px;}
.h8{height:22.305000px;}
.ha{height:24.285000px;}
.h7{height:28.290000px;}
.h1c{height:30.480469px;}
.he{height:41.025000px;}
.h1e{height:46.251562px;}
.h5{height:52.920000px;}
.h9{height:56.084062px;}
.h1d{height:58.621992px;}
.hb{height:60.960938px;}
.h2{height:62.275078px;}
.h15{height:63.492188px;}
.h18{height:64.978594px;}
.h1a{height:65.010937px;}
.h19{height:66.757500px;}
.h14{height:67.803750px;}
.h1b{height:68.084282px;}
.h6{height:71.324297px;}
.h13{height:72.562500px;}
.h4{height:76.317188px;}
.hf{height:78.367500px;}
.h3{height:103.530000px;}
.h12{height:119.002500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:108.030000px;}
.w2{width:108.034500px;}
.w5{width:276.720000px;}
.w6{width:276.855000px;}
.w3{width:553.590000px;}
.w7{width:671.130000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:8.089500px;}
.x5{left:10.965000px;}
.x10{left:20.685000px;}
.xb{left:34.185000px;}
.x13{left:44.803500px;}
.xe{left:49.714500px;}
.x9{left:53.265000px;}
.x2{left:60.841500px;}
.xc{left:81.525000px;}
.xf{left:85.125000px;}
.xd{left:95.925000px;}
.x8{left:107.850000px;}
.x3{left:110.008500px;}
.x11{left:111.106500px;}
.x1f{left:113.076000px;}
.x1e{left:140.076000px;}
.x17{left:152.263500px;}
.x1a{left:162.030000px;}
.x16{left:163.648500px;}
.x4{left:168.885000px;}
.x14{left:205.588500px;}
.x6{left:209.010000px;}
.x15{left:225.928500px;}
.x18{left:324.965515px;}
.x12{left:335.578500px;}
.xa{left:445.620000px;}
.x1b{left:473.505000px;}
.x1c{left:478.545000px;}
.x1d{left:505.545000px;}
.x20{left:527.505000px;}
.x7{left:722.490000px;}
.x1{left:748.950000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.504533pt;}
.ls10{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.233067pt;}
.ls6{letter-spacing:-0.169067pt;}
.ls8{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.069333pt;}
.ls1{letter-spacing:0.166400pt;}
.lsb{letter-spacing:0.233067pt;}
.lsf{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.512000pt;}
.lsd{letter-spacing:19.200000pt;}
.lsc{letter-spacing:35.471360pt;}
.ls4{letter-spacing:52.751360pt;}
.ws8{word-spacing:-58.880000pt;}
.wsa{word-spacing:-21.389227pt;}
.ws0{word-spacing:-16.898560pt;}
.ws2{word-spacing:-16.473600pt;}
.ws1{word-spacing:-16.304533pt;}
.ws6{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.953067pt;}
.wsc{word-spacing:-14.720000pt;}
.ws7{word-spacing:-14.486933pt;}
.wse{word-spacing:-14.351467pt;}
.ws4{word-spacing:-14.144000pt;}
.ws5{word-spacing:-13.952000pt;}
.ws3{word-spacing:-13.022933pt;}
.ws9{word-spacing:0.000000pt;}
._2a{margin-left:-2.131413pt;}
._0{margin-left:-0.973440pt;}
._1{width:0.928000pt;}
._2{width:2.501547pt;}
._b{width:4.180480pt;}
._5{width:5.652480pt;}
._4{width:6.802560pt;}
._6{width:7.803520pt;}
._9{width:8.724480pt;}
._e{width:9.646080pt;}
._2f{width:10.892800pt;}
._14{width:12.219520pt;}
._8{width:13.542400pt;}
._34{width:15.665280pt;}
._4a{width:16.839680pt;}
._36{width:17.781760pt;}
._a{width:19.038720pt;}
._7{width:20.608000pt;}
._2d{width:22.080000pt;}
._31{width:23.507200pt;}
._15{width:24.494080pt;}
._18{width:25.910400pt;}
._30{width:26.840320pt;}
._17{width:28.146133pt;}
._13{width:29.145600pt;}
._12{width:30.177920pt;}
._1d{width:31.754240pt;}
._1e{width:32.954880pt;}
._16{width:34.385920pt;}
._24{width:35.567360pt;}
._20{width:36.564480pt;}
._46{width:37.800960pt;}
._4b{width:38.801920pt;}
._33{width:39.920640pt;}
._d{width:41.745920pt;}
._27{width:42.777600pt;}
._28{width:44.132480pt;}
._3f{width:45.418453pt;}
._3a{width:46.401280pt;}
._39{width:47.398400pt;}
._19{width:48.811520pt;}
._11{width:49.726080pt;}
._10{width:50.754560pt;}
._48{width:51.655040pt;}
._4c{width:53.580800pt;}
._42{width:55.170560pt;}
._c{width:56.130560pt;}
._43{width:57.052160pt;}
._2e{width:58.173440pt;}
._29{width:59.264640pt;}
._40{width:60.323840pt;}
._2c{width:61.325440pt;}
._2b{width:62.766080pt;}
._f{width:63.708160pt;}
._49{width:64.885760pt;}
._4d{width:66.035840pt;}
._1b{width:67.040640pt;}
._1a{width:68.006400pt;}
._32{width:69.890560pt;}
._54{width:72.005760pt;}
._4e{width:73.246720pt;}
._25{width:74.240000pt;}
._26{width:75.460267pt;}
._3d{width:76.645120pt;}
._3e{width:78.251520pt;}
._38{width:82.403840pt;}
._44{width:83.786240pt;}
._45{width:85.054080pt;}
._1f{width:86.113280pt;}
._3c{width:104.920747pt;}
._52{width:107.102720pt;}
._53{width:110.164480pt;}
._3b{width:115.051520pt;}
._3{width:118.378667pt;}
._1c{width:120.220373pt;}
._35{width:131.950080pt;}
._23{width:135.905280pt;}
._37{width:154.532480pt;}
._41{width:156.365653pt;}
._21{width:168.548907pt;}
._47{width:171.929600pt;}
._22{width:175.686400pt;}
._4f{width:185.943040pt;}
._51{width:211.057280pt;}
._50{width:616.768000pt;}
._55{width:753.418667pt;}
.fs4{font-size:16.000000pt;}
.fs5{font-size:21.120000pt;}
.fs9{font-size:32.000000pt;}
.fs7{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs8{font-size:82.560000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:0.800000pt;}
.y18{bottom:1.120000pt;}
.y10{bottom:1.440000pt;}
.y3{bottom:3.040000pt;}
.y8{bottom:5.920000pt;}
.ya{bottom:6.560000pt;}
.y6{bottom:7.520000pt;}
.ye{bottom:20.320000pt;}
.y15{bottom:23.560000pt;}
.y5{bottom:29.440000pt;}
.y14{bottom:42.600000pt;}
.y1{bottom:45.760000pt;}
.y13{bottom:62.760000pt;}
.y4f{bottom:66.880000pt;}
.y12{bottom:82.920000pt;}
.y4c{bottom:108.800000pt;}
.ybc{bottom:111.840000pt;}
.y39{bottom:112.000000pt;}
.y79{bottom:113.920000pt;}
.ydf{bottom:115.040000pt;}
.y105{bottom:119.200000pt;}
.y4b{bottom:130.720000pt;}
.ya9{bottom:133.760000pt;}
.y38{bottom:133.920000pt;}
.yd1{bottom:134.880000pt;}
.y78{bottom:135.840000pt;}
.y8c{bottom:136.960000pt;}
.y104{bottom:141.120000pt;}
.y4a{bottom:152.640000pt;}
.ya8{bottom:155.680000pt;}
.y37{bottom:155.840000pt;}
.yd0{bottom:156.800000pt;}
.y77{bottom:157.920000pt;}
.y8b{bottom:158.880000pt;}
.y103{bottom:163.040000pt;}
.y49{bottom:174.560000pt;}
.ya7{bottom:177.600000pt;}
.y36{bottom:177.760000pt;}
.ycf{bottom:178.720000pt;}
.y76{bottom:180.480000pt;}
.y8a{bottom:180.800000pt;}
.y102{bottom:184.986667pt;}
.y48{bottom:196.506667pt;}
.y35{bottom:199.706667pt;}
.ybb{bottom:200.346667pt;}
.yce{bottom:200.666667pt;}
.y75{bottom:202.746667pt;}
.y101{bottom:206.906667pt;}
.y47{bottom:218.586667pt;}
.y34{bottom:221.626667pt;}
.ya6{bottom:222.266667pt;}
.ycd{bottom:222.586667pt;}
.y74{bottom:224.666667pt;}
.y100{bottom:228.826667pt;}
.y46{bottom:241.466667pt;}
.y33{bottom:243.546667pt;}
.ya5{bottom:244.186667pt;}
.yba{bottom:244.506667pt;}
.ycc{bottom:245.146667pt;}
.y73{bottom:246.586667pt;}
.y89{bottom:246.746667pt;}
.y10a{bottom:250.426667pt;}
.yff{bottom:250.746667pt;}
.y45{bottom:263.386667pt;}
.y32{bottom:265.466667pt;}
.ya4{bottom:266.426667pt;}
.ycb{bottom:267.066667pt;}
.yde{bottom:268.186667pt;}
.y72{bottom:268.506667pt;}
.y88{bottom:269.306667pt;}
.y109{bottom:272.346667pt;}
.yfe{bottom:272.666667pt;}
.y44{bottom:285.306667pt;}
.y31{bottom:287.386667pt;}
.ya3{bottom:288.346667pt;}
.yca{bottom:289.306667pt;}
.ydd{bottom:290.106667pt;}
.y71{bottom:290.426667pt;}
.y87{bottom:291.546667pt;}
.yfd{bottom:294.586667pt;}
.y43{bottom:307.226667pt;}
.y30{bottom:309.306667pt;}
.ya2{bottom:310.266667pt;}
.yc9{bottom:311.226667pt;}
.y70{bottom:312.346667pt;}
.y86{bottom:313.466667pt;}
.yfc{bottom:316.506667pt;}
.y42{bottom:329.146667pt;}
.y2f{bottom:331.226667pt;}
.ya1{bottom:332.186667pt;}
.yc8{bottom:333.146667pt;}
.y6f{bottom:334.266667pt;}
.y85{bottom:335.386667pt;}
.yfb{bottom:338.426667pt;}
.y41{bottom:351.226667pt;}
.y2e{bottom:353.146667pt;}
.yb9{bottom:354.106667pt;}
.ya0{bottom:354.266667pt;}
.yc7{bottom:355.226667pt;}
.ydc{bottom:356.186667pt;}
.y6e{bottom:356.346667pt;}
.y84{bottom:357.306667pt;}
.yfa{bottom:360.346667pt;}
.y40{bottom:374.106667pt;}
.y2d{bottom:375.066667pt;}
.yb8{bottom:376.186667pt;}
.y9f{bottom:377.146667pt;}
.ydb{bottom:378.106667pt;}
.y6d{bottom:378.906667pt;}
.y83{bottom:379.226667pt;}
.yf9{bottom:382.266667pt;}
.y3f{bottom:396.066667pt;}
.y2c{bottom:397.026667pt;}
.y9e{bottom:399.106667pt;}
.yda{bottom:400.066667pt;}
.y6c{bottom:401.186667pt;}
.yf8{bottom:404.226667pt;}
.y3e{bottom:417.986667pt;}
.y2b{bottom:418.946667pt;}
.y9d{bottom:421.026667pt;}
.yd9{bottom:421.986667pt;}
.y6b{bottom:423.106667pt;}
.yf7{bottom:426.306667pt;}
.y3d{bottom:439.906667pt;}
.y2a{bottom:440.866667pt;}
.y9c{bottom:442.946667pt;}
.yd8{bottom:443.906667pt;}
.y6a{bottom:445.026667pt;}
.yf6{bottom:448.226667pt;}
.y3c{bottom:461.826667pt;}
.y29{bottom:462.786667pt;}
.y9b{bottom:464.866667pt;}
.yd7{bottom:465.506667pt;}
.yc6{bottom:465.826667pt;}
.y69{bottom:466.946667pt;}
.y82{bottom:467.586667pt;}
.y108{bottom:469.826667pt;}
.yf5{bottom:470.146667pt;}
.y3b{bottom:483.746667pt;}
.y28{bottom:484.706667pt;}
.y9a{bottom:486.786667pt;}
.yd6{bottom:487.426667pt;}
.yc5{bottom:487.746667pt;}
.y68{bottom:488.866667pt;}
.y81{bottom:489.506667pt;}
.yf4{bottom:492.066667pt;}
.y3a{bottom:505.666667pt;}
.y27{bottom:506.626667pt;}
.yb7{bottom:508.706667pt;}
.y99{bottom:509.666667pt;}
.y67{bottom:510.786667pt;}
.y80{bottom:511.746667pt;}
.yf3{bottom:513.986667pt;}
.y26{bottom:528.226667pt;}
.y98{bottom:531.586667pt;}
.y66{bottom:532.706667pt;}
.y7f{bottom:533.826667pt;}
.yf2{bottom:535.906667pt;}
.y25{bottom:550.146667pt;}
.y97{bottom:553.506667pt;}
.yc4{bottom:553.666667pt;}
.y65{bottom:554.626667pt;}
.y7e{bottom:555.746667pt;}
.yf1{bottom:557.826667pt;}
.y24{bottom:571.586667pt;}
.yd5{bottom:575.426667pt;}
.y96{bottom:575.586667pt;}
.yc3{bottom:576.546667pt;}
.y64{bottom:576.706667pt;}
.y7d{bottom:577.666667pt;}
.y10b{bottom:579.426667pt;}
.yf0{bottom:579.746667pt;}
.y23{bottom:595.266667pt;}
.yd4{bottom:597.506667pt;}
.yb6{bottom:598.146667pt;}
.y95{bottom:598.466667pt;}
.y63{bottom:599.586667pt;}
.yef{bottom:601.373333pt;}
.y107{bottom:601.693333pt;}
.y22{bottom:614.813333pt;}
.yb5{bottom:620.093333pt;}
.y94{bottom:620.413333pt;}
.y62{bottom:621.533333pt;}
.yee{bottom:623.293333pt;}
.y106{bottom:623.613333pt;}
.y21{bottom:634.173333pt;}
.y93{bottom:642.333333pt;}
.y61{bottom:643.453333pt;}
.yed{bottom:645.533333pt;}
.y20{bottom:653.533333pt;}
.y92{bottom:664.253333pt;}
.yc2{bottom:664.413333pt;}
.y60{bottom:665.373333pt;}
.yec{bottom:667.453333pt;}
.y1f{bottom:672.893333pt;}
.yb4{bottom:686.173333pt;}
.y91{bottom:686.333333pt;}
.yc1{bottom:686.973333pt;}
.y5f{bottom:687.293333pt;}
.yeb{bottom:689.373333pt;}
.y1e{bottom:692.413333pt;}
.yb3{bottom:708.093333pt;}
.yc0{bottom:708.893333pt;}
.y5e{bottom:709.213333pt;}
.yea{bottom:711.293333pt;}
.y1d{bottom:711.773333pt;}
.yb2{bottom:730.013333pt;}
.yd3{bottom:730.173333pt;}
.y1c{bottom:731.133333pt;}
.ye9{bottom:733.213333pt;}
.y1b{bottom:750.493333pt;}
.yb1{bottom:751.933333pt;}
.yd2{bottom:752.733333pt;}
.y5d{bottom:753.053333pt;}
.ye8{bottom:755.133333pt;}
.y1a{bottom:769.853333pt;}
.yb0{bottom:773.853333pt;}
.ybf{bottom:774.973333pt;}
.y90{bottom:775.613333pt;}
.y5c{bottom:775.933333pt;}
.ye7{bottom:777.053333pt;}
.y19{bottom:789.053333pt;}
.yaf{bottom:795.933333pt;}
.ybe{bottom:796.893333pt;}
.y8f{bottom:797.533333pt;}
.y5b{bottom:797.853333pt;}
.ye6{bottom:798.973333pt;}
.y17{bottom:802.653333pt;}
.y11{bottom:809.053333pt;}
.y16{bottom:813.061890pt;}
.yae{bottom:818.853333pt;}
.y5a{bottom:819.813333pt;}
.ye5{bottom:820.933333pt;}
.yad{bottom:840.773333pt;}
.y59{bottom:841.893333pt;}
.ye4{bottom:842.853333pt;}
.yac{bottom:862.693333pt;}
.y58{bottom:863.813333pt;}
.ye3{bottom:864.773333pt;}
.yab{bottom:884.613333pt;}
.ybd{bottom:884.773333pt;}
.y57{bottom:885.733333pt;}
.ye2{bottom:886.693333pt;}
.yaa{bottom:906.693333pt;}
.y56{bottom:907.653333pt;}
.ye1{bottom:908.613333pt;}
.yf{bottom:914.853333pt;}
.yd{bottom:920.453333pt;}
.y55{bottom:929.573333pt;}
.ye0{bottom:930.533333pt;}
.y54{bottom:951.493333pt;}
.y7c{bottom:952.453333pt;}
.yb{bottom:956.933333pt;}
.y9{bottom:961.733333pt;}
.y8e{bottom:973.413333pt;}
.y53{bottom:974.053333pt;}
.y7b{bottom:974.373333pt;}
.y2{bottom:983.333333pt;}
.y8d{bottom:995.333333pt;}
.y52{bottom:995.973333pt;}
.y7a{bottom:996.293333pt;}
.y7{bottom:1003.173333pt;}
.y51{bottom:1018.240000pt;}
.y4{bottom:1028.320000pt;}
.y50{bottom:1040.160000pt;}
.y4e{bottom:1055.360000pt;}
.y4d{bottom:1067.200000pt;}
.hc{height:4.786667pt;}
.h10{height:5.586667pt;}
.h16{height:6.400000pt;}
.hd{height:11.843750pt;}
.h17{height:15.633750pt;}
.h11{height:16.896000pt;}
.h8{height:19.826667pt;}
.ha{height:21.586667pt;}
.h7{height:25.146667pt;}
.h1c{height:27.093750pt;}
.he{height:36.466667pt;}
.h1e{height:41.112500pt;}
.h5{height:47.040000pt;}
.h9{height:49.852500pt;}
.h1d{height:52.108438pt;}
.hb{height:54.187500pt;}
.h2{height:55.355625pt;}
.h15{height:56.437500pt;}
.h18{height:57.758750pt;}
.h1a{height:57.787500pt;}
.h19{height:59.340000pt;}
.h14{height:60.270000pt;}
.h1b{height:60.519362pt;}
.h6{height:63.399375pt;}
.h13{height:64.500000pt;}
.h4{height:67.837500pt;}
.hf{height:69.660000pt;}
.h3{height:92.026667pt;}
.h12{height:105.780000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:96.026667pt;}
.w2{width:96.030667pt;}
.w5{width:245.973333pt;}
.w6{width:246.093333pt;}
.w3{width:492.080000pt;}
.w7{width:596.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:7.190667pt;}
.x5{left:9.746667pt;}
.x10{left:18.386667pt;}
.xb{left:30.386667pt;}
.x13{left:39.825333pt;}
.xe{left:44.190667pt;}
.x9{left:47.346667pt;}
.x2{left:54.081333pt;}
.xc{left:72.466667pt;}
.xf{left:75.666667pt;}
.xd{left:85.266667pt;}
.x8{left:95.866667pt;}
.x3{left:97.785333pt;}
.x11{left:98.761333pt;}
.x1f{left:100.512000pt;}
.x1e{left:124.512000pt;}
.x17{left:135.345333pt;}
.x1a{left:144.026667pt;}
.x16{left:145.465333pt;}
.x4{left:150.120000pt;}
.x14{left:182.745333pt;}
.x6{left:185.786667pt;}
.x15{left:200.825333pt;}
.x18{left:288.858236pt;}
.x12{left:298.292000pt;}
.xa{left:396.106667pt;}
.x1b{left:420.893333pt;}
.x1c{left:425.373333pt;}
.x1d{left:449.373333pt;}
.x20{left:468.893333pt;}
.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; }
  