
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6393590943af6f3e637fe5d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_bcee2f8dba45dff0bd7e44f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_13fab6c37f2df1af407ab5ab.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_a0c5e8c45e448d57d88e4190.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_430b3899745948db7ba634a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_734c7098823489079a8145b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_d06b07387f11faa0e363900a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.186600px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls1d{letter-spacing:-0.063600px;}
.ls15{letter-spacing:-0.018360px;}
.ls7{letter-spacing:-0.018000px;}
.ls1c{letter-spacing:-0.007560px;}
.ls5{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.041760px;}
.lse{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.047520px;}
.ls18{letter-spacing:0.048960px;}
.lsf{letter-spacing:0.064800px;}
.lsd{letter-spacing:0.074160px;}
.ls16{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.098400px;}
.ls1a{letter-spacing:0.118200px;}
.ls3{letter-spacing:0.134760px;}
.ls6{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.199200px;}
.ls1b{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:47.726640px;}
.ls11{letter-spacing:55.286640px;}
.ls10{letter-spacing:63.566640px;}
.ls1e{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws5{word-spacing:-60.120000px;}
.ws7{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.wsc{word-spacing:-13.425600px;}
.ws9{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.344600px;}
.wsd{word-spacing:-13.324800px;}
.wsf{word-spacing:-13.300800px;}
.ws11{word-spacing:-13.275360px;}
.ws10{word-spacing:-13.273920px;}
.ws12{word-spacing:-13.268160px;}
.ws4{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.218840px;}
.wse{word-spacing:-13.208040px;}
.ws15{word-spacing:-13.162800px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-11.862000px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.wsb{word-spacing:-0.060120px;}
.ws8{word-spacing:0.000000px;}
.ws6{word-spacing:4.304880px;}
._b{margin-left:-4.180800px;}
._8{margin-left:-3.006000px;}
._0{margin-left:-1.110000px;}
._3{width:1.004882px;}
._4{width:2.658313px;}
._c{width:3.686226px;}
._7{width:4.689600px;}
._5{width:6.312600px;}
._6{width:7.921320px;}
._d{width:9.273000px;}
._a{width:11.122200px;}
._2{width:12.499881px;}
._1{width:13.672188px;}
._10{width:15.631200px;}
._11{width:16.900092px;}
._9{width:18.336600px;}
._15{width:23.625120px;}
._16{width:24.655320px;}
._f{width:39.438720px;}
._e{width:51.582960px;}
._18{width:59.699160px;}
._12{width:88.556760px;}
._13{width:89.762160px;}
._14{width:338.595840px;}
._17{width:882.829920px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:7.830000px;}
.yaf{bottom:7.860000px;}
.y63{bottom:7.920000px;}
.yb7{bottom:8.640000px;}
.y90{bottom:13.140000px;}
.yb3{bottom:25.380000px;}
.ya3{bottom:25.470000px;}
.y84{bottom:29.970000px;}
.yb6{bottom:30.690000px;}
.y61{bottom:35.190000px;}
.y72{bottom:35.220000px;}
.y67{bottom:35.280000px;}
.yab{bottom:43.110000px;}
.yb1{bottom:52.740000px;}
.yad{bottom:52.770000px;}
.yb5{bottom:52.830000px;}
.ya9{bottom:70.380000px;}
.y2{bottom:73.380000px;}
.y23{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.ybf{bottom:112.080000px;}
.yd7{bottom:112.800000px;}
.y94{bottom:130.080000px;}
.y100{bottom:132.510000px;}
.y126{bottom:134.130000px;}
.y21{bottom:139.530000px;}
.yd6{bottom:148.350000px;}
.yff{bottom:150.060000px;}
.y125{bottom:151.680000px;}
.ybd{bottom:156.990000px;}
.y20{bottom:157.170000px;}
.y93{bottom:157.440000px;}
.yd5{bottom:165.900000px;}
.yfe{bottom:167.610000px;}
.y124{bottom:178.320000px;}
.yd4{bottom:183.540000px;}
.ybe{bottom:184.260000px;}
.y92{bottom:184.710000px;}
.yfd{bottom:185.250000px;}
.y7c{bottom:186.690000px;}
.y1f{bottom:192.720000px;}
.y123{bottom:195.870000px;}
.y53{bottom:197.580000px;}
.yd3{bottom:201.090000px;}
.y1e{bottom:210.270000px;}
.ybb{bottom:211.620000px;}
.yfc{bottom:211.800000px;}
.y8f{bottom:212.070000px;}
.y122{bottom:213.420000px;}
.yd2{bottom:218.730000px;}
.y7b{bottom:222.240000px;}
.y52{bottom:233.130000px;}
.y1d{bottom:237.180000px;}
.ybc{bottom:238.980000px;}
.y91{bottom:239.430000px;}
.y121{bottom:240.060000px;}
.yfb{bottom:247.440000px;}
.y51{bottom:250.770000px;}
.yd1{bottom:250.950000px;}
.y120{bottom:257.610000px;}
.y7a{bottom:264.540000px;}
.yfa{bottom:264.990000px;}
.yb9{bottom:266.340000px;}
.y8d{bottom:266.790000px;}
.yf9{bottom:282.540000px;}
.y11f{bottom:284.250000px;}
.y1c{bottom:285.780000px;}
.y50{bottom:286.320000px;}
.y78{bottom:291.900000px;}
.yba{bottom:293.610000px;}
.y8e{bottom:294.060000px;}
.yf8{bottom:300.180000px;}
.y11e{bottom:301.800000px;}
.y4f{bottom:303.960000px;}
.yf7{bottom:317.730000px;}
.y79{bottom:319.260000px;}
.y11d{bottom:319.350000px;}
.yb4{bottom:320.970000px;}
.y8b{bottom:321.420000px;}
.y4e{bottom:321.510000px;}
.y1b{bottom:322.860000px;}
.y4d{bottom:339.060000px;}
.y1a{bottom:340.410000px;}
.y11c{bottom:345.990000px;}
.y76{bottom:346.530000px;}
.yb8{bottom:348.330000px;}
.y8c{bottom:348.780000px;}
.yf6{bottom:353.370000px;}
.y4c{bottom:356.700000px;}
.y11b{bottom:363.540000px;}
.yf5{bottom:370.920000px;}
.y77{bottom:373.890000px;}
.y4b{bottom:374.250000px;}
.y19{bottom:376.050000px;}
.y89{bottom:376.140000px;}
.y11a{bottom:381.090000px;}
.yf4{bottom:388.470000px;}
.y4a{bottom:392.700000px;}
.yb0{bottom:393.240000px;}
.y18{bottom:393.600000px;}
.y119{bottom:398.730000px;}
.y74{bottom:401.250000px;}
.y8a{bottom:403.410000px;}
.yf3{bottom:406.110000px;}
.y49{bottom:410.250000px;}
.yb2{bottom:420.600000px;}
.yf2{bottom:423.660000px;}
.y118{bottom:425.280000px;}
.y48{bottom:427.800000px;}
.y75{bottom:428.520000px;}
.y17{bottom:429.150000px;}
.y87{bottom:430.770000px;}
.y117{bottom:442.920000px;}
.y47{bottom:445.440000px;}
.y16{bottom:446.790000px;}
.yf1{bottom:450.300000px;}
.y71{bottom:455.880000px;}
.y88{bottom:458.130000px;}
.y46{bottom:462.990000px;}
.y15{bottom:464.340000px;}
.yac{bottom:465.510000px;}
.y116{bottom:469.470000px;}
.y45{bottom:480.660000px;}
.y73{bottom:483.270000px;}
.y85{bottom:485.430000px;}
.yf0{bottom:485.880000px;}
.y115{bottom:487.050000px;}
.yae{bottom:492.810000px;}
.y44{bottom:498.210000px;}
.y14{bottom:499.920000px;}
.yef{bottom:503.430000px;}
.y6f{bottom:510.630000px;}
.y86{bottom:512.790000px;}
.y114{bottom:513.690000px;}
.y43{bottom:515.760000px;}
.yee{bottom:530.070000px;}
.y42{bottom:533.400000px;}
.y13{bottom:535.560000px;}
.ya8{bottom:537.810000px;}
.y70{bottom:537.900000px;}
.y83{bottom:540.150000px;}
.y113{bottom:540.240000px;}
.y41{bottom:550.950000px;}
.y12{bottom:553.110000px;}
.yaa{bottom:565.080000px;}
.y6d{bottom:565.260000px;}
.yed{bottom:565.620000px;}
.y112{bottom:566.880000px;}
.y40{bottom:568.590000px;}
.yec{bottom:583.260000px;}
.y111{bottom:584.430000px;}
.y3f{bottom:586.140000px;}
.y11{bottom:588.750000px;}
.y6e{bottom:592.620000px;}
.y13d{bottom:593.430000px;}
.y3e{bottom:603.690000px;}
.y10{bottom:606.300000px;}
.yeb{bottom:609.810000px;}
.y82{bottom:610.890000px;}
.y110{bottom:610.980000px;}
.y13c{bottom:611.070000px;}
.y6b{bottom:619.980000px;}
.y3d{bottom:621.330000px;}
.ya6{bottom:627.630000px;}
.y13b{bottom:628.620000px;}
.y10f{bottom:637.620000px;}
.y3c{bottom:638.880000px;}
.yf{bottom:641.850000px;}
.yea{bottom:645.360000px;}
.y81{bottom:646.530000px;}
.y6c{bottom:647.250000px;}
.ya7{bottom:654.990000px;}
.y10e{bottom:655.170000px;}
.y13a{bottom:655.260000px;}
.y3b{bottom:656.520000px;}
.ye{bottom:659.490000px;}
.yd0{bottom:661.560000px;}
.ye9{bottom:663.000000px;}
.y80{bottom:664.080000px;}
.y139{bottom:672.810000px;}
.y3a{bottom:674.070000px;}
.y69{bottom:674.610000px;}
.ycf{bottom:679.110000px;}
.ye8{bottom:680.550000px;}
.y7f{bottom:681.720000px;}
.y10d{bottom:682.080000px;}
.ya4{bottom:682.260000px;}
.y138{bottom:690.360000px;}
.y39{bottom:691.620000px;}
.yd{bottom:695.040000px;}
.yce{bottom:696.750000px;}
.ye7{bottom:698.190000px;}
.y6a{bottom:701.970000px;}
.y137{bottom:708.000000px;}
.y38{bottom:709.170000px;}
.ya5{bottom:709.620000px;}
.yc{bottom:712.680000px;}
.ycd{bottom:714.300000px;}
.y7e{bottom:717.270000px;}
.ye6{bottom:724.740000px;}
.y37{bottom:727.620000px;}
.y66{bottom:729.240000px;}
.yb{bottom:730.230000px;}
.y10c{bottom:730.410000px;}
.ycc{bottom:731.850000px;}
.y136{bottom:734.550000px;}
.ya2{bottom:736.980000px;}
.y36{bottom:745.260000px;}
.y7d{bottom:749.490000px;}
.y135{bottom:752.190000px;}
.y68{bottom:756.600000px;}
.ya{bottom:757.140000px;}
.y10b{bottom:757.230000px;}
.ye5{bottom:760.290000px;}
.y35{bottom:762.810000px;}
.ycb{bottom:767.490000px;}
.y134{bottom:769.740000px;}
.ye4{bottom:777.930000px;}
.y34{bottom:780.450000px;}
.y64{bottom:783.960000px;}
.yca{bottom:785.040000px;}
.y10a{bottom:794.310000px;}
.ye3{bottom:795.480000px;}
.y133{bottom:796.290000px;}
.y33{bottom:798.000000px;}
.yc9{bottom:802.680000px;}
.ya1{bottom:803.220000px;}
.y9{bottom:805.380000px;}
.y65{bottom:811.320000px;}
.y132{bottom:813.930000px;}
.y32{bottom:816.450000px;}
.yc8{bottom:820.230000px;}
.y109{bottom:821.220000px;}
.ye2{bottom:822.030000px;}
.y131{bottom:831.480000px;}
.y31{bottom:834.000000px;}
.yc7{bottom:837.780000px;}
.y60{bottom:838.590000px;}
.ya0{bottom:838.860000px;}
.y8{bottom:841.200000px;}
.y30{bottom:851.550000px;}
.y9f{bottom:853.800000px;}
.yc6{bottom:855.420000px;}
.ye1{bottom:857.670000px;}
.y130{bottom:858.030000px;}
.y108{bottom:858.570000px;}
.y62{bottom:865.950000px;}
.y2f{bottom:869.100000px;}
.yc5{bottom:872.970000px;}
.ye0{bottom:875.220000px;}
.y12f{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y9e{bottom:881.160000px;}
.y2e{bottom:887.550000px;}
.y12e{bottom:893.220000px;}
.y5e{bottom:893.310000px;}
.yc4{bottom:899.880000px;}
.ydf{bottom:901.860000px;}
.y2d{bottom:905.100000px;}
.y107{bottom:906.810000px;}
.y9d{bottom:908.430000px;}
.y12d{bottom:910.860000px;}
.y6{bottom:913.200000px;}
.y106{bottom:924.450000px;}
.y2c{bottom:932.910000px;}
.y9c{bottom:935.790000px;}
.yde{bottom:937.410000px;}
.y5d{bottom:942.000000px;}
.yc2{bottom:945.600000px;}
.y5{bottom:949.290000px;}
.ydd{bottom:954.960000px;}
.y105{bottom:959.550000px;}
.y9b{bottom:963.150000px;}
.ydc{bottom:972.600000px;}
.yc3{bottom:972.870000px;}
.y104{bottom:977.190000px;}
.y5c{bottom:977.550000px;}
.y2b{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.ydb{bottom:990.150000px;}
.y9a{bottom:990.510000px;}
.y5b{bottom:995.190000px;}
.y2a{bottom:998.790000px;}
.y12c{bottom:999.150000px;}
.yc0{bottom:1000.230000px;}
.y103{bottom:1004.100000px;}
.yda{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y5a{bottom:1012.770000px;}
.y29{bottom:1016.370000px;}
.y12b{bottom:1016.820000px;}
.y99{bottom:1017.810000px;}
.yd9{bottom:1025.370000px;}
.yc1{bottom:1027.620000px;}
.y59{bottom:1030.320000px;}
.y12a{bottom:1034.370000px;}
.y98{bottom:1045.170000px;}
.y58{bottom:1047.960000px;}
.y28{bottom:1051.920000px;}
.y102{bottom:1052.370000px;}
.y129{bottom:1060.920000px;}
.y57{bottom:1065.510000px;}
.y27{bottom:1069.560000px;}
.y101{bottom:1069.920000px;}
.y97{bottom:1072.530000px;}
.y128{bottom:1078.560000px;}
.y56{bottom:1083.150000px;}
.yd8{bottom:1087.560000px;}
.y127{bottom:1096.110000px;}
.y96{bottom:1099.890000px;}
.y55{bottom:1100.700000px;}
.y26{bottom:1105.110000px;}
.y25{bottom:1122.750000px;}
.y95{bottom:1127.160000px;}
.y54{bottom:1127.610000px;}
.y24{bottom:1140.300000px;}
.y22{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h13{height:26.580000px;}
.he{height:26.640000px;}
.h11{height:26.670000px;}
.h2{height:31.901133px;}
.h3{height:39.155273px;}
.h19{height:44.100000px;}
.h14{height:44.190000px;}
.h12{height:48.690000px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h9{height:52.781133px;}
.hd{height:53.910000px;}
.h10{height:53.940000px;}
.hf{height:54.000000px;}
.h1d{height:55.779258px;}
.h5{height:57.323320px;}
.h8{height:57.838008px;}
.h1c{height:59.973223px;}
.hb{height:61.793886px;}
.h16{height:61.830000px;}
.h1b{height:62.585859px;}
.h1e{height:67.456230px;}
.ha{height:68.582109px;}
.h18{height:71.460000px;}
.h17{height:71.490000px;}
.h1a{height:71.550000px;}
.h4{height:72.985430px;}
.h15{height:89.100000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:40.500000px;}
.w7{width:42.030000px;}
.wd{width:67.050000px;}
.w13{width:82.170000px;}
.w9{width:88.380000px;}
.wf{width:93.240000px;}
.wa{width:95.400000px;}
.w10{width:109.170000px;}
.w11{width:111.000000px;}
.w12{width:130.500000px;}
.we{width:136.740000px;}
.wb{width:139.980000px;}
.wc{width:144.720000px;}
.w6{width:164.700000px;}
.w5{width:168.240000px;}
.w8{width:205.680000px;}
.w3{width:207.450000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.x1c{left:70.379987px;}
.x1b{left:72.899987px;}
.xf{left:74.160000px;}
.x1e{left:84.329987px;}
.x4{left:95.039987px;}
.x1d{left:99.899987px;}
.x20{left:111.239987px;}
.x6{left:115.469987px;}
.x5{left:122.039987px;}
.x7{left:142.469987px;}
.x15{left:206.220000px;}
.x2{left:211.079987px;}
.x8{left:237.810000px;}
.x1f{left:244.109987px;}
.x10{left:280.560000px;}
.x16{left:295.320000px;}
.xe{left:316.469987px;}
.x11{left:369.660000px;}
.x17{left:389.280000px;}
.xc{left:403.230000px;}
.xa{left:445.980000px;}
.x12{left:465.780000px;}
.xb{left:487.200000px;}
.x18{left:499.260000px;}
.x13{left:606.570000px;}
.x19{left:610.980000px;}
.x1a{left:742.290000px;}
.x14{left:752.010000px;}
.xd{left:788.639987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls1d{letter-spacing:-0.056533pt;}
.ls15{letter-spacing:-0.016320pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls1c{letter-spacing:-0.006720pt;}
.ls5{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.037120pt;}
.lse{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.042240pt;}
.ls18{letter-spacing:0.043520pt;}
.lsf{letter-spacing:0.057600pt;}
.lsd{letter-spacing:0.065920pt;}
.ls16{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.087467pt;}
.ls1a{letter-spacing:0.105067pt;}
.ls3{letter-spacing:0.119787pt;}
.ls6{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.177067pt;}
.ls1b{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:42.423680pt;}
.ls11{letter-spacing:49.143680pt;}
.ls10{letter-spacing:56.503680pt;}
.ls1e{letter-spacing:71.863680pt;}
.ws5{word-spacing:-53.440000pt;}
.ws7{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.wsc{word-spacing:-11.933867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.861867pt;}
.wsd{word-spacing:-11.844267pt;}
.wsf{word-spacing:-11.822933pt;}
.ws11{word-spacing:-11.800320pt;}
.ws10{word-spacing:-11.799040pt;}
.ws12{word-spacing:-11.793920pt;}
.ws4{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.750080pt;}
.wse{word-spacing:-11.740480pt;}
.ws15{word-spacing:-11.700267pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-10.544000pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.wsb{word-spacing:-0.053440pt;}
.ws8{word-spacing:0.000000pt;}
.ws6{word-spacing:3.826560pt;}
._b{margin-left:-3.716267pt;}
._8{margin-left:-2.672000pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.893229pt;}
._4{width:2.362945pt;}
._c{width:3.276645pt;}
._7{width:4.168534pt;}
._5{width:5.611200pt;}
._6{width:7.041173pt;}
._d{width:8.242667pt;}
._a{width:9.886400pt;}
._2{width:11.111006pt;}
._1{width:12.153056pt;}
._10{width:13.894400pt;}
._11{width:15.022304pt;}
._9{width:16.299200pt;}
._15{width:21.000107pt;}
._16{width:21.915840pt;}
._f{width:35.056640pt;}
._e{width:45.851520pt;}
._18{width:53.065920pt;}
._12{width:78.717120pt;}
._13{width:79.788587pt;}
._14{width:300.974080pt;}
._17{width:784.737707pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:6.960000pt;}
.yaf{bottom:6.986667pt;}
.y63{bottom:7.040000pt;}
.yb7{bottom:7.680000pt;}
.y90{bottom:11.680000pt;}
.yb3{bottom:22.560000pt;}
.ya3{bottom:22.640000pt;}
.y84{bottom:26.640000pt;}
.yb6{bottom:27.280000pt;}
.y61{bottom:31.280000pt;}
.y72{bottom:31.306667pt;}
.y67{bottom:31.360000pt;}
.yab{bottom:38.320000pt;}
.yb1{bottom:46.880000pt;}
.yad{bottom:46.906667pt;}
.yb5{bottom:46.960000pt;}
.ya9{bottom:62.560000pt;}
.y2{bottom:65.226667pt;}
.y23{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.ybf{bottom:99.626667pt;}
.yd7{bottom:100.266667pt;}
.y94{bottom:115.626667pt;}
.y100{bottom:117.786667pt;}
.y126{bottom:119.226667pt;}
.y21{bottom:124.026667pt;}
.yd6{bottom:131.866667pt;}
.yff{bottom:133.386667pt;}
.y125{bottom:134.826667pt;}
.ybd{bottom:139.546667pt;}
.y20{bottom:139.706667pt;}
.y93{bottom:139.946667pt;}
.yd5{bottom:147.466667pt;}
.yfe{bottom:148.986667pt;}
.y124{bottom:158.506667pt;}
.yd4{bottom:163.146667pt;}
.ybe{bottom:163.786667pt;}
.y92{bottom:164.186667pt;}
.yfd{bottom:164.666667pt;}
.y7c{bottom:165.946667pt;}
.y1f{bottom:171.306667pt;}
.y123{bottom:174.106667pt;}
.y53{bottom:175.626667pt;}
.yd3{bottom:178.746667pt;}
.y1e{bottom:186.906667pt;}
.ybb{bottom:188.106667pt;}
.yfc{bottom:188.266667pt;}
.y8f{bottom:188.506667pt;}
.y122{bottom:189.706667pt;}
.yd2{bottom:194.426667pt;}
.y7b{bottom:197.546667pt;}
.y52{bottom:207.226667pt;}
.y1d{bottom:210.826667pt;}
.ybc{bottom:212.426667pt;}
.y91{bottom:212.826667pt;}
.y121{bottom:213.386667pt;}
.yfb{bottom:219.946667pt;}
.y51{bottom:222.906667pt;}
.yd1{bottom:223.066667pt;}
.y120{bottom:228.986667pt;}
.y7a{bottom:235.146667pt;}
.yfa{bottom:235.546667pt;}
.yb9{bottom:236.746667pt;}
.y8d{bottom:237.146667pt;}
.yf9{bottom:251.146667pt;}
.y11f{bottom:252.666667pt;}
.y1c{bottom:254.026667pt;}
.y50{bottom:254.506667pt;}
.y78{bottom:259.466667pt;}
.yba{bottom:260.986667pt;}
.y8e{bottom:261.386667pt;}
.yf8{bottom:266.826667pt;}
.y11e{bottom:268.266667pt;}
.y4f{bottom:270.186667pt;}
.yf7{bottom:282.426667pt;}
.y79{bottom:283.786667pt;}
.y11d{bottom:283.866667pt;}
.yb4{bottom:285.306667pt;}
.y8b{bottom:285.706667pt;}
.y4e{bottom:285.786667pt;}
.y1b{bottom:286.986667pt;}
.y4d{bottom:301.386667pt;}
.y1a{bottom:302.586667pt;}
.y11c{bottom:307.546667pt;}
.y76{bottom:308.026667pt;}
.yb8{bottom:309.626667pt;}
.y8c{bottom:310.026667pt;}
.yf6{bottom:314.106667pt;}
.y4c{bottom:317.066667pt;}
.y11b{bottom:323.146667pt;}
.yf5{bottom:329.706667pt;}
.y77{bottom:332.346667pt;}
.y4b{bottom:332.666667pt;}
.y19{bottom:334.266667pt;}
.y89{bottom:334.346667pt;}
.y11a{bottom:338.746667pt;}
.yf4{bottom:345.306667pt;}
.y4a{bottom:349.066667pt;}
.yb0{bottom:349.546667pt;}
.y18{bottom:349.866667pt;}
.y119{bottom:354.426667pt;}
.y74{bottom:356.666667pt;}
.y8a{bottom:358.586667pt;}
.yf3{bottom:360.986667pt;}
.y49{bottom:364.666667pt;}
.yb2{bottom:373.866667pt;}
.yf2{bottom:376.586667pt;}
.y118{bottom:378.026667pt;}
.y48{bottom:380.266667pt;}
.y75{bottom:380.906667pt;}
.y17{bottom:381.466667pt;}
.y87{bottom:382.906667pt;}
.y117{bottom:393.706667pt;}
.y47{bottom:395.946667pt;}
.y16{bottom:397.146667pt;}
.yf1{bottom:400.266667pt;}
.y71{bottom:405.226667pt;}
.y88{bottom:407.226667pt;}
.y46{bottom:411.546667pt;}
.y15{bottom:412.746667pt;}
.yac{bottom:413.786667pt;}
.y116{bottom:417.306667pt;}
.y45{bottom:427.253333pt;}
.y73{bottom:429.573333pt;}
.y85{bottom:431.493333pt;}
.yf0{bottom:431.893333pt;}
.y115{bottom:432.933333pt;}
.yae{bottom:438.053333pt;}
.y44{bottom:442.853333pt;}
.y14{bottom:444.373333pt;}
.yef{bottom:447.493333pt;}
.y6f{bottom:453.893333pt;}
.y86{bottom:455.813333pt;}
.y114{bottom:456.613333pt;}
.y43{bottom:458.453333pt;}
.yee{bottom:471.173333pt;}
.y42{bottom:474.133333pt;}
.y13{bottom:476.053333pt;}
.ya8{bottom:478.053333pt;}
.y70{bottom:478.133333pt;}
.y83{bottom:480.133333pt;}
.y113{bottom:480.213333pt;}
.y41{bottom:489.733333pt;}
.y12{bottom:491.653333pt;}
.yaa{bottom:502.293333pt;}
.y6d{bottom:502.453333pt;}
.yed{bottom:502.773333pt;}
.y112{bottom:503.893333pt;}
.y40{bottom:505.413333pt;}
.yec{bottom:518.453333pt;}
.y111{bottom:519.493333pt;}
.y3f{bottom:521.013333pt;}
.y11{bottom:523.333333pt;}
.y6e{bottom:526.773333pt;}
.y13d{bottom:527.493333pt;}
.y3e{bottom:536.613333pt;}
.y10{bottom:538.933333pt;}
.yeb{bottom:542.053333pt;}
.y82{bottom:543.013333pt;}
.y110{bottom:543.093333pt;}
.y13c{bottom:543.173333pt;}
.y6b{bottom:551.093333pt;}
.y3d{bottom:552.293333pt;}
.ya6{bottom:557.893333pt;}
.y13b{bottom:558.773333pt;}
.y10f{bottom:566.773333pt;}
.y3c{bottom:567.893333pt;}
.yf{bottom:570.533333pt;}
.yea{bottom:573.653333pt;}
.y81{bottom:574.693333pt;}
.y6c{bottom:575.333333pt;}
.ya7{bottom:582.213333pt;}
.y10e{bottom:582.373333pt;}
.y13a{bottom:582.453333pt;}
.y3b{bottom:583.573333pt;}
.ye{bottom:586.213333pt;}
.yd0{bottom:588.053333pt;}
.ye9{bottom:589.333333pt;}
.y80{bottom:590.293333pt;}
.y139{bottom:598.053333pt;}
.y3a{bottom:599.173333pt;}
.y69{bottom:599.653333pt;}
.ycf{bottom:603.653333pt;}
.ye8{bottom:604.933333pt;}
.y7f{bottom:605.973333pt;}
.y10d{bottom:606.293333pt;}
.ya4{bottom:606.453333pt;}
.y138{bottom:613.653333pt;}
.y39{bottom:614.773333pt;}
.yd{bottom:617.813333pt;}
.yce{bottom:619.333333pt;}
.ye7{bottom:620.613333pt;}
.y6a{bottom:623.973333pt;}
.y137{bottom:629.333333pt;}
.y38{bottom:630.373333pt;}
.ya5{bottom:630.773333pt;}
.yc{bottom:633.493333pt;}
.ycd{bottom:634.933333pt;}
.y7e{bottom:637.573333pt;}
.ye6{bottom:644.213333pt;}
.y37{bottom:646.773333pt;}
.y66{bottom:648.213333pt;}
.yb{bottom:649.093333pt;}
.y10c{bottom:649.253333pt;}
.ycc{bottom:650.533333pt;}
.y136{bottom:652.933333pt;}
.ya2{bottom:655.093333pt;}
.y36{bottom:662.453333pt;}
.y7d{bottom:666.213333pt;}
.y135{bottom:668.613333pt;}
.y68{bottom:672.533333pt;}
.ya{bottom:673.013333pt;}
.y10b{bottom:673.093333pt;}
.ye5{bottom:675.813333pt;}
.y35{bottom:678.053333pt;}
.ycb{bottom:682.213333pt;}
.y134{bottom:684.213333pt;}
.ye4{bottom:691.493333pt;}
.y34{bottom:693.733333pt;}
.y64{bottom:696.853333pt;}
.yca{bottom:697.813333pt;}
.y10a{bottom:706.053333pt;}
.ye3{bottom:707.093333pt;}
.y133{bottom:707.813333pt;}
.y33{bottom:709.333333pt;}
.yc9{bottom:713.493333pt;}
.ya1{bottom:713.973333pt;}
.y9{bottom:715.893333pt;}
.y65{bottom:721.173333pt;}
.y132{bottom:723.493333pt;}
.y32{bottom:725.733333pt;}
.yc8{bottom:729.093333pt;}
.y109{bottom:729.973333pt;}
.ye2{bottom:730.693333pt;}
.y131{bottom:739.093333pt;}
.y31{bottom:741.333333pt;}
.yc7{bottom:744.693333pt;}
.y60{bottom:745.413333pt;}
.ya0{bottom:745.653333pt;}
.y8{bottom:747.733333pt;}
.y30{bottom:756.933333pt;}
.y9f{bottom:758.933333pt;}
.yc6{bottom:760.373333pt;}
.ye1{bottom:762.373333pt;}
.y130{bottom:762.693333pt;}
.y108{bottom:763.173333pt;}
.y62{bottom:769.733333pt;}
.y2f{bottom:772.533333pt;}
.yc5{bottom:775.973333pt;}
.ye0{bottom:777.973333pt;}
.y12f{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y9e{bottom:783.253333pt;}
.y2e{bottom:788.933333pt;}
.y12e{bottom:793.973333pt;}
.y5e{bottom:794.053333pt;}
.yc4{bottom:799.893333pt;}
.ydf{bottom:801.653333pt;}
.y2d{bottom:804.533333pt;}
.y107{bottom:806.053333pt;}
.y9d{bottom:807.493333pt;}
.y12d{bottom:809.653333pt;}
.y6{bottom:811.733333pt;}
.y106{bottom:821.733333pt;}
.y2c{bottom:829.253333pt;}
.y9c{bottom:831.813333pt;}
.yde{bottom:833.253333pt;}
.y5d{bottom:837.333333pt;}
.yc2{bottom:840.533333pt;}
.y5{bottom:843.813333pt;}
.ydd{bottom:848.853333pt;}
.y105{bottom:852.933333pt;}
.y9b{bottom:856.133333pt;}
.ydc{bottom:864.533333pt;}
.yc3{bottom:864.773333pt;}
.y104{bottom:868.613333pt;}
.y5c{bottom:868.933333pt;}
.y2b{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.ydb{bottom:880.133333pt;}
.y9a{bottom:880.453333pt;}
.y5b{bottom:884.613333pt;}
.y2a{bottom:887.813333pt;}
.y12c{bottom:888.133333pt;}
.yc0{bottom:889.093333pt;}
.y103{bottom:892.533333pt;}
.yda{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y5a{bottom:900.240000pt;}
.y29{bottom:903.440000pt;}
.y12b{bottom:903.840000pt;}
.y99{bottom:904.720000pt;}
.yd9{bottom:911.440000pt;}
.yc1{bottom:913.440000pt;}
.y59{bottom:915.840000pt;}
.y12a{bottom:919.440000pt;}
.y98{bottom:929.040000pt;}
.y58{bottom:931.520000pt;}
.y28{bottom:935.040000pt;}
.y102{bottom:935.440000pt;}
.y129{bottom:943.040000pt;}
.y57{bottom:947.120000pt;}
.y27{bottom:950.720000pt;}
.y101{bottom:951.040000pt;}
.y97{bottom:953.360000pt;}
.y128{bottom:958.720000pt;}
.y56{bottom:962.800000pt;}
.yd8{bottom:966.720000pt;}
.y127{bottom:974.320000pt;}
.y96{bottom:977.680000pt;}
.y55{bottom:978.400000pt;}
.y26{bottom:982.320000pt;}
.y25{bottom:998.000000pt;}
.y95{bottom:1001.920000pt;}
.y54{bottom:1002.320000pt;}
.y24{bottom:1013.600000pt;}
.y22{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h13{height:23.626667pt;}
.he{height:23.680000pt;}
.h11{height:23.706667pt;}
.h2{height:28.356562pt;}
.h3{height:34.804688pt;}
.h19{height:39.200000pt;}
.h14{height:39.280000pt;}
.h12{height:43.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h9{height:46.916562pt;}
.hd{height:47.920000pt;}
.h10{height:47.946667pt;}
.hf{height:48.000000pt;}
.h1d{height:49.581562pt;}
.h5{height:50.954062pt;}
.h8{height:51.411562pt;}
.h1c{height:53.309531pt;}
.hb{height:54.927899pt;}
.h16{height:54.960000pt;}
.h1b{height:55.631875pt;}
.h1e{height:59.961094pt;}
.ha{height:60.961875pt;}
.h18{height:63.520000pt;}
.h17{height:63.546667pt;}
.h1a{height:63.600000pt;}
.h4{height:64.875937pt;}
.h15{height:79.200000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:36.000000pt;}
.w7{width:37.360000pt;}
.wd{width:59.600000pt;}
.w13{width:73.040000pt;}
.w9{width:78.560000pt;}
.wf{width:82.880000pt;}
.wa{width:84.800000pt;}
.w10{width:97.040000pt;}
.w11{width:98.666667pt;}
.w12{width:116.000000pt;}
.we{width:121.546667pt;}
.wb{width:124.426667pt;}
.wc{width:128.640000pt;}
.w6{width:146.400000pt;}
.w5{width:149.546667pt;}
.w8{width:182.826667pt;}
.w3{width:184.400000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.x1c{left:62.559988pt;}
.x1b{left:64.799988pt;}
.xf{left:65.920000pt;}
.x1e{left:74.959988pt;}
.x4{left:84.479988pt;}
.x1d{left:88.799988pt;}
.x20{left:98.879988pt;}
.x6{left:102.639988pt;}
.x5{left:108.479988pt;}
.x7{left:126.639988pt;}
.x15{left:183.306667pt;}
.x2{left:187.626655pt;}
.x8{left:211.386667pt;}
.x1f{left:216.986655pt;}
.x10{left:249.386667pt;}
.x16{left:262.506667pt;}
.xe{left:281.306655pt;}
.x11{left:328.586667pt;}
.x17{left:346.026667pt;}
.xc{left:358.426667pt;}
.xa{left:396.426667pt;}
.x12{left:414.026667pt;}
.xb{left:433.066667pt;}
.x18{left:443.786667pt;}
.x13{left:539.173333pt;}
.x19{left:543.093333pt;}
.x1a{left:659.813333pt;}
.x14{left:668.453333pt;}
.xd{left:701.013322pt;}
.x3{left:711.413322pt;}
}




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