
    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_adaab30da19221f673cf3518.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_001a2fc5cbea145aa7eb2189.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a5b78cefde07a420906961c2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.360019;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_a547ff930f63bd20fd578e10.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_63d2b95f15be4f8f8f3a1691.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-0.312624px;}
.ls3d{letter-spacing:-0.270540px;}
.ls35{letter-spacing:-0.258516px;}
.ls39{letter-spacing:-0.222444px;}
.ls27{letter-spacing:-0.192384px;}
.ls3e{letter-spacing:-0.180360px;}
.ls36{letter-spacing:-0.168336px;}
.ls23{letter-spacing:-0.162324px;}
.ls2e{letter-spacing:-0.156312px;}
.ls2f{letter-spacing:-0.150300px;}
.ls2b{letter-spacing:-0.144288px;}
.lsf{letter-spacing:-0.138276px;}
.ls1b{letter-spacing:-0.132264px;}
.ls1d{letter-spacing:-0.126252px;}
.ls18{letter-spacing:-0.120240px;}
.ls1f{letter-spacing:-0.114228px;}
.lse{letter-spacing:-0.108216px;}
.ls12{letter-spacing:-0.102204px;}
.ls21{letter-spacing:-0.096192px;}
.ls1e{letter-spacing:-0.090180px;}
.ls14{letter-spacing:-0.084168px;}
.ls1c{letter-spacing:-0.078156px;}
.ls13{letter-spacing:-0.072144px;}
.lsc{letter-spacing:-0.070308px;}
.ls34{letter-spacing:-0.066132px;}
.ls29{letter-spacing:-0.060120px;}
.lsa{letter-spacing:-0.057672px;}
.ls2a{letter-spacing:-0.054108px;}
.ls15{letter-spacing:-0.048096px;}
.ls28{letter-spacing:-0.042084px;}
.ls10{letter-spacing:-0.036072px;}
.ls22{letter-spacing:-0.030060px;}
.ls3a{letter-spacing:-0.026352px;}
.ls20{letter-spacing:-0.024048px;}
.ls11{letter-spacing:-0.018036px;}
.lsd{letter-spacing:-0.013176px;}
.ls17{letter-spacing:-0.012024px;}
.ls19{letter-spacing:-0.006012px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.006012px;}
.ls24{letter-spacing:0.012024px;}
.ls7{letter-spacing:0.018036px;}
.ls3{letter-spacing:0.026352px;}
.ls41{letter-spacing:0.030060px;}
.ls33{letter-spacing:0.032940px;}
.ls0{letter-spacing:0.039528px;}
.ls38{letter-spacing:0.042084px;}
.ls30{letter-spacing:0.046116px;}
.ls8{letter-spacing:0.054108px;}
.ls9{letter-spacing:0.060120px;}
.ls25{letter-spacing:0.065880px;}
.ls5{letter-spacing:0.066132px;}
.ls4{letter-spacing:0.072144px;}
.ls40{letter-spacing:0.072468px;}
.ls16{letter-spacing:0.078156px;}
.ls6{letter-spacing:0.084168px;}
.ls2{letter-spacing:0.090180px;}
.ls32{letter-spacing:0.096192px;}
.ls1a{letter-spacing:0.102204px;}
.ls43{letter-spacing:0.108216px;}
.ls3c{letter-spacing:0.120240px;}
.ls2c{letter-spacing:0.138276px;}
.ls37{letter-spacing:0.144288px;}
.ls31{letter-spacing:0.162324px;}
.ls3b{letter-spacing:0.180360px;}
.ls26{letter-spacing:63.564876px;}
.ls3f{letter-spacing:846.000000px;}
.ls42{letter-spacing:848.972556px;}
.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;}
}
.ws7d{word-spacing:-15.210360px;}
.ws82{word-spacing:-15.132204px;}
.ws81{word-spacing:-15.120180px;}
.ws7f{word-spacing:-15.090120px;}
.ws0{word-spacing:-15.023988px;}
.ws69{word-spacing:-14.957856px;}
.ws7e{word-spacing:-14.945832px;}
.ws85{word-spacing:-14.933808px;}
.ws84{word-spacing:-14.927796px;}
.ws86{word-spacing:-14.915772px;}
.ws83{word-spacing:-14.891724px;}
.ws80{word-spacing:-14.849640px;}
.ws19{word-spacing:-3.613212px;}
.ws1a{word-spacing:-3.018024px;}
.ws2a{word-spacing:-2.867724px;}
.ws2b{word-spacing:-2.669328px;}
.ws14{word-spacing:-2.494980px;}
.ws15{word-spacing:-2.308608px;}
.ws2e{word-spacing:-1.959912px;}
.ws2f{word-spacing:-1.929852px;}
.ws25{word-spacing:-1.076148px;}
.ws1f{word-spacing:-0.619236px;}
.ws1e{word-spacing:-0.559116px;}
.ws37{word-spacing:-0.553104px;}
.ws38{word-spacing:-0.535068px;}
.ws8e{word-spacing:-0.414828px;}
.ws99{word-spacing:-0.390780px;}
.ws9d{word-spacing:-0.378756px;}
.ws50{word-spacing:-0.372744px;}
.ws9a{word-spacing:-0.366732px;}
.ws92{word-spacing:-0.360720px;}
.ws88{word-spacing:-0.354708px;}
.ws98{word-spacing:-0.348696px;}
.ws61{word-spacing:-0.342684px;}
.ws5f{word-spacing:-0.324648px;}
.ws9f{word-spacing:-0.282564px;}
.ws8d{word-spacing:-0.276552px;}
.ws70{word-spacing:-0.264528px;}
.ws96{word-spacing:-0.258516px;}
.ws91{word-spacing:-0.252504px;}
.ws5b{word-spacing:-0.246492px;}
.ws59{word-spacing:-0.240480px;}
.ws89{word-spacing:-0.234468px;}
.ws4f{word-spacing:-0.228456px;}
.ws9e{word-spacing:-0.222444px;}
.ws2{word-spacing:-0.201852px;}
.ws87{word-spacing:-0.198396px;}
.ws8c{word-spacing:-0.192384px;}
.ws6d{word-spacing:-0.186372px;}
.ws58{word-spacing:-0.174348px;}
.ws9b{word-spacing:-0.168336px;}
.ws79{word-spacing:-0.156312px;}
.ws9c{word-spacing:-0.150300px;}
.ws6c{word-spacing:-0.144288px;}
.ws7c{word-spacing:-0.138276px;}
.ws44{word-spacing:-0.132264px;}
.ws51{word-spacing:-0.126252px;}
.ws78{word-spacing:-0.108216px;}
.ws8f{word-spacing:-0.102204px;}
.ws67{word-spacing:-0.072144px;}
.ws55{word-spacing:-0.048096px;}
.ws8b{word-spacing:-0.030060px;}
.ws4{word-spacing:-0.023436px;}
.ws73{word-spacing:-0.012024px;}
.ws6a{word-spacing:-0.006012px;}
.ws3{word-spacing:0.000000px;}
.ws65{word-spacing:0.006012px;}
.ws62{word-spacing:0.012024px;}
.ws49{word-spacing:0.018036px;}
.ws93{word-spacing:0.019764px;}
.ws33{word-spacing:0.024048px;}
.ws56{word-spacing:0.026352px;}
.ws97{word-spacing:0.030060px;}
.ws3e{word-spacing:0.036072px;}
.ws64{word-spacing:0.046116px;}
.ws90{word-spacing:0.048096px;}
.ws5{word-spacing:0.052704px;}
.ws7b{word-spacing:0.059292px;}
.ws94{word-spacing:0.060120px;}
.ws17{word-spacing:0.065880px;}
.ws95{word-spacing:0.072144px;}
.ws48{word-spacing:0.078156px;}
.ws12{word-spacing:0.084168px;}
.ws45{word-spacing:0.090180px;}
.ws6f{word-spacing:0.096192px;}
.ws13{word-spacing:0.102204px;}
.ws1c{word-spacing:0.108216px;}
.ws4d{word-spacing:0.114228px;}
.ws4b{word-spacing:0.120240px;}
.ws71{word-spacing:0.126252px;}
.ws4a{word-spacing:0.132264px;}
.ws6b{word-spacing:0.138276px;}
.ws1{word-spacing:0.144180px;}
.ws4e{word-spacing:0.144288px;}
.ws4c{word-spacing:0.150300px;}
.ws74{word-spacing:0.156312px;}
.ws72{word-spacing:0.162324px;}
.ws66{word-spacing:0.168336px;}
.ws5e{word-spacing:0.174348px;}
.ws76{word-spacing:0.180360px;}
.ws5c{word-spacing:0.186372px;}
.ws16{word-spacing:0.192384px;}
.ws47{word-spacing:0.198396px;}
.ws29{word-spacing:0.204408px;}
.ws68{word-spacing:0.210420px;}
.ws24{word-spacing:0.216432px;}
.ws57{word-spacing:0.222444px;}
.ws6e{word-spacing:0.228456px;}
.ws75{word-spacing:0.234468px;}
.ws63{word-spacing:0.240480px;}
.ws60{word-spacing:0.246492px;}
.ws5a{word-spacing:0.252504px;}
.ws7a{word-spacing:0.258516px;}
.ws46{word-spacing:0.282564px;}
.ws8a{word-spacing:0.312624px;}
.ws77{word-spacing:0.348696px;}
.ws5d{word-spacing:0.402804px;}
.ws1b{word-spacing:0.486972px;}
.ws1d{word-spacing:0.529056px;}
.ws20{word-spacing:1.082160px;}
.ws21{word-spacing:1.256508px;}
.ws53{word-spacing:1.899792px;}
.wsa{word-spacing:1.905804px;}
.ws9{word-spacing:1.923840px;}
.ws54{word-spacing:1.995984px;}
.ws52{word-spacing:2.014020px;}
.ws43{word-spacing:2.164320px;}
.ws2d{word-spacing:2.350692px;}
.ws2c{word-spacing:2.386764px;}
.ws28{word-spacing:3.240468px;}
.ws7{word-spacing:3.468924px;}
.ws6{word-spacing:3.799584px;}
.ws18{word-spacing:4.070124px;}
.ws22{word-spacing:4.136256px;}
.ws23{word-spacing:4.172328px;}
.ws3b{word-spacing:4.334652px;}
.ws3d{word-spacing:4.388760px;}
.ws3c{word-spacing:4.406796px;}
.ws30{word-spacing:4.695372px;}
.ws3f{word-spacing:4.797576px;}
.ws40{word-spacing:4.929840px;}
.ws34{word-spacing:6.486948px;}
.ws32{word-spacing:6.492960px;}
.ws26{word-spacing:6.577128px;}
.ws36{word-spacing:6.595164px;}
.ws35{word-spacing:6.619212px;}
.ws27{word-spacing:6.661296px;}
.wsb{word-spacing:6.673320px;}
.ws8{word-spacing:6.859692px;}
.ws42{word-spacing:9.030024px;}
.ws41{word-spacing:9.174312px;}
.ws3a{word-spacing:10.286532px;}
.ws39{word-spacing:10.466892px;}
.ws10{word-spacing:11.170296px;}
.ws11{word-spacing:11.356668px;}
.wsc{word-spacing:13.839624px;}
.wsd{word-spacing:13.851648px;}
.ws31{word-spacing:14.957856px;}
.wsf{word-spacing:19.112148px;}
.wse{word-spacing:19.220364px;}
._2{margin-left:-5.591160px;}
._4{margin-left:-4.364712px;}
._3{margin-left:-2.753496px;}
._1{margin-left:-1.088172px;}
._0{width:1.016028px;}
.fc2{color:rgb(31,73,124);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.120000px;}
.fs4{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:78.120000px;}
.fs0{font-size:96.120000px;}
.fs6{font-size:168.120000px;}
.y0{bottom:0.000000px;}
.y36{bottom:117.362448px;}
.y6d{bottom:120.960828px;}
.yea{bottom:124.380009px;}
.yc7{bottom:129.420198px;}
.y9c{bottom:132.840612px;}
.y35{bottom:134.552259px;}
.y6c{bottom:138.240819px;}
.ye9{bottom:141.660000px;}
.yc6{bottom:146.610009px;}
.y9b{bottom:150.120603px;}
.y34{bottom:151.832250px;}
.y6b{bottom:155.520810px;}
.ye8{bottom:159.570000px;}
.yc5{bottom:163.890000px;}
.y9a{bottom:167.310414px;}
.y33{bottom:169.112241px;}
.y6a{bottom:172.710621px;}
.ye7{bottom:179.641566px;}
.yc4{bottom:181.170189px;}
.y99{bottom:184.590405px;}
.y32{bottom:186.302052px;}
.y69{bottom:189.990612px;}
.ye6{bottom:193.590909px;}
.yc3{bottom:198.360000px;}
.y98{bottom:201.870396px;}
.y31{bottom:203.582043px;}
.y68{bottom:207.270603px;}
.yc2{bottom:215.640198px;}
.y97{bottom:219.060207px;}
.y30{bottom:220.771854px;}
.y67{bottom:224.460414px;}
.yc1{bottom:232.920189px;}
.y96{bottom:236.340198px;}
.y2f{bottom:238.051845px;}
.y66{bottom:241.740405px;}
.yc0{bottom:250.110000px;}
.y95{bottom:253.620189px;}
.y2e{bottom:255.331836px;}
.y65{bottom:259.020396px;}
.ybf{bottom:267.390198px;}
.y94{bottom:270.810000px;}
.y2d{bottom:272.521647px;}
.y64{bottom:276.210207px;}
.ybe{bottom:284.670189px;}
.y93{bottom:288.450000px;}
.y2c{bottom:289.801638px;}
.y63{bottom:293.490198px;}
.ybd{bottom:301.860000px;}
.y2b{bottom:307.081629px;}
.y92{bottom:307.082673px;}
.y62{bottom:310.770189px;}
.ybc{bottom:319.140009px;}
.y2a{bottom:324.271440px;}
.y91{bottom:324.272484px;}
.y61{bottom:327.960000px;}
.ybb{bottom:336.420000px;}
.y29{bottom:341.551431px;}
.y90{bottom:341.552475px;}
.y60{bottom:345.600000px;}
.yba{bottom:353.610009px;}
.y28{bottom:358.831422px;}
.y8f{bottom:358.832466px;}
.y5f{bottom:364.229253px;}
.yb9{bottom:370.890000px;}
.y27{bottom:376.021233px;}
.y8e{bottom:376.022277px;}
.y5e{bottom:381.419064px;}
.ye5{bottom:385.830621px;}
.yb8{bottom:388.080009px;}
.y26{bottom:393.301224px;}
.y8d{bottom:393.302268px;}
.yf9{bottom:393.302871px;}
.y5d{bottom:398.699055px;}
.ye4{bottom:403.110612px;}
.yb7{bottom:405.360000px;}
.yf8{bottom:410.492682px;}
.y25{bottom:410.581215px;}
.y8c{bottom:410.582259px;}
.y5c{bottom:415.979046px;}
.ye3{bottom:420.390603px;}
.yb6{bottom:422.640396px;}
.y24{bottom:427.771026px;}
.y8b{bottom:427.772070px;}
.yf7{bottom:427.772673px;}
.y5b{bottom:433.168857px;}
.ye2{bottom:437.580414px;}
.yb5{bottom:439.830207px;}
.y23{bottom:445.051017px;}
.y8a{bottom:445.052061px;}
.yf6{bottom:445.052664px;}
.y5a{bottom:450.448848px;}
.ye1{bottom:454.860405px;}
.yb4{bottom:457.110198px;}
.yf5{bottom:462.242475px;}
.y22{bottom:462.331008px;}
.y89{bottom:462.332052px;}
.y59{bottom:467.728839px;}
.ye0{bottom:472.140396px;}
.yb3{bottom:474.390189px;}
.yf4{bottom:476.281998px;}
.y21{bottom:479.520819px;}
.y88{bottom:479.521863px;}
.y58{bottom:484.918650px;}
.ydf{bottom:489.330207px;}
.yb2{bottom:491.580000px;}
.y20{bottom:496.800810px;}
.y87{bottom:496.801854px;}
.y57{bottom:502.198641px;}
.yde{bottom:506.610198px;}
.yb1{bottom:508.860216px;}
.y1f{bottom:514.080801px;}
.y86{bottom:514.081845px;}
.y56{bottom:519.388452px;}
.ydd{bottom:523.800009px;}
.yb0{bottom:526.140207px;}
.yf3{bottom:529.022268px;}
.y1e{bottom:531.270612px;}
.y85{bottom:531.271656px;}
.y55{bottom:536.668443px;}
.y107{bottom:538.560207px;}
.ydc{bottom:541.080000px;}
.yaf{bottom:543.330018px;}
.yf2{bottom:546.302259px;}
.y1d{bottom:548.550603px;}
.y84{bottom:548.551647px;}
.y54{bottom:553.948434px;}
.y106{bottom:555.750018px;}
.ydb{bottom:558.990000px;}
.yae{bottom:560.610009px;}
.yf1{bottom:563.492070px;}
.y1c{bottom:565.740414px;}
.y83{bottom:565.741458px;}
.y53{bottom:571.138245px;}
.y105{bottom:573.030009px;}
.yad{bottom:577.890000px;}
.yda{bottom:579.061872px;}
.yf0{bottom:580.772061px;}
.y1b{bottom:583.020405px;}
.y82{bottom:583.021449px;}
.y52{bottom:589.498893px;}
.y104{bottom:590.310000px;}
.yd9{bottom:593.011215px;}
.yac{bottom:595.440000px;}
.yef{bottom:598.052052px;}
.y1a{bottom:600.300396px;}
.y81{bottom:600.301440px;}
.y51{bottom:607.859541px;}
.y103{bottom:608.130000px;}
.yab{bottom:614.070405px;}
.yee{bottom:615.241863px;}
.y19{bottom:617.490207px;}
.y80{bottom:617.491251px;}
.y50{bottom:626.130009px;}
.y102{bottom:628.200729px;}
.yaa{bottom:631.350396px;}
.yed{bottom:632.521854px;}
.y18{bottom:634.770198px;}
.y7f{bottom:634.771242px;}
.y101{bottom:642.240252px;}
.y4f{bottom:643.410000px;}
.yd8{bottom:645.751485px;}
.ya9{bottom:648.540207px;}
.yec{bottom:649.801845px;}
.y17{bottom:652.050189px;}
.y7e{bottom:652.051233px;}
.y4e{bottom:661.320000px;}
.yd7{bottom:663.031476px;}
.yeb{bottom:663.751188px;}
.ya8{bottom:665.820198px;}
.y16{bottom:669.240000px;}
.y7d{bottom:669.241044px;}
.yd6{bottom:680.311467px;}
.y4d{bottom:681.750000px;}
.ya7{bottom:683.100189px;}
.y7c{bottom:686.521035px;}
.y15{bottom:687.150000px;}
.yd5{bottom:697.501278px;}
.ya6{bottom:700.290000px;}
.y4c{bottom:700.920000px;}
.y7b{bottom:703.801026px;}
.y14{bottom:707.580000px;}
.yd4{bottom:714.781269px;}
.ya5{bottom:717.930000px;}
.y7a{bottom:720.990837px;}
.y4b{bottom:720.991440px;}
.y13{bottom:726.840000px;}
.yd3{bottom:732.061260px;}
.ya4{bottom:736.560414px;}
.y79{bottom:738.270828px;}
.y4a{bottom:738.271431px;}
.y12{bottom:746.910819px;}
.yd2{bottom:749.251071px;}
.ya3{bottom:753.750225px;}
.y100{bottom:754.560945px;}
.y78{bottom:755.550819px;}
.y49{bottom:755.551422px;}
.y11{bottom:764.100630px;}
.yd1{bottom:766.531062px;}
.ya2{bottom:771.030216px;}
.yff{bottom:771.750756px;}
.y77{bottom:772.740630px;}
.y48{bottom:772.741233px;}
.y10{bottom:781.380621px;}
.yd0{bottom:783.811053px;}
.ya1{bottom:788.310207px;}
.yfe{bottom:789.030747px;}
.y76{bottom:790.020621px;}
.y47{bottom:790.021224px;}
.yf{bottom:798.660612px;}
.ycf{bottom:801.000864px;}
.ya0{bottom:805.500018px;}
.yfd{bottom:806.310738px;}
.y75{bottom:807.300612px;}
.y46{bottom:807.301215px;}
.ye{bottom:815.850423px;}
.yce{bottom:818.280855px;}
.y9f{bottom:822.780009px;}
.yfc{bottom:823.500549px;}
.y74{bottom:824.490423px;}
.y45{bottom:824.491026px;}
.ycd{bottom:832.320378px;}
.yd{bottom:833.130414px;}
.y9e{bottom:840.060000px;}
.yfb{bottom:840.780540px;}
.y73{bottom:841.770414px;}
.y44{bottom:841.771017px;}
.yc{bottom:850.410405px;}
.yfa{bottom:854.820063px;}
.y9d{bottom:857.610000px;}
.y72{bottom:859.050405px;}
.y43{bottom:859.051008px;}
.yb{bottom:867.600216px;}
.y71{bottom:876.240216px;}
.y42{bottom:876.240819px;}
.ya{bottom:884.880207px;}
.y70{bottom:893.520207px;}
.y41{bottom:893.520810px;}
.y9{bottom:902.160198px;}
.y6f{bottom:910.710018px;}
.y40{bottom:910.710621px;}
.y8{bottom:919.350009px;}
.y6e{bottom:927.990009px;}
.y3f{bottom:927.990612px;}
.y7{bottom:936.630000px;}
.y3e{bottom:945.270603px;}
.y6{bottom:954.270000px;}
.y3d{bottom:962.460414px;}
.y3c{bottom:979.740405px;}
.y5{bottom:979.920000px;}
.y4{bottom:992.159850px;}
.ycc{bottom:995.310207px;}
.y3b{bottom:997.020396px;}
.y3{bottom:1011.779325px;}
.ycb{bottom:1012.500018px;}
.y3a{bottom:1014.210207px;}
.yca{bottom:1029.780009px;}
.y39{bottom:1031.490198px;}
.y2{bottom:1034.190000px;}
.yc9{bottom:1047.060000px;}
.y38{bottom:1048.770189px;}
.y1{bottom:1057.590000px;}
.yc8{bottom:1064.610000px;}
.y37{bottom:1065.960000px;}
.h4{height:29.265996px;}
.h7{height:40.745391px;}
.hb{height:41.743477px;}
.h6{height:41.772832px;}
.h5{height:44.649141px;}
.h3{height:45.775020px;}
.h8{height:48.793599px;}
.he{height:48.796047px;}
.ha{height:48.796875px;}
.hd{height:50.026552px;}
.h9{height:50.027344px;}
.h2{height:54.279668px;}
.h1{height:65.143828px;}
.hc{height:116.811436px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:162.990000px;}
.x7{left:188.999892px;}
.xe{left:212.940000px;}
.xd{left:215.999784px;}
.x16{left:232.740000px;}
.x13{left:237.600900px;}
.x10{left:250.920486px;}
.x14{left:252.450540px;}
.x12{left:275.939424px;}
.x6{left:325.170000px;}
.x4{left:334.980000px;}
.x8{left:357.930000px;}
.x18{left:372.509982px;}
.xb{left:390.690000px;}
.x9{left:395.280000px;}
.x5{left:406.440000px;}
.x3{left:408.329415px;}
.xa{left:411.300000px;}
.xc{left:420.480000px;}
.x2{left:459.000000px;}
.x11{left:663.029559px;}
.x19{left:675.000756px;}
.x17{left:705.600333px;}
.x15{left:722.790342px;}
.xf{left:729.000738px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-0.277888pt;}
.ls3d{letter-spacing:-0.240480pt;}
.ls35{letter-spacing:-0.229792pt;}
.ls39{letter-spacing:-0.197728pt;}
.ls27{letter-spacing:-0.171008pt;}
.ls3e{letter-spacing:-0.160320pt;}
.ls36{letter-spacing:-0.149632pt;}
.ls23{letter-spacing:-0.144288pt;}
.ls2e{letter-spacing:-0.138944pt;}
.ls2f{letter-spacing:-0.133600pt;}
.ls2b{letter-spacing:-0.128256pt;}
.lsf{letter-spacing:-0.122912pt;}
.ls1b{letter-spacing:-0.117568pt;}
.ls1d{letter-spacing:-0.112224pt;}
.ls18{letter-spacing:-0.106880pt;}
.ls1f{letter-spacing:-0.101536pt;}
.lse{letter-spacing:-0.096192pt;}
.ls12{letter-spacing:-0.090848pt;}
.ls21{letter-spacing:-0.085504pt;}
.ls1e{letter-spacing:-0.080160pt;}
.ls14{letter-spacing:-0.074816pt;}
.ls1c{letter-spacing:-0.069472pt;}
.ls13{letter-spacing:-0.064128pt;}
.lsc{letter-spacing:-0.062496pt;}
.ls34{letter-spacing:-0.058784pt;}
.ls29{letter-spacing:-0.053440pt;}
.lsa{letter-spacing:-0.051264pt;}
.ls2a{letter-spacing:-0.048096pt;}
.ls15{letter-spacing:-0.042752pt;}
.ls28{letter-spacing:-0.037408pt;}
.ls10{letter-spacing:-0.032064pt;}
.ls22{letter-spacing:-0.026720pt;}
.ls3a{letter-spacing:-0.023424pt;}
.ls20{letter-spacing:-0.021376pt;}
.ls11{letter-spacing:-0.016032pt;}
.lsd{letter-spacing:-0.011712pt;}
.ls17{letter-spacing:-0.010688pt;}
.ls19{letter-spacing:-0.005344pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005344pt;}
.ls24{letter-spacing:0.010688pt;}
.ls7{letter-spacing:0.016032pt;}
.ls3{letter-spacing:0.023424pt;}
.ls41{letter-spacing:0.026720pt;}
.ls33{letter-spacing:0.029280pt;}
.ls0{letter-spacing:0.035136pt;}
.ls38{letter-spacing:0.037408pt;}
.ls30{letter-spacing:0.040992pt;}
.ls8{letter-spacing:0.048096pt;}
.ls9{letter-spacing:0.053440pt;}
.ls25{letter-spacing:0.058560pt;}
.ls5{letter-spacing:0.058784pt;}
.ls4{letter-spacing:0.064128pt;}
.ls40{letter-spacing:0.064416pt;}
.ls16{letter-spacing:0.069472pt;}
.ls6{letter-spacing:0.074816pt;}
.ls2{letter-spacing:0.080160pt;}
.ls32{letter-spacing:0.085504pt;}
.ls1a{letter-spacing:0.090848pt;}
.ls43{letter-spacing:0.096192pt;}
.ls3c{letter-spacing:0.106880pt;}
.ls2c{letter-spacing:0.122912pt;}
.ls37{letter-spacing:0.128256pt;}
.ls31{letter-spacing:0.144288pt;}
.ls3b{letter-spacing:0.160320pt;}
.ls26{letter-spacing:56.502112pt;}
.ls3f{letter-spacing:752.000000pt;}
.ls42{letter-spacing:754.642272pt;}
.ws7d{word-spacing:-13.520320pt;}
.ws82{word-spacing:-13.450848pt;}
.ws81{word-spacing:-13.440160pt;}
.ws7f{word-spacing:-13.413440pt;}
.ws0{word-spacing:-13.354656pt;}
.ws69{word-spacing:-13.295872pt;}
.ws7e{word-spacing:-13.285184pt;}
.ws85{word-spacing:-13.274496pt;}
.ws84{word-spacing:-13.269152pt;}
.ws86{word-spacing:-13.258464pt;}
.ws83{word-spacing:-13.237088pt;}
.ws80{word-spacing:-13.199680pt;}
.ws19{word-spacing:-3.211744pt;}
.ws1a{word-spacing:-2.682688pt;}
.ws2a{word-spacing:-2.549088pt;}
.ws2b{word-spacing:-2.372736pt;}
.ws14{word-spacing:-2.217760pt;}
.ws15{word-spacing:-2.052096pt;}
.ws2e{word-spacing:-1.742144pt;}
.ws2f{word-spacing:-1.715424pt;}
.ws25{word-spacing:-0.956576pt;}
.ws1f{word-spacing:-0.550432pt;}
.ws1e{word-spacing:-0.496992pt;}
.ws37{word-spacing:-0.491648pt;}
.ws38{word-spacing:-0.475616pt;}
.ws8e{word-spacing:-0.368736pt;}
.ws99{word-spacing:-0.347360pt;}
.ws9d{word-spacing:-0.336672pt;}
.ws50{word-spacing:-0.331328pt;}
.ws9a{word-spacing:-0.325984pt;}
.ws92{word-spacing:-0.320640pt;}
.ws88{word-spacing:-0.315296pt;}
.ws98{word-spacing:-0.309952pt;}
.ws61{word-spacing:-0.304608pt;}
.ws5f{word-spacing:-0.288576pt;}
.ws9f{word-spacing:-0.251168pt;}
.ws8d{word-spacing:-0.245824pt;}
.ws70{word-spacing:-0.235136pt;}
.ws96{word-spacing:-0.229792pt;}
.ws91{word-spacing:-0.224448pt;}
.ws5b{word-spacing:-0.219104pt;}
.ws59{word-spacing:-0.213760pt;}
.ws89{word-spacing:-0.208416pt;}
.ws4f{word-spacing:-0.203072pt;}
.ws9e{word-spacing:-0.197728pt;}
.ws2{word-spacing:-0.179424pt;}
.ws87{word-spacing:-0.176352pt;}
.ws8c{word-spacing:-0.171008pt;}
.ws6d{word-spacing:-0.165664pt;}
.ws58{word-spacing:-0.154976pt;}
.ws9b{word-spacing:-0.149632pt;}
.ws79{word-spacing:-0.138944pt;}
.ws9c{word-spacing:-0.133600pt;}
.ws6c{word-spacing:-0.128256pt;}
.ws7c{word-spacing:-0.122912pt;}
.ws44{word-spacing:-0.117568pt;}
.ws51{word-spacing:-0.112224pt;}
.ws78{word-spacing:-0.096192pt;}
.ws8f{word-spacing:-0.090848pt;}
.ws67{word-spacing:-0.064128pt;}
.ws55{word-spacing:-0.042752pt;}
.ws8b{word-spacing:-0.026720pt;}
.ws4{word-spacing:-0.020832pt;}
.ws73{word-spacing:-0.010688pt;}
.ws6a{word-spacing:-0.005344pt;}
.ws3{word-spacing:0.000000pt;}
.ws65{word-spacing:0.005344pt;}
.ws62{word-spacing:0.010688pt;}
.ws49{word-spacing:0.016032pt;}
.ws93{word-spacing:0.017568pt;}
.ws33{word-spacing:0.021376pt;}
.ws56{word-spacing:0.023424pt;}
.ws97{word-spacing:0.026720pt;}
.ws3e{word-spacing:0.032064pt;}
.ws64{word-spacing:0.040992pt;}
.ws90{word-spacing:0.042752pt;}
.ws5{word-spacing:0.046848pt;}
.ws7b{word-spacing:0.052704pt;}
.ws94{word-spacing:0.053440pt;}
.ws17{word-spacing:0.058560pt;}
.ws95{word-spacing:0.064128pt;}
.ws48{word-spacing:0.069472pt;}
.ws12{word-spacing:0.074816pt;}
.ws45{word-spacing:0.080160pt;}
.ws6f{word-spacing:0.085504pt;}
.ws13{word-spacing:0.090848pt;}
.ws1c{word-spacing:0.096192pt;}
.ws4d{word-spacing:0.101536pt;}
.ws4b{word-spacing:0.106880pt;}
.ws71{word-spacing:0.112224pt;}
.ws4a{word-spacing:0.117568pt;}
.ws6b{word-spacing:0.122912pt;}
.ws1{word-spacing:0.128160pt;}
.ws4e{word-spacing:0.128256pt;}
.ws4c{word-spacing:0.133600pt;}
.ws74{word-spacing:0.138944pt;}
.ws72{word-spacing:0.144288pt;}
.ws66{word-spacing:0.149632pt;}
.ws5e{word-spacing:0.154976pt;}
.ws76{word-spacing:0.160320pt;}
.ws5c{word-spacing:0.165664pt;}
.ws16{word-spacing:0.171008pt;}
.ws47{word-spacing:0.176352pt;}
.ws29{word-spacing:0.181696pt;}
.ws68{word-spacing:0.187040pt;}
.ws24{word-spacing:0.192384pt;}
.ws57{word-spacing:0.197728pt;}
.ws6e{word-spacing:0.203072pt;}
.ws75{word-spacing:0.208416pt;}
.ws63{word-spacing:0.213760pt;}
.ws60{word-spacing:0.219104pt;}
.ws5a{word-spacing:0.224448pt;}
.ws7a{word-spacing:0.229792pt;}
.ws46{word-spacing:0.251168pt;}
.ws8a{word-spacing:0.277888pt;}
.ws77{word-spacing:0.309952pt;}
.ws5d{word-spacing:0.358048pt;}
.ws1b{word-spacing:0.432864pt;}
.ws1d{word-spacing:0.470272pt;}
.ws20{word-spacing:0.961920pt;}
.ws21{word-spacing:1.116896pt;}
.ws53{word-spacing:1.688704pt;}
.wsa{word-spacing:1.694048pt;}
.ws9{word-spacing:1.710080pt;}
.ws54{word-spacing:1.774208pt;}
.ws52{word-spacing:1.790240pt;}
.ws43{word-spacing:1.923840pt;}
.ws2d{word-spacing:2.089504pt;}
.ws2c{word-spacing:2.121568pt;}
.ws28{word-spacing:2.880416pt;}
.ws7{word-spacing:3.083488pt;}
.ws6{word-spacing:3.377408pt;}
.ws18{word-spacing:3.617888pt;}
.ws22{word-spacing:3.676672pt;}
.ws23{word-spacing:3.708736pt;}
.ws3b{word-spacing:3.853024pt;}
.ws3d{word-spacing:3.901120pt;}
.ws3c{word-spacing:3.917152pt;}
.ws30{word-spacing:4.173664pt;}
.ws3f{word-spacing:4.264512pt;}
.ws40{word-spacing:4.382080pt;}
.ws34{word-spacing:5.766176pt;}
.ws32{word-spacing:5.771520pt;}
.ws26{word-spacing:5.846336pt;}
.ws36{word-spacing:5.862368pt;}
.ws35{word-spacing:5.883744pt;}
.ws27{word-spacing:5.921152pt;}
.wsb{word-spacing:5.931840pt;}
.ws8{word-spacing:6.097504pt;}
.ws42{word-spacing:8.026688pt;}
.ws41{word-spacing:8.154944pt;}
.ws3a{word-spacing:9.143584pt;}
.ws39{word-spacing:9.303904pt;}
.ws10{word-spacing:9.929152pt;}
.ws11{word-spacing:10.094816pt;}
.wsc{word-spacing:12.301888pt;}
.wsd{word-spacing:12.312576pt;}
.ws31{word-spacing:13.295872pt;}
.wsf{word-spacing:16.988576pt;}
.wse{word-spacing:17.084768pt;}
._2{margin-left:-4.969920pt;}
._4{margin-left:-3.879744pt;}
._3{margin-left:-2.447552pt;}
._1{margin-left:-0.967264pt;}
._0{width:0.903136pt;}
.fs3{font-size:37.440000pt;}
.fs4{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:69.440000pt;}
.fs0{font-size:85.440000pt;}
.fs6{font-size:149.440000pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:104.322176pt;}
.y6d{bottom:107.520736pt;}
.yea{bottom:110.560008pt;}
.yc7{bottom:115.040176pt;}
.y9c{bottom:118.080544pt;}
.y35{bottom:119.602008pt;}
.y6c{bottom:122.880728pt;}
.ye9{bottom:125.920000pt;}
.yc6{bottom:130.320008pt;}
.y9b{bottom:133.440536pt;}
.y34{bottom:134.962000pt;}
.y6b{bottom:138.240720pt;}
.ye8{bottom:141.840000pt;}
.yc5{bottom:145.680000pt;}
.y9a{bottom:148.720368pt;}
.y33{bottom:150.321992pt;}
.y6a{bottom:153.520552pt;}
.ye7{bottom:159.681392pt;}
.yc4{bottom:161.040168pt;}
.y99{bottom:164.080360pt;}
.y32{bottom:165.601824pt;}
.y69{bottom:168.880544pt;}
.ye6{bottom:172.080808pt;}
.yc3{bottom:176.320000pt;}
.y98{bottom:179.440352pt;}
.y31{bottom:180.961816pt;}
.y68{bottom:184.240536pt;}
.yc2{bottom:191.680176pt;}
.y97{bottom:194.720184pt;}
.y30{bottom:196.241648pt;}
.y67{bottom:199.520368pt;}
.yc1{bottom:207.040168pt;}
.y96{bottom:210.080176pt;}
.y2f{bottom:211.601640pt;}
.y66{bottom:214.880360pt;}
.yc0{bottom:222.320000pt;}
.y95{bottom:225.440168pt;}
.y2e{bottom:226.961632pt;}
.y65{bottom:230.240352pt;}
.ybf{bottom:237.680176pt;}
.y94{bottom:240.720000pt;}
.y2d{bottom:242.241464pt;}
.y64{bottom:245.520184pt;}
.ybe{bottom:253.040168pt;}
.y93{bottom:256.400000pt;}
.y2c{bottom:257.601456pt;}
.y63{bottom:260.880176pt;}
.ybd{bottom:268.320000pt;}
.y2b{bottom:272.961448pt;}
.y92{bottom:272.962376pt;}
.y62{bottom:276.240168pt;}
.ybc{bottom:283.680008pt;}
.y2a{bottom:288.241280pt;}
.y91{bottom:288.242208pt;}
.y61{bottom:291.520000pt;}
.ybb{bottom:299.040000pt;}
.y29{bottom:303.601272pt;}
.y90{bottom:303.602200pt;}
.y60{bottom:307.200000pt;}
.yba{bottom:314.320008pt;}
.y28{bottom:318.961264pt;}
.y8f{bottom:318.962192pt;}
.y5f{bottom:323.759336pt;}
.yb9{bottom:329.680000pt;}
.y27{bottom:334.241096pt;}
.y8e{bottom:334.242024pt;}
.y5e{bottom:339.039168pt;}
.ye5{bottom:342.960552pt;}
.yb8{bottom:344.960008pt;}
.y26{bottom:349.601088pt;}
.y8d{bottom:349.602016pt;}
.yf9{bottom:349.602552pt;}
.y5d{bottom:354.399160pt;}
.ye4{bottom:358.320544pt;}
.yb7{bottom:360.320000pt;}
.yf8{bottom:364.882384pt;}
.y25{bottom:364.961080pt;}
.y8c{bottom:364.962008pt;}
.y5c{bottom:369.759152pt;}
.ye3{bottom:373.680536pt;}
.yb6{bottom:375.680352pt;}
.y24{bottom:380.240912pt;}
.y8b{bottom:380.241840pt;}
.yf7{bottom:380.242376pt;}
.y5b{bottom:385.038984pt;}
.ye2{bottom:388.960368pt;}
.yb5{bottom:390.960184pt;}
.y23{bottom:395.600904pt;}
.y8a{bottom:395.601832pt;}
.yf6{bottom:395.602368pt;}
.y5a{bottom:400.398976pt;}
.ye1{bottom:404.320360pt;}
.yb4{bottom:406.320176pt;}
.yf5{bottom:410.882200pt;}
.y22{bottom:410.960896pt;}
.y89{bottom:410.961824pt;}
.y59{bottom:415.758968pt;}
.ye0{bottom:419.680352pt;}
.yb3{bottom:421.680168pt;}
.yf4{bottom:423.361776pt;}
.y21{bottom:426.240728pt;}
.y88{bottom:426.241656pt;}
.y58{bottom:431.038800pt;}
.ydf{bottom:434.960184pt;}
.yb2{bottom:436.960000pt;}
.y20{bottom:441.600720pt;}
.y87{bottom:441.601648pt;}
.y57{bottom:446.398792pt;}
.yde{bottom:450.320176pt;}
.yb1{bottom:452.320192pt;}
.y1f{bottom:456.960712pt;}
.y86{bottom:456.961640pt;}
.y56{bottom:461.678624pt;}
.ydd{bottom:465.600008pt;}
.yb0{bottom:467.680184pt;}
.yf3{bottom:470.242016pt;}
.y1e{bottom:472.240544pt;}
.y85{bottom:472.241472pt;}
.y55{bottom:477.038616pt;}
.y107{bottom:478.720184pt;}
.ydc{bottom:480.960000pt;}
.yaf{bottom:482.960016pt;}
.yf2{bottom:485.602008pt;}
.y1d{bottom:487.600536pt;}
.y84{bottom:487.601464pt;}
.y54{bottom:492.398608pt;}
.y106{bottom:494.000016pt;}
.ydb{bottom:496.880000pt;}
.yae{bottom:498.320008pt;}
.yf1{bottom:500.881840pt;}
.y1c{bottom:502.880368pt;}
.y83{bottom:502.881296pt;}
.y53{bottom:507.678440pt;}
.y105{bottom:509.360008pt;}
.yad{bottom:513.680000pt;}
.yda{bottom:514.721664pt;}
.yf0{bottom:516.241832pt;}
.y1b{bottom:518.240360pt;}
.y82{bottom:518.241288pt;}
.y52{bottom:523.999016pt;}
.y104{bottom:524.720000pt;}
.yd9{bottom:527.121080pt;}
.yac{bottom:529.280000pt;}
.yef{bottom:531.601824pt;}
.y1a{bottom:533.600352pt;}
.y81{bottom:533.601280pt;}
.y51{bottom:540.319592pt;}
.y103{bottom:540.560000pt;}
.yab{bottom:545.840360pt;}
.yee{bottom:546.881656pt;}
.y19{bottom:548.880184pt;}
.y80{bottom:548.881112pt;}
.y50{bottom:556.560008pt;}
.y102{bottom:558.400648pt;}
.yaa{bottom:561.200352pt;}
.yed{bottom:562.241648pt;}
.y18{bottom:564.240176pt;}
.y7f{bottom:564.241104pt;}
.y101{bottom:570.880224pt;}
.y4f{bottom:571.920000pt;}
.yd8{bottom:574.001320pt;}
.ya9{bottom:576.480184pt;}
.yec{bottom:577.601640pt;}
.y17{bottom:579.600168pt;}
.y7e{bottom:579.601096pt;}
.y4e{bottom:587.840000pt;}
.yd7{bottom:589.361312pt;}
.yeb{bottom:590.001056pt;}
.ya8{bottom:591.840176pt;}
.y16{bottom:594.880000pt;}
.y7d{bottom:594.880928pt;}
.yd6{bottom:604.721304pt;}
.y4d{bottom:606.000000pt;}
.ya7{bottom:607.200168pt;}
.y7c{bottom:610.240920pt;}
.y15{bottom:610.800000pt;}
.yd5{bottom:620.001136pt;}
.ya6{bottom:622.480000pt;}
.y4c{bottom:623.040000pt;}
.y7b{bottom:625.600912pt;}
.y14{bottom:628.960000pt;}
.yd4{bottom:635.361128pt;}
.ya5{bottom:638.160000pt;}
.y7a{bottom:640.880744pt;}
.y4b{bottom:640.881280pt;}
.y13{bottom:646.080000pt;}
.yd3{bottom:650.721120pt;}
.ya4{bottom:654.720368pt;}
.y79{bottom:656.240736pt;}
.y4a{bottom:656.241272pt;}
.y12{bottom:663.920728pt;}
.yd2{bottom:666.000952pt;}
.ya3{bottom:670.000200pt;}
.y100{bottom:670.720840pt;}
.y78{bottom:671.600728pt;}
.y49{bottom:671.601264pt;}
.y11{bottom:679.200560pt;}
.yd1{bottom:681.360944pt;}
.ya2{bottom:685.360192pt;}
.yff{bottom:686.000672pt;}
.y77{bottom:686.880560pt;}
.y48{bottom:686.881096pt;}
.y10{bottom:694.560552pt;}
.yd0{bottom:696.720936pt;}
.ya1{bottom:700.720184pt;}
.yfe{bottom:701.360664pt;}
.y76{bottom:702.240552pt;}
.y47{bottom:702.241088pt;}
.yf{bottom:709.920544pt;}
.ycf{bottom:712.000768pt;}
.ya0{bottom:716.000016pt;}
.yfd{bottom:716.720656pt;}
.y75{bottom:717.600544pt;}
.y46{bottom:717.601080pt;}
.ye{bottom:725.200376pt;}
.yce{bottom:727.360760pt;}
.y9f{bottom:731.360008pt;}
.yfc{bottom:732.000488pt;}
.y74{bottom:732.880376pt;}
.y45{bottom:732.880912pt;}
.ycd{bottom:739.840336pt;}
.yd{bottom:740.560368pt;}
.y9e{bottom:746.720000pt;}
.yfb{bottom:747.360480pt;}
.y73{bottom:748.240368pt;}
.y44{bottom:748.240904pt;}
.yc{bottom:755.920360pt;}
.yfa{bottom:759.840056pt;}
.y9d{bottom:762.320000pt;}
.y72{bottom:763.600360pt;}
.y43{bottom:763.600896pt;}
.yb{bottom:771.200192pt;}
.y71{bottom:778.880192pt;}
.y42{bottom:778.880728pt;}
.ya{bottom:786.560184pt;}
.y70{bottom:794.240184pt;}
.y41{bottom:794.240720pt;}
.y9{bottom:801.920176pt;}
.y6f{bottom:809.520016pt;}
.y40{bottom:809.520552pt;}
.y8{bottom:817.200008pt;}
.y6e{bottom:824.880008pt;}
.y3f{bottom:824.880544pt;}
.y7{bottom:832.560000pt;}
.y3e{bottom:840.240536pt;}
.y6{bottom:848.240000pt;}
.y3d{bottom:855.520368pt;}
.y3c{bottom:870.880360pt;}
.y5{bottom:871.040000pt;}
.y4{bottom:881.919867pt;}
.ycc{bottom:884.720184pt;}
.y3b{bottom:886.240352pt;}
.y3{bottom:899.359400pt;}
.ycb{bottom:900.000016pt;}
.y3a{bottom:901.520184pt;}
.yca{bottom:915.360008pt;}
.y39{bottom:916.880176pt;}
.y2{bottom:919.280000pt;}
.yc9{bottom:930.720000pt;}
.y38{bottom:932.240168pt;}
.y1{bottom:940.080000pt;}
.yc8{bottom:946.320000pt;}
.y37{bottom:947.520000pt;}
.h4{height:26.014219pt;}
.h7{height:36.218125pt;}
.hb{height:37.105312pt;}
.h6{height:37.131406pt;}
.h5{height:39.688125pt;}
.h3{height:40.688906pt;}
.h8{height:43.372088pt;}
.he{height:43.374264pt;}
.ha{height:43.375000pt;}
.hd{height:44.468046pt;}
.h9{height:44.468750pt;}
.h2{height:48.248594pt;}
.h1{height:57.905625pt;}
.hc{height:103.832387pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:144.880000pt;}
.x7{left:167.999904pt;}
.xe{left:189.280000pt;}
.xd{left:191.999808pt;}
.x16{left:206.880000pt;}
.x13{left:211.200800pt;}
.x10{left:223.040432pt;}
.x14{left:224.400480pt;}
.x12{left:245.279488pt;}
.x6{left:289.040000pt;}
.x4{left:297.760000pt;}
.x8{left:318.160000pt;}
.x18{left:331.119984pt;}
.xb{left:347.280000pt;}
.x9{left:351.360000pt;}
.x5{left:361.280000pt;}
.x3{left:362.959480pt;}
.xa{left:365.600000pt;}
.xc{left:373.760000pt;}
.x2{left:408.000000pt;}
.x11{left:589.359608pt;}
.x19{left:600.000672pt;}
.x17{left:627.200296pt;}
.x15{left:642.480304pt;}
.xf{left:648.000656pt;}
}




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