
    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_cb37d253c5ed902acacaebb8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.690000;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_e60bc0322a18407265d00653.woff')format("woff");}.ff2{font-family:ff2;line-height:0.733887;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_4f1f19317d5c45771a2ad308.woff')format("woff");}.ff3{font-family:ff3;line-height:1.188565;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_4b3d639dfcf33fe162f9637e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.181818;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_944a7929fe21e62cc479674d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.181818;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_7d0f59e7576a0522a03f33e5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.181818;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_67ed1742fc1d72d8dbfcf350.woff')format("woff");}.ff7{font-family:ff7;line-height:1.181818;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_f4c10fe55f4713bcf0c21e11.woff')format("woff");}.ff8{font-family:ff8;line-height:1.181818;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_bd2eff3581b787ed0ab8f134.woff')format("woff");}.ff9{font-family:ff9;line-height:0.946000;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_2bcd934abb4ba4ffa9c6533a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.981000;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_964f2598b68e331c5a264dd4.woff')format("woff");}.ffb{font-family:ffb;line-height:1.181818;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_645392a3ed6de425ab45bc09.woff')format("woff");}.ffc{font-family:ffc;line-height:1.181818;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:176.533710px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.006392px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-130.192785px;}
.ws11{word-spacing:-50.941607px;}
.ws3{word-spacing:-47.653147px;}
.ws2{word-spacing:-41.009518px;}
.wsd{word-spacing:-38.754661px;}
.ws4{word-spacing:-35.438618px;}
.wsa{word-spacing:-33.382664px;}
.ws8{word-spacing:-30.375958px;}
.ws7{word-spacing:-29.218962px;}
.ws10{word-spacing:-27.205431px;}
.ws16{word-spacing:-27.199139px;}
.ws9{word-spacing:-26.809084px;}
.ws1b{word-spacing:-25.692997px;}
.wse{word-spacing:-25.428645px;}
.ws13{word-spacing:-24.300768px;}
.ws18{word-spacing:-23.429507px;}
.wsf{word-spacing:-23.176897px;}
.ws1a{word-spacing:-22.676016px;}
.ws15{word-spacing:-22.111165px;}
.ws17{word-spacing:-22.096667px;}
.wsc{word-spacing:-22.044696px;}
.ws12{word-spacing:-20.035861px;}
.wsb{word-spacing:-19.456114px;}
.ws19{word-spacing:-18.582414px;}
.ws14{word-spacing:-18.230544px;}
.ws1{word-spacing:-0.091043px;}
.ws1c{word-spacing:0.000000px;}
.ws6{word-spacing:1498.125288px;}
.ws5{word-spacing:1875.542829px;}
._20{margin-left:-35.448940px;}
._5{margin-left:-17.161282px;}
._31{margin-left:-15.141181px;}
._0{margin-left:-9.394690px;}
._7{margin-left:-7.892235px;}
._2{margin-left:-6.286738px;}
._3{margin-left:-5.283258px;}
._4{margin-left:-3.635599px;}
._6{margin-left:-1.679514px;}
._9{width:1.745341px;}
._1{width:3.307420px;}
._14{width:4.495818px;}
._e{width:5.575185px;}
._c{width:7.641646px;}
._41{width:9.015129px;}
._32{width:10.412253px;}
._a{width:11.529330px;}
._26{width:13.054622px;}
._f{width:14.119402px;}
._36{width:15.446346px;}
._d{width:17.256064px;}
._b{width:19.242379px;}
._8{width:20.749518px;}
._2d{width:22.318609px;}
._1f{width:24.268041px;}
._3d{width:25.650079px;}
._23{width:26.946265px;}
._3f{width:28.238406px;}
._1a{width:29.242676px;}
._10{width:31.416866px;}
._11{width:32.686831px;}
._3c{width:36.249878px;}
._24{width:38.317027px;}
._25{width:39.806854px;}
._12{width:41.258867px;}
._3e{width:42.406958px;}
._2a{width:46.354679px;}
._29{width:47.453222px;}
._3a{width:48.804069px;}
._13{width:52.007675px;}
._1c{width:53.149506px;}
._3b{width:55.293298px;}
._35{width:56.852202px;}
._34{width:60.229209px;}
._1b{width:72.193301px;}
._2b{width:75.449359px;}
._44{width:78.100823px;}
._28{width:82.160976px;}
._27{width:84.137769px;}
._45{width:86.279154px;}
._15{width:88.214252px;}
._22{width:89.769127px;}
._18{width:95.081947px;}
._19{width:96.321517px;}
._1e{width:98.934964px;}
._1d{width:100.596345px;}
._39{width:104.017334px;}
._33{width:124.529070px;}
._2c{width:132.287225px;}
._47{width:135.967923px;}
._46{width:137.165248px;}
._40{width:138.295283px;}
._21{width:198.078916px;}
._37{width:221.671406px;}
._2f{width:232.684398px;}
._2e{width:251.412829px;}
._38{width:294.164288px;}
._42{width:357.389187px;}
._43{width:415.707408px;}
._30{width:430.666332px;}
._17{width:1967.845702px;}
._16{width:2245.052459px;}
.fc3{color:transparent;}
.fc2{color:rgb(10,16,12);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:72.002271px;}
.fsb{font-size:78.381140px;}
.fs16{font-size:78.565927px;}
.fs15{font-size:78.617475px;}
.fs18{font-size:80.134881px;}
.fs17{font-size:83.304914px;}
.fs14{font-size:86.402730px;}
.fs1{font-size:91.042553px;}
.fs19{font-size:91.352877px;}
.fse{font-size:95.988028px;}
.fs13{font-size:96.708050px;}
.fs10{font-size:96.730421px;}
.fsd{font-size:97.563077px;}
.fsf{font-size:99.948148px;}
.fs8{font-size:108.003407px;}
.fs5{font-size:126.003974px;}
.fs11{font-size:129.758553px;}
.fsc{font-size:137.794351px;}
.fs6{font-size:140.100450px;}
.fsa{font-size:143.959541px;}
.fs2{font-size:165.211451px;}
.fs7{font-size:167.990308px;}
.fs12{font-size:180.005678px;}
.fs4{font-size:191.976055px;}
.fs3{font-size:299.979480px;}
.fs0{font-size:332.356076px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.000119px;}
.y61{bottom:4.956164px;}
.ycf{bottom:5.519039px;}
.yc1{bottom:5.798557px;}
.yc5{bottom:5.998315px;}
.y98{bottom:6.363289px;}
.y14{bottom:9.191503px;}
.y9e{bottom:9.423126px;}
.y5{bottom:10.795444px;}
.y60{bottom:31.899681px;}
.yce{bottom:32.648034px;}
.yc0{bottom:33.218029px;}
.yc4{bottom:35.071691px;}
.y97{bottom:40.218936px;}
.y9d{bottom:54.623051px;}
.y13{bottom:57.171109px;}
.y5f{bottom:58.843198px;}
.ycd{bottom:59.777029px;}
.ybf{bottom:60.637501px;}
.yc3{bottom:64.145067px;}
.y96{bottom:74.074584px;}
.y5e{bottom:85.786714px;}
.ycc{bottom:86.906024px;}
.y9c{bottom:99.822975px;}
.y12{bottom:105.150715px;}
.y95{bottom:107.930231px;}
.y5d{bottom:112.730231px;}
.ycb{bottom:114.035018px;}
.ye0{bottom:129.728145px;}
.y94{bottom:141.785878px;}
.y9b{bottom:145.022900px;}
.y11{bottom:153.130321px;}
.ydf{bottom:161.229138px;}
.y93{bottom:175.641525px;}
.y9a{bottom:190.222825px;}
.yde{bottom:192.730132px;}
.y2{bottom:193.796160px;}
.y92{bottom:209.497172px;}
.y3{bottom:211.337232px;}
.ydd{bottom:224.231126px;}
.y99{bottom:242.190109px;}
.y91{bottom:243.352820px;}
.ydc{bottom:255.732119px;}
.y90{bottom:277.208467px;}
.y43{bottom:281.445527px;}
.y42{bottom:325.321911px;}
.y5c{bottom:343.350105px;}
.y41{bottom:369.198295px;}
.y40{bottom:413.074679px;}
.y3f{bottom:500.827447px;}
.y7a{bottom:518.721542px;}
.y3e{bottom:544.703830px;}
.y79{bottom:565.973032px;}
.y3d{bottom:588.580214px;}
.y78{bottom:613.224523px;}
.y77{bottom:660.476013px;}
.y3c{bottom:676.332982px;}
.y3b{bottom:720.209366px;}
.y76{bottom:754.978994px;}
.y3a{bottom:764.085750px;}
.y75{bottom:802.230484px;}
.y39{bottom:807.962134px;}
.y74{bottom:849.481974px;}
.y38{bottom:851.838518px;}
.y37{bottom:895.714902px;}
.y73{bottom:896.733465px;}
.y36{bottom:939.591286px;}
.y72{bottom:943.984955px;}
.y1b{bottom:1007.789523px;}
.y35{bottom:1027.344054px;}
.y34{bottom:1071.220437px;}
.y33{bottom:1115.096821px;}
.y71{bottom:1151.436189px;}
.y32{bottom:1158.973205px;}
.y4{bottom:1171.710070px;}
.y70{bottom:1195.312573px;}
.y6f{bottom:1239.188957px;}
.y31{bottom:1246.725973px;}
.y6e{bottom:1283.065341px;}
.y30{bottom:1290.602357px;}
.y6d{bottom:1326.941725px;}
.y2f{bottom:1334.478741px;}
.y6c{bottom:1370.818108px;}
.y2e{bottom:1378.355125px;}
.y6b{bottom:1431.588988px;}
.y2d{bottom:1466.107893px;}
.y6a{bottom:1475.465372px;}
.y2c{bottom:1509.984277px;}
.y69{bottom:1519.341756px;}
.y2b{bottom:1553.860661px;}
.y68{bottom:1563.218140px;}
.y2a{bottom:1597.737045px;}
.y67{bottom:1607.094524px;}
.y29{bottom:1641.613428px;}
.y66{bottom:1650.970908px;}
.y65{bottom:1694.847291px;}
.y28{bottom:1729.366196px;}
.y64{bottom:1738.723675px;}
.y27{bottom:1773.242580px;}
.y63{bottom:1782.600059px;}
.y26{bottom:1817.118964px;}
.y25{bottom:1860.995348px;}
.y4a{bottom:1938.922709px;}
.y44{bottom:1969.486247px;}
.y49{bottom:1982.799093px;}
.y48{bottom:2026.675477px;}
.y8e{bottom:2111.610689px;}
.y51{bottom:2145.218794px;}
.y8d{bottom:2146.486789px;}
.yb1{bottom:2162.521632px;}
.y8c{bottom:2181.362889px;}
.y50{bottom:2189.095178px;}
.yb0{bottom:2189.522484px;}
.y8f{bottom:2194.830028px;}
.y8b{bottom:2216.238989px;}
.yaf{bottom:2216.523336px;}
.y4f{bottom:2232.971562px;}
.y8a{bottom:2251.115089px;}
.y4e{bottom:2276.847945px;}
.y89{bottom:2285.991189px;}
.y4d{bottom:2320.724329px;}
.y88{bottom:2320.867289px;}
.y87{bottom:2355.743389px;}
.yae{bottom:2361.197535px;}
.y4c{bottom:2364.600713px;}
.yad{bottom:2388.198387px;}
.y86{bottom:2390.619489px;}
.y4b{bottom:2408.477097px;}
.yac{bottom:2415.199239px;}
.y85{bottom:2425.495589px;}
.yab{bottom:2442.200090px;}
.y62{bottom:2478.264572px;}
.ya1{bottom:2534.221966px;}
.yaa{bottom:2589.858765px;}
.y5a{bottom:2614.203015px;}
.yca{bottom:2614.950010px;}
.ya9{bottom:2619.109688px;}
.ybb{bottom:2633.584688px;}
.yd7{bottom:2636.320400px;}
.ya8{bottom:2648.360611px;}
.y59{bottom:2658.079399px;}
.yba{bottom:2662.835610px;}
.yd6{bottom:2665.571322px;}
.ya7{bottom:2677.611533px;}
.yb9{bottom:2692.086533px;}
.yd5{bottom:2694.822245px;}
.y58{bottom:2701.955783px;}
.yb8{bottom:2721.337456px;}
.yd4{bottom:2724.073167px;}
.y57{bottom:2745.832166px;}
.y56{bottom:2789.708550px;}
.ya6{bottom:2822.898276px;}
.y55{bottom:2833.584934px;}
.ydb{bottom:2837.780999px;}
.yd3{bottom:2851.687223px;}
.ya5{bottom:2852.149198px;}
.yc9{bottom:2857.817950px;}
.yda{bottom:2867.031922px;}
.yb7{bottom:2871.028078px;}
.y54{bottom:2877.461318px;}
.yd2{bottom:2880.938145px;}
.ya4{bottom:2881.400121px;}
.yc8{bottom:2887.068873px;}
.yd9{bottom:2896.282844px;}
.yb6{bottom:2900.279000px;}
.yd1{bottom:2910.189068px;}
.ya3{bottom:2910.651044px;}
.yc7{bottom:2916.319796px;}
.y53{bottom:2921.337702px;}
.yd8{bottom:2925.533767px;}
.yb5{bottom:2929.529923px;}
.yd0{bottom:2939.439990px;}
.yc6{bottom:2945.570718px;}
.yb4{bottom:2958.780846px;}
.y52{bottom:2965.214086px;}
.y5b{bottom:3000.676930px;}
.yc2{bottom:3006.629994px;}
.ybe{bottom:3017.789993px;}
.ybd{bottom:3037.897230px;}
.ya0{bottom:3041.366787px;}
.yb3{bottom:3053.160473px;}
.ya2{bottom:3069.229886px;}
.ybc{bottom:3071.648294px;}
.yb2{bottom:3086.911538px;}
.y9f{bottom:3104.368774px;}
.y1c{bottom:3137.417062px;}
.y84{bottom:3284.410344px;}
.y83{bottom:3318.161408px;}
.y82{bottom:3351.912473px;}
.y81{bottom:3385.663537px;}
.yf{bottom:3398.245361px;}
.ye{bottom:3442.121745px;}
.yd{bottom:3485.998129px;}
.y80{bottom:3510.973986px;}
.yc{bottom:3529.874513px;}
.y7f{bottom:3544.725051px;}
.yb{bottom:3573.750897px;}
.y7e{bottom:3578.476115px;}
.y7d{bottom:3612.227180px;}
.y7c{bottom:3645.978244px;}
.y7b{bottom:3679.729309px;}
.ya{bottom:3683.254404px;}
.y1a{bottom:3844.568986px;}
.y10{bottom:3864.509958px;}
.y19{bottom:3888.445370px;}
.y18{bottom:3932.321754px;}
.y17{bottom:3976.198138px;}
.y16{bottom:4020.074522px;}
.y15{bottom:4129.935617px;}
.y9{bottom:4135.314017px;}
.y46{bottom:4335.473510px;}
.y22{bottom:4359.324230px;}
.y45{bottom:4372.599682px;}
.y24{bottom:4376.371722px;}
.y21{bottom:4396.450401px;}
.y47{bottom:4412.313404px;}
.y23{bottom:4415.126008px;}
.y1e{bottom:4484.562159px;}
.y20{bottom:4505.170760px;}
.y1d{bottom:4547.564146px;}
.y1{bottom:4558.589929px;}
.y1f{bottom:4577.827609px;}
.y8{bottom:4717.432802px;}
.y7{bottom:4822.061102px;}
.h5{height:49.679998px;}
.h4{height:65.925833px;}
.h10{height:69.215251px;}
.h14{height:74.818361px;}
.h22{height:74.994748px;}
.h20{height:75.043954px;}
.h13{height:75.347211px;}
.h26{height:76.492386px;}
.h21{height:79.199997px;}
.h24{height:79.518327px;}
.h1f{height:82.475333px;}
.h23{height:83.879997px;}
.h28{height:87.200473px;}
.h27{height:87.816846px;}
.h17{height:91.624935px;}
.h1e{height:92.312230px;}
.h1a{height:92.333583px;}
.h16{height:93.128392px;}
.h18{height:95.405050px;}
.h1c{height:96.929639px;}
.hf{height:103.094161px;}
.he{height:103.822877px;}
.ha{height:120.276521px;}
.h15{height:131.530971px;}
.h12{height:131.759995px;}
.h25{height:132.839994px;}
.hc{height:133.732247px;}
.h11{height:137.415925px;}
.h1d{height:141.664468px;}
.h6{height:158.816548px;}
.hd{height:161.487842px;}
.h9{height:184.545164px;}
.hb{height:185.399992px;}
.h1b{height:220.679991px;}
.h3{height:242.459543px;}
.h8{height:286.344049px;}
.h19{height:300.239987px;}
.h2{height:430.919982px;}
.h7{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w3{width:61.199997px;}
.wb{width:141.119994px;}
.w9{width:194.039992px;}
.wa{width:206.639991px;}
.w7{width:379.799984px;}
.w2{width:722.159970px;}
.w8{width:920.879962px;}
.w6{width:1268.279947px;}
.w5{width:2051.999915px;}
.w4{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x29{left:29.941978px;}
.x9{left:195.174352px;}
.x28{left:196.559992px;}
.x2d{left:214.791647px;}
.x1b{left:220.488586px;}
.xa{left:223.919991px;}
.x2f{left:235.392089px;}
.x1a{left:263.157815px;}
.x2{left:267.303985px;}
.x2e{left:270.585187px;}
.x7{left:287.139430px;}
.x8{left:289.873529px;}
.x3{left:532.945875px;}
.x31{left:553.880897px;}
.x30{left:567.670800px;}
.x32{left:595.193969px;}
.x4{left:599.039975px;}
.x5{left:606.944148px;}
.x26{left:617.192722px;}
.xf{left:764.150278px;}
.x6{left:799.131850px;}
.x19{left:805.591468px;}
.x33{left:913.845814px;}
.xe{left:927.904074px;}
.x16{left:970.823339px;}
.x14{left:987.522563px;}
.x15{left:1116.607650px;}
.x13{left:1130.296598px;}
.x17{left:1187.697335px;}
.x11{left:1211.833532px;}
.x18{left:1241.241992px;}
.x37{left:1265.433355px;}
.x34{left:1285.163658px;}
.x38{left:1313.279945px;}
.x10{left:1347.885492px;}
.x39{left:1579.181406px;}
.x35{left:1583.999934px;}
.x27{left:1682.639930px;}
.x12{left:1831.618031px;}
.x3a{left:1867.789074px;}
.x36{left:1871.999922px;}
.x20{left:2162.879910px;}
.x3b{left:2179.611989px;}
.x23{left:2210.171056px;}
.x21{left:2215.761244px;}
.x1f{left:2222.110095px;}
.x1c{left:2235.994899px;}
.x2c{left:2248.981826px;}
.x2a{left:2264.304848px;}
.xd{left:2299.307412px;}
.x24{left:2350.292590px;}
.x25{left:2442.429042px;}
.x2b{left:2457.670327px;}
.xc{left:2506.303372px;}
.xb{left:2586.184704px;}
.x1{left:2845.439881px;}
.x22{left:2969.919020px;}
.x1e{left:2990.941039px;}
.x1d{left:3005.397307px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:156.918853pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.005682pt;}
.ws0{word-spacing:-115.726920pt;}
.ws11{word-spacing:-45.281428pt;}
.ws3{word-spacing:-42.358353pt;}
.ws2{word-spacing:-36.452905pt;}
.wsd{word-spacing:-34.448588pt;}
.ws4{word-spacing:-31.500994pt;}
.wsa{word-spacing:-29.673479pt;}
.ws8{word-spacing:-27.000852pt;}
.ws7{word-spacing:-25.972411pt;}
.ws10{word-spacing:-24.182605pt;}
.ws16{word-spacing:-24.177013pt;}
.ws9{word-spacing:-23.830297pt;}
.ws1b{word-spacing:-22.838219pt;}
.wse{word-spacing:-22.603240pt;}
.ws13{word-spacing:-21.600682pt;}
.ws18{word-spacing:-20.826229pt;}
.wsf{word-spacing:-20.601686pt;}
.ws1a{word-spacing:-20.156458pt;}
.ws15{word-spacing:-19.654369pt;}
.ws17{word-spacing:-19.641482pt;}
.wsc{word-spacing:-19.595285pt;}
.ws12{word-spacing:-17.809654pt;}
.wsb{word-spacing:-17.294323pt;}
.ws19{word-spacing:-16.517702pt;}
.ws14{word-spacing:-16.204928pt;}
.ws1{word-spacing:-0.080927pt;}
.ws1c{word-spacing:0.000000pt;}
.ws6{word-spacing:1331.666923pt;}
.ws5{word-spacing:1667.149181pt;}
._20{margin-left:-31.510169pt;}
._5{margin-left:-15.254473pt;}
._31{margin-left:-13.458827pt;}
._0{margin-left:-8.350836pt;}
._7{margin-left:-7.015320pt;}
._2{margin-left:-5.588211pt;}
._3{margin-left:-4.696229pt;}
._4{margin-left:-3.231643pt;}
._6{margin-left:-1.492901pt;}
._9{width:1.551415pt;}
._1{width:2.939929pt;}
._14{width:3.996283pt;}
._e{width:4.955720pt;}
._c{width:6.792574pt;}
._41{width:8.013448pt;}
._32{width:9.255336pt;}
._a{width:10.248294pt;}
._26{width:11.604108pt;}
._f{width:12.550580pt;}
._36{width:13.730085pt;}
._d{width:15.338724pt;}
._b{width:17.104337pt;}
._8{width:18.444016pt;}
._2d{width:19.838764pt;}
._1f{width:21.571592pt;}
._3d{width:22.800070pt;}
._23{width:23.952235pt;}
._3f{width:25.100805pt;}
._1a{width:25.993490pt;}
._10{width:27.926103pt;}
._11{width:29.054961pt;}
._3c{width:32.222114pt;}
._24{width:34.059579pt;}
._25{width:35.383870pt;}
._12{width:36.674548pt;}
._3e{width:37.695074pt;}
._2a{width:41.204159pt;}
._29{width:42.180642pt;}
._3a{width:43.381395pt;}
._13{width:46.229044pt;}
._1c{width:47.244005pt;}
._3b{width:49.149598pt;}
._35{width:50.535291pt;}
._34{width:53.537075pt;}
._1b{width:64.171823pt;}
._2b{width:67.066097pt;}
._44{width:69.422954pt;}
._28{width:73.031979pt;}
._27{width:74.789128pt;}
._45{width:76.692582pt;}
._15{width:78.412668pt;}
._22{width:79.794779pt;}
._18{width:84.517287pt;}
._19{width:85.619127pt;}
._1e{width:87.942190pt;}
._1d{width:89.418974pt;}
._39{width:92.459853pt;}
._33{width:110.692507pt;}
._2c{width:117.588644pt;}
._47{width:120.860376pt;}
._46{width:121.924665pt;}
._40{width:122.929141pt;}
._21{width:176.070148pt;}
._37{width:197.041250pt;}
._2f{width:206.830576pt;}
._2e{width:223.478071pt;}
._38{width:261.479367pt;}
._42{width:317.679278pt;}
._43{width:369.517696pt;}
._30{width:382.814518pt;}
._17{width:1749.196180pt;}
._16{width:1995.602185pt;}
.fs9{font-size:64.002019pt;}
.fsb{font-size:69.672125pt;}
.fs16{font-size:69.836379pt;}
.fs15{font-size:69.882200pt;}
.fs18{font-size:71.231005pt;}
.fs17{font-size:74.048813pt;}
.fs14{font-size:76.802426pt;}
.fs1{font-size:80.926714pt;}
.fs19{font-size:81.202557pt;}
.fse{font-size:85.322691pt;}
.fs13{font-size:85.962711pt;}
.fs10{font-size:85.982596pt;}
.fsd{font-size:86.722735pt;}
.fsf{font-size:88.842798pt;}
.fs8{font-size:96.003028pt;}
.fs5{font-size:112.003533pt;}
.fs11{font-size:115.340936pt;}
.fsc{font-size:122.483867pt;}
.fs6{font-size:124.533733pt;}
.fsa{font-size:127.964036pt;}
.fs2{font-size:146.854624pt;}
.fs7{font-size:149.324718pt;}
.fs12{font-size:160.005047pt;}
.fs4{font-size:170.645382pt;}
.fs3{font-size:266.648426pt;}
.fs0{font-size:295.427623pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.000106pt;}
.y61{bottom:4.405479pt;}
.ycf{bottom:4.905813pt;}
.yc1{bottom:5.154273pt;}
.yc5{bottom:5.331835pt;}
.y98{bottom:5.656257pt;}
.y14{bottom:8.170225pt;}
.y9e{bottom:8.376112pt;}
.y5{bottom:9.595950pt;}
.y60{bottom:28.355272pt;}
.yce{bottom:29.020475pt;}
.yc0{bottom:29.527137pt;}
.yc4{bottom:31.174836pt;}
.y97{bottom:35.750166pt;}
.y9d{bottom:48.553823pt;}
.y13{bottom:50.818764pt;}
.y5f{bottom:52.305064pt;}
.ycd{bottom:53.135137pt;}
.ybf{bottom:53.900001pt;}
.yc3{bottom:57.017838pt;}
.y96{bottom:65.844074pt;}
.y5e{bottom:76.254857pt;}
.ycc{bottom:77.249799pt;}
.y9c{bottom:88.731534pt;}
.y12{bottom:93.467302pt;}
.y95{bottom:95.937983pt;}
.y5d{bottom:100.204650pt;}
.ycb{bottom:101.364461pt;}
.ye0{bottom:115.313907pt;}
.y94{bottom:126.031892pt;}
.y9b{bottom:128.909245pt;}
.y11{bottom:136.115841pt;}
.ydf{bottom:143.314790pt;}
.y93{bottom:156.125800pt;}
.y9a{bottom:169.086956pt;}
.yde{bottom:171.315673pt;}
.y2{bottom:172.263253pt;}
.y92{bottom:186.219709pt;}
.y3{bottom:187.855318pt;}
.ydd{bottom:199.316556pt;}
.y99{bottom:215.280097pt;}
.y91{bottom:216.313617pt;}
.ydc{bottom:227.317439pt;}
.y90{bottom:246.407526pt;}
.y43{bottom:250.173802pt;}
.y42{bottom:289.175032pt;}
.y5c{bottom:305.200093pt;}
.y41{bottom:328.176262pt;}
.y40{bottom:367.177492pt;}
.y3f{bottom:445.179952pt;}
.y7a{bottom:461.085815pt;}
.y3e{bottom:484.181183pt;}
.y79{bottom:503.087140pt;}
.y3d{bottom:523.182413pt;}
.y78{bottom:545.088464pt;}
.y77{bottom:587.089789pt;}
.y3c{bottom:601.184873pt;}
.y3b{bottom:640.186103pt;}
.y76{bottom:671.092439pt;}
.y3a{bottom:679.187333pt;}
.y75{bottom:713.093764pt;}
.y39{bottom:718.188564pt;}
.y74{bottom:755.095088pt;}
.y38{bottom:757.189794pt;}
.y37{bottom:796.191024pt;}
.y73{bottom:797.096413pt;}
.y36{bottom:835.192254pt;}
.y72{bottom:839.097738pt;}
.y1b{bottom:895.812909pt;}
.y35{bottom:913.194714pt;}
.y34{bottom:952.195944pt;}
.y33{bottom:991.197175pt;}
.y71{bottom:1023.498835pt;}
.y32{bottom:1030.198405pt;}
.y4{bottom:1041.520063pt;}
.y70{bottom:1062.500065pt;}
.y6f{bottom:1101.501295pt;}
.y31{bottom:1108.200865pt;}
.y6e{bottom:1140.502525pt;}
.y30{bottom:1147.202095pt;}
.y6d{bottom:1179.503755pt;}
.y2f{bottom:1186.203325pt;}
.y6c{bottom:1218.504985pt;}
.y2e{bottom:1225.204555pt;}
.y6b{bottom:1272.523545pt;}
.y2d{bottom:1303.207016pt;}
.y6a{bottom:1311.524775pt;}
.y2c{bottom:1342.208246pt;}
.y69{bottom:1350.526005pt;}
.y2b{bottom:1381.209476pt;}
.y68{bottom:1389.527235pt;}
.y2a{bottom:1420.210706pt;}
.y67{bottom:1428.528465pt;}
.y29{bottom:1459.211936pt;}
.y66{bottom:1467.529696pt;}
.y65{bottom:1506.530926pt;}
.y28{bottom:1537.214397pt;}
.y64{bottom:1545.532156pt;}
.y27{bottom:1576.215627pt;}
.y63{bottom:1584.533386pt;}
.y26{bottom:1615.216857pt;}
.y25{bottom:1654.218087pt;}
.y4a{bottom:1723.486853pt;}
.y44{bottom:1750.654442pt;}
.y49{bottom:1762.488083pt;}
.y48{bottom:1801.489313pt;}
.y8e{bottom:1876.987279pt;}
.y51{bottom:1906.861150pt;}
.y8d{bottom:1907.988257pt;}
.yb1{bottom:1922.241451pt;}
.y8c{bottom:1938.989235pt;}
.y50{bottom:1945.862380pt;}
.yb0{bottom:1946.242208pt;}
.y8f{bottom:1950.960025pt;}
.y8b{bottom:1969.990212pt;}
.yaf{bottom:1970.242965pt;}
.y4f{bottom:1984.863610pt;}
.y8a{bottom:2000.991190pt;}
.y4e{bottom:2023.864840pt;}
.y89{bottom:2031.992168pt;}
.y4d{bottom:2062.866071pt;}
.y88{bottom:2062.993146pt;}
.y87{bottom:2093.994124pt;}
.yae{bottom:2098.842254pt;}
.y4c{bottom:2101.867301pt;}
.yad{bottom:2122.843011pt;}
.y86{bottom:2124.995102pt;}
.y4b{bottom:2140.868531pt;}
.yac{bottom:2146.843768pt;}
.y85{bottom:2155.996079pt;}
.yab{bottom:2170.844525pt;}
.y62{bottom:2202.901842pt;}
.ya1{bottom:2252.641747pt;}
.yaa{bottom:2302.096680pt;}
.y5a{bottom:2323.736013pt;}
.yca{bottom:2324.400009pt;}
.ya9{bottom:2328.097501pt;}
.ybb{bottom:2340.964167pt;}
.yd7{bottom:2343.395911pt;}
.ya8{bottom:2354.098321pt;}
.y59{bottom:2362.737243pt;}
.yba{bottom:2366.964987pt;}
.yd6{bottom:2369.396731pt;}
.ya7{bottom:2380.099141pt;}
.yb9{bottom:2392.965807pt;}
.yd5{bottom:2395.397551pt;}
.y58{bottom:2401.738473pt;}
.yb8{bottom:2418.966627pt;}
.yd4{bottom:2421.398371pt;}
.y57{bottom:2440.739703pt;}
.y56{bottom:2479.740934pt;}
.ya6{bottom:2509.242912pt;}
.y55{bottom:2518.742164pt;}
.ydb{bottom:2522.471999pt;}
.yd3{bottom:2534.833087pt;}
.ya5{bottom:2535.243732pt;}
.yc9{bottom:2540.282623pt;}
.yda{bottom:2548.472819pt;}
.yb7{bottom:2552.024958pt;}
.y54{bottom:2557.743394pt;}
.yd2{bottom:2560.833907pt;}
.ya4{bottom:2561.244552pt;}
.yc8{bottom:2566.283443pt;}
.yd9{bottom:2574.473639pt;}
.yb6{bottom:2578.025778pt;}
.yd1{bottom:2586.834727pt;}
.ya3{bottom:2587.245372pt;}
.yc7{bottom:2592.284263pt;}
.y53{bottom:2596.744624pt;}
.yd8{bottom:2600.474460pt;}
.yb5{bottom:2604.026598pt;}
.yd0{bottom:2612.835547pt;}
.yc6{bottom:2618.285083pt;}
.yb4{bottom:2630.027418pt;}
.y52{bottom:2635.745854pt;}
.y5b{bottom:2667.268383pt;}
.yc2{bottom:2672.559995pt;}
.ybe{bottom:2682.479994pt;}
.ybd{bottom:2700.353093pt;}
.ya0{bottom:2703.437144pt;}
.yb3{bottom:2713.920421pt;}
.ya2{bottom:2728.204343pt;}
.ybc{bottom:2730.354039pt;}
.yb2{bottom:2743.921367pt;}
.y9f{bottom:2759.438910pt;}
.y1c{bottom:2788.815167pt;}
.y84{bottom:2919.475861pt;}
.y83{bottom:2949.476807pt;}
.y82{bottom:2979.477753pt;}
.y81{bottom:3009.478700pt;}
.yf{bottom:3020.662543pt;}
.ye{bottom:3059.663773pt;}
.yd{bottom:3098.665003pt;}
.y80{bottom:3120.865766pt;}
.yc{bottom:3137.666234pt;}
.y7f{bottom:3150.866712pt;}
.yb{bottom:3176.667464pt;}
.y7e{bottom:3180.867658pt;}
.y7d{bottom:3210.868604pt;}
.y7c{bottom:3240.869551pt;}
.y7b{bottom:3270.870497pt;}
.ya{bottom:3274.003914pt;}
.y1a{bottom:3417.394655pt;}
.y10{bottom:3435.119963pt;}
.y19{bottom:3456.395885pt;}
.y18{bottom:3495.397115pt;}
.y17{bottom:3534.398345pt;}
.y16{bottom:3573.399575pt;}
.y15{bottom:3671.053882pt;}
.y9{bottom:3675.834682pt;}
.y46{bottom:3853.754232pt;}
.y22{bottom:3874.954871pt;}
.y45{bottom:3886.755272pt;}
.y24{bottom:3890.108197pt;}
.y21{bottom:3907.955912pt;}
.y47{bottom:3922.056359pt;}
.y23{bottom:3924.556452pt;}
.y1e{bottom:3986.277474pt;}
.y20{bottom:4004.596231pt;}
.y1d{bottom:4042.279241pt;}
.y1{bottom:4052.079937pt;}
.y1f{bottom:4069.180097pt;}
.y8{bottom:4193.273602pt;}
.y7{bottom:4286.276535pt;}
.h5{height:44.159998pt;}
.h4{height:58.600741pt;}
.h10{height:61.524668pt;}
.h14{height:66.505210pt;}
.h22{height:66.661999pt;}
.h20{height:66.705737pt;}
.h13{height:66.975299pt;}
.h26{height:67.993232pt;}
.h21{height:70.399997pt;}
.h24{height:70.682958pt;}
.h1f{height:73.311407pt;}
.h23{height:74.559997pt;}
.h28{height:77.511532pt;}
.h27{height:78.059418pt;}
.h17{height:81.444387pt;}
.h1e{height:82.055315pt;}
.h1a{height:82.074296pt;}
.h16{height:82.780793pt;}
.h18{height:84.804489pt;}
.h1c{height:86.159679pt;}
.hf{height:91.639254pt;}
.he{height:92.287002pt;}
.ha{height:106.912463pt;}
.h15{height:116.916419pt;}
.h12{height:117.119995pt;}
.h25{height:118.079995pt;}
.hc{height:118.873109pt;}
.h11{height:122.147489pt;}
.h1d{height:125.923972pt;}
.h6{height:141.170265pt;}
.hd{height:143.544748pt;}
.h9{height:164.040146pt;}
.hb{height:164.799993pt;}
.h1b{height:196.159992pt;}
.h3{height:215.519594pt;}
.h8{height:254.528043pt;}
.h19{height:266.879989pt;}
.h2{height:383.039984pt;}
.h7{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w3{width:54.399998pt;}
.wb{width:125.439995pt;}
.w9{width:172.479993pt;}
.wa{width:183.679992pt;}
.w7{width:337.599986pt;}
.w2{width:641.919973pt;}
.w8{width:818.559966pt;}
.w6{width:1127.359953pt;}
.w5{width:1823.999924pt;}
.w4{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x29{left:26.615091pt;}
.x9{left:173.488313pt;}
.x28{left:174.719993pt;}
.x2d{left:190.925909pt;}
.x1b{left:195.989854pt;}
.xa{left:199.039992pt;}
.x2f{left:209.237412pt;}
.x1a{left:233.918057pt;}
.x2{left:237.603542pt;}
.x2e{left:240.520166pt;}
.x7{left:255.235049pt;}
.x8{left:257.665359pt;}
.x3{left:473.729667pt;}
.x31{left:492.338575pt;}
.x30{left:504.596267pt;}
.x32{left:529.061306pt;}
.x4{left:532.479978pt;}
.x5{left:539.505909pt;}
.x26{left:548.615753pt;}
.xf{left:679.244692pt;}
.x6{left:710.339422pt;}
.x19{left:716.081305pt;}
.x33{left:812.307390pt;}
.xe{left:824.803621pt;}
.x16{left:862.954079pt;}
.x14{left:877.797834pt;}
.x15{left:992.540133pt;}
.x13{left:1004.708087pt;}
.x17{left:1055.730964pt;}
.x11{left:1077.185362pt;}
.x18{left:1103.326215pt;}
.x37{left:1124.829649pt;}
.x34{left:1142.367696pt;}
.x38{left:1167.359951pt;}
.x10{left:1198.120438pt;}
.x39{left:1403.716806pt;}
.x35{left:1407.999941pt;}
.x27{left:1495.679938pt;}
.x12{left:1628.104917pt;}
.x3a{left:1660.256955pt;}
.x36{left:1663.999931pt;}
.x20{left:1922.559920pt;}
.x3b{left:1937.432879pt;}
.x23{left:1964.596494pt;}
.x21{left:1969.565550pt;}
.x1f{left:1975.208974pt;}
.x1c{left:1987.551021pt;}
.x2c{left:1999.094957pt;}
.x2a{left:2012.715420pt;}
.xd{left:2043.828811pt;}
.x24{left:2089.148969pt;}
.x25{left:2171.048038pt;}
.x2b{left:2184.595847pt;}
.xc{left:2227.825219pt;}
.xb{left:2298.830848pt;}
.x1{left:2529.279895pt;}
.x22{left:2639.928018pt;}
.x1e{left:2658.614257pt;}
.x1d{left:2671.464273pt;}
}




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