
    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_3177b18d030a42eddec4b030.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_6a856bf0f686d39a87768b0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991699;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_ae9463aee71c9438608fa7c7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187500;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_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ea3f3c7fffebab09b8661e8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.991699;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_263592deb0b5acd146f1053c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.187500;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_98135b6dc36f5937f5ef8697.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_ef84d21b31941599ba8d85ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.979004;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_3f54ec160006bece625412ee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010742;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_017c4e82f510bf0bab546442.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010742;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:ffb;src:url('chunks/assets/font_306f4a9dbdb5a2fa3b08d061.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.679688;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);}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.ls5{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.714000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls26{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.262200px;}
.ls16{letter-spacing:-0.210000px;}
.ls14{letter-spacing:-0.180000px;}
.ls17{letter-spacing:-0.166800px;}
.ls13{letter-spacing:-0.164400px;}
.ls20{letter-spacing:-0.152400px;}
.ls1e{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.049200px;}
.ls12{letter-spacing:-0.048960px;}
.ls2e{letter-spacing:-0.030000px;}
.ls2d{letter-spacing:-0.024000px;}
.ls2c{letter-spacing:-0.006000px;}
.ls4{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.006000px;}
.ls2b{letter-spacing:0.012000px;}
.ls9{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.028080px;}
.ls23{letter-spacing:0.108000px;}
.ls25{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.164160px;}
.ls6{letter-spacing:0.178800px;}
.ls3{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.228000px;}
.ls8{letter-spacing:0.262200px;}
.ls2a{letter-spacing:0.299280px;}
.ls1{letter-spacing:0.305280px;}
.ls18{letter-spacing:0.328200px;}
.ls11{letter-spacing:0.328320px;}
.ls1f{letter-spacing:0.345600px;}
.ls10{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.377400px;}
.lse{letter-spacing:0.425280px;}
.lsd{letter-spacing:0.485280px;}
.ls28{letter-spacing:0.900000px;}
.lsc{letter-spacing:1.458720px;}
.lsb{letter-spacing:1.498080px;}
.lsa{letter-spacing:1.500000px;}
.ls21{letter-spacing:2.880000px;}
.ls27{letter-spacing:3.600000px;}
.ls0{letter-spacing:9.360000px;}
.ls1b{letter-spacing:16.560000px;}
.ls1c{letter-spacing:24.480000px;}
.ls22{letter-spacing:847.596000px;}
.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;}
}
.ws3{word-spacing:-66.240000px;}
.ws1b{word-spacing:-21.088080px;}
.ws1a{word-spacing:-21.060000px;}
.ws24{word-spacing:-17.424000px;}
.ws9{word-spacing:-16.937400px;}
.ws1d{word-spacing:-16.905600px;}
.ws17{word-spacing:-16.888200px;}
.ws5{word-spacing:-16.822200px;}
.ws2{word-spacing:-16.738800px;}
.ws4{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.511040px;}
.wsb{word-spacing:-16.510800px;}
.ws1c{word-spacing:-16.450800px;}
.ws1f{word-spacing:-16.407600px;}
.ws15{word-spacing:-16.395600px;}
.ws23{word-spacing:-16.393200px;}
.ws16{word-spacing:-16.350000px;}
.ws19{word-spacing:-16.297800px;}
.ws18{word-spacing:-16.102200px;}
.ws1{word-spacing:-15.840000px;}
.ws22{word-spacing:-14.940000px;}
.ws21{word-spacing:-13.860000px;}
.ws20{word-spacing:-13.500000px;}
.ws1e{word-spacing:-12.420000px;}
.ws0{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.000000px;}
.ws42{word-spacing:-2.124000px;}
.ws26{word-spacing:-0.924000px;}
.ws44{word-spacing:-0.792000px;}
.ws45{word-spacing:-0.726000px;}
.ws43{word-spacing:-0.720000px;}
.ws46{word-spacing:-0.396000px;}
.ws25{word-spacing:-0.336000px;}
.ws41{word-spacing:-0.264000px;}
.wsa{word-spacing:-0.252636px;}
.ws38{word-spacing:-0.198000px;}
.ws7{word-spacing:0.000000px;}
.ws8{word-spacing:0.180000px;}
.ws37{word-spacing:0.198000px;}
.ws47{word-spacing:0.240000px;}
.ws3c{word-spacing:0.264000px;}
.ws3e{word-spacing:0.330000px;}
.ws39{word-spacing:0.720000px;}
.ws34{word-spacing:4.242000px;}
.ws35{word-spacing:4.374000px;}
.ws36{word-spacing:4.440000px;}
.ws2c{word-spacing:5.040000px;}
.ws2a{word-spacing:5.496000px;}
.ws2b{word-spacing:5.628000px;}
.ws28{word-spacing:5.646000px;}
.ws27{word-spacing:5.694000px;}
.ws29{word-spacing:5.760000px;}
.ws2d{word-spacing:5.832000px;}
.ws3d{word-spacing:8.544000px;}
.ws40{word-spacing:8.676000px;}
.ws3f{word-spacing:8.742000px;}
.wsf{word-spacing:12.186000px;}
.ws13{word-spacing:12.318000px;}
.wsc{word-spacing:12.384000px;}
.ws12{word-spacing:12.852000px;}
.ws11{word-spacing:12.918000px;}
.wsd{word-spacing:12.960000px;}
.ws10{word-spacing:13.050000px;}
.ws32{word-spacing:13.578000px;}
.wse{word-spacing:13.680000px;}
.ws2f{word-spacing:14.244000px;}
.ws30{word-spacing:14.310000px;}
.ws31{word-spacing:14.376000px;}
.ws2e{word-spacing:14.400000px;}
.ws33{word-spacing:14.442000px;}
.ws3b{word-spacing:14.904000px;}
.ws3a{word-spacing:28.680000px;}
._17{margin-left:-5.114580px;}
._16{margin-left:-4.000470px;}
._14{margin-left:-2.568083px;}
._1{margin-left:-1.457412px;}
._0{width:1.075800px;}
._d{width:2.172495px;}
._9{width:3.179388px;}
._c{width:4.264386px;}
._4{width:6.192000px;}
._3{width:7.632000px;}
._8{width:8.714905px;}
._7{width:9.946560px;}
._f{width:11.421120px;}
._e{width:12.850825px;}
._1b{width:14.109120px;}
._1a{width:15.301572px;}
._10{width:17.686212px;}
._11{width:18.898908px;}
._15{width:20.713026px;}
._24{width:21.743695px;}
._19{width:22.786560px;}
._18{width:24.177732px;}
._25{width:25.296960px;}
._23{width:26.297280px;}
._22{width:27.555972px;}
._21{width:28.982678px;}
._13{width:30.138803px;}
._12{width:31.199437px;}
._6{width:33.317412px;}
._5{width:34.344000px;}
._29{width:35.372160px;}
._2a{width:36.374880px;}
._20{width:38.419200px;}
._1f{width:40.207812px;}
._26{width:41.929920px;}
._1c{width:43.254720px;}
._1d{width:44.314560px;}
._1e{width:45.411625px;}
._2d{width:51.677760px;}
._2e{width:53.024975px;}
._2b{width:71.737920px;}
._2c{width:72.790477px;}
._27{width:73.791360px;}
._28{width:74.840292px;}
._a{width:79.024320px;}
._b{width:80.102450px;}
._2{width:112.752000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,32,96);}
.fc7{color:rgb(34,31,31);}
.fc5{color:rgb(0,19,98);}
.fc1{color:rgb(0,19,98);}
.fc4{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs9{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y159{bottom:3.600000px;}
.y24{bottom:3.780000px;}
.y160{bottom:3.960000px;}
.y15b{bottom:4.320000px;}
.y15f{bottom:4.500000px;}
.y21d{bottom:92.590500px;}
.y22{bottom:102.313500px;}
.y168{bottom:103.860000px;}
.y1fb{bottom:104.940000px;}
.y142{bottom:106.200000px;}
.y111{bottom:107.280000px;}
.y7f{bottom:108.720000px;}
.y115{bottom:112.680000px;}
.y1a8{bottom:116.280000px;}
.y167{bottom:124.020000px;}
.y1fa{bottom:125.460000px;}
.y4e{bottom:126.720000px;}
.y110{bottom:127.800000px;}
.y7e{bottom:129.240000px;}
.ye1{bottom:130.500000px;}
.yc2{bottom:131.040000px;}
.y12d{bottom:132.300000px;}
.y114{bottom:132.480000px;}
.y9f{bottom:132.840000px;}
.y21c{bottom:133.321500px;}
.y1a7{bottom:136.800000px;}
.y166{bottom:141.840000px;}
.y1f9{bottom:145.980000px;}
.y4d{bottom:147.060000px;}
.y10f{bottom:148.320000px;}
.y7d{bottom:149.760000px;}
.ye0{bottom:150.840000px;}
.yc1{bottom:151.560000px;}
.y113{bottom:152.460000px;}
.y12c{bottom:152.820000px;}
.y9e{bottom:153.360000px;}
.y21b{bottom:153.846000px;}
.y1a6{bottom:157.320000px;}
.y165{bottom:158.580000px;}
.y21{bottom:159.300000px;}
.y1f8{bottom:166.500000px;}
.y4c{bottom:167.580000px;}
.y10e{bottom:168.840000px;}
.y7c{bottom:170.280000px;}
.ydf{bottom:171.360000px;}
.yc0{bottom:172.080000px;}
.y112{bottom:172.260000px;}
.y12b{bottom:173.340000px;}
.y9d{bottom:173.880000px;}
.y21a{bottom:174.370500px;}
.y164{bottom:175.500000px;}
.y1a5{bottom:177.840000px;}
.y20{bottom:179.820000px;}
.y1f7{bottom:186.840000px;}
.y4b{bottom:188.100000px;}
.y10d{bottom:189.360000px;}
.y7b{bottom:190.800000px;}
.yde{bottom:191.880000px;}
.y163{bottom:192.240000px;}
.ybf{bottom:192.600000px;}
.y12a{bottom:193.860000px;}
.y9c{bottom:194.400000px;}
.y219{bottom:194.895000px;}
.y1a4{bottom:198.360000px;}
.y1f{bottom:200.340000px;}
.y1f6{bottom:207.360000px;}
.y1c7{bottom:207.540000px;}
.y141{bottom:208.620000px;}
.y162{bottom:208.980000px;}
.y10c{bottom:209.880000px;}
.y7a{bottom:211.320000px;}
.ydd{bottom:212.400000px;}
.ybe{bottom:213.120000px;}
.y129{bottom:214.200000px;}
.y9b{bottom:214.920000px;}
.y218{bottom:215.419500px;}
.y1a3{bottom:218.880000px;}
.y1e{bottom:220.860000px;}
.y161{bottom:225.720000px;}
.y1f5{bottom:227.880000px;}
.y1c6{bottom:228.060000px;}
.y4a{bottom:229.140000px;}
.y172{bottom:230.040000px;}
.y10b{bottom:230.400000px;}
.y79{bottom:231.840000px;}
.ydc{bottom:232.920000px;}
.ybd{bottom:233.640000px;}
.y128{bottom:234.720000px;}
.y9a{bottom:235.440000px;}
.y217{bottom:235.944000px;}
.y1a2{bottom:239.250000px;}
.y1d{bottom:241.410000px;}
.y15e{bottom:242.490000px;}
.y1f4{bottom:248.430000px;}
.y1c5{bottom:248.610000px;}
.y49{bottom:249.690000px;}
.y171{bottom:250.590000px;}
.y10a{bottom:250.950000px;}
.y78{bottom:252.390000px;}
.ydb{bottom:253.470000px;}
.ybc{bottom:254.010000px;}
.y127{bottom:255.270000px;}
.y99{bottom:255.990000px;}
.y216{bottom:256.468500px;}
.y15d{bottom:259.410000px;}
.y1a1{bottom:259.770000px;}
.y1c{bottom:261.930000px;}
.y1f3{bottom:268.950000px;}
.y1c4{bottom:269.130000px;}
.y48{bottom:270.210000px;}
.y170{bottom:271.110000px;}
.y109{bottom:271.470000px;}
.y77{bottom:272.910000px;}
.yda{bottom:273.990000px;}
.ybb{bottom:274.530000px;}
.y126{bottom:275.790000px;}
.y15c{bottom:276.150000px;}
.y98{bottom:276.510000px;}
.y1a0{bottom:280.290000px;}
.y1b{bottom:282.450000px;}
.y1f2{bottom:289.470000px;}
.y1c3{bottom:289.650000px;}
.y47{bottom:290.730000px;}
.y16f{bottom:291.630000px;}
.y108{bottom:291.990000px;}
.y15a{bottom:292.890000px;}
.y76{bottom:293.430000px;}
.yd9{bottom:294.510000px;}
.yba{bottom:295.050000px;}
.y125{bottom:296.310000px;}
.y97{bottom:296.850000px;}
.y215{bottom:299.128500px;}
.y19f{bottom:300.810000px;}
.y1a{bottom:302.970000px;}
.y1f1{bottom:309.990000px;}
.y1c2{bottom:310.170000px;}
.y46{bottom:311.250000px;}
.y158{bottom:311.970000px;}
.y107{bottom:312.510000px;}
.y75{bottom:313.770000px;}
.yd8{bottom:315.030000px;}
.yb9{bottom:315.570000px;}
.y124{bottom:316.830000px;}
.y96{bottom:317.370000px;}
.y214{bottom:320.908500px;}
.y19e{bottom:321.330000px;}
.y19{bottom:323.490000px;}
.y1f0{bottom:330.510000px;}
.y1c1{bottom:330.690000px;}
.y45{bottom:331.770000px;}
.y16e{bottom:332.490000px;}
.y106{bottom:332.850000px;}
.y74{bottom:334.290000px;}
.y157{bottom:335.190000px;}
.yd7{bottom:335.550000px;}
.yb8{bottom:336.090000px;}
.y123{bottom:337.350000px;}
.y95{bottom:337.890000px;}
.y19d{bottom:341.850000px;}
.y18{bottom:343.830000px;}
.y1ef{bottom:351.030000px;}
.y1c0{bottom:351.210000px;}
.y140{bottom:352.290000px;}
.y16d{bottom:353.010000px;}
.y105{bottom:353.370000px;}
.y73{bottom:354.810000px;}
.y156{bottom:354.990000px;}
.yd6{bottom:356.070000px;}
.yb7{bottom:356.610000px;}
.y122{bottom:357.870000px;}
.y94{bottom:358.410000px;}
.y213{bottom:361.588500px;}
.y19c{bottom:362.370000px;}
.y17{bottom:364.350000px;}
.y1ee{bottom:371.550000px;}
.y1bf{bottom:371.730000px;}
.y44{bottom:372.810000px;}
.y16c{bottom:373.530000px;}
.y104{bottom:373.890000px;}
.y155{bottom:374.610000px;}
.y72{bottom:375.330000px;}
.yd5{bottom:376.590000px;}
.yb6{bottom:377.130000px;}
.y121{bottom:378.390000px;}
.y93{bottom:378.930000px;}
.y19b{bottom:382.890000px;}
.y16{bottom:384.870000px;}
.y1ed{bottom:392.070000px;}
.y1be{bottom:392.250000px;}
.y13f{bottom:393.150000px;}
.y16b{bottom:394.050000px;}
.y103{bottom:394.410000px;}
.y154{bottom:394.770000px;}
.y71{bottom:395.850000px;}
.yd4{bottom:396.930000px;}
.yb5{bottom:397.650000px;}
.y120{bottom:398.910000px;}
.y92{bottom:399.450000px;}
.y19a{bottom:404.310000px;}
.y212{bottom:404.403000px;}
.y15{bottom:405.030000px;}
.y1ec{bottom:412.590000px;}
.y1bd{bottom:412.770000px;}
.y43{bottom:413.130000px;}
.y13e{bottom:413.670000px;}
.y16a{bottom:414.570000px;}
.y102{bottom:414.930000px;}
.y153{bottom:415.290000px;}
.y70{bottom:416.370000px;}
.yd3{bottom:417.450000px;}
.yb4{bottom:418.170000px;}
.y11f{bottom:419.430000px;}
.y91{bottom:419.970000px;}
.y211{bottom:424.908000px;}
.y199{bottom:428.610000px;}
.y1eb{bottom:432.930000px;}
.y1bc{bottom:433.290000px;}
.y42{bottom:433.650000px;}
.y13d{bottom:434.190000px;}
.y101{bottom:435.450000px;}
.y152{bottom:435.810000px;}
.y6f{bottom:436.890000px;}
.yd2{bottom:437.970000px;}
.yb3{bottom:438.690000px;}
.y11e{bottom:439.770000px;}
.y90{bottom:440.490000px;}
.y210{bottom:445.413000px;}
.y198{bottom:449.130000px;}
.y14{bottom:449.850000px;}
.y1ea{bottom:453.450000px;}
.y1bb{bottom:453.630000px;}
.y41{bottom:454.170000px;}
.y13c{bottom:455.610000px;}
.y100{bottom:455.970000px;}
.y151{bottom:456.330000px;}
.y6e{bottom:457.410000px;}
.yd1{bottom:458.490000px;}
.yb2{bottom:459.210000px;}
.y11d{bottom:460.290000px;}
.y8f{bottom:461.010000px;}
.y20f{bottom:465.918000px;}
.y197{bottom:469.695000px;}
.y13{bottom:470.415000px;}
.y1e9{bottom:474.015000px;}
.y1ba{bottom:474.195000px;}
.y40{bottom:474.735000px;}
.yff{bottom:476.535000px;}
.y150{bottom:476.895000px;}
.y6d{bottom:477.975000px;}
.yd0{bottom:479.055000px;}
.y13b{bottom:479.415000px;}
.yb1{bottom:479.595000px;}
.y11c{bottom:480.855000px;}
.y8e{bottom:481.575000px;}
.y20e{bottom:486.423000px;}
.y196{bottom:490.215000px;}
.y12{bottom:490.935000px;}
.y1e8{bottom:494.535000px;}
.y1b9{bottom:494.715000px;}
.yfe{bottom:497.055000px;}
.y14f{bottom:497.415000px;}
.y6c{bottom:498.495000px;}
.ycf{bottom:499.575000px;}
.yb0{bottom:500.115000px;}
.y13a{bottom:500.835000px;}
.y11b{bottom:501.375000px;}
.y8d{bottom:502.095000px;}
.y20d{bottom:506.928000px;}
.y195{bottom:510.735000px;}
.y11{bottom:511.635000px;}
.y1e7{bottom:515.055000px;}
.y1b8{bottom:515.235000px;}
.y3f{bottom:515.595000px;}
.yfd{bottom:516.855000px;}
.y14e{bottom:517.935000px;}
.y6b{bottom:519.015000px;}
.yce{bottom:520.095000px;}
.yaf{bottom:520.635000px;}
.y139{bottom:521.355000px;}
.y11a{bottom:521.895000px;}
.y8c{bottom:522.615000px;}
.y20c{bottom:527.433000px;}
.y194{bottom:531.255000px;}
.y10{bottom:535.215000px;}
.y1e6{bottom:535.575000px;}
.y1b7{bottom:535.755000px;}
.y3e{bottom:536.115000px;}
.yfc{bottom:537.375000px;}
.y14d{bottom:538.455000px;}
.y6a{bottom:539.355000px;}
.ycd{bottom:540.615000px;}
.yae{bottom:541.155000px;}
.y138{bottom:541.875000px;}
.y119{bottom:542.415000px;}
.y8b{bottom:542.955000px;}
.y20b{bottom:547.938000px;}
.y193{bottom:551.775000px;}
.y1e5{bottom:556.095000px;}
.y1b6{bottom:556.275000px;}
.y3d{bottom:556.635000px;}
.yfb{bottom:557.895000px;}
.y14c{bottom:558.975000px;}
.y69{bottom:559.875000px;}
.ycc{bottom:561.135000px;}
.yad{bottom:561.675000px;}
.y137{bottom:562.395000px;}
.y8a{bottom:562.935000px;}
.y20a{bottom:568.443000px;}
.y192{bottom:572.295000px;}
.y1e4{bottom:576.615000px;}
.y1b5{bottom:576.795000px;}
.y3c{bottom:577.155000px;}
.yfa{bottom:578.415000px;}
.y14b{bottom:579.315000px;}
.y68{bottom:580.395000px;}
.ycb{bottom:581.655000px;}
.yf{bottom:582.015000px;}
.yac{bottom:582.195000px;}
.y136{bottom:582.735000px;}
.y89{bottom:583.455000px;}
.y209{bottom:588.948000px;}
.y191{bottom:592.815000px;}
.y1e3{bottom:597.135000px;}
.y1b4{bottom:597.315000px;}
.y3b{bottom:597.675000px;}
.yf9{bottom:598.935000px;}
.y14a{bottom:599.835000px;}
.y67{bottom:600.915000px;}
.yca{bottom:602.175000px;}
.yab{bottom:602.715000px;}
.y118{bottom:603.255000px;}
.y88{bottom:603.975000px;}
.y208{bottom:609.453000px;}
.ye{bottom:611.355000px;}
.y190{bottom:613.335000px;}
.y1e2{bottom:617.655000px;}
.y1b3{bottom:617.835000px;}
.y3a{bottom:618.195000px;}
.yf8{bottom:619.455000px;}
.y149{bottom:620.355000px;}
.y66{bottom:621.435000px;}
.yc9{bottom:622.515000px;}
.yaa{bottom:623.235000px;}
.y135{bottom:623.775000px;}
.y87{bottom:624.495000px;}
.y18f{bottom:633.855000px;}
.y1e1{bottom:638.175000px;}
.y1b2{bottom:638.355000px;}
.y39{bottom:638.715000px;}
.yf7{bottom:639.975000px;}
.yd{bottom:640.875000px;}
.y65{bottom:641.955000px;}
.yc8{bottom:643.035000px;}
.ya9{bottom:643.755000px;}
.y134{bottom:644.295000px;}
.y86{bottom:644.655000px;}
.y207{bottom:652.113000px;}
.y18e{bottom:654.195000px;}
.y1e0{bottom:658.515000px;}
.y1b1{bottom:658.875000px;}
.y38{bottom:659.235000px;}
.yf6{bottom:660.495000px;}
.y148{bottom:661.395000px;}
.y64{bottom:662.475000px;}
.yc7{bottom:663.555000px;}
.ya8{bottom:664.275000px;}
.y85{bottom:664.815000px;}
.y206{bottom:673.893000px;}
.y18d{bottom:674.715000px;}
.y1df{bottom:679.035000px;}
.y1b0{bottom:679.215000px;}
.yf5{bottom:681.015000px;}
.y147{bottom:681.915000px;}
.y63{bottom:682.995000px;}
.yc6{bottom:684.075000px;}
.ya7{bottom:684.795000px;}
.y84{bottom:685.335000px;}
.yc{bottom:692.895000px;}
.y18c{bottom:695.235000px;}
.y1de{bottom:699.585000px;}
.y1af{bottom:699.765000px;}
.y37{bottom:701.205000px;}
.yf4{bottom:701.385000px;}
.y146{bottom:702.105000px;}
.y62{bottom:703.545000px;}
.yc5{bottom:704.625000px;}
.y169{bottom:704.985000px;}
.ya6{bottom:705.345000px;}
.y83{bottom:705.885000px;}
.yb{bottom:713.265000px;}
.y205{bottom:714.063000px;}
.y18b{bottom:715.785000px;}
.y1dd{bottom:720.105000px;}
.y1ae{bottom:720.285000px;}
.yf3{bottom:721.905000px;}
.y61{bottom:724.065000px;}
.yc4{bottom:725.145000px;}
.ya5{bottom:725.685000px;}
.y82{bottom:726.045000px;}
.y133{bottom:726.405000px;}
.ya{bottom:733.785000px;}
.y18a{bottom:735.945000px;}
.y1dc{bottom:740.625000px;}
.y1ad{bottom:740.805000px;}
.yf2{bottom:742.425000px;}
.y60{bottom:744.585000px;}
.yc3{bottom:745.665000px;}
.y36{bottom:746.205000px;}
.y132{bottom:746.925000px;}
.y189{bottom:753.765000px;}
.y9{bottom:754.305000px;}
.y1db{bottom:761.145000px;}
.y1ac{bottom:761.325000px;}
.yf1{bottom:762.405000px;}
.y5f{bottom:765.105000px;}
.ya4{bottom:766.185000px;}
.y81{bottom:766.725000px;}
.y131{bottom:767.445000px;}
.y188{bottom:770.505000px;}
.y204{bottom:776.857500px;}
.y1da{bottom:781.665000px;}
.y1ab{bottom:781.845000px;}
.yf0{bottom:783.825000px;}
.y5e{bottom:784.545000px;}
.ya3{bottom:786.705000px;}
.y35{bottom:787.245000px;}
.y130{bottom:787.965000px;}
.y203{bottom:797.377500px;}
.y1d9{bottom:802.185000px;}
.y1aa{bottom:802.365000px;}
.y8{bottom:802.725000px;}
.y187{bottom:804.165000px;}
.y5d{bottom:804.525000px;}
.ya2{bottom:807.225000px;}
.yef{bottom:807.405000px;}
.y34{bottom:807.765000px;}
.y12f{bottom:808.305000px;}
.y202{bottom:817.897500px;}
.y186{bottom:820.905000px;}
.y1d8{bottom:822.705000px;}
.y5c{bottom:823.425000px;}
.y1a9{bottom:823.785000px;}
.ya1{bottom:827.745000px;}
.y33{bottom:828.285000px;}
.yee{bottom:828.825000px;}
.y7{bottom:835.305000px;}
.y185{bottom:837.645000px;}
.y1d7{bottom:843.225000px;}
.y5b{bottom:844.305000px;}
.ya0{bottom:848.085000px;}
.y32{bottom:848.805000px;}
.yed{bottom:849.345000px;}
.y184{bottom:854.385000px;}
.y201{bottom:858.628500px;}
.y1d6{bottom:863.745000px;}
.y5a{bottom:868.605000px;}
.y80{bottom:868.965000px;}
.y31{bottom:869.325000px;}
.yec{bottom:869.865000px;}
.y183{bottom:871.125000px;}
.y200{bottom:879.148500px;}
.y1d5{bottom:884.265000px;}
.y182{bottom:888.045000px;}
.y59{bottom:889.125000px;}
.y30{bottom:889.845000px;}
.yeb{bottom:890.385000px;}
.y6{bottom:890.925000px;}
.y1ff{bottom:899.668500px;}
.y1d4{bottom:904.605000px;}
.y181{bottom:904.785000px;}
.y58{bottom:909.645000px;}
.y2f{bottom:910.365000px;}
.yea{bottom:910.905000px;}
.y180{bottom:921.525000px;}
.y1d3{bottom:925.125000px;}
.y57{bottom:930.210000px;}
.y2e{bottom:930.930000px;}
.ye9{bottom:931.470000px;}
.y145{bottom:932.010000px;}
.y5{bottom:934.350000px;}
.y17f{bottom:938.310000px;}
.y1fe{bottom:939.570000px;}
.y1d2{bottom:945.690000px;}
.y56{bottom:950.730000px;}
.y2d{bottom:951.270000px;}
.ye8{bottom:951.990000px;}
.y17e{bottom:955.050000px;}
.y1d1{bottom:966.210000px;}
.y55{bottom:971.250000px;}
.y2c{bottom:971.790000px;}
.y17d{bottom:971.970000px;}
.y144{bottom:972.150000px;}
.ye7{bottom:972.510000px;}
.y4{bottom:977.730000px;}
.y1fd{bottom:982.950000px;}
.y1d0{bottom:986.730000px;}
.y17c{bottom:988.710000px;}
.y54{bottom:991.770000px;}
.y143{bottom:991.950000px;}
.y2b{bottom:992.310000px;}
.y12e{bottom:993.030000px;}
.y17b{bottom:1005.450000px;}
.y1cf{bottom:1007.250000px;}
.y1fc{bottom:1008.330000px;}
.y53{bottom:1012.290000px;}
.y2a{bottom:1012.830000px;}
.y3{bottom:1017.870000px;}
.y17a{bottom:1022.190000px;}
.y1ce{bottom:1027.770000px;}
.y52{bottom:1032.810000px;}
.y29{bottom:1032.990000px;}
.ye6{bottom:1033.350000px;}
.y179{bottom:1038.930000px;}
.y1cd{bottom:1048.290000px;}
.y51{bottom:1053.330000px;}
.ye5{bottom:1053.870000px;}
.y178{bottom:1055.850000px;}
.y1cc{bottom:1068.810000px;}
.y177{bottom:1072.590000px;}
.y28{bottom:1073.850000px;}
.ye4{bottom:1074.390000px;}
.y1cb{bottom:1089.330000px;}
.y176{bottom:1091.670000px;}
.y27{bottom:1094.190000px;}
.ye3{bottom:1094.910000px;}
.y1ca{bottom:1109.850000px;}
.y50{bottom:1114.710000px;}
.ye2{bottom:1115.430000px;}
.y175{bottom:1116.690000px;}
.y1c9{bottom:1129.470000px;}
.y26{bottom:1135.230000px;}
.y117{bottom:1135.950000px;}
.y174{bottom:1136.490000px;}
.y2{bottom:1137.930000px;}
.y1c8{bottom:1151.790000px;}
.y25{bottom:1155.780000px;}
.y173{bottom:1156.140000px;}
.y116{bottom:1156.500000px;}
.y23{bottom:1192.320000px;}
.y1{bottom:1194.660000px;}
.y4f{bottom:1207.620000px;}
.ha{height:14.940000px;}
.h12{height:16.200000px;}
.h14{height:16.740000px;}
.h18{height:16.776000px;}
.h17{height:16.920000px;}
.h19{height:18.000000px;}
.h9{height:36.644766px;}
.h1b{height:39.181641px;}
.h13{height:39.234375px;}
.h15{height:39.418945px;}
.h2{height:43.361016px;}
.hb{height:47.344922px;}
.h10{height:48.062812px;}
.h8{height:48.127500px;}
.he{height:48.353906px;}
.h16{height:48.884766px;}
.h3{height:52.312500px;}
.h1a{height:54.099141px;}
.hf{height:58.651172px;}
.h4{height:59.965312px;}
.hd{height:61.205625px;}
.hc{height:65.010937px;}
.h11{height:70.664062px;}
.h7{height:76.260234px;}
.h6{height:78.468750px;}
.h5{height:104.625000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:17.496000px;}
.w8{width:87.120000px;}
.w4{width:89.460000px;}
.w5{width:94.716000px;}
.w7{width:129.456000px;}
.w6{width:178.590000px;}
.w1{width:893.250000px;}
.w3{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x3{left:3.060000px;}
.x15{left:8.100000px;}
.x5{left:16.920000px;}
.xc{left:20.520000px;}
.x10{left:24.300000px;}
.x12{left:26.640000px;}
.xe{left:27.720000px;}
.x8{left:32.580000px;}
.xb{left:34.380000px;}
.x11{left:36.720000px;}
.x9{left:41.580000px;}
.xf{left:45.000000px;}
.xd{left:82.080000px;}
.xa{left:83.880000px;}
.x1{left:106.416000px;}
.x17{left:111.816000px;}
.x16{left:160.409987px;}
.x4{left:265.395000px;}
.x13{left:338.475000px;}
.x18{left:351.075000px;}
.x6{left:354.855000px;}
.x7{left:449.565000px;}
.x14{left:467.925000px;}
.x2{left:768.030000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.634667pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls26{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.233067pt;}
.ls16{letter-spacing:-0.186667pt;}
.ls14{letter-spacing:-0.160000pt;}
.ls17{letter-spacing:-0.148267pt;}
.ls13{letter-spacing:-0.146133pt;}
.ls20{letter-spacing:-0.135467pt;}
.ls1e{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.043733pt;}
.ls12{letter-spacing:-0.043520pt;}
.ls2e{letter-spacing:-0.026667pt;}
.ls2d{letter-spacing:-0.021333pt;}
.ls2c{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.005333pt;}
.ls2b{letter-spacing:0.010667pt;}
.ls9{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.024960pt;}
.ls23{letter-spacing:0.096000pt;}
.ls25{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.145920pt;}
.ls6{letter-spacing:0.158933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.202667pt;}
.ls8{letter-spacing:0.233067pt;}
.ls2a{letter-spacing:0.266027pt;}
.ls1{letter-spacing:0.271360pt;}
.ls18{letter-spacing:0.291733pt;}
.ls11{letter-spacing:0.291840pt;}
.ls1f{letter-spacing:0.307200pt;}
.ls10{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.335467pt;}
.lse{letter-spacing:0.378027pt;}
.lsd{letter-spacing:0.431360pt;}
.ls28{letter-spacing:0.800000pt;}
.lsc{letter-spacing:1.296640pt;}
.lsb{letter-spacing:1.331627pt;}
.lsa{letter-spacing:1.333333pt;}
.ls21{letter-spacing:2.560000pt;}
.ls27{letter-spacing:3.200000pt;}
.ls0{letter-spacing:8.320000pt;}
.ls1b{letter-spacing:14.720000pt;}
.ls1c{letter-spacing:21.760000pt;}
.ls22{letter-spacing:753.418667pt;}
.ws3{word-spacing:-58.880000pt;}
.ws1b{word-spacing:-18.744960pt;}
.ws1a{word-spacing:-18.720000pt;}
.ws24{word-spacing:-15.488000pt;}
.ws9{word-spacing:-15.055467pt;}
.ws1d{word-spacing:-15.027200pt;}
.ws17{word-spacing:-15.011733pt;}
.ws5{word-spacing:-14.953067pt;}
.ws2{word-spacing:-14.878933pt;}
.ws4{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.676480pt;}
.wsb{word-spacing:-14.676267pt;}
.ws1c{word-spacing:-14.622933pt;}
.ws1f{word-spacing:-14.584533pt;}
.ws15{word-spacing:-14.573867pt;}
.ws23{word-spacing:-14.571733pt;}
.ws16{word-spacing:-14.533333pt;}
.ws19{word-spacing:-14.486933pt;}
.ws18{word-spacing:-14.313067pt;}
.ws1{word-spacing:-14.080000pt;}
.ws22{word-spacing:-13.280000pt;}
.ws21{word-spacing:-12.320000pt;}
.ws20{word-spacing:-12.000000pt;}
.ws1e{word-spacing:-11.040000pt;}
.ws0{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws42{word-spacing:-1.888000pt;}
.ws26{word-spacing:-0.821333pt;}
.ws44{word-spacing:-0.704000pt;}
.ws45{word-spacing:-0.645333pt;}
.ws43{word-spacing:-0.640000pt;}
.ws46{word-spacing:-0.352000pt;}
.ws25{word-spacing:-0.298667pt;}
.ws41{word-spacing:-0.234667pt;}
.wsa{word-spacing:-0.224565pt;}
.ws38{word-spacing:-0.176000pt;}
.ws7{word-spacing:0.000000pt;}
.ws8{word-spacing:0.160000pt;}
.ws37{word-spacing:0.176000pt;}
.ws47{word-spacing:0.213333pt;}
.ws3c{word-spacing:0.234667pt;}
.ws3e{word-spacing:0.293333pt;}
.ws39{word-spacing:0.640000pt;}
.ws34{word-spacing:3.770667pt;}
.ws35{word-spacing:3.888000pt;}
.ws36{word-spacing:3.946667pt;}
.ws2c{word-spacing:4.480000pt;}
.ws2a{word-spacing:4.885333pt;}
.ws2b{word-spacing:5.002667pt;}
.ws28{word-spacing:5.018667pt;}
.ws27{word-spacing:5.061333pt;}
.ws29{word-spacing:5.120000pt;}
.ws2d{word-spacing:5.184000pt;}
.ws3d{word-spacing:7.594667pt;}
.ws40{word-spacing:7.712000pt;}
.ws3f{word-spacing:7.770667pt;}
.wsf{word-spacing:10.832000pt;}
.ws13{word-spacing:10.949333pt;}
.wsc{word-spacing:11.008000pt;}
.ws12{word-spacing:11.424000pt;}
.ws11{word-spacing:11.482667pt;}
.wsd{word-spacing:11.520000pt;}
.ws10{word-spacing:11.600000pt;}
.ws32{word-spacing:12.069333pt;}
.wse{word-spacing:12.160000pt;}
.ws2f{word-spacing:12.661333pt;}
.ws30{word-spacing:12.720000pt;}
.ws31{word-spacing:12.778667pt;}
.ws2e{word-spacing:12.800000pt;}
.ws33{word-spacing:12.837333pt;}
.ws3b{word-spacing:13.248000pt;}
.ws3a{word-spacing:25.493333pt;}
._17{margin-left:-4.546294pt;}
._16{margin-left:-3.555973pt;}
._14{margin-left:-2.282740pt;}
._1{margin-left:-1.295478pt;}
._0{width:0.956266pt;}
._d{width:1.931107pt;}
._9{width:2.826122pt;}
._c{width:3.790566pt;}
._4{width:5.504000pt;}
._3{width:6.784000pt;}
._8{width:7.746582pt;}
._7{width:8.841387pt;}
._f{width:10.152107pt;}
._e{width:11.422956pt;}
._1b{width:12.541440pt;}
._1a{width:13.601398pt;}
._10{width:15.721078pt;}
._11{width:16.799029pt;}
._15{width:18.411579pt;}
._24{width:19.327729pt;}
._19{width:20.254720pt;}
._18{width:21.491318pt;}
._25{width:22.486187pt;}
._23{width:23.375360pt;}
._22{width:24.494198pt;}
._21{width:25.762380pt;}
._13{width:26.790047pt;}
._12{width:27.732833pt;}
._6{width:29.615478pt;}
._5{width:30.528000pt;}
._29{width:31.441920pt;}
._2a{width:32.333227pt;}
._20{width:34.150400pt;}
._1f{width:35.740278pt;}
._26{width:37.271040pt;}
._1c{width:38.448640pt;}
._1d{width:39.390720pt;}
._1e{width:40.365889pt;}
._2d{width:45.935787pt;}
._2e{width:47.133311pt;}
._2b{width:63.767040pt;}
._2c{width:64.702647pt;}
._27{width:65.592320pt;}
._28{width:66.524704pt;}
._a{width:70.243840pt;}
._b{width:71.202178pt;}
._2{width:100.224000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs9{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y159{bottom:3.200000pt;}
.y24{bottom:3.360000pt;}
.y160{bottom:3.520000pt;}
.y15b{bottom:3.840000pt;}
.y15f{bottom:4.000000pt;}
.y21d{bottom:82.302667pt;}
.y22{bottom:90.945333pt;}
.y168{bottom:92.320000pt;}
.y1fb{bottom:93.280000pt;}
.y142{bottom:94.400000pt;}
.y111{bottom:95.360000pt;}
.y7f{bottom:96.640000pt;}
.y115{bottom:100.160000pt;}
.y1a8{bottom:103.360000pt;}
.y167{bottom:110.240000pt;}
.y1fa{bottom:111.520000pt;}
.y4e{bottom:112.640000pt;}
.y110{bottom:113.600000pt;}
.y7e{bottom:114.880000pt;}
.ye1{bottom:116.000000pt;}
.yc2{bottom:116.480000pt;}
.y12d{bottom:117.600000pt;}
.y114{bottom:117.760000pt;}
.y9f{bottom:118.080000pt;}
.y21c{bottom:118.508000pt;}
.y1a7{bottom:121.600000pt;}
.y166{bottom:126.080000pt;}
.y1f9{bottom:129.760000pt;}
.y4d{bottom:130.720000pt;}
.y10f{bottom:131.840000pt;}
.y7d{bottom:133.120000pt;}
.ye0{bottom:134.080000pt;}
.yc1{bottom:134.720000pt;}
.y113{bottom:135.520000pt;}
.y12c{bottom:135.840000pt;}
.y9e{bottom:136.320000pt;}
.y21b{bottom:136.752000pt;}
.y1a6{bottom:139.840000pt;}
.y165{bottom:140.960000pt;}
.y21{bottom:141.600000pt;}
.y1f8{bottom:148.000000pt;}
.y4c{bottom:148.960000pt;}
.y10e{bottom:150.080000pt;}
.y7c{bottom:151.360000pt;}
.ydf{bottom:152.320000pt;}
.yc0{bottom:152.960000pt;}
.y112{bottom:153.120000pt;}
.y12b{bottom:154.080000pt;}
.y9d{bottom:154.560000pt;}
.y21a{bottom:154.996000pt;}
.y164{bottom:156.000000pt;}
.y1a5{bottom:158.080000pt;}
.y20{bottom:159.840000pt;}
.y1f7{bottom:166.080000pt;}
.y4b{bottom:167.200000pt;}
.y10d{bottom:168.320000pt;}
.y7b{bottom:169.600000pt;}
.yde{bottom:170.560000pt;}
.y163{bottom:170.880000pt;}
.ybf{bottom:171.200000pt;}
.y12a{bottom:172.320000pt;}
.y9c{bottom:172.800000pt;}
.y219{bottom:173.240000pt;}
.y1a4{bottom:176.320000pt;}
.y1f{bottom:178.080000pt;}
.y1f6{bottom:184.320000pt;}
.y1c7{bottom:184.480000pt;}
.y141{bottom:185.440000pt;}
.y162{bottom:185.760000pt;}
.y10c{bottom:186.560000pt;}
.y7a{bottom:187.840000pt;}
.ydd{bottom:188.800000pt;}
.ybe{bottom:189.440000pt;}
.y129{bottom:190.400000pt;}
.y9b{bottom:191.040000pt;}
.y218{bottom:191.484000pt;}
.y1a3{bottom:194.560000pt;}
.y1e{bottom:196.320000pt;}
.y161{bottom:200.640000pt;}
.y1f5{bottom:202.560000pt;}
.y1c6{bottom:202.720000pt;}
.y4a{bottom:203.680000pt;}
.y172{bottom:204.480000pt;}
.y10b{bottom:204.800000pt;}
.y79{bottom:206.080000pt;}
.ydc{bottom:207.040000pt;}
.ybd{bottom:207.680000pt;}
.y128{bottom:208.640000pt;}
.y9a{bottom:209.280000pt;}
.y217{bottom:209.728000pt;}
.y1a2{bottom:212.666667pt;}
.y1d{bottom:214.586667pt;}
.y15e{bottom:215.546667pt;}
.y1f4{bottom:220.826667pt;}
.y1c5{bottom:220.986667pt;}
.y49{bottom:221.946667pt;}
.y171{bottom:222.746667pt;}
.y10a{bottom:223.066667pt;}
.y78{bottom:224.346667pt;}
.ydb{bottom:225.306667pt;}
.ybc{bottom:225.786667pt;}
.y127{bottom:226.906667pt;}
.y99{bottom:227.546667pt;}
.y216{bottom:227.972000pt;}
.y15d{bottom:230.586667pt;}
.y1a1{bottom:230.906667pt;}
.y1c{bottom:232.826667pt;}
.y1f3{bottom:239.066667pt;}
.y1c4{bottom:239.226667pt;}
.y48{bottom:240.186667pt;}
.y170{bottom:240.986667pt;}
.y109{bottom:241.306667pt;}
.y77{bottom:242.586667pt;}
.yda{bottom:243.546667pt;}
.ybb{bottom:244.026667pt;}
.y126{bottom:245.146667pt;}
.y15c{bottom:245.466667pt;}
.y98{bottom:245.786667pt;}
.y1a0{bottom:249.146667pt;}
.y1b{bottom:251.066667pt;}
.y1f2{bottom:257.306667pt;}
.y1c3{bottom:257.466667pt;}
.y47{bottom:258.426667pt;}
.y16f{bottom:259.226667pt;}
.y108{bottom:259.546667pt;}
.y15a{bottom:260.346667pt;}
.y76{bottom:260.826667pt;}
.yd9{bottom:261.786667pt;}
.yba{bottom:262.266667pt;}
.y125{bottom:263.386667pt;}
.y97{bottom:263.866667pt;}
.y215{bottom:265.892000pt;}
.y19f{bottom:267.386667pt;}
.y1a{bottom:269.306667pt;}
.y1f1{bottom:275.546667pt;}
.y1c2{bottom:275.706667pt;}
.y46{bottom:276.666667pt;}
.y158{bottom:277.306667pt;}
.y107{bottom:277.786667pt;}
.y75{bottom:278.906667pt;}
.yd8{bottom:280.026667pt;}
.yb9{bottom:280.506667pt;}
.y124{bottom:281.626667pt;}
.y96{bottom:282.106667pt;}
.y214{bottom:285.252000pt;}
.y19e{bottom:285.626667pt;}
.y19{bottom:287.546667pt;}
.y1f0{bottom:293.786667pt;}
.y1c1{bottom:293.946667pt;}
.y45{bottom:294.906667pt;}
.y16e{bottom:295.546667pt;}
.y106{bottom:295.866667pt;}
.y74{bottom:297.146667pt;}
.y157{bottom:297.946667pt;}
.yd7{bottom:298.266667pt;}
.yb8{bottom:298.746667pt;}
.y123{bottom:299.866667pt;}
.y95{bottom:300.346667pt;}
.y19d{bottom:303.866667pt;}
.y18{bottom:305.626667pt;}
.y1ef{bottom:312.026667pt;}
.y1c0{bottom:312.186667pt;}
.y140{bottom:313.146667pt;}
.y16d{bottom:313.786667pt;}
.y105{bottom:314.106667pt;}
.y73{bottom:315.386667pt;}
.y156{bottom:315.546667pt;}
.yd6{bottom:316.506667pt;}
.yb7{bottom:316.986667pt;}
.y122{bottom:318.106667pt;}
.y94{bottom:318.586667pt;}
.y213{bottom:321.412000pt;}
.y19c{bottom:322.106667pt;}
.y17{bottom:323.866667pt;}
.y1ee{bottom:330.266667pt;}
.y1bf{bottom:330.426667pt;}
.y44{bottom:331.386667pt;}
.y16c{bottom:332.026667pt;}
.y104{bottom:332.346667pt;}
.y155{bottom:332.986667pt;}
.y72{bottom:333.626667pt;}
.yd5{bottom:334.746667pt;}
.yb6{bottom:335.226667pt;}
.y121{bottom:336.346667pt;}
.y93{bottom:336.826667pt;}
.y19b{bottom:340.346667pt;}
.y16{bottom:342.106667pt;}
.y1ed{bottom:348.506667pt;}
.y1be{bottom:348.666667pt;}
.y13f{bottom:349.466667pt;}
.y16b{bottom:350.266667pt;}
.y103{bottom:350.586667pt;}
.y154{bottom:350.906667pt;}
.y71{bottom:351.866667pt;}
.yd4{bottom:352.826667pt;}
.yb5{bottom:353.466667pt;}
.y120{bottom:354.586667pt;}
.y92{bottom:355.066667pt;}
.y19a{bottom:359.386667pt;}
.y212{bottom:359.469333pt;}
.y15{bottom:360.026667pt;}
.y1ec{bottom:366.746667pt;}
.y1bd{bottom:366.906667pt;}
.y43{bottom:367.226667pt;}
.y13e{bottom:367.706667pt;}
.y16a{bottom:368.506667pt;}
.y102{bottom:368.826667pt;}
.y153{bottom:369.146667pt;}
.y70{bottom:370.106667pt;}
.yd3{bottom:371.066667pt;}
.yb4{bottom:371.706667pt;}
.y11f{bottom:372.826667pt;}
.y91{bottom:373.306667pt;}
.y211{bottom:377.696000pt;}
.y199{bottom:380.986667pt;}
.y1eb{bottom:384.826667pt;}
.y1bc{bottom:385.146667pt;}
.y42{bottom:385.466667pt;}
.y13d{bottom:385.946667pt;}
.y101{bottom:387.066667pt;}
.y152{bottom:387.386667pt;}
.y6f{bottom:388.346667pt;}
.yd2{bottom:389.306667pt;}
.yb3{bottom:389.946667pt;}
.y11e{bottom:390.906667pt;}
.y90{bottom:391.546667pt;}
.y210{bottom:395.922667pt;}
.y198{bottom:399.226667pt;}
.y14{bottom:399.866667pt;}
.y1ea{bottom:403.066667pt;}
.y1bb{bottom:403.226667pt;}
.y41{bottom:403.706667pt;}
.y13c{bottom:404.986667pt;}
.y100{bottom:405.306667pt;}
.y151{bottom:405.626667pt;}
.y6e{bottom:406.586667pt;}
.yd1{bottom:407.546667pt;}
.yb2{bottom:408.186667pt;}
.y11d{bottom:409.146667pt;}
.y8f{bottom:409.786667pt;}
.y20f{bottom:414.149333pt;}
.y197{bottom:417.506667pt;}
.y13{bottom:418.146667pt;}
.y1e9{bottom:421.346667pt;}
.y1ba{bottom:421.506667pt;}
.y40{bottom:421.986667pt;}
.yff{bottom:423.586667pt;}
.y150{bottom:423.906667pt;}
.y6d{bottom:424.866667pt;}
.yd0{bottom:425.826667pt;}
.y13b{bottom:426.146667pt;}
.yb1{bottom:426.306667pt;}
.y11c{bottom:427.426667pt;}
.y8e{bottom:428.066667pt;}
.y20e{bottom:432.376000pt;}
.y196{bottom:435.746667pt;}
.y12{bottom:436.386667pt;}
.y1e8{bottom:439.586667pt;}
.y1b9{bottom:439.746667pt;}
.yfe{bottom:441.826667pt;}
.y14f{bottom:442.146667pt;}
.y6c{bottom:443.106667pt;}
.ycf{bottom:444.066667pt;}
.yb0{bottom:444.546667pt;}
.y13a{bottom:445.186667pt;}
.y11b{bottom:445.666667pt;}
.y8d{bottom:446.306667pt;}
.y20d{bottom:450.602667pt;}
.y195{bottom:453.986667pt;}
.y11{bottom:454.786667pt;}
.y1e7{bottom:457.826667pt;}
.y1b8{bottom:457.986667pt;}
.y3f{bottom:458.306667pt;}
.yfd{bottom:459.426667pt;}
.y14e{bottom:460.386667pt;}
.y6b{bottom:461.346667pt;}
.yce{bottom:462.306667pt;}
.yaf{bottom:462.786667pt;}
.y139{bottom:463.426667pt;}
.y11a{bottom:463.906667pt;}
.y8c{bottom:464.546667pt;}
.y20c{bottom:468.829333pt;}
.y194{bottom:472.226667pt;}
.y10{bottom:475.746667pt;}
.y1e6{bottom:476.066667pt;}
.y1b7{bottom:476.226667pt;}
.y3e{bottom:476.546667pt;}
.yfc{bottom:477.666667pt;}
.y14d{bottom:478.626667pt;}
.y6a{bottom:479.426667pt;}
.ycd{bottom:480.546667pt;}
.yae{bottom:481.026667pt;}
.y138{bottom:481.666667pt;}
.y119{bottom:482.146667pt;}
.y8b{bottom:482.626667pt;}
.y20b{bottom:487.056000pt;}
.y193{bottom:490.466667pt;}
.y1e5{bottom:494.306667pt;}
.y1b6{bottom:494.466667pt;}
.y3d{bottom:494.786667pt;}
.yfb{bottom:495.906667pt;}
.y14c{bottom:496.866667pt;}
.y69{bottom:497.666667pt;}
.ycc{bottom:498.786667pt;}
.yad{bottom:499.266667pt;}
.y137{bottom:499.906667pt;}
.y8a{bottom:500.386667pt;}
.y20a{bottom:505.282667pt;}
.y192{bottom:508.706667pt;}
.y1e4{bottom:512.546667pt;}
.y1b5{bottom:512.706667pt;}
.y3c{bottom:513.026667pt;}
.yfa{bottom:514.146667pt;}
.y14b{bottom:514.946667pt;}
.y68{bottom:515.906667pt;}
.ycb{bottom:517.026667pt;}
.yf{bottom:517.346667pt;}
.yac{bottom:517.506667pt;}
.y136{bottom:517.986667pt;}
.y89{bottom:518.626667pt;}
.y209{bottom:523.509333pt;}
.y191{bottom:526.946667pt;}
.y1e3{bottom:530.786667pt;}
.y1b4{bottom:530.946667pt;}
.y3b{bottom:531.266667pt;}
.yf9{bottom:532.386667pt;}
.y14a{bottom:533.186667pt;}
.y67{bottom:534.146667pt;}
.yca{bottom:535.266667pt;}
.yab{bottom:535.746667pt;}
.y118{bottom:536.226667pt;}
.y88{bottom:536.866667pt;}
.y208{bottom:541.736000pt;}
.ye{bottom:543.426667pt;}
.y190{bottom:545.186667pt;}
.y1e2{bottom:549.026667pt;}
.y1b3{bottom:549.186667pt;}
.y3a{bottom:549.506667pt;}
.yf8{bottom:550.626667pt;}
.y149{bottom:551.426667pt;}
.y66{bottom:552.386667pt;}
.yc9{bottom:553.346667pt;}
.yaa{bottom:553.986667pt;}
.y135{bottom:554.466667pt;}
.y87{bottom:555.106667pt;}
.y18f{bottom:563.426667pt;}
.y1e1{bottom:567.266667pt;}
.y1b2{bottom:567.426667pt;}
.y39{bottom:567.746667pt;}
.yf7{bottom:568.866667pt;}
.yd{bottom:569.666667pt;}
.y65{bottom:570.626667pt;}
.yc8{bottom:571.586667pt;}
.ya9{bottom:572.226667pt;}
.y134{bottom:572.706667pt;}
.y86{bottom:573.026667pt;}
.y207{bottom:579.656000pt;}
.y18e{bottom:581.506667pt;}
.y1e0{bottom:585.346667pt;}
.y1b1{bottom:585.666667pt;}
.y38{bottom:585.986667pt;}
.yf6{bottom:587.106667pt;}
.y148{bottom:587.906667pt;}
.y64{bottom:588.866667pt;}
.yc7{bottom:589.826667pt;}
.ya8{bottom:590.466667pt;}
.y85{bottom:590.946667pt;}
.y206{bottom:599.016000pt;}
.y18d{bottom:599.746667pt;}
.y1df{bottom:603.586667pt;}
.y1b0{bottom:603.746667pt;}
.yf5{bottom:605.346667pt;}
.y147{bottom:606.146667pt;}
.y63{bottom:607.106667pt;}
.yc6{bottom:608.066667pt;}
.ya7{bottom:608.706667pt;}
.y84{bottom:609.186667pt;}
.yc{bottom:615.906667pt;}
.y18c{bottom:617.986667pt;}
.y1de{bottom:621.853333pt;}
.y1af{bottom:622.013333pt;}
.y37{bottom:623.293333pt;}
.yf4{bottom:623.453333pt;}
.y146{bottom:624.093333pt;}
.y62{bottom:625.373333pt;}
.yc5{bottom:626.333333pt;}
.y169{bottom:626.653333pt;}
.ya6{bottom:626.973333pt;}
.y83{bottom:627.453333pt;}
.yb{bottom:634.013333pt;}
.y205{bottom:634.722667pt;}
.y18b{bottom:636.253333pt;}
.y1dd{bottom:640.093333pt;}
.y1ae{bottom:640.253333pt;}
.yf3{bottom:641.693333pt;}
.y61{bottom:643.613333pt;}
.yc4{bottom:644.573333pt;}
.ya5{bottom:645.053333pt;}
.y82{bottom:645.373333pt;}
.y133{bottom:645.693333pt;}
.ya{bottom:652.253333pt;}
.y18a{bottom:654.173333pt;}
.y1dc{bottom:658.333333pt;}
.y1ad{bottom:658.493333pt;}
.yf2{bottom:659.933333pt;}
.y60{bottom:661.853333pt;}
.yc3{bottom:662.813333pt;}
.y36{bottom:663.293333pt;}
.y132{bottom:663.933333pt;}
.y189{bottom:670.013333pt;}
.y9{bottom:670.493333pt;}
.y1db{bottom:676.573333pt;}
.y1ac{bottom:676.733333pt;}
.yf1{bottom:677.693333pt;}
.y5f{bottom:680.093333pt;}
.ya4{bottom:681.053333pt;}
.y81{bottom:681.533333pt;}
.y131{bottom:682.173333pt;}
.y188{bottom:684.893333pt;}
.y204{bottom:690.540000pt;}
.y1da{bottom:694.813333pt;}
.y1ab{bottom:694.973333pt;}
.yf0{bottom:696.733333pt;}
.y5e{bottom:697.373333pt;}
.ya3{bottom:699.293333pt;}
.y35{bottom:699.773333pt;}
.y130{bottom:700.413333pt;}
.y203{bottom:708.780000pt;}
.y1d9{bottom:713.053333pt;}
.y1aa{bottom:713.213333pt;}
.y8{bottom:713.533333pt;}
.y187{bottom:714.813333pt;}
.y5d{bottom:715.133333pt;}
.ya2{bottom:717.533333pt;}
.yef{bottom:717.693333pt;}
.y34{bottom:718.013333pt;}
.y12f{bottom:718.493333pt;}
.y202{bottom:727.020000pt;}
.y186{bottom:729.693333pt;}
.y1d8{bottom:731.293333pt;}
.y5c{bottom:731.933333pt;}
.y1a9{bottom:732.253333pt;}
.ya1{bottom:735.773333pt;}
.y33{bottom:736.253333pt;}
.yee{bottom:736.733333pt;}
.y7{bottom:742.493333pt;}
.y185{bottom:744.573333pt;}
.y1d7{bottom:749.533333pt;}
.y5b{bottom:750.493333pt;}
.ya0{bottom:753.853333pt;}
.y32{bottom:754.493333pt;}
.yed{bottom:754.973333pt;}
.y184{bottom:759.453333pt;}
.y201{bottom:763.225333pt;}
.y1d6{bottom:767.773333pt;}
.y5a{bottom:772.093333pt;}
.y80{bottom:772.413333pt;}
.y31{bottom:772.733333pt;}
.yec{bottom:773.213333pt;}
.y183{bottom:774.333333pt;}
.y200{bottom:781.465333pt;}
.y1d5{bottom:786.013333pt;}
.y182{bottom:789.373333pt;}
.y59{bottom:790.333333pt;}
.y30{bottom:790.973333pt;}
.yeb{bottom:791.453333pt;}
.y6{bottom:791.933333pt;}
.y1ff{bottom:799.705333pt;}
.y1d4{bottom:804.093333pt;}
.y181{bottom:804.253333pt;}
.y58{bottom:808.573333pt;}
.y2f{bottom:809.213333pt;}
.yea{bottom:809.693333pt;}
.y180{bottom:819.133333pt;}
.y1d3{bottom:822.333333pt;}
.y57{bottom:826.853333pt;}
.y2e{bottom:827.493333pt;}
.ye9{bottom:827.973333pt;}
.y145{bottom:828.453333pt;}
.y5{bottom:830.533333pt;}
.y17f{bottom:834.053333pt;}
.y1fe{bottom:835.173333pt;}
.y1d2{bottom:840.613333pt;}
.y56{bottom:845.093333pt;}
.y2d{bottom:845.573333pt;}
.ye8{bottom:846.213333pt;}
.y17e{bottom:848.933333pt;}
.y1d1{bottom:858.853333pt;}
.y55{bottom:863.333333pt;}
.y2c{bottom:863.813333pt;}
.y17d{bottom:863.973333pt;}
.y144{bottom:864.133333pt;}
.ye7{bottom:864.453333pt;}
.y4{bottom:869.093333pt;}
.y1fd{bottom:873.733333pt;}
.y1d0{bottom:877.093333pt;}
.y17c{bottom:878.853333pt;}
.y54{bottom:881.573333pt;}
.y143{bottom:881.733333pt;}
.y2b{bottom:882.053333pt;}
.y12e{bottom:882.693333pt;}
.y17b{bottom:893.733333pt;}
.y1cf{bottom:895.333333pt;}
.y1fc{bottom:896.293333pt;}
.y53{bottom:899.813333pt;}
.y2a{bottom:900.293333pt;}
.y3{bottom:904.773333pt;}
.y17a{bottom:908.613333pt;}
.y1ce{bottom:913.573333pt;}
.y52{bottom:918.053333pt;}
.y29{bottom:918.213333pt;}
.ye6{bottom:918.533333pt;}
.y179{bottom:923.493333pt;}
.y1cd{bottom:931.813333pt;}
.y51{bottom:936.293333pt;}
.ye5{bottom:936.773333pt;}
.y178{bottom:938.533333pt;}
.y1cc{bottom:950.053333pt;}
.y177{bottom:953.413333pt;}
.y28{bottom:954.533333pt;}
.ye4{bottom:955.013333pt;}
.y1cb{bottom:968.293333pt;}
.y176{bottom:970.373333pt;}
.y27{bottom:972.613333pt;}
.ye3{bottom:973.253333pt;}
.y1ca{bottom:986.533333pt;}
.y50{bottom:990.853333pt;}
.ye2{bottom:991.493333pt;}
.y175{bottom:992.613333pt;}
.y1c9{bottom:1003.973333pt;}
.y26{bottom:1009.093333pt;}
.y117{bottom:1009.733333pt;}
.y174{bottom:1010.213333pt;}
.y2{bottom:1011.493333pt;}
.y1c8{bottom:1023.813333pt;}
.y25{bottom:1027.360000pt;}
.y173{bottom:1027.680000pt;}
.y116{bottom:1028.000000pt;}
.y23{bottom:1059.840000pt;}
.y1{bottom:1061.920000pt;}
.y4f{bottom:1073.440000pt;}
.ha{height:13.280000pt;}
.h12{height:14.400000pt;}
.h14{height:14.880000pt;}
.h18{height:14.912000pt;}
.h17{height:15.040000pt;}
.h19{height:16.000000pt;}
.h9{height:32.573125pt;}
.h1b{height:34.828125pt;}
.h13{height:34.875000pt;}
.h15{height:35.039062pt;}
.h2{height:38.543125pt;}
.hb{height:42.084375pt;}
.h10{height:42.722500pt;}
.h8{height:42.780000pt;}
.he{height:42.981250pt;}
.h16{height:43.453125pt;}
.h3{height:46.500000pt;}
.h1a{height:48.088125pt;}
.hf{height:52.134375pt;}
.h4{height:53.302500pt;}
.hd{height:54.405000pt;}
.hc{height:57.787500pt;}
.h11{height:62.812500pt;}
.h7{height:67.786875pt;}
.h6{height:69.750000pt;}
.h5{height:93.000000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:15.552000pt;}
.w8{width:77.440000pt;}
.w4{width:79.520000pt;}
.w5{width:84.192000pt;}
.w7{width:115.072000pt;}
.w6{width:158.746667pt;}
.w1{width:794.000000pt;}
.w3{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x3{left:2.720000pt;}
.x15{left:7.200000pt;}
.x5{left:15.040000pt;}
.xc{left:18.240000pt;}
.x10{left:21.600000pt;}
.x12{left:23.680000pt;}
.xe{left:24.640000pt;}
.x8{left:28.960000pt;}
.xb{left:30.560000pt;}
.x11{left:32.640000pt;}
.x9{left:36.960000pt;}
.xf{left:40.000000pt;}
.xd{left:72.960000pt;}
.xa{left:74.560000pt;}
.x1{left:94.592000pt;}
.x17{left:99.392000pt;}
.x16{left:142.586655pt;}
.x4{left:235.906667pt;}
.x13{left:300.866667pt;}
.x18{left:312.066667pt;}
.x6{left:315.426667pt;}
.x7{left:399.613333pt;}
.x14{left:415.933333pt;}
.x2{left:682.693333pt;}
}




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