
    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_b9bc9d68d81cf3e9fc0678ab.woff')format("woff");}.ff1{font-family:ff1;line-height:0.964844;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_2119592aabca752288475767.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_455c5050d28857d930e1b6e1.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_f7c900738eab175bb296a025.woff')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_2ec59098df765f87c14589b9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.927734;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_749267ee1b7494ebbdf864a5.woff')format("woff");}.ff6{font-family:ff6;line-height:1.034180;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_c8ddda7b1b8c0e58dbca84bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.952637;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_51245cba7160cb3467d62107.woff')format("woff");}.ff8{font-family:ff8;line-height:0.952637;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_730c87303d5fb980bb9d09ab.woff')format("woff");}.ff9{font-family:ff9;line-height:1.034180;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_4271d7a90767deed5433d85f.woff')format("woff");}.ffa{font-family:ffa;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.v2{vertical-align:20.880000px;}
.ls13{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.302400px;}
.ls20{letter-spacing:-0.274800px;}
.ls25{letter-spacing:-0.259800px;}
.ls1c{letter-spacing:-0.237600px;}
.ls22{letter-spacing:-0.234600px;}
.ls16{letter-spacing:-0.212400px;}
.ls1d{letter-spacing:-0.169800px;}
.ls1{letter-spacing:-0.136800px;}
.ls8{letter-spacing:-0.127200px;}
.ls7{letter-spacing:-0.032400px;}
.ls1a{letter-spacing:-0.018000px;}
.ls17{letter-spacing:-0.017280px;}
.lse{letter-spacing:-0.005040px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.005040px;}
.ls3{letter-spacing:0.017280px;}
.ls18{letter-spacing:0.025920px;}
.lsd{letter-spacing:0.052560px;}
.ls12{letter-spacing:0.090000px;}
.ls5{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.175200px;}
.ls1e{letter-spacing:0.179280px;}
.lsa{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.217200px;}
.ls1b{letter-spacing:0.237600px;}
.lsc{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.280080px;}
.ls24{letter-spacing:0.280200px;}
.ls6{letter-spacing:0.302400px;}
.ls2{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.364800px;}
.ls23{letter-spacing:0.402600px;}
.ls15{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.978000px;}
.ls19{letter-spacing:1.620000px;}
.ls21{letter-spacing:50.346720px;}
.ls4{letter-spacing:847.560000px;}
.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;}
}
.ws0{word-spacing:-40.039920px;}
.ws16{word-spacing:-25.920000px;}
.wsb{word-spacing:-25.911360px;}
.ws15{word-spacing:-25.876800px;}
.ws17{word-spacing:-17.964000px;}
.ws13{word-spacing:-15.918000px;}
.wsa{word-spacing:-15.304800px;}
.ws7{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.220200px;}
.wsc{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.177600px;}
.ws8{word-spacing:-15.157200px;}
.ws6{word-spacing:-15.120000px;}
.ws1a{word-spacing:-15.119280px;}
.ws1b{word-spacing:-15.115200px;}
.ws10{word-spacing:-15.030000px;}
.wsf{word-spacing:-14.992560px;}
.wsd{word-spacing:-14.945040px;}
.ws1{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.934960px;}
.ws4{word-spacing:-14.907600px;}
.ws2{word-spacing:-14.803200px;}
.ws1e{word-spacing:-14.770200px;}
.ws14{word-spacing:-14.727600px;}
.ws18{word-spacing:-14.702400px;}
.ws20{word-spacing:-14.680200px;}
.ws1c{word-spacing:-14.665200px;}
.wse{word-spacing:-14.637600px;}
.ws5{word-spacing:-9.720000px;}
.ws1d{word-spacing:-9.485400px;}
.ws11{word-spacing:-9.360000px;}
.ws12{word-spacing:-8.640000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.202400px;}
._1{width:1.020000px;}
._5{width:2.310720px;}
._6{width:3.379920px;}
._4{width:4.391520px;}
._a{width:5.413440px;}
._7{width:6.660000px;}
._8{width:11.537280px;}
._b{width:39.561120px;}
._c{width:40.688400px;}
._9{width:91.458000px;}
._3{width:127.458000px;}
._2{width:658.938000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs9{font-size:56.920429px;}
.fs3{font-size:59.760000px;}
.fs8{font-size:62.991941px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:77.760000px;}
.fsb{font-size:90.000000px;}
.fs0{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:3.600000px;}
.y2a{bottom:3.960000px;}
.ye7{bottom:3.990000px;}
.ydb{bottom:4.005000px;}
.y57{bottom:4.140000px;}
.y1aa{bottom:4.680000px;}
.y37{bottom:5.940000px;}
.y28{bottom:6.120000px;}
.y1fe{bottom:6.165000px;}
.y13a{bottom:6.300000px;}
.y220{bottom:8.280000px;}
.y218{bottom:8.460000px;}
.y131{bottom:12.420000px;}
.y133{bottom:12.465000px;}
.y80{bottom:20.700000px;}
.y43{bottom:20.730000px;}
.y244{bottom:20.745000px;}
.y35{bottom:20.880000px;}
.yb9{bottom:20.910000px;}
.y52{bottom:20.925000px;}
.y216{bottom:22.860000px;}
.y252{bottom:23.040000px;}
.y23a{bottom:23.070000px;}
.y3a{bottom:33.480000px;}
.y32{bottom:33.660000px;}
.y27{bottom:33.690000px;}
.y1f6{bottom:33.705000px;}
.y7c{bottom:37.620000px;}
.y42{bottom:37.650000px;}
.y243{bottom:37.665000px;}
.y34{bottom:37.800000px;}
.y161{bottom:37.830000px;}
.yce{bottom:37.845000px;}
.yd6{bottom:39.960000px;}
.y235{bottom:48.240000px;}
.y215{bottom:48.270000px;}
.y239{bottom:48.450000px;}
.y7b{bottom:54.540000px;}
.y41{bottom:54.570000px;}
.y1bc{bottom:54.585000px;}
.yb7{bottom:54.720000px;}
.y1a5{bottom:54.750000px;}
.y12d{bottom:56.700000px;}
.y1a3{bottom:57.060000px;}
.y4a{bottom:57.780000px;}
.y202{bottom:61.050000px;}
.y14b{bottom:61.560000px;}
.yb3{bottom:65.340000px;}
.y203{bottom:66.240000px;}
.yd5{bottom:67.500000px;}
.y59{bottom:67.860000px;}
.y7a{bottom:71.460000px;}
.y40{bottom:71.490000px;}
.yb0{bottom:71.505000px;}
.y23c{bottom:72.360000px;}
.y12b{bottom:72.900000px;}
.y144{bottom:73.665000px;}
.y49{bottom:74.700000px;}
.y219{bottom:75.060000px;}
.y48{bottom:78.480000px;}
.y12c{bottom:84.240000px;}
.y1f1{bottom:87.300000px;}
.y7f{bottom:88.200000px;}
.y3f{bottom:88.230000px;}
.y210{bottom:88.245000px;}
.y79{bottom:88.380000px;}
.y1ab{bottom:88.425000px;}
.y201{bottom:88.590000px;}
.yd4{bottom:88.920000px;}
.y1b8{bottom:89.280000px;}
.y153{bottom:90.360000px;}
.y213{bottom:90.540000px;}
.y47{bottom:91.440000px;}
.yff{bottom:91.800000px;}
.y46{bottom:95.220000px;}
.y143{bottom:101.025000px;}
.yae{bottom:104.760000px;}
.y78{bottom:105.120000px;}
.y3e{bottom:105.150000px;}
.y20f{bottom:105.165000px;}
.yb6{bottom:105.300000px;}
.y1b3{bottom:105.345000px;}
.y162{bottom:108.000000px;}
.y181{bottom:108.360000px;}
.y45{bottom:108.720000px;}
.y98{bottom:109.260000px;}
.y1f0{bottom:109.440000px;}
.y217{bottom:112.320000px;}
.y152{bottom:117.945000px;}
.y212{bottom:118.080000px;}
.yad{bottom:121.680000px;}
.y7e{bottom:122.040000px;}
.y3d{bottom:122.070000px;}
.y192{bottom:122.085000px;}
.yc4{bottom:122.220000px;}
.yb5{bottom:122.250000px;}
.y1b2{bottom:122.265000px;}
.y1b7{bottom:123.660000px;}
.y23b{bottom:123.840000px;}
.y180{bottom:125.280000px;}
.y97{bottom:126.180000px;}
.yfe{bottom:126.720000px;}
.y1d4{bottom:127.980000px;}
.y17f{bottom:129.060000px;}
.y14a{bottom:131.220000px;}
.y1ef{bottom:131.400000px;}
.y214{bottom:134.460000px;}
.yac{bottom:138.600000px;}
.yc6{bottom:138.960000px;}
.y3c{bottom:138.990000px;}
.y191{bottom:139.005000px;}
.y17e{bottom:142.560000px;}
.y96{bottom:143.100000px;}
.y255{bottom:147.420000px;}
.yfd{bottom:148.860000px;}
.y1d3{bottom:149.940000px;}
.y149{bottom:153.180000px;}
.y1ee{bottom:153.540000px;}
.y44{bottom:153.900000px;}
.yab{bottom:155.520000px;}
.y1f8{bottom:155.700000px;}
.yc5{bottom:155.880000px;}
.y77{bottom:155.910000px;}
.y190{bottom:155.925000px;}
.y238{bottom:158.220000px;}
.y95{bottom:160.020000px;}
.y160{bottom:163.800000px;}
.y254{bottom:166.320000px;}
.y200{bottom:168.300000px;}
.y3b{bottom:168.840000px;}
.yfc{bottom:170.820000px;}
.y1d2{bottom:172.080000px;}
.yaa{bottom:172.260000px;}
.y76{bottom:172.650000px;}
.y1a2{bottom:172.800000px;}
.yb4{bottom:172.830000px;}
.y18f{bottom:172.845000px;}
.y148{bottom:175.320000px;}
.y1ed{bottom:175.530000px;}
.y94{bottom:176.760000px;}
.yd3{bottom:178.590000px;}
.y12a{bottom:179.310000px;}
.y17d{bottom:180.210000px;}
.y195{bottom:180.930000px;}
.ya9{bottom:189.180000px;}
.y20d{bottom:189.540000px;}
.y75{bottom:189.570000px;}
.y18e{bottom:189.585000px;}
.y1a1{bottom:189.720000px;}
.y1b1{bottom:189.765000px;}
.yfb{bottom:192.990000px;}
.y1d1{bottom:194.070000px;}
.y211{bottom:196.410000px;}
.y147{bottom:197.310000px;}
.y1ec{bottom:197.670000px;}
.y253{bottom:200.910000px;}
.y129{bottom:201.270000px;}
.ya8{bottom:206.100000px;}
.y1a0{bottom:206.460000px;}
.y74{bottom:206.490000px;}
.y18d{bottom:206.505000px;}
.y1b6{bottom:208.830000px;}
.y93{bottom:214.770000px;}
.yfa{bottom:214.950000px;}
.y15f{bottom:215.130000px;}
.y1d0{bottom:216.210000px;}
.y1eb{bottom:219.630000px;}
.y237{bottom:220.350000px;}
.ya7{bottom:223.050000px;}
.y19f{bottom:223.380000px;}
.y73{bottom:223.410000px;}
.y18c{bottom:223.425000px;}
.y17c{bottom:231.510000px;}
.y92{bottom:231.690000px;}
.y146{bottom:231.870000px;}
.y251{bottom:235.470000px;}
.yf9{bottom:237.090000px;}
.y23{bottom:237.270000px;}
.y1cf{bottom:238.170000px;}
.ya6{bottom:239.790000px;}
.y72{bottom:240.150000px;}
.y20c{bottom:240.330000px;}
.y18b{bottom:240.345000px;}
.y1ea{bottom:241.770000px;}
.y128{bottom:245.370000px;}
.y91{bottom:248.430000px;}
.yb2{bottom:251.850000px;}
.y22{bottom:255.810000px;}
.ya5{bottom:256.710000px;}
.y71{bottom:257.070000px;}
.y18a{bottom:257.085000px;}
.y19e{bottom:257.265000px;}
.yf8{bottom:259.050000px;}
.y1ce{bottom:260.310000px;}
.yd2{bottom:263.550000px;}
.y1e9{bottom:263.730000px;}
.y1b5{bottom:264.630000px;}
.y15e{bottom:266.610000px;}
.y127{bottom:267.510000px;}
.y236{bottom:271.650000px;}
.ya4{bottom:273.630000px;}
.y70{bottom:273.990000px;}
.y189{bottom:274.005000px;}
.y21{bottom:274.530000px;}
.y1ff{bottom:279.030000px;}
.yf7{bottom:281.190000px;}
.y90{bottom:286.230000px;}
.y1b4{bottom:286.770000px;}
.y17b{bottom:287.310000px;}
.y126{bottom:289.470000px;}
.ya3{bottom:290.550000px;}
.y6f{bottom:290.910000px;}
.y188{bottom:290.925000px;}
.y20{bottom:293.070000px;}
.y250{bottom:297.390000px;}
.y8f{bottom:303.150000px;}
.y234{bottom:306.210000px;}
.ya2{bottom:307.290000px;}
.y6e{bottom:307.650000px;}
.y20b{bottom:307.830000px;}
.y187{bottom:307.845000px;}
.y17a{bottom:309.270000px;}
.y1b0{bottom:310.005000px;}
.y125{bottom:311.610000px;}
.y1f{bottom:311.790000px;}
.y145{bottom:317.010000px;}
.y15d{bottom:317.910000px;}
.yd1{bottom:319.350000px;}
.y8e{bottom:320.070000px;}
.y1ae{bottom:321.150000px;}
.y39{bottom:321.510000px;}
.ya1{bottom:324.210000px;}
.y6d{bottom:324.570000px;}
.y186{bottom:324.585000px;}
.y19d{bottom:324.765000px;}
.yf6{bottom:325.290000px;}
.y1cd{bottom:328.530000px;}
.y1e{bottom:330.330000px;}
.y179{bottom:331.410000px;}
.y1e8{bottom:332.130000px;}
.y124{bottom:333.570000px;}
.y20e{bottom:336.630000px;}
.y8d{bottom:336.990000px;}
.y1af{bottom:337.545000px;}
.ya0{bottom:341.130000px;}
.y6c{bottom:341.490000px;}
.y185{bottom:341.505000px;}
.yb1{bottom:342.030000px;}
.yf5{bottom:347.250000px;}
.y24f{bottom:348.870000px;}
.y1cc{bottom:350.670000px;}
.y142{bottom:351.570000px;}
.y15c{bottom:352.470000px;}
.y178{bottom:353.370000px;}
.y8c{bottom:353.910000px;}
.y1e7{bottom:354.090000px;}
.y123{bottom:355.710000px;}
.y9f{bottom:358.050000px;}
.y20a{bottom:358.410000px;}
.y184{bottom:358.425000px;}
.y6b{bottom:358.455000px;}
.yd0{bottom:359.130000px;}
.yaf{bottom:359.670000px;}
.y1d{bottom:360.930000px;}
.y233{bottom:368.130000px;}
.yf4{bottom:369.390000px;}
.y8b{bottom:370.650000px;}
.y1cb{bottom:372.630000px;}
.y9e{bottom:374.790000px;}
.y6a{bottom:375.195000px;}
.y209{bottom:375.330000px;}
.y19c{bottom:375.345000px;}
.y183{bottom:375.375000px;}
.y177{bottom:375.510000px;}
.y1e6{bottom:376.230000px;}
.ycf{bottom:376.770000px;}
.y38{bottom:377.130000px;}
.y122{bottom:377.670000px;}
.y1c{bottom:379.470000px;}
.y8a{bottom:387.570000px;}
.yf3{bottom:391.350000px;}
.y9d{bottom:391.710000px;}
.y208{bottom:392.070000px;}
.y69{bottom:392.115000px;}
.y19b{bottom:392.265000px;}
.ycd{bottom:394.230000px;}
.y36{bottom:394.770000px;}
.y176{bottom:397.470000px;}
.y1b{bottom:398.190000px;}
.y121{bottom:399.810000px;}
.y24e{bottom:400.170000px;}
.y15b{bottom:403.770000px;}
.y89{bottom:404.490000px;}
.y9c{bottom:408.630000px;}
.y207{bottom:408.990000px;}
.y19a{bottom:409.005000px;}
.y68{bottom:409.035000px;}
.yf2{bottom:413.490000px;}
.y1fd{bottom:414.750000px;}
.y1ca{bottom:416.730000px;}
.y1a{bottom:417.315000px;}
.y232{bottom:419.655000px;}
.y1e5{bottom:420.375000px;}
.y88{bottom:421.410000px;}
.y120{bottom:421.815000px;}
.y9b{bottom:425.550000px;}
.y199{bottom:425.925000px;}
.y67{bottom:425.955000px;}
.y175{bottom:432.075000px;}
.yf1{bottom:435.495000px;}
.y19{bottom:437.655000px;}
.y87{bottom:438.150000px;}
.y1c9{bottom:438.915000px;}
.y231{bottom:441.615000px;}
.y9a{bottom:442.290000px;}
.y1e4{bottom:442.335000px;}
.y66{bottom:442.695000px;}
.y198{bottom:442.845000px;}
.y11f{bottom:443.955000px;}
.y81{bottom:444.855000px;}
.ycc{bottom:445.755000px;}
.y24d{bottom:451.515000px;}
.y174{bottom:454.215000px;}
.y15a{bottom:455.295000px;}
.y206{bottom:455.475000px;}
.yf0{bottom:457.635000px;}
.y99{bottom:459.255000px;}
.y65{bottom:459.615000px;}
.y197{bottom:459.765000px;}
.y18{bottom:460.155000px;}
.y1c8{bottom:460.875000px;}
.y11e{bottom:465.915000px;}
.y1fc{bottom:470.595000px;}
.y141{bottom:474.735000px;}
.y86{bottom:476.175000px;}
.y196{bottom:476.505000px;}
.y64{bottom:476.535000px;}
.y1e3{bottom:476.895000px;}
.yef{bottom:479.595000px;}
.ycb{bottom:480.315000px;}
.y1c7{bottom:483.015000px;}
.y17{bottom:485.175000px;}
.y24c{bottom:486.075000px;}
.y11d{bottom:488.055000px;}
.y159{bottom:489.675000px;}
.y230{bottom:492.915000px;}
.y85{bottom:493.095000px;}
.y63{bottom:493.455000px;}
.yca{bottom:497.775000px;}
.y173{bottom:498.315000px;}
.y1e2{bottom:498.855000px;}
.yee{bottom:501.735000px;}
.y140{bottom:509.295000px;}
.y84{bottom:509.835000px;}
.y11c{bottom:510.015000px;}
.y62{bottom:510.195000px;}
.y16{bottom:510.375000px;}
.y22f{bottom:515.055000px;}
.y172{bottom:520.275000px;}
.y1e1{bottom:520.995000px;}
.yed{bottom:523.695000px;}
.y83{bottom:526.755000px;}
.y61{bottom:527.115000px;}
.y13f{bottom:531.255000px;}
.y11b{bottom:532.155000px;}
.yc9{bottom:532.335000px;}
.y15{bottom:535.395000px;}
.y24b{bottom:537.555000px;}
.y1fb{bottom:538.815000px;}
.y158{bottom:541.155000px;}
.y171{bottom:542.415000px;}
.y1e0{bottom:542.955000px;}
.y82{bottom:543.675000px;}
.y60{bottom:544.035000px;}
.yec{bottom:545.835000px;}
.y22e{bottom:549.615000px;}
.yc8{bottom:549.975000px;}
.y1c6{bottom:551.235000px;}
.y11a{bottom:554.115000px;}
.y14{bottom:560.595000px;}
.y5f{bottom:560.955000px;}
.y13e{bottom:565.815000px;}
.yeb{bottom:567.795000px;}
.y22d{bottom:571.575000px;}
.y1c5{bottom:573.195000px;}
.y157{bottom:575.715000px;}
.y119{bottom:576.255000px;}
.y170{bottom:576.795000px;}
.y5e{bottom:577.695000px;}
.y13{bottom:585.615000px;}
.y24a{bottom:588.855000px;}
.yea{bottom:589.935000px;}
.y1fa{bottom:594.615000px;}
.y5d{bottom:594.645000px;}
.y1c4{bottom:595.335000px;}
.y118{bottom:598.215000px;}
.y13d{bottom:600.375000px;}
.y22c{bottom:606.135000px;}
.y12{bottom:610.815000px;}
.y1df{bottom:611.175000px;}
.y16f{bottom:611.355000px;}
.y5c{bottom:611.565000px;}
.ye9{bottom:611.895000px;}
.y1c3{bottom:617.295000px;}
.y117{bottom:620.355000px;}
.y13c{bottom:622.335000px;}
.y22b{bottom:628.095000px;}
.y5b{bottom:628.485000px;}
.y16e{bottom:633.315000px;}
.ye8{bottom:634.035000px;}
.y1c2{bottom:639.435000px;}
.y249{bottom:640.155000px;}
.y11{bottom:641.775000px;}
.y116{bottom:642.315000px;}
.y156{bottom:643.935000px;}
.y13b{bottom:644.475000px;}
.y1de{bottom:645.735000px;}
.y16d{bottom:655.455000px;}
.ye6{bottom:655.995000px;}
.y1c1{bottom:661.425000px;}
.y22a{bottom:662.685000px;}
.y1f9{bottom:662.865000px;}
.y115{bottom:664.485000px;}
.yc7{bottom:668.805000px;}
.y248{bottom:674.745000px;}
.y16c{bottom:677.445000px;}
.y33{bottom:677.625000px;}
.ye5{bottom:678.165000px;}
.y139{bottom:678.885000px;}
.y1dd{bottom:680.325000px;}
.y1ad{bottom:680.685000px;}
.y10{bottom:681.585000px;}
.y1c0{bottom:683.565000px;}
.y229{bottom:684.645000px;}
.yc3{bottom:686.445000px;}
.y155{bottom:695.265000px;}
.y16b{bottom:699.585000px;}
.ye4{bottom:700.125000px;}
.y138{bottom:701.025000px;}
.y194{bottom:704.985000px;}
.y1bf{bottom:705.525000px;}
.y114{bottom:708.585000px;}
.y58{bottom:710.025000px;}
.yf{bottom:712.545000px;}
.y1dc{bottom:714.705000px;}
.y1f7{bottom:718.665000px;}
.y228{bottom:719.205000px;}
.y16a{bottom:721.545000px;}
.ye3{bottom:722.265000px;}
.y247{bottom:726.045000px;}
.y31{bottom:728.925000px;}
.y56{bottom:729.645000px;}
.y113{bottom:730.545000px;}
.y137{bottom:735.585000px;}
.y1db{bottom:736.845000px;}
.y227{bottom:741.345000px;}
.ye2{bottom:744.225000px;}
.y55{bottom:749.445000px;}
.y112{bottom:752.685000px;}
.y136{bottom:757.545000px;}
.ye{bottom:760.605000px;}
.y193{bottom:760.785000px;}
.y1ac{bottom:765.825000px;}
.ye1{bottom:766.365000px;}
.y1be{bottom:773.745000px;}
.y111{bottom:774.645000px;}
.y226{bottom:775.725000px;}
.y246{bottom:777.525000px;}
.y154{bottom:780.405000px;}
.y182{bottom:782.745000px;}
.y30{bottom:784.725000px;}
.ye0{bottom:788.325000px;}
.y135{bottom:792.105000px;}
.y110{bottom:796.785000px;}
.y225{bottom:797.865000px;}
.y2f{bottom:802.365000px;}
.y151{bottom:802.545000px;}
.y54{bottom:805.245000px;}
.ydf{bottom:810.465000px;}
.yd{bottom:812.985000px;}
.y10f{bottom:818.745000px;}
.y1a9{bottom:821.625000px;}
.y1da{bottom:821.985000px;}
.y245{bottom:828.825000px;}
.y224{bottom:832.245000px;}
.yde{bottom:832.425000px;}
.y10e{bottom:840.885000px;}
.y134{bottom:843.405000px;}
.yc{bottom:852.765000px;}
.y223{bottom:854.385000px;}
.ydd{bottom:854.565000px;}
.yc2{bottom:856.005000px;}
.y169{bottom:857.445000px;}
.y1bd{bottom:858.885000px;}
.y53{bottom:861.045000px;}
.y10d{bottom:862.845000px;}
.ydc{bottom:876.525000px;}
.y1d9{bottom:877.785000px;}
.yb{bottom:877.965000px;}
.y205{bottom:878.145000px;}
.y168{bottom:879.405000px;}
.y242{bottom:880.305000px;}
.y51{bottom:880.485000px;}
.y10c{bottom:884.985000px;}
.y1f5{bottom:888.045000px;}
.y222{bottom:888.945000px;}
.yc1{bottom:890.565000px;}
.y1bb{bottom:893.445000px;}
.yda{bottom:898.665000px;}
.y1d8{bottom:899.745000px;}
.y132{bottom:899.925000px;}
.y167{bottom:901.590000px;}
.ya{bottom:903.030000px;}
.y10b{bottom:906.990000px;}
.yc0{bottom:908.250000px;}
.y221{bottom:910.950000px;}
.y50{bottom:915.090000px;}
.y1d7{bottom:921.930000px;}
.y166{bottom:923.550000px;}
.y1a8{bottom:923.730000px;}
.ybf{bottom:925.890000px;}
.y9{bottom:928.230000px;}
.y10a{bottom:929.130000px;}
.y241{bottom:931.650000px;}
.yd9{bottom:933.090000px;}
.y204{bottom:933.990000px;}
.y4f{bottom:934.530000px;}
.y150{bottom:942.630000px;}
.y1d6{bottom:943.890000px;}
.y21f{bottom:945.510000px;}
.y165{bottom:945.690000px;}
.y109{bottom:951.090000px;}
.y8{bottom:953.250000px;}
.ybe{bottom:960.270000px;}
.y1d5{bottom:966.030000px;}
.y21e{bottom:967.470000px;}
.y164{bottom:967.650000px;}
.y4e{bottom:969.090000px;}
.y108{bottom:973.230000px;}
.y14f{bottom:977.190000px;}
.y7{bottom:978.450000px;}
.y1ba{bottom:978.630000px;}
.y1a7{bottom:979.350000px;}
.y240{bottom:983.130000px;}
.y1f4{bottom:987.990000px;}
.y130{bottom:991.050000px;}
.ybd{bottom:994.830000px;}
.y107{bottom:995.190000px;}
.y1b9{bottom:1000.590000px;}
.yd8{bottom:1001.490000px;}
.y21d{bottom:1002.030000px;}
.y6{bottom:1003.470000px;}
.y1f3{bottom:1010.130000px;}
.y14e{bottom:1011.570000px;}
.ybc{bottom:1012.470000px;}
.y12f{bottom:1013.190000px;}
.y106{bottom:1017.330000px;}
.y7d{bottom:1019.130000px;}
.y21c{bottom:1023.990000px;}
.y5{bottom:1028.670000px;}
.y1f2{bottom:1032.090000px;}
.y23f{bottom:1034.430000px;}
.yd7{bottom:1035.870000px;}
.y105{bottom:1039.290000px;}
.y2e{bottom:1043.970000px;}
.y2d{bottom:1044.690000px;}
.y14d{bottom:1046.130000px;}
.ybb{bottom:1046.850000px;}
.y1a6{bottom:1047.750000px;}
.y4{bottom:1053.690000px;}
.y21b{bottom:1058.550000px;}
.y4d{bottom:1059.270000px;}
.y104{bottom:1061.430000px;}
.y2c{bottom:1062.330000px;}
.y12e{bottom:1064.490000px;}
.y23e{bottom:1068.990000px;}
.y4c{bottom:1078.890000px;}
.y2b{bottom:1079.970000px;}
.y14c{bottom:1080.690000px;}
.y103{bottom:1083.390000px;}
.y3{bottom:1084.650000px;}
.y163{bottom:1086.630000px;}
.y29{bottom:1097.610000px;}
.y4b{bottom:1098.330000px;}
.yba{bottom:1102.650000px;}
.y1a4{bottom:1103.370000px;}
.y102{bottom:1105.530000px;}
.y21a{bottom:1115.070000px;}
.y26{bottom:1115.970000px;}
.y23d{bottom:1120.290000px;}
.y101{bottom:1127.490000px;}
.y2{bottom:1130.190000px;}
.yb8{bottom:1137.210000px;}
.y100{bottom:1149.660000px;}
.y25{bottom:1175.760000px;}
.y1{bottom:1175.940000px;}
.y24{bottom:1194.840000px;}
.h11{height:2.172656px;}
.hc{height:16.740000px;}
.h2b{height:16.776000px;}
.he{height:16.920000px;}
.h1e{height:18.720000px;}
.h23{height:18.900000px;}
.h22{height:19.080000px;}
.h36{height:21.240000px;}
.h38{height:21.276000px;}
.h30{height:21.420000px;}
.h37{height:21.456000px;}
.h1d{height:29.976328px;}
.h1f{height:33.660000px;}
.h2a{height:33.696000px;}
.h20{height:33.840000px;}
.h21{height:33.876000px;}
.h28{height:38.549138px;}
.hf{height:40.472227px;}
.h9{height:40.737305px;}
.h15{height:41.610234px;}
.h25{height:41.633789px;}
.h1b{height:42.661046px;}
.h46{height:45.082617px;}
.h16{height:45.096328px;}
.h2d{height:45.946406px;}
.hd{height:46.074727px;}
.h17{height:47.520776px;}
.h3{height:49.971094px;}
.h14{height:50.580000px;}
.h3d{height:50.616000px;}
.h3e{height:50.760000px;}
.h2f{height:50.796000px;}
.h1c{height:51.070781px;}
.h19{height:54.900000px;}
.ha{height:54.936000px;}
.h13{height:55.080000px;}
.h49{height:55.116000px;}
.h7{height:58.651172px;}
.hb{height:58.661719px;}
.h4d{height:59.614102px;}
.h8{height:60.226875px;}
.h51{height:61.200000px;}
.h50{height:61.236000px;}
.h6{height:65.010937px;}
.h5{height:66.757500px;}
.h35{height:67.500000px;}
.h44{height:67.536000px;}
.h33{height:67.895508px;}
.h10{height:71.280000px;}
.h31{height:84.240000px;}
.h3f{height:84.276000px;}
.h3b{height:84.420000px;}
.h27{height:84.456000px;}
.h32{height:88.776000px;}
.h2{height:90.708398px;}
.h4c{height:101.160000px;}
.h48{height:101.340000px;}
.h45{height:101.376000px;}
.h39{height:105.696000px;}
.h4{height:108.632812px;}
.h4b{height:110.016000px;}
.h40{height:118.080000px;}
.h2e{height:118.116000px;}
.h3a{height:122.436000px;}
.h41{height:135.000000px;}
.h34{height:135.036000px;}
.h4f{height:139.320000px;}
.h3c{height:139.356000px;}
.h1a{height:151.770000px;}
.h4a{height:168.660000px;}
.h2c{height:168.840000px;}
.h29{height:185.790000px;}
.h12{height:240.870000px;}
.h18{height:282.135000px;}
.h47{height:358.815000px;}
.h42{height:388.155000px;}
.h4e{height:421.950000px;}
.h43{height:523.335000px;}
.h26{height:573.375000px;}
.h24{height:641.265000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:63.360000px;}
.w7{width:63.396000px;}
.w9{width:63.540000px;}
.wc{width:148.896000px;}
.w5{width:191.730000px;}
.we{width:326.055000px;}
.wf{width:329.610000px;}
.w4{width:384.195000px;}
.wd{width:655.665000px;}
.w6{width:769.290000px;}
.w3{width:786.930000px;}
.wb{width:804.570000px;}
.wa{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:8.100000px;}
.x1e{left:16.920000px;}
.x1c{left:23.580000px;}
.x34{left:35.100000px;}
.x19{left:52.245000px;}
.x7{left:53.999987px;}
.x2b{left:58.499987px;}
.x15{left:62.820000px;}
.x28{left:77.976000px;}
.x1d{left:126.936000px;}
.x31{left:156.630000px;}
.x16{left:169.230000px;}
.x35{left:182.910000px;}
.x33{left:186.870000px;}
.x1f{left:191.190000px;}
.x2c{left:202.890000px;}
.x2e{left:223.770000px;}
.x36{left:231.330000px;}
.x4{left:238.529987px;}
.x18{left:255.270000px;}
.x5{left:257.969987px;}
.x2a{left:270.029987px;}
.x6{left:288.929987px;}
.x20{left:319.575000px;}
.x13{left:329.654987px;}
.x3{left:350.714987px;}
.x1b{left:362.415000px;}
.x32{left:364.035000px;}
.x21{left:383.655000px;}
.x27{left:421.635000px;}
.x2{left:446.474987px;}
.x17{left:447.915000px;}
.x22{left:512.025000px;}
.x2d{left:528.945000px;}
.x2f{left:551.085000px;}
.x23{left:576.105000px;}
.x1{left:603.464987px;}
.xd{left:607.604987px;}
.xf{left:610.124987px;}
.x12{left:617.684987px;}
.x10{left:631.904987px;}
.x30{left:633.390000px;}
.x11{left:636.044987px;}
.x1a{left:640.365000px;}
.xe{left:651.704987px;}
.xc{left:663.224987px;}
.xb{left:675.284987px;}
.x8{left:683.249987px;}
.x9{left:686.129987px;}
.x24{left:704.490000px;}
.x29{left:729.150000px;}
.x25{left:768.570000px;}
.x26{left:778.650000px;}
.xa{left:839.129987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.v2{vertical-align:18.560000pt;}
.ls13{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.268800pt;}
.ls20{letter-spacing:-0.244267pt;}
.ls25{letter-spacing:-0.230933pt;}
.ls1c{letter-spacing:-0.211200pt;}
.ls22{letter-spacing:-0.208533pt;}
.ls16{letter-spacing:-0.188800pt;}
.ls1d{letter-spacing:-0.150933pt;}
.ls1{letter-spacing:-0.121600pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls7{letter-spacing:-0.028800pt;}
.ls1a{letter-spacing:-0.016000pt;}
.ls17{letter-spacing:-0.015360pt;}
.lse{letter-spacing:-0.004480pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.004480pt;}
.ls3{letter-spacing:0.015360pt;}
.ls18{letter-spacing:0.023040pt;}
.lsd{letter-spacing:0.046720pt;}
.ls12{letter-spacing:0.080000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.155733pt;}
.ls1e{letter-spacing:0.159360pt;}
.lsa{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.193067pt;}
.ls1b{letter-spacing:0.211200pt;}
.lsc{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.248960pt;}
.ls24{letter-spacing:0.249067pt;}
.ls6{letter-spacing:0.268800pt;}
.ls2{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.324267pt;}
.ls23{letter-spacing:0.357867pt;}
.ls15{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.869333pt;}
.ls19{letter-spacing:1.440000pt;}
.ls21{letter-spacing:44.752640pt;}
.ls4{letter-spacing:753.386667pt;}
.ws0{word-spacing:-35.591040pt;}
.ws16{word-spacing:-23.040000pt;}
.wsb{word-spacing:-23.032320pt;}
.ws15{word-spacing:-23.001600pt;}
.ws17{word-spacing:-15.968000pt;}
.ws13{word-spacing:-14.149333pt;}
.wsa{word-spacing:-13.604267pt;}
.ws7{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.529067pt;}
.wsc{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.491200pt;}
.ws8{word-spacing:-13.473067pt;}
.ws6{word-spacing:-13.440000pt;}
.ws1a{word-spacing:-13.439360pt;}
.ws1b{word-spacing:-13.435733pt;}
.ws10{word-spacing:-13.360000pt;}
.wsf{word-spacing:-13.326720pt;}
.wsd{word-spacing:-13.284480pt;}
.ws1{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.275520pt;}
.ws4{word-spacing:-13.251200pt;}
.ws2{word-spacing:-13.158400pt;}
.ws1e{word-spacing:-13.129067pt;}
.ws14{word-spacing:-13.091200pt;}
.ws18{word-spacing:-13.068800pt;}
.ws20{word-spacing:-13.049067pt;}
.ws1c{word-spacing:-13.035733pt;}
.wse{word-spacing:-13.011200pt;}
.ws5{word-spacing:-8.640000pt;}
.ws1d{word-spacing:-8.431467pt;}
.ws11{word-spacing:-8.320000pt;}
.ws12{word-spacing:-7.680000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.068800pt;}
._1{width:0.906667pt;}
._5{width:2.053973pt;}
._6{width:3.004373pt;}
._4{width:3.903573pt;}
._a{width:4.811947pt;}
._7{width:5.920000pt;}
._8{width:10.255360pt;}
._b{width:35.165440pt;}
._c{width:36.167467pt;}
._9{width:81.296000pt;}
._3{width:113.296000pt;}
._2{width:585.722667pt;}
.fs6{font-size:2.560000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs9{font-size:50.595937pt;}
.fs3{font-size:53.120000pt;}
.fs8{font-size:55.992837pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:69.120000pt;}
.fsb{font-size:80.000000pt;}
.fs0{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:3.200000pt;}
.y2a{bottom:3.520000pt;}
.ye7{bottom:3.546667pt;}
.ydb{bottom:3.560000pt;}
.y57{bottom:3.680000pt;}
.y1aa{bottom:4.160000pt;}
.y37{bottom:5.280000pt;}
.y28{bottom:5.440000pt;}
.y1fe{bottom:5.480000pt;}
.y13a{bottom:5.600000pt;}
.y220{bottom:7.360000pt;}
.y218{bottom:7.520000pt;}
.y131{bottom:11.040000pt;}
.y133{bottom:11.080000pt;}
.y80{bottom:18.400000pt;}
.y43{bottom:18.426667pt;}
.y244{bottom:18.440000pt;}
.y35{bottom:18.560000pt;}
.yb9{bottom:18.586667pt;}
.y52{bottom:18.600000pt;}
.y216{bottom:20.320000pt;}
.y252{bottom:20.480000pt;}
.y23a{bottom:20.506667pt;}
.y3a{bottom:29.760000pt;}
.y32{bottom:29.920000pt;}
.y27{bottom:29.946667pt;}
.y1f6{bottom:29.960000pt;}
.y7c{bottom:33.440000pt;}
.y42{bottom:33.466667pt;}
.y243{bottom:33.480000pt;}
.y34{bottom:33.600000pt;}
.y161{bottom:33.626667pt;}
.yce{bottom:33.640000pt;}
.yd6{bottom:35.520000pt;}
.y235{bottom:42.880000pt;}
.y215{bottom:42.906667pt;}
.y239{bottom:43.066667pt;}
.y7b{bottom:48.480000pt;}
.y41{bottom:48.506667pt;}
.y1bc{bottom:48.520000pt;}
.yb7{bottom:48.640000pt;}
.y1a5{bottom:48.666667pt;}
.y12d{bottom:50.400000pt;}
.y1a3{bottom:50.720000pt;}
.y4a{bottom:51.360000pt;}
.y202{bottom:54.266667pt;}
.y14b{bottom:54.720000pt;}
.yb3{bottom:58.080000pt;}
.y203{bottom:58.880000pt;}
.yd5{bottom:60.000000pt;}
.y59{bottom:60.320000pt;}
.y7a{bottom:63.520000pt;}
.y40{bottom:63.546667pt;}
.yb0{bottom:63.560000pt;}
.y23c{bottom:64.320000pt;}
.y12b{bottom:64.800000pt;}
.y144{bottom:65.480000pt;}
.y49{bottom:66.400000pt;}
.y219{bottom:66.720000pt;}
.y48{bottom:69.760000pt;}
.y12c{bottom:74.880000pt;}
.y1f1{bottom:77.600000pt;}
.y7f{bottom:78.400000pt;}
.y3f{bottom:78.426667pt;}
.y210{bottom:78.440000pt;}
.y79{bottom:78.560000pt;}
.y1ab{bottom:78.600000pt;}
.y201{bottom:78.746667pt;}
.yd4{bottom:79.040000pt;}
.y1b8{bottom:79.360000pt;}
.y153{bottom:80.320000pt;}
.y213{bottom:80.480000pt;}
.y47{bottom:81.280000pt;}
.yff{bottom:81.600000pt;}
.y46{bottom:84.640000pt;}
.y143{bottom:89.800000pt;}
.yae{bottom:93.120000pt;}
.y78{bottom:93.440000pt;}
.y3e{bottom:93.466667pt;}
.y20f{bottom:93.480000pt;}
.yb6{bottom:93.600000pt;}
.y1b3{bottom:93.640000pt;}
.y162{bottom:96.000000pt;}
.y181{bottom:96.320000pt;}
.y45{bottom:96.640000pt;}
.y98{bottom:97.120000pt;}
.y1f0{bottom:97.280000pt;}
.y217{bottom:99.840000pt;}
.y152{bottom:104.840000pt;}
.y212{bottom:104.960000pt;}
.yad{bottom:108.160000pt;}
.y7e{bottom:108.480000pt;}
.y3d{bottom:108.506667pt;}
.y192{bottom:108.520000pt;}
.yc4{bottom:108.640000pt;}
.yb5{bottom:108.666667pt;}
.y1b2{bottom:108.680000pt;}
.y1b7{bottom:109.920000pt;}
.y23b{bottom:110.080000pt;}
.y180{bottom:111.360000pt;}
.y97{bottom:112.160000pt;}
.yfe{bottom:112.640000pt;}
.y1d4{bottom:113.760000pt;}
.y17f{bottom:114.720000pt;}
.y14a{bottom:116.640000pt;}
.y1ef{bottom:116.800000pt;}
.y214{bottom:119.520000pt;}
.yac{bottom:123.200000pt;}
.yc6{bottom:123.520000pt;}
.y3c{bottom:123.546667pt;}
.y191{bottom:123.560000pt;}
.y17e{bottom:126.720000pt;}
.y96{bottom:127.200000pt;}
.y255{bottom:131.040000pt;}
.yfd{bottom:132.320000pt;}
.y1d3{bottom:133.280000pt;}
.y149{bottom:136.160000pt;}
.y1ee{bottom:136.480000pt;}
.y44{bottom:136.800000pt;}
.yab{bottom:138.240000pt;}
.y1f8{bottom:138.400000pt;}
.yc5{bottom:138.560000pt;}
.y77{bottom:138.586667pt;}
.y190{bottom:138.600000pt;}
.y238{bottom:140.640000pt;}
.y95{bottom:142.240000pt;}
.y160{bottom:145.600000pt;}
.y254{bottom:147.840000pt;}
.y200{bottom:149.600000pt;}
.y3b{bottom:150.080000pt;}
.yfc{bottom:151.840000pt;}
.y1d2{bottom:152.960000pt;}
.yaa{bottom:153.120000pt;}
.y76{bottom:153.466667pt;}
.y1a2{bottom:153.600000pt;}
.yb4{bottom:153.626667pt;}
.y18f{bottom:153.640000pt;}
.y148{bottom:155.840000pt;}
.y1ed{bottom:156.026667pt;}
.y94{bottom:157.120000pt;}
.yd3{bottom:158.746667pt;}
.y12a{bottom:159.386667pt;}
.y17d{bottom:160.186667pt;}
.y195{bottom:160.826667pt;}
.ya9{bottom:168.160000pt;}
.y20d{bottom:168.480000pt;}
.y75{bottom:168.506667pt;}
.y18e{bottom:168.520000pt;}
.y1a1{bottom:168.640000pt;}
.y1b1{bottom:168.680000pt;}
.yfb{bottom:171.546667pt;}
.y1d1{bottom:172.506667pt;}
.y211{bottom:174.586667pt;}
.y147{bottom:175.386667pt;}
.y1ec{bottom:175.706667pt;}
.y253{bottom:178.586667pt;}
.y129{bottom:178.906667pt;}
.ya8{bottom:183.200000pt;}
.y1a0{bottom:183.520000pt;}
.y74{bottom:183.546667pt;}
.y18d{bottom:183.560000pt;}
.y1b6{bottom:185.626667pt;}
.y93{bottom:190.906667pt;}
.yfa{bottom:191.066667pt;}
.y15f{bottom:191.226667pt;}
.y1d0{bottom:192.186667pt;}
.y1eb{bottom:195.226667pt;}
.y237{bottom:195.866667pt;}
.ya7{bottom:198.266667pt;}
.y19f{bottom:198.560000pt;}
.y73{bottom:198.586667pt;}
.y18c{bottom:198.600000pt;}
.y17c{bottom:205.786667pt;}
.y92{bottom:205.946667pt;}
.y146{bottom:206.106667pt;}
.y251{bottom:209.306667pt;}
.yf9{bottom:210.746667pt;}
.y23{bottom:210.906667pt;}
.y1cf{bottom:211.706667pt;}
.ya6{bottom:213.146667pt;}
.y72{bottom:213.466667pt;}
.y20c{bottom:213.626667pt;}
.y18b{bottom:213.640000pt;}
.y1ea{bottom:214.906667pt;}
.y128{bottom:218.106667pt;}
.y91{bottom:220.826667pt;}
.yb2{bottom:223.866667pt;}
.y22{bottom:227.386667pt;}
.ya5{bottom:228.186667pt;}
.y71{bottom:228.506667pt;}
.y18a{bottom:228.520000pt;}
.y19e{bottom:228.680000pt;}
.yf8{bottom:230.266667pt;}
.y1ce{bottom:231.386667pt;}
.yd2{bottom:234.266667pt;}
.y1e9{bottom:234.426667pt;}
.y1b5{bottom:235.226667pt;}
.y15e{bottom:236.986667pt;}
.y127{bottom:237.786667pt;}
.y236{bottom:241.466667pt;}
.ya4{bottom:243.226667pt;}
.y70{bottom:243.546667pt;}
.y189{bottom:243.560000pt;}
.y21{bottom:244.026667pt;}
.y1ff{bottom:248.026667pt;}
.yf7{bottom:249.946667pt;}
.y90{bottom:254.426667pt;}
.y1b4{bottom:254.906667pt;}
.y17b{bottom:255.386667pt;}
.y126{bottom:257.306667pt;}
.ya3{bottom:258.266667pt;}
.y6f{bottom:258.586667pt;}
.y188{bottom:258.600000pt;}
.y20{bottom:260.506667pt;}
.y250{bottom:264.346667pt;}
.y8f{bottom:269.466667pt;}
.y234{bottom:272.186667pt;}
.ya2{bottom:273.146667pt;}
.y6e{bottom:273.466667pt;}
.y20b{bottom:273.626667pt;}
.y187{bottom:273.640000pt;}
.y17a{bottom:274.906667pt;}
.y1b0{bottom:275.560000pt;}
.y125{bottom:276.986667pt;}
.y1f{bottom:277.146667pt;}
.y145{bottom:281.786667pt;}
.y15d{bottom:282.586667pt;}
.yd1{bottom:283.866667pt;}
.y8e{bottom:284.506667pt;}
.y1ae{bottom:285.466667pt;}
.y39{bottom:285.786667pt;}
.ya1{bottom:288.186667pt;}
.y6d{bottom:288.506667pt;}
.y186{bottom:288.520000pt;}
.y19d{bottom:288.680000pt;}
.yf6{bottom:289.146667pt;}
.y1cd{bottom:292.026667pt;}
.y1e{bottom:293.626667pt;}
.y179{bottom:294.586667pt;}
.y1e8{bottom:295.226667pt;}
.y124{bottom:296.506667pt;}
.y20e{bottom:299.226667pt;}
.y8d{bottom:299.546667pt;}
.y1af{bottom:300.040000pt;}
.ya0{bottom:303.226667pt;}
.y6c{bottom:303.546667pt;}
.y185{bottom:303.560000pt;}
.yb1{bottom:304.026667pt;}
.yf5{bottom:308.666667pt;}
.y24f{bottom:310.106667pt;}
.y1cc{bottom:311.706667pt;}
.y142{bottom:312.506667pt;}
.y15c{bottom:313.306667pt;}
.y178{bottom:314.106667pt;}
.y8c{bottom:314.586667pt;}
.y1e7{bottom:314.746667pt;}
.y123{bottom:316.186667pt;}
.y9f{bottom:318.266667pt;}
.y20a{bottom:318.586667pt;}
.y184{bottom:318.600000pt;}
.y6b{bottom:318.626667pt;}
.yd0{bottom:319.226667pt;}
.yaf{bottom:319.706667pt;}
.y1d{bottom:320.826667pt;}
.y233{bottom:327.226667pt;}
.yf4{bottom:328.346667pt;}
.y8b{bottom:329.466667pt;}
.y1cb{bottom:331.226667pt;}
.y9e{bottom:333.146667pt;}
.y6a{bottom:333.506667pt;}
.y209{bottom:333.626667pt;}
.y19c{bottom:333.640000pt;}
.y183{bottom:333.666667pt;}
.y177{bottom:333.786667pt;}
.y1e6{bottom:334.426667pt;}
.ycf{bottom:334.906667pt;}
.y38{bottom:335.226667pt;}
.y122{bottom:335.706667pt;}
.y1c{bottom:337.306667pt;}
.y8a{bottom:344.506667pt;}
.yf3{bottom:347.866667pt;}
.y9d{bottom:348.186667pt;}
.y208{bottom:348.506667pt;}
.y69{bottom:348.546667pt;}
.y19b{bottom:348.680000pt;}
.ycd{bottom:350.426667pt;}
.y36{bottom:350.906667pt;}
.y176{bottom:353.306667pt;}
.y1b{bottom:353.946667pt;}
.y121{bottom:355.386667pt;}
.y24e{bottom:355.706667pt;}
.y15b{bottom:358.906667pt;}
.y89{bottom:359.546667pt;}
.y9c{bottom:363.226667pt;}
.y207{bottom:363.546667pt;}
.y19a{bottom:363.560000pt;}
.y68{bottom:363.586667pt;}
.yf2{bottom:367.546667pt;}
.y1fd{bottom:368.666667pt;}
.y1ca{bottom:370.426667pt;}
.y1a{bottom:370.946667pt;}
.y232{bottom:373.026667pt;}
.y1e5{bottom:373.666667pt;}
.y88{bottom:374.586667pt;}
.y120{bottom:374.946667pt;}
.y9b{bottom:378.266667pt;}
.y199{bottom:378.600000pt;}
.y67{bottom:378.626667pt;}
.y175{bottom:384.066667pt;}
.yf1{bottom:387.106667pt;}
.y19{bottom:389.026667pt;}
.y87{bottom:389.466667pt;}
.y1c9{bottom:390.146667pt;}
.y231{bottom:392.546667pt;}
.y9a{bottom:393.146667pt;}
.y1e4{bottom:393.186667pt;}
.y66{bottom:393.506667pt;}
.y198{bottom:393.640000pt;}
.y11f{bottom:394.626667pt;}
.y81{bottom:395.426667pt;}
.ycc{bottom:396.226667pt;}
.y24d{bottom:401.346667pt;}
.y174{bottom:403.746667pt;}
.y15a{bottom:404.706667pt;}
.y206{bottom:404.866667pt;}
.yf0{bottom:406.786667pt;}
.y99{bottom:408.226667pt;}
.y65{bottom:408.546667pt;}
.y197{bottom:408.680000pt;}
.y18{bottom:409.026667pt;}
.y1c8{bottom:409.666667pt;}
.y11e{bottom:414.146667pt;}
.y1fc{bottom:418.306667pt;}
.y141{bottom:421.986667pt;}
.y86{bottom:423.266667pt;}
.y196{bottom:423.560000pt;}
.y64{bottom:423.586667pt;}
.y1e3{bottom:423.906667pt;}
.yef{bottom:426.306667pt;}
.ycb{bottom:426.946667pt;}
.y1c7{bottom:429.346667pt;}
.y17{bottom:431.266667pt;}
.y24c{bottom:432.066667pt;}
.y11d{bottom:433.826667pt;}
.y159{bottom:435.266667pt;}
.y230{bottom:438.146667pt;}
.y85{bottom:438.306667pt;}
.y63{bottom:438.626667pt;}
.yca{bottom:442.466667pt;}
.y173{bottom:442.946667pt;}
.y1e2{bottom:443.426667pt;}
.yee{bottom:445.986667pt;}
.y140{bottom:452.706667pt;}
.y84{bottom:453.186667pt;}
.y11c{bottom:453.346667pt;}
.y62{bottom:453.506667pt;}
.y16{bottom:453.666667pt;}
.y22f{bottom:457.826667pt;}
.y172{bottom:462.466667pt;}
.y1e1{bottom:463.106667pt;}
.yed{bottom:465.506667pt;}
.y83{bottom:468.226667pt;}
.y61{bottom:468.546667pt;}
.y13f{bottom:472.226667pt;}
.y11b{bottom:473.026667pt;}
.yc9{bottom:473.186667pt;}
.y15{bottom:475.906667pt;}
.y24b{bottom:477.826667pt;}
.y1fb{bottom:478.946667pt;}
.y158{bottom:481.026667pt;}
.y171{bottom:482.146667pt;}
.y1e0{bottom:482.626667pt;}
.y82{bottom:483.266667pt;}
.y60{bottom:483.586667pt;}
.yec{bottom:485.186667pt;}
.y22e{bottom:488.546667pt;}
.yc8{bottom:488.866667pt;}
.y1c6{bottom:489.986667pt;}
.y11a{bottom:492.546667pt;}
.y14{bottom:498.306667pt;}
.y5f{bottom:498.626667pt;}
.y13e{bottom:502.946667pt;}
.yeb{bottom:504.706667pt;}
.y22d{bottom:508.066667pt;}
.y1c5{bottom:509.506667pt;}
.y157{bottom:511.746667pt;}
.y119{bottom:512.226667pt;}
.y170{bottom:512.706667pt;}
.y5e{bottom:513.506667pt;}
.y13{bottom:520.546667pt;}
.y24a{bottom:523.426667pt;}
.yea{bottom:524.386667pt;}
.y1fa{bottom:528.546667pt;}
.y5d{bottom:528.573333pt;}
.y1c4{bottom:529.186667pt;}
.y118{bottom:531.746667pt;}
.y13d{bottom:533.666667pt;}
.y22c{bottom:538.786667pt;}
.y12{bottom:542.946667pt;}
.y1df{bottom:543.266667pt;}
.y16f{bottom:543.426667pt;}
.y5c{bottom:543.613333pt;}
.ye9{bottom:543.906667pt;}
.y1c3{bottom:548.706667pt;}
.y117{bottom:551.426667pt;}
.y13c{bottom:553.186667pt;}
.y22b{bottom:558.306667pt;}
.y5b{bottom:558.653333pt;}
.y16e{bottom:562.946667pt;}
.ye8{bottom:563.586667pt;}
.y1c2{bottom:568.386667pt;}
.y249{bottom:569.026667pt;}
.y11{bottom:570.466667pt;}
.y116{bottom:570.946667pt;}
.y156{bottom:572.386667pt;}
.y13b{bottom:572.866667pt;}
.y1de{bottom:573.986667pt;}
.y16d{bottom:582.626667pt;}
.ye6{bottom:583.106667pt;}
.y1c1{bottom:587.933333pt;}
.y22a{bottom:589.053333pt;}
.y1f9{bottom:589.213333pt;}
.y115{bottom:590.653333pt;}
.yc7{bottom:594.493333pt;}
.y248{bottom:599.773333pt;}
.y16c{bottom:602.173333pt;}
.y33{bottom:602.333333pt;}
.ye5{bottom:602.813333pt;}
.y139{bottom:603.453333pt;}
.y1dd{bottom:604.733333pt;}
.y1ad{bottom:605.053333pt;}
.y10{bottom:605.853333pt;}
.y1c0{bottom:607.613333pt;}
.y229{bottom:608.573333pt;}
.yc3{bottom:610.173333pt;}
.y155{bottom:618.013333pt;}
.y16b{bottom:621.853333pt;}
.ye4{bottom:622.333333pt;}
.y138{bottom:623.133333pt;}
.y194{bottom:626.653333pt;}
.y1bf{bottom:627.133333pt;}
.y114{bottom:629.853333pt;}
.y58{bottom:631.133333pt;}
.yf{bottom:633.373333pt;}
.y1dc{bottom:635.293333pt;}
.y1f7{bottom:638.813333pt;}
.y228{bottom:639.293333pt;}
.y16a{bottom:641.373333pt;}
.ye3{bottom:642.013333pt;}
.y247{bottom:645.373333pt;}
.y31{bottom:647.933333pt;}
.y56{bottom:648.573333pt;}
.y113{bottom:649.373333pt;}
.y137{bottom:653.853333pt;}
.y1db{bottom:654.973333pt;}
.y227{bottom:658.973333pt;}
.ye2{bottom:661.533333pt;}
.y55{bottom:666.173333pt;}
.y112{bottom:669.053333pt;}
.y136{bottom:673.373333pt;}
.ye{bottom:676.093333pt;}
.y193{bottom:676.253333pt;}
.y1ac{bottom:680.733333pt;}
.ye1{bottom:681.213333pt;}
.y1be{bottom:687.773333pt;}
.y111{bottom:688.573333pt;}
.y226{bottom:689.533333pt;}
.y246{bottom:691.133333pt;}
.y154{bottom:693.693333pt;}
.y182{bottom:695.773333pt;}
.y30{bottom:697.533333pt;}
.ye0{bottom:700.733333pt;}
.y135{bottom:704.093333pt;}
.y110{bottom:708.253333pt;}
.y225{bottom:709.213333pt;}
.y2f{bottom:713.213333pt;}
.y151{bottom:713.373333pt;}
.y54{bottom:715.773333pt;}
.ydf{bottom:720.413333pt;}
.yd{bottom:722.653333pt;}
.y10f{bottom:727.773333pt;}
.y1a9{bottom:730.333333pt;}
.y1da{bottom:730.653333pt;}
.y245{bottom:736.733333pt;}
.y224{bottom:739.773333pt;}
.yde{bottom:739.933333pt;}
.y10e{bottom:747.453333pt;}
.y134{bottom:749.693333pt;}
.yc{bottom:758.013333pt;}
.y223{bottom:759.453333pt;}
.ydd{bottom:759.613333pt;}
.yc2{bottom:760.893333pt;}
.y169{bottom:762.173333pt;}
.y1bd{bottom:763.453333pt;}
.y53{bottom:765.373333pt;}
.y10d{bottom:766.973333pt;}
.ydc{bottom:779.133333pt;}
.y1d9{bottom:780.253333pt;}
.yb{bottom:780.413333pt;}
.y205{bottom:780.573333pt;}
.y168{bottom:781.693333pt;}
.y242{bottom:782.493333pt;}
.y51{bottom:782.653333pt;}
.y10c{bottom:786.653333pt;}
.y1f5{bottom:789.373333pt;}
.y222{bottom:790.173333pt;}
.yc1{bottom:791.613333pt;}
.y1bb{bottom:794.173333pt;}
.yda{bottom:798.813333pt;}
.y1d8{bottom:799.773333pt;}
.y132{bottom:799.933333pt;}
.y167{bottom:801.413333pt;}
.ya{bottom:802.693333pt;}
.y10b{bottom:806.213333pt;}
.yc0{bottom:807.333333pt;}
.y221{bottom:809.733333pt;}
.y50{bottom:813.413333pt;}
.y1d7{bottom:819.493333pt;}
.y166{bottom:820.933333pt;}
.y1a8{bottom:821.093333pt;}
.ybf{bottom:823.013333pt;}
.y9{bottom:825.093333pt;}
.y10a{bottom:825.893333pt;}
.y241{bottom:828.133333pt;}
.yd9{bottom:829.413333pt;}
.y204{bottom:830.213333pt;}
.y4f{bottom:830.693333pt;}
.y150{bottom:837.893333pt;}
.y1d6{bottom:839.013333pt;}
.y21f{bottom:840.453333pt;}
.y165{bottom:840.613333pt;}
.y109{bottom:845.413333pt;}
.y8{bottom:847.333333pt;}
.ybe{bottom:853.573333pt;}
.y1d5{bottom:858.693333pt;}
.y21e{bottom:859.973333pt;}
.y164{bottom:860.133333pt;}
.y4e{bottom:861.413333pt;}
.y108{bottom:865.093333pt;}
.y14f{bottom:868.613333pt;}
.y7{bottom:869.733333pt;}
.y1ba{bottom:869.893333pt;}
.y1a7{bottom:870.533333pt;}
.y240{bottom:873.893333pt;}
.y1f4{bottom:878.213333pt;}
.y130{bottom:880.933333pt;}
.ybd{bottom:884.293333pt;}
.y107{bottom:884.613333pt;}
.y1b9{bottom:889.413333pt;}
.yd8{bottom:890.213333pt;}
.y21d{bottom:890.693333pt;}
.y6{bottom:891.973333pt;}
.y1f3{bottom:897.893333pt;}
.y14e{bottom:899.173333pt;}
.ybc{bottom:899.973333pt;}
.y12f{bottom:900.613333pt;}
.y106{bottom:904.293333pt;}
.y7d{bottom:905.893333pt;}
.y21c{bottom:910.213333pt;}
.y5{bottom:914.373333pt;}
.y1f2{bottom:917.413333pt;}
.y23f{bottom:919.493333pt;}
.yd7{bottom:920.773333pt;}
.y105{bottom:923.813333pt;}
.y2e{bottom:927.973333pt;}
.y2d{bottom:928.613333pt;}
.y14d{bottom:929.893333pt;}
.ybb{bottom:930.533333pt;}
.y1a6{bottom:931.333333pt;}
.y4{bottom:936.613333pt;}
.y21b{bottom:940.933333pt;}
.y4d{bottom:941.573333pt;}
.y104{bottom:943.493333pt;}
.y2c{bottom:944.293333pt;}
.y12e{bottom:946.213333pt;}
.y23e{bottom:950.213333pt;}
.y4c{bottom:959.013333pt;}
.y2b{bottom:959.973333pt;}
.y14c{bottom:960.613333pt;}
.y103{bottom:963.013333pt;}
.y3{bottom:964.133333pt;}
.y163{bottom:965.893333pt;}
.y29{bottom:975.653333pt;}
.y4b{bottom:976.293333pt;}
.yba{bottom:980.133333pt;}
.y1a4{bottom:980.773333pt;}
.y102{bottom:982.693333pt;}
.y21a{bottom:991.173333pt;}
.y26{bottom:991.973333pt;}
.y23d{bottom:995.813333pt;}
.y101{bottom:1002.213333pt;}
.y2{bottom:1004.613333pt;}
.yb8{bottom:1010.853333pt;}
.y100{bottom:1021.920000pt;}
.y25{bottom:1045.120000pt;}
.y1{bottom:1045.280000pt;}
.y24{bottom:1062.080000pt;}
.h11{height:1.931250pt;}
.hc{height:14.880000pt;}
.h2b{height:14.912000pt;}
.he{height:15.040000pt;}
.h1e{height:16.640000pt;}
.h23{height:16.800000pt;}
.h22{height:16.960000pt;}
.h36{height:18.880000pt;}
.h38{height:18.912000pt;}
.h30{height:19.040000pt;}
.h37{height:19.072000pt;}
.h1d{height:26.645625pt;}
.h1f{height:29.920000pt;}
.h2a{height:29.952000pt;}
.h20{height:30.080000pt;}
.h21{height:30.112000pt;}
.h28{height:34.265900pt;}
.hf{height:35.975313pt;}
.h9{height:36.210938pt;}
.h15{height:36.986875pt;}
.h25{height:37.007812pt;}
.h1b{height:37.920930pt;}
.h46{height:40.073438pt;}
.h16{height:40.085625pt;}
.h2d{height:40.841250pt;}
.hd{height:40.955312pt;}
.h17{height:42.240690pt;}
.h3{height:44.418750pt;}
.h14{height:44.960000pt;}
.h3d{height:44.992000pt;}
.h3e{height:45.120000pt;}
.h2f{height:45.152000pt;}
.h1c{height:45.396250pt;}
.h19{height:48.800000pt;}
.ha{height:48.832000pt;}
.h13{height:48.960000pt;}
.h49{height:48.992000pt;}
.h7{height:52.134375pt;}
.hb{height:52.143750pt;}
.h4d{height:52.990313pt;}
.h8{height:53.535000pt;}
.h51{height:54.400000pt;}
.h50{height:54.432000pt;}
.h6{height:57.787500pt;}
.h5{height:59.340000pt;}
.h35{height:60.000000pt;}
.h44{height:60.032000pt;}
.h33{height:60.351562pt;}
.h10{height:63.360000pt;}
.h31{height:74.880000pt;}
.h3f{height:74.912000pt;}
.h3b{height:75.040000pt;}
.h27{height:75.072000pt;}
.h32{height:78.912000pt;}
.h2{height:80.629687pt;}
.h4c{height:89.920000pt;}
.h48{height:90.080000pt;}
.h45{height:90.112000pt;}
.h39{height:93.952000pt;}
.h4{height:96.562500pt;}
.h4b{height:97.792000pt;}
.h40{height:104.960000pt;}
.h2e{height:104.992000pt;}
.h3a{height:108.832000pt;}
.h41{height:120.000000pt;}
.h34{height:120.032000pt;}
.h4f{height:123.840000pt;}
.h3c{height:123.872000pt;}
.h1a{height:134.906667pt;}
.h4a{height:149.920000pt;}
.h2c{height:150.080000pt;}
.h29{height:165.146667pt;}
.h12{height:214.106667pt;}
.h18{height:250.786667pt;}
.h47{height:318.946667pt;}
.h42{height:345.026667pt;}
.h4e{height:375.066667pt;}
.h43{height:465.186667pt;}
.h26{height:509.666667pt;}
.h24{height:570.013333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:56.320000pt;}
.w7{width:56.352000pt;}
.w9{width:56.480000pt;}
.wc{width:132.352000pt;}
.w5{width:170.426667pt;}
.we{width:289.826667pt;}
.wf{width:292.986667pt;}
.w4{width:341.506667pt;}
.wd{width:582.813333pt;}
.w6{width:683.813333pt;}
.w3{width:699.493333pt;}
.wb{width:715.173333pt;}
.wa{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.200000pt;}
.x1e{left:15.040000pt;}
.x1c{left:20.960000pt;}
.x34{left:31.200000pt;}
.x19{left:46.440000pt;}
.x7{left:47.999988pt;}
.x2b{left:51.999988pt;}
.x15{left:55.840000pt;}
.x28{left:69.312000pt;}
.x1d{left:112.832000pt;}
.x31{left:139.226667pt;}
.x16{left:150.426667pt;}
.x35{left:162.586667pt;}
.x33{left:166.106667pt;}
.x1f{left:169.946667pt;}
.x2c{left:180.346667pt;}
.x2e{left:198.906667pt;}
.x36{left:205.626667pt;}
.x4{left:212.026655pt;}
.x18{left:226.906667pt;}
.x5{left:229.306655pt;}
.x2a{left:240.026655pt;}
.x6{left:256.826655pt;}
.x20{left:284.066667pt;}
.x13{left:293.026655pt;}
.x3{left:311.746655pt;}
.x1b{left:322.146667pt;}
.x32{left:323.586667pt;}
.x21{left:341.026667pt;}
.x27{left:374.786667pt;}
.x2{left:396.866655pt;}
.x17{left:398.146667pt;}
.x22{left:455.133333pt;}
.x2d{left:470.173333pt;}
.x2f{left:489.853333pt;}
.x23{left:512.093333pt;}
.x1{left:536.413322pt;}
.xd{left:540.093322pt;}
.xf{left:542.333322pt;}
.x12{left:549.053322pt;}
.x10{left:561.693322pt;}
.x30{left:563.013333pt;}
.x11{left:565.373322pt;}
.x1a{left:569.213333pt;}
.xe{left:579.293322pt;}
.xc{left:589.533322pt;}
.xb{left:600.253322pt;}
.x8{left:607.333322pt;}
.x9{left:609.893322pt;}
.x24{left:626.213333pt;}
.x29{left:648.133333pt;}
.x25{left:683.173333pt;}
.x26{left:692.133333pt;}
.xa{left:745.893322pt;}
}




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