
    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_21521501b8865552bd024e28.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_4c9027f25acc458627053a0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.689000;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_6d3eb466fdd10c7db6cd6d99.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c2b07093bc7f8498923a834e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.826000;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_0f303a7258683caa5c9e4018.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_533ed3677bc480865cf995b5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.848000;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_8bd7052e0be49f1b8837b22d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.511000;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_912140a9fd204ec2d569d987.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686000;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-51.952594px;}
.v2{vertical-align:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.987700px;}
.ls2{letter-spacing:2.993700px;}
.ls0{letter-spacing:14.943900px;}
.ls3{letter-spacing:29.887200px;}
.ls6{letter-spacing:76.251927px;}
.ls9{letter-spacing:83.484058px;}
.lsb{letter-spacing:90.152384px;}
.ls7{letter-spacing:96.104062px;}
.ls8{letter-spacing:97.474083px;}
.lsa{letter-spacing:107.814507px;}
.lsc{letter-spacing:110.674866px;}
.ls5{letter-spacing:121.136522px;}
.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;}
}
.ws1e{word-spacing:-2.630126px;}
.ws27{word-spacing:-1.494390px;}
.ws26{word-spacing:-1.434614px;}
.wsb{word-spacing:-1.129766px;}
.ws1d{word-spacing:-0.657532px;}
.ws8{word-spacing:-0.161395px;}
.wse{word-spacing:-0.107597px;}
.ws4{word-spacing:-0.051108px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:0.322790px;}
.wsa{word-spacing:0.376589px;}
.wsf{word-spacing:0.537984px;}
.ws6{word-spacing:0.645581px;}
.ws41{word-spacing:0.657532px;}
.ws1c{word-spacing:1.255288px;}
.ws7{word-spacing:1.291162px;}
.ws42{word-spacing:1.434614px;}
.wsc{word-spacing:1.613952px;}
.ws1f{word-spacing:1.673717px;}
.ws5{word-spacing:2.313331px;}
.wsd{word-spacing:2.636122px;}
.ws13{word-spacing:2.749678px;}
.ws10{word-spacing:3.658291px;}
.ws3{word-spacing:4.626662px;}
.ws40{word-spacing:5.439580px;}
.ws12{word-spacing:8.129482px;}
.ws15{word-spacing:13.395802px;}
.ws11{word-spacing:14.156916px;}
.ws0{word-spacing:14.884124px;}
.ws14{word-spacing:17.224303px;}
.ws4b{word-spacing:26.034356px;}
.ws29{word-spacing:26.073568px;}
.ws3a{word-spacing:26.093641px;}
.ws51{word-spacing:26.139855px;}
.ws59{word-spacing:26.213611px;}
.ws32{word-spacing:26.237418px;}
.ws43{word-spacing:26.240219px;}
.ws21{word-spacing:26.247221px;}
.ws17{word-spacing:26.262626px;}
.ws2{word-spacing:27.181345px;}
.ws53{word-spacing:29.859888px;}
.ws3c{word-spacing:43.196104px;}
.ws5b{word-spacing:43.813423px;}
.ws4d{word-spacing:44.820087px;}
.ws45{word-spacing:47.172614px;}
.ws49{word-spacing:52.794182px;}
.ws38{word-spacing:55.334819px;}
.ws60{word-spacing:60.647232px;}
.ws22{word-spacing:60.899845px;}
.ws34{word-spacing:61.815246px;}
.ws2e{word-spacing:61.956308px;}
.ws2a{word-spacing:61.984655px;}
.ws33{word-spacing:62.907905px;}
.ws23{word-spacing:64.004362px;}
.ws4c{word-spacing:64.708001px;}
.ws1a{word-spacing:64.812444px;}
.ws3b{word-spacing:64.855352px;}
.ws52{word-spacing:64.970217px;}
.ws5a{word-spacing:65.153535px;}
.ws44{word-spacing:65.219669px;}
.ws5f{word-spacing:65.580748px;}
.ws39{word-spacing:68.278858px;}
.ws4f{word-spacing:68.327361px;}
.ws37{word-spacing:68.395342px;}
.ws18{word-spacing:70.187486px;}
.ws54{word-spacing:72.337149px;}
.ws19{word-spacing:72.727349px;}
.ws55{word-spacing:73.518335px;}
.ws56{word-spacing:73.649578px;}
.ws57{word-spacing:78.500843px;}
.ws28{word-spacing:81.475875px;}
.ws31{word-spacing:81.987880px;}
.ws20{word-spacing:82.018513px;}
.ws16{word-spacing:82.066650px;}
.ws3e{word-spacing:82.377855px;}
.ws1b{word-spacing:84.205395px;}
.ws4e{word-spacing:85.449112px;}
.ws24{word-spacing:86.482443px;}
.ws46{word-spacing:89.930870px;}
.ws25{word-spacing:90.058682px;}
.ws35{word-spacing:90.588457px;}
.ws47{word-spacing:91.116592px;}
.ws48{word-spacing:91.248339px;}
.ws36{word-spacing:92.340653px;}
.ws30{word-spacing:92.724052px;}
.ws5c{word-spacing:92.809364px;}
.ws5d{word-spacing:93.993883px;}
.ws5e{word-spacing:94.125497px;}
.ws3f{word-spacing:97.586142px;}
.ws58{word-spacing:99.551594px;}
.ws2b{word-spacing:103.366463px;}
.ws2c{word-spacing:104.544654px;}
.ws2d{word-spacing:104.675565px;}
.ws3d{word-spacing:105.899214px;}
.ws2f{word-spacing:110.232290px;}
.ws4a{word-spacing:112.595222px;}
.ws50{word-spacing:116.055143px;}
._3{margin-left:-7.265461px;}
._4{margin-left:-5.236368px;}
._5{margin-left:-4.176918px;}
._6{margin-left:-2.851315px;}
._1{margin-left:-1.471914px;}
._7{width:11.297664px;}
._8{width:12.965414px;}
._17{width:17.247986px;}
._a{width:19.898112px;}
._36{width:27.278550px;}
._9{width:28.525001px;}
._2e{width:43.772571px;}
._3e{width:46.521141px;}
._2{width:50.807821px;}
._2d{width:56.637845px;}
._2b{width:58.311980px;}
._30{width:59.960707px;}
._37{width:62.587801px;}
._1f{width:63.801319px;}
._1b{width:66.100263px;}
._3a{width:67.217696px;}
._21{width:68.337529px;}
._29{width:70.056681px;}
._e{width:71.268733px;}
._2a{width:72.663269px;}
._10{width:73.887712px;}
._11{width:75.103066px;}
._1a{width:76.916949px;}
._24{width:78.681908px;}
._12{width:81.536394px;}
._20{width:83.588216px;}
._d{width:85.976644px;}
._2f{width:87.593719px;}
._f{width:89.676870px;}
._19{width:91.386616px;}
._14{width:92.518127px;}
._b{width:94.988869px;}
._c{width:96.201975px;}
._26{width:97.214618px;}
._16{width:99.018794px;}
._28{width:100.645405px;}
._33{width:103.161744px;}
._18{width:105.558772px;}
._32{width:106.973503px;}
._1c{width:108.258422px;}
._3f{width:109.395113px;}
._25{width:111.468108px;}
._15{width:114.525456px;}
._41{width:116.395632px;}
._1e{width:119.708701px;}
._31{width:121.586778px;}
._23{width:123.349488px;}
._35{width:129.412831px;}
._40{width:130.596121px;}
._3d{width:132.831199px;}
._39{width:143.758944px;}
._3c{width:146.974376px;}
._27{width:270.806031px;}
._34{width:285.254402px;}
._1d{width:293.663133px;}
._13{width:297.824039px;}
._2c{width:304.800188px;}
._42{width:346.782386px;}
._38{width:363.338457px;}
._3b{width:370.987446px;}
._22{width:378.533477px;}
._0{width:1594.334803px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs14{font-size:46.847640px;}
.fsc{font-size:46.918200px;}
.fs10{font-size:46.954320px;}
.fs16{font-size:47.037480px;}
.fs18{font-size:47.170200px;}
.fse{font-size:47.213040px;}
.fs12{font-size:47.218080px;}
.fsa{font-size:47.230680px;}
.fs8{font-size:47.258400px;}
.fs3{font-size:47.820600px;}
.fs6{font-size:51.108000px;}
.fs15{font-size:53.540160px;}
.fsd{font-size:53.620800px;}
.fs11{font-size:53.662080px;}
.fs17{font-size:53.757120px;}
.fs5{font-size:53.798400px;}
.fs19{font-size:53.908800px;}
.fsf{font-size:53.957760px;}
.fs13{font-size:53.963520px;}
.fsb{font-size:53.977920px;}
.fs9{font-size:54.009600px;}
.fs0{font-size:59.775600px;}
.fs7{font-size:62.181600px;}
.fs2{font-size:65.454600px;}
.fs1{font-size:98.127600px;}
.y0{bottom:0.000000px;}
.y8c{bottom:2.431267px;}
.y44{bottom:2.434929px;}
.y6a{bottom:2.436803px;}
.y9b{bottom:2.441119px;}
.yaa{bottom:2.448007px;}
.y53{bottom:2.450230px;}
.y7d{bottom:2.450492px;}
.y35{bottom:2.451146px;}
.y22{bottom:2.452584px;}
.y8b{bottom:15.685594px;}
.y43{bottom:15.709219px;}
.y69{bottom:15.721313px;}
.y9a{bottom:15.749156px;}
.ya9{bottom:15.793594px;}
.y52{bottom:15.807938px;}
.y7c{bottom:15.809625px;}
.y34{bottom:15.813844px;}
.y21{bottom:15.823125px;}
.y8d{bottom:23.463034px;}
.y45{bottom:23.498373px;}
.y6b{bottom:23.516463px;}
.y9c{bottom:23.558113px;}
.yab{bottom:23.624584px;}
.y54{bottom:23.646040px;}
.y7e{bottom:23.648564px;}
.y36{bottom:23.654875px;}
.y23{bottom:23.668758px;}
.y1e{bottom:95.683500px;}
.y32{bottom:123.798000px;}
.y60{bottom:126.604310px;}
.y7a{bottom:129.909000px;}
.y31{bottom:140.236500px;}
.y79{bottom:146.347500px;}
.y30{bottom:156.675000px;}
.y78{bottom:162.786000px;}
.y2f{bottom:173.113500px;}
.y77{bottom:179.224500px;}
.y2e{bottom:189.552000px;}
.y41{bottom:190.116000px;}
.y89{bottom:190.372500px;}
.y5f{bottom:190.476000px;}
.yb5{bottom:191.323500px;}
.ya7{bottom:193.993500px;}
.y76{bottom:195.663000px;}
.y50{bottom:196.381500px;}
.y8e{bottom:196.933152px;}
.y46{bottom:197.229765px;}
.y6c{bottom:197.381602px;}
.y9d{bottom:197.731182px;}
.y98{bottom:197.793000px;}
.y55{bottom:198.469182px;}
.y7f{bottom:198.490369px;}
.y37{bottom:198.543335px;}
.y24{bottom:198.659862px;}
.y2d{bottom:205.990500px;}
.y40{bottom:206.554500px;}
.y88{bottom:206.811000px;}
.y5e{bottom:206.914500px;}
.yac{bottom:207.095710px;}
.yb4{bottom:207.762000px;}
.ya6{bottom:210.432000px;}
.y75{bottom:212.100000px;}
.y4f{bottom:212.820000px;}
.y97{bottom:214.231500px;}
.y61{bottom:229.562580px;}
.y20{bottom:232.440000px;}
.y33{bottom:233.005500px;}
.y7b{bottom:233.262000px;}
.y51{bottom:233.365500px;}
.ya8{bottom:234.211500px;}
.y99{bottom:236.883000px;}
.y68{bottom:238.551000px;}
.y42{bottom:239.271000px;}
.y8a{bottom:240.682500px;}
.y62{bottom:332.520850px;}
.y8f{bottom:370.403271px;}
.y47{bottom:370.961157px;}
.y6d{bottom:371.246742px;}
.y9e{bottom:371.904250px;}
.y56{bottom:373.292325px;}
.y80{bottom:373.332174px;}
.y38{bottom:373.431796px;}
.y25{bottom:373.650966px;}
.yad{bottom:390.566836px;}
.y93{bottom:421.264070px;}
.y4b{bottom:421.898561px;}
.y71{bottom:422.223359px;}
.ya2{bottom:422.971152px;}
.yb0{bottom:424.164599px;}
.y5a{bottom:424.549825px;}
.y84{bottom:424.595146px;}
.y3c{bottom:424.708448px;}
.y29{bottom:424.957712px;}
.y63{bottom:435.479120px;}
.y1d{bottom:464.919000px;}
.y1c{bottom:493.939500px;}
.y64{bottom:538.437390px;}
.y1b{bottom:538.951500px;}
.y90{bottom:543.873389px;}
.y48{bottom:544.692549px;}
.y6e{bottom:545.111881px;}
.y9f{bottom:546.077319px;}
.y57{bottom:548.115467px;}
.y81{bottom:548.173978px;}
.y39{bottom:548.320257px;}
.y26{bottom:548.642070px;}
.y1a{bottom:555.390000px;}
.y19{bottom:571.828500px;}
.yae{bottom:574.037962px;}
.y18{bottom:624.132000px;}
.y65{bottom:641.395660px;}
.y17{bottom:648.042000px;}
.y16{bottom:662.986500px;}
.y15{bottom:677.929500px;}
.y14{bottom:692.874000px;}
.y13{bottom:707.818500px;}
.y91{bottom:717.343508px;}
.y49{bottom:718.423941px;}
.y6f{bottom:718.977020px;}
.ya0{bottom:720.250388px;}
.y12{bottom:722.761500px;}
.y58{bottom:722.938609px;}
.y82{bottom:723.015783px;}
.y3a{bottom:723.208718px;}
.y27{bottom:723.633174px;}
.y11{bottom:737.706000px;}
.y66{bottom:744.353930px;}
.y10{bottom:752.650500px;}
.yaf{bottom:757.509088px;}
.yf{bottom:767.593500px;}
.ye{bottom:782.538000px;}
.yd{bottom:797.482500px;}
.yc{bottom:812.425500px;}
.yb{bottom:840.819000px;}
.y67{bottom:847.312200px;}
.ya{bottom:880.420500px;}
.y92{bottom:890.813626px;}
.y4a{bottom:892.155333px;}
.y70{bottom:892.842159px;}
.ya1{bottom:894.423457px;}
.y59{bottom:897.761752px;}
.y83{bottom:897.857588px;}
.y3b{bottom:898.097179px;}
.y95{bottom:898.591066px;}
.y28{bottom:898.624278px;}
.y4d{bottom:899.944487px;}
.y73{bottom:900.637310px;}
.ya4{bottom:902.232414px;}
.yb2{bottom:904.778134px;}
.y5c{bottom:905.599854px;}
.y86{bottom:905.696527px;}
.y3e{bottom:905.938209px;}
.y2b{bottom:906.469911px;}
.y9{bottom:907.320000px;}
.y96{bottom:911.466324px;}
.y4e{bottom:912.839138px;}
.y74{bottom:913.541887px;}
.ya5{bottom:915.159846px;}
.yb3{bottom:917.742042px;}
.y5d{bottom:918.575536px;}
.y87{bottom:918.673594px;}
.y3f{bottom:918.918740px;}
.y2c{bottom:919.458059px;}
.y8{bottom:927.147000px;}
.y94{bottom:928.272915px;}
.y4c{bottom:929.671042px;}
.y72{bottom:930.386750px;}
.ya3{bottom:932.034542px;}
.yb1{bottom:934.664352px;}
.y5b{bottom:935.513214px;}
.y85{bottom:935.613081px;}
.y3d{bottom:935.862746px;}
.y2a{bottom:936.412010px;}
.y7{bottom:937.207500px;}
.y6{bottom:957.034500px;}
.y5{bottom:991.753500px;}
.y4{bottom:1031.175000px;}
.y3{bottom:1061.062500px;}
.y2{bottom:1161.039000px;}
.y1{bottom:1177.476000px;}
.y1f{bottom:1201.536000px;}
.h5{height:24.675533px;}
.h6{height:37.013299px;}
.h7{height:37.871028px;}
.h2{height:41.125613px;}
.h20{height:43.521458px;}
.h10{height:43.587008px;}
.h18{height:43.620563px;}
.h24{height:43.697819px;}
.h28{height:43.821116px;}
.h14{height:43.860914px;}
.h1c{height:43.865596px;}
.hd{height:43.877302px;}
.ha{height:43.903054px;}
.h1f{height:44.148881px;}
.h12{height:44.215377px;}
.h17{height:44.249416px;}
.h23{height:44.327785px;}
.h27{height:44.452860px;}
.h1b{height:44.497981px;}
.h8{height:46.076566px;}
.h21{height:49.738809px;}
.h11{height:49.813723px;}
.h19{height:49.852072px;}
.h25{height:49.940364px;}
.h29{height:50.081275px;}
.h15{height:50.126759px;}
.h1d{height:50.132110px;}
.he{height:50.145488px;}
.hb{height:50.174918px;}
.h4{height:56.660573px;}
.h3{height:72.712552px;}
.h1e{height:938.442409px;}
.hf{height:939.855852px;}
.h16{height:940.579401px;}
.h22{height:942.245245px;}
.h26{height:944.903865px;}
.h13{height:945.762027px;}
.h1a{height:945.862987px;}
.hc{height:946.115388px;}
.h9{height:946.670669px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:751.065331px;}
.wa{width:751.066629px;}
.w2{width:751.071000px;}
.w5{width:751.074630px;}
.w8{width:751.077262px;}
.w6{width:751.079211px;}
.w4{width:751.085680px;}
.w9{width:751.085745px;}
.w7{width:751.087448px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.979623px;}
.x12{left:13.370541px;}
.x11{left:20.451389px;}
.x10{left:35.391056px;}
.xe{left:46.532337px;}
.xa{left:55.275000px;}
.x14{left:58.323318px;}
.x1{left:60.357000px;}
.x30{left:65.022325px;}
.x3b{left:66.045149px;}
.xf{left:67.316299px;}
.xd{left:70.920000px;}
.x9{left:77.691000px;}
.x7{left:89.292000px;}
.x5{left:90.786000px;}
.x6{left:102.741000px;}
.x2{left:118.219500px;}
.x3{left:149.572500px;}
.x4{left:182.830500px;}
.x31{left:234.159038px;}
.x25{left:235.843895px;}
.x17{left:237.118843px;}
.x23{left:240.807126px;}
.x15{left:242.118063px;}
.x24{left:244.772137px;}
.x16{left:246.111824px;}
.x21{left:251.814000px;}
.xc{left:350.259000px;}
.x8{left:411.582000px;}
.x22{left:412.671339px;}
.x33{left:413.969312px;}
.x2c{left:415.102916px;}
.x35{left:416.820766px;}
.x2f{left:418.668622px;}
.x26{left:420.508916px;}
.x18{left:423.922884px;}
.x28{left:425.163718px;}
.x32{left:426.766454px;}
.x1a{left:427.811409px;}
.x34{left:430.623507px;}
.x1e{left:435.793856px;}
.x27{left:448.508414px;}
.x37{left:449.937390px;}
.x19{left:451.325375px;}
.x39{left:453.277523px;}
.x1f{left:454.681196px;}
.x2b{left:575.674665px;}
.x29{left:577.108269px;}
.x1d{left:579.413699px;}
.x2d{left:584.008250px;}
.x1b{left:587.945102px;}
.x38{left:590.009141px;}
.x2e{left:605.129086px;}
.x2a{left:626.016840px;}
.x36{left:628.402030px;}
.x1c{left:630.120901px;}
.x3a{left:631.237229px;}
.x20{left:633.476722px;}
.x3c{left:676.068000px;}
.xb{left:682.792500px;}
@media print{
.v3{vertical-align:-46.180083pt;}
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.655733pt;}
.ls2{letter-spacing:2.661067pt;}
.ls0{letter-spacing:13.283467pt;}
.ls3{letter-spacing:26.566400pt;}
.ls6{letter-spacing:67.779490pt;}
.ls9{letter-spacing:74.208052pt;}
.lsb{letter-spacing:80.135453pt;}
.ls7{letter-spacing:85.425833pt;}
.ls8{letter-spacing:86.643629pt;}
.lsa{letter-spacing:95.835117pt;}
.lsc{letter-spacing:98.377659pt;}
.ls5{letter-spacing:107.676908pt;}
.ws1e{word-spacing:-2.337890pt;}
.ws27{word-spacing:-1.328347pt;}
.ws26{word-spacing:-1.275213pt;}
.wsb{word-spacing:-1.004237pt;}
.ws1d{word-spacing:-0.584473pt;}
.ws8{word-spacing:-0.143462pt;}
.wse{word-spacing:-0.095642pt;}
.ws4{word-spacing:-0.045429pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:0.286925pt;}
.wsa{word-spacing:0.334746pt;}
.wsf{word-spacing:0.478208pt;}
.ws6{word-spacing:0.573850pt;}
.ws41{word-spacing:0.584473pt;}
.ws1c{word-spacing:1.115811pt;}
.ws7{word-spacing:1.147699pt;}
.ws42{word-spacing:1.275213pt;}
.wsc{word-spacing:1.434624pt;}
.ws1f{word-spacing:1.487748pt;}
.ws5{word-spacing:2.056294pt;}
.wsd{word-spacing:2.343219pt;}
.ws13{word-spacing:2.444158pt;}
.ws10{word-spacing:3.251814pt;}
.ws3{word-spacing:4.112589pt;}
.ws40{word-spacing:4.835182pt;}
.ws12{word-spacing:7.226206pt;}
.ws15{word-spacing:11.907379pt;}
.ws11{word-spacing:12.583925pt;}
.ws0{word-spacing:13.230333pt;}
.ws14{word-spacing:15.310492pt;}
.ws4b{word-spacing:23.141650pt;}
.ws29{word-spacing:23.176505pt;}
.ws3a{word-spacing:23.194348pt;}
.ws51{word-spacing:23.235427pt;}
.ws59{word-spacing:23.300987pt;}
.ws32{word-spacing:23.322149pt;}
.ws43{word-spacing:23.324639pt;}
.ws21{word-spacing:23.330863pt;}
.ws17{word-spacing:23.344556pt;}
.ws2{word-spacing:24.161196pt;}
.ws53{word-spacing:26.542123pt;}
.ws3c{word-spacing:38.396537pt;}
.ws5b{word-spacing:38.945265pt;}
.ws4d{word-spacing:39.840077pt;}
.ws45{word-spacing:41.931213pt;}
.ws49{word-spacing:46.928162pt;}
.ws38{word-spacing:49.186506pt;}
.ws60{word-spacing:53.908650pt;}
.ws22{word-spacing:54.133196pt;}
.ws34{word-spacing:54.946885pt;}
.ws2e{word-spacing:55.072274pt;}
.ws2a{word-spacing:55.097471pt;}
.ws33{word-spacing:55.918138pt;}
.ws23{word-spacing:56.892767pt;}
.ws4c{word-spacing:57.518223pt;}
.ws1a{word-spacing:57.611061pt;}
.ws3b{word-spacing:57.649202pt;}
.ws52{word-spacing:57.751304pt;}
.ws5a{word-spacing:57.914253pt;}
.ws44{word-spacing:57.973039pt;}
.ws5f{word-spacing:58.293998pt;}
.ws39{word-spacing:60.692318pt;}
.ws4f{word-spacing:60.735432pt;}
.ws37{word-spacing:60.795860pt;}
.ws18{word-spacing:62.388877pt;}
.ws54{word-spacing:64.299688pt;}
.ws19{word-spacing:64.646533pt;}
.ws55{word-spacing:65.349631pt;}
.ws56{word-spacing:65.466292pt;}
.ws57{word-spacing:69.778527pt;}
.ws28{word-spacing:72.423000pt;}
.ws31{word-spacing:72.878116pt;}
.ws20{word-spacing:72.905345pt;}
.ws16{word-spacing:72.948133pt;}
.ws3e{word-spacing:73.224760pt;}
.ws1b{word-spacing:74.849240pt;}
.ws4e{word-spacing:75.954766pt;}
.ws24{word-spacing:76.873283pt;}
.ws46{word-spacing:79.938551pt;}
.ws25{word-spacing:80.052161pt;}
.ws35{word-spacing:80.523073pt;}
.ws47{word-spacing:80.992526pt;}
.ws48{word-spacing:81.109634pt;}
.ws36{word-spacing:82.080580pt;}
.ws30{word-spacing:82.421379pt;}
.ws5c{word-spacing:82.497212pt;}
.ws5d{word-spacing:83.550119pt;}
.ws5e{word-spacing:83.667108pt;}
.ws3f{word-spacing:86.743237pt;}
.ws58{word-spacing:88.490306pt;}
.ws2b{word-spacing:91.881300pt;}
.ws2c{word-spacing:92.928582pt;}
.ws2d{word-spacing:93.044946pt;}
.ws3d{word-spacing:94.132634pt;}
.ws2f{word-spacing:97.984258pt;}
.ws4a{word-spacing:100.084642pt;}
.ws50{word-spacing:103.160127pt;}
._3{margin-left:-6.458187pt;}
._4{margin-left:-4.654549pt;}
._5{margin-left:-3.712816pt;}
._6{margin-left:-2.534502pt;}
._1{margin-left:-1.308368pt;}
._7{width:10.042368pt;}
._8{width:11.524813pt;}
._17{width:15.331543pt;}
._a{width:17.687211pt;}
._36{width:24.247600pt;}
._9{width:25.355556pt;}
._2e{width:38.908952pt;}
._3e{width:41.352126pt;}
._2{width:45.162508pt;}
._2d{width:50.344751pt;}
._2b{width:51.832872pt;}
._30{width:53.298407pt;}
._37{width:55.633601pt;}
._1f{width:56.712284pt;}
._1b{width:58.755789pt;}
._3a{width:59.749063pt;}
._21{width:60.744470pt;}
._29{width:62.272605pt;}
._e{width:63.349985pt;}
._2a{width:64.589573pt;}
._10{width:65.677966pt;}
._11{width:66.758281pt;}
._1a{width:68.370622pt;}
._24{width:69.939474pt;}
._12{width:72.476795pt;}
._20{width:74.300637pt;}
._d{width:76.423684pt;}
._2f{width:77.861084pt;}
._f{width:79.712773pt;}
._19{width:81.232548pt;}
._14{width:82.238335pt;}
._b{width:84.434550pt;}
._c{width:85.512867pt;}
._26{width:86.412993pt;}
._16{width:88.016706pt;}
._28{width:89.462582pt;}
._33{width:91.699328pt;}
._18{width:93.830020pt;}
._32{width:95.087558pt;}
._1c{width:96.229709pt;}
._3f{width:97.240100pt;}
._25{width:99.082763pt;}
._15{width:101.800406pt;}
._41{width:103.462784pt;}
._1e{width:106.407735pt;}
._31{width:108.077136pt;}
._23{width:109.643989pt;}
._35{width:115.033627pt;}
._40{width:116.085441pt;}
._3d{width:118.072177pt;}
._39{width:127.785728pt;}
._3c{width:130.643890pt;}
._27{width:240.716472pt;}
._34{width:253.559469pt;}
._1d{width:261.033896pt;}
._13{width:264.732479pt;}
._2c{width:270.933500pt;}
._42{width:308.251010pt;}
._38{width:322.967517pt;}
._3b{width:329.766619pt;}
._22{width:336.474201pt;}
._0{width:1417.186492pt;}
.fs4{font-size:31.880533pt;}
.fs14{font-size:41.642347pt;}
.fsc{font-size:41.705067pt;}
.fs10{font-size:41.737173pt;}
.fs16{font-size:41.811093pt;}
.fs18{font-size:41.929067pt;}
.fse{font-size:41.967147pt;}
.fs12{font-size:41.971627pt;}
.fsa{font-size:41.982827pt;}
.fs8{font-size:42.007467pt;}
.fs3{font-size:42.507200pt;}
.fs6{font-size:45.429333pt;}
.fs15{font-size:47.591253pt;}
.fsd{font-size:47.662933pt;}
.fs11{font-size:47.699627pt;}
.fs17{font-size:47.784107pt;}
.fs5{font-size:47.820800pt;}
.fs19{font-size:47.918933pt;}
.fsf{font-size:47.962453pt;}
.fs13{font-size:47.967573pt;}
.fsb{font-size:47.980373pt;}
.fs9{font-size:48.008533pt;}
.fs0{font-size:53.133867pt;}
.fs7{font-size:55.272533pt;}
.fs2{font-size:58.181867pt;}
.fs1{font-size:87.224533pt;}
.y0{bottom:0.000000pt;}
.y8c{bottom:2.161126pt;}
.y44{bottom:2.164381pt;}
.y6a{bottom:2.166048pt;}
.y9b{bottom:2.169884pt;}
.yaa{bottom:2.176006pt;}
.y53{bottom:2.177982pt;}
.y7d{bottom:2.178215pt;}
.y35{bottom:2.178796pt;}
.y22{bottom:2.180075pt;}
.y8b{bottom:13.942750pt;}
.y43{bottom:13.963750pt;}
.y69{bottom:13.974500pt;}
.y9a{bottom:13.999250pt;}
.ya9{bottom:14.038750pt;}
.y52{bottom:14.051500pt;}
.y7c{bottom:14.053000pt;}
.y34{bottom:14.056750pt;}
.y21{bottom:14.065000pt;}
.y8d{bottom:20.856030pt;}
.y45{bottom:20.887443pt;}
.y6b{bottom:20.903523pt;}
.y9c{bottom:20.940545pt;}
.yab{bottom:20.999630pt;}
.y54{bottom:21.018702pt;}
.y7e{bottom:21.020946pt;}
.y36{bottom:21.026555pt;}
.y23{bottom:21.038896pt;}
.y1e{bottom:85.052000pt;}
.y32{bottom:110.042667pt;}
.y60{bottom:112.537164pt;}
.y7a{bottom:115.474667pt;}
.y31{bottom:124.654667pt;}
.y79{bottom:130.086667pt;}
.y30{bottom:139.266667pt;}
.y78{bottom:144.698667pt;}
.y2f{bottom:153.878667pt;}
.y77{bottom:159.310667pt;}
.y2e{bottom:168.490667pt;}
.y41{bottom:168.992000pt;}
.y89{bottom:169.220000pt;}
.y5f{bottom:169.312000pt;}
.yb5{bottom:170.065333pt;}
.ya7{bottom:172.438667pt;}
.y76{bottom:173.922667pt;}
.y50{bottom:174.561333pt;}
.y8e{bottom:175.051691pt;}
.y46{bottom:175.315347pt;}
.y6c{bottom:175.450313pt;}
.y9d{bottom:175.761050pt;}
.y98{bottom:175.816000pt;}
.y55{bottom:176.417051pt;}
.y7f{bottom:176.435883pt;}
.y37{bottom:176.482965pt;}
.y24{bottom:176.586544pt;}
.y2d{bottom:183.102667pt;}
.y40{bottom:183.604000pt;}
.y88{bottom:183.832000pt;}
.y5e{bottom:183.924000pt;}
.yac{bottom:184.085076pt;}
.yb4{bottom:184.677333pt;}
.ya6{bottom:187.050667pt;}
.y75{bottom:188.533333pt;}
.y4f{bottom:189.173333pt;}
.y97{bottom:190.428000pt;}
.y61{bottom:204.055626pt;}
.y20{bottom:206.613333pt;}
.y33{bottom:207.116000pt;}
.y7b{bottom:207.344000pt;}
.y51{bottom:207.436000pt;}
.ya8{bottom:208.188000pt;}
.y99{bottom:210.562667pt;}
.y68{bottom:212.045333pt;}
.y42{bottom:212.685333pt;}
.y8a{bottom:213.940000pt;}
.y62{bottom:295.574089pt;}
.y8f{bottom:329.247352pt;}
.y47{bottom:329.743251pt;}
.y6d{bottom:329.997104pt;}
.y9e{bottom:330.581556pt;}
.y56{bottom:331.815400pt;}
.y80{bottom:331.850821pt;}
.y38{bottom:331.939374pt;}
.y25{bottom:332.134192pt;}
.yad{bottom:347.170521pt;}
.y93{bottom:374.456951pt;}
.y4b{bottom:375.020943pt;}
.y71{bottom:375.309653pt;}
.ya2{bottom:375.974357pt;}
.yb0{bottom:377.035199pt;}
.y5a{bottom:377.377623pt;}
.y84{bottom:377.417908pt;}
.y3c{bottom:377.518621pt;}
.y29{bottom:377.740189pt;}
.y63{bottom:387.092551pt;}
.y1d{bottom:413.261333pt;}
.y1c{bottom:439.057333pt;}
.y64{bottom:478.611013pt;}
.y1b{bottom:479.068000pt;}
.y90{bottom:483.443013pt;}
.y48{bottom:484.171155pt;}
.y6e{bottom:484.543894pt;}
.y9f{bottom:485.402062pt;}
.y57{bottom:487.213748pt;}
.y81{bottom:487.265759pt;}
.y39{bottom:487.395784pt;}
.y26{bottom:487.681840pt;}
.y1a{bottom:493.680000pt;}
.y19{bottom:508.292000pt;}
.yae{bottom:510.255966pt;}
.y18{bottom:554.784000pt;}
.y65{bottom:570.129475pt;}
.y17{bottom:576.037333pt;}
.y16{bottom:589.321333pt;}
.y15{bottom:602.604000pt;}
.y14{bottom:615.888000pt;}
.y13{bottom:629.172000pt;}
.y91{bottom:637.638673pt;}
.y49{bottom:638.599059pt;}
.y6f{bottom:639.090685pt;}
.ya0{bottom:640.222567pt;}
.y12{bottom:642.454667pt;}
.y58{bottom:642.612097pt;}
.y82{bottom:642.680696pt;}
.y3a{bottom:642.852194pt;}
.y27{bottom:643.229488pt;}
.y11{bottom:655.738667pt;}
.y66{bottom:661.647937pt;}
.y10{bottom:669.022667pt;}
.yaf{bottom:673.341412pt;}
.yf{bottom:682.305333pt;}
.ye{bottom:695.589333pt;}
.yd{bottom:708.873333pt;}
.yc{bottom:722.156000pt;}
.yb{bottom:747.394667pt;}
.y67{bottom:753.166400pt;}
.ya{bottom:782.596000pt;}
.y92{bottom:791.834334pt;}
.y4a{bottom:793.026963pt;}
.y70{bottom:793.637475pt;}
.ya1{bottom:795.043073pt;}
.y59{bottom:798.010446pt;}
.y83{bottom:798.095634pt;}
.y3b{bottom:798.308603pt;}
.y95{bottom:798.747614pt;}
.y28{bottom:798.777136pt;}
.y4d{bottom:799.950655pt;}
.y73{bottom:800.566498pt;}
.ya4{bottom:801.984368pt;}
.yb2{bottom:804.247230pt;}
.y5c{bottom:804.977648pt;}
.y86{bottom:805.063580pt;}
.y3e{bottom:805.278408pt;}
.y2b{bottom:805.751032pt;}
.y9{bottom:806.506667pt;}
.y96{bottom:810.192288pt;}
.y4e{bottom:811.412567pt;}
.y74{bottom:812.037233pt;}
.ya5{bottom:813.475419pt;}
.yb3{bottom:815.770704pt;}
.y5d{bottom:816.511588pt;}
.y87{bottom:816.598750pt;}
.y3f{bottom:816.816657pt;}
.y2c{bottom:817.296052pt;}
.y8{bottom:824.130667pt;}
.y94{bottom:825.131480pt;}
.y4c{bottom:826.374260pt;}
.y72{bottom:827.010444pt;}
.ya3{bottom:828.475148pt;}
.yb1{bottom:830.812757pt;}
.y5b{bottom:831.567302pt;}
.y85{bottom:831.656072pt;}
.y3d{bottom:831.877996pt;}
.y2a{bottom:832.366231pt;}
.y7{bottom:833.073333pt;}
.y6{bottom:850.697333pt;}
.y5{bottom:881.558667pt;}
.y4{bottom:916.600000pt;}
.y3{bottom:943.166667pt;}
.y2{bottom:1032.034667pt;}
.y1{bottom:1046.645333pt;}
.y1f{bottom:1068.032000pt;}
.h5{height:21.933807pt;}
.h6{height:32.900710pt;}
.h7{height:33.663136pt;}
.h2{height:36.556100pt;}
.h20{height:38.685740pt;}
.h10{height:38.744007pt;}
.h18{height:38.773834pt;}
.h24{height:38.842506pt;}
.h28{height:38.952103pt;}
.h14{height:38.987479pt;}
.h1c{height:38.991641pt;}
.hd{height:39.002046pt;}
.ha{height:39.024937pt;}
.h1f{height:39.243450pt;}
.h12{height:39.302557pt;}
.h17{height:39.332814pt;}
.h23{height:39.402476pt;}
.h27{height:39.513653pt;}
.h1b{height:39.553761pt;}
.h8{height:40.956947pt;}
.h21{height:44.212274pt;}
.h11{height:44.278865pt;}
.h19{height:44.312953pt;}
.h25{height:44.391435pt;}
.h29{height:44.516689pt;}
.h15{height:44.557119pt;}
.h1d{height:44.561876pt;}
.he{height:44.573767pt;}
.hb{height:44.599927pt;}
.h4{height:50.364954pt;}
.h3{height:64.633379pt;}
.h1e{height:834.171030pt;}
.hf{height:835.427424pt;}
.h16{height:836.070578pt;}
.h22{height:837.551329pt;}
.h26{height:839.914547pt;}
.h13{height:840.677357pt;}
.h1a{height:840.767100pt;}
.hc{height:840.991456pt;}
.h9{height:841.485040pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:667.613627pt;}
.wa{width:667.614781pt;}
.w2{width:667.618667pt;}
.w5{width:667.621894pt;}
.w8{width:667.624233pt;}
.w6{width:667.625965pt;}
.w4{width:667.631716pt;}
.w9{width:667.631773pt;}
.w7{width:667.633287pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.981887pt;}
.x12{left:11.884925pt;}
.x11{left:18.179013pt;}
.x10{left:31.458717pt;}
.xe{left:41.362077pt;}
.xa{left:49.133333pt;}
.x14{left:51.842949pt;}
.x1{left:53.650667pt;}
.x30{left:57.797622pt;}
.x3b{left:58.706799pt;}
.xf{left:59.836710pt;}
.xd{left:63.040000pt;}
.x9{left:69.058667pt;}
.x7{left:79.370667pt;}
.x5{left:80.698667pt;}
.x6{left:91.325333pt;}
.x2{left:105.084000pt;}
.x3{left:132.953333pt;}
.x4{left:162.516000pt;}
.x31{left:208.141367pt;}
.x25{left:209.639017pt;}
.x17{left:210.772305pt;}
.x23{left:214.050779pt;}
.x15{left:215.216056pt;}
.x24{left:217.575233pt;}
.x16{left:218.766066pt;}
.x21{left:223.834667pt;}
.xc{left:311.341333pt;}
.x8{left:365.850667pt;}
.x22{left:366.818968pt;}
.x33{left:367.972722pt;}
.x2c{left:368.980369pt;}
.x35{left:370.507348pt;}
.x2f{left:372.149886pt;}
.x26{left:373.785703pt;}
.x18{left:376.820341pt;}
.x28{left:377.923305pt;}
.x32{left:379.347959pt;}
.x1a{left:380.276808pt;}
.x34{left:382.776451pt;}
.x1e{left:387.372317pt;}
.x27{left:398.674145pt;}
.x37{left:399.944346pt;}
.x19{left:401.178111pt;}
.x39{left:402.913354pt;}
.x1f{left:404.161063pt;}
.x2b{left:511.710814pt;}
.x29{left:512.985128pt;}
.x1d{left:515.034399pt;}
.x2d{left:519.118445pt;}
.x1b{left:522.617869pt;}
.x38{left:524.452570pt;}
.x2e{left:537.892521pt;}
.x2a{left:556.459413pt;}
.x36{left:558.579582pt;}
.x1c{left:560.107467pt;}
.x3a{left:561.099759pt;}
.x20{left:563.090419pt;}
.x3c{left:600.949333pt;}
.xb{left:606.926667pt;}
}




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