
    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_cbe22adb5ebd3cde998cda0e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;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_b3d0033d700480d72f87f1f8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_798fbc1b5b127bd044a2bf10.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.682129;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_33ddce131f37574f8456ef73.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_47ef45faa185852c0d4b0959.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_f630888dd48b2e19f33c0ba4.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v2{vertical-align:-21.978000px;}
.v3{vertical-align:-17.982000px;}
.v4{vertical-align:-4.962000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls2{letter-spacing:-3.643200px;}
.lsa{letter-spacing:-1.619924px;}
.ls11{letter-spacing:-1.167982px;}
.ls28{letter-spacing:-0.679800px;}
.ls15{letter-spacing:-0.660000px;}
.ls16{letter-spacing:-0.384780px;}
.ls1b{letter-spacing:-0.382800px;}
.ls1a{letter-spacing:-0.369600px;}
.ls1f{letter-spacing:-0.363000px;}
.ls19{letter-spacing:-0.356400px;}
.ls8{letter-spacing:-0.330000px;}
.lse{letter-spacing:-0.323400px;}
.lsb{letter-spacing:-0.316800px;}
.ls17{letter-spacing:-0.310200px;}
.ls1d{letter-spacing:-0.303600px;}
.lsd{letter-spacing:-0.297000px;}
.ls9{letter-spacing:-0.290400px;}
.lsc{letter-spacing:-0.283800px;}
.ls20{letter-spacing:-0.277200px;}
.ls18{letter-spacing:-0.264000px;}
.ls1e{letter-spacing:-0.217800px;}
.ls1c{letter-spacing:-0.192390px;}
.lsf{letter-spacing:-0.188542px;}
.ls10{letter-spacing:-0.079200px;}
.ls2d{letter-spacing:-0.066000px;}
.ls32{letter-spacing:-0.054000px;}
.ls2e{letter-spacing:-0.052800px;}
.ls2c{letter-spacing:-0.046200px;}
.ls7{letter-spacing:-0.039600px;}
.ls25{letter-spacing:-0.026400px;}
.ls31{letter-spacing:-0.024000px;}
.ls4{letter-spacing:-0.019800px;}
.ls34{letter-spacing:-0.018000px;}
.ls5{letter-spacing:-0.013200px;}
.ls27{letter-spacing:-0.006600px;}
.ls33{letter-spacing:-0.006000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.003000px;}
.ls24{letter-spacing:0.013200px;}
.ls13{letter-spacing:0.019800px;}
.ls30{letter-spacing:0.024000px;}
.ls23{letter-spacing:0.026400px;}
.ls12{letter-spacing:0.033000px;}
.ls22{letter-spacing:0.039600px;}
.ls21{letter-spacing:0.072600px;}
.ls2a{letter-spacing:1.267200px;}
.ls26{letter-spacing:1.524600px;}
.ls3{letter-spacing:1.854600px;}
.ls2b{letter-spacing:3.550800px;}
.ls2f{letter-spacing:4.560600px;}
.ls29{letter-spacing:7.345800px;}
.ls6{letter-spacing:13.500000px;}
.ls14{letter-spacing:20.611800px;}
.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;}
}
.ws2{word-spacing:-96.000000px;}
.ws1{word-spacing:-24.000000px;}
.ws3{word-spacing:-16.500000px;}
.ws14{word-spacing:-15.840000px;}
.ws1d{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws5{word-spacing:-9.619500px;}
.wsc{word-spacing:-9.430958px;}
.ws17{word-spacing:-9.427110px;}
.ws13{word-spacing:-9.234720px;}
.wsb{word-spacing:-7.999576px;}
.ws6{word-spacing:-7.870500px;}
.wsd{word-spacing:-6.702518px;}
.ws11{word-spacing:-4.973400px;}
.ws4{word-spacing:-0.066000px;}
.ws1e{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws1b{word-spacing:1.267200px;}
.ws15{word-spacing:2.956800px;}
.ws8{word-spacing:3.399000px;}
.ws12{word-spacing:3.688200px;}
.ws9{word-spacing:3.990600px;}
.ws16{word-spacing:5.016600px;}
.ws1f{word-spacing:5.526000px;}
.wsf{word-spacing:5.966400px;}
.ws1c{word-spacing:6.329400px;}
.ws18{word-spacing:6.751800px;}
.ws19{word-spacing:6.758400px;}
.wse{word-spacing:8.632800px;}
.ws1a{word-spacing:11.545200px;}
.ws10{word-spacing:22.815000px;}
.wsa{word-spacing:654.111600px;}
._d{margin-left:-29.808000px;}
._a{margin-left:-19.201800px;}
._b{margin-left:-18.179400px;}
._2{margin-left:-16.734000px;}
._f{margin-left:-15.658200px;}
._e{margin-left:-13.500000px;}
._18{margin-left:-8.297400px;}
._1{margin-left:-6.470400px;}
._0{margin-left:-5.299200px;}
._16{margin-left:-4.251000px;}
._5{margin-left:-3.178200px;}
._c{margin-left:-2.085000px;}
._9{margin-left:-1.008000px;}
._3{width:1.686000px;}
._7{width:2.943000px;}
._6{width:4.122000px;}
._8{width:5.365200px;}
._4{width:7.055400px;}
._10{width:8.975400px;}
._11{width:10.072200px;}
._13{width:11.319000px;}
._14{width:12.361200px;}
._19{width:13.365000px;}
._1a{width:15.094200px;}
._17{width:20.617200px;}
._15{width:22.820400px;}
._12{width:24.519000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:83.191800px;}
.ye8{bottom:84.327600px;}
.y6a{bottom:87.327450px;}
.y8e{bottom:88.822800px;}
.yb6{bottom:89.329650px;}
.ycc{bottom:90.322800px;}
.y41{bottom:91.822800px;}
.ye7{bottom:105.322800px;}
.y69{bottom:108.322650px;}
.yb5{bottom:109.337400px;}
.y11c{bottom:110.328900px;}
.y8d{bottom:113.323650px;}
.ybf{bottom:113.832300px;}
.y1a{bottom:114.085650px;}
.ycb{bottom:114.823650px;}
.y40{bottom:116.323800px;}
.yb4{bottom:125.837100px;}
.ye6{bottom:126.073650px;}
.y11b{bottom:126.828600px;}
.y68{bottom:128.328600px;}
.y130{bottom:129.859650px;}
.y8c{bottom:137.826300px;}
.ybe{bottom:138.334800px;}
.y19{bottom:138.588300px;}
.yca{bottom:139.326300px;}
.y3f{bottom:140.826300px;}
.yb3{bottom:146.832300px;}
.y11a{bottom:147.823800px;}
.y67{bottom:149.323650px;}
.y10e{bottom:149.644800px;}
.y12f{bottom:149.659650px;}
.y8b{bottom:162.328800px;}
.ybd{bottom:162.835800px;}
.yb2{bottom:163.088400px;}
.y18{bottom:163.089150px;}
.yc9{bottom:163.828800px;}
.y3e{bottom:165.328800px;}
.ye5{bottom:167.959800px;}
.y10d{bottom:169.444800px;}
.y12e{bottom:169.460400px;}
.y66{bottom:173.826300px;}
.yb1{bottom:179.588100px;}
.y17{bottom:183.096600px;}
.y8a{bottom:186.829800px;}
.ybc{bottom:187.338300px;}
.ye4{bottom:187.759800px;}
.yc8{bottom:188.329800px;}
.y10c{bottom:189.244800px;}
.y119{bottom:189.259800px;}
.y12d{bottom:189.260400px;}
.y3d{bottom:189.829800px;}
.yb0{bottom:200.584800px;}
.y16{bottom:204.091800px;}
.y89{bottom:206.837400px;}
.ydf{bottom:207.559800px;}
.y10b{bottom:209.044800px;}
.y118{bottom:209.059800px;}
.y12c{bottom:209.060400px;}
.y65{bottom:210.559800px;}
.ybb{bottom:211.839300px;}
.y3c{bottom:214.332300px;}
.y88{bottom:223.337100px;}
.yaf{bottom:225.085650px;}
.yde{bottom:227.359800px;}
.y15{bottom:228.594300px;}
.y10a{bottom:228.844800px;}
.yc7{bottom:228.859800px;}
.y12b{bottom:228.860400px;}
.y64{bottom:230.359800px;}
.y3b{bottom:238.834800px;}
.y87{bottom:244.332300px;}
.ydd{bottom:247.159800px;}
.y109{bottom:248.644800px;}
.yba{bottom:248.659650px;}
.yc6{bottom:248.659800px;}
.y12a{bottom:248.660400px;}
.yae{bottom:249.588300px;}
.y63{bottom:250.159800px;}
.y14{bottom:262.593300px;}
.y3a{bottom:263.335800px;}
.ydc{bottom:266.959800px;}
.y108{bottom:268.444800px;}
.yb9{bottom:268.459800px;}
.y129{bottom:268.460400px;}
.y86{bottom:268.834800px;}
.y62{bottom:269.959800px;}
.y13{bottom:282.393300px;}
.yad{bottom:286.759800px;}
.y107{bottom:288.244800px;}
.yb8{bottom:288.259800px;}
.y128{bottom:288.260400px;}
.y154{bottom:289.542150px;}
.y61{bottom:289.759800px;}
.y12{bottom:302.193300px;}
.yac{bottom:306.559800px;}
.y106{bottom:308.044800px;}
.y39{bottom:308.059800px;}
.y127{bottom:308.060400px;}
.y60{bottom:309.559800px;}
.y11{bottom:321.993300px;}
.y153{bottom:325.542150px;}
.yab{bottom:326.359800px;}
.y105{bottom:327.844800px;}
.y38{bottom:327.859800px;}
.y126{bottom:327.860400px;}
.y5f{bottom:329.359800px;}
.y10{bottom:341.793300px;}
.y152{bottom:343.542150px;}
.yaa{bottom:346.159800px;}
.y104{bottom:347.644800px;}
.y37{bottom:347.659800px;}
.y125{bottom:347.660400px;}
.y5e{bottom:354.654483px;}
.y151{bottom:361.542150px;}
.yf{bottom:361.593300px;}
.y85{bottom:365.944800px;}
.ya9{bottom:365.959800px;}
.y103{bottom:367.444800px;}
.y36{bottom:367.459800px;}
.y124{bottom:367.460400px;}
.y5d{bottom:368.959800px;}
.y150{bottom:379.542150px;}
.ye{bottom:381.393300px;}
.y84{bottom:385.744800px;}
.ya8{bottom:385.759800px;}
.y102{bottom:387.244800px;}
.y35{bottom:387.259800px;}
.y123{bottom:387.260400px;}
.y5c{bottom:388.759800px;}
.y14f{bottom:397.542150px;}
.yd{bottom:401.193300px;}
.y83{bottom:405.544800px;}
.ya7{bottom:405.559800px;}
.y101{bottom:407.044800px;}
.y34{bottom:407.059800px;}
.y122{bottom:407.060400px;}
.y5b{bottom:408.559800px;}
.y14e{bottom:415.542150px;}
.yc{bottom:420.993300px;}
.y82{bottom:425.344800px;}
.ya6{bottom:425.359800px;}
.y100{bottom:426.844800px;}
.y33{bottom:426.859800px;}
.y121{bottom:426.860400px;}
.y5a{bottom:428.359800px;}
.y14d{bottom:433.542150px;}
.yb{bottom:440.793300px;}
.y81{bottom:445.144800px;}
.ya5{bottom:445.159800px;}
.yff{bottom:446.644800px;}
.y32{bottom:446.659800px;}
.y120{bottom:446.660400px;}
.y59{bottom:448.159800px;}
.y14c{bottom:451.542150px;}
.ya{bottom:460.593300px;}
.y80{bottom:464.944800px;}
.ydb{bottom:464.959800px;}
.ya4{bottom:464.960400px;}
.y135{bottom:466.444200px;}
.yfe{bottom:466.444800px;}
.y31{bottom:466.459800px;}
.y11f{bottom:466.460400px;}
.y58{bottom:467.959800px;}
.y14b{bottom:469.542150px;}
.y9{bottom:480.393300px;}
.y7f{bottom:484.744800px;}
.yda{bottom:484.759800px;}
.ya3{bottom:484.760400px;}
.y134{bottom:486.244200px;}
.yfd{bottom:486.244800px;}
.y30{bottom:486.259800px;}
.y11e{bottom:486.260400px;}
.y14a{bottom:487.542150px;}
.y57{bottom:487.759800px;}
.y8{bottom:500.193300px;}
.y7e{bottom:504.544800px;}
.yd9{bottom:504.559800px;}
.ya2{bottom:504.560400px;}
.y149{bottom:505.542150px;}
.y133{bottom:506.044200px;}
.yfc{bottom:506.044800px;}
.y2f{bottom:506.059800px;}
.y11d{bottom:506.060400px;}
.y56{bottom:507.559800px;}
.y7{bottom:519.993300px;}
.y148{bottom:523.542150px;}
.y7d{bottom:524.344800px;}
.yd8{bottom:524.359800px;}
.ya1{bottom:524.360400px;}
.y132{bottom:525.844200px;}
.yfb{bottom:525.844800px;}
.y2e{bottom:525.859800px;}
.y117{bottom:525.860400px;}
.y55{bottom:527.359800px;}
.y6{bottom:539.793300px;}
.y147{bottom:541.542150px;}
.y7c{bottom:544.144800px;}
.yd7{bottom:544.159800px;}
.ya0{bottom:544.160400px;}
.y131{bottom:545.644200px;}
.yfa{bottom:545.644800px;}
.y2d{bottom:545.659800px;}
.y116{bottom:545.660400px;}
.y54{bottom:547.159800px;}
.y146{bottom:559.542150px;}
.y7b{bottom:563.944800px;}
.yd6{bottom:563.959800px;}
.y9f{bottom:563.960400px;}
.yf9{bottom:565.444200px;}
.y2c{bottom:565.459800px;}
.y115{bottom:565.460400px;}
.y53{bottom:566.959800px;}
.y145{bottom:577.542150px;}
.y7a{bottom:583.744800px;}
.yd5{bottom:583.759800px;}
.y9e{bottom:583.760400px;}
.yf8{bottom:585.244200px;}
.y2b{bottom:585.259800px;}
.y114{bottom:585.260400px;}
.y52{bottom:586.759800px;}
.y79{bottom:603.544800px;}
.yd4{bottom:603.559800px;}
.y9d{bottom:603.560400px;}
.yf7{bottom:605.044200px;}
.y2a{bottom:605.059800px;}
.y113{bottom:605.060400px;}
.y51{bottom:606.559800px;}
.y144{bottom:613.542150px;}
.y78{bottom:623.344800px;}
.yd3{bottom:623.359800px;}
.y9c{bottom:623.360400px;}
.yf6{bottom:624.844200px;}
.y29{bottom:624.859800px;}
.y112{bottom:624.860400px;}
.y50{bottom:626.359800px;}
.y77{bottom:643.144800px;}
.yd2{bottom:643.159800px;}
.y9b{bottom:643.160400px;}
.yf5{bottom:644.644200px;}
.y28{bottom:644.659800px;}
.y111{bottom:644.660400px;}
.y4f{bottom:646.159800px;}
.y143{bottom:649.542150px;}
.y5{bottom:658.593300px;}
.y76{bottom:662.944800px;}
.yd1{bottom:662.959800px;}
.y9a{bottom:662.960400px;}
.yf4{bottom:664.444200px;}
.y27{bottom:664.459800px;}
.y110{bottom:664.460400px;}
.y4e{bottom:665.959800px;}
.y142{bottom:667.542150px;}
.y4{bottom:676.593300px;}
.y75{bottom:682.744800px;}
.yd0{bottom:682.759800px;}
.y99{bottom:682.760400px;}
.yf3{bottom:684.244200px;}
.y26{bottom:684.259800px;}
.y10f{bottom:684.260400px;}
.y141{bottom:685.542150px;}
.y4d{bottom:685.760400px;}
.y74{bottom:702.544800px;}
.ycf{bottom:702.559800px;}
.y98{bottom:702.560400px;}
.y140{bottom:703.542150px;}
.yf2{bottom:704.044200px;}
.y25{bottom:704.059800px;}
.yb7{bottom:704.060400px;}
.y4c{bottom:705.560400px;}
.y13f{bottom:721.542150px;}
.y73{bottom:722.344800px;}
.yce{bottom:722.359800px;}
.y97{bottom:722.360400px;}
.yf1{bottom:723.844200px;}
.yc5{bottom:723.859800px;}
.y24{bottom:723.860400px;}
.y4b{bottom:725.360400px;}
.y13e{bottom:739.542150px;}
.y72{bottom:742.144800px;}
.ycd{bottom:742.159800px;}
.y96{bottom:742.160400px;}
.yf0{bottom:743.644200px;}
.yc4{bottom:743.659800px;}
.y23{bottom:743.660400px;}
.y4a{bottom:745.160400px;}
.y13d{bottom:757.542150px;}
.y71{bottom:761.944800px;}
.ye3{bottom:761.959800px;}
.y95{bottom:761.960400px;}
.yef{bottom:763.444200px;}
.yc3{bottom:763.459800px;}
.y22{bottom:763.460400px;}
.y49{bottom:764.960400px;}
.y3{bottom:774.993300px;}
.y13c{bottom:775.542150px;}
.y70{bottom:781.744800px;}
.ye2{bottom:781.759800px;}
.y94{bottom:781.760400px;}
.yee{bottom:783.244200px;}
.yc2{bottom:783.259800px;}
.y21{bottom:783.260400px;}
.y48{bottom:784.760400px;}
.y13b{bottom:793.542150px;}
.y2{bottom:797.793300px;}
.y6f{bottom:801.544800px;}
.ye1{bottom:801.559800px;}
.y93{bottom:801.560400px;}
.yed{bottom:803.044200px;}
.yc1{bottom:803.059800px;}
.y20{bottom:803.060400px;}
.y47{bottom:804.560400px;}
.y13a{bottom:811.542150px;}
.y6e{bottom:821.344800px;}
.ye0{bottom:821.359800px;}
.y92{bottom:821.360400px;}
.yec{bottom:822.844200px;}
.yc0{bottom:822.859800px;}
.y1f{bottom:822.860400px;}
.y46{bottom:824.360400px;}
.y139{bottom:829.542150px;}
.y6d{bottom:841.144200px;}
.y91{bottom:841.160400px;}
.yeb{bottom:842.644200px;}
.y1e{bottom:842.660400px;}
.y45{bottom:844.160400px;}
.y138{bottom:847.542150px;}
.y6c{bottom:860.944200px;}
.y90{bottom:860.960400px;}
.yea{bottom:862.444200px;}
.y1d{bottom:862.460400px;}
.y44{bottom:863.960400px;}
.y137{bottom:865.542150px;}
.y6b{bottom:880.744200px;}
.y8f{bottom:880.760400px;}
.ye9{bottom:882.244200px;}
.y1c{bottom:882.260400px;}
.y136{bottom:883.542150px;}
.y43{bottom:883.760400px;}
.y42{bottom:926.758650px;}
.y1b{bottom:927.999150px;}
.h13{height:29.393836px;}
.h16{height:29.399236px;}
.h8{height:29.399836px;}
.h15{height:29.400436px;}
.hd{height:29.525672px;}
.h14{height:29.531072px;}
.h9{height:29.531672px;}
.hb{height:29.532272px;}
.h10{height:36.093533px;}
.he{height:37.303711px;}
.ha{height:47.381836px;}
.h11{height:47.513672px;}
.h2{height:47.961914px;}
.hc{height:48.329016px;}
.h5{height:52.646484px;}
.h17{height:52.792969px;}
.hf{height:53.291016px;}
.h4{height:56.153528px;}
.h7{height:57.911133px;}
.h12{height:57.913533px;}
.h6{height:58.072266px;}
.h3{height:85.265625px;}
.h0{height:979.179300px;}
.h1{height:979.500000px;}
.w1{width:681.000000px;}
.w0{width:681.026550px;}
.x0{left:0.000000px;}
.x1{left:94.974150px;}
.xd{left:97.726800px;}
.x9{left:99.226050px;}
.x2{left:108.433050px;}
.xe{left:111.226050px;}
.xb{left:112.726050px;}
.x6{left:128.990550px;}
.xc{left:131.741550px;}
.xa{left:133.239300px;}
.x3{left:153.783450px;}
.x8{left:175.595550px;}
.x5{left:197.371050px;}
.x10{left:298.754550px;}
.xf{left:306.544050px;}
.x4{left:394.868550px;}
.x7{left:576.073050px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v3{vertical-align:-15.984000pt;}
.v4{vertical-align:-4.410667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls2{letter-spacing:-3.238400pt;}
.lsa{letter-spacing:-1.439932pt;}
.ls11{letter-spacing:-1.038206pt;}
.ls28{letter-spacing:-0.604267pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls16{letter-spacing:-0.342027pt;}
.ls1b{letter-spacing:-0.340267pt;}
.ls1a{letter-spacing:-0.328533pt;}
.ls1f{letter-spacing:-0.322667pt;}
.ls19{letter-spacing:-0.316800pt;}
.ls8{letter-spacing:-0.293333pt;}
.lse{letter-spacing:-0.287467pt;}
.lsb{letter-spacing:-0.281600pt;}
.ls17{letter-spacing:-0.275733pt;}
.ls1d{letter-spacing:-0.269867pt;}
.lsd{letter-spacing:-0.264000pt;}
.ls9{letter-spacing:-0.258133pt;}
.lsc{letter-spacing:-0.252267pt;}
.ls20{letter-spacing:-0.246400pt;}
.ls18{letter-spacing:-0.234667pt;}
.ls1e{letter-spacing:-0.193600pt;}
.ls1c{letter-spacing:-0.171013pt;}
.lsf{letter-spacing:-0.167593pt;}
.ls10{letter-spacing:-0.070400pt;}
.ls2d{letter-spacing:-0.058667pt;}
.ls32{letter-spacing:-0.048000pt;}
.ls2e{letter-spacing:-0.046933pt;}
.ls2c{letter-spacing:-0.041067pt;}
.ls7{letter-spacing:-0.035200pt;}
.ls25{letter-spacing:-0.023467pt;}
.ls31{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:-0.017600pt;}
.ls34{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:-0.011733pt;}
.ls27{letter-spacing:-0.005867pt;}
.ls33{letter-spacing:-0.005333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.002667pt;}
.ls24{letter-spacing:0.011733pt;}
.ls13{letter-spacing:0.017600pt;}
.ls30{letter-spacing:0.021333pt;}
.ls23{letter-spacing:0.023467pt;}
.ls12{letter-spacing:0.029333pt;}
.ls22{letter-spacing:0.035200pt;}
.ls21{letter-spacing:0.064533pt;}
.ls2a{letter-spacing:1.126400pt;}
.ls26{letter-spacing:1.355200pt;}
.ls3{letter-spacing:1.648533pt;}
.ls2b{letter-spacing:3.156267pt;}
.ls2f{letter-spacing:4.053867pt;}
.ls29{letter-spacing:6.529600pt;}
.ls6{letter-spacing:12.000000pt;}
.ls14{letter-spacing:18.321600pt;}
.ws2{word-spacing:-85.333333pt;}
.ws1{word-spacing:-21.333333pt;}
.ws3{word-spacing:-14.666667pt;}
.ws14{word-spacing:-14.080000pt;}
.ws1d{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws5{word-spacing:-8.550667pt;}
.wsc{word-spacing:-8.383074pt;}
.ws17{word-spacing:-8.379653pt;}
.ws13{word-spacing:-8.208640pt;}
.wsb{word-spacing:-7.110734pt;}
.ws6{word-spacing:-6.996000pt;}
.wsd{word-spacing:-5.957794pt;}
.ws11{word-spacing:-4.420800pt;}
.ws4{word-spacing:-0.058667pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws1b{word-spacing:1.126400pt;}
.ws15{word-spacing:2.628267pt;}
.ws8{word-spacing:3.021333pt;}
.ws12{word-spacing:3.278400pt;}
.ws9{word-spacing:3.547200pt;}
.ws16{word-spacing:4.459200pt;}
.ws1f{word-spacing:4.912000pt;}
.wsf{word-spacing:5.303467pt;}
.ws1c{word-spacing:5.626133pt;}
.ws18{word-spacing:6.001600pt;}
.ws19{word-spacing:6.007467pt;}
.wse{word-spacing:7.673600pt;}
.ws1a{word-spacing:10.262400pt;}
.ws10{word-spacing:20.280000pt;}
.wsa{word-spacing:581.432533pt;}
._d{margin-left:-26.496000pt;}
._a{margin-left:-17.068267pt;}
._b{margin-left:-16.159467pt;}
._2{margin-left:-14.874667pt;}
._f{margin-left:-13.918400pt;}
._e{margin-left:-12.000000pt;}
._18{margin-left:-7.375467pt;}
._1{margin-left:-5.751467pt;}
._0{margin-left:-4.710400pt;}
._16{margin-left:-3.778667pt;}
._5{margin-left:-2.825067pt;}
._c{margin-left:-1.853333pt;}
._9{margin-left:-0.896000pt;}
._3{width:1.498667pt;}
._7{width:2.616000pt;}
._6{width:3.664000pt;}
._8{width:4.769067pt;}
._4{width:6.271467pt;}
._10{width:7.978133pt;}
._11{width:8.953067pt;}
._13{width:10.061333pt;}
._14{width:10.987733pt;}
._19{width:11.880000pt;}
._1a{width:13.417067pt;}
._17{width:18.326400pt;}
._15{width:20.284800pt;}
._12{width:21.794667pt;}
.fs5{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:73.948267pt;}
.ye8{bottom:74.957867pt;}
.y6a{bottom:77.624400pt;}
.y8e{bottom:78.953600pt;}
.yb6{bottom:79.404133pt;}
.ycc{bottom:80.286933pt;}
.y41{bottom:81.620267pt;}
.ye7{bottom:93.620267pt;}
.y69{bottom:96.286800pt;}
.yb5{bottom:97.188800pt;}
.y11c{bottom:98.070133pt;}
.y8d{bottom:100.732133pt;}
.ybf{bottom:101.184267pt;}
.y1a{bottom:101.409467pt;}
.ycb{bottom:102.065467pt;}
.y40{bottom:103.398933pt;}
.yb4{bottom:111.855200pt;}
.ye6{bottom:112.065467pt;}
.y11b{bottom:112.736533pt;}
.y68{bottom:114.069867pt;}
.y130{bottom:115.430800pt;}
.y8c{bottom:122.512267pt;}
.ybe{bottom:122.964267pt;}
.y19{bottom:123.189600pt;}
.yca{bottom:123.845600pt;}
.y3f{bottom:125.178933pt;}
.yb3{bottom:130.517600pt;}
.y11a{bottom:131.398933pt;}
.y67{bottom:132.732133pt;}
.y10e{bottom:133.017600pt;}
.y12f{bottom:133.030800pt;}
.y8b{bottom:144.292267pt;}
.ybd{bottom:144.742933pt;}
.yb2{bottom:144.967467pt;}
.y18{bottom:144.968133pt;}
.yc9{bottom:145.625600pt;}
.y3e{bottom:146.958933pt;}
.ye5{bottom:149.297600pt;}
.y10d{bottom:150.617600pt;}
.y12e{bottom:150.631467pt;}
.y66{bottom:154.512267pt;}
.yb1{bottom:159.633867pt;}
.y17{bottom:162.752533pt;}
.y8a{bottom:166.070933pt;}
.ybc{bottom:166.522933pt;}
.ye4{bottom:166.897600pt;}
.yc8{bottom:167.404267pt;}
.y10c{bottom:168.217600pt;}
.y119{bottom:168.230933pt;}
.y12d{bottom:168.231467pt;}
.y3d{bottom:168.737600pt;}
.yb0{bottom:178.297600pt;}
.y16{bottom:181.414933pt;}
.y89{bottom:183.855467pt;}
.ydf{bottom:184.497600pt;}
.y10b{bottom:185.817600pt;}
.y118{bottom:185.830933pt;}
.y12c{bottom:185.831467pt;}
.y65{bottom:187.164267pt;}
.ybb{bottom:188.301600pt;}
.y3c{bottom:190.517600pt;}
.y88{bottom:198.521867pt;}
.yaf{bottom:200.076133pt;}
.yde{bottom:202.097600pt;}
.y15{bottom:203.194933pt;}
.y10a{bottom:203.417600pt;}
.yc7{bottom:203.430933pt;}
.y12b{bottom:203.431467pt;}
.y64{bottom:204.764267pt;}
.y3b{bottom:212.297600pt;}
.y87{bottom:217.184267pt;}
.ydd{bottom:219.697600pt;}
.y109{bottom:221.017600pt;}
.yba{bottom:221.030800pt;}
.yc6{bottom:221.030933pt;}
.y12a{bottom:221.031467pt;}
.yae{bottom:221.856267pt;}
.y63{bottom:222.364267pt;}
.y14{bottom:233.416267pt;}
.y3a{bottom:234.076267pt;}
.ydc{bottom:237.297600pt;}
.y108{bottom:238.617600pt;}
.yb9{bottom:238.630933pt;}
.y129{bottom:238.631467pt;}
.y86{bottom:238.964267pt;}
.y62{bottom:239.964267pt;}
.y13{bottom:251.016267pt;}
.yad{bottom:254.897600pt;}
.y107{bottom:256.217600pt;}
.yb8{bottom:256.230933pt;}
.y128{bottom:256.231467pt;}
.y154{bottom:257.370800pt;}
.y61{bottom:257.564267pt;}
.y12{bottom:268.616267pt;}
.yac{bottom:272.497600pt;}
.y106{bottom:273.817600pt;}
.y39{bottom:273.830933pt;}
.y127{bottom:273.831467pt;}
.y60{bottom:275.164267pt;}
.y11{bottom:286.216267pt;}
.y153{bottom:289.370800pt;}
.yab{bottom:290.097600pt;}
.y105{bottom:291.417600pt;}
.y38{bottom:291.430933pt;}
.y126{bottom:291.431467pt;}
.y5f{bottom:292.764267pt;}
.y10{bottom:303.816267pt;}
.y152{bottom:305.370800pt;}
.yaa{bottom:307.697600pt;}
.y104{bottom:309.017600pt;}
.y37{bottom:309.030933pt;}
.y125{bottom:309.031467pt;}
.y5e{bottom:315.248429pt;}
.y151{bottom:321.370800pt;}
.yf{bottom:321.416267pt;}
.y85{bottom:325.284267pt;}
.ya9{bottom:325.297600pt;}
.y103{bottom:326.617600pt;}
.y36{bottom:326.630933pt;}
.y124{bottom:326.631467pt;}
.y5d{bottom:327.964267pt;}
.y150{bottom:337.370800pt;}
.ye{bottom:339.016267pt;}
.y84{bottom:342.884267pt;}
.ya8{bottom:342.897600pt;}
.y102{bottom:344.217600pt;}
.y35{bottom:344.230933pt;}
.y123{bottom:344.231467pt;}
.y5c{bottom:345.564267pt;}
.y14f{bottom:353.370800pt;}
.yd{bottom:356.616267pt;}
.y83{bottom:360.484267pt;}
.ya7{bottom:360.497600pt;}
.y101{bottom:361.817600pt;}
.y34{bottom:361.830933pt;}
.y122{bottom:361.831467pt;}
.y5b{bottom:363.164267pt;}
.y14e{bottom:369.370800pt;}
.yc{bottom:374.216267pt;}
.y82{bottom:378.084267pt;}
.ya6{bottom:378.097600pt;}
.y100{bottom:379.417600pt;}
.y33{bottom:379.430933pt;}
.y121{bottom:379.431467pt;}
.y5a{bottom:380.764267pt;}
.y14d{bottom:385.370800pt;}
.yb{bottom:391.816267pt;}
.y81{bottom:395.684267pt;}
.ya5{bottom:395.697600pt;}
.yff{bottom:397.017600pt;}
.y32{bottom:397.030933pt;}
.y120{bottom:397.031467pt;}
.y59{bottom:398.364267pt;}
.y14c{bottom:401.370800pt;}
.ya{bottom:409.416267pt;}
.y80{bottom:413.284267pt;}
.ydb{bottom:413.297600pt;}
.ya4{bottom:413.298133pt;}
.y135{bottom:414.617067pt;}
.yfe{bottom:414.617600pt;}
.y31{bottom:414.630933pt;}
.y11f{bottom:414.631467pt;}
.y58{bottom:415.964267pt;}
.y14b{bottom:417.370800pt;}
.y9{bottom:427.016267pt;}
.y7f{bottom:430.884267pt;}
.yda{bottom:430.897600pt;}
.ya3{bottom:430.898133pt;}
.y134{bottom:432.217067pt;}
.yfd{bottom:432.217600pt;}
.y30{bottom:432.230933pt;}
.y11e{bottom:432.231467pt;}
.y14a{bottom:433.370800pt;}
.y57{bottom:433.564267pt;}
.y8{bottom:444.616267pt;}
.y7e{bottom:448.484267pt;}
.yd9{bottom:448.497600pt;}
.ya2{bottom:448.498133pt;}
.y149{bottom:449.370800pt;}
.y133{bottom:449.817067pt;}
.yfc{bottom:449.817600pt;}
.y2f{bottom:449.830933pt;}
.y11d{bottom:449.831467pt;}
.y56{bottom:451.164267pt;}
.y7{bottom:462.216267pt;}
.y148{bottom:465.370800pt;}
.y7d{bottom:466.084267pt;}
.yd8{bottom:466.097600pt;}
.ya1{bottom:466.098133pt;}
.y132{bottom:467.417067pt;}
.yfb{bottom:467.417600pt;}
.y2e{bottom:467.430933pt;}
.y117{bottom:467.431467pt;}
.y55{bottom:468.764267pt;}
.y6{bottom:479.816267pt;}
.y147{bottom:481.370800pt;}
.y7c{bottom:483.684267pt;}
.yd7{bottom:483.697600pt;}
.ya0{bottom:483.698133pt;}
.y131{bottom:485.017067pt;}
.yfa{bottom:485.017600pt;}
.y2d{bottom:485.030933pt;}
.y116{bottom:485.031467pt;}
.y54{bottom:486.364267pt;}
.y146{bottom:497.370800pt;}
.y7b{bottom:501.284267pt;}
.yd6{bottom:501.297600pt;}
.y9f{bottom:501.298133pt;}
.yf9{bottom:502.617067pt;}
.y2c{bottom:502.630933pt;}
.y115{bottom:502.631467pt;}
.y53{bottom:503.964267pt;}
.y145{bottom:513.370800pt;}
.y7a{bottom:518.884267pt;}
.yd5{bottom:518.897600pt;}
.y9e{bottom:518.898133pt;}
.yf8{bottom:520.217067pt;}
.y2b{bottom:520.230933pt;}
.y114{bottom:520.231467pt;}
.y52{bottom:521.564267pt;}
.y79{bottom:536.484267pt;}
.yd4{bottom:536.497600pt;}
.y9d{bottom:536.498133pt;}
.yf7{bottom:537.817067pt;}
.y2a{bottom:537.830933pt;}
.y113{bottom:537.831467pt;}
.y51{bottom:539.164267pt;}
.y144{bottom:545.370800pt;}
.y78{bottom:554.084267pt;}
.yd3{bottom:554.097600pt;}
.y9c{bottom:554.098133pt;}
.yf6{bottom:555.417067pt;}
.y29{bottom:555.430933pt;}
.y112{bottom:555.431467pt;}
.y50{bottom:556.764267pt;}
.y77{bottom:571.684267pt;}
.yd2{bottom:571.697600pt;}
.y9b{bottom:571.698133pt;}
.yf5{bottom:573.017067pt;}
.y28{bottom:573.030933pt;}
.y111{bottom:573.031467pt;}
.y4f{bottom:574.364267pt;}
.y143{bottom:577.370800pt;}
.y5{bottom:585.416267pt;}
.y76{bottom:589.284267pt;}
.yd1{bottom:589.297600pt;}
.y9a{bottom:589.298133pt;}
.yf4{bottom:590.617067pt;}
.y27{bottom:590.630933pt;}
.y110{bottom:590.631467pt;}
.y4e{bottom:591.964267pt;}
.y142{bottom:593.370800pt;}
.y4{bottom:601.416267pt;}
.y75{bottom:606.884267pt;}
.yd0{bottom:606.897600pt;}
.y99{bottom:606.898133pt;}
.yf3{bottom:608.217067pt;}
.y26{bottom:608.230933pt;}
.y10f{bottom:608.231467pt;}
.y141{bottom:609.370800pt;}
.y4d{bottom:609.564800pt;}
.y74{bottom:624.484267pt;}
.ycf{bottom:624.497600pt;}
.y98{bottom:624.498133pt;}
.y140{bottom:625.370800pt;}
.yf2{bottom:625.817067pt;}
.y25{bottom:625.830933pt;}
.yb7{bottom:625.831467pt;}
.y4c{bottom:627.164800pt;}
.y13f{bottom:641.370800pt;}
.y73{bottom:642.084267pt;}
.yce{bottom:642.097600pt;}
.y97{bottom:642.098133pt;}
.yf1{bottom:643.417067pt;}
.yc5{bottom:643.430933pt;}
.y24{bottom:643.431467pt;}
.y4b{bottom:644.764800pt;}
.y13e{bottom:657.370800pt;}
.y72{bottom:659.684267pt;}
.ycd{bottom:659.697600pt;}
.y96{bottom:659.698133pt;}
.yf0{bottom:661.017067pt;}
.yc4{bottom:661.030933pt;}
.y23{bottom:661.031467pt;}
.y4a{bottom:662.364800pt;}
.y13d{bottom:673.370800pt;}
.y71{bottom:677.284267pt;}
.ye3{bottom:677.297600pt;}
.y95{bottom:677.298133pt;}
.yef{bottom:678.617067pt;}
.yc3{bottom:678.630933pt;}
.y22{bottom:678.631467pt;}
.y49{bottom:679.964800pt;}
.y3{bottom:688.882933pt;}
.y13c{bottom:689.370800pt;}
.y70{bottom:694.884267pt;}
.ye2{bottom:694.897600pt;}
.y94{bottom:694.898133pt;}
.yee{bottom:696.217067pt;}
.yc2{bottom:696.230933pt;}
.y21{bottom:696.231467pt;}
.y48{bottom:697.564800pt;}
.y13b{bottom:705.370800pt;}
.y2{bottom:709.149600pt;}
.y6f{bottom:712.484267pt;}
.ye1{bottom:712.497600pt;}
.y93{bottom:712.498133pt;}
.yed{bottom:713.817067pt;}
.yc1{bottom:713.830933pt;}
.y20{bottom:713.831467pt;}
.y47{bottom:715.164800pt;}
.y13a{bottom:721.370800pt;}
.y6e{bottom:730.084267pt;}
.ye0{bottom:730.097600pt;}
.y92{bottom:730.098133pt;}
.yec{bottom:731.417067pt;}
.yc0{bottom:731.430933pt;}
.y1f{bottom:731.431467pt;}
.y46{bottom:732.764800pt;}
.y139{bottom:737.370800pt;}
.y6d{bottom:747.683733pt;}
.y91{bottom:747.698133pt;}
.yeb{bottom:749.017067pt;}
.y1e{bottom:749.031467pt;}
.y45{bottom:750.364800pt;}
.y138{bottom:753.370800pt;}
.y6c{bottom:765.283733pt;}
.y90{bottom:765.298133pt;}
.yea{bottom:766.617067pt;}
.y1d{bottom:766.631467pt;}
.y44{bottom:767.964800pt;}
.y137{bottom:769.370800pt;}
.y6b{bottom:782.883733pt;}
.y8f{bottom:782.898133pt;}
.ye9{bottom:784.217067pt;}
.y1c{bottom:784.231467pt;}
.y136{bottom:785.370800pt;}
.y43{bottom:785.564800pt;}
.y42{bottom:823.785467pt;}
.y1b{bottom:824.888133pt;}
.h13{height:26.127854pt;}
.h16{height:26.132654pt;}
.h8{height:26.133188pt;}
.h15{height:26.133721pt;}
.hd{height:26.245042pt;}
.h14{height:26.249842pt;}
.h9{height:26.250375pt;}
.hb{height:26.250908pt;}
.h10{height:32.083140pt;}
.he{height:33.158854pt;}
.ha{height:42.117188pt;}
.h11{height:42.234375pt;}
.h2{height:42.632812pt;}
.hc{height:42.959125pt;}
.h5{height:46.796875pt;}
.h17{height:46.927083pt;}
.hf{height:47.369792pt;}
.h4{height:49.914247pt;}
.h7{height:51.476562pt;}
.h12{height:51.478696pt;}
.h6{height:51.619792pt;}
.h3{height:75.791667pt;}
.h0{height:870.381600pt;}
.h1{height:870.666667pt;}
.w1{width:605.333333pt;}
.w0{width:605.356933pt;}
.x0{left:0.000000pt;}
.x1{left:84.421467pt;}
.xd{left:86.868267pt;}
.x9{left:88.200933pt;}
.x2{left:96.384933pt;}
.xe{left:98.867600pt;}
.xb{left:100.200933pt;}
.x6{left:114.658267pt;}
.xc{left:117.103600pt;}
.xa{left:118.434933pt;}
.x3{left:136.696400pt;}
.x8{left:156.084933pt;}
.x5{left:175.440933pt;}
.x10{left:265.559600pt;}
.xf{left:272.483600pt;}
.x4{left:350.994267pt;}
.x7{left:512.064933pt;}
}




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