
    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_00d264a08016df1153df2ba1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.156000;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_5a832e78b8f3e24522dcb80f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7aebf3cf58811d053278ffe0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_397070ce4b762e1e5b37a634.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_2db46043c374270b5e56f3a4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_393c23fc8c5f9c8de4498a45.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.048340;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_28a6950ce7e7d0d0dc5796b2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_427b5a01c5c260af6716e7f5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.053223;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_728a3fd1acc3f373c0451436.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.053223;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_cb0f569cb5d65270b188ada7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940918;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:ffc;src:url('chunks/assets/font_a79f112e65e1f5e26cdf8157.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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:ffd;src:url('chunks/assets/font_7340c84c360171cd5b6eaae6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.940918;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:ffe;src:url('chunks/assets/font_73fdd986845504a70dae0ee6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.691895;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:fff;src:url('chunks/assets/font_af2dab5f8ae50e541c78febc.woff2')format("woff");}.fff{font-family:fff;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_10d859429e15e59be862c36f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.103516;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:ff11;src:url('chunks/assets/font_22f36d636ab0a056be4d1892.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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:ff12;src:url('chunks/assets/font_94071b3048331118b32a3a3b.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.326400px;}
.ls22{letter-spacing:-0.303000px;}
.ls9{letter-spacing:-0.270000px;}
.ls28{letter-spacing:-0.202800px;}
.ls15{letter-spacing:-0.175800px;}
.ls11{letter-spacing:-0.108000px;}
.ls24{letter-spacing:-0.107400px;}
.ls10{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.090000px;}
.ls1e{letter-spacing:-0.078600px;}
.lsc{letter-spacing:-0.078000px;}
.ls21{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.058320px;}
.ls26{letter-spacing:-0.041040px;}
.ls8{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018000px;}
.ls6{letter-spacing:0.022320px;}
.ls3{letter-spacing:0.036000px;}
.ls1f{letter-spacing:0.060600px;}
.ls16{letter-spacing:0.064200px;}
.ls23{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.108000px;}
.ls2d{letter-spacing:0.117600px;}
.ls2c{letter-spacing:0.140400px;}
.ls5{letter-spacing:0.174000px;}
.ls27{letter-spacing:0.174240px;}
.ls2{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.209520px;}
.ls20{letter-spacing:0.234000px;}
.ls29{letter-spacing:0.234600px;}
.ls17{letter-spacing:0.306000px;}
.ls1b{letter-spacing:0.357000px;}
.lse{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.433440px;}
.ls1d{letter-spacing:0.780000px;}
.lsa{letter-spacing:0.792000px;}
.ls2a{letter-spacing:0.894960px;}
.ls4{letter-spacing:3.636000px;}
.ls25{letter-spacing:8.094240px;}
.ls2b{letter-spacing:17.634240px;}
.ls1a{letter-spacing:17.946720px;}
.lsf{letter-spacing:45.306720px;}
.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;}
}
.ws1{word-spacing:-54.000000px;}
.ws13{word-spacing:-13.862760px;}
.wsd{word-spacing:-13.860000px;}
.ws19{word-spacing:-13.811760px;}
.ws1b{word-spacing:-13.740360px;}
.ws1c{word-spacing:-13.646160px;}
.ws1d{word-spacing:-13.623360px;}
.ws11{word-spacing:-13.569960px;}
.ws18{word-spacing:-13.566360px;}
.wse{word-spacing:-13.518000px;}
.ws6{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.427760px;}
.ws14{word-spacing:-13.427160px;}
.ws17{word-spacing:-13.398360px;}
.wsc{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.302960px;}
.ws16{word-spacing:-13.202760px;}
.ws10{word-spacing:-13.179360px;}
.ws2{word-spacing:-13.140000px;}
.ws15{word-spacing:-12.438000px;}
.ws3{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.186000px;}
.ws8{word-spacing:-12.114000px;}
.ws5{word-spacing:-11.934000px;}
.ws9{word-spacing:-10.924560px;}
.wsa{word-spacing:-10.902240px;}
.ws12{word-spacing:-8.786880px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.040560px;}
._17{margin-left:-3.645360px;}
._15{margin-left:-2.450160px;}
._0{margin-left:-1.086000px;}
._1{width:1.116000px;}
._2{width:2.736000px;}
._6{width:3.840000px;}
._9{width:5.562000px;}
._7{width:6.858000px;}
._8{width:8.334000px;}
._f{width:10.308960px;}
._18{width:12.229920px;}
._e{width:14.581440px;}
._b{width:16.279200px;}
._19{width:17.540880px;}
._10{width:18.585360px;}
._11{width:19.624320px;}
._13{width:21.214800px;}
._12{width:22.469760px;}
._14{width:23.904000px;}
._16{width:25.158960px;}
._1d{width:26.751600px;}
._3{width:45.702000px;}
._4{width:46.998000px;}
._1a{width:112.517280px;}
._c{width:137.069760px;}
._1e{width:850.674240px;}
._a{width:851.976000px;}
._d{width:1083.449280px;}
._5{width:1348.896000px;}
._1b{width:1455.689280px;}
._1c{width:1460.729280px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fs8{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fsb{font-size:54.144000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.yf7{bottom:-14.190000px;}
.y0{bottom:0.000000px;}
.y22{bottom:2.340000px;}
.y103{bottom:3.060000px;}
.y27{bottom:3.240000px;}
.y140{bottom:3.600000px;}
.y100{bottom:6.480000px;}
.yfc{bottom:11.235000px;}
.y175{bottom:11.880000px;}
.yf6{bottom:12.135000px;}
.y26{bottom:19.080000px;}
.y25{bottom:35.460000px;}
.y24{bottom:52.020000px;}
.y5{bottom:66.525004px;}
.y30{bottom:67.140000px;}
.y23{bottom:68.580000px;}
.y5a{bottom:75.960000px;}
.y8f{bottom:76.500000px;}
.y2f{bottom:83.700000px;}
.y4{bottom:97.125005px;}
.y2e{bottom:100.080000px;}
.y59{bottom:100.260000px;}
.y8e{bottom:103.140000px;}
.y2d{bottom:116.640000px;}
.y8d{bottom:135.720000px;}
.y13e{bottom:136.980000px;}
.yf1{bottom:137.340000px;}
.y20{bottom:139.264499px;}
.y2c{bottom:142.200000px;}
.y194{bottom:143.640000px;}
.yb4{bottom:145.260000px;}
.y8c{bottom:154.110000px;}
.yd9{bottom:154.290000px;}
.y16d{bottom:154.830000px;}
.y11f{bottom:155.370000px;}
.yf0{bottom:155.550000px;}
.y1c5{bottom:156.270000px;}
.y2b{bottom:158.610000px;}
.y193{bottom:161.850000px;}
.yb3{bottom:163.650000px;}
.y1a4{bottom:164.190000px;}
.yf3{bottom:171.075000px;}
.y8b{bottom:172.290000px;}
.yd8{bottom:172.650000px;}
.y16c{bottom:173.190000px;}
.y11e{bottom:173.550000px;}
.yef{bottom:173.910000px;}
.y1c4{bottom:174.630000px;}
.y2a{bottom:175.170000px;}
.y192{bottom:180.210000px;}
.yb2{bottom:182.010000px;}
.y1a3{bottom:182.550000px;}
.y1e7{bottom:183.810000px;}
.y8a{bottom:190.650000px;}
.yd7{bottom:191.010000px;}
.y57{bottom:191.370000px;}
.y11d{bottom:191.910000px;}
.yee{bottom:192.270000px;}
.y56{bottom:195.150000px;}
.y17{bottom:196.933500px;}
.yb1{bottom:200.370000px;}
.y1a2{bottom:200.910000px;}
.y1c3{bottom:201.810000px;}
.y1e6{bottom:202.170000px;}
.y55{bottom:205.950000px;}
.y191{bottom:207.390000px;}
.y89{bottom:209.010000px;}
.yd6{bottom:209.370000px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y16b{bottom:209.730000px;}
.y11c{bottom:210.270000px;}
.yed{bottom:210.630000px;}
.yb0{bottom:218.550000px;}
.y1c2{bottom:220.170000px;}
.y54{bottom:220.530000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y53{bottom:224.310000px;}
.y190{bottom:225.750000px;}
.y88{bottom:227.370000px;}
.yd5{bottom:227.550000px;}
.y1a1{bottom:228.270000px;}
.y11b{bottom:228.630000px;}
.yec{bottom:228.810000px;}
.y1e5{bottom:229.350000px;}
.y16a{bottom:233.850000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y52{bottom:235.290000px;}
.yaf{bottom:236.910000px;}
.y1c1{bottom:238.530000px;}
.y18f{bottom:244.110000px;}
.y87{bottom:245.550000px;}
.yd4{bottom:245.910000px;}
.y1a0{bottom:246.630000px;}
.y11a{bottom:246.810000px;}
.yeb{bottom:247.170000px;}
.y1e4{bottom:247.710000px;}
.y51{bottom:249.870000px;}
.y169{bottom:250.410000px;}
.y50{bottom:253.650000px;}
.y13d{bottom:255.810000px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y18e{bottom:262.470000px;}
.y86{bottom:263.910000px;}
.yae{bottom:264.270000px;}
.y4f{bottom:265.170000px;}
.yea{bottom:265.530000px;}
.y1c0{bottom:265.710000px;}
.y168{bottom:267.510000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y19f{bottom:273.810000px;}
.y13c{bottom:274.170000px;}
.y1e3{bottom:275.070000px;}
.y18d{bottom:280.830000px;}
.y85{bottom:282.270000px;}
.yad{bottom:282.630000px;}
.y119{bottom:283.530000px;}
.ye9{bottom:283.710000px;}
.y167{bottom:284.070000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y19e{bottom:292.170000px;}
.y13b{bottom:292.530000px;}
.y1e2{bottom:293.430000px;}
.y18c{bottom:299.010000px;}
.y166{bottom:300.450000px;}
.yac{bottom:300.810000px;}
.ye8{bottom:302.070000px;}
.y84{bottom:309.450000px;}
.yd3{bottom:309.810000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y118{bottom:310.710000px;}
.y1bf{bottom:311.430000px;}
.y165{bottom:317.010000px;}
.y18b{bottom:317.370000px;}
.yab{bottom:319.170000px;}
.y19d{bottom:319.350000px;}
.y13a{bottom:319.710000px;}
.y1e1{bottom:320.610000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y83{bottom:327.810000px;}
.yf2{bottom:333.180000px;}
.y164{bottom:334.290000px;}
.y18a{bottom:335.730000px;}
.yd2{bottom:337.170000px;}
.yaa{bottom:337.530000px;}
.y19c{bottom:337.710000px;}
.y117{bottom:338.070000px;}
.ye7{bottom:338.430000px;}
.y1be{bottom:338.610000px;}
.y1e0{bottom:338.970000px;}
.y82{bottom:346.170000px;}
.ye{bottom:348.133500px;}
.y189{bottom:354.090000px;}
.yd1{bottom:355.530000px;}
.ya9{bottom:355.710000px;}
.y139{bottom:356.430000px;}
.y1bd{bottom:356.970000px;}
.yfe{bottom:359.850000px;}
.y163{bottom:364.350000px;}
.y81{bottom:364.530000px;}
.y19b{bottom:365.070000px;}
.y116{bottom:365.430000px;}
.ye6{bottom:365.610000px;}
.y1df{bottom:366.330000px;}
.y188{bottom:372.270000px;}
.yd0{bottom:373.710000px;}
.ya8{bottom:374.070000px;}
.y138{bottom:374.790000px;}
.yfd{bottom:376.230000px;}
.y80{bottom:382.710000px;}
.y19a{bottom:383.430000px;}
.y1bc{bottom:384.330000px;}
.yd{bottom:386.785499px;}
.y187{bottom:390.630000px;}
.y162{bottom:391.710000px;}
.ycf{bottom:392.070000px;}
.ya7{bottom:392.430000px;}
.y115{bottom:392.610000px;}
.ye5{bottom:392.970000px;}
.y101{bottom:393.690000px;}
.y7f{bottom:401.115000px;}
.y1bb{bottom:402.735000px;}
.yf5{bottom:403.380000px;}
.yc{bottom:408.044999px;}
.y161{bottom:410.115000px;}
.yce{bottom:410.475000px;}
.y199{bottom:410.655000px;}
.ya6{bottom:410.835000px;}
.y137{bottom:411.375000px;}
.y1de{bottom:412.095000px;}
.y186{bottom:417.855000px;}
.yf9{bottom:418.035000px;}
.y7e{bottom:419.475000px;}
.y114{bottom:420.015000px;}
.ye4{bottom:420.375000px;}
.y1ba{bottom:421.095000px;}
.ycd{bottom:428.835000px;}
.ya5{bottom:429.015000px;}
.y136{bottom:429.735000px;}
.yfb{bottom:430.200000px;}
.yf4{bottom:432.075000px;}
.yf8{bottom:434.595000px;}
.y185{bottom:436.215000px;}
.y160{bottom:437.295000px;}
.y7d{bottom:437.835000px;}
.y113{bottom:438.375000px;}
.y1dd{bottom:439.275000px;}
.y102{bottom:443.415000px;}
.ycc{bottom:447.015000px;}
.ya4{bottom:447.375000px;}
.ye3{bottom:447.735000px;}
.y135{bottom:448.095000px;}
.y1b9{bottom:448.275000px;}
.y184{bottom:454.575000px;}
.y7c{bottom:456.015000px;}
.yff{bottom:456.195000px;}
.y198{bottom:456.375000px;}
.y112{bottom:456.735000px;}
.y1dc{bottom:457.635000px;}
.yfa{bottom:457.995000px;}
.y15f{bottom:464.655000px;}
.ycb{bottom:465.375000px;}
.ya3{bottom:465.735000px;}
.y1b8{bottom:466.635000px;}
.y183{bottom:472.935000px;}
.y4e{bottom:473.295000px;}
.y7b{bottom:474.375000px;}
.y197{bottom:474.735000px;}
.ye2{bottom:474.915000px;}
.y111{bottom:475.095000px;}
.y134{bottom:475.275000px;}
.y1db{bottom:475.995000px;}
.yca{bottom:483.735000px;}
.ya2{bottom:484.095000px;}
.yb{bottom:484.864502px;}
.y4d{bottom:489.675000px;}
.y182{bottom:491.295000px;}
.y15e{bottom:492.015000px;}
.y7a{bottom:492.735000px;}
.y110{bottom:493.275000px;}
.y1b7{bottom:493.815000px;}
.y196{bottom:501.915000px;}
.ya1{bottom:502.275000px;}
.y133{bottom:502.635000px;}
.ya{bottom:502.864502px;}
.y1da{bottom:503.175000px;}
.y4c{bottom:506.235000px;}
.y181{bottom:509.475000px;}
.yc9{bottom:510.915000px;}
.y1b6{bottom:512.175000px;}
.y15d{bottom:519.195000px;}
.y79{bottom:519.915000px;}
.ya0{bottom:520.635000px;}
.y9{bottom:520.864502px;}
.y132{bottom:520.995000px;}
.y1d9{bottom:521.535000px;}
.y4b{bottom:522.975000px;}
.y180{bottom:527.835000px;}
.yc8{bottom:529.275000px;}
.ye1{bottom:529.635000px;}
.y15c{bottom:537.555000px;}
.y78{bottom:538.275000px;}
.y8{bottom:538.864499px;}
.y9f{bottom:538.995000px;}
.y131{bottom:539.175000px;}
.y1b5{bottom:539.535000px;}
.y4a{bottom:540.975000px;}
.y17f{bottom:546.195000px;}
.yc7{bottom:547.635000px;}
.y1d8{bottom:548.895000px;}
.y15b{bottom:555.915000px;}
.y77{bottom:556.635000px;}
.ye0{bottom:556.815000px;}
.y7{bottom:556.864499px;}
.y9e{bottom:557.175000px;}
.y49{bottom:557.355000px;}
.y130{bottom:557.535000px;}
.y1b4{bottom:557.895000px;}
.yc6{bottom:565.995000px;}
.y1d7{bottom:567.255000px;}
.y17e{bottom:573.375000px;}
.y48{bottom:573.915000px;}
.y15a{bottom:574.275000px;}
.y76{bottom:574.995000px;}
.ydf{bottom:575.175000px;}
.y9d{bottom:575.535000px;}
.y12f{bottom:575.895000px;}
.yc5{bottom:584.175000px;}
.y1b3{bottom:585.075000px;}
.y47{bottom:590.475000px;}
.y17d{bottom:591.735000px;}
.y159{bottom:592.635000px;}
.y75{bottom:593.175000px;}
.yde{bottom:593.535000px;}
.y9c{bottom:593.895000px;}
.y12e{bottom:594.255000px;}
.y1d6{bottom:594.435000px;}
.yc4{bottom:602.535000px;}
.y1b2{bottom:603.435000px;}
.y46{bottom:606.855000px;}
.y17c{bottom:610.095000px;}
.y158{bottom:610.815000px;}
.y74{bottom:611.535000px;}
.ydd{bottom:611.895000px;}
.y10f{bottom:612.255000px;}
.y1d5{bottom:612.795000px;}
.yc3{bottom:620.895000px;}
.y9b{bottom:621.075000px;}
.y12d{bottom:621.435000px;}
.y1b1{bottom:621.795000px;}
.y17b{bottom:628.455000px;}
.y73{bottom:629.895000px;}
.ydc{bottom:630.255000px;}
.y10e{bottom:630.435000px;}
.y45{bottom:634.935000px;}
.y157{bottom:637.455000px;}
.yc2{bottom:639.255000px;}
.y1d4{bottom:639.975000px;}
.y17a{bottom:646.635000px;}
.y72{bottom:648.255000px;}
.y9a{bottom:648.435000px;}
.y10d{bottom:648.795000px;}
.y1b0{bottom:648.975000px;}
.y156{bottom:649.725000px;}
.y44{bottom:653.325000px;}
.yc1{bottom:657.465000px;}
.y1d3{bottom:658.365000px;}
.y155{bottom:666.105000px;}
.y71{bottom:666.465000px;}
.y99{bottom:666.825000px;}
.y10c{bottom:667.185000px;}
.y1af{bottom:667.365000px;}
.y179{bottom:674.025000px;}
.y43{bottom:674.565000px;}
.yc0{bottom:675.825000px;}
.y1d2{bottom:676.725000px;}
.y154{bottom:682.665000px;}
.y70{bottom:684.825000px;}
.y98{bottom:685.185000px;}
.y10b{bottom:685.365000px;}
.y1ae{bottom:685.725000px;}
.ybf{bottom:694.185000px;}
.y42{bottom:696.705000px;}
.y178{bottom:698.145000px;}
.y153{bottom:699.045000px;}
.ydb{bottom:703.005000px;}
.y6f{bottom:703.185000px;}
.y10a{bottom:703.725000px;}
.y1d1{bottom:704.085000px;}
.y97{bottom:712.365000px;}
.y1ad{bottom:713.085000px;}
.y177{bottom:714.705000px;}
.y152{bottom:715.605000px;}
.y41{bottom:720.105000px;}
.y6e{bottom:721.365000px;}
.y109{bottom:722.085000px;}
.y1d0{bottom:722.445000px;}
.y6{bottom:726.298500px;}
.ybe{bottom:730.725000px;}
.y176{bottom:731.085000px;}
.y1ac{bottom:731.445000px;}
.y151{bottom:731.985000px;}
.y40{bottom:737.925000px;}
.y6d{bottom:739.725000px;}
.y108{bottom:740.445000px;}
.y1e8{bottom:740.625000px;}
.y174{bottom:748.365000px;}
.ybd{bottom:749.085000px;}
.y12c{bottom:749.265000px;}
.y1cf{bottom:749.625000px;}
.y3{bottom:752.599495px;}
.y3f{bottom:754.485000px;}
.y6c{bottom:758.085000px;}
.y1ab{bottom:758.625000px;}
.y173{bottom:764.745000px;}
.y150{bottom:765.825000px;}
.ybc{bottom:767.445000px;}
.y107{bottom:767.625000px;}
.y1ce{bottom:767.985000px;}
.y3e{bottom:771.405000px;}
.y6b{bottom:776.445000px;}
.y1aa{bottom:776.985000px;}
.y14f{bottom:782.205000px;}
.ybb{bottom:785.625000px;}
.y12b{bottom:785.985000px;}
.y1cd{bottom:786.345000px;}
.y3d{bottom:789.225000px;}
.y6a{bottom:794.625000px;}
.y106{bottom:794.985000px;}
.y1a9{bottom:795.345000px;}
.y14e{bottom:799.485000px;}
.y12a{bottom:804.345000px;}
.y3c{bottom:805.785000px;}
.y69{bottom:812.985000px;}
.y1cc{bottom:813.525000px;}
.y14d{bottom:815.865000px;}
.y3b{bottom:822.165000px;}
.y105{bottom:822.345000px;}
.y1a8{bottom:822.525000px;}
.y129{bottom:822.705000px;}
.y68{bottom:831.345000px;}
.y1cb{bottom:831.885000px;}
.y14c{bottom:832.425000px;}
.y3a{bottom:838.725000px;}
.yba{bottom:840.345000px;}
.y172{bottom:840.705000px;}
.y1a7{bottom:840.885000px;}
.y14b{bottom:848.985000px;}
.y104{bottom:849.525000px;}
.y67{bottom:849.705000px;}
.y128{bottom:849.885000px;}
.y1ca{bottom:850.245000px;}
.y39{bottom:855.285000px;}
.y195{bottom:858.525000px;}
.yb9{bottom:858.705000px;}
.y171{bottom:858.885000px;}
.y1a6{bottom:859.245000px;}
.y14a{bottom:865.365000px;}
.y66{bottom:867.885000px;}
.y127{bottom:868.245000px;}
.y38{bottom:871.665000px;}
.yb8{bottom:876.885000px;}
.y170{bottom:877.245000px;}
.y1c9{bottom:877.425000px;}
.y1a5{bottom:877.605000px;}
.y2{bottom:879.369000px;}
.y149{bottom:882.645000px;}
.y65{bottom:886.245000px;}
.y126{bottom:886.605000px;}
.yb7{bottom:895.245000px;}
.y16f{bottom:895.605000px;}
.y1c8{bottom:895.785000px;}
.y148{bottom:899.070000px;}
.y37{bottom:899.790000px;}
.y64{bottom:904.650000px;}
.y125{bottom:904.830000px;}
.yb6{bottom:913.650000px;}
.y16e{bottom:913.830000px;}
.y147{bottom:915.630000px;}
.y36{bottom:918.150000px;}
.y63{bottom:922.830000px;}
.y124{bottom:923.190000px;}
.yb5{bottom:931.830000px;}
.y146{bottom:932.190000px;}
.y34{bottom:936.510000px;}
.y62{bottom:941.190000px;}
.y1c7{bottom:941.550000px;}
.y35{bottom:941.730000px;}
.y145{bottom:948.570000px;}
.y96{bottom:950.190000px;}
.y123{bottom:950.550000px;}
.y33{bottom:954.690000px;}
.y61{bottom:959.550000px;}
.y144{bottom:965.130000px;}
.y1{bottom:966.726000px;}
.y95{bottom:968.550000px;}
.y1c6{bottom:968.730000px;}
.y122{bottom:968.910000px;}
.y32{bottom:976.110000px;}
.y60{bottom:977.910000px;}
.y143{bottom:981.510000px;}
.y94{bottom:986.910000px;}
.y121{bottom:987.090000px;}
.y5f{bottom:996.090000px;}
.y142{bottom:998.070000px;}
.y31{bottom:998.250000px;}
.y93{bottom:1005.090000px;}
.y120{bottom:1005.450000px;}
.y5e{bottom:1014.450000px;}
.y29{bottom:1021.470000px;}
.y92{bottom:1023.450000px;}
.y141{bottom:1031.010000px;}
.y5d{bottom:1032.810000px;}
.y28{bottom:1039.470000px;}
.y91{bottom:1041.810000px;}
.y13f{bottom:1048.290000px;}
.y5c{bottom:1051.170000px;}
.y21{bottom:1053.150000px;}
.yda{bottom:1059.990000px;}
.y90{bottom:1060.170000px;}
.y5b{bottom:1078.350000px;}
.y58{bottom:1120.830000px;}
.h24{height:16.380000px;}
.h26{height:16.416000px;}
.h25{height:16.560000px;}
.h23{height:25.020000px;}
.h16{height:26.445234px;}
.h21{height:28.440000px;}
.h22{height:28.476000px;}
.h8{height:32.130000px;}
.h27{height:32.940000px;}
.h12{height:34.001016px;}
.h9{height:38.472000px;}
.h15{height:41.185547px;}
.h17{height:42.186445px;}
.he{height:47.223633px;}
.h3{height:48.195000px;}
.hc{height:49.394180px;}
.h20{height:49.680000px;}
.h1d{height:50.760000px;}
.h11{height:52.260820px;}
.h1b{height:52.971680px;}
.hd{height:53.709961px;}
.h1e{height:53.853187px;}
.h7{height:54.960000px;}
.h14{height:55.291992px;}
.h18{height:56.214844px;}
.h6{height:57.708000px;}
.h19{height:58.621992px;}
.h1f{height:58.651172px;}
.hf{height:59.439023px;}
.h13{height:61.189805px;}
.h1a{height:62.211094px;}
.h2{height:65.952000px;}
.h10{height:73.722656px;}
.hb{height:81.360000px;}
.h5{height:93.432000px;}
.h4{height:119.055004px;}
.h1c{height:184.140000px;}
.h0{height:1262.833500px;}
.ha{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:72.180000px;}
.w15{width:72.216000px;}
.w14{width:72.396000px;}
.w11{width:74.340000px;}
.w10{width:74.376000px;}
.w19{width:78.660000px;}
.w18{width:78.876000px;}
.w1b{width:86.976000px;}
.w9{width:88.560000px;}
.wa{width:89.100000px;}
.w4{width:90.360000px;}
.wb{width:104.436000px;}
.wc{width:104.796000px;}
.we{width:111.636000px;}
.wf{width:111.780000px;}
.w17{width:112.860000px;}
.w8{width:132.300000px;}
.w16{width:159.330000px;}
.w12{width:162.030000px;}
.w1a{width:165.630000px;}
.wd{width:223.230000px;}
.w5{width:504.645000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w7{width:892.979973px;}
.w6{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.145000px;}
.x22{left:12.525000px;}
.x46{left:14.040000px;}
.x47{left:15.345000px;}
.x48{left:18.540000px;}
.x3e{left:19.800000px;}
.x1f{left:22.170000px;}
.x28{left:23.430000px;}
.x35{left:25.740000px;}
.x40{left:27.540000px;}
.x33{left:29.745000px;}
.x2b{left:32.040000px;}
.x45{left:36.045000px;}
.x38{left:37.125000px;}
.x51{left:39.060000px;}
.x36{left:40.320000px;}
.x4f{left:52.740000px;}
.x23{left:55.005000px;}
.x39{left:58.140000px;}
.x3b{left:68.940000px;}
.x6{left:77.760000px;}
.x4a{left:79.560000px;}
.x9{left:84.645000px;}
.x37{left:98.865000px;}
.x3a{left:100.485000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x2f{left:111.645000px;}
.x8{left:122.985000px;}
.xa{left:138.465000px;}
.x5{left:170.130000px;}
.x1a{left:173.909987px;}
.x1c{left:191.369987px;}
.x1e{left:194.940000px;}
.x4{left:203.484001px;}
.x27{left:206.460000px;}
.x52{left:223.229987px;}
.x26{left:231.509987px;}
.x29{left:233.489987px;}
.x7{left:260.490000px;}
.xe{left:267.914987px;}
.xf{left:281.954987px;}
.x18{left:286.454987px;}
.x2e{left:305.894987px;}
.x11{left:307.694987px;}
.x49{left:328.394987px;}
.x4b{left:329.475000px;}
.x3d{left:332.175000px;}
.x2c{left:349.275000px;}
.x3c{left:355.394987px;}
.x2a{left:358.635000px;}
.x1b{left:376.994987px;}
.x19{left:386.174987px;}
.x30{left:393.375000px;}
.x1d{left:400.574987px;}
.x12{left:401.834973px;}
.x3f{left:404.355000px;}
.x13{left:406.694987px;}
.x4c{left:442.335000px;}
.x21{left:444.240000px;}
.x3{left:454.959000px;}
.x10{left:467.744987px;}
.x41{left:476.745000px;}
.x20{left:479.444987px;}
.xd{left:486.644987px;}
.x31{left:505.005000px;}
.x4d{left:521.205000px;}
.x14{left:525.524973px;}
.x15{left:530.384987px;}
.x42{left:548.925000px;}
.x2d{left:579.165000px;}
.x4e{left:599.865000px;}
.x32{left:616.785000px;}
.x43{left:621.105000px;}
.x16{left:623.084973px;}
.x17{left:627.989987px;}
.x24{left:660.929987px;}
.x25{left:667.769987px;}
.x50{left:686.850000px;}
.x34{left:691.170000px;}
.x44{left:693.330000px;}
.xc{left:765.509987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.290133pt;}
.ls22{letter-spacing:-0.269333pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls28{letter-spacing:-0.180267pt;}
.ls15{letter-spacing:-0.156267pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls24{letter-spacing:-0.095467pt;}
.ls10{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.080000pt;}
.ls1e{letter-spacing:-0.069867pt;}
.lsc{letter-spacing:-0.069333pt;}
.ls21{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls26{letter-spacing:-0.036480pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016000pt;}
.ls6{letter-spacing:0.019840pt;}
.ls3{letter-spacing:0.032000pt;}
.ls1f{letter-spacing:0.053867pt;}
.ls16{letter-spacing:0.057067pt;}
.ls23{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.096000pt;}
.ls2d{letter-spacing:0.104533pt;}
.ls2c{letter-spacing:0.124800pt;}
.ls5{letter-spacing:0.154667pt;}
.ls27{letter-spacing:0.154880pt;}
.ls2{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.186240pt;}
.ls20{letter-spacing:0.208000pt;}
.ls29{letter-spacing:0.208533pt;}
.ls17{letter-spacing:0.272000pt;}
.ls1b{letter-spacing:0.317333pt;}
.lse{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.385280pt;}
.ls1d{letter-spacing:0.693333pt;}
.lsa{letter-spacing:0.704000pt;}
.ls2a{letter-spacing:0.795520pt;}
.ls4{letter-spacing:3.232000pt;}
.ls25{letter-spacing:7.194880pt;}
.ls2b{letter-spacing:15.674880pt;}
.ls1a{letter-spacing:15.952640pt;}
.lsf{letter-spacing:40.272640pt;}
.ws1{word-spacing:-48.000000pt;}
.ws13{word-spacing:-12.322453pt;}
.wsd{word-spacing:-12.320000pt;}
.ws19{word-spacing:-12.277120pt;}
.ws1b{word-spacing:-12.213653pt;}
.ws1c{word-spacing:-12.129920pt;}
.ws1d{word-spacing:-12.109653pt;}
.ws11{word-spacing:-12.062187pt;}
.ws18{word-spacing:-12.058987pt;}
.wse{word-spacing:-12.016000pt;}
.ws6{word-spacing:-12.005120pt;}
.wsf{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.935787pt;}
.ws14{word-spacing:-11.935253pt;}
.ws17{word-spacing:-11.909653pt;}
.wsc{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.824853pt;}
.ws16{word-spacing:-11.735787pt;}
.ws10{word-spacing:-11.714987pt;}
.ws2{word-spacing:-11.680000pt;}
.ws15{word-spacing:-11.056000pt;}
.ws3{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.832000pt;}
.ws8{word-spacing:-10.768000pt;}
.ws5{word-spacing:-10.608000pt;}
.ws9{word-spacing:-9.710720pt;}
.wsa{word-spacing:-9.690880pt;}
.ws12{word-spacing:-7.810560pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.036053pt;}
._17{margin-left:-3.240320pt;}
._15{margin-left:-2.177920pt;}
._0{margin-left:-0.965333pt;}
._1{width:0.992000pt;}
._2{width:2.432000pt;}
._6{width:3.413333pt;}
._9{width:4.944000pt;}
._7{width:6.096000pt;}
._8{width:7.408000pt;}
._f{width:9.163520pt;}
._18{width:10.871040pt;}
._e{width:12.961280pt;}
._b{width:14.470400pt;}
._19{width:15.591893pt;}
._10{width:16.520320pt;}
._11{width:17.443840pt;}
._13{width:18.857600pt;}
._12{width:19.973120pt;}
._14{width:21.248000pt;}
._16{width:22.363520pt;}
._1d{width:23.779200pt;}
._3{width:40.624000pt;}
._4{width:41.776000pt;}
._1a{width:100.015360pt;}
._c{width:121.839787pt;}
._1e{width:756.154880pt;}
._a{width:757.312000pt;}
._d{width:963.066027pt;}
._5{width:1199.018667pt;}
._1b{width:1293.946027pt;}
._1c{width:1298.426027pt;}
.fs9{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fs8{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fsb{font-size:48.128000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.yf7{bottom:-12.613333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:2.080000pt;}
.y103{bottom:2.720000pt;}
.y27{bottom:2.880000pt;}
.y140{bottom:3.200000pt;}
.y100{bottom:5.760000pt;}
.yfc{bottom:9.986667pt;}
.y175{bottom:10.560000pt;}
.yf6{bottom:10.786667pt;}
.y26{bottom:16.960000pt;}
.y25{bottom:31.520000pt;}
.y24{bottom:46.240000pt;}
.y5{bottom:59.133337pt;}
.y30{bottom:59.680000pt;}
.y23{bottom:60.960000pt;}
.y5a{bottom:67.520000pt;}
.y8f{bottom:68.000000pt;}
.y2f{bottom:74.400000pt;}
.y4{bottom:86.333337pt;}
.y2e{bottom:88.960000pt;}
.y59{bottom:89.120000pt;}
.y8e{bottom:91.680000pt;}
.y2d{bottom:103.680000pt;}
.y8d{bottom:120.640000pt;}
.y13e{bottom:121.760000pt;}
.yf1{bottom:122.080000pt;}
.y20{bottom:123.790666pt;}
.y2c{bottom:126.400000pt;}
.y194{bottom:127.680000pt;}
.yb4{bottom:129.120000pt;}
.y8c{bottom:136.986667pt;}
.yd9{bottom:137.146667pt;}
.y16d{bottom:137.626667pt;}
.y11f{bottom:138.106667pt;}
.yf0{bottom:138.266667pt;}
.y1c5{bottom:138.906667pt;}
.y2b{bottom:140.986667pt;}
.y193{bottom:143.866667pt;}
.yb3{bottom:145.466667pt;}
.y1a4{bottom:145.946667pt;}
.yf3{bottom:152.066667pt;}
.y8b{bottom:153.146667pt;}
.yd8{bottom:153.466667pt;}
.y16c{bottom:153.946667pt;}
.y11e{bottom:154.266667pt;}
.yef{bottom:154.586667pt;}
.y1c4{bottom:155.226667pt;}
.y2a{bottom:155.706667pt;}
.y192{bottom:160.186667pt;}
.yb2{bottom:161.786667pt;}
.y1a3{bottom:162.266667pt;}
.y1e7{bottom:163.386667pt;}
.y8a{bottom:169.466667pt;}
.yd7{bottom:169.786667pt;}
.y57{bottom:170.106667pt;}
.y11d{bottom:170.586667pt;}
.yee{bottom:170.906667pt;}
.y56{bottom:173.466667pt;}
.y17{bottom:175.052000pt;}
.yb1{bottom:178.106667pt;}
.y1a2{bottom:178.586667pt;}
.y1c3{bottom:179.386667pt;}
.y1e6{bottom:179.706667pt;}
.y55{bottom:183.066667pt;}
.y191{bottom:184.346667pt;}
.y89{bottom:185.786667pt;}
.yd6{bottom:186.106667pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y16b{bottom:186.426667pt;}
.y11c{bottom:186.906667pt;}
.yed{bottom:187.226667pt;}
.yb0{bottom:194.266667pt;}
.y1c2{bottom:195.706667pt;}
.y54{bottom:196.026667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y53{bottom:199.386667pt;}
.y190{bottom:200.666667pt;}
.y88{bottom:202.106667pt;}
.yd5{bottom:202.266667pt;}
.y1a1{bottom:202.906667pt;}
.y11b{bottom:203.226667pt;}
.yec{bottom:203.386667pt;}
.y1e5{bottom:203.866667pt;}
.y16a{bottom:207.866667pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y52{bottom:209.146667pt;}
.yaf{bottom:210.586667pt;}
.y1c1{bottom:212.026667pt;}
.y18f{bottom:216.986667pt;}
.y87{bottom:218.266667pt;}
.yd4{bottom:218.586667pt;}
.y1a0{bottom:219.226667pt;}
.y11a{bottom:219.386667pt;}
.yeb{bottom:219.706667pt;}
.y1e4{bottom:220.186667pt;}
.y51{bottom:222.106667pt;}
.y169{bottom:222.586667pt;}
.y50{bottom:225.466667pt;}
.y13d{bottom:227.386667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y18e{bottom:233.306667pt;}
.y86{bottom:234.586667pt;}
.yae{bottom:234.906667pt;}
.y4f{bottom:235.706667pt;}
.yea{bottom:236.026667pt;}
.y1c0{bottom:236.186667pt;}
.y168{bottom:237.786667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y19f{bottom:243.386667pt;}
.y13c{bottom:243.706667pt;}
.y1e3{bottom:244.506667pt;}
.y18d{bottom:249.626667pt;}
.y85{bottom:250.906667pt;}
.yad{bottom:251.226667pt;}
.y119{bottom:252.026667pt;}
.ye9{bottom:252.186667pt;}
.y167{bottom:252.506667pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y19e{bottom:259.706667pt;}
.y13b{bottom:260.026667pt;}
.y1e2{bottom:260.826667pt;}
.y18c{bottom:265.786667pt;}
.y166{bottom:267.066667pt;}
.yac{bottom:267.386667pt;}
.ye8{bottom:268.506667pt;}
.y84{bottom:275.066667pt;}
.yd3{bottom:275.386667pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y118{bottom:276.186667pt;}
.y1bf{bottom:276.826667pt;}
.y165{bottom:281.786667pt;}
.y18b{bottom:282.106667pt;}
.yab{bottom:283.706667pt;}
.y19d{bottom:283.866667pt;}
.y13a{bottom:284.186667pt;}
.y1e1{bottom:284.986667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y83{bottom:291.386667pt;}
.yf2{bottom:296.160000pt;}
.y164{bottom:297.146667pt;}
.y18a{bottom:298.426667pt;}
.yd2{bottom:299.706667pt;}
.yaa{bottom:300.026667pt;}
.y19c{bottom:300.186667pt;}
.y117{bottom:300.506667pt;}
.ye7{bottom:300.826667pt;}
.y1be{bottom:300.986667pt;}
.y1e0{bottom:301.306667pt;}
.y82{bottom:307.706667pt;}
.ye{bottom:309.452000pt;}
.y189{bottom:314.746667pt;}
.yd1{bottom:316.026667pt;}
.ya9{bottom:316.186667pt;}
.y139{bottom:316.826667pt;}
.y1bd{bottom:317.306667pt;}
.yfe{bottom:319.866667pt;}
.y163{bottom:323.866667pt;}
.y81{bottom:324.026667pt;}
.y19b{bottom:324.506667pt;}
.y116{bottom:324.826667pt;}
.ye6{bottom:324.986667pt;}
.y1df{bottom:325.626667pt;}
.y188{bottom:330.906667pt;}
.yd0{bottom:332.186667pt;}
.ya8{bottom:332.506667pt;}
.y138{bottom:333.146667pt;}
.yfd{bottom:334.426667pt;}
.y80{bottom:340.186667pt;}
.y19a{bottom:340.826667pt;}
.y1bc{bottom:341.626667pt;}
.yd{bottom:343.809333pt;}
.y187{bottom:347.226667pt;}
.y162{bottom:348.186667pt;}
.ycf{bottom:348.506667pt;}
.ya7{bottom:348.826667pt;}
.y115{bottom:348.986667pt;}
.ye5{bottom:349.306667pt;}
.y101{bottom:349.946667pt;}
.y7f{bottom:356.546667pt;}
.y1bb{bottom:357.986667pt;}
.yf5{bottom:358.560000pt;}
.yc{bottom:362.706666pt;}
.y161{bottom:364.546667pt;}
.yce{bottom:364.866667pt;}
.y199{bottom:365.026667pt;}
.ya6{bottom:365.186667pt;}
.y137{bottom:365.666667pt;}
.y1de{bottom:366.306667pt;}
.y186{bottom:371.426667pt;}
.yf9{bottom:371.586667pt;}
.y7e{bottom:372.866667pt;}
.y114{bottom:373.346667pt;}
.ye4{bottom:373.666667pt;}
.y1ba{bottom:374.306667pt;}
.ycd{bottom:381.186667pt;}
.ya5{bottom:381.346667pt;}
.y136{bottom:381.986667pt;}
.yfb{bottom:382.400000pt;}
.yf4{bottom:384.066667pt;}
.yf8{bottom:386.306667pt;}
.y185{bottom:387.746667pt;}
.y160{bottom:388.706667pt;}
.y7d{bottom:389.186667pt;}
.y113{bottom:389.666667pt;}
.y1dd{bottom:390.466667pt;}
.y102{bottom:394.146667pt;}
.ycc{bottom:397.346667pt;}
.ya4{bottom:397.666667pt;}
.ye3{bottom:397.986667pt;}
.y135{bottom:398.306667pt;}
.y1b9{bottom:398.466667pt;}
.y184{bottom:404.066667pt;}
.y7c{bottom:405.346667pt;}
.yff{bottom:405.506667pt;}
.y198{bottom:405.666667pt;}
.y112{bottom:405.986667pt;}
.y1dc{bottom:406.786667pt;}
.yfa{bottom:407.106667pt;}
.y15f{bottom:413.026667pt;}
.ycb{bottom:413.666667pt;}
.ya3{bottom:413.986667pt;}
.y1b8{bottom:414.786667pt;}
.y183{bottom:420.386667pt;}
.y4e{bottom:420.706667pt;}
.y7b{bottom:421.666667pt;}
.y197{bottom:421.986667pt;}
.ye2{bottom:422.146667pt;}
.y111{bottom:422.306667pt;}
.y134{bottom:422.466667pt;}
.y1db{bottom:423.106667pt;}
.yca{bottom:429.986667pt;}
.ya2{bottom:430.306667pt;}
.yb{bottom:430.990669pt;}
.y4d{bottom:435.266667pt;}
.y182{bottom:436.706667pt;}
.y15e{bottom:437.346667pt;}
.y7a{bottom:437.986667pt;}
.y110{bottom:438.466667pt;}
.y1b7{bottom:438.946667pt;}
.y196{bottom:446.146667pt;}
.ya1{bottom:446.466667pt;}
.y133{bottom:446.786667pt;}
.ya{bottom:446.990669pt;}
.y1da{bottom:447.266667pt;}
.y4c{bottom:449.986667pt;}
.y181{bottom:452.866667pt;}
.yc9{bottom:454.146667pt;}
.y1b6{bottom:455.266667pt;}
.y15d{bottom:461.506667pt;}
.y79{bottom:462.146667pt;}
.ya0{bottom:462.786667pt;}
.y9{bottom:462.990669pt;}
.y132{bottom:463.106667pt;}
.y1d9{bottom:463.586667pt;}
.y4b{bottom:464.866667pt;}
.y180{bottom:469.186667pt;}
.yc8{bottom:470.466667pt;}
.ye1{bottom:470.786667pt;}
.y15c{bottom:477.826667pt;}
.y78{bottom:478.466667pt;}
.y8{bottom:478.990666pt;}
.y9f{bottom:479.106667pt;}
.y131{bottom:479.266667pt;}
.y1b5{bottom:479.586667pt;}
.y4a{bottom:480.866667pt;}
.y17f{bottom:485.506667pt;}
.yc7{bottom:486.786667pt;}
.y1d8{bottom:487.906667pt;}
.y15b{bottom:494.146667pt;}
.y77{bottom:494.786667pt;}
.ye0{bottom:494.946667pt;}
.y7{bottom:494.990666pt;}
.y9e{bottom:495.266667pt;}
.y49{bottom:495.426667pt;}
.y130{bottom:495.586667pt;}
.y1b4{bottom:495.906667pt;}
.yc6{bottom:503.106667pt;}
.y1d7{bottom:504.226667pt;}
.y17e{bottom:509.666667pt;}
.y48{bottom:510.146667pt;}
.y15a{bottom:510.466667pt;}
.y76{bottom:511.106667pt;}
.ydf{bottom:511.266667pt;}
.y9d{bottom:511.586667pt;}
.y12f{bottom:511.906667pt;}
.yc5{bottom:519.266667pt;}
.y1b3{bottom:520.066667pt;}
.y47{bottom:524.866667pt;}
.y17d{bottom:525.986667pt;}
.y159{bottom:526.786667pt;}
.y75{bottom:527.266667pt;}
.yde{bottom:527.586667pt;}
.y9c{bottom:527.906667pt;}
.y12e{bottom:528.226667pt;}
.y1d6{bottom:528.386667pt;}
.yc4{bottom:535.586667pt;}
.y1b2{bottom:536.386667pt;}
.y46{bottom:539.426667pt;}
.y17c{bottom:542.306667pt;}
.y158{bottom:542.946667pt;}
.y74{bottom:543.586667pt;}
.ydd{bottom:543.906667pt;}
.y10f{bottom:544.226667pt;}
.y1d5{bottom:544.706667pt;}
.yc3{bottom:551.906667pt;}
.y9b{bottom:552.066667pt;}
.y12d{bottom:552.386667pt;}
.y1b1{bottom:552.706667pt;}
.y17b{bottom:558.626667pt;}
.y73{bottom:559.906667pt;}
.ydc{bottom:560.226667pt;}
.y10e{bottom:560.386667pt;}
.y45{bottom:564.386667pt;}
.y157{bottom:566.626667pt;}
.yc2{bottom:568.226667pt;}
.y1d4{bottom:568.866667pt;}
.y17a{bottom:574.786667pt;}
.y72{bottom:576.226667pt;}
.y9a{bottom:576.386667pt;}
.y10d{bottom:576.706667pt;}
.y1b0{bottom:576.866667pt;}
.y156{bottom:577.533333pt;}
.y44{bottom:580.733333pt;}
.yc1{bottom:584.413333pt;}
.y1d3{bottom:585.213333pt;}
.y155{bottom:592.093333pt;}
.y71{bottom:592.413333pt;}
.y99{bottom:592.733333pt;}
.y10c{bottom:593.053333pt;}
.y1af{bottom:593.213333pt;}
.y179{bottom:599.133333pt;}
.y43{bottom:599.613333pt;}
.yc0{bottom:600.733333pt;}
.y1d2{bottom:601.533333pt;}
.y154{bottom:606.813333pt;}
.y70{bottom:608.733333pt;}
.y98{bottom:609.053333pt;}
.y10b{bottom:609.213333pt;}
.y1ae{bottom:609.533333pt;}
.ybf{bottom:617.053333pt;}
.y42{bottom:619.293333pt;}
.y178{bottom:620.573333pt;}
.y153{bottom:621.373333pt;}
.ydb{bottom:624.893333pt;}
.y6f{bottom:625.053333pt;}
.y10a{bottom:625.533333pt;}
.y1d1{bottom:625.853333pt;}
.y97{bottom:633.213333pt;}
.y1ad{bottom:633.853333pt;}
.y177{bottom:635.293333pt;}
.y152{bottom:636.093333pt;}
.y41{bottom:640.093333pt;}
.y6e{bottom:641.213333pt;}
.y109{bottom:641.853333pt;}
.y1d0{bottom:642.173333pt;}
.y6{bottom:645.598667pt;}
.ybe{bottom:649.533333pt;}
.y176{bottom:649.853333pt;}
.y1ac{bottom:650.173333pt;}
.y151{bottom:650.653333pt;}
.y40{bottom:655.933333pt;}
.y6d{bottom:657.533333pt;}
.y108{bottom:658.173333pt;}
.y1e8{bottom:658.333333pt;}
.y174{bottom:665.213333pt;}
.ybd{bottom:665.853333pt;}
.y12c{bottom:666.013333pt;}
.y1cf{bottom:666.333333pt;}
.y3{bottom:668.977329pt;}
.y3f{bottom:670.653333pt;}
.y6c{bottom:673.853333pt;}
.y1ab{bottom:674.333333pt;}
.y173{bottom:679.773333pt;}
.y150{bottom:680.733333pt;}
.ybc{bottom:682.173333pt;}
.y107{bottom:682.333333pt;}
.y1ce{bottom:682.653333pt;}
.y3e{bottom:685.693333pt;}
.y6b{bottom:690.173333pt;}
.y1aa{bottom:690.653333pt;}
.y14f{bottom:695.293333pt;}
.ybb{bottom:698.333333pt;}
.y12b{bottom:698.653333pt;}
.y1cd{bottom:698.973333pt;}
.y3d{bottom:701.533333pt;}
.y6a{bottom:706.333333pt;}
.y106{bottom:706.653333pt;}
.y1a9{bottom:706.973333pt;}
.y14e{bottom:710.653333pt;}
.y12a{bottom:714.973333pt;}
.y3c{bottom:716.253333pt;}
.y69{bottom:722.653333pt;}
.y1cc{bottom:723.133333pt;}
.y14d{bottom:725.213333pt;}
.y3b{bottom:730.813333pt;}
.y105{bottom:730.973333pt;}
.y1a8{bottom:731.133333pt;}
.y129{bottom:731.293333pt;}
.y68{bottom:738.973333pt;}
.y1cb{bottom:739.453333pt;}
.y14c{bottom:739.933333pt;}
.y3a{bottom:745.533333pt;}
.yba{bottom:746.973333pt;}
.y172{bottom:747.293333pt;}
.y1a7{bottom:747.453333pt;}
.y14b{bottom:754.653333pt;}
.y104{bottom:755.133333pt;}
.y67{bottom:755.293333pt;}
.y128{bottom:755.453333pt;}
.y1ca{bottom:755.773333pt;}
.y39{bottom:760.253333pt;}
.y195{bottom:763.133333pt;}
.yb9{bottom:763.293333pt;}
.y171{bottom:763.453333pt;}
.y1a6{bottom:763.773333pt;}
.y14a{bottom:769.213333pt;}
.y66{bottom:771.453333pt;}
.y127{bottom:771.773333pt;}
.y38{bottom:774.813333pt;}
.yb8{bottom:779.453333pt;}
.y170{bottom:779.773333pt;}
.y1c9{bottom:779.933333pt;}
.y1a5{bottom:780.093333pt;}
.y2{bottom:781.661334pt;}
.y149{bottom:784.573333pt;}
.y65{bottom:787.773333pt;}
.y126{bottom:788.093333pt;}
.yb7{bottom:795.773333pt;}
.y16f{bottom:796.093333pt;}
.y1c8{bottom:796.253333pt;}
.y148{bottom:799.173333pt;}
.y37{bottom:799.813333pt;}
.y64{bottom:804.133333pt;}
.y125{bottom:804.293333pt;}
.yb6{bottom:812.133333pt;}
.y16e{bottom:812.293333pt;}
.y147{bottom:813.893333pt;}
.y36{bottom:816.133333pt;}
.y63{bottom:820.293333pt;}
.y124{bottom:820.613333pt;}
.yb5{bottom:828.293333pt;}
.y146{bottom:828.613333pt;}
.y34{bottom:832.453333pt;}
.y62{bottom:836.613333pt;}
.y1c7{bottom:836.933333pt;}
.y35{bottom:837.093333pt;}
.y145{bottom:843.173333pt;}
.y96{bottom:844.613333pt;}
.y123{bottom:844.933333pt;}
.y33{bottom:848.613333pt;}
.y61{bottom:852.933333pt;}
.y144{bottom:857.893333pt;}
.y1{bottom:859.312000pt;}
.y95{bottom:860.933333pt;}
.y1c6{bottom:861.093333pt;}
.y122{bottom:861.253333pt;}
.y32{bottom:867.653333pt;}
.y60{bottom:869.253333pt;}
.y143{bottom:872.453333pt;}
.y94{bottom:877.253333pt;}
.y121{bottom:877.413333pt;}
.y5f{bottom:885.413333pt;}
.y142{bottom:887.173333pt;}
.y31{bottom:887.333333pt;}
.y93{bottom:893.413333pt;}
.y120{bottom:893.733333pt;}
.y5e{bottom:901.733333pt;}
.y29{bottom:907.973333pt;}
.y92{bottom:909.733333pt;}
.y141{bottom:916.453333pt;}
.y5d{bottom:918.053333pt;}
.y28{bottom:923.973333pt;}
.y91{bottom:926.053333pt;}
.y13f{bottom:931.813333pt;}
.y5c{bottom:934.373333pt;}
.y21{bottom:936.133333pt;}
.yda{bottom:942.213333pt;}
.y90{bottom:942.373333pt;}
.y5b{bottom:958.533333pt;}
.y58{bottom:996.293333pt;}
.h24{height:14.560000pt;}
.h26{height:14.592000pt;}
.h25{height:14.720000pt;}
.h23{height:22.240000pt;}
.h16{height:23.506875pt;}
.h21{height:25.280000pt;}
.h22{height:25.312000pt;}
.h8{height:28.560000pt;}
.h27{height:29.280000pt;}
.h12{height:30.223125pt;}
.h9{height:34.197333pt;}
.h15{height:36.609375pt;}
.h17{height:37.499062pt;}
.he{height:41.976562pt;}
.h3{height:42.840000pt;}
.hc{height:43.905937pt;}
.h20{height:44.160000pt;}
.h1d{height:45.120000pt;}
.h11{height:46.454062pt;}
.h1b{height:47.085938pt;}
.hd{height:47.742188pt;}
.h1e{height:47.869500pt;}
.h7{height:48.853333pt;}
.h14{height:49.148438pt;}
.h18{height:49.968750pt;}
.h6{height:51.296000pt;}
.h19{height:52.108438pt;}
.h1f{height:52.134375pt;}
.hf{height:52.834688pt;}
.h13{height:54.390938pt;}
.h1a{height:55.298750pt;}
.h2{height:58.624000pt;}
.h10{height:65.531250pt;}
.hb{height:72.320000pt;}
.h5{height:83.050667pt;}
.h4{height:105.826671pt;}
.h1c{height:163.680000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:64.160000pt;}
.w15{width:64.192000pt;}
.w14{width:64.352000pt;}
.w11{width:66.080000pt;}
.w10{width:66.112000pt;}
.w19{width:69.920000pt;}
.w18{width:70.112000pt;}
.w1b{width:77.312000pt;}
.w9{width:78.720000pt;}
.wa{width:79.200000pt;}
.w4{width:80.320000pt;}
.wb{width:92.832000pt;}
.wc{width:93.152000pt;}
.we{width:99.232000pt;}
.wf{width:99.360000pt;}
.w17{width:100.320000pt;}
.w8{width:117.600000pt;}
.w16{width:141.626667pt;}
.w12{width:144.026667pt;}
.w1a{width:147.226667pt;}
.wd{width:198.426667pt;}
.w5{width:448.573333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w7{width:793.759976pt;}
.w6{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.240000pt;}
.x22{left:11.133333pt;}
.x46{left:12.480000pt;}
.x47{left:13.640000pt;}
.x48{left:16.480000pt;}
.x3e{left:17.600000pt;}
.x1f{left:19.706667pt;}
.x28{left:20.826667pt;}
.x35{left:22.880000pt;}
.x40{left:24.480000pt;}
.x33{left:26.440000pt;}
.x2b{left:28.480000pt;}
.x45{left:32.040000pt;}
.x38{left:33.000000pt;}
.x51{left:34.720000pt;}
.x36{left:35.840000pt;}
.x4f{left:46.880000pt;}
.x23{left:48.893333pt;}
.x39{left:51.680000pt;}
.x3b{left:61.280000pt;}
.x6{left:69.120000pt;}
.x4a{left:70.720000pt;}
.x9{left:75.240000pt;}
.x37{left:87.880000pt;}
.x3a{left:89.320000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x2f{left:99.240000pt;}
.x8{left:109.320000pt;}
.xa{left:123.080000pt;}
.x5{left:151.226667pt;}
.x1a{left:154.586655pt;}
.x1c{left:170.106655pt;}
.x1e{left:173.280000pt;}
.x4{left:180.874667pt;}
.x27{left:183.520000pt;}
.x52{left:198.426655pt;}
.x26{left:205.786655pt;}
.x29{left:207.546655pt;}
.x7{left:231.546667pt;}
.xe{left:238.146655pt;}
.xf{left:250.626655pt;}
.x18{left:254.626655pt;}
.x2e{left:271.906655pt;}
.x11{left:273.506655pt;}
.x49{left:291.906655pt;}
.x4b{left:292.866667pt;}
.x3d{left:295.266667pt;}
.x2c{left:310.466667pt;}
.x3c{left:315.906655pt;}
.x2a{left:318.786667pt;}
.x1b{left:335.106655pt;}
.x19{left:343.266655pt;}
.x30{left:349.666667pt;}
.x1d{left:356.066655pt;}
.x12{left:357.186643pt;}
.x3f{left:359.426667pt;}
.x13{left:361.506655pt;}
.x4c{left:393.186667pt;}
.x21{left:394.880000pt;}
.x3{left:404.408000pt;}
.x10{left:415.773322pt;}
.x41{left:423.773333pt;}
.x20{left:426.173322pt;}
.xd{left:432.573322pt;}
.x31{left:448.893333pt;}
.x4d{left:463.293333pt;}
.x14{left:467.133310pt;}
.x15{left:471.453322pt;}
.x42{left:487.933333pt;}
.x2d{left:514.813333pt;}
.x4e{left:533.213333pt;}
.x32{left:548.253333pt;}
.x43{left:552.093333pt;}
.x16{left:553.853310pt;}
.x17{left:558.213322pt;}
.x24{left:587.493322pt;}
.x25{left:593.573322pt;}
.x50{left:610.533333pt;}
.x34{left:614.373333pt;}
.x44{left:616.293333pt;}
.xc{left:680.453322pt;}
}




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