
    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_d7bfe3655e0450831897b1be.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943000;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_675f72fb6a314fe1095f3e6c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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;}
.ff3{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3d698c3fc58ea5fbc2a9a2b9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_9b526e5087a814cadb311f60.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_8a91df6dfd0b377b217ee326.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.580000;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:-16.878000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000538px;}
.ls3{letter-spacing:0.002338px;}
.ls1{letter-spacing:2.991857px;}
.ls0{letter-spacing:22.058666px;}
.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;}
}
.ws1{word-spacing:-18.944143px;}
.ws1a{word-spacing:-15.786786px;}
.ws1d{word-spacing:-5.849061px;}
.ws3b{word-spacing:-3.804729px;}
.ws5b{word-spacing:-2.839350px;}
.ws6b{word-spacing:-2.725776px;}
.ws71{word-spacing:-2.555415px;}
.ws33{word-spacing:-2.498628px;}
.ws23{word-spacing:-2.441841px;}
.ws31{word-spacing:-2.157906px;}
.ws40{word-spacing:-1.987545px;}
.ws5c{word-spacing:-1.873971px;}
.ws12{word-spacing:-1.817184px;}
.wsf{word-spacing:-1.533249px;}
.ws10{word-spacing:-0.851805px;}
.ws3f{word-spacing:-0.795018px;}
.ws2f{word-spacing:-0.738231px;}
.ws54{word-spacing:-0.567870px;}
.ws66{word-spacing:-0.562188px;}
.ws5a{word-spacing:-0.511083px;}
.ws1b{word-spacing:-0.454296px;}
.ws15{word-spacing:-0.283935px;}
.ws6d{word-spacing:-0.113574px;}
.ws7b{word-spacing:-0.059776px;}
.ws2e{word-spacing:-0.056787px;}
.ws0{word-spacing:0.000000px;}
.ws26{word-spacing:0.056787px;}
.ws50{word-spacing:0.170361px;}
.ws7d{word-spacing:0.227148px;}
.ws48{word-spacing:0.283935px;}
.ws29{word-spacing:0.397509px;}
.ws11{word-spacing:0.454296px;}
.ws22{word-spacing:0.511083px;}
.ws3e{word-spacing:0.567870px;}
.ws6a{word-spacing:0.681444px;}
.ws53{word-spacing:0.738231px;}
.ws4d{word-spacing:0.795018px;}
.ws49{word-spacing:0.851805px;}
.ws4e{word-spacing:0.908592px;}
.ws25{word-spacing:0.965379px;}
.ws14{word-spacing:1.022166px;}
.ws74{word-spacing:1.078953px;}
.ws30{word-spacing:1.135740px;}
.ws21{word-spacing:1.192527px;}
.ws17{word-spacing:1.249314px;}
.ws3a{word-spacing:1.306101px;}
.ws32{word-spacing:1.362888px;}
.ws77{word-spacing:1.476462px;}
.ws58{word-spacing:1.482132px;}
.ws4b{word-spacing:1.533249px;}
.ws63{word-spacing:1.590036px;}
.ws5d{word-spacing:1.646823px;}
.ws42{word-spacing:1.760397px;}
.ws79{word-spacing:1.817184px;}
.ws24{word-spacing:1.987545px;}
.ws70{word-spacing:2.044332px;}
.ws55{word-spacing:2.157906px;}
.ws7{word-spacing:2.214693px;}
.ws2c{word-spacing:2.328267px;}
.ws72{word-spacing:2.385054px;}
.ws1c{word-spacing:2.498628px;}
.ws39{word-spacing:2.612202px;}
.wse{word-spacing:2.668989px;}
.ws51{word-spacing:2.725776px;}
.ws6c{word-spacing:2.839350px;}
.ws1f{word-spacing:3.066498px;}
.ws41{word-spacing:3.180072px;}
.ws9{word-spacing:3.293646px;}
.wsb{word-spacing:3.350433px;}
.ws75{word-spacing:3.407220px;}
.ws3{word-spacing:3.577581px;}
.ws2b{word-spacing:3.634368px;}
.ws69{word-spacing:3.691155px;}
.ws5f{word-spacing:3.747942px;}
.ws2d{word-spacing:3.781992px;}
.ws4c{word-spacing:3.804729px;}
.ws47{word-spacing:3.861516px;}
.ws6f{word-spacing:3.918303px;}
.ws2a{word-spacing:3.975090px;}
.ws5{word-spacing:4.031877px;}
.ws37{word-spacing:4.145451px;}
.ws60{word-spacing:4.315812px;}
.ws59{word-spacing:4.372599px;}
.ws27{word-spacing:4.429386px;}
.wsa{word-spacing:4.486173px;}
.ws62{word-spacing:4.656534px;}
.ws36{word-spacing:4.883682px;}
.ws2{word-spacing:4.940469px;}
.ws61{word-spacing:4.997256px;}
.ws4f{word-spacing:5.054043px;}
.ws13{word-spacing:5.110830px;}
.ws76{word-spacing:5.337978px;}
.ws8{word-spacing:5.394765px;}
.ws64{word-spacing:5.451552px;}
.ws38{word-spacing:5.565126px;}
.ws6{word-spacing:5.678700px;}
.ws52{word-spacing:5.735487px;}
.ws16{word-spacing:5.792274px;}
.ws57{word-spacing:5.826312px;}
.ws4{word-spacing:5.849061px;}
.ws20{word-spacing:5.905848px;}
.wsc{word-spacing:6.019422px;}
.ws18{word-spacing:6.132996px;}
.ws78{word-spacing:6.189783px;}
.ws7e{word-spacing:6.243807px;}
.ws73{word-spacing:6.303357px;}
.ws45{word-spacing:6.360144px;}
.ws3c{word-spacing:6.416931px;}
.ws44{word-spacing:6.587292px;}
.ws43{word-spacing:7.155162px;}
.ws3d{word-spacing:7.268736px;}
.ws19{word-spacing:7.382310px;}
.ws68{word-spacing:7.439097px;}
.ws56{word-spacing:7.495884px;}
.ws5e{word-spacing:7.552671px;}
.ws67{word-spacing:7.666245px;}
.ws1e{word-spacing:7.836606px;}
.ws35{word-spacing:8.290902px;}
.ws6e{word-spacing:8.518050px;}
.ws4a{word-spacing:8.688411px;}
.ws28{word-spacing:9.142707px;}
.wsd{word-spacing:9.256281px;}
.ws46{word-spacing:9.313068px;}
.ws34{word-spacing:9.710577px;}
.ws7a{word-spacing:30.153897px;}
.ws7f{word-spacing:35.832597px;}
.ws80{word-spacing:46.281405px;}
.ws7c{word-spacing:49.063968px;}
.ws65{word-spacing:71.721981px;}
.ws82{word-spacing:73.095843px;}
.ws83{word-spacing:73.141656px;}
.ws81{word-spacing:98.695806px;}
._17{margin-left:-6.280642px;}
._9{margin-left:-4.493535px;}
._18{margin-left:-3.316361px;}
._1{margin-left:-1.998902px;}
._0{width:1.249314px;}
._2{width:2.339624px;}
._5{width:8.745198px;}
._f{width:9.937725px;}
._1a{width:15.494860px;}
._b{width:16.502302px;}
._8{width:19.035002px;}
._16{width:20.579609px;}
._d{width:21.590417px;}
._6{width:23.407601px;}
._1c{width:24.425772px;}
._c{width:26.292381px;}
._15{width:28.518431px;}
._3{width:30.267471px;}
._19{width:31.709861px;}
._a{width:33.015962px;}
._1b{width:34.651427px;}
._4{width:36.411824px;}
._7{width:37.445348px;}
._1d{width:38.501586px;}
._1e{width:41.325583px;}
._14{width:42.510748px;}
._28{width:45.202452px;}
._2a{width:53.493354px;}
._2c{width:61.579823px;}
._10{width:71.447070px;}
._20{width:87.508767px;}
._29{width:111.964616px;}
._2b{width:129.088208px;}
._2e{width:140.116244px;}
._e{width:208.004452px;}
._27{width:227.958323px;}
._25{width:230.303450px;}
._2d{width:315.792507px;}
._23{width:326.159906px;}
._12{width:352.203141px;}
._24{width:406.275005px;}
._13{width:445.145884px;}
._26{width:466.112640px;}
._22{width:484.965426px;}
._11{width:537.157257px;}
._1f{width:564.031649px;}
._21{width:652.259928px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:34.072200px;}
.fs3{font-size:39.750600px;}
.fs6{font-size:45.429600px;}
.fs7{font-size:51.108000px;}
.fs2{font-size:56.787000px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:68.144400px;}
.fs0{font-size:124.931400px;}
.y0{bottom:0.000000px;}
.y6f{bottom:100.753500px;}
.y2b{bottom:104.973000px;}
.y6e{bottom:118.686000px;}
.y48{bottom:122.965500px;}
.y2a{bottom:126.685500px;}
.y91{bottom:136.618500px;}
.y6d{bottom:137.196000px;}
.y47{bottom:140.898000px;}
.y29{bottom:144.618000px;}
.y90{bottom:154.551000px;}
.yd2{bottom:154.552500px;}
.y6c{bottom:155.128500px;}
.y28{bottom:162.550500px;}
.y8f{bottom:172.485000px;}
.y6b{bottom:173.061000px;}
.y27{bottom:180.483000px;}
.y8e{bottom:190.417500px;}
.y6a{bottom:190.995000px;}
.yb0{bottom:191.838000px;}
.y26{bottom:198.417000px;}
.yd1{bottom:208.350000px;}
.y69{bottom:209.503500px;}
.yaf{bottom:209.770500px;}
.y8d{bottom:210.363000px;}
.y25{bottom:216.349500px;}
.y68{bottom:227.437500px;}
.yae{bottom:227.703000px;}
.y8c{bottom:228.295500px;}
.yd0{bottom:233.020500px;}
.y24{bottom:234.282000px;}
.y67{bottom:245.370000px;}
.yad{bottom:245.635500px;}
.y8b{bottom:246.229500px;}
.ycf{bottom:250.953000px;}
.y23{bottom:252.214500px;}
.y66{bottom:263.302500px;}
.yac{bottom:263.569500px;}
.y8a{bottom:264.162000px;}
.yce{bottom:268.885500px;}
.y22{bottom:270.147000px;}
.yf6{bottom:280.071000px;}
.y65{bottom:281.235000px;}
.yab{bottom:281.502000px;}
.y89{bottom:282.094500px;}
.ycd{bottom:286.818000px;}
.y21{bottom:288.081000px;}
.yf5{bottom:298.003500px;}
.y64{bottom:299.167500px;}
.yaa{bottom:299.434500px;}
.ycc{bottom:304.752000px;}
.y20{bottom:306.013500px;}
.y88{bottom:313.995000px;}
.yf4{bottom:315.936000px;}
.y63{bottom:317.100000px;}
.ya9{bottom:317.367000px;}
.ycb{bottom:322.684500px;}
.y62{bottom:335.034000px;}
.y1f{bottom:335.901000px;}
.ya8{bottom:336.720000px;}
.yca{bottom:340.617000px;}
.yf3{bottom:345.825000px;}
.y87{bottom:351.874500px;}
.ya7{bottom:354.652500px;}
.yf2{bottom:363.757500px;}
.y61{bottom:365.499000px;}
.y86{bottom:369.807000px;}
.y1e{bottom:371.766000px;}
.ya6{bottom:374.007000px;}
.yc9{bottom:377.242500px;}
.yf1{bottom:381.690000px;}
.y85{bottom:387.739500px;}
.y1d{bottom:389.698500px;}
.ya5{bottom:391.939500px;}
.yf0{bottom:399.622500px;}
.y60{bottom:401.941500px;}
.y84{bottom:405.673500px;}
.y1c{bottom:407.632500px;}
.ya4{bottom:409.872000px;}
.yc8{bottom:419.845500px;}
.y5f{bottom:419.874000px;}
.y83{bottom:423.606000px;}
.y1b{bottom:425.565000px;}
.ya3{bottom:427.804500px;}
.yef{bottom:429.511500px;}
.yc7{bottom:437.778000px;}
.y5e{bottom:437.806500px;}
.y82{bottom:441.538500px;}
.y1a{bottom:443.497500px;}
.yee{bottom:447.444000px;}
.yc6{bottom:455.710500px;}
.y5d{bottom:456.316500px;}
.ya2{bottom:459.112500px;}
.y81{bottom:459.471000px;}
.y19{bottom:461.430000px;}
.yc5{bottom:473.643000px;}
.y5c{bottom:474.249000px;}
.yed{bottom:477.331500px;}
.y80{bottom:477.403500px;}
.y18{bottom:479.362500px;}
.y5b{bottom:492.181500px;}
.yec{bottom:495.264000px;}
.y7f{bottom:495.336000px;}
.ya1{bottom:496.399500px;}
.y17{bottom:497.296500px;}
.y46{bottom:497.781000px;}
.y5a{bottom:510.114000px;}
.yc4{bottom:510.268500px;}
.ya0{bottom:514.332000px;}
.y16{bottom:515.229000px;}
.y45{bottom:515.715000px;}
.yeb{bottom:525.151500px;}
.y7e{bottom:527.238000px;}
.y59{bottom:528.046500px;}
.y9f{bottom:532.264500px;}
.y15{bottom:533.161500px;}
.y44{bottom:533.647500px;}
.yea{bottom:543.085500px;}
.y58{bottom:545.980500px;}
.y9e{bottom:550.197000px;}
.y14{bottom:551.094000px;}
.y43{bottom:551.580000px;}
.yc3{bottom:552.871500px;}
.ye9{bottom:561.018000px;}
.y57{bottom:564.489000px;}
.y7d{bottom:565.117500px;}
.y9d{bottom:568.129500px;}
.y13{bottom:569.026500px;}
.y42{bottom:569.512500px;}
.yc2{bottom:570.804000px;}
.y56{bottom:582.423000px;}
.y7c{bottom:583.050000px;}
.y12{bottom:586.959000px;}
.y41{bottom:587.445000px;}
.y9c{bottom:587.484000px;}
.yc1{bottom:588.738000px;}
.ye8{bottom:590.905500px;}
.y55{bottom:600.355500px;}
.y7b{bottom:600.982500px;}
.y40{bottom:605.377500px;}
.y9b{bottom:605.416500px;}
.yc0{bottom:606.670500px;}
.y11{bottom:616.848000px;}
.y54{bottom:618.865500px;}
.y7a{bottom:618.915000px;}
.y3f{bottom:623.311500px;}
.y9a{bottom:623.349000px;}
.ye7{bottom:626.770500px;}
.ybf{bottom:631.339500px;}
.y53{bottom:636.798000px;}
.y79{bottom:636.847500px;}
.y99{bottom:641.281500px;}
.ye6{bottom:644.704500px;}
.ybe{bottom:649.273500px;}
.y10{bottom:651.246000px;}
.y52{bottom:654.730500px;}
.y78{bottom:654.780000px;}
.y3e{bottom:654.834000px;}
.ye5{bottom:662.637000px;}
.ybd{bottom:667.206000px;}
.yf{bottom:669.178500px;}
.y51{bottom:673.240500px;}
.y98{bottom:679.695000px;}
.ybc{bottom:685.138500px;}
.y77{bottom:686.682000px;}
.ye{bottom:687.111000px;}
.y50{bottom:691.173000px;}
.y3d{bottom:692.334000px;}
.ye4{bottom:692.524500px;}
.y97{bottom:697.627500px;}
.yd{bottom:705.043500px;}
.y4f{bottom:709.105500px;}
.y3c{bottom:710.266500px;}
.y96{bottom:715.560000px;}
.ybb{bottom:721.764000px;}
.yc{bottom:722.977500px;}
.y76{bottom:724.560000px;}
.y4e{bottom:727.038000px;}
.y3b{bottom:728.199000px;}
.ye3{bottom:728.389500px;}
.yb{bottom:740.910000px;}
.y75{bottom:742.494000px;}
.y3a{bottom:746.131500px;}
.ye2{bottom:746.323500px;}
.ya{bottom:758.842500px;}
.y74{bottom:760.426500px;}
.y4d{bottom:763.764000px;}
.y39{bottom:764.064000px;}
.ye1{bottom:764.256000px;}
.yba{bottom:764.367000px;}
.y9{bottom:776.775000px;}
.y73{bottom:778.359000px;}
.y38{bottom:781.998000px;}
.ye0{bottom:782.188500px;}
.yb9{bottom:782.299500px;}
.y72{bottom:796.291500px;}
.y37{bottom:799.930500px;}
.ydf{bottom:800.121000px;}
.yb8{bottom:800.232000px;}
.y8{bottom:808.185000px;}
.y71{bottom:814.224000px;}
.y36{bottom:817.863000px;}
.yde{bottom:818.053500px;}
.yb7{bottom:818.164500px;}
.ydd{bottom:847.942500px;}
.y35{bottom:849.385500px;}
.y7{bottom:857.415000px;}
.y70{bottom:865.728000px;}
.y6{bottom:878.337000px;}
.yb6{bottom:879.117000px;}
.ydc{bottom:883.807500px;}
.y34{bottom:886.885500px;}
.yb5{bottom:897.049500px;}
.y5{bottom:899.257500px;}
.ydb{bottom:901.740000px;}
.y33{bottom:904.818000px;}
.yda{bottom:919.672500px;}
.y4{bottom:920.179500px;}
.y32{bottom:922.750500px;}
.yb4{bottom:928.639500px;}
.yd9{bottom:937.605000px;}
.y3{bottom:941.101500px;}
.yb3{bottom:947.170500px;}
.yd8{bottom:955.539000px;}
.yb2{bottom:965.700000px;}
.y31{bottom:971.172000px;}
.yd7{bottom:973.471500px;}
.y2{bottom:983.317500px;}
.yb1{bottom:984.231000px;}
.y95{bottom:989.983500px;}
.yd6{bottom:991.404000px;}
.y30{bottom:1002.762000px;}
.y94{bottom:1007.916000px;}
.y4c{bottom:1008.759000px;}
.yd5{bottom:1009.336500px;}
.y2f{bottom:1021.291500px;}
.y1{bottom:1025.161500px;}
.y93{bottom:1025.848500px;}
.y4b{bottom:1026.693000px;}
.yd4{bottom:1027.269000px;}
.y2e{bottom:1039.822500px;}
.y92{bottom:1043.781000px;}
.y4a{bottom:1044.625500px;}
.yd3{bottom:1045.201500px;}
.y2d{bottom:1058.353500px;}
.y49{bottom:1075.090500px;}
.y2c{bottom:1076.883000px;}
.h7{height:24.804562px;}
.hb{height:32.278824px;}
.h9{height:37.206624px;}
.h4{height:41.340936px;}
.ha{height:44.831700px;}
.h3{height:49.609123px;}
.h8{height:50.628437px;}
.h5{height:50.634437px;}
.h6{height:56.786820px;}
.h2{height:90.950059px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:135.000000px;}
.x22{left:142.470000px;}
.xe{left:149.959500px;}
.xa{left:157.416000px;}
.x23{left:163.765500px;}
.x9{left:168.063000px;}
.x24{left:175.389000px;}
.x1{left:187.866000px;}
.x17{left:197.106000px;}
.x11{left:216.420000px;}
.x2{left:249.612000px;}
.x4{left:258.933000px;}
.x10{left:261.424500px;}
.x3{left:269.971500px;}
.x15{left:274.917000px;}
.x21{left:296.185500px;}
.x13{left:304.924500px;}
.x1c{left:307.236000px;}
.xc{left:328.741500px;}
.x1a{left:332.812500px;}
.x7{left:337.179000px;}
.xf{left:350.485500px;}
.x5{left:384.795000px;}
.x25{left:395.011500px;}
.x6{left:397.393500px;}
.x12{left:404.668500px;}
.x8{left:419.548500px;}
.x1b{left:450.468000px;}
.x16{left:478.852500px;}
.xd{left:485.614500px;}
.x14{left:493.171500px;}
.x18{left:548.109000px;}
.x26{left:563.791500px;}
.x1f{left:643.210500px;}
.x20{left:694.765500px;}
.x1d{left:745.803000px;}
.x19{left:759.888000px;}
.x27{left:763.663500px;}
.x1e{left:769.333500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000479pt;}
.ls3{letter-spacing:0.002079pt;}
.ls1{letter-spacing:2.659428pt;}
.ls0{letter-spacing:19.607703pt;}
.ws1{word-spacing:-16.839238pt;}
.ws1a{word-spacing:-14.032699pt;}
.ws1d{word-spacing:-5.199165pt;}
.ws3b{word-spacing:-3.381981pt;}
.ws5b{word-spacing:-2.523867pt;}
.ws6b{word-spacing:-2.422912pt;}
.ws71{word-spacing:-2.271480pt;}
.ws33{word-spacing:-2.221003pt;}
.ws23{word-spacing:-2.170525pt;}
.ws31{word-spacing:-1.918139pt;}
.ws40{word-spacing:-1.766707pt;}
.ws5c{word-spacing:-1.665752pt;}
.ws12{word-spacing:-1.615275pt;}
.wsf{word-spacing:-1.362888pt;}
.ws10{word-spacing:-0.757160pt;}
.ws3f{word-spacing:-0.706683pt;}
.ws2f{word-spacing:-0.656205pt;}
.ws54{word-spacing:-0.504773pt;}
.ws66{word-spacing:-0.499723pt;}
.ws5a{word-spacing:-0.454296pt;}
.ws1b{word-spacing:-0.403819pt;}
.ws15{word-spacing:-0.252387pt;}
.ws6d{word-spacing:-0.100955pt;}
.ws7b{word-spacing:-0.053134pt;}
.ws2e{word-spacing:-0.050477pt;}
.ws0{word-spacing:0.000000pt;}
.ws26{word-spacing:0.050477pt;}
.ws50{word-spacing:0.151432pt;}
.ws7d{word-spacing:0.201909pt;}
.ws48{word-spacing:0.252387pt;}
.ws29{word-spacing:0.353341pt;}
.ws11{word-spacing:0.403819pt;}
.ws22{word-spacing:0.454296pt;}
.ws3e{word-spacing:0.504773pt;}
.ws6a{word-spacing:0.605728pt;}
.ws53{word-spacing:0.656205pt;}
.ws4d{word-spacing:0.706683pt;}
.ws49{word-spacing:0.757160pt;}
.ws4e{word-spacing:0.807637pt;}
.ws25{word-spacing:0.858115pt;}
.ws14{word-spacing:0.908592pt;}
.ws74{word-spacing:0.959069pt;}
.ws30{word-spacing:1.009547pt;}
.ws21{word-spacing:1.060024pt;}
.ws17{word-spacing:1.110501pt;}
.ws3a{word-spacing:1.160979pt;}
.ws32{word-spacing:1.211456pt;}
.ws77{word-spacing:1.312411pt;}
.ws58{word-spacing:1.317451pt;}
.ws4b{word-spacing:1.362888pt;}
.ws63{word-spacing:1.413365pt;}
.ws5d{word-spacing:1.463843pt;}
.ws42{word-spacing:1.564797pt;}
.ws79{word-spacing:1.615275pt;}
.ws24{word-spacing:1.766707pt;}
.ws70{word-spacing:1.817184pt;}
.ws55{word-spacing:1.918139pt;}
.ws7{word-spacing:1.968616pt;}
.ws2c{word-spacing:2.069571pt;}
.ws72{word-spacing:2.120048pt;}
.ws1c{word-spacing:2.221003pt;}
.ws39{word-spacing:2.321957pt;}
.wse{word-spacing:2.372435pt;}
.ws51{word-spacing:2.422912pt;}
.ws6c{word-spacing:2.523867pt;}
.ws1f{word-spacing:2.725776pt;}
.ws41{word-spacing:2.826731pt;}
.ws9{word-spacing:2.927685pt;}
.wsb{word-spacing:2.978163pt;}
.ws75{word-spacing:3.028640pt;}
.ws3{word-spacing:3.180072pt;}
.ws2b{word-spacing:3.230549pt;}
.ws69{word-spacing:3.281027pt;}
.ws5f{word-spacing:3.331504pt;}
.ws2d{word-spacing:3.361771pt;}
.ws4c{word-spacing:3.381981pt;}
.ws47{word-spacing:3.432459pt;}
.ws6f{word-spacing:3.482936pt;}
.ws2a{word-spacing:3.533413pt;}
.ws5{word-spacing:3.583891pt;}
.ws37{word-spacing:3.684845pt;}
.ws60{word-spacing:3.836277pt;}
.ws59{word-spacing:3.886755pt;}
.ws27{word-spacing:3.937232pt;}
.wsa{word-spacing:3.987709pt;}
.ws62{word-spacing:4.139141pt;}
.ws36{word-spacing:4.341051pt;}
.ws2{word-spacing:4.391528pt;}
.ws61{word-spacing:4.442005pt;}
.ws4f{word-spacing:4.492483pt;}
.ws13{word-spacing:4.542960pt;}
.ws76{word-spacing:4.744869pt;}
.ws8{word-spacing:4.795347pt;}
.ws64{word-spacing:4.845824pt;}
.ws38{word-spacing:4.946779pt;}
.ws6{word-spacing:5.047733pt;}
.ws52{word-spacing:5.098211pt;}
.ws16{word-spacing:5.148688pt;}
.ws57{word-spacing:5.178944pt;}
.ws4{word-spacing:5.199165pt;}
.ws20{word-spacing:5.249643pt;}
.wsc{word-spacing:5.350597pt;}
.ws18{word-spacing:5.451552pt;}
.ws78{word-spacing:5.502029pt;}
.ws7e{word-spacing:5.550051pt;}
.ws73{word-spacing:5.602984pt;}
.ws45{word-spacing:5.653461pt;}
.ws3c{word-spacing:5.703939pt;}
.ws44{word-spacing:5.855371pt;}
.ws43{word-spacing:6.360144pt;}
.ws3d{word-spacing:6.461099pt;}
.ws19{word-spacing:6.562053pt;}
.ws68{word-spacing:6.612531pt;}
.ws56{word-spacing:6.663008pt;}
.ws5e{word-spacing:6.713485pt;}
.ws67{word-spacing:6.814440pt;}
.ws1e{word-spacing:6.965872pt;}
.ws35{word-spacing:7.369691pt;}
.ws6e{word-spacing:7.571600pt;}
.ws4a{word-spacing:7.723032pt;}
.ws28{word-spacing:8.126851pt;}
.wsd{word-spacing:8.227805pt;}
.ws46{word-spacing:8.278283pt;}
.ws34{word-spacing:8.631624pt;}
.ws7a{word-spacing:26.803464pt;}
.ws7f{word-spacing:31.851197pt;}
.ws80{word-spacing:41.139027pt;}
.ws7c{word-spacing:43.612416pt;}
.ws65{word-spacing:63.752872pt;}
.ws82{word-spacing:64.974083pt;}
.ws83{word-spacing:65.014805pt;}
.ws81{word-spacing:87.729605pt;}
._17{margin-left:-5.582793pt;}
._9{margin-left:-3.994253pt;}
._18{margin-left:-2.947876pt;}
._1{margin-left:-1.776802pt;}
._0{width:1.110501pt;}
._2{width:2.079666pt;}
._5{width:7.773509pt;}
._f{width:8.833533pt;}
._1a{width:13.773209pt;}
._b{width:14.668713pt;}
._8{width:16.920002pt;}
._16{width:18.292986pt;}
._d{width:19.191482pt;}
._6{width:20.806757pt;}
._1c{width:21.711797pt;}
._c{width:23.371005pt;}
._15{width:25.349717pt;}
._3{width:26.904419pt;}
._19{width:28.186543pt;}
._a{width:29.347522pt;}
._1b{width:30.801269pt;}
._4{width:32.366066pt;}
._7{width:33.284754pt;}
._1d{width:34.223632pt;}
._1e{width:36.733852pt;}
._14{width:37.787332pt;}
._28{width:40.179957pt;}
._2a{width:47.549648pt;}
._2c{width:54.737620pt;}
._10{width:63.508507pt;}
._20{width:77.785571pt;}
._29{width:99.524103pt;}
._2b{width:114.745074pt;}
._2e{width:124.547772pt;}
._e{width:184.892846pt;}
._27{width:202.629621pt;}
._25{width:204.714178pt;}
._2d{width:280.704451pt;}
._23{width:289.919916pt;}
._12{width:313.069459pt;}
._24{width:361.133338pt;}
._13{width:395.685230pt;}
._26{width:414.322347pt;}
._22{width:431.080379pt;}
._11{width:477.473117pt;}
._1f{width:501.361466pt;}
._21{width:579.786603pt;}
.fs5{font-size:30.286400pt;}
.fs3{font-size:35.333867pt;}
.fs6{font-size:40.381867pt;}
.fs7{font-size:45.429333pt;}
.fs2{font-size:50.477333pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:60.572800pt;}
.fs0{font-size:111.050133pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:89.558667pt;}
.y2b{bottom:93.309333pt;}
.y6e{bottom:105.498667pt;}
.y48{bottom:109.302667pt;}
.y2a{bottom:112.609333pt;}
.y91{bottom:121.438667pt;}
.y6d{bottom:121.952000pt;}
.y47{bottom:125.242667pt;}
.y29{bottom:128.549333pt;}
.y90{bottom:137.378667pt;}
.yd2{bottom:137.380000pt;}
.y6c{bottom:137.892000pt;}
.y28{bottom:144.489333pt;}
.y8f{bottom:153.320000pt;}
.y6b{bottom:153.832000pt;}
.y27{bottom:160.429333pt;}
.y8e{bottom:169.260000pt;}
.y6a{bottom:169.773333pt;}
.yb0{bottom:170.522667pt;}
.y26{bottom:176.370667pt;}
.yd1{bottom:185.200000pt;}
.y69{bottom:186.225333pt;}
.yaf{bottom:186.462667pt;}
.y8d{bottom:186.989333pt;}
.y25{bottom:192.310667pt;}
.y68{bottom:202.166667pt;}
.yae{bottom:202.402667pt;}
.y8c{bottom:202.929333pt;}
.yd0{bottom:207.129333pt;}
.y24{bottom:208.250667pt;}
.y67{bottom:218.106667pt;}
.yad{bottom:218.342667pt;}
.y8b{bottom:218.870667pt;}
.ycf{bottom:223.069333pt;}
.y23{bottom:224.190667pt;}
.y66{bottom:234.046667pt;}
.yac{bottom:234.284000pt;}
.y8a{bottom:234.810667pt;}
.yce{bottom:239.009333pt;}
.y22{bottom:240.130667pt;}
.yf6{bottom:248.952000pt;}
.y65{bottom:249.986667pt;}
.yab{bottom:250.224000pt;}
.y89{bottom:250.750667pt;}
.ycd{bottom:254.949333pt;}
.y21{bottom:256.072000pt;}
.yf5{bottom:264.892000pt;}
.y64{bottom:265.926667pt;}
.yaa{bottom:266.164000pt;}
.ycc{bottom:270.890667pt;}
.y20{bottom:272.012000pt;}
.y88{bottom:279.106667pt;}
.yf4{bottom:280.832000pt;}
.y63{bottom:281.866667pt;}
.ya9{bottom:282.104000pt;}
.ycb{bottom:286.830667pt;}
.y62{bottom:297.808000pt;}
.y1f{bottom:298.578667pt;}
.ya8{bottom:299.306667pt;}
.yca{bottom:302.770667pt;}
.yf3{bottom:307.400000pt;}
.y87{bottom:312.777333pt;}
.ya7{bottom:315.246667pt;}
.yf2{bottom:323.340000pt;}
.y61{bottom:324.888000pt;}
.y86{bottom:328.717333pt;}
.y1e{bottom:330.458667pt;}
.ya6{bottom:332.450667pt;}
.yc9{bottom:335.326667pt;}
.yf1{bottom:339.280000pt;}
.y85{bottom:344.657333pt;}
.y1d{bottom:346.398667pt;}
.ya5{bottom:348.390667pt;}
.yf0{bottom:355.220000pt;}
.y60{bottom:357.281333pt;}
.y84{bottom:360.598667pt;}
.y1c{bottom:362.340000pt;}
.ya4{bottom:364.330667pt;}
.yc8{bottom:373.196000pt;}
.y5f{bottom:373.221333pt;}
.y83{bottom:376.538667pt;}
.y1b{bottom:378.280000pt;}
.ya3{bottom:380.270667pt;}
.yef{bottom:381.788000pt;}
.yc7{bottom:389.136000pt;}
.y5e{bottom:389.161333pt;}
.y82{bottom:392.478667pt;}
.y1a{bottom:394.220000pt;}
.yee{bottom:397.728000pt;}
.yc6{bottom:405.076000pt;}
.y5d{bottom:405.614667pt;}
.ya2{bottom:408.100000pt;}
.y81{bottom:408.418667pt;}
.y19{bottom:410.160000pt;}
.yc5{bottom:421.016000pt;}
.y5c{bottom:421.554667pt;}
.yed{bottom:424.294667pt;}
.y80{bottom:424.358667pt;}
.y18{bottom:426.100000pt;}
.y5b{bottom:437.494667pt;}
.yec{bottom:440.234667pt;}
.y7f{bottom:440.298667pt;}
.ya1{bottom:441.244000pt;}
.y17{bottom:442.041333pt;}
.y46{bottom:442.472000pt;}
.y5a{bottom:453.434667pt;}
.yc4{bottom:453.572000pt;}
.ya0{bottom:457.184000pt;}
.y16{bottom:457.981333pt;}
.y45{bottom:458.413333pt;}
.yeb{bottom:466.801333pt;}
.y7e{bottom:468.656000pt;}
.y59{bottom:469.374667pt;}
.y9f{bottom:473.124000pt;}
.y15{bottom:473.921333pt;}
.y44{bottom:474.353333pt;}
.yea{bottom:482.742667pt;}
.y58{bottom:485.316000pt;}
.y9e{bottom:489.064000pt;}
.y14{bottom:489.861333pt;}
.y43{bottom:490.293333pt;}
.yc3{bottom:491.441333pt;}
.ye9{bottom:498.682667pt;}
.y57{bottom:501.768000pt;}
.y7d{bottom:502.326667pt;}
.y9d{bottom:505.004000pt;}
.y13{bottom:505.801333pt;}
.y42{bottom:506.233333pt;}
.yc2{bottom:507.381333pt;}
.y56{bottom:517.709333pt;}
.y7c{bottom:518.266667pt;}
.y12{bottom:521.741333pt;}
.y41{bottom:522.173333pt;}
.y9c{bottom:522.208000pt;}
.yc1{bottom:523.322667pt;}
.ye8{bottom:525.249333pt;}
.y55{bottom:533.649333pt;}
.y7b{bottom:534.206667pt;}
.y40{bottom:538.113333pt;}
.y9b{bottom:538.148000pt;}
.yc0{bottom:539.262667pt;}
.y11{bottom:548.309333pt;}
.y54{bottom:550.102667pt;}
.y7a{bottom:550.146667pt;}
.y3f{bottom:554.054667pt;}
.y9a{bottom:554.088000pt;}
.ye7{bottom:557.129333pt;}
.ybf{bottom:561.190667pt;}
.y53{bottom:566.042667pt;}
.y79{bottom:566.086667pt;}
.y99{bottom:570.028000pt;}
.ye6{bottom:573.070667pt;}
.ybe{bottom:577.132000pt;}
.y10{bottom:578.885333pt;}
.y52{bottom:581.982667pt;}
.y78{bottom:582.026667pt;}
.y3e{bottom:582.074667pt;}
.ye5{bottom:589.010667pt;}
.ybd{bottom:593.072000pt;}
.yf{bottom:594.825333pt;}
.y51{bottom:598.436000pt;}
.y98{bottom:604.173333pt;}
.ybc{bottom:609.012000pt;}
.y77{bottom:610.384000pt;}
.ye{bottom:610.765333pt;}
.y50{bottom:614.376000pt;}
.y3d{bottom:615.408000pt;}
.ye4{bottom:615.577333pt;}
.y97{bottom:620.113333pt;}
.yd{bottom:626.705333pt;}
.y4f{bottom:630.316000pt;}
.y3c{bottom:631.348000pt;}
.y96{bottom:636.053333pt;}
.ybb{bottom:641.568000pt;}
.yc{bottom:642.646667pt;}
.y76{bottom:644.053333pt;}
.y4e{bottom:646.256000pt;}
.y3b{bottom:647.288000pt;}
.ye3{bottom:647.457333pt;}
.yb{bottom:658.586667pt;}
.y75{bottom:659.994667pt;}
.y3a{bottom:663.228000pt;}
.ye2{bottom:663.398667pt;}
.ya{bottom:674.526667pt;}
.y74{bottom:675.934667pt;}
.y4d{bottom:678.901333pt;}
.y39{bottom:679.168000pt;}
.ye1{bottom:679.338667pt;}
.yba{bottom:679.437333pt;}
.y9{bottom:690.466667pt;}
.y73{bottom:691.874667pt;}
.y38{bottom:695.109333pt;}
.ye0{bottom:695.278667pt;}
.yb9{bottom:695.377333pt;}
.y72{bottom:707.814667pt;}
.y37{bottom:711.049333pt;}
.ydf{bottom:711.218667pt;}
.yb8{bottom:711.317333pt;}
.y8{bottom:718.386667pt;}
.y71{bottom:723.754667pt;}
.y36{bottom:726.989333pt;}
.yde{bottom:727.158667pt;}
.yb7{bottom:727.257333pt;}
.ydd{bottom:753.726667pt;}
.y35{bottom:755.009333pt;}
.y7{bottom:762.146667pt;}
.y70{bottom:769.536000pt;}
.y6{bottom:780.744000pt;}
.yb6{bottom:781.437333pt;}
.ydc{bottom:785.606667pt;}
.y34{bottom:788.342667pt;}
.yb5{bottom:797.377333pt;}
.y5{bottom:799.340000pt;}
.ydb{bottom:801.546667pt;}
.y33{bottom:804.282667pt;}
.yda{bottom:817.486667pt;}
.y4{bottom:817.937333pt;}
.y32{bottom:820.222667pt;}
.yb4{bottom:825.457333pt;}
.yd9{bottom:833.426667pt;}
.y3{bottom:836.534667pt;}
.yb3{bottom:841.929333pt;}
.yd8{bottom:849.368000pt;}
.yb2{bottom:858.400000pt;}
.y31{bottom:863.264000pt;}
.yd7{bottom:865.308000pt;}
.y2{bottom:874.060000pt;}
.yb1{bottom:874.872000pt;}
.y95{bottom:879.985333pt;}
.yd6{bottom:881.248000pt;}
.y30{bottom:891.344000pt;}
.y94{bottom:895.925333pt;}
.y4c{bottom:896.674667pt;}
.yd5{bottom:897.188000pt;}
.y2f{bottom:907.814667pt;}
.y1{bottom:911.254667pt;}
.y93{bottom:911.865333pt;}
.y4b{bottom:912.616000pt;}
.yd4{bottom:913.128000pt;}
.y2e{bottom:924.286667pt;}
.y92{bottom:927.805333pt;}
.y4a{bottom:928.556000pt;}
.yd3{bottom:929.068000pt;}
.y2d{bottom:940.758667pt;}
.y49{bottom:955.636000pt;}
.y2c{bottom:957.229333pt;}
.h7{height:22.048499pt;}
.hb{height:28.692288pt;}
.h9{height:33.072555pt;}
.h4{height:36.747499pt;}
.ha{height:39.850400pt;}
.h3{height:44.096998pt;}
.h8{height:45.003055pt;}
.h5{height:45.008388pt;}
.h6{height:50.477173pt;}
.h2{height:80.844497pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:120.000000pt;}
.x22{left:126.640000pt;}
.xe{left:133.297333pt;}
.xa{left:139.925333pt;}
.x23{left:145.569333pt;}
.x9{left:149.389333pt;}
.x24{left:155.901333pt;}
.x1{left:166.992000pt;}
.x17{left:175.205333pt;}
.x11{left:192.373333pt;}
.x2{left:221.877333pt;}
.x4{left:230.162667pt;}
.x10{left:232.377333pt;}
.x3{left:239.974667pt;}
.x15{left:244.370667pt;}
.x21{left:263.276000pt;}
.x13{left:271.044000pt;}
.x1c{left:273.098667pt;}
.xc{left:292.214667pt;}
.x1a{left:295.833333pt;}
.x7{left:299.714667pt;}
.xf{left:311.542667pt;}
.x5{left:342.040000pt;}
.x25{left:351.121333pt;}
.x6{left:353.238667pt;}
.x12{left:359.705333pt;}
.x8{left:372.932000pt;}
.x1b{left:400.416000pt;}
.x16{left:425.646667pt;}
.xd{left:431.657333pt;}
.x14{left:438.374667pt;}
.x18{left:487.208000pt;}
.x26{left:501.148000pt;}
.x1f{left:571.742667pt;}
.x20{left:617.569333pt;}
.x1d{left:662.936000pt;}
.x19{left:675.456000pt;}
.x27{left:678.812000pt;}
.x1e{left:683.852000pt;}
}




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