
    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_c79380ab03ed95664c82fd2b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_eeb304d1839a6f63e8d16cc4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_954735770f30e3ba263aa2a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_c72a67fbd9b99bb7e14a4efe.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_e5f5ac35af16b2fe7b801cba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_5200f246b1a04e7a933c1f87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_95fc06695cd193db124df36f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_643cbde98119eea023f6892d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a9f4cd365cfdfb1f2b382c84.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6b9d27bf24966bfb3a0b0b70.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.933105;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_48a083778ecd43e6d07a5765.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;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_9ac415e576a3c865df6c7b56.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.021484;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_68d5b44837f1a8887d586e4d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.021484;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_3e4e6d9100d669eb3cdf638c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091797;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_e40728d0caeecfaf2b51bbc5.woff2')format("woff");}.fff{font-family:fff;line-height:1.091797;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_aa0c451ace6a8c99906f45cf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.090332;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_1d8264b7bc72af70c8d0aa2f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.090332;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.739746;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls14{letter-spacing:-0.720000px;}
.ls22{letter-spacing:-0.504000px;}
.ls26{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.348600px;}
.lsb{letter-spacing:-0.331800px;}
.ls11{letter-spacing:-0.308400px;}
.ls1f{letter-spacing:-0.231600px;}
.ls13{letter-spacing:-0.229800px;}
.ls12{letter-spacing:-0.224400px;}
.ls8{letter-spacing:-0.175800px;}
.ls1d{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.138000px;}
.ls1e{letter-spacing:-0.107400px;}
.ls10{letter-spacing:-0.092400px;}
.ls4{letter-spacing:-0.083400px;}
.ls7{letter-spacing:-0.058320px;}
.ls20{letter-spacing:-0.036000px;}
.ls23{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.008640px;}
.ls19{letter-spacing:0.061200px;}
.ls18{letter-spacing:0.070560px;}
.lsa{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.077040px;}
.ls1b{letter-spacing:0.092880px;}
.lse{letter-spacing:0.115200px;}
.ls15{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.149760px;}
.ls1c{letter-spacing:0.208800px;}
.ls16{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.222000px;}
.ls0{letter-spacing:0.233280px;}
.ls9{letter-spacing:0.247800px;}
.ls5{letter-spacing:0.250800px;}
.ls25{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.433440px;}
.ls2{letter-spacing:0.661680px;}
.ls21{letter-spacing:12.528000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-66.240000px;}
.ws1{word-spacing:-66.156600px;}
.ws3{word-spacing:-32.076720px;}
.ws2{word-spacing:-31.967520px;}
.ws4{word-spacing:-31.716720px;}
.ws18{word-spacing:-19.038240px;}
.ws13{word-spacing:-18.808440px;}
.ws2a{word-spacing:-16.632000px;}
.ws16{word-spacing:-16.488000px;}
.ws15{word-spacing:-16.416000px;}
.ws14{word-spacing:-16.272000px;}
.ws2b{word-spacing:-15.912000px;}
.ws6{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.832240px;}
.wsd{word-spacing:-13.668720px;}
.ws7{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.446720px;}
.ws19{word-spacing:-13.398360px;}
.ws10{word-spacing:-13.354320px;}
.ws12{word-spacing:-13.222320px;}
.ws11{word-spacing:-13.138320px;}
.wse{word-spacing:-13.098120px;}
.ws5{word-spacing:-12.204000px;}
.wsc{word-spacing:-12.203280px;}
.ws8{word-spacing:-12.131280px;}
.ws9{word-spacing:-11.799480px;}
.ws26{word-spacing:-10.962000px;}
.ws1f{word-spacing:-10.815840px;}
.ws1c{word-spacing:-9.792720px;}
.wsb{word-spacing:0.000000px;}
.ws1a{word-spacing:0.559440px;}
.ws1e{word-spacing:124.774560px;}
.ws25{word-spacing:128.742000px;}
.ws21{word-spacing:140.314560px;}
.ws23{word-spacing:141.504000px;}
.ws20{word-spacing:145.020960px;}
.ws28{word-spacing:146.607456px;}
.ws1b{word-spacing:148.631760px;}
.ws27{word-spacing:149.646000px;}
.ws24{word-spacing:164.736000px;}
.ws22{word-spacing:166.020960px;}
.ws29{word-spacing:169.623072px;}
.ws1d{word-spacing:171.473520px;}
._4{margin-left:-6.139200px;}
._2{margin-left:-5.034480px;}
._8{margin-left:-3.995280px;}
._1{margin-left:-2.805120px;}
._0{margin-left:-1.058880px;}
._3{width:1.394400px;}
._b{width:2.450160px;}
._c{width:3.569040px;}
._14{width:5.033040px;}
._15{width:6.680640px;}
._9{width:7.888320px;}
._a{width:8.964000px;}
._12{width:10.105680px;}
._1b{width:11.349840px;}
._d{width:12.353520px;}
._18{width:13.572000px;}
._7{width:14.940000px;}
._13{width:15.941520px;}
._17{width:18.242880px;}
._22{width:19.365600px;}
._1a{width:20.405760px;}
._5{width:21.573360px;}
._6{width:22.649040px;}
._e{width:23.943840px;}
._16{width:24.947520px;}
._f{width:26.194320px;}
._11{width:28.318800px;}
._10{width:29.760480px;}
._19{width:30.770400px;}
._1d{width:32.138880px;}
._28{width:33.530880px;}
._2c{width:35.064000px;}
._2a{width:36.360000px;}
._1c{width:38.405760px;}
._23{width:39.960000px;}
._1f{width:48.434880px;}
._1e{width:49.442880px;}
._20{width:51.256080px;}
._21{width:59.832000px;}
._25{width:180.906720px;}
._27{width:186.006000px;}
._26{width:191.046720px;}
._29{width:192.518496px;}
._24{width:193.751760px;}
._2b{width:1905.336000px;}
.fc8{color:rgb(70,120,134);}
.fc6{color:rgb(200,163,194);}
.fc4{color:rgb(131,34,121);}
.fc3{color:rgb(163,14,12);}
.fc2{color:transparent;}
.fc7{color:rgb(89,89,89);}
.fc5{color:rgb(160,43,147);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs9{font-size:48.240000px;}
.fsc{font-size:48.384000px;}
.fsb{font-size:53.280000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:156.240000px;}
.y61{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y35{bottom:4.320000px;}
.y2{bottom:5.760000px;}
.y14e{bottom:12.210000px;}
.y139{bottom:12.855000px;}
.y142{bottom:13.245000px;}
.y16c{bottom:13.290000px;}
.y175{bottom:16.665000px;}
.y138{bottom:27.510000px;}
.y14d{bottom:28.515000px;}
.y141{bottom:29.520000px;}
.y16b{bottom:29.775000px;}
.y174{bottom:33.150000px;}
.y132{bottom:42.735000px;}
.y144{bottom:45.825000px;}
.y1{bottom:46.260000px;}
.y13b{bottom:46.875000px;}
.y5f{bottom:46.980000px;}
.y165{bottom:47.310000px;}
.y3{bottom:48.960000px;}
.y16e{bottom:50.580000px;}
.y145{bottom:64.515000px;}
.y5e{bottom:67.140000px;}
.y133{bottom:68.400000px;}
.y166{bottom:71.460000px;}
.y199{bottom:72.615000px;}
.y13c{bottom:75.960000px;}
.y122{bottom:77.190000px;}
.y16f{bottom:79.305000px;}
.y146{bottom:83.160000px;}
.y5d{bottom:87.336000px;}
.y134{bottom:94.065000px;}
.y121{bottom:95.550000px;}
.y167{bottom:95.580000px;}
.y147{bottom:101.850000px;}
.y19a{bottom:102.525000px;}
.y13d{bottom:105.015000px;}
.y170{bottom:108.000000px;}
.y120{bottom:113.910000px;}
.y100{bottom:114.156000px;}
.y34{bottom:114.696000px;}
.y11a{bottom:116.676000px;}
.yf3{bottom:118.476000px;}
.y197{bottom:119.196000px;}
.y130{bottom:119.556000px;}
.y168{bottom:119.700000px;}
.y135{bottom:119.730000px;}
.y148{bottom:120.525000px;}
.y1c7{bottom:126.396000px;}
.ya3{bottom:127.836000px;}
.y19b{bottom:132.450000px;}
.y33{bottom:133.056000px;}
.y163{bottom:133.956000px;}
.y13e{bottom:134.100000px;}
.yff{bottom:136.116000px;}
.y171{bottom:136.725000px;}
.y149{bottom:139.170000px;}
.yf2{bottom:140.616000px;}
.y169{bottom:143.850000px;}
.y136{bottom:145.365000px;}
.y1c6{bottom:146.916000px;}
.y119{bottom:147.636000px;}
.y11f{bottom:148.170000px;}
.yc6{bottom:149.796000px;}
.y196{bottom:150.150000px;}
.y32{bottom:151.410000px;}
.y14a{bottom:157.860000px;}
.ya2{bottom:158.790000px;}
.y19c{bottom:162.330000px;}
.yf1{bottom:162.570000px;}
.y13f{bottom:163.185000px;}
.y162{bottom:164.910000px;}
.y172{bottom:165.420000px;}
.y11e{bottom:166.530000px;}
.yfe{bottom:167.970000px;}
.y1c5{bottom:168.870000px;}
.y118{bottom:169.590000px;}
.y31{bottom:169.770000px;}
.y137{bottom:171.030000px;}
.yc5{bottom:171.750000px;}
.y195{bottom:172.110000px;}
.y12f{bottom:173.190000px;}
.y143{bottom:174.600000px;}
.y14b{bottom:176.505000px;}
.ya1{bottom:180.750000px;}
.yf0{bottom:184.530000px;}
.y30{bottom:187.950000px;}
.y1c4{bottom:190.830000px;}
.y117{bottom:191.730000px;}
.y16a{bottom:192.090000px;}
.y140{bottom:192.240000px;}
.yc4{bottom:193.710000px;}
.y194{bottom:194.070000px;}
.y173{bottom:194.145000px;}
.y14c{bottom:195.195000px;}
.y161{bottom:196.050000px;}
.yfd{bottom:201.810000px;}
.ya0{bottom:202.710000px;}
.y2f{bottom:206.310000px;}
.yef{bottom:206.490000px;}
.y11d{bottom:211.755000px;}
.y1c3{bottom:212.790000px;}
.y116{bottom:213.690000px;}
.yc3{bottom:215.670000px;}
.y193{bottom:216.030000px;}
.y160{bottom:218.010000px;}
.y2e{bottom:224.670000px;}
.y11c{bottom:230.115000px;}
.yfc{bottom:231.870000px;}
.y1c2{bottom:234.750000px;}
.y115{bottom:235.650000px;}
.yee{bottom:237.450000px;}
.yc2{bottom:237.810000px;}
.y192{bottom:237.990000px;}
.y15f{bottom:239.970000px;}
.y2d{bottom:243.030000px;}
.yfb{bottom:246.270000px;}
.y9f{bottom:246.810000px;}
.y1c1{bottom:256.710000px;}
.yed{bottom:259.410000px;}
.yc1{bottom:259.770000px;}
.y191{bottom:259.950000px;}
.y2c{bottom:261.210000px;}
.y15e{bottom:261.930000px;}
.y114{bottom:266.610000px;}
.y9e{bottom:268.770000px;}
.y1c0{bottom:278.670000px;}
.y2b{bottom:280.110000px;}
.yec{bottom:281.370000px;}
.yc0{bottom:281.730000px;}
.y190{bottom:282.090000px;}
.y15d{bottom:283.890000px;}
.y58{bottom:286.410000px;}
.y113{bottom:287.670000px;}
.y9d{bottom:290.730000px;}
.y1bf{bottom:300.810000px;}
.y112{bottom:301.890000px;}
.y11b{bottom:303.120000px;}
.yeb{bottom:303.330000px;}
.y18f{bottom:304.050000px;}
.y15c{bottom:305.850000px;}
.ybf{bottom:312.690000px;}
.y2a{bottom:313.230000px;}
.y9c{bottom:321.690000px;}
.y1be{bottom:322.770000px;}
.yea{bottom:325.290000px;}
.y18e{bottom:326.010000px;}
.y15b{bottom:327.810000px;}
.y57{bottom:332.895000px;}
.y29{bottom:333.570000px;}
.ybe{bottom:334.650000px;}
.y9b{bottom:343.695000px;}
.y1bd{bottom:344.775000px;}
.ye9{bottom:347.295000px;}
.y56{bottom:349.455000px;}
.y15a{bottom:349.815000px;}
.y28{bottom:353.235000px;}
.ybd{bottom:356.655000px;}
.y18d{bottom:357.015000px;}
.y9a{bottom:365.655000px;}
.y55{bottom:366.015000px;}
.y1bc{bottom:366.735000px;}
.ye8{bottom:369.255000px;}
.y27{bottom:371.595000px;}
.y159{bottom:371.775000px;}
.ybc{bottom:378.615000px;}
.y18c{bottom:378.975000px;}
.y54{bottom:382.755000px;}
.y99{bottom:387.615000px;}
.y1bb{bottom:388.695000px;}
.y26{bottom:389.955000px;}
.y12e{bottom:391.035000px;}
.ye7{bottom:391.215000px;}
.ybb{bottom:400.575000px;}
.y18b{bottom:400.935000px;}
.y53{bottom:401.115000px;}
.y158{bottom:402.735000px;}
.y25{bottom:408.135000px;}
.y12d{bottom:409.215000px;}
.y98{bottom:409.575000px;}
.y1ba{bottom:410.655000px;}
.y52{bottom:419.475000px;}
.ye6{bottom:422.175000px;}
.yba{bottom:422.535000px;}
.y18a{bottom:422.895000px;}
.y157{bottom:423.795000px;}
.y24{bottom:426.495000px;}
.y12c{bottom:427.575000px;}
.y97{bottom:431.535000px;}
.y1b9{bottom:432.615000px;}
.y51{bottom:437.655000px;}
.y156{bottom:438.195000px;}
.y16d{bottom:439.560000px;}
.y12b{bottom:441.975000px;}
.y13a{bottom:443.340000px;}
.ye5{bottom:444.135000px;}
.yb9{bottom:444.495000px;}
.y23{bottom:444.855000px;}
.y96{bottom:453.495000px;}
.y1b8{bottom:454.575000px;}
.y50{bottom:456.015000px;}
.y22{bottom:463.035000px;}
.ye4{bottom:466.275000px;}
.yb8{bottom:466.455000px;}
.y189{bottom:466.815000px;}
.y4f{bottom:474.375000px;}
.y1b7{bottom:476.535000px;}
.y21{bottom:481.395000px;}
.y95{bottom:484.455000px;}
.ye3{bottom:488.235000px;}
.y188{bottom:488.775000px;}
.y4e{bottom:492.555000px;}
.yb7{bottom:497.415000px;}
.y1b6{bottom:498.495000px;}
.y20{bottom:499.755000px;}
.y94{bottom:506.415000px;}
.ye2{bottom:510.195000px;}
.y187{bottom:510.735000px;}
.y4d{bottom:510.915000px;}
.y1f{bottom:518.115000px;}
.yb6{bottom:519.375000px;}
.y1b5{bottom:520.455000px;}
.y93{bottom:528.375000px;}
.y4c{bottom:529.275000px;}
.ye1{bottom:532.155000px;}
.y186{bottom:532.695000px;}
.y1e{bottom:536.295000px;}
.yb5{bottom:541.335000px;}
.y1b4{bottom:542.415000px;}
.y4b{bottom:547.635000px;}
.y92{bottom:550.335000px;}
.y111{bottom:553.395000px;}
.ye0{bottom:554.115000px;}
.y1d{bottom:554.655000px;}
.yb4{bottom:563.475000px;}
.y1b3{bottom:564.375000px;}
.y4a{bottom:565.815000px;}
.y91{bottom:572.475000px;}
.y1c{bottom:573.015000px;}
.ydf{bottom:576.075000px;}
.y110{bottom:581.655000px;}
.y49{bottom:584.175000px;}
.yb3{bottom:585.435000px;}
.y185{bottom:585.615000px;}
.y1b2{bottom:586.335000px;}
.y1b{bottom:591.375000px;}
.y90{bottom:594.435000px;}
.y48{bottom:602.565000px;}
.yde{bottom:607.065000px;}
.y184{bottom:607.785000px;}
.y1b1{bottom:608.505000px;}
.y1a{bottom:610.125000px;}
.y10f{bottom:612.645000px;}
.y8f{bottom:616.425000px;}
.y47{bottom:620.745000px;}
.y19{bottom:628.125000px;}
.ydd{bottom:629.025000px;}
.y183{bottom:629.745000px;}
.y1b0{bottom:630.465000px;}
.y10e{bottom:634.605000px;}
.yb2{bottom:638.385000px;}
.y46{bottom:639.105000px;}
.y18{bottom:640.725000px;}
.y8e{bottom:647.385000px;}
.ydc{bottom:650.985000px;}
.y182{bottom:651.705000px;}
.y1af{bottom:652.425000px;}
.y155{bottom:656.385000px;}
.y10d{bottom:656.565000px;}
.y17{bottom:657.465000px;}
.y12a{bottom:659.625000px;}
.yb1{bottom:660.345000px;}
.y8d{bottom:669.345000px;}
.y16{bottom:670.605000px;}
.ydb{bottom:672.945000px;}
.y181{bottom:673.665000px;}
.y1ae{bottom:674.385000px;}
.y45{bottom:676.005000px;}
.y154{bottom:676.545000px;}
.y129{bottom:677.985000px;}
.y10c{bottom:678.705000px;}
.yb0{bottom:682.305000px;}
.y78{bottom:684.825000px;}
.y8c{bottom:691.305000px;}
.y15{bottom:691.845000px;}
.y44{bottom:694.185000px;}
.yda{bottom:694.905000px;}
.y180{bottom:695.625000px;}
.y128{bottom:696.345000px;}
.y153{bottom:696.705000px;}
.y10b{bottom:700.665000px;}
.yaf{bottom:704.265000px;}
.y43{bottom:712.545000px;}
.y8b{bottom:713.265000px;}
.y14{bottom:714.165000px;}
.y127{bottom:714.525000px;}
.y152{bottom:716.325000px;}
.yd9{bottom:716.865000px;}
.y17f{bottom:717.585000px;}
.y77{bottom:717.765000px;}
.y1ad{bottom:718.305000px;}
.y10a{bottom:722.625000px;}
.yae{bottom:726.225000px;}
.y13{bottom:727.305000px;}
.y126{bottom:728.925000px;}
.y151{bottom:730.725000px;}
.y42{bottom:730.905000px;}
.y131{bottom:731.340000px;}
.y164{bottom:732.060000px;}
.y8a{bottom:735.225000px;}
.yd8{bottom:738.825000px;}
.y17e{bottom:739.545000px;}
.y1ac{bottom:740.265000px;}
.yad{bottom:748.185000px;}
.y12{bottom:748.725000px;}
.y41{bottom:749.265000px;}
.y76{bottom:750.165000px;}
.y109{bottom:754.305000px;}
.y89{bottom:757.185000px;}
.y1ab{bottom:762.225000px;}
.y40{bottom:767.445000px;}
.yd7{bottom:769.785000px;}
.y11{bottom:771.045000px;}
.y17d{bottom:771.225000px;}
.y88{bottom:779.145000px;}
.y75{bottom:783.825000px;}
.y10{bottom:784.185000px;}
.y3f{bottom:785.805000px;}
.y108{bottom:789.045000px;}
.yd6{bottom:791.925000px;}
.y87{bottom:801.105000px;}
.y74{bottom:803.445000px;}
.y3e{bottom:804.165000px;}
.y17c{bottom:805.065000px;}
.yf{bottom:805.425000px;}
.y1aa{bottom:806.145000px;}
.yd5{bottom:813.885000px;}
.y73{bottom:821.805000px;}
.y3d{bottom:822.345000px;}
.y107{bottom:822.885000px;}
.yac{bottom:823.065000px;}
.ye{bottom:827.745000px;}
.y1a9{bottom:828.105000px;}
.y86{bottom:832.065000px;}
.yd4{bottom:835.845000px;}
.y17b{bottom:836.025000px;}
.y72{bottom:839.985000px;}
.y3c{bottom:840.705000px;}
.yd{bottom:840.885000px;}
.y106{bottom:844.845000px;}
.yab{bottom:845.025000px;}
.y1a8{bottom:850.065000px;}
.y85{bottom:854.025000px;}
.yd3{bottom:857.805000px;}
.y17a{bottom:858.165000px;}
.y71{bottom:858.345000px;}
.y3b{bottom:859.065000px;}
.yc{bottom:862.125000px;}
.y105{bottom:866.805000px;}
.yaa{bottom:866.985000px;}
.y1a7{bottom:872.070000px;}
.y84{bottom:876.030000px;}
.y70{bottom:876.750000px;}
.y3a{bottom:877.470000px;}
.yd2{bottom:879.810000px;}
.y179{bottom:880.170000px;}
.yfa{bottom:882.510000px;}
.y104{bottom:888.810000px;}
.yb{bottom:890.430000px;}
.y1a6{bottom:894.030000px;}
.y6f{bottom:895.110000px;}
.y39{bottom:895.650000px;}
.y83{bottom:898.170000px;}
.yd1{bottom:901.770000px;}
.y1d2{bottom:905.910000px;}
.y178{bottom:910.050000px;}
.yf9{bottom:910.770000px;}
.y6e{bottom:913.290000px;}
.y38{bottom:914.010000px;}
.ya{bottom:916.170000px;}
.y82{bottom:920.130000px;}
.yd0{bottom:923.730000px;}
.y177{bottom:924.450000px;}
.y198{bottom:925.920000px;}
.y1d1{bottom:926.070000px;}
.y125{bottom:926.430000px;}
.y6d{bottom:931.650000px;}
.y37{bottom:932.370000px;}
.yf8{bottom:932.730000px;}
.y1a5{bottom:938.130000px;}
.y9{bottom:941.730000px;}
.y81{bottom:942.090000px;}
.ycf{bottom:945.690000px;}
.y1d0{bottom:946.230000px;}
.y150{bottom:948.930000px;}
.y6c{bottom:950.010000px;}
.y36{bottom:950.730000px;}
.yf7{bottom:954.690000px;}
.y1a4{bottom:960.090000px;}
.ya9{bottom:964.050000px;}
.y1cf{bottom:966.390000px;}
.y8{bottom:967.470000px;}
.yce{bottom:967.650000px;}
.y6b{bottom:968.370000px;}
.y14f{bottom:969.090000px;}
.y80{bottom:973.050000px;}
.yf6{bottom:976.650000px;}
.y1a3{bottom:982.050000px;}
.y124{bottom:985.650000px;}
.ya8{bottom:986.010000px;}
.y6a{bottom:986.550000px;}
.y7f{bottom:995.010000px;}
.y7{bottom:998.430000px;}
.ycd{bottom:998.610000px;}
.y1ce{bottom:1000.050000px;}
.y1a2{bottom:1004.010000px;}
.y69{bottom:1005.450000px;}
.y123{bottom:1007.610000px;}
.ya7{bottom:1007.970000px;}
.y7e{bottom:1016.970000px;}
.ycc{bottom:1020.570000px;}
.y1cd{bottom:1021.830000px;}
.y1a1{bottom:1025.970000px;}
.y103{bottom:1029.570000px;}
.ya6{bottom:1029.930000px;}
.y68{bottom:1038.570000px;}
.y7d{bottom:1038.930000px;}
.ycb{bottom:1042.530000px;}
.y1cc{bottom:1043.610000px;}
.y6{bottom:1046.130000px;}
.y1a0{bottom:1047.930000px;}
.y102{bottom:1051.530000px;}
.ya5{bottom:1051.890000px;}
.y67{bottom:1058.910000px;}
.y7c{bottom:1060.890000px;}
.yca{bottom:1064.490000px;}
.y19f{bottom:1069.890000px;}
.y101{bottom:1073.490000px;}
.ya4{bottom:1073.850000px;}
.y1cb{bottom:1077.270000px;}
.y66{bottom:1078.530000px;}
.y7b{bottom:1082.850000px;}
.yc9{bottom:1086.450000px;}
.y19e{bottom:1091.850000px;}
.y5{bottom:1093.650000px;}
.yf5{bottom:1095.450000px;}
.y65{bottom:1096.890000px;}
.y1ca{bottom:1099.050000px;}
.y7a{bottom:1104.810000px;}
.yc8{bottom:1108.590000px;}
.y19d{bottom:1113.810000px;}
.y64{bottom:1115.250000px;}
.yf4{bottom:1117.590000px;}
.y1c9{bottom:1120.830000px;}
.y63{bottom:1133.430000px;}
.y79{bottom:1136.670000px;}
.yc7{bottom:1139.580000px;}
.y1c8{bottom:1141.020000px;}
.y4{bottom:1141.380000px;}
.y176{bottom:1142.280000px;}
.y62{bottom:1151.820000px;}
.y5c{bottom:1170.360000px;}
.y60{bottom:1177.920000px;}
.y5b{bottom:1191.060000px;}
.y5a{bottom:1209.240000px;}
.y59{bottom:1227.420000px;}
.hb{height:35.806641px;}
.h20{height:41.809570px;}
.h24{height:41.934375px;}
.h13{height:45.637031px;}
.h22{height:46.177734px;}
.h1e{height:46.801758px;}
.h1f{height:46.926562px;}
.h1c{height:47.980898px;}
.h18{height:48.224531px;}
.h11{height:50.510039px;}
.he{height:50.585625px;}
.h10{height:51.793945px;}
.h12{height:51.881484px;}
.h14{height:53.709961px;}
.h4{height:57.248437px;}
.h16{height:57.410156px;}
.h15{height:57.507187px;}
.h2{height:59.439023px;}
.hc{height:61.189805px;}
.h7{height:64.331719px;}
.ha{height:65.884219px;}
.hd{height:67.824844px;}
.h19{height:71.613281px;}
.h8{height:73.129219px;}
.h1a{height:73.722656px;}
.h17{height:77.760000px;}
.h9{height:86.255508px;}
.h3{height:95.076000px;}
.h5{height:135.413086px;}
.h6{height:143.226562px;}
.h1d{height:191.340000px;}
.h21{height:212.400000px;}
.h23{height:212.580000px;}
.h1b{height:246.420000px;}
.hf{height:1251.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:90.036000px;}
.w5{width:177.509985px;}
.w4{width:177.869973px;}
.w8{width:507.960000px;}
.w7{width:510.120000px;}
.w6{width:526.500000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:9.870000px;}
.x4c{left:14.115000px;}
.x21{left:15.479973px;}
.x43{left:17.070000px;}
.x53{left:24.150000px;}
.x3{left:29.160000px;}
.x3c{left:51.480000px;}
.x4d{left:52.635000px;}
.x48{left:53.640000px;}
.x52{left:55.260000px;}
.x45{left:56.550000px;}
.x54{left:61.350000px;}
.x27{left:66.419973px;}
.x25{left:69.119973px;}
.x20{left:72.899973px;}
.x26{left:74.339973px;}
.x1f{left:76.139973px;}
.x3d{left:83.520000px;}
.x2e{left:85.139987px;}
.x1b{left:101.735973px;}
.x1e{left:102.815973px;}
.x18{left:105.695973px;}
.x19{left:107.495973px;}
.x1a{left:110.015973px;}
.x23{left:114.875973px;}
.x24{left:121.535973px;}
.x1d{left:125.855973px;}
.x1{left:127.655987px;}
.x28{left:136.655973px;}
.x31{left:138.275987px;}
.x49{left:141.015000px;}
.x22{left:144.215973px;}
.x2f{left:150.149985px;}
.x1c{left:167.069973px;}
.x2d{left:180.749987px;}
.x16{left:191.549987px;}
.x56{left:195.869987px;}
.x41{left:197.489987px;}
.x8{left:210.269987px;}
.xa{left:213.149987px;}
.x50{left:215.129987px;}
.x42{left:217.620000px;}
.x58{left:218.700000px;}
.x30{left:233.849987px;}
.x2b{left:243.389987px;}
.x4a{left:245.310000px;}
.x46{left:247.320000px;}
.x4e{left:252.075000px;}
.x17{left:255.269987px;}
.x55{left:256.890000px;}
.x6{left:282.494987px;}
.x29{left:287.354987px;}
.x32{left:301.034987px;}
.x3e{left:305.894987px;}
.x38{left:311.070000px;}
.x5{left:313.274987px;}
.x2a{left:314.534987px;}
.x39{left:338.115000px;}
.x40{left:340.814987px;}
.x4{left:347.654987px;}
.x34{left:357.014987px;}
.x3a{left:359.355000px;}
.x35{left:365.654987px;}
.x37{left:369.794987px;}
.x51{left:384.734987px;}
.x3b{left:386.355000px;}
.x4b{left:415.335000px;}
.x59{left:416.670000px;}
.x47{left:418.650000px;}
.x4f{left:429.870000px;}
.x2c{left:467.744987px;}
.x3f{left:473.144987px;}
.x11{left:492.404987px;}
.xc{left:542.084987px;}
.x12{left:543.524987px;}
.x14{left:557.744987px;}
.xd{left:560.984987px;}
.x7{left:582.044987px;}
.x10{left:584.744987px;}
.x9{left:598.424987px;}
.xf{left:606.704987px;}
.x13{left:622.364987px;}
.xb{left:624.704987px;}
.x15{left:637.664987px;}
.x57{left:727.349987px;}
.x33{left:728.429987px;}
.x36{left:736.349987px;}
.xe{left:765.509987px;}
.x2{left:784.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls22{letter-spacing:-0.448000pt;}
.ls26{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.309867pt;}
.lsb{letter-spacing:-0.294933pt;}
.ls11{letter-spacing:-0.274133pt;}
.ls1f{letter-spacing:-0.205867pt;}
.ls13{letter-spacing:-0.204267pt;}
.ls12{letter-spacing:-0.199467pt;}
.ls8{letter-spacing:-0.156267pt;}
.ls1d{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.122667pt;}
.ls1e{letter-spacing:-0.095467pt;}
.ls10{letter-spacing:-0.082133pt;}
.ls4{letter-spacing:-0.074133pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls20{letter-spacing:-0.032000pt;}
.ls23{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.007680pt;}
.ls19{letter-spacing:0.054400pt;}
.ls18{letter-spacing:0.062720pt;}
.lsa{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.068480pt;}
.ls1b{letter-spacing:0.082560pt;}
.lse{letter-spacing:0.102400pt;}
.ls15{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.133120pt;}
.ls1c{letter-spacing:0.185600pt;}
.ls16{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.197333pt;}
.ls0{letter-spacing:0.207360pt;}
.ls9{letter-spacing:0.220267pt;}
.ls5{letter-spacing:0.222933pt;}
.ls25{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.385280pt;}
.ls2{letter-spacing:0.588160pt;}
.ls21{letter-spacing:11.136000pt;}
.ws0{word-spacing:-58.880000pt;}
.ws1{word-spacing:-58.805867pt;}
.ws3{word-spacing:-28.512640pt;}
.ws2{word-spacing:-28.415573pt;}
.ws4{word-spacing:-28.192640pt;}
.ws18{word-spacing:-16.922880pt;}
.ws13{word-spacing:-16.718613pt;}
.ws2a{word-spacing:-14.784000pt;}
.ws16{word-spacing:-14.656000pt;}
.ws15{word-spacing:-14.592000pt;}
.ws14{word-spacing:-14.464000pt;}
.ws2b{word-spacing:-14.144000pt;}
.ws6{word-spacing:-13.306880pt;}
.ws17{word-spacing:-13.184213pt;}
.wsd{word-spacing:-12.149973pt;}
.ws7{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.952640pt;}
.ws19{word-spacing:-11.909653pt;}
.ws10{word-spacing:-11.870507pt;}
.ws12{word-spacing:-11.753173pt;}
.ws11{word-spacing:-11.678507pt;}
.wse{word-spacing:-11.642773pt;}
.ws5{word-spacing:-10.848000pt;}
.wsc{word-spacing:-10.847360pt;}
.ws8{word-spacing:-10.783360pt;}
.ws9{word-spacing:-10.488427pt;}
.ws26{word-spacing:-9.744000pt;}
.ws1f{word-spacing:-9.614080pt;}
.ws1c{word-spacing:-8.704640pt;}
.wsb{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.497280pt;}
.ws1e{word-spacing:110.910720pt;}
.ws25{word-spacing:114.437333pt;}
.ws21{word-spacing:124.724053pt;}
.ws23{word-spacing:125.781333pt;}
.ws20{word-spacing:128.907520pt;}
.ws28{word-spacing:130.317739pt;}
.ws1b{word-spacing:132.117120pt;}
.ws27{word-spacing:133.018667pt;}
.ws24{word-spacing:146.432000pt;}
.ws22{word-spacing:147.574187pt;}
.ws29{word-spacing:150.776064pt;}
.ws1d{word-spacing:152.420907pt;}
._4{margin-left:-5.457067pt;}
._2{margin-left:-4.475093pt;}
._8{margin-left:-3.551360pt;}
._1{margin-left:-2.493440pt;}
._0{margin-left:-0.941227pt;}
._3{width:1.239467pt;}
._b{width:2.177920pt;}
._c{width:3.172480pt;}
._14{width:4.473813pt;}
._15{width:5.938347pt;}
._9{width:7.011840pt;}
._a{width:7.968000pt;}
._12{width:8.982827pt;}
._1b{width:10.088747pt;}
._d{width:10.980907pt;}
._18{width:12.064000pt;}
._7{width:13.280000pt;}
._13{width:14.170240pt;}
._17{width:16.215893pt;}
._22{width:17.213867pt;}
._1a{width:18.138453pt;}
._5{width:19.176320pt;}
._6{width:20.132480pt;}
._e{width:21.283413pt;}
._16{width:22.175573pt;}
._f{width:23.283840pt;}
._11{width:25.172267pt;}
._10{width:26.453760pt;}
._19{width:27.351467pt;}
._1d{width:28.567893pt;}
._28{width:29.805227pt;}
._2c{width:31.168000pt;}
._2a{width:32.320000pt;}
._1c{width:34.138453pt;}
._23{width:35.520000pt;}
._1f{width:43.053227pt;}
._1e{width:43.949227pt;}
._20{width:45.560960pt;}
._21{width:53.184000pt;}
._25{width:160.805973pt;}
._27{width:165.338667pt;}
._26{width:169.819307pt;}
._29{width:171.127552pt;}
._24{width:172.223787pt;}
._2b{width:1693.632000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:42.880000pt;}
.fsc{font-size:43.008000pt;}
.fsb{font-size:47.360000pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.880000pt;}
.y61{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.840000pt;}
.y2{bottom:5.120000pt;}
.y14e{bottom:10.853333pt;}
.y139{bottom:11.426667pt;}
.y142{bottom:11.773333pt;}
.y16c{bottom:11.813333pt;}
.y175{bottom:14.813333pt;}
.y138{bottom:24.453333pt;}
.y14d{bottom:25.346667pt;}
.y141{bottom:26.240000pt;}
.y16b{bottom:26.466667pt;}
.y174{bottom:29.466667pt;}
.y132{bottom:37.986667pt;}
.y144{bottom:40.733333pt;}
.y1{bottom:41.120000pt;}
.y13b{bottom:41.666667pt;}
.y5f{bottom:41.760000pt;}
.y165{bottom:42.053333pt;}
.y3{bottom:43.520000pt;}
.y16e{bottom:44.960000pt;}
.y145{bottom:57.346667pt;}
.y5e{bottom:59.680000pt;}
.y133{bottom:60.800000pt;}
.y166{bottom:63.520000pt;}
.y199{bottom:64.546667pt;}
.y13c{bottom:67.520000pt;}
.y122{bottom:68.613333pt;}
.y16f{bottom:70.493333pt;}
.y146{bottom:73.920000pt;}
.y5d{bottom:77.632000pt;}
.y134{bottom:83.613333pt;}
.y121{bottom:84.933333pt;}
.y167{bottom:84.960000pt;}
.y147{bottom:90.533333pt;}
.y19a{bottom:91.133333pt;}
.y13d{bottom:93.346667pt;}
.y170{bottom:96.000000pt;}
.y120{bottom:101.253333pt;}
.y100{bottom:101.472000pt;}
.y34{bottom:101.952000pt;}
.y11a{bottom:103.712000pt;}
.yf3{bottom:105.312000pt;}
.y197{bottom:105.952000pt;}
.y130{bottom:106.272000pt;}
.y168{bottom:106.400000pt;}
.y135{bottom:106.426667pt;}
.y148{bottom:107.133333pt;}
.y1c7{bottom:112.352000pt;}
.ya3{bottom:113.632000pt;}
.y19b{bottom:117.733333pt;}
.y33{bottom:118.272000pt;}
.y163{bottom:119.072000pt;}
.y13e{bottom:119.200000pt;}
.yff{bottom:120.992000pt;}
.y171{bottom:121.533333pt;}
.y149{bottom:123.706667pt;}
.yf2{bottom:124.992000pt;}
.y169{bottom:127.866667pt;}
.y136{bottom:129.213333pt;}
.y1c6{bottom:130.592000pt;}
.y119{bottom:131.232000pt;}
.y11f{bottom:131.706667pt;}
.yc6{bottom:133.152000pt;}
.y196{bottom:133.466667pt;}
.y32{bottom:134.586667pt;}
.y14a{bottom:140.320000pt;}
.ya2{bottom:141.146667pt;}
.y19c{bottom:144.293333pt;}
.yf1{bottom:144.506667pt;}
.y13f{bottom:145.053333pt;}
.y162{bottom:146.586667pt;}
.y172{bottom:147.040000pt;}
.y11e{bottom:148.026667pt;}
.yfe{bottom:149.306667pt;}
.y1c5{bottom:150.106667pt;}
.y118{bottom:150.746667pt;}
.y31{bottom:150.906667pt;}
.y137{bottom:152.026667pt;}
.yc5{bottom:152.666667pt;}
.y195{bottom:152.986667pt;}
.y12f{bottom:153.946667pt;}
.y143{bottom:155.200000pt;}
.y14b{bottom:156.893333pt;}
.ya1{bottom:160.666667pt;}
.yf0{bottom:164.026667pt;}
.y30{bottom:167.066667pt;}
.y1c4{bottom:169.626667pt;}
.y117{bottom:170.426667pt;}
.y16a{bottom:170.746667pt;}
.y140{bottom:170.880000pt;}
.yc4{bottom:172.186667pt;}
.y194{bottom:172.506667pt;}
.y173{bottom:172.573333pt;}
.y14c{bottom:173.506667pt;}
.y161{bottom:174.266667pt;}
.yfd{bottom:179.386667pt;}
.ya0{bottom:180.186667pt;}
.y2f{bottom:183.386667pt;}
.yef{bottom:183.546667pt;}
.y11d{bottom:188.226667pt;}
.y1c3{bottom:189.146667pt;}
.y116{bottom:189.946667pt;}
.yc3{bottom:191.706667pt;}
.y193{bottom:192.026667pt;}
.y160{bottom:193.786667pt;}
.y2e{bottom:199.706667pt;}
.y11c{bottom:204.546667pt;}
.yfc{bottom:206.106667pt;}
.y1c2{bottom:208.666667pt;}
.y115{bottom:209.466667pt;}
.yee{bottom:211.066667pt;}
.yc2{bottom:211.386667pt;}
.y192{bottom:211.546667pt;}
.y15f{bottom:213.306667pt;}
.y2d{bottom:216.026667pt;}
.yfb{bottom:218.906667pt;}
.y9f{bottom:219.386667pt;}
.y1c1{bottom:228.186667pt;}
.yed{bottom:230.586667pt;}
.yc1{bottom:230.906667pt;}
.y191{bottom:231.066667pt;}
.y2c{bottom:232.186667pt;}
.y15e{bottom:232.826667pt;}
.y114{bottom:236.986667pt;}
.y9e{bottom:238.906667pt;}
.y1c0{bottom:247.706667pt;}
.y2b{bottom:248.986667pt;}
.yec{bottom:250.106667pt;}
.yc0{bottom:250.426667pt;}
.y190{bottom:250.746667pt;}
.y15d{bottom:252.346667pt;}
.y58{bottom:254.586667pt;}
.y113{bottom:255.706667pt;}
.y9d{bottom:258.426667pt;}
.y1bf{bottom:267.386667pt;}
.y112{bottom:268.346667pt;}
.y11b{bottom:269.440000pt;}
.yeb{bottom:269.626667pt;}
.y18f{bottom:270.266667pt;}
.y15c{bottom:271.866667pt;}
.ybf{bottom:277.946667pt;}
.y2a{bottom:278.426667pt;}
.y9c{bottom:285.946667pt;}
.y1be{bottom:286.906667pt;}
.yea{bottom:289.146667pt;}
.y18e{bottom:289.786667pt;}
.y15b{bottom:291.386667pt;}
.y57{bottom:295.906667pt;}
.y29{bottom:296.506667pt;}
.ybe{bottom:297.466667pt;}
.y9b{bottom:305.506667pt;}
.y1bd{bottom:306.466667pt;}
.ye9{bottom:308.706667pt;}
.y56{bottom:310.626667pt;}
.y15a{bottom:310.946667pt;}
.y28{bottom:313.986667pt;}
.ybd{bottom:317.026667pt;}
.y18d{bottom:317.346667pt;}
.y9a{bottom:325.026667pt;}
.y55{bottom:325.346667pt;}
.y1bc{bottom:325.986667pt;}
.ye8{bottom:328.226667pt;}
.y27{bottom:330.306667pt;}
.y159{bottom:330.466667pt;}
.ybc{bottom:336.546667pt;}
.y18c{bottom:336.866667pt;}
.y54{bottom:340.226667pt;}
.y99{bottom:344.546667pt;}
.y1bb{bottom:345.506667pt;}
.y26{bottom:346.626667pt;}
.y12e{bottom:347.586667pt;}
.ye7{bottom:347.746667pt;}
.ybb{bottom:356.066667pt;}
.y18b{bottom:356.386667pt;}
.y53{bottom:356.546667pt;}
.y158{bottom:357.986667pt;}
.y25{bottom:362.786667pt;}
.y12d{bottom:363.746667pt;}
.y98{bottom:364.066667pt;}
.y1ba{bottom:365.026667pt;}
.y52{bottom:372.866667pt;}
.ye6{bottom:375.266667pt;}
.yba{bottom:375.586667pt;}
.y18a{bottom:375.906667pt;}
.y157{bottom:376.706667pt;}
.y24{bottom:379.106667pt;}
.y12c{bottom:380.066667pt;}
.y97{bottom:383.586667pt;}
.y1b9{bottom:384.546667pt;}
.y51{bottom:389.026667pt;}
.y156{bottom:389.506667pt;}
.y16d{bottom:390.720000pt;}
.y12b{bottom:392.866667pt;}
.y13a{bottom:394.080000pt;}
.ye5{bottom:394.786667pt;}
.yb9{bottom:395.106667pt;}
.y23{bottom:395.426667pt;}
.y96{bottom:403.106667pt;}
.y1b8{bottom:404.066667pt;}
.y50{bottom:405.346667pt;}
.y22{bottom:411.586667pt;}
.ye4{bottom:414.466667pt;}
.yb8{bottom:414.626667pt;}
.y189{bottom:414.946667pt;}
.y4f{bottom:421.666667pt;}
.y1b7{bottom:423.586667pt;}
.y21{bottom:427.906667pt;}
.y95{bottom:430.626667pt;}
.ye3{bottom:433.986667pt;}
.y188{bottom:434.466667pt;}
.y4e{bottom:437.826667pt;}
.yb7{bottom:442.146667pt;}
.y1b6{bottom:443.106667pt;}
.y20{bottom:444.226667pt;}
.y94{bottom:450.146667pt;}
.ye2{bottom:453.506667pt;}
.y187{bottom:453.986667pt;}
.y4d{bottom:454.146667pt;}
.y1f{bottom:460.546667pt;}
.yb6{bottom:461.666667pt;}
.y1b5{bottom:462.626667pt;}
.y93{bottom:469.666667pt;}
.y4c{bottom:470.466667pt;}
.ye1{bottom:473.026667pt;}
.y186{bottom:473.506667pt;}
.y1e{bottom:476.706667pt;}
.yb5{bottom:481.186667pt;}
.y1b4{bottom:482.146667pt;}
.y4b{bottom:486.786667pt;}
.y92{bottom:489.186667pt;}
.y111{bottom:491.906667pt;}
.ye0{bottom:492.546667pt;}
.y1d{bottom:493.026667pt;}
.yb4{bottom:500.866667pt;}
.y1b3{bottom:501.666667pt;}
.y4a{bottom:502.946667pt;}
.y91{bottom:508.866667pt;}
.y1c{bottom:509.346667pt;}
.ydf{bottom:512.066667pt;}
.y110{bottom:517.026667pt;}
.y49{bottom:519.266667pt;}
.yb3{bottom:520.386667pt;}
.y185{bottom:520.546667pt;}
.y1b2{bottom:521.186667pt;}
.y1b{bottom:525.666667pt;}
.y90{bottom:528.386667pt;}
.y48{bottom:535.613333pt;}
.yde{bottom:539.613333pt;}
.y184{bottom:540.253333pt;}
.y1b1{bottom:540.893333pt;}
.y1a{bottom:542.333333pt;}
.y10f{bottom:544.573333pt;}
.y8f{bottom:547.933333pt;}
.y47{bottom:551.773333pt;}
.y19{bottom:558.333333pt;}
.ydd{bottom:559.133333pt;}
.y183{bottom:559.773333pt;}
.y1b0{bottom:560.413333pt;}
.y10e{bottom:564.093333pt;}
.yb2{bottom:567.453333pt;}
.y46{bottom:568.093333pt;}
.y18{bottom:569.533333pt;}
.y8e{bottom:575.453333pt;}
.ydc{bottom:578.653333pt;}
.y182{bottom:579.293333pt;}
.y1af{bottom:579.933333pt;}
.y155{bottom:583.453333pt;}
.y10d{bottom:583.613333pt;}
.y17{bottom:584.413333pt;}
.y12a{bottom:586.333333pt;}
.yb1{bottom:586.973333pt;}
.y8d{bottom:594.973333pt;}
.y16{bottom:596.093333pt;}
.ydb{bottom:598.173333pt;}
.y181{bottom:598.813333pt;}
.y1ae{bottom:599.453333pt;}
.y45{bottom:600.893333pt;}
.y154{bottom:601.373333pt;}
.y129{bottom:602.653333pt;}
.y10c{bottom:603.293333pt;}
.yb0{bottom:606.493333pt;}
.y78{bottom:608.733333pt;}
.y8c{bottom:614.493333pt;}
.y15{bottom:614.973333pt;}
.y44{bottom:617.053333pt;}
.yda{bottom:617.693333pt;}
.y180{bottom:618.333333pt;}
.y128{bottom:618.973333pt;}
.y153{bottom:619.293333pt;}
.y10b{bottom:622.813333pt;}
.yaf{bottom:626.013333pt;}
.y43{bottom:633.373333pt;}
.y8b{bottom:634.013333pt;}
.y14{bottom:634.813333pt;}
.y127{bottom:635.133333pt;}
.y152{bottom:636.733333pt;}
.yd9{bottom:637.213333pt;}
.y17f{bottom:637.853333pt;}
.y77{bottom:638.013333pt;}
.y1ad{bottom:638.493333pt;}
.y10a{bottom:642.333333pt;}
.yae{bottom:645.533333pt;}
.y13{bottom:646.493333pt;}
.y126{bottom:647.933333pt;}
.y151{bottom:649.533333pt;}
.y42{bottom:649.693333pt;}
.y131{bottom:650.080000pt;}
.y164{bottom:650.720000pt;}
.y8a{bottom:653.533333pt;}
.yd8{bottom:656.733333pt;}
.y17e{bottom:657.373333pt;}
.y1ac{bottom:658.013333pt;}
.yad{bottom:665.053333pt;}
.y12{bottom:665.533333pt;}
.y41{bottom:666.013333pt;}
.y76{bottom:666.813333pt;}
.y109{bottom:670.493333pt;}
.y89{bottom:673.053333pt;}
.y1ab{bottom:677.533333pt;}
.y40{bottom:682.173333pt;}
.yd7{bottom:684.253333pt;}
.y11{bottom:685.373333pt;}
.y17d{bottom:685.533333pt;}
.y88{bottom:692.573333pt;}
.y75{bottom:696.733333pt;}
.y10{bottom:697.053333pt;}
.y3f{bottom:698.493333pt;}
.y108{bottom:701.373333pt;}
.yd6{bottom:703.933333pt;}
.y87{bottom:712.093333pt;}
.y74{bottom:714.173333pt;}
.y3e{bottom:714.813333pt;}
.y17c{bottom:715.613333pt;}
.yf{bottom:715.933333pt;}
.y1aa{bottom:716.573333pt;}
.yd5{bottom:723.453333pt;}
.y73{bottom:730.493333pt;}
.y3d{bottom:730.973333pt;}
.y107{bottom:731.453333pt;}
.yac{bottom:731.613333pt;}
.ye{bottom:735.773333pt;}
.y1a9{bottom:736.093333pt;}
.y86{bottom:739.613333pt;}
.yd4{bottom:742.973333pt;}
.y17b{bottom:743.133333pt;}
.y72{bottom:746.653333pt;}
.y3c{bottom:747.293333pt;}
.yd{bottom:747.453333pt;}
.y106{bottom:750.973333pt;}
.yab{bottom:751.133333pt;}
.y1a8{bottom:755.613333pt;}
.y85{bottom:759.133333pt;}
.yd3{bottom:762.493333pt;}
.y17a{bottom:762.813333pt;}
.y71{bottom:762.973333pt;}
.y3b{bottom:763.613333pt;}
.yc{bottom:766.333333pt;}
.y105{bottom:770.493333pt;}
.yaa{bottom:770.653333pt;}
.y1a7{bottom:775.173333pt;}
.y84{bottom:778.693333pt;}
.y70{bottom:779.333333pt;}
.y3a{bottom:779.973333pt;}
.yd2{bottom:782.053333pt;}
.y179{bottom:782.373333pt;}
.yfa{bottom:784.453333pt;}
.y104{bottom:790.053333pt;}
.yb{bottom:791.493333pt;}
.y1a6{bottom:794.693333pt;}
.y6f{bottom:795.653333pt;}
.y39{bottom:796.133333pt;}
.y83{bottom:798.373333pt;}
.yd1{bottom:801.573333pt;}
.y1d2{bottom:805.253333pt;}
.y178{bottom:808.933333pt;}
.yf9{bottom:809.573333pt;}
.y6e{bottom:811.813333pt;}
.y38{bottom:812.453333pt;}
.ya{bottom:814.373333pt;}
.y82{bottom:817.893333pt;}
.yd0{bottom:821.093333pt;}
.y177{bottom:821.733333pt;}
.y198{bottom:823.040000pt;}
.y1d1{bottom:823.173333pt;}
.y125{bottom:823.493333pt;}
.y6d{bottom:828.133333pt;}
.y37{bottom:828.773333pt;}
.yf8{bottom:829.093333pt;}
.y1a5{bottom:833.893333pt;}
.y9{bottom:837.093333pt;}
.y81{bottom:837.413333pt;}
.ycf{bottom:840.613333pt;}
.y1d0{bottom:841.093333pt;}
.y150{bottom:843.493333pt;}
.y6c{bottom:844.453333pt;}
.y36{bottom:845.093333pt;}
.yf7{bottom:848.613333pt;}
.y1a4{bottom:853.413333pt;}
.ya9{bottom:856.933333pt;}
.y1cf{bottom:859.013333pt;}
.y8{bottom:859.973333pt;}
.yce{bottom:860.133333pt;}
.y6b{bottom:860.773333pt;}
.y14f{bottom:861.413333pt;}
.y80{bottom:864.933333pt;}
.yf6{bottom:868.133333pt;}
.y1a3{bottom:872.933333pt;}
.y124{bottom:876.133333pt;}
.ya8{bottom:876.453333pt;}
.y6a{bottom:876.933333pt;}
.y7f{bottom:884.453333pt;}
.y7{bottom:887.493333pt;}
.ycd{bottom:887.653333pt;}
.y1ce{bottom:888.933333pt;}
.y1a2{bottom:892.453333pt;}
.y69{bottom:893.733333pt;}
.y123{bottom:895.653333pt;}
.ya7{bottom:895.973333pt;}
.y7e{bottom:903.973333pt;}
.ycc{bottom:907.173333pt;}
.y1cd{bottom:908.293333pt;}
.y1a1{bottom:911.973333pt;}
.y103{bottom:915.173333pt;}
.ya6{bottom:915.493333pt;}
.y68{bottom:923.173333pt;}
.y7d{bottom:923.493333pt;}
.ycb{bottom:926.693333pt;}
.y1cc{bottom:927.653333pt;}
.y6{bottom:929.893333pt;}
.y1a0{bottom:931.493333pt;}
.y102{bottom:934.693333pt;}
.ya5{bottom:935.013333pt;}
.y67{bottom:941.253333pt;}
.y7c{bottom:943.013333pt;}
.yca{bottom:946.213333pt;}
.y19f{bottom:951.013333pt;}
.y101{bottom:954.213333pt;}
.ya4{bottom:954.533333pt;}
.y1cb{bottom:957.573333pt;}
.y66{bottom:958.693333pt;}
.y7b{bottom:962.533333pt;}
.yc9{bottom:965.733333pt;}
.y19e{bottom:970.533333pt;}
.y5{bottom:972.133333pt;}
.yf5{bottom:973.733333pt;}
.y65{bottom:975.013333pt;}
.y1ca{bottom:976.933333pt;}
.y7a{bottom:982.053333pt;}
.yc8{bottom:985.413333pt;}
.y19d{bottom:990.053333pt;}
.y64{bottom:991.333333pt;}
.yf4{bottom:993.413333pt;}
.y1c9{bottom:996.293333pt;}
.y63{bottom:1007.493333pt;}
.y79{bottom:1010.373333pt;}
.yc7{bottom:1012.960000pt;}
.y1c8{bottom:1014.240000pt;}
.y4{bottom:1014.560000pt;}
.y176{bottom:1015.360000pt;}
.y62{bottom:1023.840000pt;}
.y5c{bottom:1040.320000pt;}
.y60{bottom:1047.040000pt;}
.y5b{bottom:1058.720000pt;}
.y5a{bottom:1074.880000pt;}
.y59{bottom:1091.040000pt;}
.hb{height:31.828125pt;}
.h20{height:37.164062pt;}
.h24{height:37.275000pt;}
.h13{height:40.566250pt;}
.h22{height:41.046875pt;}
.h1e{height:41.601562pt;}
.h1f{height:41.712500pt;}
.h1c{height:42.649687pt;}
.h18{height:42.866250pt;}
.h11{height:44.897813pt;}
.he{height:44.965000pt;}
.h10{height:46.039063pt;}
.h12{height:46.116875pt;}
.h14{height:47.742188pt;}
.h4{height:50.887500pt;}
.h16{height:51.031250pt;}
.h15{height:51.117500pt;}
.h2{height:52.834688pt;}
.hc{height:54.390938pt;}
.h7{height:57.183750pt;}
.ha{height:58.563750pt;}
.hd{height:60.288750pt;}
.h19{height:63.656250pt;}
.h8{height:65.003750pt;}
.h1a{height:65.531250pt;}
.h17{height:69.120000pt;}
.h9{height:76.671562pt;}
.h3{height:84.512000pt;}
.h5{height:120.367188pt;}
.h6{height:127.312500pt;}
.h1d{height:170.080000pt;}
.h21{height:188.800000pt;}
.h23{height:188.960000pt;}
.h1b{height:219.040000pt;}
.hf{height:1112.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:80.032000pt;}
.w5{width:157.786653pt;}
.w4{width:158.106643pt;}
.w8{width:451.520000pt;}
.w7{width:453.440000pt;}
.w6{width:468.000000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:8.773333pt;}
.x4c{left:12.546667pt;}
.x21{left:13.759976pt;}
.x43{left:15.173333pt;}
.x53{left:21.466667pt;}
.x3{left:25.920000pt;}
.x3c{left:45.760000pt;}
.x4d{left:46.786667pt;}
.x48{left:47.680000pt;}
.x52{left:49.120000pt;}
.x45{left:50.266667pt;}
.x54{left:54.533333pt;}
.x27{left:59.039976pt;}
.x25{left:61.439976pt;}
.x20{left:64.799976pt;}
.x26{left:66.079976pt;}
.x1f{left:67.679976pt;}
.x3d{left:74.240000pt;}
.x2e{left:75.679988pt;}
.x1b{left:90.431976pt;}
.x1e{left:91.391976pt;}
.x18{left:93.951976pt;}
.x19{left:95.551976pt;}
.x1a{left:97.791976pt;}
.x23{left:102.111976pt;}
.x24{left:108.031976pt;}
.x1d{left:111.871976pt;}
.x1{left:113.471988pt;}
.x28{left:121.471976pt;}
.x31{left:122.911988pt;}
.x49{left:125.346667pt;}
.x22{left:128.191976pt;}
.x2f{left:133.466653pt;}
.x1c{left:148.506643pt;}
.x2d{left:160.666655pt;}
.x16{left:170.266655pt;}
.x56{left:174.106655pt;}
.x41{left:175.546655pt;}
.x8{left:186.906655pt;}
.xa{left:189.466655pt;}
.x50{left:191.226655pt;}
.x42{left:193.440000pt;}
.x58{left:194.400000pt;}
.x30{left:207.866655pt;}
.x2b{left:216.346655pt;}
.x4a{left:218.053333pt;}
.x46{left:219.840000pt;}
.x4e{left:224.066667pt;}
.x17{left:226.906655pt;}
.x55{left:228.346667pt;}
.x6{left:251.106655pt;}
.x29{left:255.426655pt;}
.x32{left:267.586655pt;}
.x3e{left:271.906655pt;}
.x38{left:276.506667pt;}
.x5{left:278.466655pt;}
.x2a{left:279.586655pt;}
.x39{left:300.546667pt;}
.x40{left:302.946655pt;}
.x4{left:309.026655pt;}
.x34{left:317.346655pt;}
.x3a{left:319.426667pt;}
.x35{left:325.026655pt;}
.x37{left:328.706655pt;}
.x51{left:341.986655pt;}
.x3b{left:343.426667pt;}
.x4b{left:369.186667pt;}
.x59{left:370.373333pt;}
.x47{left:372.133333pt;}
.x4f{left:382.106667pt;}
.x2c{left:415.773322pt;}
.x3f{left:420.573322pt;}
.x11{left:437.693322pt;}
.xc{left:481.853322pt;}
.x12{left:483.133322pt;}
.x14{left:495.773322pt;}
.xd{left:498.653322pt;}
.x7{left:517.373322pt;}
.x10{left:519.773322pt;}
.x9{left:531.933322pt;}
.xf{left:539.293322pt;}
.x13{left:553.213322pt;}
.xb{left:555.293322pt;}
.x15{left:566.813322pt;}
.x57{left:646.533322pt;}
.x33{left:647.493322pt;}
.x36{left:654.533322pt;}
.xe{left:680.453322pt;}
.x2{left:697.093333pt;}
}




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