
    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_848256d824ff70f72f4ee079.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_5a95f496012554e0123c90ed.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_67f8adcc17737456103cf009.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_c00b957bbd7777475b85f063.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_d4e4601fcdab752feda1674e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899902;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_8a658f570c2017d499d8dba9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.082031;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_99c0a3d03c4f54c1160359bd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_8233f7576d8619a608fb9874.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_7a2423f5dd0a498c88e6ef85.woff')format("woff");}.ff9{font-family:ff9;line-height:1.028000;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_0a769280d516435c012e39e7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.904297;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_5c58cc25b44e622f8c15c31c.woff')format("woff");}.ffb{font-family:ffb;line-height:0.904297;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_e0c87b4649b481ed08225417.woff')format("woff");}.ffc{font-family:ffc;line-height:0.899902;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_3c01a51169e34cebb2cd29d8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.722656;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_b1d2132b1ab5e66e919a64fb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.899414;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_09a9e65c0df1475bb98cd1c0.woff')format("woff");}.fff{font-family:fff;line-height:0.902344;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_217b4094fa7c7c76e3df7dca.woff')format("woff");}.ff10{font-family:ff10;line-height:0.845703;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_92725caafc968adc4deb742d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.700000;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_bfc2733c73123eaff91dd107.woff')format("woff");}.ff12{font-family:ff12;line-height:0.912000;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_12eb4427f6bcb0a8c00f09ba.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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);}
