
    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_139e6408f502fb5e9873dc66.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_d8c644f74693e63fcfad4bc2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;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_2a2dcf8f0a9ced7e21edd7ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_ce93fa1cb3cb388b70b6ff81.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_1119583ecf13fa949564e4db.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.856934;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b9958c70bcb8ea9634cd0c0c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f811a8240c4a6b89861eba92.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_281a1f4d8b49b10947be684e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_fc774edc1caf447acb1db738.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_03b96fb725fef481ddf927fd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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_248a4b258a74096e5c59affa.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-6.479997px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018600px;}
.ls4{letter-spacing:0.021238px;}
.ls2{letter-spacing:11.543215px;}
.ls0{letter-spacing:1409.320923px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,176,80),0 0.015em rgb(0,176,80),0.015em 0 rgb(0,176,80),0 -0.015em  rgb(0,176,80);}
.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,176,80);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-32.418587px;}
.ws5{word-spacing:-21.059992px;}
.ws1{word-spacing:-17.999993px;}
.ws2{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws4{word-spacing:-14.939994px;}
.ws6{word-spacing:-13.505755px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-7.844991px;}
._1{margin-left:-4.242803px;}
._c{margin-left:-3.020769px;}
._2{margin-left:-1.599418px;}
._0{width:1.003097px;}
._b{width:2.057031px;}
._8{width:3.193976px;}
._6{width:4.625538px;}
._4{width:6.295782px;}
._9{width:7.356259px;}
._a{width:8.479290px;}
._7{width:9.661259px;}
._10{width:10.981399px;}
._11{width:12.094194px;}
._d{width:13.175486px;}
._16{width:14.639932px;}
._17{width:15.761753px;}
._5{width:16.799501px;}
._1a{width:19.184094px;}
._12{width:20.224784px;}
._13{width:21.637505px;}
._19{width:23.640765px;}
._14{width:24.952372px;}
._e{width:27.056944px;}
._f{width:28.169292px;}
._18{width:29.995637px;}
._15{width:31.188479px;}
._1d{width:32.240438px;}
._1b{width:36.071990px;}
._1c{width:37.423227px;}
._1e{width:38.527409px;}
._1f{width:39.755651px;}
._20{width:42.110623px;}
.fcc{color:rgb(0,101,204);}
.fc8{color:rgb(44,62,80);}
.fc7{color:rgb(83,129,53);}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,32,96);}
.fca{color:rgb(0,112,192);}
.fc4{color:rgb(192,0,0);}
.fcb{color:rgb(0,176,80);}
.fc9{color:rgb(51,51,51);}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,64,64);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs7{font-size:81.359967px;}
.fs6{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.y6{bottom:-9.899991px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.120234px;}
.y13{bottom:4.499046px;}
.y21{bottom:4.499059px;}
.yb{bottom:4.500038px;}
.yc{bottom:32.880287px;}
.ya{bottom:50.520240px;}
.y8{bottom:55.020278px;}
.y9{bottom:56.640277px;}
.y128{bottom:134.759946px;}
.yc9{bottom:139.979944px;}
.y73{bottom:140.519944px;}
.y40{bottom:143.579943px;}
.yb0{bottom:155.279938px;}
.ye1{bottom:155.459938px;}
.y112{bottom:156.719937px;}
.yc8{bottom:160.679936px;}
.y72{bottom:161.219936px;}
.y3f{bottom:164.279934px;}
.yaf{bottom:175.979930px;}
.y111{bottom:177.419929px;}
.yc7{bottom:181.199928px;}
.ye7{bottom:181.559927px;}
.y89{bottom:182.279927px;}
.y3e{bottom:184.979926px;}
.yae{bottom:196.679921px;}
.ye0{bottom:197.219921px;}
.y110{bottom:198.119921px;}
.ye6{bottom:202.259919px;}
.y71{bottom:202.979919px;}
.y3d{bottom:205.679918px;}
.y13e{bottom:213.779914px;}
.yad{bottom:217.379913px;}
.ydf{bottom:217.919913px;}
.y10f{bottom:218.819912px;}
.yc6{bottom:222.959911px;}
.y70{bottom:223.679911px;}
.y3c{bottom:226.379909px;}
.yac{bottom:238.079905px;}
.yde{bottom:238.619905px;}
.y10e{bottom:239.519904px;}
.y13d{bottom:242.399903px;}
.yc5{bottom:243.659903px;}
.y6f{bottom:244.199902px;}
.y3b{bottom:247.079901px;}
.ydd{bottom:259.319896px;}
.y10d{bottom:260.219896px;}
.yc4{bottom:264.359894px;}
.y6e{bottom:264.899894px;}
.y13c{bottom:272.099891px;}
.yab{bottom:279.659888px;}
.ydc{bottom:280.019888px;}
.y10c{bottom:280.919888px;}
.yc3{bottom:285.059886px;}
.y6d{bottom:285.599886px;}
.y3a{bottom:288.659885px;}
.ydb{bottom:300.719880px;}
.y10b{bottom:301.619879px;}
.y13b{bottom:301.799879px;}
.yc2{bottom:305.759878px;}
.ye5{bottom:306.119878px;}
.y6c{bottom:306.299877px;}
.y39{bottom:320.879872px;}
.yaa{bottom:321.419871px;}
.y10a{bottom:322.319871px;}
.ye4{bottom:326.819869px;}
.y6b{bottom:326.999869px;}
.y13a{bottom:331.499867px;}
.ya9{bottom:342.119863px;}
.y38{bottom:347.519861px;}
.y88{bottom:347.699861px;}
.y139{bottom:361.199856px;}
.ya8{bottom:362.819855px;}
.y109{bottom:364.079854px;}
.y37{bottom:368.219853px;}
.y6a{bottom:368.759852px;}
.ya7{bottom:383.519847px;}
.yda{bottom:383.879846px;}
.y108{bottom:384.779846px;}
.ye3{bottom:388.919844px;}
.yc1{bottom:389.099844px;}
.y87{bottom:389.459844px;}
.y138{bottom:390.899844px;}
.y1f{bottom:395.039842px;}
.yd9{bottom:404.579838px;}
.y127{bottom:404.939838px;}
.y107{bottom:405.479838px;}
.y49{bottom:406.559837px;}
.yc0{bottom:409.799836px;}
.y86{bottom:410.159836px;}
.y69{bottom:410.519836px;}
.y137{bottom:411.599835px;}
.y48{bottom:423.479831px;}
.ya6{bottom:425.279830px;}
.y106{bottom:426.179830px;}
.ybf{bottom:430.499828px;}
.y85{bottom:430.859828px;}
.y68{bottom:431.219828px;}
.y47{bottom:440.219824px;}
.y136{bottom:441.299823px;}
.ya5{bottom:445.979822px;}
.y105{bottom:446.879821px;}
.y126{bottom:448.679821px;}
.ybe{bottom:451.199820px;}
.y84{bottom:451.559819px;}
.y67{bottom:451.919819px;}
.y46{bottom:457.679817px;}
.ya4{bottom:466.679813px;}
.y104{bottom:467.579813px;}
.y125{bottom:469.379812px;}
.y135{bottom:470.999812px;}
.ybd{bottom:471.899811px;}
.y83{bottom:472.259811px;}
.y66{bottom:472.619811px;}
.ya3{bottom:487.379805px;}
.y36{bottom:488.099805px;}
.y103{bottom:488.279805px;}
.y124{bottom:490.079804px;}
.y134{bottom:491.699803px;}
.y82{bottom:492.959803px;}
.y65{bottom:493.319803px;}
.y1e{bottom:503.039799px;}
.y35{bottom:505.199798px;}
.ya2{bottom:508.079797px;}
.y102{bottom:508.979796px;}
.y123{bottom:510.779796px;}
.y81{bottom:513.659795px;}
.y64{bottom:514.019794px;}
.y133{bottom:521.399791px;}
.ya1{bottom:528.779788px;}
.y101{bottom:529.679788px;}
.y122{bottom:531.479787px;}
.y80{bottom:534.359786px;}
.y63{bottom:534.719786px;}
.y132{bottom:542.099783px;}
.y34{bottom:543.539783px;}
.yd8{bottom:549.659780px;}
.y100{bottom:550.379780px;}
.y121{bottom:552.179779px;}
.y7f{bottom:555.059778px;}
.y62{bottom:555.419778px;}
.y33{bottom:560.819776px;}
.ya0{bottom:570.359772px;}
.yff{bottom:571.079772px;}
.y131{bottom:571.799771px;}
.y120{bottom:572.879771px;}
.ybc{bottom:575.759770px;}
.y61{bottom:576.119770px;}
.y32{bottom:578.099769px;}
.y9f{bottom:591.059764px;}
.yd7{bottom:591.419763px;}
.yfe{bottom:591.779763px;}
.y11f{bottom:593.579763px;}
.y31{bottom:595.199762px;}
.ybb{bottom:596.459761px;}
.y7e{bottom:596.819761px;}
.y130{bottom:601.499759px;}
.y1d{bottom:604.199758px;}
.y9e{bottom:611.759755px;}
.yd6{bottom:612.119755px;}
.y30{bottom:612.479755px;}
.y11e{bottom:614.279754px;}
.y60{bottom:617.699753px;}
.y2f{bottom:629.759748px;}
.y12f{bottom:631.199748px;}
.y9d{bottom:632.459747px;}
.yd5{bottom:632.819747px;}
.yfd{bottom:633.359747px;}
.y11d{bottom:634.979746px;}
.yba{bottom:638.219745px;}
.y5f{bottom:638.399745px;}
.y2e{bottom:647.039741px;}
.y12e{bottom:651.899739px;}
.y9c{bottom:653.159739px;}
.yd4{bottom:653.519739px;}
.yfc{bottom:654.059738px;}
.y11c{bottom:655.679738px;}
.y1c{bottom:658.019737px;}
.yb9{bottom:658.919736px;}
.y5e{bottom:659.099736px;}
.y2d{bottom:664.319734px;}
.y9b{bottom:673.859730px;}
.yd3{bottom:674.219730px;}
.y1b{bottom:674.579730px;}
.yfb{bottom:674.759730px;}
.yb8{bottom:679.619728px;}
.y5d{bottom:679.799728px;}
.y2c{bottom:681.599727px;}
.y1a{bottom:691.139724px;}
.y9a{bottom:694.559722px;}
.yd2{bottom:694.919722px;}
.yfa{bottom:695.459722px;}
.y11b{bottom:697.979721px;}
.y2b{bottom:698.699721px;}
.yb7{bottom:700.319720px;}
.y5c{bottom:700.499720px;}
.y19{bottom:706.439717px;}
.y12d{bottom:711.299715px;}
.yd1{bottom:715.619714px;}
.y2a{bottom:715.979714px;}
.yf9{bottom:716.159714px;}
.yb6{bottom:721.019712px;}
.y5b{bottom:721.199712px;}
.y12c{bottom:731.999707px;}
.y29{bottom:733.259707px;}
.y99{bottom:736.319705px;}
.yf8{bottom:736.859705px;}
.yb5{bottom:741.719703px;}
.y5a{bottom:741.899703px;}
.y11a{bottom:742.619703px;}
.y28{bottom:750.539700px;}
.yf7{bottom:757.559697px;}
.y18{bottom:759.179696px;}
.y12b{bottom:761.699695px;}
.y7d{bottom:762.599695px;}
.y119{bottom:763.319695px;}
.y27{bottom:767.819693px;}
.y98{bottom:777.899689px;}
.yf6{bottom:778.259689px;}
.yb4{bottom:783.299687px;}
.y59{bottom:783.659687px;}
.y118{bottom:784.019686px;}
.y26{bottom:785.099686px;}
.y12a{bottom:791.939683px;}
.y97{bottom:798.599681px;}
.yf5{bottom:798.959680px;}
.y25{bottom:802.199679px;}
.y7c{bottom:804.359678px;}
.y117{bottom:804.719678px;}
.y17{bottom:811.919675px;}
.y96{bottom:819.299672px;}
.y24{bottom:819.479672px;}
.yf4{bottom:819.659672px;}
.y129{bottom:822.179671px;}
.y7b{bottom:825.059670px;}
.y58{bottom:825.419670px;}
.y16{bottom:828.659669px;}
.y23{bottom:836.759665px;}
.y95{bottom:839.999664px;}
.yf3{bottom:840.359664px;}
.y7a{bottom:845.759662px;}
.y57{bottom:846.119662px;}
.y20{bottom:847.920600px;}
.y22{bottom:854.039658px;}
.y15{bottom:855.119658px;}
.yd0{bottom:860.699656px;}
.y79{bottom:866.459653px;}
.y56{bottom:866.819653px;}
.ycf{bottom:881.399647px;}
.y12{bottom:881.580600px;}
.y94{bottom:881.759647px;}
.yf2{bottom:882.119647px;}
.y14{bottom:886.079646px;}
.y78{bottom:887.159645px;}
.y55{bottom:887.519645px;}
.yce{bottom:902.099639px;}
.y93{bottom:902.459639px;}
.yf1{bottom:902.819639px;}
.y77{bottom:907.859637px;}
.y54{bottom:908.219637px;}
.ycd{bottom:922.799631px;}
.y92{bottom:923.159631px;}
.yf0{bottom:923.519631px;}
.y11{bottom:924.419630px;}
.y76{bottom:928.559629px;}
.y53{bottom:928.919628px;}
.ycc{bottom:943.499623px;}
.y91{bottom:943.859622px;}
.yef{bottom:944.219622px;}
.y10{bottom:945.119622px;}
.y75{bottom:949.259620px;}
.y52{bottom:949.619620px;}
.y116{bottom:949.799620px;}
.ycb{bottom:964.199614px;}
.y90{bottom:964.559614px;}
.yee{bottom:964.919614px;}
.yf{bottom:965.819614px;}
.y51{bottom:970.319612px;}
.y115{bottom:970.499612px;}
.y8f{bottom:985.259606px;}
.yed{bottom:985.619606px;}
.y50{bottom:991.019604px;}
.y114{bottom:991.199604px;}
.ye{bottom:996.959601px;}
.y8e{bottom:1005.959598px;}
.yec{bottom:1006.319597px;}
.y4f{bottom:1011.719595px;}
.y113{bottom:1011.899595px;}
.yd{bottom:1024.499590px;}
.y8d{bottom:1026.659589px;}
.yeb{bottom:1027.019589px;}
.yb3{bottom:1032.419587px;}
.y74{bottom:1032.599587px;}
.y8c{bottom:1047.359581px;}
.yea{bottom:1047.719581px;}
.yca{bottom:1050.059580px;}
.yb2{bottom:1052.939579px;}
.y4e{bottom:1053.299579px;}
.ye9{bottom:1068.419573px;}
.y44{bottom:1072.019571px;}
.yb1{bottom:1073.639571px;}
.y4d{bottom:1073.999570px;}
.y8b{bottom:1088.939564px;}
.ye8{bottom:1089.119564px;}
.y43{bottom:1091.819563px;}
.ye2{bottom:1094.339562px;}
.y4c{bottom:1094.699562px;}
.y42{bottom:1111.619555px;}
.y4b{bottom:1115.399554px;}
.y8a{bottom:1133.219547px;}
.y4a{bottom:1136.099546px;}
.y41{bottom:1139.879544px;}
.y45{bottom:1149.599540px;}
.y4{bottom:1157.339537px;}
.y7{bottom:1185.599526px;}
.y3{bottom:1189.019524px;}
.y2{bottom:1206.299517px;}
.y1{bottom:1223.579511px;}
.h3{height:5.940000px;}
.hb{height:20.160000px;}
.h6{height:20.340000px;}
.h5{height:34.625377px;}
.hf{height:36.624009px;}
.h4{height:36.703110px;}
.hd{height:38.759750px;}
.he{height:39.339828px;}
.h12{height:40.793187px;}
.h10{height:41.493499px;}
.h1{height:41.522679px;}
.h7{height:42.894123px;}
.h13{height:44.149201px;}
.hc{height:45.022482px;}
.h2{height:47.545293px;}
.h9{height:48.796855px;}
.ha{height:50.027324px;}
.h15{height:55.140447px;}
.h14{height:57.092321px;}
.h11{height:58.531969px;}
.h8{height:64.899818px;}
.h0{height:1263.000000px;}
.w5{width:3.780000px;}
.w3{width:4.500000px;}
.w8{width:8.100000px;}
.w7{width:8.280000px;}
.w2{width:9.720000px;}
.w6{width:32.760000px;}
.w4{width:55.620000px;}
.w9{width:70.380000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x18{left:63.539975px;}
.x16{left:69.659972px;}
.x13{left:80.639968px;}
.x1a{left:84.599966px;}
.x15{left:89.459999px;}
.x14{left:91.079964px;}
.xb{left:94.500000px;}
.x1{left:107.999957px;}
.x19{left:124.379950px;}
.x17{left:126.359949px;}
.x25{left:130.319948px;}
.x4{left:132.659947px;}
.x7{left:135.179946px;}
.x8{left:140.759672px;}
.xc{left:150.120000px;}
.xd{left:153.900000px;}
.xe{left:186.659925px;}
.xf{left:189.540000px;}
.x1b{left:210.239926px;}
.x1c{left:211.319915px;}
.x10{left:235.260000px;}
.x1d{left:253.799898px;}
.x1f{left:254.879898px;}
.x11{left:264.960000px;}
.xa{left:286.379019px;}
.x21{left:298.259881px;}
.x2{left:302.579879px;}
.x12{left:335.160000px;}
.x9{left:368.459853px;}
.x20{left:398.159841px;}
.x5{left:399.239840px;}
.x22{left:419.399832px;}
.x1e{left:446.399821px;}
.x23{left:515.519794px;}
.x3{left:666.539733px;}
.x24{left:732.420423px;}
.x6{left:780.120000px;}
@media print{
.v1{vertical-align:-5.759998pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016533pt;}
.ls4{letter-spacing:0.018878pt;}
.ls2{letter-spacing:10.260636pt;}
.ls0{letter-spacing:1252.729709pt;}
.ws3{word-spacing:-28.816521pt;}
.ws5{word-spacing:-18.719993pt;}
.ws1{word-spacing:-15.999994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws4{word-spacing:-13.279995pt;}
.ws6{word-spacing:-12.005115pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-6.973325pt;}
._1{margin-left:-3.771380pt;}
._c{margin-left:-2.685128pt;}
._2{margin-left:-1.421705pt;}
._0{width:0.891642pt;}
._b{width:1.828472pt;}
._8{width:2.839090pt;}
._6{width:4.111589pt;}
._4{width:5.596250pt;}
._9{width:6.538897pt;}
._a{width:7.537147pt;}
._7{width:8.587786pt;}
._10{width:9.761243pt;}
._11{width:10.750395pt;}
._d{width:11.711543pt;}
._16{width:13.013273pt;}
._17{width:14.010447pt;}
._5{width:14.932890pt;}
._1a{width:17.052528pt;}
._12{width:17.977586pt;}
._13{width:19.233338pt;}
._19{width:21.014013pt;}
._14{width:22.179886pt;}
._e{width:24.050617pt;}
._f{width:25.039371pt;}
._18{width:26.662789pt;}
._15{width:27.723092pt;}
._1d{width:28.658167pt;}
._1b{width:32.063991pt;}
._1c{width:33.265091pt;}
._1e{width:34.246586pt;}
._1f{width:35.338356pt;}
._20{width:37.431665pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs7{font-size:72.319971pt;}
.fs6{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.y6{bottom:-8.799992pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.106875pt;}
.y13{bottom:3.999152pt;}
.y21{bottom:3.999164pt;}
.yb{bottom:4.000034pt;}
.yc{bottom:29.226922pt;}
.ya{bottom:44.906880pt;}
.y8{bottom:48.906914pt;}
.y9{bottom:50.346913pt;}
.y128{bottom:119.786619pt;}
.yc9{bottom:124.426617pt;}
.y73{bottom:124.906617pt;}
.y40{bottom:127.626616pt;}
.yb0{bottom:138.026611pt;}
.ye1{bottom:138.186611pt;}
.y112{bottom:139.306611pt;}
.yc8{bottom:142.826610pt;}
.y72{bottom:143.306609pt;}
.y3f{bottom:146.026608pt;}
.yaf{bottom:156.426604pt;}
.y111{bottom:157.706604pt;}
.yc7{bottom:161.066602pt;}
.ye7{bottom:161.386602pt;}
.y89{bottom:162.026602pt;}
.y3e{bottom:164.426601pt;}
.yae{bottom:174.826597pt;}
.ye0{bottom:175.306597pt;}
.y110{bottom:176.106596pt;}
.ye6{bottom:179.786595pt;}
.y71{bottom:180.426594pt;}
.y3d{bottom:182.826594pt;}
.y13e{bottom:190.026591pt;}
.yad{bottom:193.226589pt;}
.ydf{bottom:193.706589pt;}
.y10f{bottom:194.506589pt;}
.yc6{bottom:198.186587pt;}
.y70{bottom:198.826587pt;}
.y3c{bottom:201.226586pt;}
.yac{bottom:211.626582pt;}
.yde{bottom:212.106582pt;}
.y10e{bottom:212.906582pt;}
.y13d{bottom:215.466580pt;}
.yc5{bottom:216.586580pt;}
.y6f{bottom:217.066580pt;}
.y3b{bottom:219.626579pt;}
.ydd{bottom:230.506574pt;}
.y10d{bottom:231.306574pt;}
.yc4{bottom:234.986573pt;}
.y6e{bottom:235.466572pt;}
.y13c{bottom:241.866570pt;}
.yab{bottom:248.586567pt;}
.ydc{bottom:248.906567pt;}
.y10c{bottom:249.706567pt;}
.yc3{bottom:253.386565pt;}
.y6d{bottom:253.866565pt;}
.y3a{bottom:256.586564pt;}
.ydb{bottom:267.306560pt;}
.y10b{bottom:268.106559pt;}
.y13b{bottom:268.266559pt;}
.yc2{bottom:271.786558pt;}
.ye5{bottom:272.106558pt;}
.y6c{bottom:272.266558pt;}
.y39{bottom:285.226553pt;}
.yaa{bottom:285.706552pt;}
.y10a{bottom:286.506552pt;}
.ye4{bottom:290.506550pt;}
.y6b{bottom:290.666550pt;}
.y13a{bottom:294.666549pt;}
.ya9{bottom:304.106545pt;}
.y38{bottom:308.906543pt;}
.y88{bottom:309.066543pt;}
.y139{bottom:321.066538pt;}
.ya8{bottom:322.506538pt;}
.y109{bottom:323.626537pt;}
.y37{bottom:327.306536pt;}
.y6a{bottom:327.786536pt;}
.ya7{bottom:340.906530pt;}
.yda{bottom:341.226530pt;}
.y108{bottom:342.026530pt;}
.ye3{bottom:345.706528pt;}
.yc1{bottom:345.866528pt;}
.y87{bottom:346.186528pt;}
.y138{bottom:347.466528pt;}
.y1f{bottom:351.146526pt;}
.yd9{bottom:359.626523pt;}
.y127{bottom:359.946523pt;}
.y107{bottom:360.426522pt;}
.y49{bottom:361.386522pt;}
.yc0{bottom:364.266521pt;}
.y86{bottom:364.586521pt;}
.y69{bottom:364.906521pt;}
.y137{bottom:365.866520pt;}
.y48{bottom:376.426516pt;}
.ya6{bottom:378.026515pt;}
.y106{bottom:378.826515pt;}
.ybf{bottom:382.666514pt;}
.y85{bottom:382.986513pt;}
.y68{bottom:383.306513pt;}
.y47{bottom:391.306510pt;}
.y136{bottom:392.266510pt;}
.ya5{bottom:396.426508pt;}
.y105{bottom:397.226508pt;}
.y126{bottom:398.826507pt;}
.ybe{bottom:401.066506pt;}
.y84{bottom:401.386506pt;}
.y67{bottom:401.706506pt;}
.y46{bottom:406.826504pt;}
.ya4{bottom:414.826501pt;}
.y104{bottom:415.626500pt;}
.y125{bottom:417.226500pt;}
.y135{bottom:418.666499pt;}
.ybd{bottom:419.466499pt;}
.y83{bottom:419.786499pt;}
.y66{bottom:420.106499pt;}
.ya3{bottom:433.226493pt;}
.y36{bottom:433.866493pt;}
.y103{bottom:434.026493pt;}
.y124{bottom:435.626492pt;}
.y134{bottom:437.066492pt;}
.y82{bottom:438.186491pt;}
.y65{bottom:438.506491pt;}
.y1e{bottom:447.146488pt;}
.y35{bottom:449.066487pt;}
.ya2{bottom:451.626486pt;}
.y102{bottom:452.426486pt;}
.y123{bottom:454.026485pt;}
.y81{bottom:456.586484pt;}
.y64{bottom:456.906484pt;}
.y133{bottom:463.466481pt;}
.ya1{bottom:470.026479pt;}
.y101{bottom:470.826478pt;}
.y122{bottom:472.426478pt;}
.y80{bottom:474.986477pt;}
.y63{bottom:475.306477pt;}
.y132{bottom:481.866474pt;}
.y34{bottom:483.146473pt;}
.yd8{bottom:488.586471pt;}
.y100{bottom:489.226471pt;}
.y121{bottom:490.826470pt;}
.y7f{bottom:493.386469pt;}
.y62{bottom:493.706469pt;}
.y33{bottom:498.506467pt;}
.ya0{bottom:506.986464pt;}
.yff{bottom:507.626464pt;}
.y131{bottom:508.266463pt;}
.y120{bottom:509.226463pt;}
.ybc{bottom:511.786462pt;}
.y61{bottom:512.106462pt;}
.y32{bottom:513.866461pt;}
.y9f{bottom:525.386457pt;}
.yd7{bottom:525.706456pt;}
.yfe{bottom:526.026456pt;}
.y11f{bottom:527.626456pt;}
.y31{bottom:529.066455pt;}
.ybb{bottom:530.186455pt;}
.y7e{bottom:530.506454pt;}
.y130{bottom:534.666453pt;}
.y1d{bottom:537.066452pt;}
.y9e{bottom:543.786449pt;}
.yd6{bottom:544.106449pt;}
.y30{bottom:544.426449pt;}
.y11e{bottom:546.026448pt;}
.y60{bottom:549.066447pt;}
.y2f{bottom:559.786443pt;}
.y12f{bottom:561.066442pt;}
.y9d{bottom:562.186442pt;}
.yd5{bottom:562.506442pt;}
.yfd{bottom:562.986441pt;}
.y11d{bottom:564.426441pt;}
.yba{bottom:567.306440pt;}
.y5f{bottom:567.466440pt;}
.y2e{bottom:575.146437pt;}
.y12e{bottom:579.466435pt;}
.y9c{bottom:580.586434pt;}
.yd4{bottom:580.906434pt;}
.yfc{bottom:581.386434pt;}
.y11c{bottom:582.826434pt;}
.y1c{bottom:584.906433pt;}
.yb9{bottom:585.706432pt;}
.y5e{bottom:585.866432pt;}
.y2d{bottom:590.506430pt;}
.y9b{bottom:598.986427pt;}
.yd3{bottom:599.306427pt;}
.y1b{bottom:599.626427pt;}
.yfb{bottom:599.786427pt;}
.yb8{bottom:604.106425pt;}
.y5d{bottom:604.266425pt;}
.y2c{bottom:605.866424pt;}
.y1a{bottom:614.346421pt;}
.y9a{bottom:617.386420pt;}
.yd2{bottom:617.706420pt;}
.yfa{bottom:618.186419pt;}
.y11b{bottom:620.426418pt;}
.y2b{bottom:621.066418pt;}
.yb7{bottom:622.506418pt;}
.y5c{bottom:622.666418pt;}
.y19{bottom:627.946415pt;}
.y12d{bottom:632.266414pt;}
.yd1{bottom:636.106412pt;}
.y2a{bottom:636.426412pt;}
.yf9{bottom:636.586412pt;}
.yb6{bottom:640.906410pt;}
.y5b{bottom:641.066410pt;}
.y12c{bottom:650.666406pt;}
.y29{bottom:651.786406pt;}
.y99{bottom:654.506405pt;}
.yf8{bottom:654.986405pt;}
.yb5{bottom:659.306403pt;}
.y5a{bottom:659.466403pt;}
.y11a{bottom:660.106403pt;}
.y28{bottom:667.146400pt;}
.yf7{bottom:673.386397pt;}
.y18{bottom:674.826397pt;}
.y12b{bottom:677.066396pt;}
.y7d{bottom:677.866396pt;}
.y119{bottom:678.506395pt;}
.y27{bottom:682.506394pt;}
.y98{bottom:691.466390pt;}
.yf6{bottom:691.786390pt;}
.yb4{bottom:696.266388pt;}
.y59{bottom:696.586388pt;}
.y118{bottom:696.906388pt;}
.y26{bottom:697.866388pt;}
.y12a{bottom:703.946385pt;}
.y97{bottom:709.866383pt;}
.yf5{bottom:710.186383pt;}
.y25{bottom:713.066381pt;}
.y7c{bottom:714.986381pt;}
.y117{bottom:715.306381pt;}
.y17{bottom:721.706378pt;}
.y96{bottom:728.266375pt;}
.y24{bottom:728.426375pt;}
.yf4{bottom:728.586375pt;}
.y129{bottom:730.826374pt;}
.y7b{bottom:733.386373pt;}
.y58{bottom:733.706373pt;}
.y16{bottom:736.586372pt;}
.y23{bottom:743.786369pt;}
.y95{bottom:746.666368pt;}
.yf3{bottom:746.986368pt;}
.y7a{bottom:751.786366pt;}
.y57{bottom:752.106366pt;}
.y20{bottom:753.707200pt;}
.y22{bottom:759.146363pt;}
.y15{bottom:760.106363pt;}
.yd0{bottom:765.066361pt;}
.y79{bottom:770.186359pt;}
.y56{bottom:770.506358pt;}
.ycf{bottom:783.466353pt;}
.y12{bottom:783.627200pt;}
.y94{bottom:783.786353pt;}
.yf2{bottom:784.106353pt;}
.y14{bottom:787.626352pt;}
.y78{bottom:788.586351pt;}
.y55{bottom:788.906351pt;}
.yce{bottom:801.866346pt;}
.y93{bottom:802.186346pt;}
.yf1{bottom:802.506346pt;}
.y77{bottom:806.986344pt;}
.y54{bottom:807.306344pt;}
.ycd{bottom:820.266339pt;}
.y92{bottom:820.586338pt;}
.yf0{bottom:820.906338pt;}
.y11{bottom:821.706338pt;}
.y76{bottom:825.386337pt;}
.y53{bottom:825.706336pt;}
.ycc{bottom:838.666331pt;}
.y91{bottom:838.986331pt;}
.yef{bottom:839.306331pt;}
.y10{bottom:840.106331pt;}
.y75{bottom:843.786329pt;}
.y52{bottom:844.106329pt;}
.y116{bottom:844.266329pt;}
.ycb{bottom:857.066324pt;}
.y90{bottom:857.386324pt;}
.yee{bottom:857.706324pt;}
.yf{bottom:858.506323pt;}
.y51{bottom:862.506322pt;}
.y115{bottom:862.666322pt;}
.y8f{bottom:875.786316pt;}
.yed{bottom:876.106316pt;}
.y50{bottom:880.906314pt;}
.y114{bottom:881.066314pt;}
.ye{bottom:886.186312pt;}
.y8e{bottom:894.186309pt;}
.yec{bottom:894.506309pt;}
.y4f{bottom:899.306307pt;}
.y113{bottom:899.466307pt;}
.yd{bottom:910.666302pt;}
.y8d{bottom:912.586302pt;}
.yeb{bottom:912.906302pt;}
.yb3{bottom:917.706300pt;}
.y74{bottom:917.866300pt;}
.y8c{bottom:930.986294pt;}
.yea{bottom:931.306294pt;}
.yca{bottom:933.386293pt;}
.yb2{bottom:935.946292pt;}
.y4e{bottom:936.266292pt;}
.ye9{bottom:949.706287pt;}
.y44{bottom:952.906286pt;}
.yb1{bottom:954.346285pt;}
.y4d{bottom:954.666285pt;}
.y8b{bottom:967.946279pt;}
.ye8{bottom:968.106279pt;}
.y43{bottom:970.506278pt;}
.ye2{bottom:972.746278pt;}
.y4c{bottom:973.066277pt;}
.y42{bottom:988.106271pt;}
.y4b{bottom:991.466270pt;}
.y8a{bottom:1007.306264pt;}
.y4a{bottom:1009.866263pt;}
.y41{bottom:1013.226261pt;}
.y45{bottom:1021.866258pt;}
.y4{bottom:1028.746255pt;}
.y7{bottom:1053.866245pt;}
.y3{bottom:1056.906244pt;}
.y2{bottom:1072.266238pt;}
.y1{bottom:1087.626232pt;}
.h3{height:5.280000pt;}
.hb{height:17.920000pt;}
.h6{height:18.080000pt;}
.h5{height:30.778113pt;}
.hf{height:32.554674pt;}
.h4{height:32.624987pt;}
.hd{height:34.453111pt;}
.he{height:34.968736pt;}
.h12{height:36.260610pt;}
.h10{height:36.883110pt;}
.h1{height:36.909048pt;}
.h7{height:38.128110pt;}
.h13{height:39.243734pt;}
.hc{height:40.019984pt;}
.h2{height:42.262483pt;}
.h9{height:43.374983pt;}
.ha{height:44.468732pt;}
.h15{height:49.013730pt;}
.h14{height:50.748730pt;}
.h11{height:52.028417pt;}
.h8{height:57.688727pt;}
.h0{height:1122.666667pt;}
.w5{width:3.360000pt;}
.w3{width:4.000000pt;}
.w8{width:7.200000pt;}
.w7{width:7.360000pt;}
.w2{width:8.640000pt;}
.w6{width:29.120000pt;}
.w4{width:49.440000pt;}
.w9{width:62.560000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x18{left:56.479977pt;}
.x16{left:61.919975pt;}
.x13{left:71.679971pt;}
.x1a{left:75.199970pt;}
.x15{left:79.519999pt;}
.x14{left:80.959968pt;}
.xb{left:84.000000pt;}
.x1{left:95.999962pt;}
.x19{left:110.559956pt;}
.x17{left:112.319955pt;}
.x25{left:115.839954pt;}
.x4{left:117.919953pt;}
.x7{left:120.159952pt;}
.x8{left:125.119708pt;}
.xc{left:133.440000pt;}
.xd{left:136.800000pt;}
.xe{left:165.919934pt;}
.xf{left:168.480000pt;}
.x1b{left:186.879934pt;}
.x1c{left:187.839925pt;}
.x10{left:209.120000pt;}
.x1d{left:225.599910pt;}
.x1f{left:226.559909pt;}
.x11{left:235.520000pt;}
.xa{left:254.559128pt;}
.x21{left:265.119894pt;}
.x2{left:268.959892pt;}
.x12{left:297.920000pt;}
.x9{left:327.519869pt;}
.x20{left:353.919858pt;}
.x5{left:354.879858pt;}
.x22{left:372.799851pt;}
.x1e{left:396.799841pt;}
.x23{left:458.239817pt;}
.x3{left:592.479763pt;}
.x24{left:651.040376pt;}
.x6{left:693.440000pt;}
}




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