
    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_49a4dac787ede78615baf759.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b830a52632f6c3502017af57.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4093919eec56909f219c3474.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.762207;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_ebbd3c53f6c0b93b108da75b.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4ae09648d00d4b39729b2d19.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_77bd22f116b684aa452ef61c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_db306ad74b2930ab6f2b86cb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5f6f37dddb5561ea0996af84.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7722f2e0f90e19866d6516f7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls20{letter-spacing:-0.019440px;}
.ls1e{letter-spacing:-0.014400px;}
.ls10{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000300px;}
.ls21{letter-spacing:0.007080px;}
.lsf{letter-spacing:0.014400px;}
.ls8{letter-spacing:0.060000px;}
.lsc{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.123552px;}
.ls5{letter-spacing:0.155376px;}
.ls0{letter-spacing:0.159840px;}
.ls3{letter-spacing:0.160440px;}
.ls2{letter-spacing:0.191232px;}
.ls4{letter-spacing:0.203184px;}
.ls13{letter-spacing:0.204336px;}
.lsb{letter-spacing:0.223344px;}
.ls7{letter-spacing:0.239400px;}
.ls6{letter-spacing:0.240000px;}
.ls31{letter-spacing:0.242064px;}
.lsd{letter-spacing:0.242352px;}
.ls2c{letter-spacing:0.253872px;}
.ls35{letter-spacing:0.256680px;}
.ls36{letter-spacing:0.257280px;}
.ls1f{letter-spacing:0.298080px;}
.ls12{letter-spacing:0.318384px;}
.ls1b{letter-spacing:0.318816px;}
.ls29{letter-spacing:0.319680px;}
.ls28{letter-spacing:0.320280px;}
.ls16{letter-spacing:0.322704px;}
.ls11{letter-spacing:0.351648px;}
.ls1d{letter-spacing:0.356400px;}
.ls14{letter-spacing:0.365904px;}
.ls32{letter-spacing:0.383040px;}
.ls2f{letter-spacing:0.383760px;}
.ls30{letter-spacing:0.419184px;}
.ls1{letter-spacing:0.478224px;}
.ls2a{letter-spacing:0.480000px;}
.ls34{letter-spacing:0.519552px;}
.ls33{letter-spacing:0.542760px;}
.ls18{letter-spacing:0.543168px;}
.ls38{letter-spacing:0.549072px;}
.ls19{letter-spacing:0.578592px;}
.ls1a{letter-spacing:0.637632px;}
.lsa{letter-spacing:0.680400px;}
.ls17{letter-spacing:0.702576px;}
.ls2e{letter-spacing:0.738000px;}
.ls3b{letter-spacing:0.802944px;}
.ls2d{letter-spacing:0.861984px;}
.ls1c{letter-spacing:0.874800px;}
.ls9{letter-spacing:0.877200px;}
.ls39{letter-spacing:4.806480px;}
.ls3a{letter-spacing:7.235880px;}
.ls2b{letter-spacing:16.586880px;}
.ls37{letter-spacing:35.122680px;}
.ls23{letter-spacing:43.895100px;}
.ls27{letter-spacing:46.586880px;}
.ls25{letter-spacing:93.925440px;}
.ls26{letter-spacing:97.968360px;}
.ls24{letter-spacing:121.944960px;}
.lse{letter-spacing:149.964480px;}
.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;}
}
.ws7{word-spacing:-18.014400px;}
.ws6{word-spacing:-17.985600px;}
.ws13{word-spacing:-17.216064px;}
.ws11{word-spacing:-17.050752px;}
.ws10{word-spacing:-16.956288px;}
.wsf{word-spacing:-16.932672px;}
.ws12{word-spacing:-16.731936px;}
.wsa{word-spacing:-15.498000px;}
.ws2{word-spacing:-15.397632px;}
.ws1{word-spacing:-15.238224px;}
.wsd{word-spacing:-15.179184px;}
.wsc{word-spacing:-15.143760px;}
.wse{word-spacing:-15.080280px;}
.ws3{word-spacing:-15.078816px;}
.wsb{word-spacing:-15.013872px;}
.ws9{word-spacing:-14.760000px;}
.ws5{word-spacing:-12.236400px;}
.ws0{word-spacing:-12.122352px;}
.ws4{word-spacing:-0.745200px;}
.ws8{word-spacing:0.000000px;}
._a{margin-left:-4.636800px;}
._7{margin-left:-3.078600px;}
._1{margin-left:-1.188000px;}
._6{width:1.045440px;}
._3{width:2.994792px;}
._0{width:4.134240px;}
._9{width:5.685120px;}
._2{width:6.747840px;}
._d{width:7.786800px;}
._4{width:8.791200px;}
._5{width:10.052904px;}
._b{width:11.448000px;}
._f{width:12.542400px;}
._14{width:14.272800px;}
._12{width:15.300000px;}
._c{width:16.689600px;}
._24{width:18.382920px;}
._e{width:19.864800px;}
._13{width:21.650400px;}
._16{width:22.752000px;}
._15{width:24.436800px;}
._8{width:25.452000px;}
._1b{width:27.093600px;}
._1a{width:29.109600px;}
._26{width:33.417312px;}
._25{width:34.604640px;}
._19{width:39.900600px;}
._18{width:53.220000px;}
._1e{width:67.955040px;}
._1f{width:69.393600px;}
._21{width:71.320320px;}
._1c{width:72.744192px;}
._1d{width:73.829880px;}
._20{width:86.087520px;}
._22{width:100.257120px;}
._23{width:101.932320px;}
._10{width:957.538800px;}
._17{width:1556.220600px;}
._11{width:1653.720600px;}
.fc4{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(33,33,33);}
.fc3{color:rgb(67,67,67);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs2{font-size:59.040000px;}
.fs0{font-size:64.800000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:83.520000px;}
.fs5{font-size:119.520000px;}
.y34{bottom:-12.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:2.520000px;}
.yd{bottom:3.600000px;}
.y33{bottom:6.480000px;}
.yf{bottom:7.200000px;}
.y9{bottom:16.560000px;}
.y1{bottom:17.985900px;}
.y96{bottom:25.902885px;}
.y95{bottom:26.622885px;}
.y80{bottom:29.142885px;}
.y8{bottom:30.240000px;}
.y4{bottom:34.920000px;}
.y7{bottom:43.920000px;}
.y39{bottom:50.022885px;}
.y38{bottom:50.742885px;}
.yb{bottom:53.262885px;}
.yad{bottom:56.502885px;}
.yac{bottom:56.862885px;}
.y6{bottom:57.960000px;}
.y7e{bottom:62.248785px;}
.y7f{bottom:71.640000px;}
.y5{bottom:71.640015px;}
.y3{bottom:86.368785px;}
.y5f{bottom:109.422885px;}
.y5e{bottom:133.182900px;}
.y7d{bottom:138.942900px;}
.yb9{bottom:147.942900px;}
.y93{bottom:151.542900px;}
.y100{bottom:152.982900px;}
.y7c{bottom:162.702900px;}
.yab{bottom:163.782900px;}
.yb8{bottom:171.702900px;}
.yff{bottom:172.782900px;}
.y92{bottom:175.302900px;}
.y5d{bottom:178.182900px;}
.y31{bottom:178.542900px;}
.y7b{bottom:186.462900px;}
.yfe{bottom:192.582900px;}
.yb7{bottom:195.462900px;}
.ydb{bottom:197.982900px;}
.y91{bottom:199.062900px;}
.y30{bottom:202.302900px;}
.y7a{bottom:210.222900px;}
.yfd{bottom:212.382900px;}
.yb6{bottom:219.582900px;}
.yda{bottom:221.742900px;}
.y5c{bottom:222.822900px;}
.y2f{bottom:226.062900px;}
.yfc{bottom:232.542900px;}
.y79{bottom:233.982900px;}
.yb5{bottom:243.342900px;}
.yd9{bottom:245.862900px;}
.y5b{bottom:246.582900px;}
.y2e{bottom:249.822900px;}
.yfb{bottom:252.342900px;}
.y78{bottom:258.102900px;}
.yb4{bottom:267.102900px;}
.yd8{bottom:269.622900px;}
.y90{bottom:270.342900px;}
.y5a{bottom:270.702900px;}
.yfa{bottom:272.142900px;}
.y2d{bottom:273.582900px;}
.y77{bottom:281.862900px;}
.yf9{bottom:291.942900px;}
.yd7{bottom:293.382900px;}
.y59{bottom:294.462900px;}
.y2c{bottom:297.342900px;}
.y76{bottom:305.622900px;}
.yb3{bottom:311.742900px;}
.y8f{bottom:315.342900px;}
.yd6{bottom:317.142900px;}
.y58{bottom:318.222900px;}
.yf8{bottom:331.542900px;}
.yd5{bottom:340.902900px;}
.y57{bottom:341.982900px;}
.y2b{bottom:342.342900px;}
.y75{bottom:350.262900px;}
.yf7{bottom:351.342900px;}
.y8e{bottom:359.982900px;}
.yd4{bottom:364.662900px;}
.y56{bottom:365.742900px;}
.yf6{bottom:371.142900px;}
.y8d{bottom:380.142900px;}
.y2a{bottom:386.982900px;}
.yd3{bottom:388.422900px;}
.y55{bottom:389.502900px;}
.yf5{bottom:390.942900px;}
.y74{bottom:395.262900px;}
.y29{bottom:410.742900px;}
.y73{bottom:419.022900px;}
.yf4{bottom:430.902900px;}
.yd2{bottom:433.422900px;}
.y54{bottom:434.502900px;}
.y72{bottom:442.782900px;}
.yf3{bottom:450.702900px;}
.y28{bottom:455.742900px;}
.yd1{bottom:457.182900px;}
.y53{bottom:458.262900px;}
.y71{bottom:466.542900px;}
.yf2{bottom:470.502900px;}
.y11f{bottom:475.902900px;}
.y27{bottom:479.502900px;}
.yd0{bottom:480.942900px;}
.y52{bottom:482.022900px;}
.y70{bottom:490.302900px;}
.y26{bottom:503.262900px;}
.yb2{bottom:504.702900px;}
.y51{bottom:505.782900px;}
.yf1{bottom:510.102900px;}
.y6f{bottom:514.062900px;}
.y11e{bottom:520.542900px;}
.y25{bottom:527.022900px;}
.ycf{bottom:528.462900px;}
.y50{bottom:529.542900px;}
.yf0{bottom:529.902900px;}
.yaa{bottom:537.102900px;}
.y6e{bottom:537.822900px;}
.yb1{bottom:549.342900px;}
.yef{bottom:549.702900px;}
.y24{bottom:550.782900px;}
.yce{bottom:552.222900px;}
.y4f{bottom:553.302900px;}
.y6d{bottom:561.942900px;}
.y11d{bottom:564.102900px;}
.yee{bottom:569.502900px;}
.y23{bottom:574.542900px;}
.ycd{bottom:575.982900px;}
.y4e{bottom:577.062900px;}
.ya9{bottom:581.742900px;}
.yed{bottom:589.302900px;}
.y22{bottom:598.662900px;}
.y11c{bottom:599.022900px;}
.ycc{bottom:600.102900px;}
.y4d{bottom:600.822900px;}
.ya8{bottom:605.502900px;}
.y6c{bottom:606.582900px;}
.yec{bottom:609.102900px;}
.y11b{bottom:616.302900px;}
.y21{bottom:622.422900px;}
.yeb{bottom:628.902900px;}
.ya7{bottom:629.262900px;}
.y11a{bottom:633.582900px;}
.ycb{bottom:644.742900px;}
.y4c{bottom:645.822900px;}
.y20{bottom:646.182900px;}
.yea{bottom:649.062900px;}
.y119{bottom:650.502900px;}
.y6b{bottom:651.222900px;}
.ya6{bottom:653.022900px;}
.y118{bottom:667.782900px;}
.yca{bottom:668.502900px;}
.ye9{bottom:668.862900px;}
.y1f{bottom:669.942900px;}
.y6a{bottom:675.342900px;}
.ya5{bottom:677.142900px;}
.y117{bottom:685.062900px;}
.ye8{bottom:688.662900px;}
.y4b{bottom:690.462900px;}
.yc9{bottom:692.262900px;}
.y1e{bottom:693.702900px;}
.y69{bottom:699.102900px;}
.ya4{bottom:700.902900px;}
.y116{bottom:702.342900px;}
.ye7{bottom:708.462900px;}
.y4a{bottom:714.222900px;}
.yc8{bottom:716.022900px;}
.y1d{bottom:717.462900px;}
.y115{bottom:719.622900px;}
.y68{bottom:722.862900px;}
.ya3{bottom:724.662900px;}
.ye6{bottom:728.262900px;}
.y114{bottom:736.902900px;}
.y49{bottom:738.342900px;}
.yc7{bottom:740.142900px;}
.y67{bottom:746.622900px;}
.ye5{bottom:748.062900px;}
.ya2{bottom:748.422900px;}
.y113{bottom:754.182900px;}
.y1c{bottom:759.942900px;}
.y48{bottom:762.102900px;}
.yc6{bottom:763.902900px;}
.y66{bottom:770.382900px;}
.y8c{bottom:770.742900px;}
.y112{bottom:771.462900px;}
.y1b{bottom:781.902900px;}
.y47{bottom:785.862900px;}
.yc5{bottom:787.662900px;}
.y111{bottom:788.742900px;}
.ye4{bottom:790.542900px;}
.ya1{bottom:793.062900px;}
.y65{bottom:794.142900px;}
.y8b{bottom:794.502900px;}
.y1a{bottom:797.742900px;}
.yb0{bottom:802.422900px;}
.y110{bottom:806.022900px;}
.y46{bottom:809.622900px;}
.yc4{bottom:811.422900px;}
.y19{bottom:813.582900px;}
.y64{bottom:817.902900px;}
.y8a{bottom:818.262900px;}
.y10f{bottom:823.302900px;}
.y18{bottom:831.582900px;}
.y45{bottom:833.382900px;}
.ye3{bottom:835.182900px;}
.ya0{bottom:838.062900px;}
.y10e{bottom:840.222900px;}
.y63{bottom:841.662900px;}
.y89{bottom:842.022900px;}
.yaf{bottom:847.062900px;}
.y17{bottom:851.382900px;}
.yc3{bottom:856.062900px;}
.y44{bottom:857.142900px;}
.ye2{bottom:858.942900px;}
.y10d{bottom:860.022900px;}
.y9f{bottom:861.822900px;}
.y16{bottom:872.262900px;}
.yc2{bottom:879.822900px;}
.y43{bottom:880.902900px;}
.ye1{bottom:882.702900px;}
.y9e{bottom:885.582900px;}
.y62{bottom:886.662900px;}
.yae{bottom:887.742900px;}
.y15{bottom:898.902900px;}
.y10c{bottom:899.622900px;}
.yc1{bottom:903.942900px;}
.y42{bottom:904.662900px;}
.ye0{bottom:906.462900px;}
.y9d{bottom:909.342900px;}
.y14{bottom:911.862900px;}
.y10b{bottom:919.422900px;}
.yc0{bottom:927.702900px;}
.y41{bottom:928.422900px;}
.ydf{bottom:930.222900px;}
.y61{bottom:931.302900px;}
.y88{bottom:931.662900px;}
.y9c{bottom:933.102900px;}
.y13{bottom:938.502900px;}
.y10a{bottom:939.222900px;}
.ybf{bottom:951.462900px;}
.y40{bottom:952.542900px;}
.yde{bottom:954.342900px;}
.y60{bottom:955.062900px;}
.y87{bottom:955.422900px;}
.y9b{bottom:956.862900px;}
.y109{bottom:959.022900px;}
.y12{bottom:974.142900px;}
.ybe{bottom:975.222900px;}
.y3f{bottom:976.302900px;}
.ydd{bottom:978.102900px;}
.y108{bottom:978.822900px;}
.y86{bottom:979.182900px;}
.y9a{bottom:980.982900px;}
.y107{bottom:998.622900px;}
.ybd{bottom:998.982900px;}
.y3e{bottom:1000.062900px;}
.ydc{bottom:1001.862900px;}
.y85{bottom:1002.942900px;}
.y106{bottom:1018.422900px;}
.ybc{bottom:1022.742900px;}
.y11{bottom:1023.102900px;}
.y3d{bottom:1023.822900px;}
.y99{bottom:1025.622900px;}
.y84{bottom:1026.702900px;}
.y105{bottom:1038.222900px;}
.ybb{bottom:1046.502900px;}
.y3c{bottom:1047.582900px;}
.y83{bottom:1050.462900px;}
.y104{bottom:1058.382900px;}
.y10{bottom:1063.062900px;}
.y98{bottom:1070.262900px;}
.y82{bottom:1074.582900px;}
.y103{bottom:1078.182900px;}
.yba{bottom:1091.502900px;}
.y3b{bottom:1092.582900px;}
.y102{bottom:1097.982900px;}
.y97{bottom:1115.262900px;}
.y3a{bottom:1116.342900px;}
.y101{bottom:1117.782900px;}
.y81{bottom:1119.222900px;}
.ye{bottom:1130.008800px;}
.y94{bottom:1132.542900px;}
.y37{bottom:1133.262900px;}
.y36{bottom:1134.342900px;}
.y35{bottom:1135.422900px;}
.y2{bottom:1135.782900px;}
.y32{bottom:1187.248800px;}
.yc{bottom:1190.488800px;}
.h6{height:17.280000px;}
.h11{height:22.680000px;}
.h8{height:23.760000px;}
.hc{height:27.014766px;}
.h5{height:33.018047px;}
.h7{height:40.013438px;}
.hd{height:41.022422px;}
.h14{height:43.011563px;}
.h3{height:45.024609px;}
.h12{height:47.207813px;}
.he{height:48.062109px;}
.h10{height:48.796875px;}
.h9{height:50.027344px;}
.h13{height:52.453125px;}
.hf{height:58.031719px;}
.hb{height:65.325937px;}
.h4{height:82.800000px;}
.ha{height:83.045391px;}
.h2{height:1226.862900px;}
.h0{height:1262.834700px;}
.h1{height:1263.000000px;}
.w5{width:22.680000px;}
.w8{width:39.240000px;}
.w3{width:171.720000px;}
.w7{width:364.320000px;}
.w6{width:425.520000px;}
.w4{width:573.480000px;}
.w2{width:856.941600px;}
.w0{width:892.913400px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:4.680000px;}
.x6{left:7.560000px;}
.x10{left:9.000000px;}
.x1{left:17.985900px;}
.x9{left:43.545900px;}
.x7{left:47.160000px;}
.x3{left:53.985900px;}
.xd{left:64.410000px;}
.x1d{left:68.910000px;}
.x15{left:91.410000px;}
.xe{left:101.160000px;}
.x13{left:118.484700px;}
.x12{left:143.280150px;}
.x14{left:145.410000px;}
.xc{left:155.160000px;}
.x4{left:160.800300px;}
.x5{left:226.425900px;}
.xb{left:236.598600px;}
.x18{left:249.950100px;}
.x17{left:251.949600px;}
.x1c{left:263.239050px;}
.x1b{left:286.163100px;}
.x2{left:417.389700px;}
.xa{left:469.065900px;}
.x1a{left:680.580000px;}
.x16{left:746.099850px;}
.xf{left:780.465900px;}
.x19{left:804.959850px;}
.x8{left:807.465900px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls20{letter-spacing:-0.017280pt;}
.ls1e{letter-spacing:-0.012800pt;}
.ls10{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000267pt;}
.ls21{letter-spacing:0.006293pt;}
.lsf{letter-spacing:0.012800pt;}
.ls8{letter-spacing:0.053333pt;}
.lsc{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.109824pt;}
.ls5{letter-spacing:0.138112pt;}
.ls0{letter-spacing:0.142080pt;}
.ls3{letter-spacing:0.142613pt;}
.ls2{letter-spacing:0.169984pt;}
.ls4{letter-spacing:0.180608pt;}
.ls13{letter-spacing:0.181632pt;}
.lsb{letter-spacing:0.198528pt;}
.ls7{letter-spacing:0.212800pt;}
.ls6{letter-spacing:0.213333pt;}
.ls31{letter-spacing:0.215168pt;}
.lsd{letter-spacing:0.215424pt;}
.ls2c{letter-spacing:0.225664pt;}
.ls35{letter-spacing:0.228160pt;}
.ls36{letter-spacing:0.228693pt;}
.ls1f{letter-spacing:0.264960pt;}
.ls12{letter-spacing:0.283008pt;}
.ls1b{letter-spacing:0.283392pt;}
.ls29{letter-spacing:0.284160pt;}
.ls28{letter-spacing:0.284693pt;}
.ls16{letter-spacing:0.286848pt;}
.ls11{letter-spacing:0.312576pt;}
.ls1d{letter-spacing:0.316800pt;}
.ls14{letter-spacing:0.325248pt;}
.ls32{letter-spacing:0.340480pt;}
.ls2f{letter-spacing:0.341120pt;}
.ls30{letter-spacing:0.372608pt;}
.ls1{letter-spacing:0.425088pt;}
.ls2a{letter-spacing:0.426667pt;}
.ls34{letter-spacing:0.461824pt;}
.ls33{letter-spacing:0.482453pt;}
.ls18{letter-spacing:0.482816pt;}
.ls38{letter-spacing:0.488064pt;}
.ls19{letter-spacing:0.514304pt;}
.ls1a{letter-spacing:0.566784pt;}
.lsa{letter-spacing:0.604800pt;}
.ls17{letter-spacing:0.624512pt;}
.ls2e{letter-spacing:0.656000pt;}
.ls3b{letter-spacing:0.713728pt;}
.ls2d{letter-spacing:0.766208pt;}
.ls1c{letter-spacing:0.777600pt;}
.ls9{letter-spacing:0.779733pt;}
.ls39{letter-spacing:4.272427pt;}
.ls3a{letter-spacing:6.431893pt;}
.ls2b{letter-spacing:14.743893pt;}
.ls37{letter-spacing:31.220160pt;}
.ls23{letter-spacing:39.017867pt;}
.ls27{letter-spacing:41.410560pt;}
.ls25{letter-spacing:83.489280pt;}
.ls26{letter-spacing:87.082987pt;}
.ls24{letter-spacing:108.395520pt;}
.lse{letter-spacing:133.301760pt;}
.ws7{word-spacing:-16.012800pt;}
.ws6{word-spacing:-15.987200pt;}
.ws13{word-spacing:-15.303168pt;}
.ws11{word-spacing:-15.156224pt;}
.ws10{word-spacing:-15.072256pt;}
.wsf{word-spacing:-15.051264pt;}
.ws12{word-spacing:-14.872832pt;}
.wsa{word-spacing:-13.776000pt;}
.ws2{word-spacing:-13.686784pt;}
.ws1{word-spacing:-13.545088pt;}
.wsd{word-spacing:-13.492608pt;}
.wsc{word-spacing:-13.461120pt;}
.wse{word-spacing:-13.404693pt;}
.ws3{word-spacing:-13.403392pt;}
.wsb{word-spacing:-13.345664pt;}
.ws9{word-spacing:-13.120000pt;}
.ws5{word-spacing:-10.876800pt;}
.ws0{word-spacing:-10.775424pt;}
.ws4{word-spacing:-0.662400pt;}
.ws8{word-spacing:0.000000pt;}
._a{margin-left:-4.121600pt;}
._7{margin-left:-2.736533pt;}
._1{margin-left:-1.056000pt;}
._6{width:0.929280pt;}
._3{width:2.662037pt;}
._0{width:3.674880pt;}
._9{width:5.053440pt;}
._2{width:5.998080pt;}
._d{width:6.921600pt;}
._4{width:7.814400pt;}
._5{width:8.935915pt;}
._b{width:10.176000pt;}
._f{width:11.148800pt;}
._14{width:12.686933pt;}
._12{width:13.600000pt;}
._c{width:14.835200pt;}
._24{width:16.340373pt;}
._e{width:17.657600pt;}
._13{width:19.244800pt;}
._16{width:20.224000pt;}
._15{width:21.721600pt;}
._8{width:22.624000pt;}
._1b{width:24.083200pt;}
._1a{width:25.875200pt;}
._26{width:29.704277pt;}
._25{width:30.759680pt;}
._19{width:35.467200pt;}
._18{width:47.306667pt;}
._1e{width:60.404480pt;}
._1f{width:61.683200pt;}
._21{width:63.395840pt;}
._1c{width:64.661504pt;}
._1d{width:65.626560pt;}
._20{width:76.522240pt;}
._22{width:89.117440pt;}
._23{width:90.606507pt;}
._10{width:851.145600pt;}
._17{width:1383.307200pt;}
._11{width:1469.973867pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs2{font-size:52.480000pt;}
.fs0{font-size:57.600000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.240000pt;}
.fs5{font-size:106.240000pt;}
.y34{bottom:-10.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:2.240000pt;}
.yd{bottom:3.200000pt;}
.y33{bottom:5.760000pt;}
.yf{bottom:6.400000pt;}
.y9{bottom:14.720000pt;}
.y1{bottom:15.987467pt;}
.y96{bottom:23.024787pt;}
.y95{bottom:23.664787pt;}
.y80{bottom:25.904787pt;}
.y8{bottom:26.880000pt;}
.y4{bottom:31.040000pt;}
.y7{bottom:39.040000pt;}
.y39{bottom:44.464787pt;}
.y38{bottom:45.104787pt;}
.yb{bottom:47.344787pt;}
.yad{bottom:50.224787pt;}
.yac{bottom:50.544787pt;}
.y6{bottom:51.520000pt;}
.y7e{bottom:55.332253pt;}
.y7f{bottom:63.680000pt;}
.y5{bottom:63.680013pt;}
.y3{bottom:76.772253pt;}
.y5f{bottom:97.264787pt;}
.y5e{bottom:118.384800pt;}
.y7d{bottom:123.504800pt;}
.yb9{bottom:131.504800pt;}
.y93{bottom:134.704800pt;}
.y100{bottom:135.984800pt;}
.y7c{bottom:144.624800pt;}
.yab{bottom:145.584800pt;}
.yb8{bottom:152.624800pt;}
.yff{bottom:153.584800pt;}
.y92{bottom:155.824800pt;}
.y5d{bottom:158.384800pt;}
.y31{bottom:158.704800pt;}
.y7b{bottom:165.744800pt;}
.yfe{bottom:171.184800pt;}
.yb7{bottom:173.744800pt;}
.ydb{bottom:175.984800pt;}
.y91{bottom:176.944800pt;}
.y30{bottom:179.824800pt;}
.y7a{bottom:186.864800pt;}
.yfd{bottom:188.784800pt;}
.yb6{bottom:195.184800pt;}
.yda{bottom:197.104800pt;}
.y5c{bottom:198.064800pt;}
.y2f{bottom:200.944800pt;}
.yfc{bottom:206.704800pt;}
.y79{bottom:207.984800pt;}
.yb5{bottom:216.304800pt;}
.yd9{bottom:218.544800pt;}
.y5b{bottom:219.184800pt;}
.y2e{bottom:222.064800pt;}
.yfb{bottom:224.304800pt;}
.y78{bottom:229.424800pt;}
.yb4{bottom:237.424800pt;}
.yd8{bottom:239.664800pt;}
.y90{bottom:240.304800pt;}
.y5a{bottom:240.624800pt;}
.yfa{bottom:241.904800pt;}
.y2d{bottom:243.184800pt;}
.y77{bottom:250.544800pt;}
.yf9{bottom:259.504800pt;}
.yd7{bottom:260.784800pt;}
.y59{bottom:261.744800pt;}
.y2c{bottom:264.304800pt;}
.y76{bottom:271.664800pt;}
.yb3{bottom:277.104800pt;}
.y8f{bottom:280.304800pt;}
.yd6{bottom:281.904800pt;}
.y58{bottom:282.864800pt;}
.yf8{bottom:294.704800pt;}
.yd5{bottom:303.024800pt;}
.y57{bottom:303.984800pt;}
.y2b{bottom:304.304800pt;}
.y75{bottom:311.344800pt;}
.yf7{bottom:312.304800pt;}
.y8e{bottom:319.984800pt;}
.yd4{bottom:324.144800pt;}
.y56{bottom:325.104800pt;}
.yf6{bottom:329.904800pt;}
.y8d{bottom:337.904800pt;}
.y2a{bottom:343.984800pt;}
.yd3{bottom:345.264800pt;}
.y55{bottom:346.224800pt;}
.yf5{bottom:347.504800pt;}
.y74{bottom:351.344800pt;}
.y29{bottom:365.104800pt;}
.y73{bottom:372.464800pt;}
.yf4{bottom:383.024800pt;}
.yd2{bottom:385.264800pt;}
.y54{bottom:386.224800pt;}
.y72{bottom:393.584800pt;}
.yf3{bottom:400.624800pt;}
.y28{bottom:405.104800pt;}
.yd1{bottom:406.384800pt;}
.y53{bottom:407.344800pt;}
.y71{bottom:414.704800pt;}
.yf2{bottom:418.224800pt;}
.y11f{bottom:423.024800pt;}
.y27{bottom:426.224800pt;}
.yd0{bottom:427.504800pt;}
.y52{bottom:428.464800pt;}
.y70{bottom:435.824800pt;}
.y26{bottom:447.344800pt;}
.yb2{bottom:448.624800pt;}
.y51{bottom:449.584800pt;}
.yf1{bottom:453.424800pt;}
.y6f{bottom:456.944800pt;}
.y11e{bottom:462.704800pt;}
.y25{bottom:468.464800pt;}
.ycf{bottom:469.744800pt;}
.y50{bottom:470.704800pt;}
.yf0{bottom:471.024800pt;}
.yaa{bottom:477.424800pt;}
.y6e{bottom:478.064800pt;}
.yb1{bottom:488.304800pt;}
.yef{bottom:488.624800pt;}
.y24{bottom:489.584800pt;}
.yce{bottom:490.864800pt;}
.y4f{bottom:491.824800pt;}
.y6d{bottom:499.504800pt;}
.y11d{bottom:501.424800pt;}
.yee{bottom:506.224800pt;}
.y23{bottom:510.704800pt;}
.ycd{bottom:511.984800pt;}
.y4e{bottom:512.944800pt;}
.ya9{bottom:517.104800pt;}
.yed{bottom:523.824800pt;}
.y22{bottom:532.144800pt;}
.y11c{bottom:532.464800pt;}
.ycc{bottom:533.424800pt;}
.y4d{bottom:534.064800pt;}
.ya8{bottom:538.224800pt;}
.y6c{bottom:539.184800pt;}
.yec{bottom:541.424800pt;}
.y11b{bottom:547.824800pt;}
.y21{bottom:553.264800pt;}
.yeb{bottom:559.024800pt;}
.ya7{bottom:559.344800pt;}
.y11a{bottom:563.184800pt;}
.ycb{bottom:573.104800pt;}
.y4c{bottom:574.064800pt;}
.y20{bottom:574.384800pt;}
.yea{bottom:576.944800pt;}
.y119{bottom:578.224800pt;}
.y6b{bottom:578.864800pt;}
.ya6{bottom:580.464800pt;}
.y118{bottom:593.584800pt;}
.yca{bottom:594.224800pt;}
.ye9{bottom:594.544800pt;}
.y1f{bottom:595.504800pt;}
.y6a{bottom:600.304800pt;}
.ya5{bottom:601.904800pt;}
.y117{bottom:608.944800pt;}
.ye8{bottom:612.144800pt;}
.y4b{bottom:613.744800pt;}
.yc9{bottom:615.344800pt;}
.y1e{bottom:616.624800pt;}
.y69{bottom:621.424800pt;}
.ya4{bottom:623.024800pt;}
.y116{bottom:624.304800pt;}
.ye7{bottom:629.744800pt;}
.y4a{bottom:634.864800pt;}
.yc8{bottom:636.464800pt;}
.y1d{bottom:637.744800pt;}
.y115{bottom:639.664800pt;}
.y68{bottom:642.544800pt;}
.ya3{bottom:644.144800pt;}
.ye6{bottom:647.344800pt;}
.y114{bottom:655.024800pt;}
.y49{bottom:656.304800pt;}
.yc7{bottom:657.904800pt;}
.y67{bottom:663.664800pt;}
.ye5{bottom:664.944800pt;}
.ya2{bottom:665.264800pt;}
.y113{bottom:670.384800pt;}
.y1c{bottom:675.504800pt;}
.y48{bottom:677.424800pt;}
.yc6{bottom:679.024800pt;}
.y66{bottom:684.784800pt;}
.y8c{bottom:685.104800pt;}
.y112{bottom:685.744800pt;}
.y1b{bottom:695.024800pt;}
.y47{bottom:698.544800pt;}
.yc5{bottom:700.144800pt;}
.y111{bottom:701.104800pt;}
.ye4{bottom:702.704800pt;}
.ya1{bottom:704.944800pt;}
.y65{bottom:705.904800pt;}
.y8b{bottom:706.224800pt;}
.y1a{bottom:709.104800pt;}
.yb0{bottom:713.264800pt;}
.y110{bottom:716.464800pt;}
.y46{bottom:719.664800pt;}
.yc4{bottom:721.264800pt;}
.y19{bottom:723.184800pt;}
.y64{bottom:727.024800pt;}
.y8a{bottom:727.344800pt;}
.y10f{bottom:731.824800pt;}
.y18{bottom:739.184800pt;}
.y45{bottom:740.784800pt;}
.ye3{bottom:742.384800pt;}
.ya0{bottom:744.944800pt;}
.y10e{bottom:746.864800pt;}
.y63{bottom:748.144800pt;}
.y89{bottom:748.464800pt;}
.yaf{bottom:752.944800pt;}
.y17{bottom:756.784800pt;}
.yc3{bottom:760.944800pt;}
.y44{bottom:761.904800pt;}
.ye2{bottom:763.504800pt;}
.y10d{bottom:764.464800pt;}
.y9f{bottom:766.064800pt;}
.y16{bottom:775.344800pt;}
.yc2{bottom:782.064800pt;}
.y43{bottom:783.024800pt;}
.ye1{bottom:784.624800pt;}
.y9e{bottom:787.184800pt;}
.y62{bottom:788.144800pt;}
.yae{bottom:789.104800pt;}
.y15{bottom:799.024800pt;}
.y10c{bottom:799.664800pt;}
.yc1{bottom:803.504800pt;}
.y42{bottom:804.144800pt;}
.ye0{bottom:805.744800pt;}
.y9d{bottom:808.304800pt;}
.y14{bottom:810.544800pt;}
.y10b{bottom:817.264800pt;}
.yc0{bottom:824.624800pt;}
.y41{bottom:825.264800pt;}
.ydf{bottom:826.864800pt;}
.y61{bottom:827.824800pt;}
.y88{bottom:828.144800pt;}
.y9c{bottom:829.424800pt;}
.y13{bottom:834.224800pt;}
.y10a{bottom:834.864800pt;}
.ybf{bottom:845.744800pt;}
.y40{bottom:846.704800pt;}
.yde{bottom:848.304800pt;}
.y60{bottom:848.944800pt;}
.y87{bottom:849.264800pt;}
.y9b{bottom:850.544800pt;}
.y109{bottom:852.464800pt;}
.y12{bottom:865.904800pt;}
.ybe{bottom:866.864800pt;}
.y3f{bottom:867.824800pt;}
.ydd{bottom:869.424800pt;}
.y108{bottom:870.064800pt;}
.y86{bottom:870.384800pt;}
.y9a{bottom:871.984800pt;}
.y107{bottom:887.664800pt;}
.ybd{bottom:887.984800pt;}
.y3e{bottom:888.944800pt;}
.ydc{bottom:890.544800pt;}
.y85{bottom:891.504800pt;}
.y106{bottom:905.264800pt;}
.ybc{bottom:909.104800pt;}
.y11{bottom:909.424800pt;}
.y3d{bottom:910.064800pt;}
.y99{bottom:911.664800pt;}
.y84{bottom:912.624800pt;}
.y105{bottom:922.864800pt;}
.ybb{bottom:930.224800pt;}
.y3c{bottom:931.184800pt;}
.y83{bottom:933.744800pt;}
.y104{bottom:940.784800pt;}
.y10{bottom:944.944800pt;}
.y98{bottom:951.344800pt;}
.y82{bottom:955.184800pt;}
.y103{bottom:958.384800pt;}
.yba{bottom:970.224800pt;}
.y3b{bottom:971.184800pt;}
.y102{bottom:975.984800pt;}
.y97{bottom:991.344800pt;}
.y3a{bottom:992.304800pt;}
.y101{bottom:993.584800pt;}
.y81{bottom:994.864800pt;}
.ye{bottom:1004.452267pt;}
.y94{bottom:1006.704800pt;}
.y37{bottom:1007.344800pt;}
.y36{bottom:1008.304800pt;}
.y35{bottom:1009.264800pt;}
.y2{bottom:1009.584800pt;}
.y32{bottom:1055.332267pt;}
.yc{bottom:1058.212267pt;}
.h6{height:15.360000pt;}
.h11{height:20.160000pt;}
.h8{height:21.120000pt;}
.hc{height:24.013125pt;}
.h5{height:29.349375pt;}
.h7{height:35.567500pt;}
.hd{height:36.464375pt;}
.h14{height:38.232500pt;}
.h3{height:40.021875pt;}
.h12{height:41.962500pt;}
.he{height:42.721875pt;}
.h10{height:43.375000pt;}
.h9{height:44.468750pt;}
.h13{height:46.625000pt;}
.hf{height:51.583750pt;}
.hb{height:58.067500pt;}
.h4{height:73.600000pt;}
.ha{height:73.818125pt;}
.h2{height:1090.544800pt;}
.h0{height:1122.519733pt;}
.h1{height:1122.666667pt;}
.w5{width:20.160000pt;}
.w8{width:34.880000pt;}
.w3{width:152.640000pt;}
.w7{width:323.840000pt;}
.w6{width:378.240000pt;}
.w4{width:509.760000pt;}
.w2{width:761.725867pt;}
.w0{width:793.700800pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:4.160000pt;}
.x6{left:6.720000pt;}
.x10{left:8.000000pt;}
.x1{left:15.987467pt;}
.x9{left:38.707467pt;}
.x7{left:41.920000pt;}
.x3{left:47.987467pt;}
.xd{left:57.253333pt;}
.x1d{left:61.253333pt;}
.x15{left:81.253333pt;}
.xe{left:89.920000pt;}
.x13{left:105.319733pt;}
.x12{left:127.360133pt;}
.x14{left:129.253333pt;}
.xc{left:137.920000pt;}
.x4{left:142.933600pt;}
.x5{left:201.267467pt;}
.xb{left:210.309867pt;}
.x18{left:222.177867pt;}
.x17{left:223.955200pt;}
.x1c{left:233.990267pt;}
.x1b{left:254.367200pt;}
.x2{left:371.013067pt;}
.xa{left:416.947467pt;}
.x1a{left:604.960000pt;}
.x16{left:663.199867pt;}
.xf{left:693.747467pt;}
.x19{left:715.519867pt;}
.x8{left:717.747467pt;}
}




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