.v4{vertical-align:-19.800000px;}
.v3{vertical-align:-16.830000px;}
.v1{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.000000px;}
.v2{vertical-align:19.536000px;}
.v8{vertical-align:23.760000px;}
.v6{vertical-align:37.500000px;}
.v7{vertical-align:40.968000px;}
.ls2b{letter-spacing:-2.808000px;}
.ls3e{letter-spacing:-2.112000px;}
.ls3d{letter-spacing:-1.872000px;}
.ls13{letter-spacing:-1.080000px;}
.ls35{letter-spacing:-0.936000px;}
.ls14{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.720000px;}
.ls2a{letter-spacing:-0.648000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.432000px;}
.ls20{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.096000px;}
.lsb{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.008400px;}
.ls1f{letter-spacing:0.009000px;}
.ls3a{letter-spacing:0.019800px;}
.ls17{letter-spacing:0.072000px;}
.ls1d{letter-spacing:0.093600px;}
.lsf{letter-spacing:0.096000px;}
.ls19{letter-spacing:0.129600px;}
.ls11{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.240000px;}
.ls4{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.384000px;}
.ls21{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.504000px;}
.ls18{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.648000px;}
.ls6{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.792000px;}
.ls15{letter-spacing:0.864000px;}
.ls2d{letter-spacing:0.936000px;}
.ls28{letter-spacing:1.080000px;}
.ls25{letter-spacing:2.245800px;}
.ls3b{letter-spacing:2.928000px;}
.ls39{letter-spacing:4.233600px;}
.ls3c{letter-spacing:4.234200px;}
.ls29{letter-spacing:4.248000px;}
.ls0{letter-spacing:4.260000px;}
.ls30{letter-spacing:4.348800px;}
.ls33{letter-spacing:4.377600px;}
.ls32{letter-spacing:4.392000px;}
.ls38{letter-spacing:4.533600px;}
.ls2{letter-spacing:4.560000px;}
.ls36{letter-spacing:4.752000px;}
.ls34{letter-spacing:5.112000px;}
.ls31{letter-spacing:6.768000px;}
.ls10{letter-spacing:6.780000px;}
.ls3{letter-spacing:8.460000px;}
.ls2c{letter-spacing:10.224000px;}
.ls1{letter-spacing:10.740000px;}
.ls27{letter-spacing:567.360000px;}
.ls26{letter-spacing:622.680000px;}
.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;}
}
.ws29{word-spacing:-78.000000px;}
.ws2{word-spacing:-25.320000px;}
.ws28{word-spacing:-20.232000px;}
.ws1f{word-spacing:-20.160000px;}
.ws4e{word-spacing:-19.872000px;}
.ws13{word-spacing:-19.512000px;}
.ws44{word-spacing:-18.576000px;}
.ws47{word-spacing:-18.216000px;}
.ws1e{word-spacing:-17.856000px;}
.ws1d{word-spacing:-17.784000px;}
.ws3e{word-spacing:-17.712000px;}
.ws43{word-spacing:-17.640000px;}
.ws4b{word-spacing:-17.424000px;}
.ws20{word-spacing:-17.352000px;}
.ws49{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.860000px;}
.ws2e{word-spacing:-14.940000px;}
.ws4d{word-spacing:-14.162400px;}
.ws4{word-spacing:-13.080000px;}
.ws54{word-spacing:-12.336000px;}
.ws56{word-spacing:-11.856000px;}
.ws12{word-spacing:-11.802000px;}
.ws55{word-spacing:-11.616000px;}
.ws46{word-spacing:-8.640000px;}
.ws2a{word-spacing:-8.460000px;}
.ws15{word-spacing:-6.780000px;}
.ws27{word-spacing:-2.016000px;}
.ws3d{word-spacing:-1.080000px;}
.ws45{word-spacing:-0.936000px;}
.ws1a{word-spacing:-0.864000px;}
.ws2b{word-spacing:-0.792000px;}
.ws10{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.648000px;}
.ws25{word-spacing:-0.576000px;}
.ws26{word-spacing:-0.504000px;}
.ws2d{word-spacing:-0.432000px;}
.ws1c{word-spacing:-0.384000px;}
.wse{word-spacing:-0.360000px;}
.wsa{word-spacing:-0.288000px;}
.ws57{word-spacing:-0.240000px;}
.ws11{word-spacing:-0.216000px;}
.ws16{word-spacing:-0.144000px;}
.ws1b{word-spacing:-0.096000px;}
.ws23{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
.ws9{word-spacing:0.072000px;}
.ws30{word-spacing:0.096000px;}
.wsf{word-spacing:0.144000px;}
.ws22{word-spacing:0.216000px;}
.ws2f{word-spacing:0.240000px;}
.wsb{word-spacing:0.288000px;}
.ws3{word-spacing:0.300000px;}
.ws2c{word-spacing:0.360000px;}
.wsc{word-spacing:0.432000px;}
.ws21{word-spacing:0.504000px;}
.ws4a{word-spacing:0.576000px;}
.ws3f{word-spacing:0.648000px;}
.ws17{word-spacing:0.720000px;}
.ws19{word-spacing:0.792000px;}
.ws52{word-spacing:0.936000px;}
.ws18{word-spacing:1.080000px;}
.ws8{word-spacing:1.440000px;}
.ws42{word-spacing:1.512000px;}
.ws7{word-spacing:1.800000px;}
.ws58{word-spacing:1.872000px;}
.ws5a{word-spacing:2.112000px;}
.ws4f{word-spacing:2.160000px;}
.ws48{word-spacing:2.400000px;}
.ws41{word-spacing:2.808000px;}
.ws59{word-spacing:3.360000px;}
.ws14{word-spacing:4.200000px;}
.ws40{word-spacing:4.680000px;}
.ws24{word-spacing:5.040000px;}
.ws51{word-spacing:6.624000px;}
.ws53{word-spacing:6.768000px;}
.ws50{word-spacing:7.848000px;}
.ws0{word-spacing:8.376000px;}
.ws4c{word-spacing:10.080000px;}
.ws35{word-spacing:39.240000px;}
.ws37{word-spacing:42.360000px;}
.ws3c{word-spacing:65.460000px;}
.ws38{word-spacing:70.440000px;}
.ws6{word-spacing:75.180000px;}
.ws3b{word-spacing:88.200000px;}
.ws39{word-spacing:102.600000px;}
.ws3a{word-spacing:108.180000px;}
.ws36{word-spacing:118.740000px;}
.ws33{word-spacing:237.210000px;}
.ws34{word-spacing:335.640000px;}
.ws31{word-spacing:486.420000px;}
.ws32{word-spacing:491.100000px;}
._12{margin-left:-940.386000px;}
._6{margin-left:-71.934000px;}
._15{margin-left:-70.674000px;}
._2b{margin-left:-16.071600px;}
._13{margin-left:-8.679600px;}
._11{margin-left:-7.650000px;}
._b{margin-left:-6.186000px;}
._c{margin-left:-5.118000px;}
._9{margin-left:-3.808800px;}
._8{margin-left:-2.328000px;}
._2{margin-left:-1.068000px;}
._3{width:1.482000px;}
._d{width:2.571600px;}
._1{width:3.936000px;}
._a{width:5.075400px;}
._10{width:6.420600px;}
._7{width:8.304000px;}
._e{width:10.152000px;}
._f{width:11.506800px;}
._16{width:12.606000px;}
._17{width:13.695000px;}
._5{width:17.280000px;}
._4{width:26.178000px;}
._14{width:31.645500px;}
._1d{width:34.374000px;}
._20{width:58.088400px;}
._19{width:60.933000px;}
._22{width:77.048400px;}
._26{width:92.716200px;}
._18{width:95.673000px;}
._1a{width:98.853000px;}
._1c{width:115.893000px;}
._2c{width:117.634200px;}
._1b{width:131.193000px;}
._23{width:133.508400px;}
._21{width:134.842800px;}
._1f{width:153.788400px;}
._1e{width:162.450000px;}
._25{width:175.851600px;}
._24{width:199.221600px;}
._0{width:201.564000px;}
._2e{width:219.537600px;}
._28{width:225.567600px;}
._2d{width:246.526200px;}
._29{width:257.913600px;}
._27{width:365.409600px;}
._2a{width:423.922200px;}
.fc1{color:rgb(128,130,133);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.700000px;}
.fs4{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs8{font-size:50.400000px;}
.fs0{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs9{font-size:69.000000px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y3{bottom:58.500000px;}
.y1{bottom:72.000000px;}
.y4a{bottom:117.000000px;}
.y12f{bottom:117.192000px;}
.ye2{bottom:117.984000px;}
.yf4{bottom:118.110000px;}
.y140{bottom:118.530600px;}
.y10a{bottom:118.777950px;}
.y1bf{bottom:119.544150px;}
.y22{bottom:120.218550px;}
.y155{bottom:121.207500px;}
.y93{bottom:121.318800px;}
.y49{bottom:132.000000px;}
.ybf{bottom:136.207500px;}
.y1be{bottom:138.144150px;}
.y12e{bottom:139.098000px;}
.y6a{bottom:139.500000px;}
.y92{bottom:140.218800px;}
.ye1{bottom:141.078000px;}
.yf3{bottom:141.204000px;}
.y109{bottom:141.583950px;}
.y13f{bottom:141.624600px;}
.y21{bottom:142.718550px;}
.y48{bottom:147.000000px;}
.y1bd{bottom:156.744150px;}
.y12d{bottom:161.004000px;}
.y47{bottom:162.000000px;}
.y18c{bottom:162.618000px;}
.ye0{bottom:164.172000px;}
.yf2{bottom:164.298000px;}
.y108{bottom:164.389950px;}
.y13e{bottom:164.718600px;}
.y20{bottom:165.218550px;}
.y154{bottom:169.130850px;}
.y1bc{bottom:175.344150px;}
.y91{bottom:176.128800px;}
.y46{bottom:177.000000px;}
.y12c{bottom:182.910000px;}
.y161{bottom:183.450750px;}
.y69{bottom:184.500000px;}
.y18b{bottom:185.424000px;}
.y107{bottom:187.195950px;}
.ydf{bottom:187.266000px;}
.yf1{bottom:187.392000px;}
.y1f{bottom:187.718550px;}
.y13d{bottom:187.812600px;}
.ybd{bottom:191.888400px;}
.y45{bottom:192.000000px;}
.y153{bottom:192.080850px;}
.y1bb{bottom:193.944150px;}
.y90{bottom:195.028800px;}
.y6f{bottom:196.207500px;}
.ybc{bottom:201.263400px;}
.y12b{bottom:204.816000px;}
.y160{bottom:206.256750px;}
.y44{bottom:207.000000px;}
.y18a{bottom:208.230000px;}
.y106{bottom:210.001950px;}
.y1e{bottom:210.218550px;}
.yde{bottom:210.360000px;}
.yf0{bottom:210.486000px;}
.ybe{bottom:210.638400px;}
.y13c{bottom:210.906600px;}
.y1ba{bottom:212.544150px;}
.y8f{bottom:213.928800px;}
.y6e{bottom:214.500000px;}
.y152{bottom:215.030850px;}
.y43{bottom:226.207500px;}
.y12a{bottom:226.722000px;}
.y15f{bottom:229.062750px;}
.y68{bottom:229.500000px;}
.y189{bottom:231.036000px;}
.y1d{bottom:232.718550px;}
.y105{bottom:232.807950px;}
.y8e{bottom:232.828800px;}
.ydd{bottom:233.454000px;}
.yef{bottom:233.580000px;}
.y6d{bottom:233.707500px;}
.y13b{bottom:234.000600px;}
.yb9{bottom:235.070700px;}
.y1b9{bottom:237.534000px;}
.y151{bottom:237.980850px;}
.ybb{bottom:244.445700px;}
.y42{bottom:244.500000px;}
.y129{bottom:248.628000px;}
.y15e{bottom:251.868750px;}
.y67{bottom:252.000000px;}
.yb7{bottom:253.820700px;}
.y188{bottom:253.842000px;}
.y1c{bottom:255.218550px;}
.y104{bottom:255.613950px;}
.ydc{bottom:256.548000px;}
.yee{bottom:256.674000px;}
.y13a{bottom:257.094600px;}
.y41{bottom:259.500000px;}
.y150{bottom:260.930850px;}
.yba{bottom:263.195700px;}
.y8d{bottom:268.738800px;}
.y128{bottom:270.534000px;}
.yb8{bottom:272.570700px;}
.y66{bottom:274.500000px;}
.y15d{bottom:274.674750px;}
.y187{bottom:276.648000px;}
.y1b{bottom:277.718550px;}
.y103{bottom:278.419950px;}
.y40{bottom:278.707500px;}
.ydb{bottom:279.642000px;}
.yed{bottom:279.768000px;}
.y139{bottom:280.188600px;}
.y1b8{bottom:282.234000px;}
.y14f{bottom:283.880850px;}
.y127{bottom:292.440000px;}
.y6c{bottom:294.000000px;}
.y8c{bottom:296.143800px;}
.y3f{bottom:297.000000px;}
.yb5{bottom:297.003000px;}
.y1b7{bottom:297.078000px;}
.y186{bottom:299.454000px;}
.y1a{bottom:300.218550px;}
.y102{bottom:301.225950px;}
.yda{bottom:302.736000px;}
.yec{bottom:302.862000px;}
.y138{bottom:303.282600px;}
.yb4{bottom:306.378000px;}
.y14e{bottom:306.830850px;}
.y1b6{bottom:311.928000px;}
.y3e{bottom:312.000000px;}
.y126{bottom:314.346000px;}
.y8b{bottom:315.043800px;}
.yb6{bottom:315.753000px;}
.y65{bottom:319.500000px;}
.y185{bottom:322.260000px;}
.y19{bottom:322.718550px;}
.y101{bottom:324.031950px;}
.yd9{bottom:325.830000px;}
.yeb{bottom:325.956000px;}
.y137{bottom:326.376600px;}
.y1b5{bottom:326.778000px;}
.y14d{bottom:329.780850px;}
.y3d{bottom:331.207500px;}
.y8a{bottom:333.943800px;}
.y125{bottom:336.252000px;}
.y6b{bottom:339.000000px;}
.yb2{bottom:340.185300px;}
.y1b4{bottom:341.628000px;}
.y64{bottom:342.000000px;}
.y184{bottom:345.066000px;}
.y18{bottom:345.218550px;}
.y100{bottom:346.837950px;}
.y16b{bottom:347.166300px;}
.yd8{bottom:348.924000px;}
.yea{bottom:349.050000px;}
.y136{bottom:349.470600px;}
.yb1{bottom:349.560300px;}
.y14c{bottom:352.730850px;}
.y89{bottom:352.843800px;}
.y1b3{bottom:356.508000px;}
.y124{bottom:358.158000px;}
.yb3{bottom:358.935300px;}
.y63{bottom:364.500000px;}
.y17{bottom:367.718550px;}
.y183{bottom:367.872000px;}
.yff{bottom:369.643950px;}
.y1b2{bottom:371.352000px;}
.y88{bottom:371.743800px;}
.yd7{bottom:372.018000px;}
.ye9{bottom:372.144000px;}
.y135{bottom:372.564600px;}
.y3c{bottom:373.506000px;}
.y14b{bottom:375.680850px;}
.y123{bottom:380.064000px;}
.y1d5{bottom:383.250000px;}
.yaf{bottom:383.367600px;}
.y1b1{bottom:386.196000px;}
.y62{bottom:387.000000px;}
.y15c{bottom:388.674750px;}
.y16{bottom:390.218550px;}
.y87{bottom:390.643800px;}
.yfe{bottom:392.449950px;}
.yae{bottom:392.742600px;}
.yd6{bottom:395.112000px;}
.ye8{bottom:395.238000px;}
.y3b{bottom:395.310000px;}
.y134{bottom:395.658600px;}
.y14a{bottom:398.630850px;}
.y16a{bottom:400.996050px;}
.y1b0{bottom:401.040000px;}
.y122{bottom:401.970000px;}
.y1d4{bottom:402.000000px;}
.yb0{bottom:402.117600px;}
.y182{bottom:402.216000px;}
.y61{bottom:409.500000px;}
.y15{bottom:412.718550px;}
.yfd{bottom:415.255950px;}
.y1af{bottom:415.884000px;}
.y3a{bottom:417.054000px;}
.yd5{bottom:418.206000px;}
.ye7{bottom:418.332000px;}
.y133{bottom:418.752600px;}
.y1d3{bottom:420.750000px;}
.y149{bottom:421.580850px;}
.y169{bottom:423.496050px;}
.y121{bottom:423.876000px;}
.y181{bottom:425.022000px;}
.yac{bottom:426.549750px;}
.y1ae{bottom:430.728000px;}
.y60{bottom:432.000000px;}
.y86{bottom:433.183800px;}
.y15b{bottom:434.244750px;}
.y14{bottom:435.218550px;}
.yab{bottom:435.924750px;}
.yfc{bottom:438.061950px;}
.y39{bottom:438.798000px;}
.y1d2{bottom:439.500000px;}
.yd4{bottom:441.300000px;}
.ye6{bottom:441.426000px;}
.y132{bottom:441.846600px;}
.y148{bottom:444.530850px;}
.yad{bottom:445.299750px;}
.y1ad{bottom:445.578000px;}
.y120{bottom:445.782000px;}
.y168{bottom:445.996050px;}
.y180{bottom:447.828000px;}
.y85{bottom:451.183800px;}
.y5f{bottom:454.500000px;}
.y15a{bottom:457.050750px;}
.y13{bottom:457.718550px;}
.y38{bottom:460.542000px;}
.y1ac{bottom:460.548000px;}
.yfb{bottom:460.867950px;}
.yd3{bottom:464.400000px;}
.ye5{bottom:464.520000px;}
.y131{bottom:464.940600px;}
.y147{bottom:467.480850px;}
.y11f{bottom:467.688000px;}
.y167{bottom:468.496050px;}
.ya9{bottom:469.732050px;}
.y17f{bottom:470.634000px;}
.y1ab{bottom:475.392000px;}
.y5e{bottom:477.000000px;}
.y84{bottom:478.168800px;}
.ya8{bottom:479.107050px;}
.y159{bottom:479.856750px;}
.y12{bottom:480.218550px;}
.y37{bottom:482.286000px;}
.yfa{bottom:483.673950px;}
.yd2{bottom:487.500000px;}
.ye4{bottom:487.614000px;}
.y130{bottom:488.034600px;}
.yaa{bottom:488.482050px;}
.y11e{bottom:489.594000px;}
.y1aa{bottom:490.236000px;}
.y146{bottom:490.430850px;}
.y166{bottom:490.996050px;}
.y17e{bottom:493.440000px;}
.y1d1{bottom:495.750000px;}
.y83{bottom:496.168800px;}
.y5d{bottom:499.500000px;}
.y158{bottom:502.662750px;}
.y11{bottom:502.718550px;}
.y36{bottom:504.030000px;}
.y1a9{bottom:505.080000px;}
.yf9{bottom:506.479950px;}
.ye3{bottom:510.708000px;}
.y11d{bottom:511.500000px;}
.ya6{bottom:512.914350px;}
.y145{bottom:513.380850px;}
.y165{bottom:513.496050px;}
.y1d0{bottom:514.500000px;}
.y17d{bottom:516.246000px;}
.y1a8{bottom:519.924000px;}
.y5c{bottom:522.000000px;}
.ya5{bottom:522.289350px;}
.y82{bottom:523.153800px;}
.y10{bottom:525.218550px;}
.y157{bottom:525.468750px;}
.yf8{bottom:529.285950px;}
.ya7{bottom:531.664350px;}
.y1cf{bottom:533.250000px;}
.y11c{bottom:533.400000px;}
.yd1{bottom:533.802000px;}
.y1a7{bottom:534.768000px;}
.y164{bottom:535.996050px;}
.y35{bottom:536.286000px;}
.y144{bottom:536.330850px;}
.y17c{bottom:539.052000px;}
.y5b{bottom:544.500000px;}
.yf{bottom:547.718550px;}
.y156{bottom:548.274750px;}
.y1a6{bottom:549.612000px;}
.y81{bottom:550.138800px;}
.yf7{bottom:552.091950px;}
.ya3{bottom:556.096650px;}
.yd0{bottom:556.896000px;}
.y34{bottom:558.030000px;}
.y163{bottom:558.496050px;}
.y143{bottom:559.280850px;}
.y17b{bottom:561.858000px;}
.y1a5{bottom:564.456000px;}
.ya2{bottom:565.471650px;}
.y5a{bottom:567.000000px;}
.ye{bottom:570.218550px;}
.y1ce{bottom:570.750000px;}
.ya4{bottom:574.846650px;}
.yf6{bottom:574.897950px;}
.y11b{bottom:577.104000px;}
.y80{bottom:577.123800px;}
.y1a4{bottom:579.300000px;}
.y33{bottom:579.774000px;}
.ycf{bottom:579.990000px;}
.y162{bottom:580.996050px;}
.y142{bottom:582.230850px;}
.y17a{bottom:584.664000px;}
.y59{bottom:589.500000px;}
.yd{bottom:592.718550px;}
.y1a3{bottom:594.144000px;}
.y7f{bottom:595.123800px;}
.yf5{bottom:597.703950px;}
.y11a{bottom:599.010000px;}
.ya0{bottom:599.278950px;}
.y32{bottom:601.518000px;}
.yce{bottom:603.084000px;}
.y141{bottom:605.180850px;}
.y179{bottom:607.470000px;}
.y9f{bottom:608.653950px;}
.y1a2{bottom:608.988000px;}
.y58{bottom:612.000000px;}
.y7e{bottom:613.123800px;}
.yc{bottom:615.218550px;}
.ya1{bottom:618.028950px;}
.y119{bottom:620.916000px;}
.y31{bottom:623.262000px;}
.y1a1{bottom:623.832000px;}
.ycd{bottom:626.178000px;}
.y178{bottom:630.276000px;}
.y1cd{bottom:630.750000px;}
.y7d{bottom:631.123800px;}
.y57{bottom:634.500000px;}
.yb{bottom:637.718550px;}
.y1a0{bottom:638.676000px;}
.y118{bottom:642.822000px;}
.y30{bottom:645.006000px;}
.y7c{bottom:649.123800px;}
.ycc{bottom:649.272000px;}
.y1cc{bottom:649.500000px;}
.y9e{bottom:650.101500px;}
.y177{bottom:653.082000px;}
.y19f{bottom:653.520000px;}
.y56{bottom:657.000000px;}
.ya{bottom:660.218550px;}
.y117{bottom:664.728000px;}
.y2f{bottom:666.816000px;}
.y1cb{bottom:668.250000px;}
.y19e{bottom:668.364000px;}
.ycb{bottom:672.366000px;}
.y7b{bottom:673.976250px;}
.y176{bottom:675.888000px;}
.y55{bottom:679.500000px;}
.y9{bottom:682.718550px;}
.y19d{bottom:683.208000px;}
.y116{bottom:686.634000px;}
.y1ca{bottom:687.000000px;}
.y2e{bottom:688.560000px;}
.yca{bottom:695.460000px;}
.y9d{bottom:697.981500px;}
.y19c{bottom:698.052000px;}
.y175{bottom:698.694000px;}
.y54{bottom:702.000000px;}
.y1c9{bottom:705.750000px;}
.y9c{bottom:707.356500px;}
.y115{bottom:708.540000px;}
.y7a{bottom:709.736250px;}
.y2d{bottom:710.304000px;}
.y19b{bottom:712.896000px;}
.yc9{bottom:718.554000px;}
.y174{bottom:721.500000px;}
.y53{bottom:724.500000px;}
.y8{bottom:727.718550px;}
.y19a{bottom:727.740000px;}
.y79{bottom:728.486250px;}
.y114{bottom:730.446000px;}
.y2c{bottom:732.048000px;}
.yc8{bottom:741.648000px;}
.y199{bottom:742.584000px;}
.y1c8{bottom:743.250000px;}
.y9b{bottom:743.716500px;}
.y173{bottom:744.300000px;}
.y52{bottom:747.000000px;}
.y78{bottom:747.236250px;}
.y113{bottom:752.352000px;}
.y2b{bottom:753.792000px;}
.y198{bottom:757.428000px;}
.y1c7{bottom:762.000000px;}
.yc7{bottom:764.742000px;}
.y172{bottom:767.100000px;}
.y51{bottom:769.500000px;}
.y7{bottom:769.854300px;}
.y9a{bottom:770.701500px;}
.y197{bottom:772.290150px;}
.y112{bottom:774.258000px;}
.y2a{bottom:775.536000px;}
.y1c6{bottom:780.750000px;}
.y77{bottom:782.994150px;}
.y196{bottom:787.134150px;}
.yc6{bottom:787.836000px;}
.y99{bottom:789.451500px;}
.y50{bottom:792.000000px;}
.y6{bottom:792.354300px;}
.y111{bottom:796.164000px;}
.y29{bottom:797.280000px;}
.y1c5{bottom:799.500000px;}
.y195{bottom:801.978150px;}
.y76{bottom:810.247950px;}
.yc5{bottom:810.930000px;}
.y171{bottom:812.670000px;}
.y4f{bottom:814.500000px;}
.y98{bottom:816.436500px;}
.y194{bottom:816.834150px;}
.y110{bottom:818.070000px;}
.y1c4{bottom:818.250000px;}
.y28{bottom:819.024000px;}
.y193{bottom:831.678150px;}
.y75{bottom:832.747950px;}
.yc4{bottom:834.024000px;}
.y170{bottom:835.476000px;}
.y4e{bottom:837.000000px;}
.y10f{bottom:839.976000px;}
.y27{bottom:840.768000px;}
.y97{bottom:843.421500px;}
.y192{bottom:846.534150px;}
.y74{bottom:855.247950px;}
.y1c3{bottom:855.750000px;}
.yc3{bottom:857.118000px;}
.y16f{bottom:858.282000px;}
.y5{bottom:859.500000px;}
.y191{bottom:861.378150px;}
.y10e{bottom:861.882000px;}
.y26{bottom:862.512000px;}
.y96{bottom:870.406500px;}
.y1c2{bottom:874.500000px;}
.y190{bottom:876.222150px;}
.y73{bottom:877.747950px;}
.yc2{bottom:880.212000px;}
.y16e{bottom:881.088000px;}
.y4d{bottom:882.000000px;}
.y10d{bottom:883.788000px;}
.y25{bottom:884.256000px;}
.y4{bottom:889.500000px;}
.y18f{bottom:891.078150px;}
.y1c1{bottom:893.250000px;}
.y71{bottom:897.247950px;}
.y95{bottom:897.391500px;}
.y72{bottom:900.247950px;}
.yc1{bottom:903.306000px;}
.y16d{bottom:903.894000px;}
.y4c{bottom:904.500000px;}
.y10c{bottom:905.694000px;}
.y18e{bottom:905.922000px;}
.y24{bottom:906.000000px;}
.y1c0{bottom:912.000000px;}
.y70{bottom:924.000000px;}
.yc0{bottom:926.400000px;}
.y16c{bottom:926.700000px;}
.y4b{bottom:927.000000px;}
.y18d{bottom:927.150000px;}
.y10b{bottom:927.600000px;}
.y23{bottom:927.750000px;}
.y94{bottom:930.750000px;}
.h7{height:23.968506px;}
.ha{height:30.313623px;}
.h15{height:39.072000px;}
.h2{height:39.990234px;}
.h3{height:40.283203px;}
.h8{height:40.757812px;}
.h16{height:40.758412px;}
.hd{height:44.367188px;}
.h10{height:47.834564px;}
.hc{height:48.339844px;}
.h13{height:48.840000px;}
.h5{height:50.580000px;}
.h1{height:50.947266px;}
.h14{height:53.988000px;}
.hb{height:56.367188px;}
.h6{height:61.136719px;}
.h9{height:73.136719px;}
.he{height:77.783203px;}
.h12{height:87.167400px;}
.h11{height:87.168000px;}
.hf{height:88.447266px;}
.h4{height:101.894531px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.x4{left:82.381950px;}
.xd{left:87.008850px;}
.xe{left:97.268850px;}
.x6{left:112.500000px;}
.x7{left:127.381950px;}
.xf{left:132.008850px;}
.x2{left:135.000000px;}
.x8{left:136.381950px;}
.xc{left:139.783500px;}
.xa{left:142.261800px;}
.x9{left:159.277950px;}
.x1d{left:182.963100px;}
.xb{left:184.783350px;}
.x1c{left:188.828100px;}
.x1a{left:195.683100px;}
.x14{left:210.998100px;}
.x19{left:217.043100px;}
.x17{left:218.378100px;}
.x1b{left:228.773100px;}
.x1e{left:232.178100px;}
.x11{left:245.408100px;}
.x15{left:343.403100px;}
.x3{left:345.000000px;}
.x12{left:350.663100px;}
.x18{left:352.718100px;}
.x16{left:354.998100px;}
.x13{left:433.403100px;}
.x10{left:437.948850px;}
.x5{left:635.390550px;}
@media print{
.v4{vertical-align:-17.600000pt;}
.v3{vertical-align:-14.960000pt;}
.v1{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.666667pt;}
.v2{vertical-align:17.365333pt;}
.v8{vertical-align:21.120000pt;}
.v6{vertical-align:33.333333pt;}
.v7{vertical-align:36.416000pt;}
.ls2b{letter-spacing:-2.496000pt;}
.ls3e{letter-spacing:-1.877333pt;}
.ls3d{letter-spacing:-1.664000pt;}
.ls13{letter-spacing:-0.960000pt;}
.ls35{letter-spacing:-0.832000pt;}
.ls14{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls2a{letter-spacing:-0.576000pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls20{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.085333pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.007467pt;}
.ls1f{letter-spacing:0.008000pt;}
.ls3a{letter-spacing:0.017600pt;}
.ls17{letter-spacing:0.064000pt;}
.ls1d{letter-spacing:0.083200pt;}
.lsf{letter-spacing:0.085333pt;}
.ls19{letter-spacing:0.115200pt;}
.ls11{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.213333pt;}
.ls4{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.341333pt;}
.ls21{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.448000pt;}
.ls18{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.704000pt;}
.ls15{letter-spacing:0.768000pt;}
.ls2d{letter-spacing:0.832000pt;}
.ls28{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.996267pt;}
.ls3b{letter-spacing:2.602667pt;}
.ls39{letter-spacing:3.763200pt;}
.ls3c{letter-spacing:3.763733pt;}
.ls29{letter-spacing:3.776000pt;}
.ls0{letter-spacing:3.786667pt;}
.ls30{letter-spacing:3.865600pt;}
.ls33{letter-spacing:3.891200pt;}
.ls32{letter-spacing:3.904000pt;}
.ls38{letter-spacing:4.029867pt;}
.ls2{letter-spacing:4.053333pt;}
.ls36{letter-spacing:4.224000pt;}
.ls34{letter-spacing:4.544000pt;}
.ls31{letter-spacing:6.016000pt;}
.ls10{letter-spacing:6.026667pt;}
.ls3{letter-spacing:7.520000pt;}
.ls2c{letter-spacing:9.088000pt;}
.ls1{letter-spacing:9.546667pt;}
.ls27{letter-spacing:504.320000pt;}
.ls26{letter-spacing:553.493333pt;}
.ws29{word-spacing:-69.333333pt;}
.ws2{word-spacing:-22.506667pt;}
.ws28{word-spacing:-17.984000pt;}
.ws1f{word-spacing:-17.920000pt;}
.ws4e{word-spacing:-17.664000pt;}
.ws13{word-spacing:-17.344000pt;}
.ws44{word-spacing:-16.512000pt;}
.ws47{word-spacing:-16.192000pt;}
.ws1e{word-spacing:-15.872000pt;}
.ws1d{word-spacing:-15.808000pt;}
.ws3e{word-spacing:-15.744000pt;}
.ws43{word-spacing:-15.680000pt;}
.ws4b{word-spacing:-15.488000pt;}
.ws20{word-spacing:-15.424000pt;}
.ws49{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws2e{word-spacing:-13.280000pt;}
.ws4d{word-spacing:-12.588800pt;}
.ws4{word-spacing:-11.626667pt;}
.ws54{word-spacing:-10.965333pt;}
.ws56{word-spacing:-10.538667pt;}
.ws12{word-spacing:-10.490667pt;}
.ws55{word-spacing:-10.325333pt;}
.ws46{word-spacing:-7.680000pt;}
.ws2a{word-spacing:-7.520000pt;}
.ws15{word-spacing:-6.026667pt;}
.ws27{word-spacing:-1.792000pt;}
.ws3d{word-spacing:-0.960000pt;}
.ws45{word-spacing:-0.832000pt;}
.ws1a{word-spacing:-0.768000pt;}
.ws2b{word-spacing:-0.704000pt;}
.ws10{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.576000pt;}
.ws25{word-spacing:-0.512000pt;}
.ws26{word-spacing:-0.448000pt;}
.ws2d{word-spacing:-0.384000pt;}
.ws1c{word-spacing:-0.341333pt;}
.wse{word-spacing:-0.320000pt;}
.wsa{word-spacing:-0.256000pt;}
.ws57{word-spacing:-0.213333pt;}
.ws11{word-spacing:-0.192000pt;}
.ws16{word-spacing:-0.128000pt;}
.ws1b{word-spacing:-0.085333pt;}
.ws23{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
.ws9{word-spacing:0.064000pt;}
.ws30{word-spacing:0.085333pt;}
.wsf{word-spacing:0.128000pt;}
.ws22{word-spacing:0.192000pt;}
.ws2f{word-spacing:0.213333pt;}
.wsb{word-spacing:0.256000pt;}
.ws3{word-spacing:0.266667pt;}
.ws2c{word-spacing:0.320000pt;}
.wsc{word-spacing:0.384000pt;}
.ws21{word-spacing:0.448000pt;}
.ws4a{word-spacing:0.512000pt;}
.ws3f{word-spacing:0.576000pt;}
.ws17{word-spacing:0.640000pt;}
.ws19{word-spacing:0.704000pt;}
.ws52{word-spacing:0.832000pt;}
.ws18{word-spacing:0.960000pt;}
.ws8{word-spacing:1.280000pt;}
.ws42{word-spacing:1.344000pt;}
.ws7{word-spacing:1.600000pt;}
.ws58{word-spacing:1.664000pt;}
.ws5a{word-spacing:1.877333pt;}
.ws4f{word-spacing:1.920000pt;}
.ws48{word-spacing:2.133333pt;}
.ws41{word-spacing:2.496000pt;}
.ws59{word-spacing:2.986667pt;}
.ws14{word-spacing:3.733333pt;}
.ws40{word-spacing:4.160000pt;}
.ws24{word-spacing:4.480000pt;}
.ws51{word-spacing:5.888000pt;}
.ws53{word-spacing:6.016000pt;}
.ws50{word-spacing:6.976000pt;}
.ws0{word-spacing:7.445333pt;}
.ws4c{word-spacing:8.960000pt;}
.ws35{word-spacing:34.880000pt;}
.ws37{word-spacing:37.653333pt;}
.ws3c{word-spacing:58.186667pt;}
.ws38{word-spacing:62.613333pt;}
.ws6{word-spacing:66.826667pt;}
.ws3b{word-spacing:78.400000pt;}
.ws39{word-spacing:91.200000pt;}
.ws3a{word-spacing:96.160000pt;}
.ws36{word-spacing:105.546667pt;}
.ws33{word-spacing:210.853333pt;}
.ws34{word-spacing:298.346667pt;}
.ws31{word-spacing:432.373333pt;}
.ws32{word-spacing:436.533333pt;}
._12{margin-left:-835.898667pt;}
._6{margin-left:-63.941333pt;}
._15{margin-left:-62.821333pt;}
._2b{margin-left:-14.285867pt;}
._13{margin-left:-7.715200pt;}
._11{margin-left:-6.800000pt;}
._b{margin-left:-5.498667pt;}
._c{margin-left:-4.549333pt;}
._9{margin-left:-3.385600pt;}
._8{margin-left:-2.069333pt;}
._2{margin-left:-0.949333pt;}
._3{width:1.317333pt;}
._d{width:2.285867pt;}
._1{width:3.498667pt;}
._a{width:4.511467pt;}
._10{width:5.707200pt;}
._7{width:7.381333pt;}
._e{width:9.024000pt;}
._f{width:10.228267pt;}
._16{width:11.205333pt;}
._17{width:12.173333pt;}
._5{width:15.360000pt;}
._4{width:23.269333pt;}
._14{width:28.129333pt;}
._1d{width:30.554667pt;}
._20{width:51.634133pt;}
._19{width:54.162667pt;}
._22{width:68.487467pt;}
._26{width:82.414400pt;}
._18{width:85.042667pt;}
._1a{width:87.869333pt;}
._1c{width:103.016000pt;}
._2c{width:104.563733pt;}
._1b{width:116.616000pt;}
._23{width:118.674133pt;}
._21{width:119.860267pt;}
._1f{width:136.700800pt;}
._1e{width:144.400000pt;}
._25{width:156.312533pt;}
._24{width:177.085867pt;}
._0{width:179.168000pt;}
._2e{width:195.144533pt;}
._28{width:200.504533pt;}
._2d{width:219.134400pt;}
._29{width:229.256533pt;}
._27{width:324.808533pt;}
._2a{width:376.819733pt;}
.fs5{font-size:31.733333pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs8{font-size:44.800000pt;}
.fs0{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs9{font-size:61.333333pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y3{bottom:52.000000pt;}
.y1{bottom:64.000000pt;}
.y4a{bottom:104.000000pt;}
.y12f{bottom:104.170667pt;}
.ye2{bottom:104.874667pt;}
.yf4{bottom:104.986667pt;}
.y140{bottom:105.360533pt;}
.y10a{bottom:105.580400pt;}
.y1bf{bottom:106.261467pt;}
.y22{bottom:106.860933pt;}
.y155{bottom:107.740000pt;}
.y93{bottom:107.838933pt;}
.y49{bottom:117.333333pt;}
.ybf{bottom:121.073333pt;}
.y1be{bottom:122.794800pt;}
.y12e{bottom:123.642667pt;}
.y6a{bottom:124.000000pt;}
.y92{bottom:124.638933pt;}
.ye1{bottom:125.402667pt;}
.yf3{bottom:125.514667pt;}
.y109{bottom:125.852400pt;}
.y13f{bottom:125.888533pt;}
.y21{bottom:126.860933pt;}
.y48{bottom:130.666667pt;}
.y1bd{bottom:139.328133pt;}
.y12d{bottom:143.114667pt;}
.y47{bottom:144.000000pt;}
.y18c{bottom:144.549333pt;}
.ye0{bottom:145.930667pt;}
.yf2{bottom:146.042667pt;}
.y108{bottom:146.124400pt;}
.y13e{bottom:146.416533pt;}
.y20{bottom:146.860933pt;}
.y154{bottom:150.338533pt;}
.y1bc{bottom:155.861467pt;}
.y91{bottom:156.558933pt;}
.y46{bottom:157.333333pt;}
.y12c{bottom:162.586667pt;}
.y161{bottom:163.067333pt;}
.y69{bottom:164.000000pt;}
.y18b{bottom:164.821333pt;}
.y107{bottom:166.396400pt;}
.ydf{bottom:166.458667pt;}
.yf1{bottom:166.570667pt;}
.y1f{bottom:166.860933pt;}
.y13d{bottom:166.944533pt;}
.ybd{bottom:170.567467pt;}
.y45{bottom:170.666667pt;}
.y153{bottom:170.738533pt;}
.y1bb{bottom:172.394800pt;}
.y90{bottom:173.358933pt;}
.y6f{bottom:174.406667pt;}
.ybc{bottom:178.900800pt;}
.y12b{bottom:182.058667pt;}
.y160{bottom:183.339333pt;}
.y44{bottom:184.000000pt;}
.y18a{bottom:185.093333pt;}
.y106{bottom:186.668400pt;}
.y1e{bottom:186.860933pt;}
.yde{bottom:186.986667pt;}
.yf0{bottom:187.098667pt;}
.ybe{bottom:187.234133pt;}
.y13c{bottom:187.472533pt;}
.y1ba{bottom:188.928133pt;}
.y8f{bottom:190.158933pt;}
.y6e{bottom:190.666667pt;}
.y152{bottom:191.138533pt;}
.y43{bottom:201.073333pt;}
.y12a{bottom:201.530667pt;}
.y15f{bottom:203.611333pt;}
.y68{bottom:204.000000pt;}
.y189{bottom:205.365333pt;}
.y1d{bottom:206.860933pt;}
.y105{bottom:206.940400pt;}
.y8e{bottom:206.958933pt;}
.ydd{bottom:207.514667pt;}
.yef{bottom:207.626667pt;}
.y6d{bottom:207.740000pt;}
.y13b{bottom:208.000533pt;}
.yb9{bottom:208.951733pt;}
.y1b9{bottom:211.141333pt;}
.y151{bottom:211.538533pt;}
.ybb{bottom:217.285067pt;}
.y42{bottom:217.333333pt;}
.y129{bottom:221.002667pt;}
.y15e{bottom:223.883333pt;}
.y67{bottom:224.000000pt;}
.yb7{bottom:225.618400pt;}
.y188{bottom:225.637333pt;}
.y1c{bottom:226.860933pt;}
.y104{bottom:227.212400pt;}
.ydc{bottom:228.042667pt;}
.yee{bottom:228.154667pt;}
.y13a{bottom:228.528533pt;}
.y41{bottom:230.666667pt;}
.y150{bottom:231.938533pt;}
.yba{bottom:233.951733pt;}
.y8d{bottom:238.878933pt;}
.y128{bottom:240.474667pt;}
.yb8{bottom:242.285067pt;}
.y66{bottom:244.000000pt;}
.y15d{bottom:244.155333pt;}
.y187{bottom:245.909333pt;}
.y1b{bottom:246.860933pt;}
.y103{bottom:247.484400pt;}
.y40{bottom:247.740000pt;}
.ydb{bottom:248.570667pt;}
.yed{bottom:248.682667pt;}
.y139{bottom:249.056533pt;}
.y1b8{bottom:250.874667pt;}
.y14f{bottom:252.338533pt;}
.y127{bottom:259.946667pt;}
.y6c{bottom:261.333333pt;}
.y8c{bottom:263.238933pt;}
.y3f{bottom:264.000000pt;}
.yb5{bottom:264.002667pt;}
.y1b7{bottom:264.069333pt;}
.y186{bottom:266.181333pt;}
.y1a{bottom:266.860933pt;}
.y102{bottom:267.756400pt;}
.yda{bottom:269.098667pt;}
.yec{bottom:269.210667pt;}
.y138{bottom:269.584533pt;}
.yb4{bottom:272.336000pt;}
.y14e{bottom:272.738533pt;}
.y1b6{bottom:277.269333pt;}
.y3e{bottom:277.333333pt;}
.y126{bottom:279.418667pt;}
.y8b{bottom:280.038933pt;}
.yb6{bottom:280.669333pt;}
.y65{bottom:284.000000pt;}
.y185{bottom:286.453333pt;}
.y19{bottom:286.860933pt;}
.y101{bottom:288.028400pt;}
.yd9{bottom:289.626667pt;}
.yeb{bottom:289.738667pt;}
.y137{bottom:290.112533pt;}
.y1b5{bottom:290.469333pt;}
.y14d{bottom:293.138533pt;}
.y3d{bottom:294.406667pt;}
.y8a{bottom:296.838933pt;}
.y125{bottom:298.890667pt;}
.y6b{bottom:301.333333pt;}
.yb2{bottom:302.386933pt;}
.y1b4{bottom:303.669333pt;}
.y64{bottom:304.000000pt;}
.y184{bottom:306.725333pt;}
.y18{bottom:306.860933pt;}
.y100{bottom:308.300400pt;}
.y16b{bottom:308.592267pt;}
.yd8{bottom:310.154667pt;}
.yea{bottom:310.266667pt;}
.y136{bottom:310.640533pt;}
.yb1{bottom:310.720267pt;}
.y14c{bottom:313.538533pt;}
.y89{bottom:313.638933pt;}
.y1b3{bottom:316.896000pt;}
.y124{bottom:318.362667pt;}
.yb3{bottom:319.053600pt;}
.y63{bottom:324.000000pt;}
.y17{bottom:326.860933pt;}
.y183{bottom:326.997333pt;}
.yff{bottom:328.572400pt;}
.y1b2{bottom:330.090667pt;}
.y88{bottom:330.438933pt;}
.yd7{bottom:330.682667pt;}
.ye9{bottom:330.794667pt;}
.y135{bottom:331.168533pt;}
.y3c{bottom:332.005333pt;}
.y14b{bottom:333.938533pt;}
.y123{bottom:337.834667pt;}
.y1d5{bottom:340.666667pt;}
.yaf{bottom:340.771200pt;}
.y1b1{bottom:343.285333pt;}
.y62{bottom:344.000000pt;}
.y15c{bottom:345.488667pt;}
.y16{bottom:346.860933pt;}
.y87{bottom:347.238933pt;}
.yfe{bottom:348.844400pt;}
.yae{bottom:349.104533pt;}
.yd6{bottom:351.210667pt;}
.ye8{bottom:351.322667pt;}
.y3b{bottom:351.386667pt;}
.y134{bottom:351.696533pt;}
.y14a{bottom:354.338533pt;}
.y16a{bottom:356.440933pt;}
.y1b0{bottom:356.480000pt;}
.y122{bottom:357.306667pt;}
.y1d4{bottom:357.333333pt;}
.yb0{bottom:357.437867pt;}
.y182{bottom:357.525333pt;}
.y61{bottom:364.000000pt;}
.y15{bottom:366.860933pt;}
.yfd{bottom:369.116400pt;}
.y1af{bottom:369.674667pt;}
.y3a{bottom:370.714667pt;}
.yd5{bottom:371.738667pt;}
.ye7{bottom:371.850667pt;}
.y133{bottom:372.224533pt;}
.y1d3{bottom:374.000000pt;}
.y149{bottom:374.738533pt;}
.y169{bottom:376.440933pt;}
.y121{bottom:376.778667pt;}
.y181{bottom:377.797333pt;}
.yac{bottom:379.155333pt;}
.y1ae{bottom:382.869333pt;}
.y60{bottom:384.000000pt;}
.y86{bottom:385.052267pt;}
.y15b{bottom:385.995333pt;}
.y14{bottom:386.860933pt;}
.yab{bottom:387.488667pt;}
.yfc{bottom:389.388400pt;}
.y39{bottom:390.042667pt;}
.y1d2{bottom:390.666667pt;}
.yd4{bottom:392.266667pt;}
.ye6{bottom:392.378667pt;}
.y132{bottom:392.752533pt;}
.y148{bottom:395.138533pt;}
.yad{bottom:395.822000pt;}
.y1ad{bottom:396.069333pt;}
.y120{bottom:396.250667pt;}
.y168{bottom:396.440933pt;}
.y180{bottom:398.069333pt;}
.y85{bottom:401.052267pt;}
.y5f{bottom:404.000000pt;}
.y15a{bottom:406.267333pt;}
.y13{bottom:406.860933pt;}
.y38{bottom:409.370667pt;}
.y1ac{bottom:409.376000pt;}
.yfb{bottom:409.660400pt;}
.yd3{bottom:412.800000pt;}
.ye5{bottom:412.906667pt;}
.y131{bottom:413.280533pt;}
.y147{bottom:415.538533pt;}
.y11f{bottom:415.722667pt;}
.y167{bottom:416.440933pt;}
.ya9{bottom:417.539600pt;}
.y17f{bottom:418.341333pt;}
.y1ab{bottom:422.570667pt;}
.y5e{bottom:424.000000pt;}
.y84{bottom:425.038933pt;}
.ya8{bottom:425.872933pt;}
.y159{bottom:426.539333pt;}
.y12{bottom:426.860933pt;}
.y37{bottom:428.698667pt;}
.yfa{bottom:429.932400pt;}
.yd2{bottom:433.333333pt;}
.ye4{bottom:433.434667pt;}
.y130{bottom:433.808533pt;}
.yaa{bottom:434.206267pt;}
.y11e{bottom:435.194667pt;}
.y1aa{bottom:435.765333pt;}
.y146{bottom:435.938533pt;}
.y166{bottom:436.440933pt;}
.y17e{bottom:438.613333pt;}
.y1d1{bottom:440.666667pt;}
.y83{bottom:441.038933pt;}
.y5d{bottom:444.000000pt;}
.y158{bottom:446.811333pt;}
.y11{bottom:446.860933pt;}
.y36{bottom:448.026667pt;}
.y1a9{bottom:448.960000pt;}
.yf9{bottom:450.204400pt;}
.ye3{bottom:453.962667pt;}
.y11d{bottom:454.666667pt;}
.ya6{bottom:455.923867pt;}
.y145{bottom:456.338533pt;}
.y165{bottom:456.440933pt;}
.y1d0{bottom:457.333333pt;}
.y17d{bottom:458.885333pt;}
.y1a8{bottom:462.154667pt;}
.y5c{bottom:464.000000pt;}
.ya5{bottom:464.257200pt;}
.y82{bottom:465.025600pt;}
.y10{bottom:466.860933pt;}
.y157{bottom:467.083333pt;}
.yf8{bottom:470.476400pt;}
.ya7{bottom:472.590533pt;}
.y1cf{bottom:474.000000pt;}
.y11c{bottom:474.133333pt;}
.yd1{bottom:474.490667pt;}
.y1a7{bottom:475.349333pt;}
.y164{bottom:476.440933pt;}
.y35{bottom:476.698667pt;}
.y144{bottom:476.738533pt;}
.y17c{bottom:479.157333pt;}
.y5b{bottom:484.000000pt;}
.yf{bottom:486.860933pt;}
.y156{bottom:487.355333pt;}
.y1a6{bottom:488.544000pt;}
.y81{bottom:489.012267pt;}
.yf7{bottom:490.748400pt;}
.ya3{bottom:494.308133pt;}
.yd0{bottom:495.018667pt;}
.y34{bottom:496.026667pt;}
.y163{bottom:496.440933pt;}
.y143{bottom:497.138533pt;}
.y17b{bottom:499.429333pt;}
.y1a5{bottom:501.738667pt;}
.ya2{bottom:502.641467pt;}
.y5a{bottom:504.000000pt;}
.ye{bottom:506.860933pt;}
.y1ce{bottom:507.333333pt;}
.ya4{bottom:510.974800pt;}
.yf6{bottom:511.020400pt;}
.y11b{bottom:512.981333pt;}
.y80{bottom:512.998933pt;}
.y1a4{bottom:514.933333pt;}
.y33{bottom:515.354667pt;}
.ycf{bottom:515.546667pt;}
.y162{bottom:516.440933pt;}
.y142{bottom:517.538533pt;}
.y17a{bottom:519.701333pt;}
.y59{bottom:524.000000pt;}
.yd{bottom:526.860933pt;}
.y1a3{bottom:528.128000pt;}
.y7f{bottom:528.998933pt;}
.yf5{bottom:531.292400pt;}
.y11a{bottom:532.453333pt;}
.ya0{bottom:532.692400pt;}
.y32{bottom:534.682667pt;}
.yce{bottom:536.074667pt;}
.y141{bottom:537.938533pt;}
.y179{bottom:539.973333pt;}
.y9f{bottom:541.025733pt;}
.y1a2{bottom:541.322667pt;}
.y58{bottom:544.000000pt;}
.y7e{bottom:544.998933pt;}
.yc{bottom:546.860933pt;}
.ya1{bottom:549.359067pt;}
.y119{bottom:551.925333pt;}
.y31{bottom:554.010667pt;}
.y1a1{bottom:554.517333pt;}
.ycd{bottom:556.602667pt;}
.y178{bottom:560.245333pt;}
.y1cd{bottom:560.666667pt;}
.y7d{bottom:560.998933pt;}
.y57{bottom:564.000000pt;}
.yb{bottom:566.860933pt;}
.y1a0{bottom:567.712000pt;}
.y118{bottom:571.397333pt;}
.y30{bottom:573.338667pt;}
.y7c{bottom:576.998933pt;}
.ycc{bottom:577.130667pt;}
.y1cc{bottom:577.333333pt;}
.y9e{bottom:577.868000pt;}
.y177{bottom:580.517333pt;}
.y19f{bottom:580.906667pt;}
.y56{bottom:584.000000pt;}
.ya{bottom:586.860933pt;}
.y117{bottom:590.869333pt;}
.y2f{bottom:592.725333pt;}
.y1cb{bottom:594.000000pt;}
.y19e{bottom:594.101333pt;}
.ycb{bottom:597.658667pt;}
.y7b{bottom:599.090000pt;}
.y176{bottom:600.789333pt;}
.y55{bottom:604.000000pt;}
.y9{bottom:606.860933pt;}
.y19d{bottom:607.296000pt;}
.y116{bottom:610.341333pt;}
.y1ca{bottom:610.666667pt;}
.y2e{bottom:612.053333pt;}
.yca{bottom:618.186667pt;}
.y9d{bottom:620.428000pt;}
.y19c{bottom:620.490667pt;}
.y175{bottom:621.061333pt;}
.y54{bottom:624.000000pt;}
.y1c9{bottom:627.333333pt;}
.y9c{bottom:628.761333pt;}
.y115{bottom:629.813333pt;}
.y7a{bottom:630.876667pt;}
.y2d{bottom:631.381333pt;}
.y19b{bottom:633.685333pt;}
.yc9{bottom:638.714667pt;}
.y174{bottom:641.333333pt;}
.y53{bottom:644.000000pt;}
.y8{bottom:646.860933pt;}
.y19a{bottom:646.880000pt;}
.y79{bottom:647.543333pt;}
.y114{bottom:649.285333pt;}
.y2c{bottom:650.709333pt;}
.yc8{bottom:659.242667pt;}
.y199{bottom:660.074667pt;}
.y1c8{bottom:660.666667pt;}
.y9b{bottom:661.081333pt;}
.y173{bottom:661.600000pt;}
.y52{bottom:664.000000pt;}
.y78{bottom:664.210000pt;}
.y113{bottom:668.757333pt;}
.y2b{bottom:670.037333pt;}
.y198{bottom:673.269333pt;}
.y1c7{bottom:677.333333pt;}
.yc7{bottom:679.770667pt;}
.y172{bottom:681.866667pt;}
.y51{bottom:684.000000pt;}
.y7{bottom:684.314933pt;}
.y9a{bottom:685.068000pt;}
.y197{bottom:686.480133pt;}
.y112{bottom:688.229333pt;}
.y2a{bottom:689.365333pt;}
.y1c6{bottom:694.000000pt;}
.y77{bottom:695.994800pt;}
.y196{bottom:699.674800pt;}
.yc6{bottom:700.298667pt;}
.y99{bottom:701.734667pt;}
.y50{bottom:704.000000pt;}
.y6{bottom:704.314933pt;}
.y111{bottom:707.701333pt;}
.y29{bottom:708.693333pt;}
.y1c5{bottom:710.666667pt;}
.y195{bottom:712.869467pt;}
.y76{bottom:720.220400pt;}
.yc5{bottom:720.826667pt;}
.y171{bottom:722.373333pt;}
.y4f{bottom:724.000000pt;}
.y98{bottom:725.721333pt;}
.y194{bottom:726.074800pt;}
.y110{bottom:727.173333pt;}
.y1c4{bottom:727.333333pt;}
.y28{bottom:728.021333pt;}
.y193{bottom:739.269467pt;}
.y75{bottom:740.220400pt;}
.yc4{bottom:741.354667pt;}
.y170{bottom:742.645333pt;}
.y4e{bottom:744.000000pt;}
.y10f{bottom:746.645333pt;}
.y27{bottom:747.349333pt;}
.y97{bottom:749.708000pt;}
.y192{bottom:752.474800pt;}
.y74{bottom:760.220400pt;}
.y1c3{bottom:760.666667pt;}
.yc3{bottom:761.882667pt;}
.y16f{bottom:762.917333pt;}
.y5{bottom:764.000000pt;}
.y191{bottom:765.669467pt;}
.y10e{bottom:766.117333pt;}
.y26{bottom:766.677333pt;}
.y96{bottom:773.694667pt;}
.y1c2{bottom:777.333333pt;}
.y190{bottom:778.864133pt;}
.y73{bottom:780.220400pt;}
.yc2{bottom:782.410667pt;}
.y16e{bottom:783.189333pt;}
.y4d{bottom:784.000000pt;}
.y10d{bottom:785.589333pt;}
.y25{bottom:786.005333pt;}
.y4{bottom:790.666667pt;}
.y18f{bottom:792.069467pt;}
.y1c1{bottom:794.000000pt;}
.y71{bottom:797.553733pt;}
.y95{bottom:797.681333pt;}
.y72{bottom:800.220400pt;}
.yc1{bottom:802.938667pt;}
.y16d{bottom:803.461333pt;}
.y4c{bottom:804.000000pt;}
.y10c{bottom:805.061333pt;}
.y18e{bottom:805.264000pt;}
.y24{bottom:805.333333pt;}
.y1c0{bottom:810.666667pt;}
.y70{bottom:821.333333pt;}
.yc0{bottom:823.466667pt;}
.y16c{bottom:823.733333pt;}
.y4b{bottom:824.000000pt;}
.y18d{bottom:824.133333pt;}
.y10b{bottom:824.533333pt;}
.y23{bottom:824.666667pt;}
.y94{bottom:827.333333pt;}
.h7{height:21.305339pt;}
.ha{height:26.945443pt;}
.h15{height:34.730667pt;}
.h2{height:35.546875pt;}
.h3{height:35.807292pt;}
.h8{height:36.229167pt;}
.h16{height:36.229700pt;}
.hd{height:39.437500pt;}
.h10{height:42.519613pt;}
.hc{height:42.968750pt;}
.h13{height:43.413333pt;}
.h5{height:44.960000pt;}
.h1{height:45.286458pt;}
.h14{height:47.989333pt;}
.hb{height:50.104167pt;}
.h6{height:54.343750pt;}
.h9{height:65.010417pt;}
.he{height:69.140625pt;}
.h12{height:77.482133pt;}
.h11{height:77.482667pt;}
.hf{height:78.619792pt;}
.h4{height:90.572917pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.x4{left:73.228400pt;}
.xd{left:77.341200pt;}
.xe{left:86.461200pt;}
.x6{left:100.000000pt;}
.x7{left:113.228400pt;}
.xf{left:117.341200pt;}
.x2{left:120.000000pt;}
.x8{left:121.228400pt;}
.xc{left:124.252000pt;}
.xa{left:126.454933pt;}
.x9{left:141.580400pt;}
.x1d{left:162.633867pt;}
.xb{left:164.251867pt;}
.x1c{left:167.847200pt;}
.x1a{left:173.940533pt;}
.x14{left:187.553867pt;}
.x19{left:192.927200pt;}
.x17{left:194.113867pt;}
.x1b{left:203.353867pt;}
.x1e{left:206.380533pt;}
.x11{left:218.140533pt;}
.x15{left:305.247200pt;}
.x3{left:306.666667pt;}
.x12{left:311.700533pt;}
.x18{left:313.527200pt;}
.x16{left:315.553867pt;}
.x13{left:385.247200pt;}
.x10{left:389.287867pt;}
.x5{left:564.791600pt;}
}




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