
    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_bec50b2ed0565ea48ce3c706.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.144000;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_86555b0d3b0cd41f16dd3329.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_e82f4ebcb2214ad7bc663803.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.937012;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_487197592980b80fd3cb3f2d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7d641dd59b0a936426c4507c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;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_c09c9a3d8d8d9488f87082f9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;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_47e86392df257f18e8b589e4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958984;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_509877ac2320ae37874b38d0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_68693fc929cce76ef2e8a022.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c9541d7782fd5fc5f88e8384.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.056152;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_71790d1e98f33c20d65ca95a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.050293;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_2ab0b195d40ac3f41c5d2ecc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921387;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:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls10{letter-spacing:-4.782000px;}
.ls12{letter-spacing:-4.302000px;}
.lsc{letter-spacing:-0.666000px;}
.ls19{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.303600px;}
.ls14{letter-spacing:-0.216000px;}
.ls17{letter-spacing:-0.206400px;}
.ls11{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.054720px;}
.lsb{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.109200px;}
.ls9{letter-spacing:0.129000px;}
.ls7{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.234720px;}
.lsd{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.259920px;}
.ls1e{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.480000px;}
.ls1d{letter-spacing:0.828000px;}
.ls21{letter-spacing:0.978000px;}
.lse{letter-spacing:1.620000px;}
.ls1a{letter-spacing:4.500000px;}
.ls16{letter-spacing:10.260000px;}
.ls1c{letter-spacing:15.300000px;}
.ls5{letter-spacing:72.000000px;}
.ls4{letter-spacing:1399.314720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws1{word-spacing:-31.105680px;}
.ws3{word-spacing:-16.560000px;}
.ws16{word-spacing:-15.918000px;}
.ws11{word-spacing:-15.768000px;}
.ws5{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.ws15{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.146400px;}
.ws9{word-spacing:-15.046800px;}
.ws10{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.ws6{word-spacing:-14.274000px;}
.ws2{word-spacing:-13.734480px;}
.wsd{word-spacing:-13.608000px;}
.ws8{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.392000px;}
.wsf{word-spacing:-13.284000px;}
.ws4{word-spacing:-10.440000px;}
.ws0{word-spacing:0.000000px;}
._25{margin-left:-6.102000px;}
._24{margin-left:-5.017680px;}
._15{margin-left:-3.245040px;}
._e{margin-left:-2.244960px;}
._2{margin-left:-1.179360px;}
._0{width:1.195200px;}
._9{width:2.757360px;}
._d{width:3.764880px;}
._8{width:5.139360px;}
._5{width:6.573600px;}
._6{width:7.639200px;}
._a{width:9.033840px;}
._19{width:10.177920px;}
._23{width:11.230320px;}
._7{width:12.234960px;}
._4{width:13.874400px;}
._b{width:15.955920px;}
._c{width:17.509680px;}
._1c{width:19.003680px;}
._1b{width:20.198880px;}
._14{width:21.288960px;}
._10{width:23.246640px;}
._f{width:24.593040px;}
._22{width:26.127360px;}
._21{width:27.593280px;}
._18{width:29.282400px;}
._16{width:30.836160px;}
._17{width:32.333040px;}
._1e{width:33.883920px;}
._1f{width:34.899840px;}
._1a{width:37.267920px;}
._1d{width:38.297520px;}
._13{width:39.378240px;}
._12{width:40.457520px;}
._2c{width:41.594400px;}
._20{width:44.939520px;}
._31{width:46.493280px;}
._2b{width:49.253040px;}
._2a{width:50.426640px;}
._29{width:53.246160px;}
._27{width:55.815840px;}
._28{width:56.843280px;}
._3{width:71.930880px;}
._2f{width:83.006640px;}
._2e{width:84.022560px;}
._2d{width:103.086000px;}
._32{width:104.318640px;}
._30{width:109.171440px;}
._26{width:849.240000px;}
._1{width:1303.500000px;}
._11{width:1592.995680px;}
.fc4{color:rgb(238,0,0);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:2.880000px;}
.y5b{bottom:3.045000px;}
.yff{bottom:3.225000px;}
.y3b{bottom:3.240000px;}
.y1b3{bottom:3.420000px;}
.y60{bottom:3.600000px;}
.y58{bottom:6.465000px;}
.y1a1{bottom:9.540000px;}
.y25{bottom:10.980000px;}
.y26{bottom:11.520000px;}
.y5e{bottom:14.040000px;}
.y10a{bottom:16.185000px;}
.y5a{bottom:16.725000px;}
.y11d{bottom:16.740000px;}
.y108{bottom:18.705000px;}
.y1c2{bottom:18.720000px;}
.yfe{bottom:18.750000px;}
.y1b2{bottom:18.900000px;}
.y3a{bottom:20.520000px;}
.y5f{bottom:20.880000px;}
.y132{bottom:25.200000px;}
.y59{bottom:30.585000px;}
.y109{bottom:32.925000px;}
.y11c{bottom:33.300000px;}
.y107{bottom:34.185000px;}
.yfd{bottom:34.230000px;}
.y1b7{bottom:34.365000px;}
.y1b1{bottom:34.380000px;}
.y39{bottom:38.160000px;}
.y131{bottom:40.680000px;}
.y104{bottom:43.770000px;}
.y106{bottom:49.845000px;}
.y1b0{bottom:49.860000px;}
.yfc{bottom:49.890000px;}
.y11b{bottom:50.040000px;}
.y38{bottom:55.440000px;}
.y130{bottom:56.160000px;}
.y114{bottom:58.860000px;}
.y103{bottom:60.330000px;}
.y1b6{bottom:65.325000px;}
.y1c1{bottom:65.340000px;}
.yfb{bottom:65.370000px;}
.y1af{bottom:65.520000px;}
.y6{bottom:66.525004px;}
.y11a{bottom:66.780000px;}
.y136{bottom:66.810000px;}
.y12f{bottom:71.850000px;}
.y37{bottom:72.765000px;}
.y113{bottom:74.340000px;}
.y127{bottom:76.860000px;}
.y102{bottom:77.070000px;}
.y1b5{bottom:80.805000px;}
.y1c0{bottom:80.820000px;}
.yfa{bottom:80.850000px;}
.y1ae{bottom:81.000000px;}
.y135{bottom:83.550000px;}
.y119{bottom:83.700000px;}
.y12e{bottom:87.330000px;}
.y112{bottom:89.820000px;}
.y36{bottom:90.045000px;}
.y126{bottom:92.340000px;}
.y101{bottom:93.810000px;}
.yf9{bottom:96.330000px;}
.y1ad{bottom:96.480000px;}
.y1bf{bottom:96.525000px;}
.y5{bottom:97.125005px;}
.y134{bottom:100.290000px;}
.y118{bottom:100.440000px;}
.y12d{bottom:102.810000px;}
.y111{bottom:105.480000px;}
.y35{bottom:106.785000px;}
.y125{bottom:108.000000px;}
.y100{bottom:110.550000px;}
.y1ac{bottom:111.960000px;}
.yf8{bottom:111.990000px;}
.y1be{bottom:112.005000px;}
.y133{bottom:117.030000px;}
.y117{bottom:117.180000px;}
.y12c{bottom:118.290000px;}
.y110{bottom:120.960000px;}
.y124{bottom:123.480000px;}
.y34{bottom:124.065000px;}
.yf7{bottom:127.470000px;}
.y1bd{bottom:127.485000px;}
.y1ab{bottom:127.620000px;}
.y116{bottom:133.920000px;}
.y12b{bottom:133.950000px;}
.y10f{bottom:136.440000px;}
.y123{bottom:138.960000px;}
.y23{bottom:139.264499px;}
.y1b4{bottom:142.950000px;}
.y1bc{bottom:142.965000px;}
.y1ba{bottom:143.100000px;}
.y115{bottom:150.660000px;}
.y10e{bottom:151.920000px;}
.y122{bottom:154.440000px;}
.y10d{bottom:167.580000px;}
.y129{bottom:167.625000px;}
.y121{bottom:170.145000px;}
.y128{bottom:184.365000px;}
.y120{bottom:185.625000px;}
.y1a9{bottom:190.290000px;}
.y1a{bottom:196.933500px;}
.y11f{bottom:201.105000px;}
.y1a8{bottom:205.770000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y1a7{bottom:221.430000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y1a6{bottom:236.910000px;}
.y1a5{bottom:252.390000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y1a4{bottom:267.870000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y28{bottom:278.310000px;}
.y1a3{bottom:283.530000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y5c{bottom:323.310000px;}
.y1ec{bottom:323.670000px;}
.y1a2{bottom:323.685000px;}
.y8f{bottom:324.750000px;}
.y144{bottom:327.990000px;}
.y105{bottom:331.425000px;}
.ybb{bottom:334.650000px;}
.y15d{bottom:335.550000px;}
.y57{bottom:335.565000px;}
.y189{bottom:339.150000px;}
.y8e{bottom:342.030000px;}
.y143{bottom:345.270000px;}
.y223{bottom:345.810000px;}
.y11{bottom:348.133500px;}
.y1eb{bottom:350.310000px;}
.yba{bottom:351.930000px;}
.y15c{bottom:352.650000px;}
.y188{bottom:356.430000px;}
.y1d5{bottom:358.590000px;}
.y8d{bottom:359.310000px;}
.y142{bottom:362.550000px;}
.y222{bottom:362.910000px;}
.yd4{bottom:366.690000px;}
.y20b{bottom:369.210000px;}
.y15b{bottom:369.930000px;}
.y187{bottom:373.710000px;}
.y1d4{bottom:375.870000px;}
.y8c{bottom:376.410000px;}
.yb9{bottom:378.210000px;}
.y141{bottom:379.830000px;}
.y56{bottom:380.190000px;}
.yd3{bottom:383.970000px;}
.y20a{bottom:386.490000px;}
.y10{bottom:386.785499px;}
.y15a{bottom:387.210000px;}
.y186{bottom:390.990000px;}
.y1d3{bottom:393.150000px;}
.y8b{bottom:393.690000px;}
.yf6{bottom:394.245000px;}
.yb8{bottom:395.490000px;}
.y55{bottom:396.210000px;}
.y140{bottom:396.930000px;}
.y221{bottom:397.470000px;}
.yd2{bottom:401.250000px;}
.y54{bottom:401.430000px;}
.y209{bottom:403.770000px;}
.y159{bottom:404.490000px;}
.yf{bottom:408.044999px;}
.y1d2{bottom:410.430000px;}
.y8a{bottom:411.015000px;}
.yb7{bottom:412.815000px;}
.y1e6{bottom:413.175000px;}
.y53{bottom:414.255000px;}
.y185{bottom:417.315000px;}
.yd1{bottom:418.575000px;}
.y220{bottom:419.295000px;}
.y158{bottom:421.815000px;}
.y208{bottom:425.595000px;}
.y1d1{bottom:427.755000px;}
.y89{bottom:428.295000px;}
.yb6{bottom:430.095000px;}
.y13f{bottom:431.535000px;}
.y184{bottom:434.595000px;}
.yd0{bottom:435.855000px;}
.y52{bottom:436.215000px;}
.y21f{bottom:436.575000px;}
.y157{bottom:439.095000px;}
.y1e5{bottom:439.815000px;}
.y207{bottom:442.695000px;}
.y1d0{bottom:444.855000px;}
.y88{bottom:445.575000px;}
.yb5{bottom:447.195000px;}
.y13e{bottom:448.815000px;}
.y183{bottom:451.695000px;}
.ycf{bottom:452.955000px;}
.y51{bottom:453.675000px;}
.y21e{bottom:453.855000px;}
.y156{bottom:456.195000px;}
.y206{bottom:459.975000px;}
.y1cf{bottom:462.135000px;}
.y87{bottom:462.855000px;}
.yb4{bottom:464.475000px;}
.y13d{bottom:466.095000px;}
.y182{bottom:468.975000px;}
.yce{bottom:470.235000px;}
.y50{bottom:470.955000px;}
.y155{bottom:473.475000px;}
.y1ce{bottom:479.415000px;}
.y1aa{bottom:479.595000px;}
.y86{bottom:479.955000px;}
.yb3{bottom:481.755000px;}
.y13c{bottom:483.195000px;}
.ye{bottom:484.864502px;}
.y181{bottom:486.255000px;}
.ycd{bottom:487.515000px;}
.y4f{bottom:488.235000px;}
.y154{bottom:490.755000px;}
.y1cd{bottom:496.695000px;}
.y85{bottom:497.235000px;}
.yb2{bottom:499.035000px;}
.y13b{bottom:500.475000px;}
.yd{bottom:502.864502px;}
.y180{bottom:503.535000px;}
.y4e{bottom:505.155000px;}
.y153{bottom:508.035000px;}
.y21d{bottom:510.015000px;}
.ycc{bottom:513.435000px;}
.y1cc{bottom:513.975000px;}
.y1ea{bottom:514.515000px;}
.yb1{bottom:516.315000px;}
.y13a{bottom:517.755000px;}
.y17f{bottom:520.815000px;}
.yc{bottom:520.864502px;}
.y4d{bottom:522.615000px;}
.y84{bottom:523.515000px;}
.y21c{bottom:527.295000px;}
.y1cb{bottom:531.255000px;}
.y1e9{bottom:531.795000px;}
.yb0{bottom:533.595000px;}
.y152{bottom:534.315000px;}
.yf4{bottom:534.675000px;}
.y139{bottom:535.035000px;}
.y17e{bottom:538.095000px;}
.yb{bottom:538.864499px;}
.y4c{bottom:539.895000px;}
.ycb{bottom:540.075000px;}
.y83{bottom:540.795000px;}
.y237{bottom:542.595000px;}
.y21b{bottom:544.575000px;}
.y1ca{bottom:548.355000px;}
.y1e8{bottom:549.075000px;}
.y151{bottom:551.595000px;}
.y138{bottom:552.315000px;}
.y17d{bottom:555.195000px;}
.ya{bottom:556.864499px;}
.y4b{bottom:557.175000px;}
.y82{bottom:558.075000px;}
.yaf{bottom:559.695000px;}
.y21a{bottom:561.855000px;}
.yf3{bottom:563.295000px;}
.y1c9{bottom:565.635000px;}
.yca{bottom:566.355000px;}
.y150{bottom:568.695000px;}
.y137{bottom:569.595000px;}
.y17c{bottom:572.475000px;}
.y4a{bottom:574.455000px;}
.y81{bottom:575.355000px;}
.yae{bottom:576.975000px;}
.yf2{bottom:580.575000px;}
.y236{bottom:581.475000px;}
.y1c8{bottom:582.915000px;}
.yc9{bottom:583.455000px;}
.y14f{bottom:585.975000px;}
.y1e4{bottom:586.695000px;}
.y17b{bottom:589.755000px;}
.y49{bottom:591.735000px;}
.y80{bottom:592.455000px;}
.y12a{bottom:592.815000px;}
.yad{bottom:594.255000px;}
.y235{bottom:598.755000px;}
.y1c7{bottom:600.195000px;}
.yc8{bottom:600.735000px;}
.y14e{bottom:603.255000px;}
.y1e3{bottom:603.975000px;}
.y17a{bottom:607.035000px;}
.yf1{bottom:607.215000px;}
.y48{bottom:609.015000px;}
.y7f{bottom:609.735000px;}
.yac{bottom:611.535000px;}
.y205{bottom:616.035000px;}
.y1c6{bottom:617.475000px;}
.yc7{bottom:618.015000px;}
.y1a0{bottom:620.175000px;}
.y14d{bottom:620.535000px;}
.y1e2{bottom:621.255000px;}
.y179{bottom:624.315000px;}
.yf0{bottom:624.495000px;}
.y47{bottom:626.115000px;}
.y7e{bottom:627.015000px;}
.yab{bottom:628.815000px;}
.y204{bottom:633.315000px;}
.y1c5{bottom:634.575000px;}
.yc6{bottom:635.295000px;}
.y14c{bottom:637.815000px;}
.y1e1{bottom:638.535000px;}
.y219{bottom:639.795000px;}
.y178{bottom:641.595000px;}
.yef{bottom:641.775000px;}
.y46{bottom:643.395000px;}
.y7d{bottom:644.295000px;}
.y9{bottom:645.510000px;}
.yaa{bottom:645.915000px;}
.y203{bottom:650.415000px;}
.y1c4{bottom:651.855000px;}
.yc5{bottom:652.575000px;}
.y14b{bottom:654.945000px;}
.y19f{bottom:655.485000px;}
.y1e0{bottom:655.845000px;}
.y218{bottom:657.105000px;}
.y177{bottom:658.725000px;}
.yee{bottom:658.905000px;}
.y45{bottom:660.705000px;}
.y7c{bottom:661.605000px;}
.ya9{bottom:663.225000px;}
.y8{bottom:666.771000px;}
.y202{bottom:667.725000px;}
.y14a{bottom:672.225000px;}
.y19e{bottom:672.585000px;}
.y1df{bottom:672.945000px;}
.y217{bottom:674.205000px;}
.y1c3{bottom:675.105000px;}
.y176{bottom:676.005000px;}
.yed{bottom:676.185000px;}
.y234{bottom:676.725000px;}
.y44{bottom:677.985000px;}
.y7b{bottom:678.705000px;}
.ya8{bottom:689.505000px;}
.y1de{bottom:690.225000px;}
.y175{bottom:693.285000px;}
.yec{bottom:693.465000px;}
.y233{bottom:694.005000px;}
.y43{bottom:695.265000px;}
.y7a{bottom:695.985000px;}
.y19d{bottom:699.225000px;}
.ya7{bottom:706.785000px;}
.y1dd{bottom:707.505000px;}
.y174{bottom:710.565000px;}
.yeb{bottom:710.745000px;}
.y232{bottom:711.285000px;}
.y42{bottom:712.365000px;}
.yc4{bottom:713.265000px;}
.y19c{bottom:716.505000px;}
.y79{bottom:722.265000px;}
.ya6{bottom:724.065000px;}
.y1dc{bottom:724.785000px;}
.y7{bottom:726.298500px;}
.y173{bottom:727.845000px;}
.yea{bottom:728.025000px;}
.y41{bottom:729.645000px;}
.yc3{bottom:730.545000px;}
.y231{bottom:733.065000px;}
.y78{bottom:739.545000px;}
.y11e{bottom:739.725000px;}
.ya5{bottom:741.345000px;}
.y1db{bottom:742.065000px;}
.y19b{bottom:742.785000px;}
.y172{bottom:744.945000px;}
.ye9{bottom:745.305000px;}
.y40{bottom:746.925000px;}
.y1e7{bottom:747.825000px;}
.y230{bottom:750.345000px;}
.y4{bottom:752.599495px;}
.y77{bottom:756.825000px;}
.ya4{bottom:758.445000px;}
.y1da{bottom:759.345000px;}
.y19a{bottom:760.065000px;}
.y171{bottom:762.225000px;}
.ye8{bottom:762.405000px;}
.y201{bottom:762.945000px;}
.y3f{bottom:764.205000px;}
.y22f{bottom:767.445000px;}
.y216{bottom:769.605000px;}
.y76{bottom:774.105000px;}
.ya3{bottom:775.725000px;}
.y1d9{bottom:776.445000px;}
.y199{bottom:777.345000px;}
.y170{bottom:779.505000px;}
.ye7{bottom:779.685000px;}
.y200{bottom:780.225000px;}
.y3e{bottom:781.125000px;}
.y215{bottom:786.705000px;}
.y22e{bottom:789.225000px;}
.y75{bottom:791.205000px;}
.ya2{bottom:793.005000px;}
.y1d8{bottom:793.725000px;}
.y198{bottom:794.445000px;}
.y16f{bottom:796.785000px;}
.ye6{bottom:796.965000px;}
.y1ff{bottom:797.505000px;}
.y3d{bottom:798.405000px;}
.y149{bottom:801.645000px;}
.y214{bottom:803.985000px;}
.y22d{bottom:806.505000px;}
.y74{bottom:808.485000px;}
.ya1{bottom:810.285000px;}
.y197{bottom:811.725000px;}
.y16e{bottom:814.065000px;}
.y1fe{bottom:814.785000px;}
.y3c{bottom:815.505000px;}
.y1bb{bottom:815.685000px;}
.y1d7{bottom:820.005000px;}
.y213{bottom:821.265000px;}
.ye5{bottom:823.245000px;}
.y22c{bottom:823.785000px;}
.y73{bottom:825.765000px;}
.y148{bottom:828.285000px;}
.y196{bottom:829.005000px;}
.y33{bottom:830.265000px;}
.y16d{bottom:831.345000px;}
.ya0{bottom:836.205000px;}
.y1fd{bottom:836.565000px;}
.y1d6{bottom:837.285000px;}
.ye4{bottom:840.525000px;}
.y72{bottom:843.045000px;}
.y22b{bottom:845.565000px;}
.y195{bottom:846.285000px;}
.y16c{bottom:848.445000px;}
.y1fc{bottom:853.845000px;}
.y147{bottom:854.565000px;}
.ye3{bottom:857.625000px;}
.y71{bottom:860.325000px;}
.y9f{bottom:862.845000px;}
.y194{bottom:863.565000px;}
.y16b{bottom:865.725000px;}
.y1fb{bottom:870.945000px;}
.y146{bottom:871.845000px;}
.ye2{bottom:874.905000px;}
.y70{bottom:877.605000px;}
.y3{bottom:879.369000px;}
.y22a{bottom:879.945000px;}
.y193{bottom:880.845000px;}
.y16a{bottom:883.005000px;}
.yc2{bottom:886.605000px;}
.y9e{bottom:888.945000px;}
.ye1{bottom:892.185000px;}
.y1fa{bottom:892.725000px;}
.y6f{bottom:894.705000px;}
.y192{bottom:897.990000px;}
.y212{bottom:899.250000px;}
.y229{bottom:901.770000px;}
.yc1{bottom:903.750000px;}
.y9d{bottom:906.270000px;}
.ye0{bottom:909.510000px;}
.y1f9{bottom:910.050000px;}
.y169{bottom:913.650000px;}
.y191{bottom:915.270000px;}
.y211{bottom:916.530000px;}
.y228{bottom:919.050000px;}
.y6e{bottom:921.030000px;}
.y9c{bottom:923.550000px;}
.ydf{bottom:926.790000px;}
.y1f8{bottom:927.330000px;}
.y168{bottom:932.370000px;}
.y190{bottom:932.550000px;}
.y210{bottom:933.810000px;}
.y227{bottom:936.330000px;}
.y6d{bottom:938.310000px;}
.y9b{bottom:940.830000px;}
.yde{bottom:944.070000px;}
.y2{bottom:945.126001px;}
.y1f7{bottom:949.110000px;}
.y18f{bottom:949.830000px;}
.y167{bottom:950.910000px;}
.y23b{bottom:951.090000px;}
.y10c{bottom:953.790000px;}
.y6c{bottom:955.590000px;}
.y9a{bottom:958.110000px;}
.ydd{bottom:961.170000px;}
.y1f6{bottom:966.390000px;}
.y1{bottom:966.726000px;}
.y18e{bottom:967.110000px;}
.y23a{bottom:968.370000px;}
.y166{bottom:969.450000px;}
.y1b9{bottom:971.610000px;}
.y32{bottom:972.330000px;}
.y6b{bottom:972.870000px;}
.y99{bottom:975.390000px;}
.ydc{bottom:978.450000px;}
.y1f5{bottom:983.490000px;}
.y18d{bottom:984.390000px;}
.y165{bottom:988.170000px;}
.y31{bottom:989.610000px;}
.y6a{bottom:989.970000px;}
.y98{bottom:992.490000px;}
.y18c{bottom:1001.490000px;}
.ydb{bottom:1004.730000px;}
.y1f4{bottom:1005.270000px;}
.y164{bottom:1006.710000px;}
.y69{bottom:1007.250000px;}
.y97{bottom:1009.770000px;}
.y20f{bottom:1011.750000px;}
.y30{bottom:1014.270000px;}
.y18b{bottom:1018.770000px;}
.yda{bottom:1022.010000px;}
.y1f3{bottom:1022.550000px;}
.y68{bottom:1024.530000px;}
.y163{bottom:1025.430000px;}
.y96{bottom:1027.050000px;}
.y20e{bottom:1029.030000px;}
.y226{bottom:1031.550000px;}
.y2f{bottom:1033.350000px;}
.y18a{bottom:1036.050000px;}
.y1f2{bottom:1039.830000px;}
.y67{bottom:1041.810000px;}
.y162{bottom:1043.970000px;}
.y145{bottom:1044.330000px;}
.y2e{bottom:1045.230000px;}
.y20d{bottom:1046.310000px;}
.y225{bottom:1048.830000px;}
.yd9{bottom:1049.370000px;}
.y95{bottom:1053.330000px;}
.y1f1{bottom:1057.110000px;}
.y66{bottom:1059.090000px;}
.y161{bottom:1062.510000px;}
.y20c{bottom:1063.590000px;}
.y224{bottom:1066.110000px;}
.yd8{bottom:1066.470000px;}
.y2c{bottom:1066.830000px;}
.yc0{bottom:1068.090000px;}
.y94{bottom:1070.610000px;}
.y2d{bottom:1072.770000px;}
.y65{bottom:1076.370000px;}
.y1f0{bottom:1078.710000px;}
.y239{bottom:1080.870000px;}
.y160{bottom:1081.230000px;}
.ybf{bottom:1085.370000px;}
.y93{bottom:1087.710000px;}
.y2b{bottom:1088.250000px;}
.y64{bottom:1093.470000px;}
.yd7{bottom:1093.830000px;}
.y1ef{bottom:1095.990000px;}
.y238{bottom:1097.970000px;}
.y15f{bottom:1099.770000px;}
.ybe{bottom:1102.470000px;}
.y92{bottom:1104.990000px;}
.y2a{bottom:1106.430000px;}
.y63{bottom:1110.750000px;}
.y1ee{bottom:1113.270000px;}
.y15e{bottom:1118.490000px;}
.ybd{bottom:1119.750000px;}
.yd6{bottom:1121.190000px;}
.y91{bottom:1122.270000px;}
.y1b8{bottom:1127.670000px;}
.y29{bottom:1131.990000px;}
.y10b{bottom:1134.330000px;}
.y62{bottom:1136.670000px;}
.ybc{bottom:1137.030000px;}
.yd5{bottom:1138.470000px;}
.y1ed{bottom:1139.190000px;}
.y90{bottom:1139.550000px;}
.y61{bottom:1155.060000px;}
.y27{bottom:1157.580000px;}
.y5d{bottom:1172.700000px;}
.y24{bottom:1175.220000px;}
.h20{height:15.465000px;}
.h25{height:15.510000px;}
.h2b{height:22.125000px;}
.h30{height:22.170000px;}
.hb{height:32.040000px;}
.h8{height:32.130000px;}
.h1d{height:34.560000px;}
.h9{height:37.968000px;}
.h18{height:38.158594px;}
.h14{height:40.964766px;}
.h1b{height:41.385000px;}
.h13{height:42.086250px;}
.hc{height:43.506914px;}
.h22{height:45.061523px;}
.h1c{height:47.321367px;}
.h3{height:48.195000px;}
.h1e{height:49.868086px;}
.h29{height:50.218242px;}
.h2e{height:52.971680px;}
.h1a{height:52.998047px;}
.h7{height:54.240000px;}
.h19{height:54.421875px;}
.h23{height:56.320312px;}
.h6{height:56.952000px;}
.h2a{height:58.621992px;}
.h10{height:58.651172px;}
.h17{height:59.038594px;}
.h15{height:60.226875px;}
.h24{height:62.085000px;}
.h1f{height:62.327813px;}
.hd{height:63.824414px;}
.h2{height:65.088000px;}
.h11{height:66.757500px;}
.he{height:70.664062px;}
.hf{height:79.386328px;}
.h5{height:92.208000px;}
.h4{height:119.055004px;}
.h16{height:137.902500px;}
.h21{height:139.701000px;}
.h2d{height:139.845000px;}
.h32{height:139.860000px;}
.h28{height:146.190000px;}
.h2f{height:155.175000px;}
.h31{height:155.325000px;}
.h26{height:179.805000px;}
.h27{height:213.330000px;}
.h2c{height:295.755000px;}
.h12{height:1262.684910px;}
.ha{height:1262.700000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:72.525000px;}
.wc{width:73.245000px;}
.w10{width:83.865000px;}
.w11{width:94.881000px;}
.wa{width:115.221000px;}
.wd{width:147.801000px;}
.w12{width:169.410000px;}
.w9{width:173.535000px;}
.wf{width:200.715000px;}
.we{width:201.270000px;}
.w13{width:201.795000px;}
.w8{width:376.980000px;}
.wb{width:437.475000px;}
.w5{width:479.250000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w7{width:892.777500px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:4.665000px;}
.x6{left:8.085000px;}
.x8{left:14.400000px;}
.x22{left:17.265000px;}
.x25{left:19.425000px;}
.x27{left:20.730000px;}
.x29{left:24.120000px;}
.x1e{left:34.560000px;}
.x20{left:43.545000px;}
.x1c{left:63.705000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:170.145000px;}
.x14{left:174.990000px;}
.x19{left:191.370000px;}
.x4{left:203.484001px;}
.xc{left:209.910000px;}
.x17{left:211.740000px;}
.x1a{left:214.050000px;}
.x23{left:230.250000px;}
.x18{left:239.820000px;}
.x16{left:243.405000px;}
.x9{left:246.630000px;}
.x26{left:255.645000px;}
.x10{left:259.950000px;}
.xa{left:276.555000px;}
.x15{left:285.375000px;}
.x11{left:303.015000px;}
.x1d{left:319.395000px;}
.xf{left:344.235000px;}
.x28{left:351.255000px;}
.x24{left:353.235000px;}
.x1b{left:357.735000px;}
.x13{left:386.175000px;}
.xb{left:446.505000px;}
.x3{left:454.959000px;}
.x1f{left:521.400000px;}
.xd{left:530.362500px;}
.x12{left:548.580000px;}
.xe{left:553.605000px;}
.x7{left:649.410000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls10{letter-spacing:-4.250667pt;}
.ls12{letter-spacing:-3.824000pt;}
.lsc{letter-spacing:-0.592000pt;}
.ls19{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.269867pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls17{letter-spacing:-0.183467pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.048640pt;}
.lsb{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.097067pt;}
.ls9{letter-spacing:0.114667pt;}
.ls7{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.208640pt;}
.lsd{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.231040pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.426667pt;}
.ls1d{letter-spacing:0.736000pt;}
.ls21{letter-spacing:0.869333pt;}
.lse{letter-spacing:1.440000pt;}
.ls1a{letter-spacing:4.000000pt;}
.ls16{letter-spacing:9.120000pt;}
.ls1c{letter-spacing:13.600000pt;}
.ls5{letter-spacing:64.000000pt;}
.ls4{letter-spacing:1243.835307pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1{word-spacing:-27.649493pt;}
.ws3{word-spacing:-14.720000pt;}
.ws16{word-spacing:-14.149333pt;}
.ws11{word-spacing:-14.016000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.ws15{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.463467pt;}
.ws9{word-spacing:-13.374933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.688000pt;}
.ws2{word-spacing:-12.208427pt;}
.wsd{word-spacing:-12.096000pt;}
.ws8{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.904000pt;}
.wsf{word-spacing:-11.808000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws0{word-spacing:0.000000pt;}
._25{margin-left:-5.424000pt;}
._24{margin-left:-4.460160pt;}
._15{margin-left:-2.884480pt;}
._e{margin-left:-1.995520pt;}
._2{margin-left:-1.048320pt;}
._0{width:1.062400pt;}
._9{width:2.450987pt;}
._d{width:3.346560pt;}
._8{width:4.568320pt;}
._5{width:5.843200pt;}
._6{width:6.790400pt;}
._a{width:8.030080pt;}
._19{width:9.047040pt;}
._23{width:9.982507pt;}
._7{width:10.875520pt;}
._4{width:12.332800pt;}
._b{width:14.183040pt;}
._c{width:15.564160pt;}
._1c{width:16.892160pt;}
._1b{width:17.954560pt;}
._14{width:18.923520pt;}
._10{width:20.663680pt;}
._f{width:21.860480pt;}
._22{width:23.224320pt;}
._21{width:24.527360pt;}
._18{width:26.028800pt;}
._16{width:27.409920pt;}
._17{width:28.740480pt;}
._1e{width:30.119040pt;}
._1f{width:31.022080pt;}
._1a{width:33.127040pt;}
._1d{width:34.042240pt;}
._13{width:35.002880pt;}
._12{width:35.962240pt;}
._2c{width:36.972800pt;}
._20{width:39.946240pt;}
._31{width:41.327360pt;}
._2b{width:43.780480pt;}
._2a{width:44.823680pt;}
._29{width:47.329920pt;}
._27{width:49.614080pt;}
._28{width:50.527360pt;}
._3{width:63.938560pt;}
._2f{width:73.783680pt;}
._2e{width:74.686720pt;}
._2d{width:91.632000pt;}
._32{width:92.727680pt;}
._30{width:97.041280pt;}
._26{width:754.880000pt;}
._1{width:1158.666667pt;}
._11{width:1415.996160pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:2.560000pt;}
.y5b{bottom:2.706667pt;}
.yff{bottom:2.866667pt;}
.y3b{bottom:2.880000pt;}
.y1b3{bottom:3.040000pt;}
.y60{bottom:3.200000pt;}
.y58{bottom:5.746667pt;}
.y1a1{bottom:8.480000pt;}
.y25{bottom:9.760000pt;}
.y26{bottom:10.240000pt;}
.y5e{bottom:12.480000pt;}
.y10a{bottom:14.386667pt;}
.y5a{bottom:14.866667pt;}
.y11d{bottom:14.880000pt;}
.y108{bottom:16.626667pt;}
.y1c2{bottom:16.640000pt;}
.yfe{bottom:16.666667pt;}
.y1b2{bottom:16.800000pt;}
.y3a{bottom:18.240000pt;}
.y5f{bottom:18.560000pt;}
.y132{bottom:22.400000pt;}
.y59{bottom:27.186667pt;}
.y109{bottom:29.266667pt;}
.y11c{bottom:29.600000pt;}
.y107{bottom:30.386667pt;}
.yfd{bottom:30.426667pt;}
.y1b7{bottom:30.546667pt;}
.y1b1{bottom:30.560000pt;}
.y39{bottom:33.920000pt;}
.y131{bottom:36.160000pt;}
.y104{bottom:38.906667pt;}
.y106{bottom:44.306667pt;}
.y1b0{bottom:44.320000pt;}
.yfc{bottom:44.346667pt;}
.y11b{bottom:44.480000pt;}
.y38{bottom:49.280000pt;}
.y130{bottom:49.920000pt;}
.y114{bottom:52.320000pt;}
.y103{bottom:53.626667pt;}
.y1b6{bottom:58.066667pt;}
.y1c1{bottom:58.080000pt;}
.yfb{bottom:58.106667pt;}
.y1af{bottom:58.240000pt;}
.y6{bottom:59.133337pt;}
.y11a{bottom:59.360000pt;}
.y136{bottom:59.386667pt;}
.y12f{bottom:63.866667pt;}
.y37{bottom:64.680000pt;}
.y113{bottom:66.080000pt;}
.y127{bottom:68.320000pt;}
.y102{bottom:68.506667pt;}
.y1b5{bottom:71.826667pt;}
.y1c0{bottom:71.840000pt;}
.yfa{bottom:71.866667pt;}
.y1ae{bottom:72.000000pt;}
.y135{bottom:74.266667pt;}
.y119{bottom:74.400000pt;}
.y12e{bottom:77.626667pt;}
.y112{bottom:79.840000pt;}
.y36{bottom:80.040000pt;}
.y126{bottom:82.080000pt;}
.y101{bottom:83.386667pt;}
.yf9{bottom:85.626667pt;}
.y1ad{bottom:85.760000pt;}
.y1bf{bottom:85.800000pt;}
.y5{bottom:86.333337pt;}
.y134{bottom:89.146667pt;}
.y118{bottom:89.280000pt;}
.y12d{bottom:91.386667pt;}
.y111{bottom:93.760000pt;}
.y35{bottom:94.920000pt;}
.y125{bottom:96.000000pt;}
.y100{bottom:98.266667pt;}
.y1ac{bottom:99.520000pt;}
.yf8{bottom:99.546667pt;}
.y1be{bottom:99.560000pt;}
.y133{bottom:104.026667pt;}
.y117{bottom:104.160000pt;}
.y12c{bottom:105.146667pt;}
.y110{bottom:107.520000pt;}
.y124{bottom:109.760000pt;}
.y34{bottom:110.280000pt;}
.yf7{bottom:113.306667pt;}
.y1bd{bottom:113.320000pt;}
.y1ab{bottom:113.440000pt;}
.y116{bottom:119.040000pt;}
.y12b{bottom:119.066667pt;}
.y10f{bottom:121.280000pt;}
.y123{bottom:123.520000pt;}
.y23{bottom:123.790666pt;}
.y1b4{bottom:127.066667pt;}
.y1bc{bottom:127.080000pt;}
.y1ba{bottom:127.200000pt;}
.y115{bottom:133.920000pt;}
.y10e{bottom:135.040000pt;}
.y122{bottom:137.280000pt;}
.y10d{bottom:148.960000pt;}
.y129{bottom:149.000000pt;}
.y121{bottom:151.240000pt;}
.y128{bottom:163.880000pt;}
.y120{bottom:165.000000pt;}
.y1a9{bottom:169.146667pt;}
.y1a{bottom:175.052000pt;}
.y11f{bottom:178.760000pt;}
.y1a8{bottom:182.906667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y1a7{bottom:196.826667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y1a6{bottom:210.586667pt;}
.y1a5{bottom:224.346667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y1a4{bottom:238.106667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y28{bottom:247.386667pt;}
.y1a3{bottom:252.026667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y5c{bottom:287.386667pt;}
.y1ec{bottom:287.706667pt;}
.y1a2{bottom:287.720000pt;}
.y8f{bottom:288.666667pt;}
.y144{bottom:291.546667pt;}
.y105{bottom:294.600000pt;}
.ybb{bottom:297.466667pt;}
.y15d{bottom:298.266667pt;}
.y57{bottom:298.280000pt;}
.y189{bottom:301.466667pt;}
.y8e{bottom:304.026667pt;}
.y143{bottom:306.906667pt;}
.y223{bottom:307.386667pt;}
.y11{bottom:309.452000pt;}
.y1eb{bottom:311.386667pt;}
.yba{bottom:312.826667pt;}
.y15c{bottom:313.466667pt;}
.y188{bottom:316.826667pt;}
.y1d5{bottom:318.746667pt;}
.y8d{bottom:319.386667pt;}
.y142{bottom:322.266667pt;}
.y222{bottom:322.586667pt;}
.yd4{bottom:325.946667pt;}
.y20b{bottom:328.186667pt;}
.y15b{bottom:328.826667pt;}
.y187{bottom:332.186667pt;}
.y1d4{bottom:334.106667pt;}
.y8c{bottom:334.586667pt;}
.yb9{bottom:336.186667pt;}
.y141{bottom:337.626667pt;}
.y56{bottom:337.946667pt;}
.yd3{bottom:341.306667pt;}
.y20a{bottom:343.546667pt;}
.y10{bottom:343.809333pt;}
.y15a{bottom:344.186667pt;}
.y186{bottom:347.546667pt;}
.y1d3{bottom:349.466667pt;}
.y8b{bottom:349.946667pt;}
.yf6{bottom:350.440000pt;}
.yb8{bottom:351.546667pt;}
.y55{bottom:352.186667pt;}
.y140{bottom:352.826667pt;}
.y221{bottom:353.306667pt;}
.yd2{bottom:356.666667pt;}
.y54{bottom:356.826667pt;}
.y209{bottom:358.906667pt;}
.y159{bottom:359.546667pt;}
.yf{bottom:362.706666pt;}
.y1d2{bottom:364.826667pt;}
.y8a{bottom:365.346667pt;}
.yb7{bottom:366.946667pt;}
.y1e6{bottom:367.266667pt;}
.y53{bottom:368.226667pt;}
.y185{bottom:370.946667pt;}
.yd1{bottom:372.066667pt;}
.y220{bottom:372.706667pt;}
.y158{bottom:374.946667pt;}
.y208{bottom:378.306667pt;}
.y1d1{bottom:380.226667pt;}
.y89{bottom:380.706667pt;}
.yb6{bottom:382.306667pt;}
.y13f{bottom:383.586667pt;}
.y184{bottom:386.306667pt;}
.yd0{bottom:387.426667pt;}
.y52{bottom:387.746667pt;}
.y21f{bottom:388.066667pt;}
.y157{bottom:390.306667pt;}
.y1e5{bottom:390.946667pt;}
.y207{bottom:393.506667pt;}
.y1d0{bottom:395.426667pt;}
.y88{bottom:396.066667pt;}
.yb5{bottom:397.506667pt;}
.y13e{bottom:398.946667pt;}
.y183{bottom:401.506667pt;}
.ycf{bottom:402.626667pt;}
.y51{bottom:403.266667pt;}
.y21e{bottom:403.426667pt;}
.y156{bottom:405.506667pt;}
.y206{bottom:408.866667pt;}
.y1cf{bottom:410.786667pt;}
.y87{bottom:411.426667pt;}
.yb4{bottom:412.866667pt;}
.y13d{bottom:414.306667pt;}
.y182{bottom:416.866667pt;}
.yce{bottom:417.986667pt;}
.y50{bottom:418.626667pt;}
.y155{bottom:420.866667pt;}
.y1ce{bottom:426.146667pt;}
.y1aa{bottom:426.306667pt;}
.y86{bottom:426.626667pt;}
.yb3{bottom:428.226667pt;}
.y13c{bottom:429.506667pt;}
.ye{bottom:430.990669pt;}
.y181{bottom:432.226667pt;}
.ycd{bottom:433.346667pt;}
.y4f{bottom:433.986667pt;}
.y154{bottom:436.226667pt;}
.y1cd{bottom:441.506667pt;}
.y85{bottom:441.986667pt;}
.yb2{bottom:443.586667pt;}
.y13b{bottom:444.866667pt;}
.yd{bottom:446.990669pt;}
.y180{bottom:447.586667pt;}
.y4e{bottom:449.026667pt;}
.y153{bottom:451.586667pt;}
.y21d{bottom:453.346667pt;}
.ycc{bottom:456.386667pt;}
.y1cc{bottom:456.866667pt;}
.y1ea{bottom:457.346667pt;}
.yb1{bottom:458.946667pt;}
.y13a{bottom:460.226667pt;}
.y17f{bottom:462.946667pt;}
.yc{bottom:462.990669pt;}
.y4d{bottom:464.546667pt;}
.y84{bottom:465.346667pt;}
.y21c{bottom:468.706667pt;}
.y1cb{bottom:472.226667pt;}
.y1e9{bottom:472.706667pt;}
.yb0{bottom:474.306667pt;}
.y152{bottom:474.946667pt;}
.yf4{bottom:475.266667pt;}
.y139{bottom:475.586667pt;}
.y17e{bottom:478.306667pt;}
.yb{bottom:478.990666pt;}
.y4c{bottom:479.906667pt;}
.ycb{bottom:480.066667pt;}
.y83{bottom:480.706667pt;}
.y237{bottom:482.306667pt;}
.y21b{bottom:484.066667pt;}
.y1ca{bottom:487.426667pt;}
.y1e8{bottom:488.066667pt;}
.y151{bottom:490.306667pt;}
.y138{bottom:490.946667pt;}
.y17d{bottom:493.506667pt;}
.ya{bottom:494.990666pt;}
.y4b{bottom:495.266667pt;}
.y82{bottom:496.066667pt;}
.yaf{bottom:497.506667pt;}
.y21a{bottom:499.426667pt;}
.yf3{bottom:500.706667pt;}
.y1c9{bottom:502.786667pt;}
.yca{bottom:503.426667pt;}
.y150{bottom:505.506667pt;}
.y137{bottom:506.306667pt;}
.y17c{bottom:508.866667pt;}
.y4a{bottom:510.626667pt;}
.y81{bottom:511.426667pt;}
.yae{bottom:512.866667pt;}
.yf2{bottom:516.066667pt;}
.y236{bottom:516.866667pt;}
.y1c8{bottom:518.146667pt;}
.yc9{bottom:518.626667pt;}
.y14f{bottom:520.866667pt;}
.y1e4{bottom:521.506667pt;}
.y17b{bottom:524.226667pt;}
.y49{bottom:525.986667pt;}
.y80{bottom:526.626667pt;}
.y12a{bottom:526.946667pt;}
.yad{bottom:528.226667pt;}
.y235{bottom:532.226667pt;}
.y1c7{bottom:533.506667pt;}
.yc8{bottom:533.986667pt;}
.y14e{bottom:536.226667pt;}
.y1e3{bottom:536.866667pt;}
.y17a{bottom:539.586667pt;}
.yf1{bottom:539.746667pt;}
.y48{bottom:541.346667pt;}
.y7f{bottom:541.986667pt;}
.yac{bottom:543.586667pt;}
.y205{bottom:547.586667pt;}
.y1c6{bottom:548.866667pt;}
.yc7{bottom:549.346667pt;}
.y1a0{bottom:551.266667pt;}
.y14d{bottom:551.586667pt;}
.y1e2{bottom:552.226667pt;}
.y179{bottom:554.946667pt;}
.yf0{bottom:555.106667pt;}
.y47{bottom:556.546667pt;}
.y7e{bottom:557.346667pt;}
.yab{bottom:558.946667pt;}
.y204{bottom:562.946667pt;}
.y1c5{bottom:564.066667pt;}
.yc6{bottom:564.706667pt;}
.y14c{bottom:566.946667pt;}
.y1e1{bottom:567.586667pt;}
.y219{bottom:568.706667pt;}
.y178{bottom:570.306667pt;}
.yef{bottom:570.466667pt;}
.y46{bottom:571.906667pt;}
.y7d{bottom:572.706667pt;}
.y9{bottom:573.786667pt;}
.yaa{bottom:574.146667pt;}
.y203{bottom:578.146667pt;}
.y1c4{bottom:579.426667pt;}
.yc5{bottom:580.066667pt;}
.y14b{bottom:582.173333pt;}
.y19f{bottom:582.653333pt;}
.y1e0{bottom:582.973333pt;}
.y218{bottom:584.093333pt;}
.y177{bottom:585.533333pt;}
.yee{bottom:585.693333pt;}
.y45{bottom:587.293333pt;}
.y7c{bottom:588.093333pt;}
.ya9{bottom:589.533333pt;}
.y8{bottom:592.685334pt;}
.y202{bottom:593.533333pt;}
.y14a{bottom:597.533333pt;}
.y19e{bottom:597.853333pt;}
.y1df{bottom:598.173333pt;}
.y217{bottom:599.293333pt;}
.y1c3{bottom:600.093333pt;}
.y176{bottom:600.893333pt;}
.yed{bottom:601.053333pt;}
.y234{bottom:601.533333pt;}
.y44{bottom:602.653333pt;}
.y7b{bottom:603.293333pt;}
.ya8{bottom:612.893333pt;}
.y1de{bottom:613.533333pt;}
.y175{bottom:616.253333pt;}
.yec{bottom:616.413333pt;}
.y233{bottom:616.893333pt;}
.y43{bottom:618.013333pt;}
.y7a{bottom:618.653333pt;}
.y19d{bottom:621.533333pt;}
.ya7{bottom:628.253333pt;}
.y1dd{bottom:628.893333pt;}
.y174{bottom:631.613333pt;}
.yeb{bottom:631.773333pt;}
.y232{bottom:632.253333pt;}
.y42{bottom:633.213333pt;}
.yc4{bottom:634.013333pt;}
.y19c{bottom:636.893333pt;}
.y79{bottom:642.013333pt;}
.ya6{bottom:643.613333pt;}
.y1dc{bottom:644.253333pt;}
.y7{bottom:645.598667pt;}
.y173{bottom:646.973333pt;}
.yea{bottom:647.133333pt;}
.y41{bottom:648.573333pt;}
.yc3{bottom:649.373333pt;}
.y231{bottom:651.613333pt;}
.y78{bottom:657.373333pt;}
.y11e{bottom:657.533333pt;}
.ya5{bottom:658.973333pt;}
.y1db{bottom:659.613333pt;}
.y19b{bottom:660.253333pt;}
.y172{bottom:662.173333pt;}
.ye9{bottom:662.493333pt;}
.y40{bottom:663.933333pt;}
.y1e7{bottom:664.733333pt;}
.y230{bottom:666.973333pt;}
.y4{bottom:668.977329pt;}
.y77{bottom:672.733333pt;}
.ya4{bottom:674.173333pt;}
.y1da{bottom:674.973333pt;}
.y19a{bottom:675.613333pt;}
.y171{bottom:677.533333pt;}
.ye8{bottom:677.693333pt;}
.y201{bottom:678.173333pt;}
.y3f{bottom:679.293333pt;}
.y22f{bottom:682.173333pt;}
.y216{bottom:684.093333pt;}
.y76{bottom:688.093333pt;}
.ya3{bottom:689.533333pt;}
.y1d9{bottom:690.173333pt;}
.y199{bottom:690.973333pt;}
.y170{bottom:692.893333pt;}
.ye7{bottom:693.053333pt;}
.y200{bottom:693.533333pt;}
.y3e{bottom:694.333333pt;}
.y215{bottom:699.293333pt;}
.y22e{bottom:701.533333pt;}
.y75{bottom:703.293333pt;}
.ya2{bottom:704.893333pt;}
.y1d8{bottom:705.533333pt;}
.y198{bottom:706.173333pt;}
.y16f{bottom:708.253333pt;}
.ye6{bottom:708.413333pt;}
.y1ff{bottom:708.893333pt;}
.y3d{bottom:709.693333pt;}
.y149{bottom:712.573333pt;}
.y214{bottom:714.653333pt;}
.y22d{bottom:716.893333pt;}
.y74{bottom:718.653333pt;}
.ya1{bottom:720.253333pt;}
.y197{bottom:721.533333pt;}
.y16e{bottom:723.613333pt;}
.y1fe{bottom:724.253333pt;}
.y3c{bottom:724.893333pt;}
.y1bb{bottom:725.053333pt;}
.y1d7{bottom:728.893333pt;}
.y213{bottom:730.013333pt;}
.ye5{bottom:731.773333pt;}
.y22c{bottom:732.253333pt;}
.y73{bottom:734.013333pt;}
.y148{bottom:736.253333pt;}
.y196{bottom:736.893333pt;}
.y33{bottom:738.013333pt;}
.y16d{bottom:738.973333pt;}
.ya0{bottom:743.293333pt;}
.y1fd{bottom:743.613333pt;}
.y1d6{bottom:744.253333pt;}
.ye4{bottom:747.133333pt;}
.y72{bottom:749.373333pt;}
.y22b{bottom:751.613333pt;}
.y195{bottom:752.253333pt;}
.y16c{bottom:754.173333pt;}
.y1fc{bottom:758.973333pt;}
.y147{bottom:759.613333pt;}
.ye3{bottom:762.333333pt;}
.y71{bottom:764.733333pt;}
.y9f{bottom:766.973333pt;}
.y194{bottom:767.613333pt;}
.y16b{bottom:769.533333pt;}
.y1fb{bottom:774.173333pt;}
.y146{bottom:774.973333pt;}
.ye2{bottom:777.693333pt;}
.y70{bottom:780.093333pt;}
.y3{bottom:781.661334pt;}
.y22a{bottom:782.173333pt;}
.y193{bottom:782.973333pt;}
.y16a{bottom:784.893333pt;}
.yc2{bottom:788.093333pt;}
.y9e{bottom:790.173333pt;}
.ye1{bottom:793.053333pt;}
.y1fa{bottom:793.533333pt;}
.y6f{bottom:795.293333pt;}
.y192{bottom:798.213333pt;}
.y212{bottom:799.333333pt;}
.y229{bottom:801.573333pt;}
.yc1{bottom:803.333333pt;}
.y9d{bottom:805.573333pt;}
.ye0{bottom:808.453333pt;}
.y1f9{bottom:808.933333pt;}
.y169{bottom:812.133333pt;}
.y191{bottom:813.573333pt;}
.y211{bottom:814.693333pt;}
.y228{bottom:816.933333pt;}
.y6e{bottom:818.693333pt;}
.y9c{bottom:820.933333pt;}
.ydf{bottom:823.813333pt;}
.y1f8{bottom:824.293333pt;}
.y168{bottom:828.773333pt;}
.y190{bottom:828.933333pt;}
.y210{bottom:830.053333pt;}
.y227{bottom:832.293333pt;}
.y6d{bottom:834.053333pt;}
.y9b{bottom:836.293333pt;}
.yde{bottom:839.173333pt;}
.y2{bottom:840.112001pt;}
.y1f7{bottom:843.653333pt;}
.y18f{bottom:844.293333pt;}
.y167{bottom:845.253333pt;}
.y23b{bottom:845.413333pt;}
.y10c{bottom:847.813333pt;}
.y6c{bottom:849.413333pt;}
.y9a{bottom:851.653333pt;}
.ydd{bottom:854.373333pt;}
.y1f6{bottom:859.013333pt;}
.y1{bottom:859.312000pt;}
.y18e{bottom:859.653333pt;}
.y23a{bottom:860.773333pt;}
.y166{bottom:861.733333pt;}
.y1b9{bottom:863.653333pt;}
.y32{bottom:864.293333pt;}
.y6b{bottom:864.773333pt;}
.y99{bottom:867.013333pt;}
.ydc{bottom:869.733333pt;}
.y1f5{bottom:874.213333pt;}
.y18d{bottom:875.013333pt;}
.y165{bottom:878.373333pt;}
.y31{bottom:879.653333pt;}
.y6a{bottom:879.973333pt;}
.y98{bottom:882.213333pt;}
.y18c{bottom:890.213333pt;}
.ydb{bottom:893.093333pt;}
.y1f4{bottom:893.573333pt;}
.y164{bottom:894.853333pt;}
.y69{bottom:895.333333pt;}
.y97{bottom:897.573333pt;}
.y20f{bottom:899.333333pt;}
.y30{bottom:901.573333pt;}
.y18b{bottom:905.573333pt;}
.yda{bottom:908.453333pt;}
.y1f3{bottom:908.933333pt;}
.y68{bottom:910.693333pt;}
.y163{bottom:911.493333pt;}
.y96{bottom:912.933333pt;}
.y20e{bottom:914.693333pt;}
.y226{bottom:916.933333pt;}
.y2f{bottom:918.533333pt;}
.y18a{bottom:920.933333pt;}
.y1f2{bottom:924.293333pt;}
.y67{bottom:926.053333pt;}
.y162{bottom:927.973333pt;}
.y145{bottom:928.293333pt;}
.y2e{bottom:929.093333pt;}
.y20d{bottom:930.053333pt;}
.y225{bottom:932.293333pt;}
.yd9{bottom:932.773333pt;}
.y95{bottom:936.293333pt;}
.y1f1{bottom:939.653333pt;}
.y66{bottom:941.413333pt;}
.y161{bottom:944.453333pt;}
.y20c{bottom:945.413333pt;}
.y224{bottom:947.653333pt;}
.yd8{bottom:947.973333pt;}
.y2c{bottom:948.293333pt;}
.yc0{bottom:949.413333pt;}
.y94{bottom:951.653333pt;}
.y2d{bottom:953.573333pt;}
.y65{bottom:956.773333pt;}
.y1f0{bottom:958.853333pt;}
.y239{bottom:960.773333pt;}
.y160{bottom:961.093333pt;}
.ybf{bottom:964.773333pt;}
.y93{bottom:966.853333pt;}
.y2b{bottom:967.333333pt;}
.y64{bottom:971.973333pt;}
.yd7{bottom:972.293333pt;}
.y1ef{bottom:974.213333pt;}
.y238{bottom:975.973333pt;}
.y15f{bottom:977.573333pt;}
.ybe{bottom:979.973333pt;}
.y92{bottom:982.213333pt;}
.y2a{bottom:983.493333pt;}
.y63{bottom:987.333333pt;}
.y1ee{bottom:989.573333pt;}
.y15e{bottom:994.213333pt;}
.ybd{bottom:995.333333pt;}
.yd6{bottom:996.613333pt;}
.y91{bottom:997.573333pt;}
.y1b8{bottom:1002.373333pt;}
.y29{bottom:1006.213333pt;}
.y10b{bottom:1008.293333pt;}
.y62{bottom:1010.373333pt;}
.ybc{bottom:1010.693333pt;}
.yd5{bottom:1011.973333pt;}
.y1ed{bottom:1012.613333pt;}
.y90{bottom:1012.933333pt;}
.y61{bottom:1026.720000pt;}
.y27{bottom:1028.960000pt;}
.y5d{bottom:1042.400000pt;}
.y24{bottom:1044.640000pt;}
.h20{height:13.746667pt;}
.h25{height:13.786667pt;}
.h2b{height:19.666667pt;}
.h30{height:19.706667pt;}
.hb{height:28.480000pt;}
.h8{height:28.560000pt;}
.h1d{height:30.720000pt;}
.h9{height:33.749333pt;}
.h18{height:33.918750pt;}
.h14{height:36.413125pt;}
.h1b{height:36.786667pt;}
.h13{height:37.410000pt;}
.hc{height:38.672812pt;}
.h22{height:40.054688pt;}
.h1c{height:42.063437pt;}
.h3{height:42.840000pt;}
.h1e{height:44.327188pt;}
.h29{height:44.638438pt;}
.h2e{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h7{height:48.213333pt;}
.h19{height:48.375000pt;}
.h23{height:50.062500pt;}
.h6{height:50.624000pt;}
.h2a{height:52.108438pt;}
.h10{height:52.134375pt;}
.h17{height:52.478750pt;}
.h15{height:53.535000pt;}
.h24{height:55.186667pt;}
.h1f{height:55.402500pt;}
.hd{height:56.732813pt;}
.h2{height:57.856000pt;}
.h11{height:59.340000pt;}
.he{height:62.812500pt;}
.hf{height:70.565625pt;}
.h5{height:81.962667pt;}
.h4{height:105.826671pt;}
.h16{height:122.580000pt;}
.h21{height:124.178667pt;}
.h2d{height:124.306667pt;}
.h32{height:124.320000pt;}
.h28{height:129.946667pt;}
.h2f{height:137.933333pt;}
.h31{height:138.066667pt;}
.h26{height:159.826667pt;}
.h27{height:189.626667pt;}
.h2c{height:262.893333pt;}
.h12{height:1122.386587pt;}
.ha{height:1122.400000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:64.466667pt;}
.wc{width:65.106667pt;}
.w10{width:74.546667pt;}
.w11{width:84.338667pt;}
.wa{width:102.418667pt;}
.wd{width:131.378667pt;}
.w12{width:150.586667pt;}
.w9{width:154.253333pt;}
.wf{width:178.413333pt;}
.we{width:178.906667pt;}
.w13{width:179.373333pt;}
.w8{width:335.093333pt;}
.wb{width:388.866667pt;}
.w5{width:426.000000pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w7{width:793.580000pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:4.146667pt;}
.x6{left:7.186667pt;}
.x8{left:12.800000pt;}
.x22{left:15.346667pt;}
.x25{left:17.266667pt;}
.x27{left:18.426667pt;}
.x29{left:21.440000pt;}
.x1e{left:30.720000pt;}
.x20{left:38.706667pt;}
.x1c{left:56.626667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:151.240000pt;}
.x14{left:155.546667pt;}
.x19{left:170.106667pt;}
.x4{left:180.874667pt;}
.xc{left:186.586667pt;}
.x17{left:188.213333pt;}
.x1a{left:190.266667pt;}
.x23{left:204.666667pt;}
.x18{left:213.173333pt;}
.x16{left:216.360000pt;}
.x9{left:219.226667pt;}
.x26{left:227.240000pt;}
.x10{left:231.066667pt;}
.xa{left:245.826667pt;}
.x15{left:253.666667pt;}
.x11{left:269.346667pt;}
.x1d{left:283.906667pt;}
.xf{left:305.986667pt;}
.x28{left:312.226667pt;}
.x24{left:313.986667pt;}
.x1b{left:317.986667pt;}
.x13{left:343.266667pt;}
.xb{left:396.893333pt;}
.x3{left:404.408000pt;}
.x1f{left:463.466667pt;}
.xd{left:471.433333pt;}
.x12{left:487.626667pt;}
.xe{left:492.093333pt;}
.x7{left:577.253333pt;}
}




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