
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_6c365bf72519e87224682e0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f17cf9e3b3944f78857a8c00.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.331543;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_b4c306974ae0e85f9becdf7c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.331543;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_bf6e2afc5330b3b0eb1e5343.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.331543;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_e523909fcdfeea29bab17a51.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.331543;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_9c6273b19e030ad375dc38da.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736816;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_46448410d19f8472eca100d9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c35f38af48148e563d2a392c.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_0431077d42d435a9aa091de8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_df825f12cb9a41b9301bd7bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.758789;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_152587bbbccbbc693688467f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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_e08409871a3ef5d773133842.woff2')format("woff");}.fff{font-family:fff;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_343d5dc6d50d268e7b844963.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.747559;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_0faf4ae2bf834d1a2d38cc73.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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_9164e22e472f5dfcfffb0903.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.912109;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:ff13;src:url('chunks/assets/font_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_39efbab3615d2a5dc82a7b03.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.978027;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:ff15;src:url('chunks/assets/font_c9d8761a8830d1e9816cbbec.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.751953;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:ff16;src:url('chunks/assets/font_c1e8f89432587a00cc39d3d5.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.812500;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:ff17;src:url('chunks/assets/font_6f003aefab47ea3707063113.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.920898;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:ff18;src:url('chunks/assets/font_d405588895bf07b8abaaece2.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.920898;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-14.400000px;}
.v3{vertical-align:-5.760000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:14.400000px;}
.ls2a{letter-spacing:-8.095350px;}
.ls1e{letter-spacing:-1.728000px;}
.ls56{letter-spacing:-1.422000px;}
.ls4c{letter-spacing:-1.296000px;}
.ls52{letter-spacing:-1.050000px;}
.ls3a{letter-spacing:-0.972000px;}
.ls2f{letter-spacing:-0.853806px;}
.ls22{letter-spacing:-0.720000px;}
.ls73{letter-spacing:-0.642000px;}
.ls33{letter-spacing:-0.630000px;}
.ls59{letter-spacing:-0.593400px;}
.ls54{letter-spacing:-0.573000px;}
.ls71{letter-spacing:-0.570000px;}
.ls25{letter-spacing:-0.524933px;}
.ls38{letter-spacing:-0.507000px;}
.ls20{letter-spacing:-0.504000px;}
.ls72{letter-spacing:-0.466800px;}
.ls2b{letter-spacing:-0.349112px;}
.ls49{letter-spacing:-0.316800px;}
.ls74{letter-spacing:-0.279600px;}
.ls2c{letter-spacing:-0.276380px;}
.ls2d{letter-spacing:-0.185308px;}
.ls21{letter-spacing:-0.089400px;}
.ls24{letter-spacing:-0.082218px;}
.ls32{letter-spacing:-0.072000px;}
.ls5f{letter-spacing:-0.020160px;}
.ls1d{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.008640px;}
.ls36{letter-spacing:0.020160px;}
.ls35{letter-spacing:0.032160px;}
.ls6d{letter-spacing:0.051840px;}
.ls6f{letter-spacing:0.089400px;}
.ls39{letter-spacing:0.097800px;}
.ls3{letter-spacing:0.102720px;}
.ls3d{letter-spacing:0.140160px;}
.ls0{letter-spacing:0.144000px;}
.ls48{letter-spacing:0.150000px;}
.ls6e{letter-spacing:0.158400px;}
.ls5a{letter-spacing:0.164160px;}
.ls70{letter-spacing:0.195600px;}
.ls4e{letter-spacing:0.200160px;}
.ls1{letter-spacing:0.264000px;}
.ls53{letter-spacing:0.294000px;}
.ls26{letter-spacing:0.382632px;}
.ls2{letter-spacing:0.466560px;}
.ls30{letter-spacing:0.466800px;}
.ls3e{letter-spacing:0.478560px;}
.ls66{letter-spacing:0.498240px;}
.ls14{letter-spacing:0.525186px;}
.ls6b{letter-spacing:0.586560px;}
.ls51{letter-spacing:0.596400px;}
.ls69{letter-spacing:0.607680px;}
.ls4a{letter-spacing:0.618000px;}
.ls29{letter-spacing:0.625492px;}
.ls2e{letter-spacing:0.638774px;}
.ls58{letter-spacing:0.646560px;}
.lse{letter-spacing:0.661795px;}
.ls27{letter-spacing:0.664072px;}
.ls28{letter-spacing:0.683045px;}
.ls4{letter-spacing:0.711360px;}
.ls5{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.788285px;}
.ls75{letter-spacing:0.798000px;}
.ls6{letter-spacing:1.080000px;}
.ls6c{letter-spacing:1.298880px;}
.ls23{letter-spacing:1.350000px;}
.ls46{letter-spacing:1.410000px;}
.ls4b{letter-spacing:1.530000px;}
.ls31{letter-spacing:1.536000px;}
.ls3c{letter-spacing:1.906560px;}
.ls5c{letter-spacing:1.918560px;}
.ls1f{letter-spacing:1.944000px;}
.ls47{letter-spacing:2.034000px;}
.ls8{letter-spacing:2.179673px;}
.ls34{letter-spacing:2.181950px;}
.ls7{letter-spacing:2.369408px;}
.ls3f{letter-spacing:3.346560px;}
.ls45{letter-spacing:3.358560px;}
.ls9{letter-spacing:3.697551px;}
.ls1c{letter-spacing:3.824041px;}
.ls15{letter-spacing:3.887286px;}
.ls6a{letter-spacing:4.141440px;}
.ls37{letter-spacing:4.786560px;}
.ls40{letter-spacing:4.906560px;}
.ls55{letter-spacing:4.930560px;}
.ls10{letter-spacing:5.215429px;}
.ls12{letter-spacing:5.341919px;}
.ls13{letter-spacing:5.405164px;}
.ls41{letter-spacing:6.226560px;}
.ls4f{letter-spacing:6.346560px;}
.ls43{letter-spacing:6.406560px;}
.ls11{letter-spacing:6.733307px;}
.ls42{letter-spacing:7.666560px;}
.ls44{letter-spacing:7.786560px;}
.ls5d{letter-spacing:7.846560px;}
.ls16{letter-spacing:8.251185px;}
.ls17{letter-spacing:8.377675px;}
.ls18{letter-spacing:8.440920px;}
.ls50{letter-spacing:9.106560px;}
.ls5b{letter-spacing:9.226560px;}
.ls68{letter-spacing:9.267840px;}
.ls5e{letter-spacing:9.286560px;}
.ls4d{letter-spacing:10.546560px;}
.lsb{letter-spacing:11.286942px;}
.lsd{letter-spacing:11.413431px;}
.lsa{letter-spacing:12.804820px;}
.lsc{letter-spacing:12.931309px;}
.ls62{letter-spacing:13.426560px;}
.ls1a{letter-spacing:15.840576px;}
.ls61{letter-spacing:16.306560px;}
.ls19{letter-spacing:17.358454px;}
.ls1b{letter-spacing:17.484944px;}
.ls60{letter-spacing:17.746560px;}
.ls67{letter-spacing:17.907840px;}
.ls65{letter-spacing:32.146560px;}
.ls64{letter-spacing:42.387840px;}
.ls57{letter-spacing:43.666560px;}
.ls63{letter-spacing:48.147840px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws19{word-spacing:-60.480000px;}
.ws20{word-spacing:-54.720000px;}
.ws15{word-spacing:-19.293120px;}
.wsf{word-spacing:-18.847440px;}
.ws9{word-spacing:-18.349440px;}
.ws12{word-spacing:-18.343440px;}
.ws11{word-spacing:-17.431440px;}
.ws13{word-spacing:-17.409840px;}
.ws16{word-spacing:-17.107440px;}
.ws1c{word-spacing:-17.009040px;}
.ws14{word-spacing:-16.963440px;}
.ws23{word-spacing:-16.917360px;}
.wse{word-spacing:-16.911240px;}
.ws1b{word-spacing:-16.902840px;}
.ws1{word-spacing:-16.813440px;}
.ws1a{word-spacing:-16.793280px;}
.ws0{word-spacing:-16.560000px;}
.ws10{word-spacing:-16.496640px;}
.wsd{word-spacing:-16.306440px;}
.ws17{word-spacing:-16.240440px;}
.ws18{word-spacing:-16.220040px;}
.ws22{word-spacing:-16.119360px;}
.ws8{word-spacing:-16.034864px;}
.ws21{word-spacing:-15.477360px;}
.ws1d{word-spacing:-15.212160px;}
.ws3{word-spacing:-15.120000px;}
.ws1f{word-spacing:-14.653200px;}
.ws1e{word-spacing:-13.680000px;}
.wsb{word-spacing:-13.050000px;}
.ws7{word-spacing:-11.790000px;}
.ws4{word-spacing:-11.160000px;}
.ws2{word-spacing:-10.808640px;}
.ws5{word-spacing:-10.440000px;}
.ws6{word-spacing:-9.720000px;}
.wsa{word-spacing:-8.928000px;}
.wsc{word-spacing:0.000000px;}
._12{margin-left:-13.398720px;}
._6{margin-left:-9.936000px;}
._e{margin-left:-8.838939px;}
._9{margin-left:-7.799040px;}
._13{margin-left:-6.645272px;}
._15{margin-left:-5.066181px;}
._5{margin-left:-4.028640px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._d{width:4.441960px;}
._c{width:5.799712px;}
._b{width:6.871408px;}
._8{width:8.133120px;}
._f{width:9.409179px;}
._7{width:11.448000px;}
._10{width:12.746880px;}
._11{width:14.362560px;}
._a{width:15.699221px;}
._14{width:18.092160px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsd{font-size:11.520000px;}
.fsc{font-size:12.143025px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs8{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fsf{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs10{font-size:83.520000px;}
.fse{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y40{bottom:2.875500px;}
.y5{bottom:4.320000px;}
.y4f{bottom:5.370000px;}
.y36{bottom:6.840000px;}
.y2{bottom:10.080000px;}
.y3f{bottom:10.795500px;}
.y4d{bottom:11.155500px;}
.y4{bottom:23.400000px;}
.y4c{bottom:29.875500px;}
.y35{bottom:33.120000px;}
.y3e{bottom:40.315500px;}
.y3{bottom:47.880000px;}
.y4b{bottom:50.071500px;}
.y3d{bottom:52.231500px;}
.y4a{bottom:55.474500px;}
.y7{bottom:57.636000px;}
.y34{bottom:59.040000px;}
.y3c{bottom:65.194500px;}
.y49{bottom:74.914500px;}
.y3b{bottom:78.154500px;}
.y33{bottom:85.320000px;}
.y48{bottom:93.274500px;}
.y37{bottom:95.080500px;}
.y47{bottom:97.594500px;}
.y7a{bottom:99.396000px;}
.y3a{bottom:100.114500px;}
.y119{bottom:101.196000px;}
.y46{bottom:103.714500px;}
.ye2{bottom:105.156000px;}
.yc1{bottom:107.316000px;}
.y182{bottom:108.396000px;}
.y12e{bottom:110.196000px;}
.y32{bottom:111.645000px;}
.y152{bottom:114.156000px;}
.ya2{bottom:115.596000px;}
.yff{bottom:116.316000px;}
.y45{bottom:119.554500px;}
.y79{bottom:119.556000px;}
.y100{bottom:119.916000px;}
.y118{bottom:124.236000px;}
.ye1{bottom:128.556000px;}
.y16f{bottom:130.716000px;}
.yc0{bottom:133.236000px;}
.y181{bottom:134.316000px;}
.y31{bottom:134.685000px;}
.y44{bottom:135.394500px;}
.y12d{bottom:136.476000px;}
.yfe{bottom:139.716000px;}
.y151{bottom:140.436000px;}
.y77{bottom:142.272000px;}
.ya1{bottom:144.792000px;}
.y78{bottom:145.872000px;}
.y117{bottom:150.555000px;}
.y43{bottom:150.874500px;}
.ye0{bottom:151.635000px;}
.y16e{bottom:153.435000px;}
.y30{bottom:157.725000px;}
.ybf{bottom:159.555000px;}
.y180{bottom:160.635000px;}
.y39{bottom:162.394500px;}
.yfd{bottom:162.435000px;}
.y12c{bottom:163.155000px;}
.y150{bottom:163.875000px;}
.y42{bottom:166.354500px;}
.y76{bottom:168.555000px;}
.y38{bottom:173.194500px;}
.y9f{bottom:176.475000px;}
.y16d{bottom:176.835000px;}
.ydf{bottom:177.555000px;}
.ya0{bottom:180.075000px;}
.y2f{bottom:181.125000px;}
.y41{bottom:181.504500px;}
.y12b{bottom:182.595000px;}
.y17f{bottom:184.035000px;}
.ybe{bottom:185.835000px;}
.y14f{bottom:186.555000px;}
.yfc{bottom:188.715000px;}
.y198{bottom:194.475000px;}
.y75{bottom:194.835000px;}
.y16c{bottom:196.995000px;}
.y9e{bottom:202.755000px;}
.yde{bottom:203.835000px;}
.y12a{bottom:208.875000px;}
.y14e{bottom:209.955000px;}
.y2e{bottom:212.445000px;}
.y17e{bottom:212.835000px;}
.yfb{bottom:214.635000px;}
.ybd{bottom:217.875000px;}
.y16b{bottom:220.035000px;}
.y74{bottom:220.755000px;}
.y197{bottom:222.555000px;}
.ydd{bottom:227.235000px;}
.y9d{bottom:228.675000px;}
.y14c{bottom:230.115000px;}
.y14d{bottom:233.715000px;}
.y129{bottom:234.795000px;}
.y17d{bottom:235.875000px;}
.y2d{bottom:236.205000px;}
.ybc{bottom:238.035000px;}
.yfa{bottom:240.915000px;}
.y16a{bottom:243.075000px;}
.y73{bottom:244.155000px;}
.y196{bottom:248.835000px;}
.y116{bottom:252.075000px;}
.y14b{bottom:253.155000px;}
.y9c{bottom:254.955000px;}
.ydc{bottom:256.395000px;}
.y2c{bottom:259.635000px;}
.ybb{bottom:261.075000px;}
.y17c{bottom:262.155000px;}
.y72{bottom:264.315000px;}
.y169{bottom:272.235000px;}
.y195{bottom:274.785000px;}
.y115{bottom:275.145000px;}
.y9b{bottom:278.385000px;}
.ydb{bottom:279.105000px;}
.y2b{bottom:283.035000px;}
.y71{bottom:287.025000px;}
.y17b{bottom:288.105000px;}
.y168{bottom:295.305000px;}
.yf{bottom:297.825000px;}
.y9a{bottom:301.065000px;}
.yda{bottom:302.505000px;}
.y14a{bottom:305.385000px;}
.y1d{bottom:306.075000px;}
.y2a{bottom:306.795000px;}
.yba{bottom:310.425000px;}
.y70{bottom:313.305000px;}
.y17a{bottom:314.385000px;}
.y167{bottom:318.705000px;}
.y194{bottom:324.105000px;}
.yd9{bottom:325.545000px;}
.y99{bottom:327.345000px;}
.y1c{bottom:330.195000px;}
.yb9{bottom:330.585000px;}
.y149{bottom:331.305000px;}
.yf9{bottom:333.465000px;}
.y166{bottom:338.865000px;}
.y6f{bottom:339.585000px;}
.y179{bottom:340.305000px;}
.y193{bottom:341.385000px;}
.yd8{bottom:348.585000px;}
.yb8{bottom:350.745000px;}
.y29{bottom:353.595000px;}
.y98{bottom:353.625000px;}
.y1b{bottom:354.315000px;}
.y148{bottom:354.705000px;}
.y165{bottom:358.665000px;}
.yf8{bottom:359.385000px;}
.y192{bottom:362.265000px;}
.y128{bottom:362.625000px;}
.y6e{bottom:365.505000px;}
.y178{bottom:366.585000px;}
.yd6{bottom:371.625000px;}
.yb7{bottom:373.425000px;}
.y147{bottom:374.865000px;}
.yd7{bottom:375.225000px;}
.y28{bottom:377.385000px;}
.y1a{bottom:378.465000px;}
.y164{bottom:378.825000px;}
.y97{bottom:379.545000px;}
.yf7{bottom:382.785000px;}
.y191{bottom:385.305000px;}
.y127{bottom:385.665000px;}
.y6d{bottom:388.905000px;}
.y177{bottom:392.865000px;}
.yb6{bottom:396.825000px;}
.yd5{bottom:397.905000px;}
.y163{bottom:398.985000px;}
.y27{bottom:400.785000px;}
.y19{bottom:402.585000px;}
.y114{bottom:402.945000px;}
.y96{bottom:405.870000px;}
.y6c{bottom:411.990000px;}
.y176{bottom:418.830000px;}
.y162{bottom:419.190000px;}
.yb5{bottom:419.910000px;}
.yd4{bottom:420.990000px;}
.y190{bottom:423.150000px;}
.y146{bottom:423.870000px;}
.y26{bottom:424.185000px;}
.y113{bottom:426.030000px;}
.y18{bottom:426.705000px;}
.y95{bottom:429.270000px;}
.yf6{bottom:431.790000px;}
.y126{bottom:435.030000px;}
.y6b{bottom:437.910000px;}
.y161{bottom:439.350000px;}
.yd3{bottom:444.030000px;}
.y175{bottom:445.110000px;}
.yb4{bottom:445.830000px;}
.y25{bottom:447.945000px;}
.y94{bottom:449.070000px;}
.y145{bottom:450.150000px;}
.y17{bottom:450.825000px;}
.y112{bottom:451.950000px;}
.y125{bottom:458.070000px;}
.y160{bottom:459.150000px;}
.y6a{bottom:464.190000px;}
.yf4{bottom:467.070000px;}
.yd2{bottom:470.310000px;}
.yf5{bottom:470.670000px;}
.y174{bottom:471.030000px;}
.y24{bottom:471.345000px;}
.y93{bottom:472.110000px;}
.y16{bottom:474.945000px;}
.y18f{bottom:475.350000px;}
.y144{bottom:476.070000px;}
.y111{bottom:478.230000px;}
.y15f{bottom:479.310000px;}
.y124{bottom:484.350000px;}
.y69{bottom:490.110000px;}
.yf3{bottom:493.350000px;}
.y23{bottom:494.745000px;}
.yd1{bottom:496.230000px;}
.y173{bottom:497.310000px;}
.y92{bottom:498.390000px;}
.y15{bottom:499.065000px;}
.y15e{bottom:499.470000px;}
.y18e{bottom:501.270000px;}
.y143{bottom:502.350000px;}
.y110{bottom:504.150000px;}
.y123{bottom:510.270000px;}
.y22{bottom:518.550000px;}
.yf2{bottom:519.270000px;}
.ycf{bottom:519.630000px;}
.y67{bottom:522.510000px;}
.yd0{bottom:523.230000px;}
.y14{bottom:523.590000px;}
.y91{bottom:524.310000px;}
.y68{bottom:526.110000px;}
.y10e{bottom:527.550000px;}
.y141{bottom:528.270000px;}
.y10f{bottom:531.150000px;}
.y142{bottom:531.870000px;}
.y122{bottom:536.550000px;}
.y15d{bottom:539.820000px;}
.y18d{bottom:541.620000px;}
.y21{bottom:541.950000px;}
.yce{bottom:542.700000px;}
.y66{bottom:545.580000px;}
.y13{bottom:547.710000px;}
.y172{bottom:549.540000px;}
.y90{bottom:550.620000px;}
.y140{bottom:554.580000px;}
.y18c{bottom:558.900000px;}
.y15c{bottom:559.980000px;}
.y121{bottom:562.500000px;}
.y20{bottom:565.350000px;}
.ycd{bottom:565.740000px;}
.y65{bottom:571.500000px;}
.y12{bottom:571.830000px;}
.y171{bottom:575.820000px;}
.y8f{bottom:576.540000px;}
.y13e{bottom:577.980000px;}
.y18b{bottom:579.420000px;}
.y13f{bottom:581.580000px;}
.y15b{bottom:582.660000px;}
.ycc{bottom:585.900000px;}
.y120{bottom:588.780000px;}
.y1f{bottom:589.110000px;}
.y11{bottom:595.950000px;}
.y64{bottom:597.780000px;}
.y170{bottom:598.860000px;}
.y8e{bottom:599.940000px;}
.y13d{bottom:600.660000px;}
.y18a{bottom:602.460000px;}
.yb3{bottom:602.820000px;}
.y15a{bottom:606.060000px;}
.ycb{bottom:608.940000px;}
.y11f{bottom:612.180000px;}
.y1e{bottom:612.510000px;}
.y189{bottom:619.380000px;}
.y10{bottom:620.070000px;}
.y8d{bottom:620.100000px;}
.yf1{bottom:621.180000px;}
.y63{bottom:624.060000px;}
.yb2{bottom:626.220000px;}
.y13c{bottom:626.940000px;}
.y10d{bottom:629.100000px;}
.yca{bottom:634.860000px;}
.y188{bottom:636.660000px;}
.y8c{bottom:643.140000px;}
.yf0{bottom:643.860000px;}
.yb1{bottom:648.900000px;}
.y62{bottom:649.980000px;}
.y13b{bottom:653.220000px;}
.y10c{bottom:655.020000px;}
.y187{bottom:655.740000px;}
.yc9{bottom:661.140000px;}
.y8b{bottom:669.090000px;}
.yef{bottom:670.170000px;}
.yb0{bottom:675.210000px;}
.y186{bottom:675.570000px;}
.y61{bottom:676.290000px;}
.y10b{bottom:678.450000px;}
.y159{bottom:681.330000px;}
.yc8{bottom:684.570000px;}
.y8a{bottom:695.370000px;}
.yee{bottom:696.450000px;}
.y185{bottom:698.250000px;}
.y13a{bottom:699.330000px;}
.y10a{bottom:701.490000px;}
.y60{bottom:702.210000px;}
.y158{bottom:704.730000px;}
.yc7{bottom:707.250000px;}
.yae{bottom:710.490000px;}
.yaf{bottom:714.090000px;}
.y89{bottom:721.290000px;}
.yed{bottom:722.370000px;}
.y109{bottom:724.530000px;}
.y5f{bottom:725.610000px;}
.yc6{bottom:730.650000px;}
.yad{bottom:736.410000px;}
.y157{bottom:740.010000px;}
.y5e{bottom:745.770000px;}
.y88{bottom:747.570000px;}
.yec{bottom:748.650000px;}
.y184{bottom:750.450000px;}
.yc5{bottom:750.810000px;}
.y139{bottom:751.530000px;}
.yac{bottom:762.690000px;}
.y11d{bottom:765.930000px;}
.y5d{bottom:768.810000px;}
.y11e{bottom:769.530000px;}
.y108{bottom:773.850000px;}
.yeb{bottom:774.570000px;}
.y183{bottom:776.730000px;}
.y138{bottom:777.810000px;}
.yc3{bottom:779.970000px;}
.y87{bottom:782.850000px;}
.yc4{bottom:783.570000px;}
.yab{bottom:788.610000px;}
.y5c{bottom:794.730000px;}
.y107{bottom:799.770000px;}
.yea{bottom:800.895000px;}
.y137{bottom:801.255000px;}
.yc2{bottom:802.695000px;}
.y86{bottom:805.935000px;}
.yaa{bottom:812.055000px;}
.y11c{bottom:814.935000px;}
.y5b{bottom:818.175000px;}
.ye9{bottom:824.295000px;}
.y106{bottom:826.095000px;}
.y85{bottom:828.975000px;}
.y136{bottom:830.415000px;}
.ya9{bottom:835.095000px;}
.y156{bottom:838.335000px;}
.y5a{bottom:841.215000px;}
.ye8{bottom:846.975000px;}
.y105{bottom:852.015000px;}
.y135{bottom:853.095000px;}
.y84{bottom:855.255000px;}
.ya8{bottom:861.015000px;}
.y11b{bottom:864.255000px;}
.y59{bottom:867.135000px;}
.ye7{bottom:873.255000px;}
.y134{bottom:876.495000px;}
.y104{bottom:878.295000px;}
.y83{bottom:881.175000px;}
.y155{bottom:884.415000px;}
.ya7{bottom:887.295000px;}
.y58{bottom:890.535000px;}
.ye6{bottom:896.655000px;}
.y133{bottom:899.535000px;}
.y103{bottom:904.575000px;}
.y82{bottom:907.455000px;}
.y57{bottom:913.575000px;}
.ye5{bottom:919.335000px;}
.y132{bottom:925.455000px;}
.ye{bottom:930.135000px;}
.y102{bottom:930.495000px;}
.y81{bottom:933.405000px;}
.yd{bottom:935.565000px;}
.ya6{bottom:936.645000px;}
.y56{bottom:939.525000px;}
.ye4{bottom:945.645000px;}
.y131{bottom:948.885000px;}
.yc{bottom:959.325000px;}
.y80{bottom:959.685000px;}
.y101{bottom:962.925000px;}
.y55{bottom:965.805000px;}
.ye3{bottom:969.045000px;}
.y130{bottom:971.925000px;}
.y154{bottom:983.085000px;}
.yb{bottom:985.605000px;}
.y7f{bottom:985.965000px;}
.y11a{bottom:989.205000px;}
.y54{bottom:991.725000px;}
.y12f{bottom:994.965000px;}
.y153{bottom:1005.765000px;}
.ya{bottom:1007.925000px;}
.ya5{bottom:1009.005000px;}
.y7e{bottom:1011.885000px;}
.y53{bottom:1018.005000px;}
.ya4{bottom:1032.045000px;}
.y9{bottom:1036.005000px;}
.y7d{bottom:1038.165000px;}
.y52{bottom:1041.405000px;}
.ya3{bottom:1058.325000px;}
.y7c{bottom:1061.565000px;}
.y51{bottom:1064.085000px;}
.y8{bottom:1072.050000px;}
.y4e{bottom:1075.320000px;}
.y7b{bottom:1084.290000px;}
.y50{bottom:1087.530000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.hc{height:4.165313px;}
.h17{height:5.650313px;}
.h19{height:11.610000px;}
.h18{height:12.872318px;}
.h1a{height:27.720000px;}
.h14{height:29.678906px;}
.h13{height:35.332031px;}
.hf{height:40.985156px;}
.h1d{height:41.215078px;}
.he{height:42.086250px;}
.ha{height:49.712344px;}
.h15{height:53.677969px;}
.h1f{height:53.704687px;}
.h16{height:55.147500px;}
.h7{height:57.290625px;}
.h11{height:58.006406px;}
.h6{height:59.357813px;}
.hb{height:60.952500px;}
.h10{height:61.143509px;}
.h20{height:62.163910px;}
.h1b{height:63.565031px;}
.h9{height:64.112344px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h1e{height:67.579668px;}
.h8{height:76.324219px;}
.h2{height:84.990000px;}
.h21{height:85.845399px;}
.h4{height:116.640000px;}
.h12{height:202.005000px;}
.hd{height:629.430000px;}
.h1{height:1262.250000px;}
.h1c{height:1262.516085px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w7{width:893.156250px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:6.876000px;}
.x1a{left:8.295000px;}
.x4{left:13.305000px;}
.x16{left:14.386500px;}
.x18{left:16.186500px;}
.x1e{left:18.346500px;}
.x17{left:19.426500px;}
.x6{left:28.785000px;}
.x10{left:43.906500px;}
.x1f{left:47.542500px;}
.x11{left:50.782500px;}
.xf{left:55.102500px;}
.x15{left:56.182500px;}
.x21{left:57.262500px;}
.x1b{left:62.295000px;}
.x20{left:66.265500px;}
.x1c{left:69.855000px;}
.x14{left:73.105500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x13{left:92.905500px;}
.x2{left:95.425500px;}
.x22{left:102.985500px;}
.x1d{left:106.945500px;}
.x33{left:110.196000px;}
.x49{left:113.436000px;}
.x12{left:124.585500px;}
.x27{left:140.472000px;}
.x5{left:141.540000px;}
.x23{left:169.260000px;}
.x3{left:182.250000px;}
.x24{left:212.130000px;}
.x19{left:218.970000px;}
.xb{left:234.105000px;}
.x3d{left:256.061250px;}
.x3e{left:261.105000px;}
.x3f{left:292.781250px;}
.x28{left:295.661250px;}
.x29{left:297.825000px;}
.x40{left:299.985000px;}
.x4b{left:302.505000px;}
.x43{left:352.946250px;}
.x34{left:354.386250px;}
.x35{left:359.430000px;}
.x44{left:364.470000px;}
.x47{left:374.910000px;}
.x2f{left:388.950000px;}
.x30{left:393.270000px;}
.x31{left:417.060000px;}
.x32{left:422.100000px;}
.xc{left:443.700000px;}
.x25{left:463.875000px;}
.x2b{left:474.656250px;}
.x2c{left:478.980000px;}
.x36{left:542.726250px;}
.x37{left:549.930000px;}
.x45{left:591.731250px;}
.xa{left:602.895000px;}
.x46{left:603.975000px;}
.xd{left:610.455000px;}
.x48{left:615.495000px;}
.x41{left:630.611250px;}
.x42{left:639.975000px;}
.x4a{left:658.695000px;}
.x38{left:701.561250px;}
.x3b{left:705.521250px;}
.x39{left:710.925000px;}
.x3c{left:712.725000px;}
.x3a{left:717.761250px;}
.x2d{left:723.521250px;}
.x2e{left:730.005000px;}
.x9{left:766.050000px;}
.x2a{left:770.730000px;}
.x8{left:784.770000px;}
.xe{left:807.090000px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v3{vertical-align:-5.120000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:12.800000pt;}
.ls2a{letter-spacing:-7.195867pt;}
.ls1e{letter-spacing:-1.536000pt;}
.ls56{letter-spacing:-1.264000pt;}
.ls4c{letter-spacing:-1.152000pt;}
.ls52{letter-spacing:-0.933333pt;}
.ls3a{letter-spacing:-0.864000pt;}
.ls2f{letter-spacing:-0.758939pt;}
.ls22{letter-spacing:-0.640000pt;}
.ls73{letter-spacing:-0.570667pt;}
.ls33{letter-spacing:-0.560000pt;}
.ls59{letter-spacing:-0.527467pt;}
.ls54{letter-spacing:-0.509333pt;}
.ls71{letter-spacing:-0.506667pt;}
.ls25{letter-spacing:-0.466607pt;}
.ls38{letter-spacing:-0.450667pt;}
.ls20{letter-spacing:-0.448000pt;}
.ls72{letter-spacing:-0.414933pt;}
.ls2b{letter-spacing:-0.310322pt;}
.ls49{letter-spacing:-0.281600pt;}
.ls74{letter-spacing:-0.248533pt;}
.ls2c{letter-spacing:-0.245671pt;}
.ls2d{letter-spacing:-0.164718pt;}
.ls21{letter-spacing:-0.079467pt;}
.ls24{letter-spacing:-0.073083pt;}
.ls32{letter-spacing:-0.064000pt;}
.ls5f{letter-spacing:-0.017920pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.007680pt;}
.ls36{letter-spacing:0.017920pt;}
.ls35{letter-spacing:0.028587pt;}
.ls6d{letter-spacing:0.046080pt;}
.ls6f{letter-spacing:0.079467pt;}
.ls39{letter-spacing:0.086933pt;}
.ls3{letter-spacing:0.091307pt;}
.ls3d{letter-spacing:0.124587pt;}
.ls0{letter-spacing:0.128000pt;}
.ls48{letter-spacing:0.133333pt;}
.ls6e{letter-spacing:0.140800pt;}
.ls5a{letter-spacing:0.145920pt;}
.ls70{letter-spacing:0.173867pt;}
.ls4e{letter-spacing:0.177920pt;}
.ls1{letter-spacing:0.234667pt;}
.ls53{letter-spacing:0.261333pt;}
.ls26{letter-spacing:0.340117pt;}
.ls2{letter-spacing:0.414720pt;}
.ls30{letter-spacing:0.414933pt;}
.ls3e{letter-spacing:0.425387pt;}
.ls66{letter-spacing:0.442880pt;}
.ls14{letter-spacing:0.466832pt;}
.ls6b{letter-spacing:0.521387pt;}
.ls51{letter-spacing:0.530133pt;}
.ls69{letter-spacing:0.540160pt;}
.ls4a{letter-spacing:0.549333pt;}
.ls29{letter-spacing:0.555993pt;}
.ls2e{letter-spacing:0.567799pt;}
.ls58{letter-spacing:0.574720pt;}
.lse{letter-spacing:0.588262pt;}
.ls27{letter-spacing:0.590286pt;}
.ls28{letter-spacing:0.607151pt;}
.ls4{letter-spacing:0.632320pt;}
.ls5{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.700698pt;}
.ls75{letter-spacing:0.709333pt;}
.ls6{letter-spacing:0.960000pt;}
.ls6c{letter-spacing:1.154560pt;}
.ls23{letter-spacing:1.200000pt;}
.ls46{letter-spacing:1.253333pt;}
.ls4b{letter-spacing:1.360000pt;}
.ls31{letter-spacing:1.365333pt;}
.ls3c{letter-spacing:1.694720pt;}
.ls5c{letter-spacing:1.705387pt;}
.ls1f{letter-spacing:1.728000pt;}
.ls47{letter-spacing:1.808000pt;}
.ls8{letter-spacing:1.937487pt;}
.ls34{letter-spacing:1.939511pt;}
.ls7{letter-spacing:2.106140pt;}
.ls3f{letter-spacing:2.974720pt;}
.ls45{letter-spacing:2.985387pt;}
.ls9{letter-spacing:3.286712pt;}
.ls1c{letter-spacing:3.399147pt;}
.ls15{letter-spacing:3.455365pt;}
.ls6a{letter-spacing:3.681280pt;}
.ls37{letter-spacing:4.254720pt;}
.ls40{letter-spacing:4.361387pt;}
.ls55{letter-spacing:4.382720pt;}
.ls10{letter-spacing:4.635937pt;}
.ls12{letter-spacing:4.748372pt;}
.ls13{letter-spacing:4.804590pt;}
.ls41{letter-spacing:5.534720pt;}
.ls4f{letter-spacing:5.641387pt;}
.ls43{letter-spacing:5.694720pt;}
.ls11{letter-spacing:5.985162pt;}
.ls42{letter-spacing:6.814720pt;}
.ls44{letter-spacing:6.921387pt;}
.ls5d{letter-spacing:6.974720pt;}
.ls16{letter-spacing:7.334387pt;}
.ls17{letter-spacing:7.446822pt;}
.ls18{letter-spacing:7.503040pt;}
.ls50{letter-spacing:8.094720pt;}
.ls5b{letter-spacing:8.201387pt;}
.ls68{letter-spacing:8.238080pt;}
.ls5e{letter-spacing:8.254720pt;}
.ls4d{letter-spacing:9.374720pt;}
.lsb{letter-spacing:10.032837pt;}
.lsd{letter-spacing:10.145272pt;}
.lsa{letter-spacing:11.382062pt;}
.lsc{letter-spacing:11.494497pt;}
.ls62{letter-spacing:11.934720pt;}
.ls1a{letter-spacing:14.080512pt;}
.ls61{letter-spacing:14.494720pt;}
.ls19{letter-spacing:15.429737pt;}
.ls1b{letter-spacing:15.542172pt;}
.ls60{letter-spacing:15.774720pt;}
.ls67{letter-spacing:15.918080pt;}
.ls65{letter-spacing:28.574720pt;}
.ls64{letter-spacing:37.678080pt;}
.ls57{letter-spacing:38.814720pt;}
.ls63{letter-spacing:42.798080pt;}
.ws19{word-spacing:-53.760000pt;}
.ws20{word-spacing:-48.640000pt;}
.ws15{word-spacing:-17.149440pt;}
.wsf{word-spacing:-16.753280pt;}
.ws9{word-spacing:-16.310613pt;}
.ws12{word-spacing:-16.305280pt;}
.ws11{word-spacing:-15.494613pt;}
.ws13{word-spacing:-15.475413pt;}
.ws16{word-spacing:-15.206613pt;}
.ws1c{word-spacing:-15.119147pt;}
.ws14{word-spacing:-15.078613pt;}
.ws23{word-spacing:-15.037653pt;}
.wse{word-spacing:-15.032213pt;}
.ws1b{word-spacing:-15.024747pt;}
.ws1{word-spacing:-14.945280pt;}
.ws1a{word-spacing:-14.927360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.663680pt;}
.wsd{word-spacing:-14.494613pt;}
.ws17{word-spacing:-14.435947pt;}
.ws18{word-spacing:-14.417813pt;}
.ws22{word-spacing:-14.328320pt;}
.ws8{word-spacing:-14.253213pt;}
.ws21{word-spacing:-13.757653pt;}
.ws1d{word-spacing:-13.521920pt;}
.ws3{word-spacing:-13.440000pt;}
.ws1f{word-spacing:-13.025067pt;}
.ws1e{word-spacing:-12.160000pt;}
.wsb{word-spacing:-11.600000pt;}
.ws7{word-spacing:-10.480000pt;}
.ws4{word-spacing:-9.920000pt;}
.ws2{word-spacing:-9.607680pt;}
.ws5{word-spacing:-9.280000pt;}
.ws6{word-spacing:-8.640000pt;}
.wsa{word-spacing:-7.936000pt;}
.wsc{word-spacing:0.000000pt;}
._12{margin-left:-11.909973pt;}
._6{margin-left:-8.832000pt;}
._e{margin-left:-7.856834pt;}
._9{margin-left:-6.932480pt;}
._13{margin-left:-5.906908pt;}
._15{margin-left:-4.503272pt;}
._5{margin-left:-3.581013pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._d{width:3.948409pt;}
._c{width:5.155300pt;}
._b{width:6.107918pt;}
._8{width:7.229440pt;}
._f{width:8.363714pt;}
._7{width:10.176000pt;}
._10{width:11.330560pt;}
._11{width:12.766720pt;}
._a{width:13.954863pt;}
._14{width:16.081920pt;}
.fs6{font-size:5.120000pt;}
.fsd{font-size:10.240000pt;}
.fsc{font-size:10.793800pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs8{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fsf{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs10{font-size:74.240000pt;}
.fse{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:2.556000pt;}
.y5{bottom:3.840000pt;}
.y4f{bottom:4.773333pt;}
.y36{bottom:6.080000pt;}
.y2{bottom:8.960000pt;}
.y3f{bottom:9.596000pt;}
.y4d{bottom:9.916000pt;}
.y4{bottom:20.800000pt;}
.y4c{bottom:26.556000pt;}
.y35{bottom:29.440000pt;}
.y3e{bottom:35.836000pt;}
.y3{bottom:42.560000pt;}
.y4b{bottom:44.508000pt;}
.y3d{bottom:46.428000pt;}
.y4a{bottom:49.310667pt;}
.y7{bottom:51.232000pt;}
.y34{bottom:52.480000pt;}
.y3c{bottom:57.950667pt;}
.y49{bottom:66.590667pt;}
.y3b{bottom:69.470667pt;}
.y33{bottom:75.840000pt;}
.y48{bottom:82.910667pt;}
.y37{bottom:84.516000pt;}
.y47{bottom:86.750667pt;}
.y7a{bottom:88.352000pt;}
.y3a{bottom:88.990667pt;}
.y119{bottom:89.952000pt;}
.y46{bottom:92.190667pt;}
.ye2{bottom:93.472000pt;}
.yc1{bottom:95.392000pt;}
.y182{bottom:96.352000pt;}
.y12e{bottom:97.952000pt;}
.y32{bottom:99.240000pt;}
.y152{bottom:101.472000pt;}
.ya2{bottom:102.752000pt;}
.yff{bottom:103.392000pt;}
.y45{bottom:106.270667pt;}
.y79{bottom:106.272000pt;}
.y100{bottom:106.592000pt;}
.y118{bottom:110.432000pt;}
.ye1{bottom:114.272000pt;}
.y16f{bottom:116.192000pt;}
.yc0{bottom:118.432000pt;}
.y181{bottom:119.392000pt;}
.y31{bottom:119.720000pt;}
.y44{bottom:120.350667pt;}
.y12d{bottom:121.312000pt;}
.yfe{bottom:124.192000pt;}
.y151{bottom:124.832000pt;}
.y77{bottom:126.464000pt;}
.ya1{bottom:128.704000pt;}
.y78{bottom:129.664000pt;}
.y117{bottom:133.826667pt;}
.y43{bottom:134.110667pt;}
.ye0{bottom:134.786667pt;}
.y16e{bottom:136.386667pt;}
.y30{bottom:140.200000pt;}
.ybf{bottom:141.826667pt;}
.y180{bottom:142.786667pt;}
.y39{bottom:144.350667pt;}
.yfd{bottom:144.386667pt;}
.y12c{bottom:145.026667pt;}
.y150{bottom:145.666667pt;}
.y42{bottom:147.870667pt;}
.y76{bottom:149.826667pt;}
.y38{bottom:153.950667pt;}
.y9f{bottom:156.866667pt;}
.y16d{bottom:157.186667pt;}
.ydf{bottom:157.826667pt;}
.ya0{bottom:160.066667pt;}
.y2f{bottom:161.000000pt;}
.y41{bottom:161.337333pt;}
.y12b{bottom:162.306667pt;}
.y17f{bottom:163.586667pt;}
.ybe{bottom:165.186667pt;}
.y14f{bottom:165.826667pt;}
.yfc{bottom:167.746667pt;}
.y198{bottom:172.866667pt;}
.y75{bottom:173.186667pt;}
.y16c{bottom:175.106667pt;}
.y9e{bottom:180.226667pt;}
.yde{bottom:181.186667pt;}
.y12a{bottom:185.666667pt;}
.y14e{bottom:186.626667pt;}
.y2e{bottom:188.840000pt;}
.y17e{bottom:189.186667pt;}
.yfb{bottom:190.786667pt;}
.ybd{bottom:193.666667pt;}
.y16b{bottom:195.586667pt;}
.y74{bottom:196.226667pt;}
.y197{bottom:197.826667pt;}
.ydd{bottom:201.986667pt;}
.y9d{bottom:203.266667pt;}
.y14c{bottom:204.546667pt;}
.y14d{bottom:207.746667pt;}
.y129{bottom:208.706667pt;}
.y17d{bottom:209.666667pt;}
.y2d{bottom:209.960000pt;}
.ybc{bottom:211.586667pt;}
.yfa{bottom:214.146667pt;}
.y16a{bottom:216.066667pt;}
.y73{bottom:217.026667pt;}
.y196{bottom:221.186667pt;}
.y116{bottom:224.066667pt;}
.y14b{bottom:225.026667pt;}
.y9c{bottom:226.626667pt;}
.ydc{bottom:227.906667pt;}
.y2c{bottom:230.786667pt;}
.ybb{bottom:232.066667pt;}
.y17c{bottom:233.026667pt;}
.y72{bottom:234.946667pt;}
.y169{bottom:241.986667pt;}
.y195{bottom:244.253333pt;}
.y115{bottom:244.573333pt;}
.y9b{bottom:247.453333pt;}
.ydb{bottom:248.093333pt;}
.y2b{bottom:251.586667pt;}
.y71{bottom:255.133333pt;}
.y17b{bottom:256.093333pt;}
.y168{bottom:262.493333pt;}
.yf{bottom:264.733333pt;}
.y9a{bottom:267.613333pt;}
.yda{bottom:268.893333pt;}
.y14a{bottom:271.453333pt;}
.y1d{bottom:272.066667pt;}
.y2a{bottom:272.706667pt;}
.yba{bottom:275.933333pt;}
.y70{bottom:278.493333pt;}
.y17a{bottom:279.453333pt;}
.y167{bottom:283.293333pt;}
.y194{bottom:288.093333pt;}
.yd9{bottom:289.373333pt;}
.y99{bottom:290.973333pt;}
.y1c{bottom:293.506667pt;}
.yb9{bottom:293.853333pt;}
.y149{bottom:294.493333pt;}
.yf9{bottom:296.413333pt;}
.y166{bottom:301.213333pt;}
.y6f{bottom:301.853333pt;}
.y179{bottom:302.493333pt;}
.y193{bottom:303.453333pt;}
.yd8{bottom:309.853333pt;}
.yb8{bottom:311.773333pt;}
.y29{bottom:314.306667pt;}
.y98{bottom:314.333333pt;}
.y1b{bottom:314.946667pt;}
.y148{bottom:315.293333pt;}
.y165{bottom:318.813333pt;}
.yf8{bottom:319.453333pt;}
.y192{bottom:322.013333pt;}
.y128{bottom:322.333333pt;}
.y6e{bottom:324.893333pt;}
.y178{bottom:325.853333pt;}
.yd6{bottom:330.333333pt;}
.yb7{bottom:331.933333pt;}
.y147{bottom:333.213333pt;}
.yd7{bottom:333.533333pt;}
.y28{bottom:335.453333pt;}
.y1a{bottom:336.413333pt;}
.y164{bottom:336.733333pt;}
.y97{bottom:337.373333pt;}
.yf7{bottom:340.253333pt;}
.y191{bottom:342.493333pt;}
.y127{bottom:342.813333pt;}
.y6d{bottom:345.693333pt;}
.y177{bottom:349.213333pt;}
.yb6{bottom:352.733333pt;}
.yd5{bottom:353.693333pt;}
.y163{bottom:354.653333pt;}
.y27{bottom:356.253333pt;}
.y19{bottom:357.853333pt;}
.y114{bottom:358.173333pt;}
.y96{bottom:360.773333pt;}
.y6c{bottom:366.213333pt;}
.y176{bottom:372.293333pt;}
.y162{bottom:372.613333pt;}
.yb5{bottom:373.253333pt;}
.yd4{bottom:374.213333pt;}
.y190{bottom:376.133333pt;}
.y146{bottom:376.773333pt;}
.y26{bottom:377.053333pt;}
.y113{bottom:378.693333pt;}
.y18{bottom:379.293333pt;}
.y95{bottom:381.573333pt;}
.yf6{bottom:383.813333pt;}
.y126{bottom:386.693333pt;}
.y6b{bottom:389.253333pt;}
.y161{bottom:390.533333pt;}
.yd3{bottom:394.693333pt;}
.y175{bottom:395.653333pt;}
.yb4{bottom:396.293333pt;}
.y25{bottom:398.173333pt;}
.y94{bottom:399.173333pt;}
.y145{bottom:400.133333pt;}
.y17{bottom:400.733333pt;}
.y112{bottom:401.733333pt;}
.y125{bottom:407.173333pt;}
.y160{bottom:408.133333pt;}
.y6a{bottom:412.613333pt;}
.yf4{bottom:415.173333pt;}
.yd2{bottom:418.053333pt;}
.yf5{bottom:418.373333pt;}
.y174{bottom:418.693333pt;}
.y24{bottom:418.973333pt;}
.y93{bottom:419.653333pt;}
.y16{bottom:422.173333pt;}
.y18f{bottom:422.533333pt;}
.y144{bottom:423.173333pt;}
.y111{bottom:425.093333pt;}
.y15f{bottom:426.053333pt;}
.y124{bottom:430.533333pt;}
.y69{bottom:435.653333pt;}
.yf3{bottom:438.533333pt;}
.y23{bottom:439.773333pt;}
.yd1{bottom:441.093333pt;}
.y173{bottom:442.053333pt;}
.y92{bottom:443.013333pt;}
.y15{bottom:443.613333pt;}
.y15e{bottom:443.973333pt;}
.y18e{bottom:445.573333pt;}
.y143{bottom:446.533333pt;}
.y110{bottom:448.133333pt;}
.y123{bottom:453.573333pt;}
.y22{bottom:460.933333pt;}
.yf2{bottom:461.573333pt;}
.ycf{bottom:461.893333pt;}
.y67{bottom:464.453333pt;}
.yd0{bottom:465.093333pt;}
.y14{bottom:465.413333pt;}
.y91{bottom:466.053333pt;}
.y68{bottom:467.653333pt;}
.y10e{bottom:468.933333pt;}
.y141{bottom:469.573333pt;}
.y10f{bottom:472.133333pt;}
.y142{bottom:472.773333pt;}
.y122{bottom:476.933333pt;}
.y15d{bottom:479.840000pt;}
.y18d{bottom:481.440000pt;}
.y21{bottom:481.733333pt;}
.yce{bottom:482.400000pt;}
.y66{bottom:484.960000pt;}
.y13{bottom:486.853333pt;}
.y172{bottom:488.480000pt;}
.y90{bottom:489.440000pt;}
.y140{bottom:492.960000pt;}
.y18c{bottom:496.800000pt;}
.y15c{bottom:497.760000pt;}
.y121{bottom:500.000000pt;}
.y20{bottom:502.533333pt;}
.ycd{bottom:502.880000pt;}
.y65{bottom:508.000000pt;}
.y12{bottom:508.293333pt;}
.y171{bottom:511.840000pt;}
.y8f{bottom:512.480000pt;}
.y13e{bottom:513.760000pt;}
.y18b{bottom:515.040000pt;}
.y13f{bottom:516.960000pt;}
.y15b{bottom:517.920000pt;}
.ycc{bottom:520.800000pt;}
.y120{bottom:523.360000pt;}
.y1f{bottom:523.653333pt;}
.y11{bottom:529.733333pt;}
.y64{bottom:531.360000pt;}
.y170{bottom:532.320000pt;}
.y8e{bottom:533.280000pt;}
.y13d{bottom:533.920000pt;}
.y18a{bottom:535.520000pt;}
.yb3{bottom:535.840000pt;}
.y15a{bottom:538.720000pt;}
.ycb{bottom:541.280000pt;}
.y11f{bottom:544.160000pt;}
.y1e{bottom:544.453333pt;}
.y189{bottom:550.560000pt;}
.y10{bottom:551.173333pt;}
.y8d{bottom:551.200000pt;}
.yf1{bottom:552.160000pt;}
.y63{bottom:554.720000pt;}
.yb2{bottom:556.640000pt;}
.y13c{bottom:557.280000pt;}
.y10d{bottom:559.200000pt;}
.yca{bottom:564.320000pt;}
.y188{bottom:565.920000pt;}
.y8c{bottom:571.680000pt;}
.yf0{bottom:572.320000pt;}
.yb1{bottom:576.800000pt;}
.y62{bottom:577.760000pt;}
.y13b{bottom:580.640000pt;}
.y10c{bottom:582.240000pt;}
.y187{bottom:582.880000pt;}
.yc9{bottom:587.680000pt;}
.y8b{bottom:594.746667pt;}
.yef{bottom:595.706667pt;}
.yb0{bottom:600.186667pt;}
.y186{bottom:600.506667pt;}
.y61{bottom:601.146667pt;}
.y10b{bottom:603.066667pt;}
.y159{bottom:605.626667pt;}
.yc8{bottom:608.506667pt;}
.y8a{bottom:618.106667pt;}
.yee{bottom:619.066667pt;}
.y185{bottom:620.666667pt;}
.y13a{bottom:621.626667pt;}
.y10a{bottom:623.546667pt;}
.y60{bottom:624.186667pt;}
.y158{bottom:626.426667pt;}
.yc7{bottom:628.666667pt;}
.yae{bottom:631.546667pt;}
.yaf{bottom:634.746667pt;}
.y89{bottom:641.146667pt;}
.yed{bottom:642.106667pt;}
.y109{bottom:644.026667pt;}
.y5f{bottom:644.986667pt;}
.yc6{bottom:649.466667pt;}
.yad{bottom:654.586667pt;}
.y157{bottom:657.786667pt;}
.y5e{bottom:662.906667pt;}
.y88{bottom:664.506667pt;}
.yec{bottom:665.466667pt;}
.y184{bottom:667.066667pt;}
.yc5{bottom:667.386667pt;}
.y139{bottom:668.026667pt;}
.yac{bottom:677.946667pt;}
.y11d{bottom:680.826667pt;}
.y5d{bottom:683.386667pt;}
.y11e{bottom:684.026667pt;}
.y108{bottom:687.866667pt;}
.yeb{bottom:688.506667pt;}
.y183{bottom:690.426667pt;}
.y138{bottom:691.386667pt;}
.yc3{bottom:693.306667pt;}
.y87{bottom:695.866667pt;}
.yc4{bottom:696.506667pt;}
.yab{bottom:700.986667pt;}
.y5c{bottom:706.426667pt;}
.y107{bottom:710.906667pt;}
.yea{bottom:711.906667pt;}
.y137{bottom:712.226667pt;}
.yc2{bottom:713.506667pt;}
.y86{bottom:716.386667pt;}
.yaa{bottom:721.826667pt;}
.y11c{bottom:724.386667pt;}
.y5b{bottom:727.266667pt;}
.ye9{bottom:732.706667pt;}
.y106{bottom:734.306667pt;}
.y85{bottom:736.866667pt;}
.y136{bottom:738.146667pt;}
.ya9{bottom:742.306667pt;}
.y156{bottom:745.186667pt;}
.y5a{bottom:747.746667pt;}
.ye8{bottom:752.866667pt;}
.y105{bottom:757.346667pt;}
.y135{bottom:758.306667pt;}
.y84{bottom:760.226667pt;}
.ya8{bottom:765.346667pt;}
.y11b{bottom:768.226667pt;}
.y59{bottom:770.786667pt;}
.ye7{bottom:776.226667pt;}
.y134{bottom:779.106667pt;}
.y104{bottom:780.706667pt;}
.y83{bottom:783.266667pt;}
.y155{bottom:786.146667pt;}
.ya7{bottom:788.706667pt;}
.y58{bottom:791.586667pt;}
.ye6{bottom:797.026667pt;}
.y133{bottom:799.586667pt;}
.y103{bottom:804.066667pt;}
.y82{bottom:806.626667pt;}
.y57{bottom:812.066667pt;}
.ye5{bottom:817.186667pt;}
.y132{bottom:822.626667pt;}
.ye{bottom:826.786667pt;}
.y102{bottom:827.106667pt;}
.y81{bottom:829.693333pt;}
.yd{bottom:831.613333pt;}
.ya6{bottom:832.573333pt;}
.y56{bottom:835.133333pt;}
.ye4{bottom:840.573333pt;}
.y131{bottom:843.453333pt;}
.yc{bottom:852.733333pt;}
.y80{bottom:853.053333pt;}
.y101{bottom:855.933333pt;}
.y55{bottom:858.493333pt;}
.ye3{bottom:861.373333pt;}
.y130{bottom:863.933333pt;}
.y154{bottom:873.853333pt;}
.yb{bottom:876.093333pt;}
.y7f{bottom:876.413333pt;}
.y11a{bottom:879.293333pt;}
.y54{bottom:881.533333pt;}
.y12f{bottom:884.413333pt;}
.y153{bottom:894.013333pt;}
.ya{bottom:895.933333pt;}
.ya5{bottom:896.893333pt;}
.y7e{bottom:899.453333pt;}
.y53{bottom:904.893333pt;}
.ya4{bottom:917.373333pt;}
.y9{bottom:920.893333pt;}
.y7d{bottom:922.813333pt;}
.y52{bottom:925.693333pt;}
.ya3{bottom:940.733333pt;}
.y7c{bottom:943.613333pt;}
.y51{bottom:945.853333pt;}
.y8{bottom:952.933333pt;}
.y4e{bottom:955.840000pt;}
.y7b{bottom:963.813333pt;}
.y50{bottom:966.693333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.hc{height:3.702500pt;}
.h17{height:5.022500pt;}
.h19{height:10.320000pt;}
.h18{height:11.442060pt;}
.h1a{height:24.640000pt;}
.h14{height:26.381250pt;}
.h13{height:31.406250pt;}
.hf{height:36.431250pt;}
.h1d{height:36.635625pt;}
.he{height:37.410000pt;}
.ha{height:44.188750pt;}
.h15{height:47.713750pt;}
.h1f{height:47.737500pt;}
.h16{height:49.020000pt;}
.h7{height:50.925000pt;}
.h11{height:51.561250pt;}
.h6{height:52.762500pt;}
.hb{height:54.180000pt;}
.h10{height:54.349786pt;}
.h20{height:55.256809pt;}
.h1b{height:56.502250pt;}
.h9{height:56.988750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h1e{height:60.070816pt;}
.h8{height:67.843750pt;}
.h2{height:75.546667pt;}
.h21{height:76.307021pt;}
.h4{height:103.680000pt;}
.h12{height:179.560000pt;}
.hd{height:559.493333pt;}
.h1{height:1122.000000pt;}
.h1c{height:1122.236520pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w7{width:793.916667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.112000pt;}
.x1a{left:7.373333pt;}
.x4{left:11.826667pt;}
.x16{left:12.788000pt;}
.x18{left:14.388000pt;}
.x1e{left:16.308000pt;}
.x17{left:17.268000pt;}
.x6{left:25.586667pt;}
.x10{left:39.028000pt;}
.x1f{left:42.260000pt;}
.x11{left:45.140000pt;}
.xf{left:48.980000pt;}
.x15{left:49.940000pt;}
.x21{left:50.900000pt;}
.x1b{left:55.373333pt;}
.x20{left:58.902667pt;}
.x1c{left:62.093333pt;}
.x14{left:64.982667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x13{left:82.582667pt;}
.x2{left:84.822667pt;}
.x22{left:91.542667pt;}
.x1d{left:95.062667pt;}
.x33{left:97.952000pt;}
.x49{left:100.832000pt;}
.x12{left:110.742667pt;}
.x27{left:124.864000pt;}
.x5{left:125.813333pt;}
.x23{left:150.453333pt;}
.x3{left:162.000000pt;}
.x24{left:188.560000pt;}
.x19{left:194.640000pt;}
.xb{left:208.093333pt;}
.x3d{left:227.610000pt;}
.x3e{left:232.093333pt;}
.x3f{left:260.250000pt;}
.x28{left:262.810000pt;}
.x29{left:264.733333pt;}
.x40{left:266.653333pt;}
.x4b{left:268.893333pt;}
.x43{left:313.730000pt;}
.x34{left:315.010000pt;}
.x35{left:319.493333pt;}
.x44{left:323.973333pt;}
.x47{left:333.253333pt;}
.x2f{left:345.733333pt;}
.x30{left:349.573333pt;}
.x31{left:370.720000pt;}
.x32{left:375.200000pt;}
.xc{left:394.400000pt;}
.x25{left:412.333333pt;}
.x2b{left:421.916667pt;}
.x2c{left:425.760000pt;}
.x36{left:482.423333pt;}
.x37{left:488.826667pt;}
.x45{left:525.983333pt;}
.xa{left:535.906667pt;}
.x46{left:536.866667pt;}
.xd{left:542.626667pt;}
.x48{left:547.106667pt;}
.x41{left:560.543333pt;}
.x42{left:568.866667pt;}
.x4a{left:585.506667pt;}
.x38{left:623.610000pt;}
.x3b{left:627.130000pt;}
.x39{left:631.933333pt;}
.x3c{left:633.533333pt;}
.x3a{left:638.010000pt;}
.x2d{left:643.130000pt;}
.x2e{left:648.893333pt;}
.x9{left:680.933333pt;}
.x2a{left:685.093333pt;}
.x8{left:697.573333pt;}
.xe{left:717.413333pt;}
}




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