
    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_b095fff7ed3d42289654fc90.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_34b287c8d39097e7e3cb4579.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.166504;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_2739cc3d556ad8b4464c4445.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6a8cdfb2193723f0607cf127.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.205566;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_f1530393446592a26979f377.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.205566;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_c595da30b6f43fbdcfbfe8ac.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.166504;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_86b91c51ed260cc24a82694f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128906;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_310a7d8c1b5e76f8d532e064.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls43{letter-spacing:-1.026000px;}
.ls28{letter-spacing:-0.774000px;}
.ls18{letter-spacing:-0.606000px;}
.ls33{letter-spacing:-0.573000px;}
.ls25{letter-spacing:-0.504000px;}
.ls20{letter-spacing:-0.360000px;}
.ls42{letter-spacing:-0.351600px;}
.ls3{letter-spacing:-0.342000px;}
.ls1f{letter-spacing:-0.313800px;}
.lse{letter-spacing:-0.308400px;}
.ls32{letter-spacing:-0.303600px;}
.ls19{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.265200px;}
.ls1c{letter-spacing:-0.224400px;}
.ls4{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.198000px;}
.ls11{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.162000px;}
.ls41{letter-spacing:-0.121200px;}
.ls2d{letter-spacing:-0.090000px;}
.ls2{letter-spacing:-0.064800px;}
.ls1a{letter-spacing:-0.036000px;}
.ls40{letter-spacing:-0.011520px;}
.ls1{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.036000px;}
.ls1d{letter-spacing:0.043200px;}
.ls2c{letter-spacing:0.054000px;}
.ls3c{letter-spacing:0.090000px;}
.ls7{letter-spacing:0.115200px;}
.ls44{letter-spacing:0.138000px;}
.ls36{letter-spacing:0.144000px;}
.ls21{letter-spacing:0.146880px;}
.ls13{letter-spacing:0.155400px;}
.ls16{letter-spacing:0.166800px;}
.ls5{letter-spacing:0.193200px;}
.ls27{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.296400px;}
.lsb{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.316800px;}
.ls10{letter-spacing:0.322800px;}
.ls17{letter-spacing:0.360000px;}
.ls39{letter-spacing:0.378000px;}
.ls23{letter-spacing:0.495600px;}
.ls34{letter-spacing:0.684000px;}
.ls46{letter-spacing:0.834000px;}
.ls29{letter-spacing:0.835200px;}
.ls3b{letter-spacing:1.316160px;}
.ls3f{letter-spacing:2.334240px;}
.ls37{letter-spacing:3.335040px;}
.ls3e{letter-spacing:5.636160px;}
.ls2f{letter-spacing:8.516160px;}
.ls45{letter-spacing:14.574240px;}
.ls31{letter-spacing:16.506000px;}
.ls3d{letter-spacing:17.226000px;}
.ls38{letter-spacing:18.666000px;}
.ls3a{letter-spacing:20.106000px;}
.ls1b{letter-spacing:20.826000px;}
.ls30{letter-spacing:21.546000px;}
.ls24{letter-spacing:22.986000px;}
.ls2a{letter-spacing:24.426000px;}
.ls2b{letter-spacing:25.146000px;}
.ls1e{letter-spacing:27.306000px;}
.ls14{letter-spacing:37.386000px;}
.lsa{letter-spacing:38.826000px;}
.lsc{letter-spacing:40.266000px;}
.ls12{letter-spacing:40.986000px;}
.ls0{letter-spacing:43.146000px;}
.ls26{letter-spacing:59.321280px;}
.ls22{letter-spacing:59.345280px;}
.ls8{letter-spacing:68.996160px;}
.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;}
}
.ws13{word-spacing:-66.240000px;}
.ws5{word-spacing:-16.824960px;}
.wse{word-spacing:-16.323840px;}
.wsb{word-spacing:-16.280640px;}
.ws9{word-spacing:-16.269240px;}
.ws14{word-spacing:-16.179840px;}
.ws6{word-spacing:-16.157040px;}
.wsd{word-spacing:-16.130640px;}
.ws1a{word-spacing:-16.119240px;}
.ws21{word-spacing:-16.101840px;}
.ws7{word-spacing:-15.963840px;}
.ws1e{word-spacing:-15.842640px;}
.ws15{word-spacing:-15.739440px;}
.wsc{word-spacing:-15.698640px;}
.wsa{word-spacing:-15.655440px;}
.ws1c{word-spacing:-15.650040px;}
.ws1f{word-spacing:-15.612240px;}
.ws11{word-spacing:-15.603840px;}
.ws12{word-spacing:-15.459840px;}
.ws8{word-spacing:-14.970240px;}
.ws20{word-spacing:-14.937840px;}
.ws0{word-spacing:-13.716000px;}
.ws18{word-spacing:-13.698000px;}
.ws4{word-spacing:-13.518000px;}
.ws19{word-spacing:-13.158000px;}
.ws1d{word-spacing:-13.104000px;}
.ws16{word-spacing:-13.068000px;}
.ws2{word-spacing:-13.014000px;}
.ws10{word-spacing:-12.978000px;}
.ws17{word-spacing:-12.924000px;}
.ws1b{word-spacing:-12.852000px;}
.ws1{word-spacing:-12.798000px;}
.wsf{word-spacing:-12.726000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-5.011200px;}
._8{margin-left:-3.762000px;}
._7{margin-left:-2.610000px;}
._0{margin-left:-1.398960px;}
._1{width:1.110960px;}
._4{width:2.269440px;}
._9{width:3.362400px;}
._5{width:4.914000px;}
._6{width:6.303120px;}
._3{width:7.722000px;}
._2{width:8.850000px;}
._c{width:10.407600px;}
._a{width:12.121920px;}
._b{width:13.131360px;}
._11{width:14.739120px;}
._d{width:16.146000px;}
._e{width:17.280000px;}
._13{width:18.882000px;}
._1a{width:19.920000px;}
._f{width:21.263040px;}
._10{width:22.529520px;}
._14{width:24.528000px;}
._15{width:25.715040px;}
._1b{width:29.239680px;}
._18{width:37.476000px;}
._19{width:45.726000px;}
._21{width:50.408640px;}
._17{width:52.031040px;}
._20{width:53.256960px;}
._16{width:59.172000px;}
._1d{width:78.229440px;}
._1c{width:80.526240px;}
._1e{width:153.544320px;}
._1f{width:155.548560px;}
.fc1{color:rgb(85,85,85);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:55.800000px;}
.y3{bottom:57.420000px;}
.y2c{bottom:87.660000px;}
.y73{bottom:88.920000px;}
.yef{bottom:91.440000px;}
.yf1{bottom:97.920000px;}
.y52{bottom:103.860000px;}
.y2b{bottom:104.220000px;}
.y98{bottom:108.000000px;}
.y72{bottom:109.800000px;}
.yf0{bottom:118.800000px;}
.y2a{bottom:120.600000px;}
.ya9{bottom:122.220000px;}
.y29{bottom:124.380000px;}
.y51{bottom:124.920000px;}
.ydf{bottom:127.980000px;}
.y71{bottom:130.860000px;}
.y97{bottom:137.160000px;}
.y28{bottom:138.780000px;}
.ye1{bottom:139.860000px;}
.yad{bottom:140.940000px;}
.y50{bottom:145.800000px;}
.yde{bottom:148.860000px;}
.y70{bottom:151.950000px;}
.y96{bottom:153.750000px;}
.yac{bottom:155.370000px;}
.y95{bottom:157.530000px;}
.ye0{bottom:160.950000px;}
.y4f{bottom:166.890000px;}
.ydd{bottom:169.950000px;}
.y94{bottom:170.130000px;}
.ybe{bottom:171.750000px;}
.y6f{bottom:172.830000px;}
.yb3{bottom:173.910000px;}
.ya8{bottom:181.830000px;}
.y93{bottom:186.690000px;}
.y4e{bottom:187.950000px;}
.yb2{bottom:188.310000px;}
.y27{bottom:188.670000px;}
.yb0{bottom:190.470000px;}
.ydc{bottom:191.010000px;}
.y6e{bottom:193.890000px;}
.ya7{bottom:202.890000px;}
.y92{bottom:203.250000px;}
.yaf{bottom:204.870000px;}
.y26{bottom:205.230000px;}
.ya1{bottom:207.030000px;}
.y4d{bottom:208.830000px;}
.ydb{bottom:211.890000px;}
.y6d{bottom:214.950000px;}
.ybd{bottom:215.130000px;}
.y91{bottom:219.630000px;}
.ya0{bottom:221.250000px;}
.y25{bottom:221.610000px;}
.ye7{bottom:223.410000px;}
.ya6{bottom:223.950000px;}
.y4c{bottom:229.890000px;}
.yda{bottom:232.950000px;}
.ybc{bottom:234.570000px;}
.y6c{bottom:235.830000px;}
.y90{bottom:236.190000px;}
.y24{bottom:238.170000px;}
.yeb{bottom:239.970000px;}
.ya5{bottom:244.830000px;}
.y4b{bottom:250.950000px;}
.y8f{bottom:252.750000px;}
.ybb{bottom:254.010000px;}
.yea{bottom:254.370000px;}
.y23{bottom:254.730000px;}
.y6b{bottom:256.890000px;}
.ya4{bottom:265.890000px;}
.y8e{bottom:269.130000px;}
.y22{bottom:271.110000px;}
.y4a{bottom:271.830000px;}
.yba{bottom:274.350000px;}
.yd9{bottom:274.890000px;}
.y6a{bottom:277.950000px;}
.y8d{bottom:285.690000px;}
.ya3{bottom:286.950000px;}
.y21{bottom:287.670000px;}
.ye6{bottom:289.470000px;}
.yae{bottom:291.450000px;}
.y49{bottom:292.890000px;}
.yb9{bottom:293.790000px;}
.yd8{bottom:295.950000px;}
.y69{bottom:298.830000px;}
.y8c{bottom:302.250000px;}
.y20{bottom:304.230000px;}
.y9f{bottom:307.830000px;}
.ye9{bottom:312.330000px;}
.y48{bottom:313.950000px;}
.yd7{bottom:317.010000px;}
.y8b{bottom:318.630000px;}
.y68{bottom:319.890000px;}
.y1f{bottom:320.610000px;}
.y9e{bottom:328.935000px;}
.yb8{bottom:333.615000px;}
.y47{bottom:334.875000px;}
.y8a{bottom:335.235000px;}
.y1e{bottom:337.215000px;}
.yd6{bottom:337.935000px;}
.y67{bottom:340.995000px;}
.y9d{bottom:349.995000px;}
.y89{bottom:351.795000px;}
.yb7{bottom:353.055000px;}
.y1d{bottom:353.775000px;}
.ye5{bottom:355.575000px;}
.y46{bottom:355.935000px;}
.yd5{bottom:358.995000px;}
.y66{bottom:361.875000px;}
.y88{bottom:368.175000px;}
.ye4{bottom:369.795000px;}
.y1c{bottom:370.155000px;}
.y9c{bottom:370.875000px;}
.y87{bottom:371.955000px;}
.yb6{bottom:373.215000px;}
.yec{bottom:375.375000px;}
.y45{bottom:376.995000px;}
.yd4{bottom:380.055000px;}
.y65{bottom:382.935000px;}
.y86{bottom:386.355000px;}
.y1b{bottom:386.715000px;}
.y9b{bottom:391.935000px;}
.yb5{bottom:393.555000px;}
.y44{bottom:397.875000px;}
.yd3{bottom:400.935000px;}
.y1a{bottom:403.275000px;}
.y64{bottom:403.995000px;}
.y84{bottom:412.995000px;}
.y85{bottom:417.495000px;}
.y43{bottom:418.935000px;}
.y19{bottom:419.655000px;}
.yd2{bottom:421.995000px;}
.y63{bottom:424.875000px;}
.y83{bottom:433.875000px;}
.y18{bottom:436.215000px;}
.y42{bottom:439.995000px;}
.yd1{bottom:443.055000px;}
.y62{bottom:445.935000px;}
.y17{bottom:452.775000px;}
.y82{bottom:454.935000px;}
.y9a{bottom:459.435000px;}
.y41{bottom:460.875000px;}
.yd0{bottom:463.935000px;}
.y61{bottom:466.995000px;}
.y16{bottom:469.155000px;}
.y81{bottom:475.995000px;}
.y40{bottom:481.935000px;}
.ycf{bottom:484.995000px;}
.y15{bottom:485.715000px;}
.y60{bottom:487.875000px;}
.y80{bottom:496.875000px;}
.ye3{bottom:501.405000px;}
.y14{bottom:502.305000px;}
.y3f{bottom:503.025000px;}
.yce{bottom:506.085000px;}
.y5f{bottom:508.965000px;}
.y7f{bottom:517.965000px;}
.y13{bottom:518.685000px;}
.yb4{bottom:522.465000px;}
.y3e{bottom:523.905000px;}
.ycd{bottom:526.965000px;}
.y5e{bottom:530.025000px;}
.y12{bottom:535.245000px;}
.y7e{bottom:539.025000px;}
.y99{bottom:543.525000px;}
.y3d{bottom:544.965000px;}
.ycc{bottom:548.025000px;}
.y5d{bottom:550.905000px;}
.y11{bottom:551.805000px;}
.y7c{bottom:559.905000px;}
.y7d{bottom:564.405000px;}
.y3c{bottom:566.025000px;}
.y10{bottom:568.185000px;}
.ycb{bottom:569.085000px;}
.y5c{bottom:571.965000px;}
.y7b{bottom:580.965000px;}
.yf{bottom:584.745000px;}
.ye8{bottom:585.465000px;}
.y3b{bottom:586.905000px;}
.yca{bottom:589.965000px;}
.y5b{bottom:593.025000px;}
.ye{bottom:602.025000px;}
.y7a{bottom:606.525000px;}
.y3a{bottom:607.965000px;}
.yc9{bottom:611.025000px;}
.y5a{bottom:612.465000px;}
.y79{bottom:622.905000px;}
.y39{bottom:629.025000px;}
.yd{bottom:631.905000px;}
.y59{bottom:632.085000px;}
.y78{bottom:643.965000px;}
.yab{bottom:648.465000px;}
.y38{bottom:649.905000px;}
.y58{bottom:651.525000px;}
.yc8{bottom:652.965000px;}
.yc{bottom:662.325000px;}
.y77{bottom:665.025000px;}
.ye2{bottom:669.525000px;}
.y37{bottom:670.965000px;}
.yc7{bottom:674.025000px;}
.y76{bottom:685.950000px;}
.yb{bottom:689.730000px;}
.yee{bottom:690.450000px;}
.y57{bottom:690.630000px;}
.y36{bottom:692.070000px;}
.yc6{bottom:695.130000px;}
.y75{bottom:707.010000px;}
.y56{bottom:710.070000px;}
.y35{bottom:712.950000px;}
.yc5{bottom:716.190000px;}
.y9{bottom:717.090000px;}
.ya{bottom:722.310000px;}
.y74{bottom:728.070000px;}
.y55{bottom:729.510000px;}
.yed{bottom:732.570000px;}
.y34{bottom:734.370000px;}
.yc4{bottom:735.630000px;}
.y8{bottom:744.090000px;}
.y54{bottom:748.950000px;}
.yc3{bottom:755.070000px;}
.y33{bottom:761.370000px;}
.y7{bottom:770.010000px;}
.yaa{bottom:774.510000px;}
.yc2{bottom:775.410000px;}
.y32{bottom:787.290000px;}
.y6{bottom:791.070000px;}
.yc1{bottom:794.850000px;}
.y31{bottom:803.850000px;}
.y5{bottom:811.950000px;}
.y53{bottom:812.850000px;}
.yc0{bottom:814.290000px;}
.ya2{bottom:816.450000px;}
.y30{bottom:820.230000px;}
.y4{bottom:833.010000px;}
.ybf{bottom:833.910000px;}
.y2f{bottom:836.790000px;}
.yb1{bottom:837.510000px;}
.y2{bottom:857.700000px;}
.y2d{bottom:869.940000px;}
.y1{bottom:871.380000px;}
.hb{height:34.189453px;}
.hc{height:39.659766px;}
.h2{height:45.813867px;}
.ha{height:51.284180px;}
.h6{height:53.393555px;}
.hd{height:60.418125px;}
.h9{height:62.908594px;}
.h4{height:65.496094px;}
.h3{height:65.884219px;}
.h8{height:68.378906px;}
.h7{height:73.849219px;}
.h5{height:83.293945px;}
.h1{height:935.250000px;}
.h0{height:935.460000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:84.995989px;}
.x18{left:90.035989px;}
.x38{left:93.455989px;}
.x26{left:94.535989px;}
.x3{left:106.415989px;}
.xb{left:110.375989px;}
.x1d{left:111.455989px;}
.x29{left:114.335989px;}
.x12{left:115.595989px;}
.x40{left:117.035989px;}
.xc{left:127.655989px;}
.x2f{left:133.415989px;}
.x2e{left:138.995989px;}
.x4{left:143.495989px;}
.x3b{left:144.935978px;}
.x3f{left:150.149989px;}
.x19{left:152.489978px;}
.x3c{left:155.369989px;}
.x1a{left:158.069989px;}
.x30{left:160.409989px;}
.x1b{left:161.669978px;}
.x1c{left:167.609989px;}
.x34{left:169.949978px;}
.x41{left:172.649989px;}
.x35{left:180.389989px;}
.x10{left:191.009989px;}
.x47{left:195.329978px;}
.x48{left:206.354989px;}
.x22{left:221.114978px;}
.x23{left:227.054989px;}
.x46{left:247.214978px;}
.x9{left:259.274989px;}
.xd{left:266.114989px;}
.x4a{left:268.814978px;}
.x5{left:271.154989px;}
.x4b{left:280.514989px;}
.x2a{left:284.474978px;}
.x31{left:289.874978px;}
.x2b{left:294.734989px;}
.x17{left:301.034989px;}
.xa{left:322.454989px;}
.x1{left:341.384989px;}
.xf{left:350.744989px;}
.x8{left:372.164989px;}
.x2{left:383.324989px;}
.x2c{left:397.364978px;}
.x2d{left:407.624989px;}
.x44{left:418.784978px;}
.x45{left:430.124989px;}
.x3d{left:456.404978px;}
.x6{left:466.664978px;}
.x3e{left:468.644989px;}
.x7{left:473.369989px;}
.x49{left:486.509978px;}
.x1e{left:494.069978px;}
.x1f{left:499.289989px;}
.x36{left:500.369978px;}
.x37{left:510.089989px;}
.x15{left:517.649978px;}
.x16{left:523.589989px;}
.x20{left:525.569978px;}
.x21{left:531.869989px;}
.x24{left:543.929978px;}
.x39{left:547.709978px;}
.x25{left:554.909989px;}
.x3a{left:558.509989px;}
.x27{left:579.929978px;}
.x42{left:584.429978px;}
.x28{left:588.929989px;}
.x43{left:596.129989px;}
.x32{left:602.249978px;}
.x13{left:610.919978px;}
.x33{left:612.359989px;}
.x4c{left:615.239978px;}
.x14{left:616.679989px;}
.x11{left:618.299989px;}
.x4d{left:627.479989px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls43{letter-spacing:-0.912000pt;}
.ls28{letter-spacing:-0.688000pt;}
.ls18{letter-spacing:-0.538667pt;}
.ls33{letter-spacing:-0.509333pt;}
.ls25{letter-spacing:-0.448000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls42{letter-spacing:-0.312533pt;}
.ls3{letter-spacing:-0.304000pt;}
.ls1f{letter-spacing:-0.278933pt;}
.lse{letter-spacing:-0.274133pt;}
.ls32{letter-spacing:-0.269867pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.235733pt;}
.ls1c{letter-spacing:-0.199467pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.176000pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.144000pt;}
.ls41{letter-spacing:-0.107733pt;}
.ls2d{letter-spacing:-0.080000pt;}
.ls2{letter-spacing:-0.057600pt;}
.ls1a{letter-spacing:-0.032000pt;}
.ls40{letter-spacing:-0.010240pt;}
.ls1{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.032000pt;}
.ls1d{letter-spacing:0.038400pt;}
.ls2c{letter-spacing:0.048000pt;}
.ls3c{letter-spacing:0.080000pt;}
.ls7{letter-spacing:0.102400pt;}
.ls44{letter-spacing:0.122667pt;}
.ls36{letter-spacing:0.128000pt;}
.ls21{letter-spacing:0.130560pt;}
.ls13{letter-spacing:0.138133pt;}
.ls16{letter-spacing:0.148267pt;}
.ls5{letter-spacing:0.171733pt;}
.ls27{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.263467pt;}
.lsb{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.281600pt;}
.ls10{letter-spacing:0.286933pt;}
.ls17{letter-spacing:0.320000pt;}
.ls39{letter-spacing:0.336000pt;}
.ls23{letter-spacing:0.440533pt;}
.ls34{letter-spacing:0.608000pt;}
.ls46{letter-spacing:0.741333pt;}
.ls29{letter-spacing:0.742400pt;}
.ls3b{letter-spacing:1.169920pt;}
.ls3f{letter-spacing:2.074880pt;}
.ls37{letter-spacing:2.964480pt;}
.ls3e{letter-spacing:5.009920pt;}
.ls2f{letter-spacing:7.569920pt;}
.ls45{letter-spacing:12.954880pt;}
.ls31{letter-spacing:14.672000pt;}
.ls3d{letter-spacing:15.312000pt;}
.ls38{letter-spacing:16.592000pt;}
.ls3a{letter-spacing:17.872000pt;}
.ls1b{letter-spacing:18.512000pt;}
.ls30{letter-spacing:19.152000pt;}
.ls24{letter-spacing:20.432000pt;}
.ls2a{letter-spacing:21.712000pt;}
.ls2b{letter-spacing:22.352000pt;}
.ls1e{letter-spacing:24.272000pt;}
.ls14{letter-spacing:33.232000pt;}
.lsa{letter-spacing:34.512000pt;}
.lsc{letter-spacing:35.792000pt;}
.ls12{letter-spacing:36.432000pt;}
.ls0{letter-spacing:38.352000pt;}
.ls26{letter-spacing:52.730027pt;}
.ls22{letter-spacing:52.751360pt;}
.ls8{letter-spacing:61.329920pt;}
.ws13{word-spacing:-58.880000pt;}
.ws5{word-spacing:-14.955520pt;}
.wse{word-spacing:-14.510080pt;}
.wsb{word-spacing:-14.471680pt;}
.ws9{word-spacing:-14.461547pt;}
.ws14{word-spacing:-14.382080pt;}
.ws6{word-spacing:-14.361813pt;}
.wsd{word-spacing:-14.338347pt;}
.ws1a{word-spacing:-14.328213pt;}
.ws21{word-spacing:-14.312747pt;}
.ws7{word-spacing:-14.190080pt;}
.ws1e{word-spacing:-14.082347pt;}
.ws15{word-spacing:-13.990613pt;}
.wsc{word-spacing:-13.954347pt;}
.wsa{word-spacing:-13.915947pt;}
.ws1c{word-spacing:-13.911147pt;}
.ws1f{word-spacing:-13.877547pt;}
.ws11{word-spacing:-13.870080pt;}
.ws12{word-spacing:-13.742080pt;}
.ws8{word-spacing:-13.306880pt;}
.ws20{word-spacing:-13.278080pt;}
.ws0{word-spacing:-12.192000pt;}
.ws18{word-spacing:-12.176000pt;}
.ws4{word-spacing:-12.016000pt;}
.ws19{word-spacing:-11.696000pt;}
.ws1d{word-spacing:-11.648000pt;}
.ws16{word-spacing:-11.616000pt;}
.ws2{word-spacing:-11.568000pt;}
.ws10{word-spacing:-11.536000pt;}
.ws17{word-spacing:-11.488000pt;}
.ws1b{word-spacing:-11.424000pt;}
.ws1{word-spacing:-11.376000pt;}
.wsf{word-spacing:-11.312000pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-4.454400pt;}
._8{margin-left:-3.344000pt;}
._7{margin-left:-2.320000pt;}
._0{margin-left:-1.243520pt;}
._1{width:0.987520pt;}
._4{width:2.017280pt;}
._9{width:2.988800pt;}
._5{width:4.368000pt;}
._6{width:5.602773pt;}
._3{width:6.864000pt;}
._2{width:7.866667pt;}
._c{width:9.251200pt;}
._a{width:10.775040pt;}
._b{width:11.672320pt;}
._11{width:13.101440pt;}
._d{width:14.352000pt;}
._e{width:15.360000pt;}
._13{width:16.784000pt;}
._1a{width:17.706667pt;}
._f{width:18.900480pt;}
._10{width:20.026240pt;}
._14{width:21.802667pt;}
._15{width:22.857813pt;}
._1b{width:25.990827pt;}
._18{width:33.312000pt;}
._19{width:40.645333pt;}
._21{width:44.807680pt;}
._17{width:46.249813pt;}
._20{width:47.339520pt;}
._16{width:52.597333pt;}
._1d{width:69.537280pt;}
._1c{width:71.578880pt;}
._1e{width:136.483840pt;}
._1f{width:138.265387pt;}
.fs6{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:49.600000pt;}
.y3{bottom:51.040000pt;}
.y2c{bottom:77.920000pt;}
.y73{bottom:79.040000pt;}
.yef{bottom:81.280000pt;}
.yf1{bottom:87.040000pt;}
.y52{bottom:92.320000pt;}
.y2b{bottom:92.640000pt;}
.y98{bottom:96.000000pt;}
.y72{bottom:97.600000pt;}
.yf0{bottom:105.600000pt;}
.y2a{bottom:107.200000pt;}
.ya9{bottom:108.640000pt;}
.y29{bottom:110.560000pt;}
.y51{bottom:111.040000pt;}
.ydf{bottom:113.760000pt;}
.y71{bottom:116.320000pt;}
.y97{bottom:121.920000pt;}
.y28{bottom:123.360000pt;}
.ye1{bottom:124.320000pt;}
.yad{bottom:125.280000pt;}
.y50{bottom:129.600000pt;}
.yde{bottom:132.320000pt;}
.y70{bottom:135.066667pt;}
.y96{bottom:136.666667pt;}
.yac{bottom:138.106667pt;}
.y95{bottom:140.026667pt;}
.ye0{bottom:143.066667pt;}
.y4f{bottom:148.346667pt;}
.ydd{bottom:151.066667pt;}
.y94{bottom:151.226667pt;}
.ybe{bottom:152.666667pt;}
.y6f{bottom:153.626667pt;}
.yb3{bottom:154.586667pt;}
.ya8{bottom:161.626667pt;}
.y93{bottom:165.946667pt;}
.y4e{bottom:167.066667pt;}
.yb2{bottom:167.386667pt;}
.y27{bottom:167.706667pt;}
.yb0{bottom:169.306667pt;}
.ydc{bottom:169.786667pt;}
.y6e{bottom:172.346667pt;}
.ya7{bottom:180.346667pt;}
.y92{bottom:180.666667pt;}
.yaf{bottom:182.106667pt;}
.y26{bottom:182.426667pt;}
.ya1{bottom:184.026667pt;}
.y4d{bottom:185.626667pt;}
.ydb{bottom:188.346667pt;}
.y6d{bottom:191.066667pt;}
.ybd{bottom:191.226667pt;}
.y91{bottom:195.226667pt;}
.ya0{bottom:196.666667pt;}
.y25{bottom:196.986667pt;}
.ye7{bottom:198.586667pt;}
.ya6{bottom:199.066667pt;}
.y4c{bottom:204.346667pt;}
.yda{bottom:207.066667pt;}
.ybc{bottom:208.506667pt;}
.y6c{bottom:209.626667pt;}
.y90{bottom:209.946667pt;}
.y24{bottom:211.706667pt;}
.yeb{bottom:213.306667pt;}
.ya5{bottom:217.626667pt;}
.y4b{bottom:223.066667pt;}
.y8f{bottom:224.666667pt;}
.ybb{bottom:225.786667pt;}
.yea{bottom:226.106667pt;}
.y23{bottom:226.426667pt;}
.y6b{bottom:228.346667pt;}
.ya4{bottom:236.346667pt;}
.y8e{bottom:239.226667pt;}
.y22{bottom:240.986667pt;}
.y4a{bottom:241.626667pt;}
.yba{bottom:243.866667pt;}
.yd9{bottom:244.346667pt;}
.y6a{bottom:247.066667pt;}
.y8d{bottom:253.946667pt;}
.ya3{bottom:255.066667pt;}
.y21{bottom:255.706667pt;}
.ye6{bottom:257.306667pt;}
.yae{bottom:259.066667pt;}
.y49{bottom:260.346667pt;}
.yb9{bottom:261.146667pt;}
.yd8{bottom:263.066667pt;}
.y69{bottom:265.626667pt;}
.y8c{bottom:268.666667pt;}
.y20{bottom:270.426667pt;}
.y9f{bottom:273.626667pt;}
.ye9{bottom:277.626667pt;}
.y48{bottom:279.066667pt;}
.yd7{bottom:281.786667pt;}
.y8b{bottom:283.226667pt;}
.y68{bottom:284.346667pt;}
.y1f{bottom:284.986667pt;}
.y9e{bottom:292.386667pt;}
.yb8{bottom:296.546667pt;}
.y47{bottom:297.666667pt;}
.y8a{bottom:297.986667pt;}
.y1e{bottom:299.746667pt;}
.yd6{bottom:300.386667pt;}
.y67{bottom:303.106667pt;}
.y9d{bottom:311.106667pt;}
.y89{bottom:312.706667pt;}
.yb7{bottom:313.826667pt;}
.y1d{bottom:314.466667pt;}
.ye5{bottom:316.066667pt;}
.y46{bottom:316.386667pt;}
.yd5{bottom:319.106667pt;}
.y66{bottom:321.666667pt;}
.y88{bottom:327.266667pt;}
.ye4{bottom:328.706667pt;}
.y1c{bottom:329.026667pt;}
.y9c{bottom:329.666667pt;}
.y87{bottom:330.626667pt;}
.yb6{bottom:331.746667pt;}
.yec{bottom:333.666667pt;}
.y45{bottom:335.106667pt;}
.yd4{bottom:337.826667pt;}
.y65{bottom:340.386667pt;}
.y86{bottom:343.426667pt;}
.y1b{bottom:343.746667pt;}
.y9b{bottom:348.386667pt;}
.yb5{bottom:349.826667pt;}
.y44{bottom:353.666667pt;}
.yd3{bottom:356.386667pt;}
.y1a{bottom:358.466667pt;}
.y64{bottom:359.106667pt;}
.y84{bottom:367.106667pt;}
.y85{bottom:371.106667pt;}
.y43{bottom:372.386667pt;}
.y19{bottom:373.026667pt;}
.yd2{bottom:375.106667pt;}
.y63{bottom:377.666667pt;}
.y83{bottom:385.666667pt;}
.y18{bottom:387.746667pt;}
.y42{bottom:391.106667pt;}
.yd1{bottom:393.826667pt;}
.y62{bottom:396.386667pt;}
.y17{bottom:402.466667pt;}
.y82{bottom:404.386667pt;}
.y9a{bottom:408.386667pt;}
.y41{bottom:409.666667pt;}
.yd0{bottom:412.386667pt;}
.y61{bottom:415.106667pt;}
.y16{bottom:417.026667pt;}
.y81{bottom:423.106667pt;}
.y40{bottom:428.386667pt;}
.ycf{bottom:431.106667pt;}
.y15{bottom:431.746667pt;}
.y60{bottom:433.666667pt;}
.y80{bottom:441.666667pt;}
.ye3{bottom:445.693333pt;}
.y14{bottom:446.493333pt;}
.y3f{bottom:447.133333pt;}
.yce{bottom:449.853333pt;}
.y5f{bottom:452.413333pt;}
.y7f{bottom:460.413333pt;}
.y13{bottom:461.053333pt;}
.yb4{bottom:464.413333pt;}
.y3e{bottom:465.693333pt;}
.ycd{bottom:468.413333pt;}
.y5e{bottom:471.133333pt;}
.y12{bottom:475.773333pt;}
.y7e{bottom:479.133333pt;}
.y99{bottom:483.133333pt;}
.y3d{bottom:484.413333pt;}
.ycc{bottom:487.133333pt;}
.y5d{bottom:489.693333pt;}
.y11{bottom:490.493333pt;}
.y7c{bottom:497.693333pt;}
.y7d{bottom:501.693333pt;}
.y3c{bottom:503.133333pt;}
.y10{bottom:505.053333pt;}
.ycb{bottom:505.853333pt;}
.y5c{bottom:508.413333pt;}
.y7b{bottom:516.413333pt;}
.yf{bottom:519.773333pt;}
.ye8{bottom:520.413333pt;}
.y3b{bottom:521.693333pt;}
.yca{bottom:524.413333pt;}
.y5b{bottom:527.133333pt;}
.ye{bottom:535.133333pt;}
.y7a{bottom:539.133333pt;}
.y3a{bottom:540.413333pt;}
.yc9{bottom:543.133333pt;}
.y5a{bottom:544.413333pt;}
.y79{bottom:553.693333pt;}
.y39{bottom:559.133333pt;}
.yd{bottom:561.693333pt;}
.y59{bottom:561.853333pt;}
.y78{bottom:572.413333pt;}
.yab{bottom:576.413333pt;}
.y38{bottom:577.693333pt;}
.y58{bottom:579.133333pt;}
.yc8{bottom:580.413333pt;}
.yc{bottom:588.733333pt;}
.y77{bottom:591.133333pt;}
.ye2{bottom:595.133333pt;}
.y37{bottom:596.413333pt;}
.yc7{bottom:599.133333pt;}
.y76{bottom:609.733333pt;}
.yb{bottom:613.093333pt;}
.yee{bottom:613.733333pt;}
.y57{bottom:613.893333pt;}
.y36{bottom:615.173333pt;}
.yc6{bottom:617.893333pt;}
.y75{bottom:628.453333pt;}
.y56{bottom:631.173333pt;}
.y35{bottom:633.733333pt;}
.yc5{bottom:636.613333pt;}
.y9{bottom:637.413333pt;}
.ya{bottom:642.053333pt;}
.y74{bottom:647.173333pt;}
.y55{bottom:648.453333pt;}
.yed{bottom:651.173333pt;}
.y34{bottom:652.773333pt;}
.yc4{bottom:653.893333pt;}
.y8{bottom:661.413333pt;}
.y54{bottom:665.733333pt;}
.yc3{bottom:671.173333pt;}
.y33{bottom:676.773333pt;}
.y7{bottom:684.453333pt;}
.yaa{bottom:688.453333pt;}
.yc2{bottom:689.253333pt;}
.y32{bottom:699.813333pt;}
.y6{bottom:703.173333pt;}
.yc1{bottom:706.533333pt;}
.y31{bottom:714.533333pt;}
.y5{bottom:721.733333pt;}
.y53{bottom:722.533333pt;}
.yc0{bottom:723.813333pt;}
.ya2{bottom:725.733333pt;}
.y30{bottom:729.093333pt;}
.y4{bottom:740.453333pt;}
.ybf{bottom:741.253333pt;}
.y2f{bottom:743.813333pt;}
.yb1{bottom:744.453333pt;}
.y2{bottom:762.400000pt;}
.y2d{bottom:773.280000pt;}
.y1{bottom:774.560000pt;}
.hb{height:30.390625pt;}
.hc{height:35.253125pt;}
.h2{height:40.723437pt;}
.ha{height:45.585938pt;}
.h6{height:47.460938pt;}
.hd{height:53.705000pt;}
.h9{height:55.918750pt;}
.h4{height:58.218750pt;}
.h3{height:58.563750pt;}
.h8{height:60.781250pt;}
.h7{height:65.643750pt;}
.h5{height:74.039062pt;}
.h1{height:831.333333pt;}
.h0{height:831.520000pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:75.551990pt;}
.x18{left:80.031990pt;}
.x38{left:83.071990pt;}
.x26{left:84.031990pt;}
.x3{left:94.591990pt;}
.xb{left:98.111990pt;}
.x1d{left:99.071990pt;}
.x29{left:101.631990pt;}
.x12{left:102.751990pt;}
.x40{left:104.031990pt;}
.xc{left:113.471990pt;}
.x2f{left:118.591990pt;}
.x2e{left:123.551990pt;}
.x4{left:127.551990pt;}
.x3b{left:128.831981pt;}
.x3f{left:133.466657pt;}
.x19{left:135.546648pt;}
.x3c{left:138.106657pt;}
.x1a{left:140.506657pt;}
.x30{left:142.586657pt;}
.x1b{left:143.706648pt;}
.x1c{left:148.986657pt;}
.x34{left:151.066648pt;}
.x41{left:153.466657pt;}
.x35{left:160.346657pt;}
.x10{left:169.786657pt;}
.x47{left:173.626648pt;}
.x48{left:183.426657pt;}
.x22{left:196.546648pt;}
.x23{left:201.826657pt;}
.x46{left:219.746648pt;}
.x9{left:230.466657pt;}
.xd{left:236.546657pt;}
.x4a{left:238.946648pt;}
.x5{left:241.026657pt;}
.x4b{left:249.346657pt;}
.x2a{left:252.866648pt;}
.x31{left:257.666648pt;}
.x2b{left:261.986657pt;}
.x17{left:267.586657pt;}
.xa{left:286.626657pt;}
.x1{left:303.453324pt;}
.xf{left:311.773324pt;}
.x8{left:330.813324pt;}
.x2{left:340.733324pt;}
.x2c{left:353.213314pt;}
.x2d{left:362.333324pt;}
.x44{left:372.253314pt;}
.x45{left:382.333324pt;}
.x3d{left:405.693314pt;}
.x6{left:414.813314pt;}
.x3e{left:416.573324pt;}
.x7{left:420.773324pt;}
.x49{left:432.453314pt;}
.x1e{left:439.173314pt;}
.x1f{left:443.813324pt;}
.x36{left:444.773314pt;}
.x37{left:453.413324pt;}
.x15{left:460.133314pt;}
.x16{left:465.413324pt;}
.x20{left:467.173314pt;}
.x21{left:472.773324pt;}
.x24{left:483.493314pt;}
.x39{left:486.853314pt;}
.x25{left:493.253324pt;}
.x3a{left:496.453324pt;}
.x27{left:515.493314pt;}
.x42{left:519.493314pt;}
.x28{left:523.493324pt;}
.x43{left:529.893324pt;}
.x32{left:535.333314pt;}
.x13{left:543.039981pt;}
.x33{left:544.319990pt;}
.x4c{left:546.879981pt;}
.x14{left:548.159990pt;}
.x11{left:549.599990pt;}
.x4d{left:557.759990pt;}
}




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