
    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_297d228b77652fc0554e6dc7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_6d74897eaf064a1e6690106f.woff2')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_44287060eab2acfd6c492975.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_5d468ea52e563bfeba5767f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_71d77a013303a5b0d6cea7a9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895000;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_8490a67676856b70a6f4c029.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e5d386fc7cece2cfa6c775bc.woff2')format("woff");}.ff7{font-family:ff7;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;}
.m1{transform:matrix(0.243324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243324,0.000000,0.000000,0.250000,0,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);}
.m2{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;}
.v1{vertical-align:27.360960px;}
.ls12{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.450600px;}
.ls13{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.259800px;}
.ls17{letter-spacing:-0.253200px;}
.ls7{letter-spacing:-0.166800px;}
.lsc{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.051840px;}
.ls15{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.lsa{letter-spacing:0.119520px;}
.ls14{letter-spacing:0.153600px;}
.ls11{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.206400px;}
.ls19{letter-spacing:0.260880px;}
.lsf{letter-spacing:0.298095px;}
.ls10{letter-spacing:0.359040px;}
.lse{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.361200px;}
.lsd{letter-spacing:0.361380px;}
.ls9{letter-spacing:0.719520px;}
.ls1{letter-spacing:1.618800px;}
.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:-27.060000px;}
.ws4{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws6{word-spacing:-15.891840px;}
.ws8{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.673200px;}
.wsb{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.146400px;}
.wse{word-spacing:-15.093600px;}
.ws3{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.686800px;}
.ws11{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws2{word-spacing:-14.479800px;}
.ws9{word-spacing:-11.609400px;}
.ws5{word-spacing:0.000000px;}
._c{margin-left:-4.320000px;}
._d{margin-left:-3.254400px;}
._31{margin-left:-2.212655px;}
._0{margin-left:-1.190640px;}
._1{width:1.190640px;}
._2{width:3.047760px;}
._3{width:4.068240px;}
._15{width:5.079314px;}
._a{width:6.120000px;}
._b{width:7.922640px;}
._6{width:8.964000px;}
._5{width:10.218960px;}
._e{width:11.340000px;}
._8{width:12.888000px;}
._9{width:14.184000px;}
._13{width:15.264127px;}
._16{width:16.271455px;}
._1e{width:17.698327px;}
._4{width:19.661040px;}
._7{width:21.086400px;}
._17{width:22.681207px;}
._f{width:23.976000px;}
._10{width:25.200000px;}
._14{width:27.143407px;}
._26{width:28.386054px;}
._1a{width:30.741835px;}
._3d{width:31.801227px;}
._2e{width:33.073001px;}
._18{width:34.488288px;}
._3c{width:36.033145px;}
._21{width:37.222030px;}
._37{width:38.449681px;}
._36{width:40.100221px;}
._2f{width:41.374809px;}
._30{width:42.563457px;}
._1b{width:43.702490px;}
._12{width:45.069860px;}
._11{width:46.080136px;}
._28{width:47.334115px;}
._3a{width:48.460131px;}
._38{width:50.042477px;}
._1c{width:51.447785px;}
._1d{width:52.699771px;}
._1f{width:54.743164px;}
._39{width:55.749579px;}
._32{width:59.300269px;}
._3b{width:61.079241px;}
._20{width:66.741707px;}
._23{width:73.219824px;}
._22{width:74.661073px;}
._29{width:76.819939px;}
._35{width:80.420054px;}
._33{width:82.873947px;}
._34{width:83.888640px;}
._2d{width:91.682195px;}
._24{width:152.571061px;}
._19{width:164.841361px;}
._2c{width:178.533476px;}
._2a{width:189.825563px;}
._27{width:193.058094px;}
._25{width:222.569620px;}
._2b{width:272.052377px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs6{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.fs2{font-size:108.240000px;}
.y0{bottom:0.000000px;}
.y80{bottom:3.419550px;}
.y62{bottom:3.420000px;}
.y95{bottom:3.420300px;}
.y4{bottom:18.016309px;}
.y94{bottom:21.420300px;}
.y77{bottom:21.599400px;}
.y3{bottom:32.960809px;}
.y93{bottom:39.600150px;}
.y76{bottom:39.629250px;}
.y2{bottom:47.905309px;}
.y2d{bottom:57.420150px;}
.y92{bottom:57.780000px;}
.y75{bottom:57.809700px;}
.y91{bottom:75.780000px;}
.y74{bottom:75.990150px;}
.y1{bottom:77.579850px;}
.y90{bottom:93.959850px;}
.y73{bottom:93.990150px;}
.y8f{bottom:111.959850px;}
.y72{bottom:112.170000px;}
.y8e{bottom:130.139700px;}
.y71{bottom:130.349850px;}
.y133{bottom:131.941650px;}
.y109{bottom:131.942850px;}
.y2c{bottom:138.061050px;}
.yda{bottom:138.063600px;}
.yad{bottom:142.920600px;}
.y99{bottom:142.921800px;}
.y96{bottom:144.900000px;}
.y5e{bottom:147.961500px;}
.y8d{bottom:148.319550px;}
.y70{bottom:148.349850px;}
.y132{bottom:149.041650px;}
.y108{bottom:149.042850px;}
.yd9{bottom:155.344050px;}
.y81{bottom:160.950000px;}
.y2b{bottom:160.951350px;}
.yac{bottom:165.810300px;}
.y50{bottom:165.810900px;}
.y98{bottom:165.811500px;}
.y8c{bottom:166.319550px;}
.y131{bottom:166.351350px;}
.y107{bottom:166.352550px;}
.y6f{bottom:166.529700px;}
.y5d{bottom:168.871800px;}
.yd8{bottom:172.653750px;}
.y2a{bottom:183.631200px;}
.y106{bottom:183.632400px;}
.y8b{bottom:184.499400px;}
.y6e{bottom:184.529700px;}
.yab{bottom:188.490750px;}
.y4f{bottom:188.491350px;}
.y97{bottom:188.491950px;}
.y5c{bottom:189.751650px;}
.yd7{bottom:189.933600px;}
.y130{bottom:200.911050px;}
.y105{bottom:200.912250px;}
.y8a{bottom:202.544550px;}
.y7f{bottom:202.709550px;}
.y6d{bottom:202.710150px;}
.y29{bottom:206.491500px;}
.yd6{bottom:207.033600px;}
.yaa{bottom:211.350450px;}
.y4e{bottom:211.351050px;}
.y5b{bottom:211.351650px;}
.y12f{bottom:218.191500px;}
.y104{bottom:218.192700px;}
.y89{bottom:220.724400px;}
.y7e{bottom:220.889400px;}
.y6c{bottom:220.890000px;}
.yd5{bottom:224.313450px;}
.y28{bottom:229.171350px;}
.ya9{bottom:234.030300px;}
.y4d{bottom:234.030900px;}
.y5a{bottom:234.031500px;}
.y12e{bottom:235.471350px;}
.y103{bottom:235.472550px;}
.y88{bottom:238.904250px;}
.y7d{bottom:238.933950px;}
.y6b{bottom:238.934550px;}
.yd4{bottom:241.593300px;}
.y27{bottom:252.031050px;}
.y12d{bottom:252.571350px;}
.y102{bottom:252.572550px;}
.ya8{bottom:256.710150px;}
.y4c{bottom:256.710750px;}
.y59{bottom:256.711350px;}
.y87{bottom:256.904250px;}
.y7c{bottom:257.114400px;}
.y6a{bottom:257.115000px;}
.yd3{bottom:258.873150px;}
.y12c{bottom:269.851200px;}
.y101{bottom:269.852400px;}
.y26{bottom:274.710900px;}
.y86{bottom:275.084700px;}
.y7b{bottom:275.114400px;}
.y69{bottom:275.115000px;}
.yd2{bottom:276.153000px;}
.ya7{bottom:279.570450px;}
.y4b{bottom:279.571050px;}
.y58{bottom:279.571650px;}
.y12b{bottom:287.131050px;}
.y100{bottom:287.132250px;}
.yd1{bottom:293.253000px;}
.y85{bottom:293.265150px;}
.y7a{bottom:293.294250px;}
.y68{bottom:293.294850px;}
.y25{bottom:297.571200px;}
.ya6{bottom:302.250300px;}
.y4a{bottom:302.250900px;}
.y57{bottom:302.251500px;}
.y12a{bottom:304.410900px;}
.yff{bottom:304.412100px;}
.yd0{bottom:310.532850px;}
.y84{bottom:311.265150px;}
.y79{bottom:311.474100px;}
.y67{bottom:311.474700px;}
.y24{bottom:320.251050px;}
.y129{bottom:321.691350px;}
.yfe{bottom:321.691950px;}
.ya5{bottom:325.110000px;}
.y49{bottom:325.110600px;}
.y56{bottom:325.111200px;}
.ycf{bottom:327.812700px;}
.y83{bottom:329.445000px;}
.y78{bottom:329.474100px;}
.y66{bottom:329.474700px;}
.y128{bottom:338.791350px;}
.yfd{bottom:338.791950px;}
.y23{bottom:343.110750px;}
.yce{bottom:345.092550px;}
.y82{bottom:347.445000px;}
.y65{bottom:347.654550px;}
.ya4{bottom:347.790450px;}
.y48{bottom:347.791050px;}
.y55{bottom:347.791650px;}
.y127{bottom:356.071200px;}
.yfc{bottom:356.071800px;}
.ycd{bottom:362.417550px;}
.y64{bottom:365.835000px;}
.y22{bottom:365.835750px;}
.ya3{bottom:370.695300px;}
.y47{bottom:370.695900px;}
.y54{bottom:370.696500px;}
.y126{bottom:373.396200px;}
.yfb{bottom:373.396800px;}
.ycc{bottom:379.697400px;}
.y21{bottom:388.696050px;}
.y125{bottom:390.676050px;}
.yfa{bottom:390.676650px;}
.ya2{bottom:393.375150px;}
.y46{bottom:393.375750px;}
.y53{bottom:393.376350px;}
.ycb{bottom:396.797400px;}
.y124{bottom:407.955900px;}
.yf9{bottom:407.956500px;}
.y20{bottom:411.375900px;}
.yca{bottom:414.077250px;}
.ya1{bottom:416.234850px;}
.y45{bottom:416.235450px;}
.y52{bottom:416.236050px;}
.y123{bottom:425.235750px;}
.yf8{bottom:425.236350px;}
.yc9{bottom:431.357100px;}
.y1f{bottom:434.235600px;}
.ya0{bottom:438.915300px;}
.y44{bottom:438.915900px;}
.y51{bottom:438.916500px;}
.y122{bottom:442.335750px;}
.yf7{bottom:442.336350px;}
.yc8{bottom:448.636950px;}
.y1e{bottom:456.915600px;}
.y121{bottom:459.616200px;}
.yf6{bottom:459.616800px;}
.y9f{bottom:461.775000px;}
.y43{bottom:461.776200px;}
.yc7{bottom:465.917400px;}
.y120{bottom:476.896050px;}
.yf5{bottom:476.896650px;}
.y1d{bottom:479.775300px;}
.yc6{bottom:483.197250px;}
.y9e{bottom:484.454850px;}
.y42{bottom:484.456050px;}
.y11f{bottom:494.175900px;}
.yf4{bottom:494.176500px;}
.yc5{bottom:500.297250px;}
.y1c{bottom:502.455150px;}
.y9d{bottom:507.315150px;}
.y41{bottom:507.316350px;}
.y11e{bottom:511.455750px;}
.yf3{bottom:511.456350px;}
.yc4{bottom:517.577100px;}
.y63{bottom:523.875000px;}
.y1b{bottom:525.315450px;}
.y11d{bottom:528.735600px;}
.yf2{bottom:528.736200px;}
.y9c{bottom:529.995000px;}
.y40{bottom:529.996200px;}
.yc3{bottom:534.856950px;}
.y11c{bottom:545.835600px;}
.yf1{bottom:545.836200px;}
.y1a{bottom:547.995300px;}
.yc2{bottom:552.136800px;}
.y9b{bottom:552.855300px;}
.y3f{bottom:552.855900px;}
.y11b{bottom:563.145900px;}
.yf0{bottom:563.146500px;}
.yc1{bottom:569.447100px;}
.y19{bottom:570.885000px;}
.y9a{bottom:575.565600px;}
.y3e{bottom:575.566200px;}
.y11a{bottom:580.425750px;}
.yef{bottom:580.426350px;}
.yc0{bottom:586.726950px;}
.y18{bottom:591.585000px;}
.y119{bottom:597.705600px;}
.yee{bottom:597.706200px;}
.y3d{bottom:598.425900px;}
.ybf{bottom:603.826950px;}
.y17{bottom:612.105150px;}
.y118{bottom:614.985450px;}
.yed{bottom:614.986050px;}
.y3c{bottom:621.105750px;}
.ybe{bottom:621.106800px;}
.y16{bottom:632.085600px;}
.y117{bottom:632.086050px;}
.yec{bottom:632.086650px;}
.ybd{bottom:638.386650px;}
.y3b{bottom:643.966050px;}
.y15{bottom:649.365450px;}
.y116{bottom:649.365900px;}
.yeb{bottom:649.366500px;}
.ybc{bottom:655.666500px;}
.y14{bottom:666.645300px;}
.y115{bottom:666.645750px;}
.y3a{bottom:666.645900px;}
.yea{bottom:666.646350px;}
.ybb{bottom:672.946350px;}
.y13{bottom:683.925150px;}
.y114{bottom:683.925600px;}
.ye9{bottom:683.926200px;}
.y39{bottom:689.505600px;}
.yba{bottom:690.046350px;}
.y12{bottom:701.205000px;}
.y113{bottom:701.205450px;}
.ye8{bottom:701.206050px;}
.yb9{bottom:707.326200px;}
.y38{bottom:712.185450px;}
.y11{bottom:718.484850px;}
.y112{bottom:718.485300px;}
.ye7{bottom:718.485900px;}
.yb8{bottom:724.606050px;}
.y37{bottom:735.045750px;}
.y10{bottom:735.585450px;}
.y111{bottom:735.585900px;}
.ye6{bottom:735.586500px;}
.yb7{bottom:741.885900px;}
.yf{bottom:752.865300px;}
.y110{bottom:752.865750px;}
.ye5{bottom:752.866350px;}
.y36{bottom:757.725600px;}
.yb6{bottom:759.166350px;}
.ye{bottom:770.190300px;}
.y10f{bottom:770.190750px;}
.ye4{bottom:770.191350px;}
.yb5{bottom:776.491350px;}
.y35{bottom:780.630450px;}
.yd{bottom:787.470150px;}
.y10e{bottom:787.470600px;}
.ye3{bottom:787.471200px;}
.yb4{bottom:793.591350px;}
.y34{bottom:803.310300px;}
.y10d{bottom:804.750450px;}
.ye2{bottom:804.751050px;}
.yc{bottom:805.470150px;}
.yb3{bottom:810.871200px;}
.y10c{bottom:822.030300px;}
.ye1{bottom:822.030900px;}
.ya{bottom:825.847537px;}
.yb{bottom:826.170150px;}
.y33{bottom:826.170600px;}
.yb2{bottom:828.151050px;}
.y10b{bottom:839.130300px;}
.ye0{bottom:839.130900px;}
.yb1{bottom:845.430900px;}
.y32{bottom:848.850450px;}
.y10a{bottom:856.410150px;}
.ydf{bottom:856.410750px;}
.yb0{bottom:862.710750px;}
.y9{bottom:867.570150px;}
.y8{bottom:867.760524px;}
.y31{bottom:871.710750px;}
.yde{bottom:873.690600px;}
.yaf{bottom:879.990600px;}
.ydd{bottom:890.970450px;}
.y30{bottom:894.390600px;}
.yae{bottom:897.090600px;}
.y61{bottom:905.010000px;}
.ydc{bottom:908.250300px;}
.y7{bottom:909.576474px;}
.y2f{bottom:917.250300px;}
.ydb{bottom:925.530150px;}
.y60{bottom:926.790450px;}
.y2e{bottom:939.930150px;}
.y5f{bottom:942.630150px;}
.y6{bottom:951.392424px;}
.y5{bottom:993.208374px;}
.hf{height:18.179850px;}
.he{height:37.152000px;}
.h17{height:40.995360px;}
.h9{height:41.114880px;}
.h8{height:41.353920px;}
.h16{height:41.493516px;}
.ha{height:41.522695px;}
.h12{height:43.591680px;}
.h10{height:43.845120px;}
.h13{height:44.024063px;}
.h2{height:44.149219px;}
.hd{height:45.573120px;}
.h7{height:49.392000px;}
.h5{height:49.536000px;}
.hb{height:49.824000px;}
.hc{height:50.027344px;}
.h3{height:52.998047px;}
.h15{height:60.550080px;}
.h6{height:69.972000px;}
.h4{height:74.902080px;}
.h14{height:362.190000px;}
.h11{height:380.415000px;}
.h1{height:1062.750000px;}
.h0{height:1063.080000px;}
.w2{width:88.920150px;}
.w4{width:169.410000px;}
.w3{width:253.335000px;}
.w0{width:748.440000px;}
.w1{width:748.500000px;}
.x0{left:0.000000px;}
.x15{left:7.740300px;}
.x10{left:15.120150px;}
.x14{left:45.180000px;}
.x2{left:54.790962px;}
.x12{left:72.765000px;}
.xc{left:106.416000px;}
.x3{left:116.477316px;}
.x7{left:127.655999px;}
.xe{left:135.395850px;}
.x4{left:154.363716px;}
.xd{left:159.509550px;}
.xa{left:180.750449px;}
.x5{left:187.838616px;}
.x11{left:196.770000px;}
.x6{left:274.093716px;}
.x8{left:298.633010px;}
.xb{left:351.075000px;}
.xf{left:363.674850px;}
.x1{left:372.315000px;}
.x9{left:384.914999px;}
.x13{left:450.825000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320853pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.400533pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.230933pt;}
.ls17{letter-spacing:-0.225067pt;}
.ls7{letter-spacing:-0.148267pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.046080pt;}
.ls15{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.lsa{letter-spacing:0.106240pt;}
.ls14{letter-spacing:0.136533pt;}
.ls11{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.183467pt;}
.ls19{letter-spacing:0.231893pt;}
.lsf{letter-spacing:0.264974pt;}
.ls10{letter-spacing:0.319147pt;}
.lse{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.321067pt;}
.lsd{letter-spacing:0.321227pt;}
.ls9{letter-spacing:0.639573pt;}
.ls1{letter-spacing:1.438933pt;}
.ws0{word-spacing:-24.053333pt;}
.ws4{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws6{word-spacing:-14.126080pt;}
.ws8{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.931733pt;}
.wsb{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.463467pt;}
.wse{word-spacing:-13.416533pt;}
.ws3{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.054933pt;}
.ws11{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws2{word-spacing:-12.870933pt;}
.ws9{word-spacing:-10.319467pt;}
.ws5{word-spacing:0.000000pt;}
._c{margin-left:-3.840000pt;}
._d{margin-left:-2.892800pt;}
._31{margin-left:-1.966805pt;}
._0{margin-left:-1.058347pt;}
._1{width:1.058347pt;}
._2{width:2.709120pt;}
._3{width:3.616213pt;}
._15{width:4.514946pt;}
._a{width:5.440000pt;}
._b{width:7.042347pt;}
._6{width:7.968000pt;}
._5{width:9.083520pt;}
._e{width:10.080000pt;}
._8{width:11.456000pt;}
._9{width:12.608000pt;}
._13{width:13.568113pt;}
._16{width:14.463516pt;}
._1e{width:15.731847pt;}
._4{width:17.476480pt;}
._7{width:18.743467pt;}
._17{width:20.161073pt;}
._f{width:21.312000pt;}
._10{width:22.400000pt;}
._14{width:24.127473pt;}
._26{width:25.232048pt;}
._1a{width:27.326076pt;}
._3d{width:28.267757pt;}
._2e{width:29.398223pt;}
._18{width:30.656256pt;}
._3c{width:32.029463pt;}
._21{width:33.086248pt;}
._37{width:34.177494pt;}
._36{width:35.644641pt;}
._2f{width:36.777608pt;}
._30{width:37.834184pt;}
._1b{width:38.846658pt;}
._12{width:40.062098pt;}
._11{width:40.960121pt;}
._28{width:42.074769pt;}
._3a{width:43.075672pt;}
._38{width:44.482202pt;}
._1c{width:45.731365pt;}
._1d{width:46.844241pt;}
._1f{width:48.660590pt;}
._39{width:49.555181pt;}
._32{width:52.711350pt;}
._3b{width:54.292658pt;}
._20{width:59.325962pt;}
._23{width:65.084288pt;}
._22{width:66.365399pt;}
._29{width:68.284390pt;}
._35{width:71.484493pt;}
._33{width:73.665730pt;}
._34{width:74.567680pt;}
._2d{width:81.495284pt;}
._24{width:135.618721pt;}
._19{width:146.525655pt;}
._2c{width:158.696423pt;}
._2a{width:168.733834pt;}
._27{width:171.607194pt;}
._25{width:197.839662pt;}
._2b{width:241.824335pt;}
.fs7{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs6{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.fs2{font-size:96.213333pt;}
.y0{bottom:0.000000pt;}
.y80{bottom:3.039600pt;}
.y62{bottom:3.040000pt;}
.y95{bottom:3.040267pt;}
.y4{bottom:16.014497pt;}
.y94{bottom:19.040267pt;}
.y77{bottom:19.199467pt;}
.y3{bottom:29.298497pt;}
.y93{bottom:35.200133pt;}
.y76{bottom:35.226000pt;}
.y2{bottom:42.582497pt;}
.y2d{bottom:51.040133pt;}
.y92{bottom:51.360000pt;}
.y75{bottom:51.386400pt;}
.y91{bottom:67.360000pt;}
.y74{bottom:67.546800pt;}
.y1{bottom:68.959867pt;}
.y90{bottom:83.519867pt;}
.y73{bottom:83.546800pt;}
.y8f{bottom:99.519867pt;}
.y72{bottom:99.706667pt;}
.y8e{bottom:115.679733pt;}
.y71{bottom:115.866533pt;}
.y133{bottom:117.281467pt;}
.y109{bottom:117.282533pt;}
.y2c{bottom:122.720933pt;}
.yda{bottom:122.723200pt;}
.yad{bottom:127.040533pt;}
.y99{bottom:127.041600pt;}
.y96{bottom:128.800000pt;}
.y5e{bottom:131.521333pt;}
.y8d{bottom:131.839600pt;}
.y70{bottom:131.866533pt;}
.y132{bottom:132.481467pt;}
.y108{bottom:132.482533pt;}
.yd9{bottom:138.083600pt;}
.y81{bottom:143.066667pt;}
.y2b{bottom:143.067867pt;}
.yac{bottom:147.386933pt;}
.y50{bottom:147.387467pt;}
.y98{bottom:147.388000pt;}
.y8c{bottom:147.839600pt;}
.y131{bottom:147.867867pt;}
.y107{bottom:147.868933pt;}
.y6f{bottom:148.026400pt;}
.y5d{bottom:150.108267pt;}
.yd8{bottom:153.470000pt;}
.y2a{bottom:163.227733pt;}
.y106{bottom:163.228800pt;}
.y8b{bottom:163.999467pt;}
.y6e{bottom:164.026400pt;}
.yab{bottom:167.547333pt;}
.y4f{bottom:167.547867pt;}
.y97{bottom:167.548400pt;}
.y5c{bottom:168.668133pt;}
.yd7{bottom:168.829867pt;}
.y130{bottom:178.587600pt;}
.y105{bottom:178.588667pt;}
.y8a{bottom:180.039600pt;}
.y7f{bottom:180.186267pt;}
.y6d{bottom:180.186800pt;}
.y29{bottom:183.548000pt;}
.yd6{bottom:184.029867pt;}
.yaa{bottom:187.867067pt;}
.y4e{bottom:187.867600pt;}
.y5b{bottom:187.868133pt;}
.y12f{bottom:193.948000pt;}
.y104{bottom:193.949067pt;}
.y89{bottom:196.199467pt;}
.y7e{bottom:196.346133pt;}
.y6c{bottom:196.346667pt;}
.yd5{bottom:199.389733pt;}
.y28{bottom:203.707867pt;}
.ya9{bottom:208.026933pt;}
.y4d{bottom:208.027467pt;}
.y5a{bottom:208.028000pt;}
.y12e{bottom:209.307867pt;}
.y103{bottom:209.308933pt;}
.y88{bottom:212.359333pt;}
.y7d{bottom:212.385733pt;}
.y6b{bottom:212.386267pt;}
.yd4{bottom:214.749600pt;}
.y27{bottom:224.027600pt;}
.y12d{bottom:224.507867pt;}
.y102{bottom:224.508933pt;}
.ya8{bottom:228.186800pt;}
.y4c{bottom:228.187333pt;}
.y59{bottom:228.187867pt;}
.y87{bottom:228.359333pt;}
.y7c{bottom:228.546133pt;}
.y6a{bottom:228.546667pt;}
.yd3{bottom:230.109467pt;}
.y12c{bottom:239.867733pt;}
.y101{bottom:239.868800pt;}
.y26{bottom:244.187467pt;}
.y86{bottom:244.519733pt;}
.y7b{bottom:244.546133pt;}
.y69{bottom:244.546667pt;}
.yd2{bottom:245.469333pt;}
.ya7{bottom:248.507067pt;}
.y4b{bottom:248.507600pt;}
.y58{bottom:248.508133pt;}
.y12b{bottom:255.227600pt;}
.y100{bottom:255.228667pt;}
.yd1{bottom:260.669333pt;}
.y85{bottom:260.680133pt;}
.y7a{bottom:260.706000pt;}
.y68{bottom:260.706533pt;}
.y25{bottom:264.507733pt;}
.ya6{bottom:268.666933pt;}
.y4a{bottom:268.667467pt;}
.y57{bottom:268.668000pt;}
.y12a{bottom:270.587467pt;}
.yff{bottom:270.588533pt;}
.yd0{bottom:276.029200pt;}
.y84{bottom:276.680133pt;}
.y79{bottom:276.865867pt;}
.y67{bottom:276.866400pt;}
.y24{bottom:284.667600pt;}
.y129{bottom:285.947867pt;}
.yfe{bottom:285.948400pt;}
.ya5{bottom:288.986667pt;}
.y49{bottom:288.987200pt;}
.y56{bottom:288.987733pt;}
.ycf{bottom:291.389067pt;}
.y83{bottom:292.840000pt;}
.y78{bottom:292.865867pt;}
.y66{bottom:292.866400pt;}
.y128{bottom:301.147867pt;}
.yfd{bottom:301.148400pt;}
.y23{bottom:304.987333pt;}
.yce{bottom:306.748933pt;}
.y82{bottom:308.840000pt;}
.y65{bottom:309.026267pt;}
.ya4{bottom:309.147067pt;}
.y48{bottom:309.147600pt;}
.y55{bottom:309.148133pt;}
.y127{bottom:316.507733pt;}
.yfc{bottom:316.508267pt;}
.ycd{bottom:322.148933pt;}
.y64{bottom:325.186667pt;}
.y22{bottom:325.187333pt;}
.ya3{bottom:329.506933pt;}
.y47{bottom:329.507467pt;}
.y54{bottom:329.508000pt;}
.y126{bottom:331.907733pt;}
.yfb{bottom:331.908267pt;}
.ycc{bottom:337.508800pt;}
.y21{bottom:345.507600pt;}
.y125{bottom:347.267600pt;}
.yfa{bottom:347.268133pt;}
.ya2{bottom:349.666800pt;}
.y46{bottom:349.667333pt;}
.y53{bottom:349.667867pt;}
.ycb{bottom:352.708800pt;}
.y124{bottom:362.627467pt;}
.yf9{bottom:362.628000pt;}
.y20{bottom:365.667467pt;}
.yca{bottom:368.068667pt;}
.ya1{bottom:369.986533pt;}
.y45{bottom:369.987067pt;}
.y52{bottom:369.987600pt;}
.y123{bottom:377.987333pt;}
.yf8{bottom:377.987867pt;}
.yc9{bottom:383.428533pt;}
.y1f{bottom:385.987200pt;}
.ya0{bottom:390.146933pt;}
.y44{bottom:390.147467pt;}
.y51{bottom:390.148000pt;}
.y122{bottom:393.187333pt;}
.yf7{bottom:393.187867pt;}
.yc8{bottom:398.788400pt;}
.y1e{bottom:406.147200pt;}
.y121{bottom:408.547733pt;}
.yf6{bottom:408.548267pt;}
.y9f{bottom:410.466667pt;}
.y43{bottom:410.467733pt;}
.yc7{bottom:414.148800pt;}
.y120{bottom:423.907600pt;}
.yf5{bottom:423.908133pt;}
.y1d{bottom:426.466933pt;}
.yc6{bottom:429.508667pt;}
.y9e{bottom:430.626533pt;}
.y42{bottom:430.627600pt;}
.y11f{bottom:439.267467pt;}
.yf4{bottom:439.268000pt;}
.yc5{bottom:444.708667pt;}
.y1c{bottom:446.626800pt;}
.y9d{bottom:450.946800pt;}
.y41{bottom:450.947867pt;}
.y11e{bottom:454.627333pt;}
.yf3{bottom:454.627867pt;}
.yc4{bottom:460.068533pt;}
.y63{bottom:465.666667pt;}
.y1b{bottom:466.947067pt;}
.y11d{bottom:469.987200pt;}
.yf2{bottom:469.987733pt;}
.y9c{bottom:471.106667pt;}
.y40{bottom:471.107733pt;}
.yc3{bottom:475.428400pt;}
.y11c{bottom:485.187200pt;}
.yf1{bottom:485.187733pt;}
.y1a{bottom:487.106933pt;}
.yc2{bottom:490.788267pt;}
.y9b{bottom:491.426933pt;}
.y3f{bottom:491.427467pt;}
.y11b{bottom:500.574133pt;}
.yf0{bottom:500.574667pt;}
.yc1{bottom:506.175200pt;}
.y19{bottom:507.453333pt;}
.y9a{bottom:511.613867pt;}
.y3e{bottom:511.614400pt;}
.y11a{bottom:515.934000pt;}
.yef{bottom:515.934533pt;}
.yc0{bottom:521.535067pt;}
.y18{bottom:525.853333pt;}
.y119{bottom:531.293867pt;}
.yee{bottom:531.294400pt;}
.y3d{bottom:531.934133pt;}
.ybf{bottom:536.735067pt;}
.y17{bottom:544.093467pt;}
.y118{bottom:546.653733pt;}
.yed{bottom:546.654267pt;}
.y3c{bottom:552.094000pt;}
.ybe{bottom:552.094933pt;}
.y16{bottom:561.853867pt;}
.y117{bottom:561.854267pt;}
.yec{bottom:561.854800pt;}
.ybd{bottom:567.454800pt;}
.y3b{bottom:572.414267pt;}
.y15{bottom:577.213733pt;}
.y116{bottom:577.214133pt;}
.yeb{bottom:577.214667pt;}
.ybc{bottom:582.814667pt;}
.y14{bottom:592.573600pt;}
.y115{bottom:592.574000pt;}
.y3a{bottom:592.574133pt;}
.yea{bottom:592.574533pt;}
.ybb{bottom:598.174533pt;}
.y13{bottom:607.933467pt;}
.y114{bottom:607.933867pt;}
.ye9{bottom:607.934400pt;}
.y39{bottom:612.893867pt;}
.yba{bottom:613.374533pt;}
.y12{bottom:623.293333pt;}
.y113{bottom:623.293733pt;}
.ye8{bottom:623.294267pt;}
.yb9{bottom:628.734400pt;}
.y38{bottom:633.053733pt;}
.y11{bottom:638.653200pt;}
.y112{bottom:638.653600pt;}
.ye7{bottom:638.654133pt;}
.yb8{bottom:644.094267pt;}
.y37{bottom:653.374000pt;}
.y10{bottom:653.853733pt;}
.y111{bottom:653.854133pt;}
.ye6{bottom:653.854667pt;}
.yb7{bottom:659.454133pt;}
.yf{bottom:669.213600pt;}
.y110{bottom:669.214000pt;}
.ye5{bottom:669.214533pt;}
.y36{bottom:673.533867pt;}
.yb6{bottom:674.814533pt;}
.ye{bottom:684.613600pt;}
.y10f{bottom:684.614000pt;}
.ye4{bottom:684.614533pt;}
.yb5{bottom:690.214533pt;}
.y35{bottom:693.893733pt;}
.yd{bottom:699.973467pt;}
.y10e{bottom:699.973867pt;}
.ye3{bottom:699.974400pt;}
.yb4{bottom:705.414533pt;}
.y34{bottom:714.053600pt;}
.y10d{bottom:715.333733pt;}
.ye2{bottom:715.334267pt;}
.yc{bottom:715.973467pt;}
.yb3{bottom:720.774400pt;}
.y10c{bottom:730.693600pt;}
.ye1{bottom:730.694133pt;}
.ya{bottom:734.086700pt;}
.yb{bottom:734.373467pt;}
.y33{bottom:734.373867pt;}
.yb2{bottom:736.134267pt;}
.y10b{bottom:745.893600pt;}
.ye0{bottom:745.894133pt;}
.yb1{bottom:751.494133pt;}
.y32{bottom:754.533733pt;}
.y10a{bottom:761.253467pt;}
.ydf{bottom:761.254000pt;}
.yb0{bottom:766.854000pt;}
.y9{bottom:771.173467pt;}
.y8{bottom:771.342688pt;}
.y31{bottom:774.854000pt;}
.yde{bottom:776.613867pt;}
.yaf{bottom:782.213867pt;}
.ydd{bottom:791.973733pt;}
.y30{bottom:795.013867pt;}
.yae{bottom:797.413867pt;}
.y61{bottom:804.453333pt;}
.ydc{bottom:807.333600pt;}
.y7{bottom:808.512421pt;}
.y2f{bottom:815.333600pt;}
.ydb{bottom:822.693467pt;}
.y60{bottom:823.813733pt;}
.y2e{bottom:835.493467pt;}
.y5f{bottom:837.893467pt;}
.y6{bottom:845.682155pt;}
.y5{bottom:882.851888pt;}
.hf{height:16.159867pt;}
.he{height:33.024000pt;}
.h17{height:36.440320pt;}
.h9{height:36.546560pt;}
.h8{height:36.759040pt;}
.h16{height:36.883125pt;}
.ha{height:36.909063pt;}
.h12{height:38.748160pt;}
.h10{height:38.973440pt;}
.h13{height:39.132500pt;}
.h2{height:39.243750pt;}
.hd{height:40.509440pt;}
.h7{height:43.904000pt;}
.h5{height:44.032000pt;}
.hb{height:44.288000pt;}
.hc{height:44.468750pt;}
.h3{height:47.109375pt;}
.h15{height:53.822293pt;}
.h6{height:62.197333pt;}
.h4{height:66.579627pt;}
.h14{height:321.946667pt;}
.h11{height:338.146667pt;}
.h1{height:944.666667pt;}
.h0{height:944.960000pt;}
.w2{width:79.040133pt;}
.w4{width:150.586667pt;}
.w3{width:225.186667pt;}
.w0{width:665.280000pt;}
.w1{width:665.333333pt;}
.x0{left:0.000000pt;}
.x15{left:6.880267pt;}
.x10{left:13.440133pt;}
.x14{left:40.160000pt;}
.x2{left:48.703077pt;}
.x12{left:64.680000pt;}
.xc{left:94.592000pt;}
.x3{left:103.535392pt;}
.x7{left:113.471999pt;}
.xe{left:120.351867pt;}
.x4{left:137.212192pt;}
.xd{left:141.786267pt;}
.xa{left:160.667065pt;}
.x5{left:166.967659pt;}
.x11{left:174.906667pt;}
.x6{left:243.638859pt;}
.x8{left:265.451564pt;}
.xb{left:312.066667pt;}
.xf{left:323.266533pt;}
.x1{left:330.946667pt;}
.x9{left:342.146665pt;}
.x13{left:400.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; }
  