
    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_38f5bdc484ed0113f376bf7d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_9422439d2243212cf5f7f8b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.143000;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_5cc690d367ed29247a9109cb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722000;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_16348f9c5e4de9af3126ebb8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fd68cf886be12e6b91d590ea.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.376000;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_8ca9a0125c08e2bf67caf3fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.135000;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_fd68cf886be12e6b91d590ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.376000;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_7bda66bcf6c25ab08acf6e57.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.081000;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_938e001eb181a7be83a2854c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.623000;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_fd68cf886be12e6b91d590ea.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.376000;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_301530278d79b4021c142dea.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.738000;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_d0b8cb6c4f66f1aadd10f591.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.051000;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_3238d2f60efcc6a4df66122c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040000;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_57506636bbd5eb11507060fc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.947000;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;}
.mc{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242501,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.ma{transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269230,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.404000px;}
.ls23{letter-spacing:-1.821600px;}
.ls1c{letter-spacing:-0.864000px;}
.ls1a{letter-spacing:-0.816000px;}
.ls15{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.441600px;}
.ls17{letter-spacing:-0.276000px;}
.ls16{letter-spacing:-0.270000px;}
.ls24{letter-spacing:-0.219000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.105600px;}
.lsf{letter-spacing:0.110880px;}
.ls1d{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.510000px;}
.ls22{letter-spacing:0.528000px;}
.ls0{letter-spacing:0.533280px;}
.ls21{letter-spacing:0.539878px;}
.ls18{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.552000px;}
.ls8{letter-spacing:0.552672px;}
.ls11{letter-spacing:0.588060px;}
.ls5{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.930000px;}
.lsc{letter-spacing:0.938400px;}
.ls10{letter-spacing:0.960000px;}
.ls13{letter-spacing:1.311420px;}
.ls3{letter-spacing:1.320000px;}
.ls2{letter-spacing:1.553265px;}
.ls1b{letter-spacing:1.776000px;}
.ls7{letter-spacing:25.281600px;}
.lsa{letter-spacing:25.999200px;}
.lsb{letter-spacing:26.716800px;}
.ls12{letter-spacing:27.000000px;}
.ls1f{letter-spacing:27.434400px;}
.ls1e{letter-spacing:28.207200px;}
.ls20{letter-spacing:42.614400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-45.932265px;}
.ws4{word-spacing:-27.720000px;}
.ws19{word-spacing:-20.160000px;}
.ws3f{word-spacing:-19.530000px;}
.wsc{word-spacing:-16.339200px;}
.ws24{word-spacing:-16.063200px;}
.wsb{word-spacing:-15.897600px;}
.ws61{word-spacing:-14.517600px;}
.ws1b{word-spacing:-14.425620px;}
.wsa{word-spacing:-11.978400px;}
.ws8{word-spacing:-11.606112px;}
.wsd{word-spacing:-11.592000px;}
.ws0{word-spacing:-11.198880px;}
.ws57{word-spacing:-11.088000px;}
.ws1a{word-spacing:-10.800000px;}
.ws3{word-spacing:-10.710000px;}
.ws17{word-spacing:-10.665600px;}
.ws40{word-spacing:-10.530000px;}
.ws1c{word-spacing:-10.260000px;}
.ws35{word-spacing:-9.120000px;}
.ws76{word-spacing:-8.760000px;}
.ws75{word-spacing:-8.541000px;}
.ws38{word-spacing:-7.776000px;}
.ws3e{word-spacing:-6.840000px;}
.ws69{word-spacing:-6.734400px;}
.ws68{word-spacing:-3.532800px;}
.ws41{word-spacing:-3.422400px;}
.ws2c{word-spacing:-3.201600px;}
.wsf{word-spacing:-3.091200px;}
.ws26{word-spacing:-2.980800px;}
.ws28{word-spacing:-2.428800px;}
.ws44{word-spacing:-2.097600px;}
.ws4e{word-spacing:-1.932000px;}
.ws4b{word-spacing:-1.821600px;}
.ws3d{word-spacing:-1.776000px;}
.ws4f{word-spacing:-1.545600px;}
.ws11{word-spacing:-1.490400px;}
.ws6a{word-spacing:-1.435200px;}
.ws22{word-spacing:-1.404000px;}
.ws2d{word-spacing:-1.380000px;}
.ws59{word-spacing:-1.159200px;}
.ws74{word-spacing:-0.883200px;}
.ws14{word-spacing:-0.717600px;}
.wse{word-spacing:-0.607200px;}
.ws9{word-spacing:-0.552672px;}
.ws50{word-spacing:-0.552000px;}
.ws58{word-spacing:-0.496800px;}
.ws1d{word-spacing:-0.480000px;}
.ws3b{word-spacing:-0.432000px;}
.ws42{word-spacing:-0.331200px;}
.ws16{word-spacing:-0.220800px;}
.ws2f{word-spacing:-0.165600px;}
.ws1f{word-spacing:-0.110400px;}
.ws18{word-spacing:-0.105600px;}
.ws48{word-spacing:-0.055200px;}
.ws23{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws2a{word-spacing:0.110400px;}
.ws4a{word-spacing:0.220800px;}
.ws2b{word-spacing:0.276000px;}
.ws10{word-spacing:0.441600px;}
.ws1e{word-spacing:0.540000px;}
.ws70{word-spacing:0.662400px;}
.ws47{word-spacing:0.772800px;}
.ws32{word-spacing:0.828000px;}
.ws3a{word-spacing:0.883200px;}
.ws62{word-spacing:0.993600px;}
.ws64{word-spacing:1.159200px;}
.ws3c{word-spacing:1.296000px;}
.ws66{word-spacing:1.380000px;}
.ws6e{word-spacing:1.656000px;}
.ws43{word-spacing:1.987200px;}
.ws36{word-spacing:2.042400px;}
.ws25{word-spacing:2.208000px;}
.ws21{word-spacing:2.484000px;}
.ws30{word-spacing:2.539200px;}
.ws39{word-spacing:2.594400px;}
.ws45{word-spacing:2.649600px;}
.ws5f{word-spacing:2.760000px;}
.ws65{word-spacing:2.925600px;}
.ws27{word-spacing:3.036000px;}
.ws71{word-spacing:3.312000px;}
.ws53{word-spacing:3.367200px;}
.ws51{word-spacing:3.532800px;}
.ws5c{word-spacing:3.808800px;}
.ws15{word-spacing:3.974400px;}
.ws6d{word-spacing:4.029600px;}
.ws6c{word-spacing:4.857600px;}
.ws31{word-spacing:4.968000px;}
.ws6f{word-spacing:5.133600px;}
.ws6b{word-spacing:5.354400px;}
.ws73{word-spacing:5.464800px;}
.ws20{word-spacing:5.520000px;}
.ws46{word-spacing:6.624000px;}
.ws5b{word-spacing:6.734400px;}
.ws13{word-spacing:6.955200px;}
.ws33{word-spacing:7.065600px;}
.ws29{word-spacing:7.120800px;}
.ws5a{word-spacing:7.176000px;}
.ws67{word-spacing:7.231200px;}
.ws5d{word-spacing:8.059200px;}
.ws52{word-spacing:8.169600px;}
.ws49{word-spacing:8.280000px;}
.ws77{word-spacing:8.832000px;}
.ws4d{word-spacing:8.887200px;}
.ws60{word-spacing:9.273600px;}
.ws4c{word-spacing:9.384000px;}
.ws54{word-spacing:9.604800px;}
.ws5e{word-spacing:9.660000px;}
.ws55{word-spacing:9.825600px;}
.ws72{word-spacing:10.156800px;}
.ws34{word-spacing:10.267200px;}
.ws2e{word-spacing:11.150400px;}
.ws12{word-spacing:11.316000px;}
.ws63{word-spacing:14.628000px;}
.ws56{word-spacing:19.982400px;}
.ws37{word-spacing:77.424000px;}
.ws6{word-spacing:1237.320000px;}
.ws7{word-spacing:1317.816000px;}
.ws5{word-spacing:1519.272000px;}
._2{margin-left:-1555.413403px;}
._15{margin-left:-70.200000px;}
._f{margin-left:-60.498588px;}
._1a{margin-left:-35.483072px;}
._12{margin-left:-22.814114px;}
._1b{margin-left:-17.774400px;}
._1c{margin-left:-15.636491px;}
._14{margin-left:-8.640000px;}
._7{margin-left:-7.244467px;}
._16{margin-left:-6.072000px;}
._8{margin-left:-4.947418px;}
._11{margin-left:-3.587712px;}
._10{margin-left:-2.524309px;}
._6{margin-left:-1.450091px;}
._0{width:1.279872px;}
._1{width:2.607739px;}
._5{width:4.023418px;}
._4{width:5.769270px;}
._3{width:7.717398px;}
._13{width:47.597706px;}
._19{width:71.764128px;}
._17{width:80.410756px;}
._18{width:412.992000px;}
._a{width:781.249860px;}
._9{width:848.320783px;}
._c{width:992.336954px;}
._b{width:1020.528655px;}
._e{width:1059.101350px;}
._d{width:1243.400134px;}
.fc8{color:rgb(196,190,189);}
.fc7{color:rgb(124,16,100);}
.fc9{color:rgb(143,128,131);}
.fc4{color:rgb(158,25,129);}
.fc6{color:rgb(0,77,154);}
.fc3{color:transparent;}
.fc5{color:rgb(178,171,169);}
.fc2{color:rgb(139,125,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs16{font-size:36.000000px;}
.fs18{font-size:43.800000px;}
.fs13{font-size:45.600000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs19{font-size:51.600000px;}
.fsc{font-size:52.800000px;}
.fs0{font-size:53.328000px;}
.fs10{font-size:54.000000px;}
.fsa{font-size:55.200000px;}
.fsb{font-size:55.267200px;}
.fsf{font-size:58.806000px;}
.fs11{font-size:65.571000px;}
.fs8{font-size:72.000000px;}
.fs9{font-size:93.000000px;}
.fsd{font-size:96.000000px;}
.fs14{font-size:105.358200px;}
.fs5{font-size:114.000000px;}
.fse{font-size:120.000000px;}
.fs15{font-size:122.394000px;}
.fs4{font-size:132.000000px;}
.fs1{font-size:211.574400px;}
.fs2{font-size:221.895000px;}
.fs17{font-size:468.000000px;}
.fs12{font-size:482.382600px;}
.fs6{font-size:955.500000px;}
.y0{bottom:0.000000px;}
.y10{bottom:46.296300px;}
.y6{bottom:55.211700px;}
.y12{bottom:92.400600px;}
.y167{bottom:105.813450px;}
.yeb{bottom:105.977850px;}
.yea{bottom:105.994800px;}
.y107{bottom:106.011450px;}
.y136{bottom:106.014600px;}
.y11{bottom:111.900600px;}
.y23{bottom:117.810300px;}
.y11f{bottom:118.703100px;}
.y166{bottom:122.194650px;}
.ye9{bottom:125.190600px;}
.y106{bottom:125.207250px;}
.y135{bottom:125.210400px;}
.y11e{bottom:125.446800px;}
.y47{bottom:128.266050px;}
.y165{bottom:138.575850px;}
.y22{bottom:141.438150px;}
.y11d{bottom:144.198300px;}
.ye8{bottom:144.386400px;}
.y105{bottom:144.403050px;}
.y134{bottom:144.406200px;}
.y46{bottom:151.893900px;}
.y164{bottom:154.957050px;}
.y11c{bottom:162.949800px;}
.ye7{bottom:163.582200px;}
.y104{bottom:163.598850px;}
.y133{bottom:163.602000px;}
.y21{bottom:165.066150px;}
.yb8{bottom:169.284150px;}
.y78{bottom:174.781650px;}
.y45{bottom:175.521900px;}
.y5f{bottom:176.884800px;}
.y7e{bottom:176.943000px;}
.y7b{bottom:177.562650px;}
.y11b{bottom:181.699800px;}
.y163{bottom:181.984800px;}
.ye6{bottom:182.778000px;}
.y103{bottom:182.794650px;}
.y132{bottom:182.797800px;}
.y174{bottom:185.529450px;}
.yb7{bottom:187.279650px;}
.y20{bottom:188.694150px;}
.y77{bottom:192.777150px;}
.y7d{bottom:194.938500px;}
.y7a{bottom:195.558150px;}
.y162{bottom:196.230750px;}
.y44{bottom:199.149900px;}
.y5e{bottom:200.636700px;}
.y5{bottom:200.697116px;}
.y102{bottom:201.990450px;}
.y131{bottom:201.993600px;}
.y173{bottom:204.427950px;}
.yb6{bottom:205.275150px;}
.y161{bottom:210.476700px;}
.y76{bottom:210.772650px;}
.y1f{bottom:212.322000px;}
.y7c{bottom:212.934000px;}
.y79{bottom:213.553650px;}
.ye5{bottom:221.178000px;}
.y101{bottom:221.186250px;}
.ye4{bottom:221.194650px;}
.y5d{bottom:223.188600px;}
.y172{bottom:223.326450px;}
.yd1{bottom:224.679600px;}
.y160{bottom:224.722650px;}
.yb5{bottom:227.539350px;}
.y1e{bottom:235.950000px;}
.y8d{bottom:238.889550px;}
.y100{bottom:240.382050px;}
.ye3{bottom:240.390450px;}
.y130{bottom:240.399000px;}
.y117{bottom:242.042100px;}
.y171{bottom:242.224950px;}
.y15f{bottom:243.228150px;}
.y5c{bottom:245.740650px;}
.ya9{bottom:246.294000px;}
.y8c{bottom:257.641050px;}
.yff{bottom:259.577850px;}
.y1d{bottom:259.578000px;}
.y43{bottom:259.586250px;}
.y12f{bottom:259.594800px;}
.y15e{bottom:260.025450px;}
.y116{bottom:267.796050px;}
.y5b{bottom:268.292550px;}
.yd0{bottom:268.476600px;}
.y3{bottom:269.079325px;}
.y4{bottom:269.096250px;}
.ya8{bottom:269.922000px;}
.y8b{bottom:276.391050px;}
.yb4{bottom:278.204850px;}
.y42{bottom:278.782050px;}
.y12e{bottom:278.790600px;}
.ycf{bottom:283.476600px;}
.y15d{bottom:288.528300px;}
.y5a{bottom:290.844600px;}
.y115{bottom:291.424050px;}
.ya7{bottom:293.550000px;}
.yb3{bottom:296.200350px;}
.yfe{bottom:296.466150px;}
.yba{bottom:296.838000px;}
.y41{bottom:297.977850px;}
.y12d{bottom:297.986400px;}
.y15c{bottom:302.774250px;}
.y91{bottom:309.442050px;}
.y59{bottom:313.396500px;}
.y15b{bottom:317.020200px;}
.ya6{bottom:317.178000px;}
.y12c{bottom:317.182200px;}
.y114{bottom:317.193600px;}
.yb2{bottom:318.448350px;}
.yce{bottom:319.500600px;}
.y90{bottom:320.556600px;}
.yfd{bottom:320.844150px;}
.y15a{bottom:331.266150px;}
.y75{bottom:333.004200px;}
.ycd{bottom:334.500600px;}
.y58{bottom:335.948550px;}
.y12b{bottom:336.378000px;}
.y144{bottom:336.386400px;}
.y113{bottom:336.389400px;}
.y40{bottom:336.394800px;}
.y2{bottom:337.470750px;}
.y8f{bottom:339.753600px;}
.yfc{bottom:345.222000px;}
.y159{bottom:345.516150px;}
.y143{bottom:355.582200px;}
.y112{bottom:355.585200px;}
.y3f{bottom:355.590600px;}
.ya5{bottom:355.598850px;}
.y57{bottom:358.500450px;}
.y8e{bottom:358.503600px;}
.yf{bottom:360.418050px;}
.yfb{bottom:369.600000px;}
.yb1{bottom:369.830550px;}
.ycc{bottom:370.524600px;}
.y142{bottom:374.778000px;}
.y153{bottom:374.782050px;}
.y3e{bottom:374.786400px;}
.ya4{bottom:374.794650px;}
.yf0{bottom:378.321900px;}
.y2b{bottom:378.675617px;}
.y25{bottom:380.388900px;}
.y56{bottom:381.052500px;}
.yef{bottom:381.064800px;}
.y66{bottom:383.530050px;}
.yb0{bottom:385.277550px;}
.ycb{bottom:385.524600px;}
.y13c{bottom:393.586950px;}
.yfa{bottom:393.977850px;}
.y3d{bottom:393.982200px;}
.ya3{bottom:393.990450px;}
.y111{bottom:393.990600px;}
.y13b{bottom:397.614900px;}
.y24{bottom:399.387000px;}
.y2a{bottom:399.400817px;}
.yee{bottom:400.264800px;}
.yaf{bottom:400.724550px;}
.ye{bottom:400.916550px;}
.y55{bottom:403.604400px;}
.y141{bottom:404.497950px;}
.y1b{bottom:409.864800px;}
.y158{bottom:411.019950px;}
.y3c{bottom:413.178000px;}
.ya2{bottom:413.186250px;}
.y110{bottom:413.186400px;}
.yd7{bottom:413.801100px;}
.yd6{bottom:413.891100px;}
.y13a{bottom:416.366400px;}
.yed{bottom:418.269300px;}
.yca{bottom:421.548600px;}
.yae{bottom:424.686900px;}
.y65{bottom:425.530050px;}
.y54{bottom:426.156300px;}
.yf9{bottom:427.200000px;}
.y152{bottom:431.497500px;}
.y3b{bottom:432.378000px;}
.ya1{bottom:432.382050px;}
.y10f{bottom:432.382200px;}
.y138{bottom:435.116400px;}
.y139{bottom:435.117900px;}
.yec{bottom:436.264800px;}
.yc9{bottom:436.548600px;}
.y157{bottom:438.025950px;}
.y156{bottom:438.030000px;}
.yd{bottom:441.415050px;}
.y74{bottom:442.518750px;}
.yad{bottom:442.682400px;}
.yb9{bottom:444.959550px;}
.y1a{bottom:445.120650px;}
.y53{bottom:448.708350px;}
.ya0{bottom:451.577850px;}
.y10e{bottom:451.578000px;}
.y151{bottom:451.626000px;}
.y155{bottom:452.275950px;}
.y86{bottom:452.316150px;}
.y137{bottom:453.867900px;}
.y73{bottom:462.120750px;}
.yd5{bottom:463.418100px;}
.yac{bottom:464.930400px;}
.y64{bottom:467.530050px;}
.y154{bottom:470.777850px;}
.y9f{bottom:470.778000px;}
.y52{bottom:471.260250px;}
.yc8{bottom:472.572600px;}
.y85{bottom:476.694150px;}
.y19{bottom:480.376500px;}
.y72{bottom:481.614750px;}
.y3a{bottom:481.710150px;}
.yc{bottom:481.915050px;}
.yc7{bottom:487.572600px;}
.y10d{bottom:489.978000px;}
.yf8{bottom:489.990450px;}
.y150{bottom:490.020000px;}
.y51{bottom:493.812300px;}
.ye2{bottom:494.904300px;}
.y84{bottom:500.322000px;}
.y71{bottom:501.108750px;}
.y39{bottom:506.088150px;}
.y12a{bottom:506.949300px;}
.y140{bottom:509.182200px;}
.yf7{bottom:509.186250px;}
.y9e{bottom:509.197800px;}
.y14f{bottom:509.217000px;}
.y63{bottom:509.530050px;}
.yd4{bottom:514.511100px;}
.yab{bottom:514.680600px;}
.y18{bottom:515.632500px;}
.y50{bottom:516.364200px;}
.ye1{bottom:518.532300px;}
.y29{bottom:519.648427px;}
.yb{bottom:522.415050px;}
.y83{bottom:523.950000px;}
.y129{bottom:524.199300px;}
.y70{bottom:526.859850px;}
.y13f{bottom:528.378000px;}
.yf6{bottom:528.382050px;}
.y9d{bottom:528.393600px;}
.y14e{bottom:528.414000px;}
.y38{bottom:530.470950px;}
.yc6{bottom:531.096600px;}
.yaa{bottom:536.928600px;}
.y28{bottom:538.646527px;}
.y4f{bottom:538.916250px;}
.ye0{bottom:542.160150px;}
.y128{bottom:547.402050px;}
.yf5{bottom:547.577850px;}
.y82{bottom:547.578000px;}
.y9c{bottom:547.589400px;}
.y14d{bottom:547.611000px;}
.y37{bottom:548.466150px;}
.y17{bottom:550.888350px;}
.y10c{bottom:557.930700px;}
.ydf{bottom:559.410150px;}
.y10b{bottom:560.209050px;}
.y4e{bottom:561.468150px;}
.yf4{bottom:566.778000px;}
.y14c{bottom:566.808000px;}
.yd3{bottom:568.652850px;}
.yd8{bottom:569.015100px;}
.y127{bottom:570.604800px;}
.y36{bottom:572.844150px;}
.y10a{bottom:578.960550px;}
.yc5{bottom:580.356600px;}
.yde{bottom:583.038150px;}
.y4d{bottom:584.020200px;}
.y13e{bottom:585.977850px;}
.yc0{bottom:585.978000px;}
.y8a{bottom:585.981000px;}
.y9b{bottom:585.994800px;}
.y16{bottom:586.144200px;}
.y126{bottom:593.807550px;}
.yc4{bottom:596.100600px;}
.y35{bottom:597.226800px;}
.y109{bottom:597.712050px;}
.y69{bottom:602.344050px;}
.ya{bottom:603.418050px;}
.y89{bottom:605.176800px;}
.y9a{bottom:605.190600px;}
.y14b{bottom:605.202000px;}
.y4c{bottom:606.572100px;}
.ydd{bottom:606.666150px;}
.yc3{bottom:611.844600px;}
.y170{bottom:614.368050px;}
.y34{bottom:615.222000px;}
.y108{bottom:616.463550px;}
.y125{bottom:617.010300px;}
.y15{bottom:621.400200px;}
.y99{bottom:624.386400px;}
.y14a{bottom:624.399000px;}
.y6f{bottom:625.170750px;}
.y16f{bottom:627.868050px;}
.y4b{bottom:629.124150px;}
.ydc{bottom:630.294000px;}
.y33{bottom:639.604800px;}
.y124{bottom:640.213050px;}
.y16e{bottom:641.368050px;}
.y68{bottom:642.844050px;}
.y88{bottom:643.582200px;}
.y149{bottom:643.596000px;}
.y9{bottom:643.916550px;}
.y6e{bottom:644.664750px;}
.ybf{bottom:645.066150px;}
.y4a{bottom:651.676050px;}
.ydb{bottom:653.922000px;}
.y16d{bottom:654.868050px;}
.y14{bottom:656.656050px;}
.y32{bottom:657.600000px;}
.y87{bottom:662.778000px;}
.y98{bottom:662.782050px;}
.y148{bottom:662.793000px;}
.y11a{bottom:662.799000px;}
.y123{bottom:663.415800px;}
.y6d{bottom:664.158750px;}
.y27{bottom:664.213606px;}
.y2d{bottom:664.227422px;}
.y16c{bottom:668.368050px;}
.ybe{bottom:668.694150px;}
.y49{bottom:674.228100px;}
.yda{bottom:677.550000px;}
.y16b{bottom:681.868050px;}
.y97{bottom:681.977850px;}
.y31{bottom:681.981000px;}
.y96{bottom:681.986400px;}
.yf3{bottom:681.989400px;}
.y119{bottom:681.994800px;}
.y26{bottom:683.211706px;}
.y2c{bottom:683.225522px;}
.y67{bottom:683.344050px;}
.y6c{bottom:683.652750px;}
.y8{bottom:684.415050px;}
.y122{bottom:686.618550px;}
.y13{bottom:691.912050px;}
.ybd{bottom:692.322000px;}
.y16a{bottom:695.368050px;}
.y48{bottom:696.780000px;}
.yd9{bottom:701.176800px;}
.yd2{bottom:701.178000px;}
.y95{bottom:701.182200px;}
.y81{bottom:701.186400px;}
.y147{bottom:701.187000px;}
.y118{bottom:701.190600px;}
.y6b{bottom:703.146750px;}
.y169{bottom:708.868050px;}
.y121{bottom:709.821300px;}
.ybc{bottom:715.950000px;}
.y94{bottom:720.378000px;}
.y13d{bottom:720.382050px;}
.y80{bottom:720.382200px;}
.y146{bottom:720.384000px;}
.y30{bottom:720.386400px;}
.yf2{bottom:720.394800px;}
.y168{bottom:722.368050px;}
.y6a{bottom:728.897850px;}
.y120{bottom:733.024050px;}
.ybb{bottom:739.577850px;}
.y7f{bottom:739.578000px;}
.y145{bottom:739.581000px;}
.y62{bottom:739.582050px;}
.y2f{bottom:739.582200px;}
.yc2{bottom:739.586400px;}
.yf1{bottom:739.590600px;}
.y61{bottom:758.777850px;}
.y2e{bottom:758.778000px;}
.yc1{bottom:758.782200px;}
.y93{bottom:758.786400px;}
.y60{bottom:777.977850px;}
.y7{bottom:777.978000px;}
.y92{bottom:777.982200px;}
.y1c{bottom:797.178000px;}
.y1{bottom:855.219750px;}
.h29{height:26.136000px;}
.h25{height:29.052000px;}
.h24{height:29.376000px;}
.h23{height:30.780000px;}
.h21{height:39.168000px;}
.h27{height:39.463800px;}
.h28{height:39.770400px;}
.h1e{height:41.085600px;}
.h2{height:41.382528px;}
.h1d{height:41.404800px;}
.h22{height:41.616000px;}
.h1a{height:42.835200px;}
.h7{height:43.584000px;}
.he{height:45.951000px;}
.hd{height:46.308000px;}
.h2b{height:46.491600px;}
.h2a{height:46.852800px;}
.h12{height:46.864800px;}
.h14{height:47.942400px;}
.h18{height:48.654000px;}
.h1c{height:49.032000px;}
.h11{height:50.121600px;}
.h13{height:50.182618px;}
.h17{height:53.395848px;}
.h19{height:59.538468px;}
.hf{height:65.376000px;}
.h1f{height:76.068620px;}
.h20{height:81.269616px;}
.ha{height:83.790000px;}
.h10{height:84.444000px;}
.h15{height:87.168000px;}
.h16{height:88.200000px;}
.h9{height:103.512000px;}
.h8{height:119.856000px;}
.h4{height:151.064122px;}
.h5{height:158.433030px;}
.h3{height:192.109555px;}
.h6{height:201.480660px;}
.hb{height:297.420000px;}
.h26{height:310.752000px;}
.h1b{height:320.302046px;}
.hc{height:461.506500px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w2{width:225.946500px;}
.w1{width:629.250000px;}
.w0{width:629.292000px;}
.x0{left:0.000000px;}
.x6{left:26.103300px;}
.xc{left:61.279148px;}
.x2{left:63.779550px;}
.x32{left:66.968550px;}
.x4{left:68.031450px;}
.xa{left:70.812740px;}
.x7{left:74.598600px;}
.x1d{left:76.419600px;}
.x9{left:78.715950px;}
.xf{left:80.793156px;}
.xb{left:82.709005px;}
.x2d{left:85.041882px;}
.x10{left:90.324900px;}
.x21{left:93.370800px;}
.x30{left:95.858400px;}
.xd{left:97.824584px;}
.x14{left:106.761300px;}
.x22{left:129.638400px;}
.x20{left:150.788400px;}
.x1c{left:154.133850px;}
.x2f{left:159.448800px;}
.x33{left:164.763750px;}
.x31{left:170.078700px;}
.x23{left:189.170400px;}
.x11{left:193.746600px;}
.x12{left:204.546450px;}
.x13{left:231.226050px;}
.x27{left:242.497350px;}
.x17{left:258.866550px;}
.x19{left:279.478080px;}
.x18{left:286.745805px;}
.x24{left:303.965550px;}
.x25{left:376.249050px;}
.x1{left:391.710000px;}
.x5{left:403.345500px;}
.x28{left:404.348190px;}
.x2a{left:420.516120px;}
.x29{left:422.736600px;}
.x35{left:429.742800px;}
.x34{left:433.075350px;}
.x8{left:437.952750px;}
.x16{left:446.880300px;}
.x15{left:454.440300px;}
.x26{left:478.296300px;}
.x2c{left:485.445720px;}
.x3{left:486.804750px;}
.x2b{left:493.852440px;}
.x1e{left:503.040150px;}
.x1f{left:507.771750px;}
.x1b{left:541.063050px;}
.x1a{left:548.179950px;}
.x36{left:550.039500px;}
.xe{left:554.779950px;}
.x2e{left:561.508800px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.248000pt;}
.ls23{letter-spacing:-1.619200pt;}
.ls1c{letter-spacing:-0.768000pt;}
.ls1a{letter-spacing:-0.725333pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.392533pt;}
.ls17{letter-spacing:-0.245333pt;}
.ls16{letter-spacing:-0.240000pt;}
.ls24{letter-spacing:-0.194667pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.093867pt;}
.lsf{letter-spacing:0.098560pt;}
.ls1d{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.453333pt;}
.ls22{letter-spacing:0.469333pt;}
.ls0{letter-spacing:0.474027pt;}
.ls21{letter-spacing:0.479891pt;}
.ls18{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.490667pt;}
.ls8{letter-spacing:0.491264pt;}
.ls11{letter-spacing:0.522720pt;}
.ls5{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.826667pt;}
.lsc{letter-spacing:0.834133pt;}
.ls10{letter-spacing:0.853333pt;}
.ls13{letter-spacing:1.165707pt;}
.ls3{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.380680pt;}
.ls1b{letter-spacing:1.578667pt;}
.ls7{letter-spacing:22.472533pt;}
.lsa{letter-spacing:23.110400pt;}
.lsb{letter-spacing:23.748267pt;}
.ls12{letter-spacing:24.000000pt;}
.ls1f{letter-spacing:24.386133pt;}
.ls1e{letter-spacing:25.073067pt;}
.ls20{letter-spacing:37.879467pt;}
.ws1{word-spacing:-40.828680pt;}
.ws4{word-spacing:-24.640000pt;}
.ws19{word-spacing:-17.920000pt;}
.ws3f{word-spacing:-17.360000pt;}
.wsc{word-spacing:-14.523733pt;}
.ws24{word-spacing:-14.278400pt;}
.wsb{word-spacing:-14.131200pt;}
.ws61{word-spacing:-12.904533pt;}
.ws1b{word-spacing:-12.822773pt;}
.wsa{word-spacing:-10.647467pt;}
.ws8{word-spacing:-10.316544pt;}
.wsd{word-spacing:-10.304000pt;}
.ws0{word-spacing:-9.954560pt;}
.ws57{word-spacing:-9.856000pt;}
.ws1a{word-spacing:-9.600000pt;}
.ws3{word-spacing:-9.520000pt;}
.ws17{word-spacing:-9.480533pt;}
.ws40{word-spacing:-9.360000pt;}
.ws1c{word-spacing:-9.120000pt;}
.ws35{word-spacing:-8.106667pt;}
.ws76{word-spacing:-7.786667pt;}
.ws75{word-spacing:-7.592000pt;}
.ws38{word-spacing:-6.912000pt;}
.ws3e{word-spacing:-6.080000pt;}
.ws69{word-spacing:-5.986133pt;}
.ws68{word-spacing:-3.140267pt;}
.ws41{word-spacing:-3.042133pt;}
.ws2c{word-spacing:-2.845867pt;}
.wsf{word-spacing:-2.747733pt;}
.ws26{word-spacing:-2.649600pt;}
.ws28{word-spacing:-2.158933pt;}
.ws44{word-spacing:-1.864533pt;}
.ws4e{word-spacing:-1.717333pt;}
.ws4b{word-spacing:-1.619200pt;}
.ws3d{word-spacing:-1.578667pt;}
.ws4f{word-spacing:-1.373867pt;}
.ws11{word-spacing:-1.324800pt;}
.ws6a{word-spacing:-1.275733pt;}
.ws22{word-spacing:-1.248000pt;}
.ws2d{word-spacing:-1.226667pt;}
.ws59{word-spacing:-1.030400pt;}
.ws74{word-spacing:-0.785067pt;}
.ws14{word-spacing:-0.637867pt;}
.wse{word-spacing:-0.539733pt;}
.ws9{word-spacing:-0.491264pt;}
.ws50{word-spacing:-0.490667pt;}
.ws58{word-spacing:-0.441600pt;}
.ws1d{word-spacing:-0.426667pt;}
.ws3b{word-spacing:-0.384000pt;}
.ws42{word-spacing:-0.294400pt;}
.ws16{word-spacing:-0.196267pt;}
.ws2f{word-spacing:-0.147200pt;}
.ws1f{word-spacing:-0.098133pt;}
.ws18{word-spacing:-0.093867pt;}
.ws48{word-spacing:-0.049067pt;}
.ws23{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws2a{word-spacing:0.098133pt;}
.ws4a{word-spacing:0.196267pt;}
.ws2b{word-spacing:0.245333pt;}
.ws10{word-spacing:0.392533pt;}
.ws1e{word-spacing:0.480000pt;}
.ws70{word-spacing:0.588800pt;}
.ws47{word-spacing:0.686933pt;}
.ws32{word-spacing:0.736000pt;}
.ws3a{word-spacing:0.785067pt;}
.ws62{word-spacing:0.883200pt;}
.ws64{word-spacing:1.030400pt;}
.ws3c{word-spacing:1.152000pt;}
.ws66{word-spacing:1.226667pt;}
.ws6e{word-spacing:1.472000pt;}
.ws43{word-spacing:1.766400pt;}
.ws36{word-spacing:1.815467pt;}
.ws25{word-spacing:1.962667pt;}
.ws21{word-spacing:2.208000pt;}
.ws30{word-spacing:2.257067pt;}
.ws39{word-spacing:2.306133pt;}
.ws45{word-spacing:2.355200pt;}
.ws5f{word-spacing:2.453333pt;}
.ws65{word-spacing:2.600533pt;}
.ws27{word-spacing:2.698667pt;}
.ws71{word-spacing:2.944000pt;}
.ws53{word-spacing:2.993067pt;}
.ws51{word-spacing:3.140267pt;}
.ws5c{word-spacing:3.385600pt;}
.ws15{word-spacing:3.532800pt;}
.ws6d{word-spacing:3.581867pt;}
.ws6c{word-spacing:4.317867pt;}
.ws31{word-spacing:4.416000pt;}
.ws6f{word-spacing:4.563200pt;}
.ws6b{word-spacing:4.759467pt;}
.ws73{word-spacing:4.857600pt;}
.ws20{word-spacing:4.906667pt;}
.ws46{word-spacing:5.888000pt;}
.ws5b{word-spacing:5.986133pt;}
.ws13{word-spacing:6.182400pt;}
.ws33{word-spacing:6.280533pt;}
.ws29{word-spacing:6.329600pt;}
.ws5a{word-spacing:6.378667pt;}
.ws67{word-spacing:6.427733pt;}
.ws5d{word-spacing:7.163733pt;}
.ws52{word-spacing:7.261867pt;}
.ws49{word-spacing:7.360000pt;}
.ws77{word-spacing:7.850667pt;}
.ws4d{word-spacing:7.899733pt;}
.ws60{word-spacing:8.243200pt;}
.ws4c{word-spacing:8.341333pt;}
.ws54{word-spacing:8.537600pt;}
.ws5e{word-spacing:8.586667pt;}
.ws55{word-spacing:8.733867pt;}
.ws72{word-spacing:9.028267pt;}
.ws34{word-spacing:9.126400pt;}
.ws2e{word-spacing:9.911467pt;}
.ws12{word-spacing:10.058667pt;}
.ws63{word-spacing:13.002667pt;}
.ws56{word-spacing:17.762133pt;}
.ws37{word-spacing:68.821333pt;}
.ws6{word-spacing:1099.840000pt;}
.ws7{word-spacing:1171.392000pt;}
.ws5{word-spacing:1350.464000pt;}
._2{margin-left:-1382.589692pt;}
._15{margin-left:-62.400000pt;}
._f{margin-left:-53.776522pt;}
._1a{margin-left:-31.540508pt;}
._12{margin-left:-20.279212pt;}
._1b{margin-left:-15.799467pt;}
._1c{margin-left:-13.899103pt;}
._14{margin-left:-7.680000pt;}
._7{margin-left:-6.439526pt;}
._16{margin-left:-5.397333pt;}
._8{margin-left:-4.397705pt;}
._11{margin-left:-3.189078pt;}
._10{margin-left:-2.243831pt;}
._6{margin-left:-1.288969pt;}
._0{width:1.137664pt;}
._1{width:2.317990pt;}
._5{width:3.576372pt;}
._4{width:5.128240pt;}
._3{width:6.859909pt;}
._13{width:42.309072pt;}
._19{width:63.790336pt;}
._17{width:71.476228pt;}
._18{width:367.104000pt;}
._a{width:694.444320pt;}
._9{width:754.062918pt;}
._c{width:882.077292pt;}
._b{width:907.136582pt;}
._e{width:941.423422pt;}
._d{width:1105.244563pt;}
.fs16{font-size:32.000000pt;}
.fs18{font-size:38.933333pt;}
.fs13{font-size:40.533333pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs19{font-size:45.866667pt;}
.fsc{font-size:46.933333pt;}
.fs0{font-size:47.402667pt;}
.fs10{font-size:48.000000pt;}
.fsa{font-size:49.066667pt;}
.fsb{font-size:49.126400pt;}
.fsf{font-size:52.272000pt;}
.fs11{font-size:58.285333pt;}
.fs8{font-size:64.000000pt;}
.fs9{font-size:82.666667pt;}
.fsd{font-size:85.333333pt;}
.fs14{font-size:93.651733pt;}
.fs5{font-size:101.333333pt;}
.fse{font-size:106.666667pt;}
.fs15{font-size:108.794667pt;}
.fs4{font-size:117.333333pt;}
.fs1{font-size:188.066133pt;}
.fs2{font-size:197.240000pt;}
.fs17{font-size:416.000000pt;}
.fs12{font-size:428.784533pt;}
.fs6{font-size:849.333333pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:41.152267pt;}
.y6{bottom:49.077067pt;}
.y12{bottom:82.133867pt;}
.y167{bottom:94.056400pt;}
.yeb{bottom:94.202533pt;}
.yea{bottom:94.217600pt;}
.y107{bottom:94.232400pt;}
.y136{bottom:94.235200pt;}
.y11{bottom:99.467200pt;}
.y23{bottom:104.720267pt;}
.y11f{bottom:105.513867pt;}
.y166{bottom:108.617467pt;}
.ye9{bottom:111.280533pt;}
.y106{bottom:111.295333pt;}
.y135{bottom:111.298133pt;}
.y11e{bottom:111.508267pt;}
.y47{bottom:114.014267pt;}
.y165{bottom:123.178533pt;}
.y22{bottom:125.722800pt;}
.y11d{bottom:128.176267pt;}
.ye8{bottom:128.343467pt;}
.y105{bottom:128.358267pt;}
.y134{bottom:128.361067pt;}
.y46{bottom:135.016800pt;}
.y164{bottom:137.739600pt;}
.y11c{bottom:144.844267pt;}
.ye7{bottom:145.406400pt;}
.y104{bottom:145.421200pt;}
.y133{bottom:145.424000pt;}
.y21{bottom:146.725467pt;}
.yb8{bottom:150.474800pt;}
.y78{bottom:155.361467pt;}
.y45{bottom:156.019467pt;}
.y5f{bottom:157.230933pt;}
.y7e{bottom:157.282667pt;}
.y7b{bottom:157.833467pt;}
.y11b{bottom:161.510933pt;}
.y163{bottom:161.764267pt;}
.ye6{bottom:162.469333pt;}
.y103{bottom:162.484133pt;}
.y132{bottom:162.486933pt;}
.y174{bottom:164.915067pt;}
.yb7{bottom:166.470800pt;}
.y20{bottom:167.728133pt;}
.y77{bottom:171.357467pt;}
.y7d{bottom:173.278667pt;}
.y7a{bottom:173.829467pt;}
.y162{bottom:174.427333pt;}
.y44{bottom:177.022133pt;}
.y5e{bottom:178.343733pt;}
.y5{bottom:178.397437pt;}
.y102{bottom:179.547067pt;}
.y131{bottom:179.549867pt;}
.y173{bottom:181.713733pt;}
.yb6{bottom:182.466800pt;}
.y161{bottom:187.090400pt;}
.y76{bottom:187.353467pt;}
.y1f{bottom:188.730667pt;}
.y7c{bottom:189.274667pt;}
.y79{bottom:189.825467pt;}
.ye5{bottom:196.602667pt;}
.y101{bottom:196.610000pt;}
.ye4{bottom:196.617467pt;}
.y5d{bottom:198.389867pt;}
.y172{bottom:198.512400pt;}
.yd1{bottom:199.715200pt;}
.y160{bottom:199.753467pt;}
.yb5{bottom:202.257200pt;}
.y1e{bottom:209.733333pt;}
.y8d{bottom:212.346267pt;}
.y100{bottom:213.672933pt;}
.ye3{bottom:213.680400pt;}
.y130{bottom:213.688000pt;}
.y117{bottom:215.148533pt;}
.y171{bottom:215.311067pt;}
.y15f{bottom:216.202800pt;}
.y5c{bottom:218.436133pt;}
.ya9{bottom:218.928000pt;}
.y8c{bottom:229.014267pt;}
.yff{bottom:230.735867pt;}
.y1d{bottom:230.736000pt;}
.y43{bottom:230.743333pt;}
.y12f{bottom:230.750933pt;}
.y15e{bottom:231.133733pt;}
.y116{bottom:238.040933pt;}
.y5b{bottom:238.482267pt;}
.yd0{bottom:238.645867pt;}
.y3{bottom:239.181622pt;}
.y4{bottom:239.196667pt;}
.ya8{bottom:239.930667pt;}
.y8b{bottom:245.680933pt;}
.yb4{bottom:247.293200pt;}
.y42{bottom:247.806267pt;}
.y12e{bottom:247.813867pt;}
.ycf{bottom:251.979200pt;}
.y15d{bottom:256.469600pt;}
.y5a{bottom:258.528533pt;}
.y115{bottom:259.043600pt;}
.ya7{bottom:260.933333pt;}
.yb3{bottom:263.289200pt;}
.yfe{bottom:263.525467pt;}
.yba{bottom:263.856000pt;}
.y41{bottom:264.869200pt;}
.y12d{bottom:264.876800pt;}
.y15c{bottom:269.132667pt;}
.y91{bottom:275.059600pt;}
.y59{bottom:278.574667pt;}
.y15b{bottom:281.795733pt;}
.ya6{bottom:281.936000pt;}
.y12c{bottom:281.939733pt;}
.y114{bottom:281.949867pt;}
.yb2{bottom:283.065200pt;}
.yce{bottom:284.000533pt;}
.y90{bottom:284.939200pt;}
.yfd{bottom:285.194800pt;}
.y15a{bottom:294.458800pt;}
.y75{bottom:296.003733pt;}
.ycd{bottom:297.333867pt;}
.y58{bottom:298.620933pt;}
.y12b{bottom:299.002667pt;}
.y144{bottom:299.010133pt;}
.y113{bottom:299.012800pt;}
.y40{bottom:299.017600pt;}
.y2{bottom:299.974000pt;}
.y8f{bottom:302.003200pt;}
.yfc{bottom:306.864000pt;}
.y159{bottom:307.125467pt;}
.y143{bottom:316.073067pt;}
.y112{bottom:316.075733pt;}
.y3f{bottom:316.080533pt;}
.ya5{bottom:316.087867pt;}
.y57{bottom:318.667067pt;}
.y8e{bottom:318.669867pt;}
.yf{bottom:320.371600pt;}
.yfb{bottom:328.533333pt;}
.yb1{bottom:328.738267pt;}
.ycc{bottom:329.355200pt;}
.y142{bottom:333.136000pt;}
.y153{bottom:333.139600pt;}
.y3e{bottom:333.143467pt;}
.ya4{bottom:333.150800pt;}
.yf0{bottom:336.286133pt;}
.y2b{bottom:336.600548pt;}
.y25{bottom:338.123467pt;}
.y56{bottom:338.713333pt;}
.yef{bottom:338.724267pt;}
.y66{bottom:340.915600pt;}
.yb0{bottom:342.468933pt;}
.ycb{bottom:342.688533pt;}
.y13c{bottom:349.855067pt;}
.yfa{bottom:350.202533pt;}
.y3d{bottom:350.206400pt;}
.ya3{bottom:350.213733pt;}
.y111{bottom:350.213867pt;}
.y13b{bottom:353.435467pt;}
.y24{bottom:355.010667pt;}
.y2a{bottom:355.022948pt;}
.yee{bottom:355.790933pt;}
.yaf{bottom:356.199600pt;}
.ye{bottom:356.370267pt;}
.y55{bottom:358.759467pt;}
.y141{bottom:359.553733pt;}
.y1b{bottom:364.324267pt;}
.y158{bottom:365.351067pt;}
.y3c{bottom:367.269333pt;}
.ya2{bottom:367.276667pt;}
.y110{bottom:367.276800pt;}
.yd7{bottom:367.823200pt;}
.yd6{bottom:367.903200pt;}
.y13a{bottom:370.103467pt;}
.yed{bottom:371.794933pt;}
.yca{bottom:374.709867pt;}
.yae{bottom:377.499467pt;}
.y65{bottom:378.248933pt;}
.y54{bottom:378.805600pt;}
.yf9{bottom:379.733333pt;}
.y152{bottom:383.553333pt;}
.y3b{bottom:384.336000pt;}
.ya1{bottom:384.339600pt;}
.y10f{bottom:384.339733pt;}
.y138{bottom:386.770133pt;}
.y139{bottom:386.771467pt;}
.yec{bottom:387.790933pt;}
.yc9{bottom:388.043200pt;}
.y157{bottom:389.356400pt;}
.y156{bottom:389.360000pt;}
.yd{bottom:392.368933pt;}
.y74{bottom:393.350000pt;}
.yad{bottom:393.495467pt;}
.yb9{bottom:395.519600pt;}
.y1a{bottom:395.662800pt;}
.y53{bottom:398.851867pt;}
.ya0{bottom:401.402533pt;}
.y10e{bottom:401.402667pt;}
.y151{bottom:401.445333pt;}
.y155{bottom:402.023067pt;}
.y86{bottom:402.058800pt;}
.y137{bottom:403.438133pt;}
.y73{bottom:410.774000pt;}
.yd5{bottom:411.927200pt;}
.yac{bottom:413.271467pt;}
.y64{bottom:415.582267pt;}
.y154{bottom:418.469200pt;}
.y9f{bottom:418.469333pt;}
.y52{bottom:418.898000pt;}
.yc8{bottom:420.064533pt;}
.y85{bottom:423.728133pt;}
.y19{bottom:427.001333pt;}
.y72{bottom:428.102000pt;}
.y3a{bottom:428.186800pt;}
.yc{bottom:428.368933pt;}
.yc7{bottom:433.397867pt;}
.y10d{bottom:435.536000pt;}
.yf8{bottom:435.547067pt;}
.y150{bottom:435.573333pt;}
.y51{bottom:438.944267pt;}
.ye2{bottom:439.914933pt;}
.y84{bottom:444.730667pt;}
.y71{bottom:445.430000pt;}
.y39{bottom:449.856133pt;}
.y12a{bottom:450.621600pt;}
.y140{bottom:452.606400pt;}
.yf7{bottom:452.610000pt;}
.y9e{bottom:452.620267pt;}
.y14f{bottom:452.637333pt;}
.y63{bottom:452.915600pt;}
.yd4{bottom:457.343200pt;}
.yab{bottom:457.493867pt;}
.y18{bottom:458.340000pt;}
.y50{bottom:458.990400pt;}
.ye1{bottom:460.917600pt;}
.y29{bottom:461.909713pt;}
.yb{bottom:464.368933pt;}
.y83{bottom:465.733333pt;}
.y129{bottom:465.954933pt;}
.y70{bottom:468.319867pt;}
.y13f{bottom:469.669333pt;}
.yf6{bottom:469.672933pt;}
.y9d{bottom:469.683200pt;}
.y14e{bottom:469.701333pt;}
.y38{bottom:471.529733pt;}
.yc6{bottom:472.085867pt;}
.yaa{bottom:477.269867pt;}
.y28{bottom:478.796913pt;}
.y4f{bottom:479.036667pt;}
.ye0{bottom:481.920133pt;}
.y128{bottom:486.579600pt;}
.yf5{bottom:486.735867pt;}
.y82{bottom:486.736000pt;}
.y9c{bottom:486.746133pt;}
.y14d{bottom:486.765333pt;}
.y37{bottom:487.525467pt;}
.y17{bottom:489.678533pt;}
.y10c{bottom:495.938400pt;}
.ydf{bottom:497.253467pt;}
.y10b{bottom:497.963600pt;}
.y4e{bottom:499.082800pt;}
.yf4{bottom:503.802667pt;}
.y14c{bottom:503.829333pt;}
.yd3{bottom:505.469200pt;}
.yd8{bottom:505.791200pt;}
.y127{bottom:507.204267pt;}
.y36{bottom:509.194800pt;}
.y10a{bottom:514.631600pt;}
.yc5{bottom:515.872533pt;}
.yde{bottom:518.256133pt;}
.y4d{bottom:519.129067pt;}
.y13e{bottom:520.869200pt;}
.yc0{bottom:520.869333pt;}
.y8a{bottom:520.872000pt;}
.y9b{bottom:520.884267pt;}
.y16{bottom:521.017067pt;}
.y126{bottom:527.828933pt;}
.yc4{bottom:529.867200pt;}
.y35{bottom:530.868267pt;}
.y109{bottom:531.299600pt;}
.y69{bottom:535.416933pt;}
.ya{bottom:536.371600pt;}
.y89{bottom:537.934933pt;}
.y9a{bottom:537.947200pt;}
.y14b{bottom:537.957333pt;}
.y4c{bottom:539.175200pt;}
.ydd{bottom:539.258800pt;}
.yc3{bottom:543.861867pt;}
.y170{bottom:546.104933pt;}
.y34{bottom:546.864000pt;}
.y108{bottom:547.967600pt;}
.y125{bottom:548.453600pt;}
.y15{bottom:552.355733pt;}
.y99{bottom:555.010133pt;}
.y14a{bottom:555.021333pt;}
.y6f{bottom:555.707333pt;}
.y16f{bottom:558.104933pt;}
.y4b{bottom:559.221467pt;}
.ydc{bottom:560.261333pt;}
.y33{bottom:568.537600pt;}
.y124{bottom:569.078267pt;}
.y16e{bottom:570.104933pt;}
.y68{bottom:571.416933pt;}
.y88{bottom:572.073067pt;}
.y149{bottom:572.085333pt;}
.y9{bottom:572.370267pt;}
.y6e{bottom:573.035333pt;}
.ybf{bottom:573.392133pt;}
.y4a{bottom:579.267600pt;}
.ydb{bottom:581.264000pt;}
.y16d{bottom:582.104933pt;}
.y14{bottom:583.694267pt;}
.y32{bottom:584.533333pt;}
.y87{bottom:589.136000pt;}
.y98{bottom:589.139600pt;}
.y148{bottom:589.149333pt;}
.y11a{bottom:589.154667pt;}
.y123{bottom:589.702933pt;}
.y6d{bottom:590.363333pt;}
.y27{bottom:590.412094pt;}
.y2d{bottom:590.424375pt;}
.y16c{bottom:594.104933pt;}
.ybe{bottom:594.394800pt;}
.y49{bottom:599.313867pt;}
.yda{bottom:602.266667pt;}
.y16b{bottom:606.104933pt;}
.y97{bottom:606.202533pt;}
.y31{bottom:606.205333pt;}
.y96{bottom:606.210133pt;}
.yf3{bottom:606.212800pt;}
.y119{bottom:606.217600pt;}
.y26{bottom:607.299294pt;}
.y2c{bottom:607.311575pt;}
.y67{bottom:607.416933pt;}
.y6c{bottom:607.691333pt;}
.y8{bottom:608.368933pt;}
.y122{bottom:610.327600pt;}
.y13{bottom:615.032933pt;}
.ybd{bottom:615.397333pt;}
.y16a{bottom:618.104933pt;}
.y48{bottom:619.360000pt;}
.yd9{bottom:623.268267pt;}
.yd2{bottom:623.269333pt;}
.y95{bottom:623.273067pt;}
.y81{bottom:623.276800pt;}
.y147{bottom:623.277333pt;}
.y118{bottom:623.280533pt;}
.y6b{bottom:625.019333pt;}
.y169{bottom:630.104933pt;}
.y121{bottom:630.952267pt;}
.ybc{bottom:636.400000pt;}
.y94{bottom:640.336000pt;}
.y13d{bottom:640.339600pt;}
.y80{bottom:640.339733pt;}
.y146{bottom:640.341333pt;}
.y30{bottom:640.343467pt;}
.yf2{bottom:640.350933pt;}
.y168{bottom:642.104933pt;}
.y6a{bottom:647.909200pt;}
.y120{bottom:651.576933pt;}
.ybb{bottom:657.402533pt;}
.y7f{bottom:657.402667pt;}
.y145{bottom:657.405333pt;}
.y62{bottom:657.406267pt;}
.y2f{bottom:657.406400pt;}
.yc2{bottom:657.410133pt;}
.yf1{bottom:657.413867pt;}
.y61{bottom:674.469200pt;}
.y2e{bottom:674.469333pt;}
.yc1{bottom:674.473067pt;}
.y93{bottom:674.476800pt;}
.y60{bottom:691.535867pt;}
.y7{bottom:691.536000pt;}
.y92{bottom:691.539733pt;}
.y1c{bottom:708.602667pt;}
.y1{bottom:760.195333pt;}
.h29{height:23.232000pt;}
.h25{height:25.824000pt;}
.h24{height:26.112000pt;}
.h23{height:27.360000pt;}
.h21{height:34.816000pt;}
.h27{height:35.078933pt;}
.h28{height:35.351467pt;}
.h1e{height:36.520533pt;}
.h2{height:36.784469pt;}
.h1d{height:36.804267pt;}
.h22{height:36.992000pt;}
.h1a{height:38.075733pt;}
.h7{height:38.741333pt;}
.he{height:40.845333pt;}
.hd{height:41.162667pt;}
.h2b{height:41.325867pt;}
.h2a{height:41.646933pt;}
.h12{height:41.657600pt;}
.h14{height:42.615467pt;}
.h18{height:43.248000pt;}
.h1c{height:43.584000pt;}
.h11{height:44.552533pt;}
.h13{height:44.606771pt;}
.h17{height:47.462976pt;}
.h19{height:52.923083pt;}
.hf{height:58.112000pt;}
.h1f{height:67.616551pt;}
.h20{height:72.239659pt;}
.ha{height:74.480000pt;}
.h10{height:75.061333pt;}
.h15{height:77.482667pt;}
.h16{height:78.400000pt;}
.h9{height:92.010667pt;}
.h8{height:106.538667pt;}
.h4{height:134.279219pt;}
.h5{height:140.829360pt;}
.h3{height:170.764049pt;}
.h6{height:179.093920pt;}
.hb{height:264.373333pt;}
.h26{height:276.224000pt;}
.h1b{height:284.712930pt;}
.hc{height:410.228000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w2{width:200.841333pt;}
.w1{width:559.333333pt;}
.w0{width:559.370667pt;}
.x0{left:0.000000pt;}
.x6{left:23.202933pt;}
.xc{left:54.470354pt;}
.x2{left:56.692933pt;}
.x32{left:59.527600pt;}
.x4{left:60.472400pt;}
.xa{left:62.944658pt;}
.x7{left:66.309867pt;}
.x1d{left:67.928533pt;}
.x9{left:69.969733pt;}
.xf{left:71.816139pt;}
.xb{left:73.519116pt;}
.x2d{left:75.592784pt;}
.x10{left:80.288800pt;}
.x21{left:82.996267pt;}
.x30{left:85.207467pt;}
.xd{left:86.955186pt;}
.x14{left:94.898933pt;}
.x22{left:115.234133pt;}
.x20{left:134.034133pt;}
.x1c{left:137.007867pt;}
.x2f{left:141.732267pt;}
.x33{left:146.456667pt;}
.x31{left:151.181067pt;}
.x23{left:168.151467pt;}
.x11{left:172.219200pt;}
.x12{left:181.819067pt;}
.x13{left:205.534267pt;}
.x27{left:215.553200pt;}
.x17{left:230.103600pt;}
.x19{left:248.424960pt;}
.x18{left:254.885160pt;}
.x24{left:270.191600pt;}
.x25{left:334.443600pt;}
.x1{left:348.186667pt;}
.x5{left:358.529333pt;}
.x28{left:359.420613pt;}
.x2a{left:373.792107pt;}
.x29{left:375.765867pt;}
.x35{left:381.993600pt;}
.x34{left:384.955867pt;}
.x8{left:389.291333pt;}
.x16{left:397.226933pt;}
.x15{left:403.946933pt;}
.x26{left:425.152267pt;}
.x2c{left:431.507307pt;}
.x3{left:432.715333pt;}
.x2b{left:438.979947pt;}
.x1e{left:447.146800pt;}
.x1f{left:451.352667pt;}
.x1b{left:480.944933pt;}
.x1a{left:487.271067pt;}
.x36{left:488.924000pt;}
.xe{left:493.137733pt;}
.x2e{left:499.118933pt;}
}




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