
    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_b66e3cab4e87fad0c18bcccd.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_32d26e7bc61a1896d3aebb2b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c2adcc80b96ac0f42530cd49.woff')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_3694171c02608309c0ae9808.woff')format("woff");}.ff4{font-family:ff4;line-height:0.904000;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_8188b67202a962bc550b8096.woff')format("woff");}.ff5{font-family:ff5;line-height:0.525000;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_f72daa8fded51dacd7e2369e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.431000;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_973f0dd440b894a12b245d35.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1c61fb0085bc7ab459c3b8b3.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9cc57c35523423bb12d12df2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_9b6dc68526e6fe2c8f8dc829.woff')format("woff");}.ffa{font-family:ffa;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_85c7f01c857961420bfd7790.woff')format("woff");}.ffb{font-family:ffb;line-height:0.431000;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);}
.m1{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;}
.v2{vertical-align:16.878000px;}
.v1{vertical-align:22.854000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000024px;}
.ls8{letter-spacing:2.371909px;}
.ls9{letter-spacing:2.987468px;}
.ls2{letter-spacing:2.988707px;}
.ls7{letter-spacing:2.989409px;}
.lsb{letter-spacing:11.955120px;}
.ls0{letter-spacing:13.451400px;}
.ls4{letter-spacing:13.452576px;}
.ls1{letter-spacing:19.594471px;}
.ls6{letter-spacing:27.643002px;}
.ls3{letter-spacing:27.644236px;}
.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;}
}
.ws3e{word-spacing:-13.449600px;}
.ws16{word-spacing:-13.449000px;}
.ws94{word-spacing:-11.955150px;}
.ws3b{word-spacing:-11.368439px;}
.ws9b{word-spacing:-9.564150px;}
.ws73{word-spacing:-3.227904px;}
.ws4e{word-spacing:-2.958912px;}
.ws4d{word-spacing:-2.949398px;}
.ws4c{word-spacing:-2.930621px;}
.ws80{word-spacing:-2.797517px;}
.ws31{word-spacing:-2.743704px;}
.ws7e{word-spacing:-2.689920px;}
.ws4b{word-spacing:-2.528525px;}
.ws6c{word-spacing:-2.151936px;}
.ws81{word-spacing:-1.990541px;}
.ws9c{word-spacing:-1.865003px;}
.ws7f{word-spacing:-1.506355px;}
.wsa1{word-spacing:-1.482439px;}
.ws86{word-spacing:-1.386797px;}
.ws67{word-spacing:-1.344960px;}
.ws66{word-spacing:-1.331616px;}
.ws65{word-spacing:-1.322602px;}
.ws46{word-spacing:-1.304410px;}
.ws47{word-spacing:-1.291162px;}
.ws75{word-spacing:-0.968371px;}
.ws3f{word-spacing:-0.860774px;}
.ws40{word-spacing:-0.852845px;}
.ws48{word-spacing:-0.806976px;}
.ws2c{word-spacing:-0.806940px;}
.ws77{word-spacing:-0.591782px;}
.ws18{word-spacing:-0.591595px;}
.ws6f{word-spacing:-0.215194px;}
.ws45{word-spacing:-0.053798px;}
.ws93{word-spacing:-0.047821px;}
.ws1{word-spacing:-0.000310px;}
.ws0{word-spacing:-0.000143px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:0.000310px;}
.ws4{word-spacing:0.000478px;}
.ws2a{word-spacing:0.003576px;}
.ws51{word-spacing:0.107597px;}
.ws5c{word-spacing:0.215194px;}
.ws37{word-spacing:0.215399px;}
.ws5a{word-spacing:0.239184px;}
.ws5b{word-spacing:0.250022px;}
.ws59{word-spacing:0.251923px;}
.ws58{word-spacing:0.253382px;}
.ws88{word-spacing:0.334744px;}
.ws87{word-spacing:0.382565px;}
.ws44{word-spacing:0.484186px;}
.ws6d{word-spacing:0.591782px;}
.ws21{word-spacing:0.645552px;}
.ws27{word-spacing:0.752983px;}
.ws92{word-spacing:0.765130px;}
.ws12{word-spacing:0.806940px;}
.ws7a{word-spacing:0.860774px;}
.ws9f{word-spacing:0.908591px;}
.ws39{word-spacing:0.968472px;}
.ws68{word-spacing:1.398758px;}
.ws7c{word-spacing:1.560154px;}
.ws9a{word-spacing:1.578080px;}
.ws96{word-spacing:1.625900px;}
.ws28{word-spacing:1.936710px;}
.ws7b{word-spacing:2.313331px;}
.ws8{word-spacing:2.366916px;}
.ws74{word-spacing:2.367130px;}
.ws6{word-spacing:2.420874px;}
.ws69{word-spacing:2.420928px;}
.ws4f{word-spacing:2.682682px;}
.ws50{word-spacing:2.689920px;}
.ws82{word-spacing:2.797517px;}
.ws78{word-spacing:2.851315px;}
.ws8d{word-spacing:3.012698px;}
.ws8c{word-spacing:3.028454px;}
.ws90{word-spacing:3.108339px;}
.ws72{word-spacing:3.120307px;}
.wsb{word-spacing:3.173856px;}
.ws2d{word-spacing:3.227868px;}
.ws9e{word-spacing:3.260852px;}
.wsa0{word-spacing:3.286648px;}
.ws8e{word-spacing:3.299621px;}
.ws85{word-spacing:3.344027px;}
.ws19{word-spacing:3.389256px;}
.ws7d{word-spacing:3.550694px;}
.ws43{word-spacing:3.601334px;}
.ws41{word-spacing:3.603590px;}
.ws42{word-spacing:3.604493px;}
.ws3a{word-spacing:3.622453px;}
.ws98{word-spacing:3.963674px;}
.ws97{word-spacing:3.975961px;}
.ws95{word-spacing:3.975967px;}
.ws99{word-spacing:3.983431px;}
.wsa5{word-spacing:4.016930px;}
.wsa4{word-spacing:4.027677px;}
.ws38{word-spacing:4.249615px;}
.ws6a{word-spacing:4.250074px;}
.wsc{word-spacing:4.303626px;}
.ws14{word-spacing:4.411003px;}
.ws5e{word-spacing:4.411469px;}
.ws5d{word-spacing:4.436746px;}
.ws5f{word-spacing:4.438022px;}
.ws62{word-spacing:4.949453px;}
.ws30{word-spacing:5.056555px;}
.ws76{word-spacing:5.164646px;}
.ws13{word-spacing:5.217943px;}
.ws9d{word-spacing:5.255334px;}
.ws8b{word-spacing:5.403728px;}
.ws91{word-spacing:5.481410px;}
.ws55{word-spacing:5.487437px;}
.ws8f{word-spacing:5.496140px;}
.ws4a{word-spacing:5.756429px;}
.ws49{word-spacing:5.769379px;}
.ws7{word-spacing:6.078948px;}
.ws36{word-spacing:6.240336px;}
.wsa3{word-spacing:6.407960px;}
.wsf{word-spacing:6.617123px;}
.ws63{word-spacing:6.617203px;}
.ws5{word-spacing:6.724500px;}
.ws35{word-spacing:6.831877px;}
.ws64{word-spacing:6.993792px;}
.wse{word-spacing:7.262675px;}
.wsa{word-spacing:7.424063px;}
.ws8a{word-spacing:7.785295px;}
.ws79{word-spacing:7.854566px;}
.ws24{word-spacing:8.715221px;}
.ws57{word-spacing:8.769139px;}
.ws56{word-spacing:8.776378px;}
.wsa2{word-spacing:8.788706px;}
.ws3c{word-spacing:8.855443px;}
.ws3d{word-spacing:8.876736px;}
.ws15{word-spacing:9.238152px;}
.ws17{word-spacing:9.252804px;}
.ws11{word-spacing:9.414192px;}
.ws10{word-spacing:9.844937px;}
.ws53{word-spacing:9.845107px;}
.ws52{word-spacing:9.850704px;}
.ws54{word-spacing:9.852806px;}
.ws6b{word-spacing:10.114099px;}
.ws1d{word-spacing:10.597920px;}
.ws1c{word-spacing:10.651931px;}
.ws83{word-spacing:11.566656px;}
.ws22{word-spacing:11.673678px;}
.ws20{word-spacing:11.727689px;}
.wsd{word-spacing:11.996454px;}
.ws2e{word-spacing:12.749437px;}
.ws2f{word-spacing:12.750029px;}
.ws1f{word-spacing:12.856814px;}
.ws1e{word-spacing:12.857405px;}
.ws25{word-spacing:13.126224px;}
.ws9{word-spacing:13.395204px;}
.ws29{word-spacing:13.427004px;}
.ws1b{word-spacing:14.148563px;}
.ws60{word-spacing:14.614320px;}
.ws61{word-spacing:14.633165px;}
.wsa6{word-spacing:14.728745px;}
.ws26{word-spacing:17.806584px;}
.ws71{word-spacing:18.022464px;}
.ws6e{word-spacing:18.399053px;}
.ws2b{word-spacing:21.357227px;}
.ws23{word-spacing:25.392089px;}
.ws70{word-spacing:26.146022px;}
.ws34{word-spacing:29.211497px;}
.ws33{word-spacing:37.280520px;}
.ws32{word-spacing:37.334532px;}
.ws89{word-spacing:40.790945px;}
.ws84{word-spacing:40.790953px;}
.ws1a{word-spacing:92.098913px;}
._3{margin-left:-7.642014px;}
._5{margin-left:-6.506597px;}
._0{margin-left:-4.447164px;}
._2{margin-left:-3.441510px;}
._1{margin-left:-1.912800px;}
._b{width:1.083276px;}
._a{width:2.395185px;}
._9{width:11.136269px;}
._c{width:14.154898px;}
._d{width:17.215436px;}
._6{width:19.069272px;}
._f{width:20.473917px;}
._7{width:21.662799px;}
._e{width:27.104325px;}
._10{width:31.077171px;}
._11{width:64.224041px;}
._4{width:67.487580px;}
._8{width:79.966540px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.995881px;}
.fsb{font-size:35.865600px;}
.fs4{font-size:35.868000px;}
.fsa{font-size:38.256600px;}
.fs9{font-size:41.842800px;}
.fs3{font-size:41.844000px;}
.fs0{font-size:47.820000px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:53.796000px;}
.fs8{font-size:53.798400px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:25.334400px;}
.y4c{bottom:28.761550px;}
.y4b{bottom:31.749140px;}
.y49{bottom:86.462400px;}
.y48{bottom:98.417400px;}
.y47{bottom:110.372400px;}
.y46{bottom:122.327400px;}
.yae{bottom:124.385130px;}
.y45{bottom:134.282400px;}
.yad{bottom:136.340130px;}
.y2b{bottom:167.159400px;}
.y82{bottom:175.295130px;}
.y2a{bottom:183.597900px;}
.y81{bottom:191.733630px;}
.y29{bottom:200.036400px;}
.y80{bottom:208.172130px;}
.y28{bottom:216.474900px;}
.y44{bottom:223.997400px;}
.y7f{bottom:232.830630px;}
.y27{bottom:232.913400px;}
.y26{bottom:249.351900px;}
.y43{bottom:263.928900px;}
.y25{bottom:265.790400px;}
.yac{bottom:267.197130px;}
.y7e{bottom:273.926130px;}
.y42{bottom:280.367400px;}
.yab{bottom:280.646130px;}
.y24{bottom:282.228900px;}
.y7d{bottom:290.364630px;}
.yaa{bottom:294.095130px;}
.y41{bottom:296.805900px;}
.y23{bottom:298.665900px;}
.y7c{bottom:306.803130px;}
.y40{bottom:313.244400px;}
.ya9{bottom:313.523130px;}
.y22{bottom:315.104400px;}
.y7b{bottom:323.241630px;}
.ya8{bottom:326.972130px;}
.y21{bottom:331.543500px;}
.y3f{bottom:336.971400px;}
.y7a{bottom:339.680130px;}
.ya7{bottom:346.400130px;}
.y20{bottom:347.982000px;}
.y3e{bottom:353.409900px;}
.y79{bottom:356.117130px;}
.ya6{bottom:359.849130px;}
.y3d{bottom:369.848400px;}
.y78{bottom:372.555630px;}
.ya5{bottom:373.298130px;}
.y1f{bottom:376.645500px;}
.y3c{bottom:386.286900px;}
.y77{bottom:388.994130px;}
.ya4{bottom:392.726130px;}
.y1e{bottom:393.084000px;}
.y3b{bottom:402.725400px;}
.y76{bottom:405.432630px;}
.ya3{bottom:406.175130px;}
.y1d{bottom:409.522500px;}
.y3a{bottom:419.162400px;}
.y75{bottom:421.871130px;}
.ya2{bottom:425.603130px;}
.y1c{bottom:425.961000px;}
.y39{bottom:435.600900px;}
.y74{bottom:438.309630px;}
.ya1{bottom:439.052130px;}
.y1b{bottom:442.399500px;}
.y38{bottom:452.039400px;}
.ya0{bottom:452.501130px;}
.y1a{bottom:458.838000px;}
.y73{bottom:462.966630px;}
.y37{bottom:468.477900px;}
.y9f{bottom:471.929130px;}
.y19{bottom:475.276500px;}
.y36{bottom:484.916400px;}
.y9e{bottom:485.378130px;}
.y72{bottom:487.625130px;}
.y18{bottom:491.715000px;}
.y9d{bottom:498.828630px;}
.y35{bottom:501.354900px;}
.y34{bottom:517.793400px;}
.y17{bottom:520.378500px;}
.y9c{bottom:520.497630px;}
.y71{bottom:528.720630px;}
.y33{bottom:534.231900px;}
.y16{bottom:536.815500px;}
.y70{bottom:545.159130px;}
.y32{bottom:550.670400px;}
.y15{bottom:553.254000px;}
.y9b{bottom:561.594630px;}
.y6f{bottom:561.597630px;}
.y31{bottom:567.108900px;}
.y14{bottom:569.692500px;}
.y9a{bottom:578.033130px;}
.y6e{bottom:578.036130px;}
.y30{bottom:583.545900px;}
.y13{bottom:586.131000px;}
.y99{bottom:594.470130px;}
.y2f{bottom:599.984400px;}
.y12{bottom:602.569500px;}
.y6d{bottom:602.693130px;}
.y11{bottom:619.008000px;}
.y98{bottom:619.130130px;}
.y6c{bottom:619.131630px;}
.y2e{bottom:623.711400px;}
.y10{bottom:635.446500px;}
.y6b{bottom:635.570130px;}
.y2d{bottom:640.149900px;}
.y6a{bottom:652.007130px;}
.y97{bottom:660.225630px;}
.y2c{bottom:664.110900px;}
.yf{bottom:664.111500px;}
.y69{bottom:668.445630px;}
.y96{bottom:676.664130px;}
.y68{bottom:684.884130px;}
.y95{bottom:693.102630px;}
.y67{bottom:701.322630px;}
.y94{bottom:709.541130px;}
.y66{bottom:717.761130px;}
.ye{bottom:731.359500px;}
.y93{bottom:734.198130px;}
.y65{bottom:734.199630px;}
.yd{bottom:747.799500px;}
.y92{bottom:750.636630px;}
.y64{bottom:750.638130px;}
.y91{bottom:767.075130px;}
.y63{bottom:767.076630px;}
.yc{bottom:768.720000px;}
.y90{bottom:783.513630px;}
.y62{bottom:783.515130px;}
.yb{bottom:785.158500px;}
.y8f{bottom:799.952130px;}
.y61{bottom:799.953630px;}
.ya{bottom:801.597000px;}
.y8e{bottom:816.390630px;}
.y60{bottom:816.392130px;}
.y9{bottom:818.035500px;}
.y5f{bottom:832.829130px;}
.y8{bottom:834.474000px;}
.y8d{bottom:841.049130px;}
.y5e{bottom:849.267630px;}
.y7{bottom:850.912500px;}
.y5d{bottom:865.706130px;}
.y5c{bottom:882.144630px;}
.y5b{bottom:898.583130px;}
.y6{bottom:912.804000px;}
.y5a{bottom:915.021630px;}
.y59{bottom:931.460130px;}
.y8c{bottom:939.678630px;}
.y5{bottom:943.950000px;}
.y58{bottom:947.898630px;}
.y8b{bottom:956.117130px;}
.y57{bottom:964.337130px;}
.y8a{bottom:972.555630px;}
.y56{bottom:980.775630px;}
.y89{bottom:988.994130px;}
.y55{bottom:997.212630px;}
.y88{bottom:1005.432630px;}
.y54{bottom:1013.651130px;}
.y4{bottom:1014.624000px;}
.y87{bottom:1021.871130px;}
.y53{bottom:1030.089630px;}
.y86{bottom:1038.309630px;}
.y3{bottom:1044.511500px;}
.y52{bottom:1046.528130px;}
.y85{bottom:1054.748130px;}
.y51{bottom:1062.966630px;}
.y84{bottom:1071.186630px;}
.y50{bottom:1079.405130px;}
.y83{bottom:1087.623630px;}
.y4f{bottom:1095.843630px;}
.y4e{bottom:1112.282130px;}
.y2{bottom:1127.166000px;}
.y1{bottom:1142.110500px;}
.y4d{bottom:1142.169630px;}
.hc{height:21.357067px;}
.h12{height:24.675533px;}
.h9{height:24.677184px;}
.h2{height:32.900160px;}
.hd{height:32.900573px;}
.h11{height:33.555504px;}
.h6{height:36.904056px;}
.h4{height:37.011648px;}
.hf{height:37.013299px;}
.h5{height:37.226832px;}
.he{height:37.228493px;}
.h7{height:37.603404px;}
.h10{height:42.310902px;}
.h8{height:42.311460px;}
.ha{height:56.320312px;}
.h3{height:71.476680px;}
.hb{height:1262.826590px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.378960px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:63.000300px;}
.x1{left:69.532500px;}
.x7{left:83.355000px;}
.x6{left:105.397500px;}
.x2{left:115.290000px;}
.x3{left:254.049000px;}
.x4{left:301.096500px;}
.x5{left:371.341500px;}
.x8{left:464.053800px;}
.x9{left:477.876300px;}
.xe{left:490.557915px;}
.xc{left:646.891170px;}
.xd{left:740.484915px;}
.xb{left:801.596426px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.002667pt;}
.v1{vertical-align:20.314667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000021pt;}
.ls8{letter-spacing:2.108364pt;}
.ls9{letter-spacing:2.655527pt;}
.ls2{letter-spacing:2.656628pt;}
.ls7{letter-spacing:2.657253pt;}
.lsb{letter-spacing:10.626773pt;}
.ls0{letter-spacing:11.956800pt;}
.ls4{letter-spacing:11.957845pt;}
.ls1{letter-spacing:17.417308pt;}
.ls6{letter-spacing:24.571558pt;}
.ls3{letter-spacing:24.572654pt;}
.ws3e{word-spacing:-11.955200pt;}
.ws16{word-spacing:-11.954667pt;}
.ws94{word-spacing:-10.626800pt;}
.ws3b{word-spacing:-10.105279pt;}
.ws9b{word-spacing:-8.501467pt;}
.ws73{word-spacing:-2.869248pt;}
.ws4e{word-spacing:-2.630144pt;}
.ws4d{word-spacing:-2.621687pt;}
.ws4c{word-spacing:-2.604996pt;}
.ws80{word-spacing:-2.486682pt;}
.ws31{word-spacing:-2.438848pt;}
.ws7e{word-spacing:-2.391040pt;}
.ws4b{word-spacing:-2.247578pt;}
.ws6c{word-spacing:-1.912832pt;}
.ws81{word-spacing:-1.769370pt;}
.ws9c{word-spacing:-1.657781pt;}
.ws7f{word-spacing:-1.338982pt;}
.wsa1{word-spacing:-1.317723pt;}
.ws86{word-spacing:-1.232709pt;}
.ws67{word-spacing:-1.195520pt;}
.ws66{word-spacing:-1.183659pt;}
.ws65{word-spacing:-1.175646pt;}
.ws46{word-spacing:-1.159475pt;}
.ws47{word-spacing:-1.147699pt;}
.ws75{word-spacing:-0.860774pt;}
.ws3f{word-spacing:-0.765133pt;}
.ws40{word-spacing:-0.758084pt;}
.ws48{word-spacing:-0.717312pt;}
.ws2c{word-spacing:-0.717280pt;}
.ws77{word-spacing:-0.526029pt;}
.ws18{word-spacing:-0.525862pt;}
.ws6f{word-spacing:-0.191283pt;}
.ws45{word-spacing:-0.047821pt;}
.ws93{word-spacing:-0.042507pt;}
.ws1{word-spacing:-0.000275pt;}
.ws0{word-spacing:-0.000128pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:0.000275pt;}
.ws4{word-spacing:0.000425pt;}
.ws2a{word-spacing:0.003179pt;}
.ws51{word-spacing:0.095642pt;}
.ws5c{word-spacing:0.191283pt;}
.ws37{word-spacing:0.191466pt;}
.ws5a{word-spacing:0.212608pt;}
.ws5b{word-spacing:0.222242pt;}
.ws59{word-spacing:0.223932pt;}
.ws58{word-spacing:0.225229pt;}
.ws88{word-spacing:0.297550pt;}
.ws87{word-spacing:0.340058pt;}
.ws44{word-spacing:0.430387pt;}
.ws6d{word-spacing:0.526029pt;}
.ws21{word-spacing:0.573824pt;}
.ws27{word-spacing:0.669318pt;}
.ws92{word-spacing:0.680115pt;}
.ws12{word-spacing:0.717280pt;}
.ws7a{word-spacing:0.765133pt;}
.ws9f{word-spacing:0.807637pt;}
.ws39{word-spacing:0.860864pt;}
.ws68{word-spacing:1.243341pt;}
.ws7c{word-spacing:1.386803pt;}
.ws9a{word-spacing:1.402738pt;}
.ws96{word-spacing:1.445245pt;}
.ws28{word-spacing:1.721520pt;}
.ws7b{word-spacing:2.056294pt;}
.ws8{word-spacing:2.103926pt;}
.ws74{word-spacing:2.104115pt;}
.ws6{word-spacing:2.151888pt;}
.ws69{word-spacing:2.151936pt;}
.ws4f{word-spacing:2.384606pt;}
.ws50{word-spacing:2.391040pt;}
.ws82{word-spacing:2.486682pt;}
.ws78{word-spacing:2.534502pt;}
.ws8d{word-spacing:2.677954pt;}
.ws8c{word-spacing:2.691959pt;}
.ws90{word-spacing:2.762968pt;}
.ws72{word-spacing:2.773606pt;}
.wsb{word-spacing:2.821206pt;}
.ws2d{word-spacing:2.869216pt;}
.ws9e{word-spacing:2.898535pt;}
.wsa0{word-spacing:2.921465pt;}
.ws8e{word-spacing:2.932997pt;}
.ws85{word-spacing:2.972468pt;}
.ws19{word-spacing:3.012672pt;}
.ws7d{word-spacing:3.156173pt;}
.ws43{word-spacing:3.201186pt;}
.ws41{word-spacing:3.203191pt;}
.ws42{word-spacing:3.203994pt;}
.ws3a{word-spacing:3.219958pt;}
.ws98{word-spacing:3.523266pt;}
.ws97{word-spacing:3.534188pt;}
.ws95{word-spacing:3.534193pt;}
.ws99{word-spacing:3.540828pt;}
.wsa5{word-spacing:3.570605pt;}
.wsa4{word-spacing:3.580157pt;}
.ws38{word-spacing:3.777436pt;}
.ws6a{word-spacing:3.777843pt;}
.wsc{word-spacing:3.825446pt;}
.ws14{word-spacing:3.920892pt;}
.ws5e{word-spacing:3.921306pt;}
.ws5d{word-spacing:3.943774pt;}
.ws5f{word-spacing:3.944909pt;}
.ws62{word-spacing:4.399514pt;}
.ws30{word-spacing:4.494716pt;}
.ws76{word-spacing:4.590797pt;}
.ws13{word-spacing:4.638172pt;}
.ws9d{word-spacing:4.671408pt;}
.ws8b{word-spacing:4.803314pt;}
.ws91{word-spacing:4.872365pt;}
.ws55{word-spacing:4.877722pt;}
.ws8f{word-spacing:4.885458pt;}
.ws4a{word-spacing:5.116826pt;}
.ws49{word-spacing:5.128337pt;}
.ws7{word-spacing:5.403509pt;}
.ws36{word-spacing:5.546965pt;}
.wsa3{word-spacing:5.695965pt;}
.wsf{word-spacing:5.881887pt;}
.ws63{word-spacing:5.881958pt;}
.ws5{word-spacing:5.977333pt;}
.ws35{word-spacing:6.072779pt;}
.ws64{word-spacing:6.216704pt;}
.wse{word-spacing:6.455711pt;}
.wsa{word-spacing:6.599167pt;}
.ws8a{word-spacing:6.920262pt;}
.ws79{word-spacing:6.981837pt;}
.ws24{word-spacing:7.746863pt;}
.ws57{word-spacing:7.794790pt;}
.ws56{word-spacing:7.801225pt;}
.wsa2{word-spacing:7.812183pt;}
.ws3c{word-spacing:7.871505pt;}
.ws3d{word-spacing:7.890432pt;}
.ws15{word-spacing:8.211691pt;}
.ws17{word-spacing:8.224715pt;}
.ws11{word-spacing:8.368171pt;}
.ws10{word-spacing:8.751055pt;}
.ws53{word-spacing:8.751206pt;}
.ws52{word-spacing:8.756181pt;}
.ws54{word-spacing:8.758050pt;}
.ws6b{word-spacing:8.990310pt;}
.ws1d{word-spacing:9.420373pt;}
.ws1c{word-spacing:9.468383pt;}
.ws83{word-spacing:10.281472pt;}
.ws22{word-spacing:10.376603pt;}
.ws20{word-spacing:10.424613pt;}
.wsd{word-spacing:10.663515pt;}
.ws2e{word-spacing:11.332833pt;}
.ws2f{word-spacing:11.333359pt;}
.ws1f{word-spacing:11.428279pt;}
.ws1e{word-spacing:11.428805pt;}
.ws25{word-spacing:11.667755pt;}
.ws9{word-spacing:11.906848pt;}
.ws29{word-spacing:11.935115pt;}
.ws1b{word-spacing:12.576501pt;}
.ws60{word-spacing:12.990507pt;}
.ws61{word-spacing:13.007258pt;}
.wsa6{word-spacing:13.092218pt;}
.ws26{word-spacing:15.828074pt;}
.ws71{word-spacing:16.019968pt;}
.ws6e{word-spacing:16.354714pt;}
.ws2b{word-spacing:18.984202pt;}
.ws23{word-spacing:22.570745pt;}
.ws70{word-spacing:23.240909pt;}
.ws34{word-spacing:25.965775pt;}
.ws33{word-spacing:33.138240pt;}
.ws32{word-spacing:33.186250pt;}
.ws89{word-spacing:36.258618pt;}
.ws84{word-spacing:36.258625pt;}
.ws1a{word-spacing:81.865701pt;}
._3{margin-left:-6.792901pt;}
._5{margin-left:-5.783642pt;}
._0{margin-left:-3.953035pt;}
._2{margin-left:-3.059120pt;}
._1{margin-left:-1.700267pt;}
._b{width:0.962912pt;}
._a{width:2.129053pt;}
._9{width:9.898906pt;}
._c{width:12.582131pt;}
._d{width:15.302610pt;}
._6{width:16.950464pt;}
._f{width:18.199037pt;}
._7{width:19.255821pt;}
._e{width:24.092733pt;}
._10{width:27.624152pt;}
._11{width:57.088036pt;}
._4{width:59.988960pt;}
._8{width:71.081369pt;}
.fs6{font-size:26.663005pt;}
.fsb{font-size:31.880533pt;}
.fs4{font-size:31.882667pt;}
.fsa{font-size:34.005867pt;}
.fs9{font-size:37.193600pt;}
.fs3{font-size:37.194667pt;}
.fs0{font-size:42.506667pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:47.818667pt;}
.fs8{font-size:47.820800pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:22.519467pt;}
.y4c{bottom:25.565823pt;}
.y4b{bottom:28.221458pt;}
.y49{bottom:76.855467pt;}
.y48{bottom:87.482133pt;}
.y47{bottom:98.108800pt;}
.y46{bottom:108.735467pt;}
.yae{bottom:110.564560pt;}
.y45{bottom:119.362133pt;}
.yad{bottom:121.191227pt;}
.y2b{bottom:148.586133pt;}
.y82{bottom:155.817893pt;}
.y2a{bottom:163.198133pt;}
.y81{bottom:170.429893pt;}
.y29{bottom:177.810133pt;}
.y80{bottom:185.041893pt;}
.y28{bottom:192.422133pt;}
.y44{bottom:199.108800pt;}
.y7f{bottom:206.960560pt;}
.y27{bottom:207.034133pt;}
.y26{bottom:221.646133pt;}
.y43{bottom:234.603467pt;}
.y25{bottom:236.258133pt;}
.yac{bottom:237.508560pt;}
.y7e{bottom:243.489893pt;}
.y42{bottom:249.215467pt;}
.yab{bottom:249.463227pt;}
.y24{bottom:250.870133pt;}
.y7d{bottom:258.101893pt;}
.yaa{bottom:261.417893pt;}
.y41{bottom:263.827467pt;}
.y23{bottom:265.480800pt;}
.y7c{bottom:272.713893pt;}
.y40{bottom:278.439467pt;}
.ya9{bottom:278.687227pt;}
.y22{bottom:280.092800pt;}
.y7b{bottom:287.325893pt;}
.ya8{bottom:290.641893pt;}
.y21{bottom:294.705333pt;}
.y3f{bottom:299.530133pt;}
.y7a{bottom:301.937893pt;}
.ya7{bottom:307.911227pt;}
.y20{bottom:309.317333pt;}
.y3e{bottom:314.142133pt;}
.y79{bottom:316.548560pt;}
.ya6{bottom:319.865893pt;}
.y3d{bottom:328.754133pt;}
.y78{bottom:331.160560pt;}
.ya5{bottom:331.820560pt;}
.y1f{bottom:334.796000pt;}
.y3c{bottom:343.366133pt;}
.y77{bottom:345.772560pt;}
.ya4{bottom:349.089893pt;}
.y1e{bottom:349.408000pt;}
.y3b{bottom:357.978133pt;}
.y76{bottom:360.384560pt;}
.ya3{bottom:361.044560pt;}
.y1d{bottom:364.020000pt;}
.y3a{bottom:372.588800pt;}
.y75{bottom:374.996560pt;}
.ya2{bottom:378.313893pt;}
.y1c{bottom:378.632000pt;}
.y39{bottom:387.200800pt;}
.y74{bottom:389.608560pt;}
.ya1{bottom:390.268560pt;}
.y1b{bottom:393.244000pt;}
.y38{bottom:401.812800pt;}
.ya0{bottom:402.223227pt;}
.y1a{bottom:407.856000pt;}
.y73{bottom:411.525893pt;}
.y37{bottom:416.424800pt;}
.y9f{bottom:419.492560pt;}
.y19{bottom:422.468000pt;}
.y36{bottom:431.036800pt;}
.y9e{bottom:431.447227pt;}
.y72{bottom:433.444560pt;}
.y18{bottom:437.080000pt;}
.y9d{bottom:443.403227pt;}
.y35{bottom:445.648800pt;}
.y34{bottom:460.260800pt;}
.y17{bottom:462.558667pt;}
.y9c{bottom:462.664560pt;}
.y71{bottom:469.973893pt;}
.y33{bottom:474.872800pt;}
.y16{bottom:477.169333pt;}
.y70{bottom:484.585893pt;}
.y32{bottom:489.484800pt;}
.y15{bottom:491.781333pt;}
.y9b{bottom:499.195227pt;}
.y6f{bottom:499.197893pt;}
.y31{bottom:504.096800pt;}
.y14{bottom:506.393333pt;}
.y9a{bottom:513.807227pt;}
.y6e{bottom:513.809893pt;}
.y30{bottom:518.707467pt;}
.y13{bottom:521.005333pt;}
.y99{bottom:528.417893pt;}
.y2f{bottom:533.319467pt;}
.y12{bottom:535.617333pt;}
.y6d{bottom:535.727227pt;}
.y11{bottom:550.229333pt;}
.y98{bottom:550.337893pt;}
.y6c{bottom:550.339227pt;}
.y2e{bottom:554.410133pt;}
.y10{bottom:564.841333pt;}
.y6b{bottom:564.951227pt;}
.y2d{bottom:569.022133pt;}
.y6a{bottom:579.561893pt;}
.y97{bottom:586.867227pt;}
.y2c{bottom:590.320800pt;}
.yf{bottom:590.321333pt;}
.y69{bottom:594.173893pt;}
.y96{bottom:601.479227pt;}
.y68{bottom:608.785893pt;}
.y95{bottom:616.091227pt;}
.y67{bottom:623.397893pt;}
.y94{bottom:630.703227pt;}
.y66{bottom:638.009893pt;}
.ye{bottom:650.097333pt;}
.y93{bottom:652.620560pt;}
.y65{bottom:652.621893pt;}
.yd{bottom:664.710667pt;}
.y92{bottom:667.232560pt;}
.y64{bottom:667.233893pt;}
.y91{bottom:681.844560pt;}
.y63{bottom:681.845893pt;}
.yc{bottom:683.306667pt;}
.y90{bottom:696.456560pt;}
.y62{bottom:696.457893pt;}
.yb{bottom:697.918667pt;}
.y8f{bottom:711.068560pt;}
.y61{bottom:711.069893pt;}
.ya{bottom:712.530667pt;}
.y8e{bottom:725.680560pt;}
.y60{bottom:725.681893pt;}
.y9{bottom:727.142667pt;}
.y5f{bottom:740.292560pt;}
.y8{bottom:741.754667pt;}
.y8d{bottom:747.599227pt;}
.y5e{bottom:754.904560pt;}
.y7{bottom:756.366667pt;}
.y5d{bottom:769.516560pt;}
.y5c{bottom:784.128560pt;}
.y5b{bottom:798.740560pt;}
.y6{bottom:811.381333pt;}
.y5a{bottom:813.352560pt;}
.y59{bottom:827.964560pt;}
.y8c{bottom:835.269893pt;}
.y5{bottom:839.066667pt;}
.y58{bottom:842.576560pt;}
.y8b{bottom:849.881893pt;}
.y57{bottom:857.188560pt;}
.y8a{bottom:864.493893pt;}
.y56{bottom:871.800560pt;}
.y89{bottom:879.105893pt;}
.y55{bottom:886.411227pt;}
.y88{bottom:893.717893pt;}
.y54{bottom:901.023227pt;}
.y4{bottom:901.888000pt;}
.y87{bottom:908.329893pt;}
.y53{bottom:915.635227pt;}
.y86{bottom:922.941893pt;}
.y3{bottom:928.454667pt;}
.y52{bottom:930.247227pt;}
.y85{bottom:937.553893pt;}
.y51{bottom:944.859227pt;}
.y84{bottom:952.165893pt;}
.y50{bottom:959.471227pt;}
.y83{bottom:966.776560pt;}
.y4f{bottom:974.083227pt;}
.y4e{bottom:988.695227pt;}
.y2{bottom:1001.925333pt;}
.y1{bottom:1015.209333pt;}
.y4d{bottom:1015.261893pt;}
.hc{height:18.984060pt;}
.h12{height:21.933807pt;}
.h9{height:21.935275pt;}
.h2{height:29.244587pt;}
.hd{height:29.244954pt;}
.h11{height:29.827115pt;}
.h6{height:32.803605pt;}
.h4{height:32.899243pt;}
.hf{height:32.900710pt;}
.h5{height:33.090517pt;}
.he{height:33.091994pt;}
.h7{height:33.425248pt;}
.h10{height:37.609691pt;}
.h8{height:37.610187pt;}
.ha{height:50.062500pt;}
.h3{height:63.534827pt;}
.hb{height:1122.512525pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.225742pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:56.000267pt;}
.x1{left:61.806667pt;}
.x7{left:74.093333pt;}
.x6{left:93.686667pt;}
.x2{left:102.480000pt;}
.x3{left:225.821333pt;}
.x4{left:267.641333pt;}
.x5{left:330.081333pt;}
.x8{left:412.492267pt;}
.x9{left:424.778933pt;}
.xe{left:436.051480pt;}
.xc{left:575.014373pt;}
.xd{left:658.208813pt;}
.xb{left:712.530156pt;}
}




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