
    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_a597a22827d30051a213644c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_80d89c0784f458ec7024aa4e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_598f8e3fb34fb445c7fbe2fd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5a19a3f20a96b9e4af7403df.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5431c8271a0eac0993f08bdc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.988281;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_9d7beb155138129586bddce7.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6766fd7a1b547b742436ae20.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0aefeaf8d30c9eac0bcb614d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-5.771520px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:23.644800px;}
.ls3b{letter-spacing:-1.523520px;}
.ls64{letter-spacing:-1.324800px;}
.ls63{letter-spacing:-1.126080px;}
.ls46{letter-spacing:-1.059840px;}
.ls38{letter-spacing:-0.993600px;}
.ls15{letter-spacing:-0.861120px;}
.ls3a{letter-spacing:-0.728640px;}
.ls62{letter-spacing:-0.529920px;}
.ls3f{letter-spacing:-0.463680px;}
.ls16{letter-spacing:-0.397440px;}
.ls17{letter-spacing:-0.331200px;}
.lsd{letter-spacing:-0.324000px;}
.ls13{letter-spacing:-0.298800px;}
.ls39{letter-spacing:-0.264960px;}
.ls12{letter-spacing:-0.239040px;}
.lsf{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.192960px;}
.ls18{letter-spacing:-0.167040px;}
.ls14{letter-spacing:-0.132480px;}
.ls11{letter-spacing:-0.119520px;}
.ls19{letter-spacing:-0.083520px;}
.lsc{letter-spacing:0.000000px;}
.ls79{letter-spacing:0.013248px;}
.ls7b{letter-spacing:0.019872px;}
.ls77{letter-spacing:0.026496px;}
.ls52{letter-spacing:0.046368px;}
.ls72{letter-spacing:0.052992px;}
.ls33{letter-spacing:0.083520px;}
.ls5b{letter-spacing:0.086112px;}
.ls29{letter-spacing:0.123840px;}
.ls0{letter-spacing:0.144000px;}
.ls7a{letter-spacing:0.145728px;}
.ls7d{letter-spacing:0.211968px;}
.ls44{letter-spacing:0.231840px;}
.ls5a{letter-spacing:0.251712px;}
.ls5{letter-spacing:0.264960px;}
.ls5c{letter-spacing:0.271584px;}
.lsa{letter-spacing:0.282240px;}
.lse{letter-spacing:0.288000px;}
.ls42{letter-spacing:0.291456px;}
.ls26{letter-spacing:0.296640px;}
.ls1{letter-spacing:0.298800px;}
.ls48{letter-spacing:0.304704px;}
.ls56{letter-spacing:0.305280px;}
.ls3e{letter-spacing:0.311040px;}
.lsb{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.331200px;}
.ls6{letter-spacing:0.331440px;}
.ls25{letter-spacing:0.337824px;}
.ls80{letter-spacing:0.351072px;}
.ls78{letter-spacing:0.357696px;}
.ls4d{letter-spacing:0.359136px;}
.ls7e{letter-spacing:0.364320px;}
.ls1f{letter-spacing:0.370944px;}
.ls1c{letter-spacing:0.374400px;}
.ls69{letter-spacing:0.384192px;}
.ls3{letter-spacing:0.397680px;}
.ls54{letter-spacing:0.417312px;}
.ls7f{letter-spacing:0.423936px;}
.ls61{letter-spacing:0.457056px;}
.ls68{letter-spacing:0.470304px;}
.ls1e{letter-spacing:0.490176px;}
.ls7c{letter-spacing:0.496800px;}
.ls70{letter-spacing:0.503424px;}
.ls4f{letter-spacing:0.505296px;}
.ls24{letter-spacing:0.541440px;}
.ls71{letter-spacing:0.563040px;}
.ls55{letter-spacing:0.569664px;}
.ls34{letter-spacing:0.589536px;}
.ls60{letter-spacing:0.602784px;}
.ls41{letter-spacing:0.609408px;}
.ls59{letter-spacing:0.675648px;}
.ls50{letter-spacing:0.748512px;}
.ls28{letter-spacing:0.755136px;}
.ls74{letter-spacing:0.967104px;}
.ls9{letter-spacing:0.993600px;}
.ls51{letter-spacing:1.033344px;}
.ls6f{letter-spacing:1.179072px;}
.ls2b{letter-spacing:1.722240px;}
.ls6a{letter-spacing:1.854720px;}
.ls6e{letter-spacing:2.132928px;}
.ls21{letter-spacing:2.450880px;}
.ls20{letter-spacing:2.709216px;}
.ls3c{letter-spacing:3.179520px;}
.ls53{letter-spacing:3.232512px;}
.ls6d{letter-spacing:3.338496px;}
.ls4a{letter-spacing:3.378240px;}
.ls67{letter-spacing:3.444480px;}
.ls49{letter-spacing:3.523968px;}
.ls6b{letter-spacing:3.908160px;}
.ls65{letter-spacing:3.928032px;}
.ls5f{letter-spacing:3.947904px;}
.ls73{letter-spacing:4.053888px;}
.ls6c{letter-spacing:4.060512px;}
.ls5e{letter-spacing:4.146624px;}
.ls8{letter-spacing:4.636800px;}
.ls43{letter-spacing:4.703040px;}
.ls66{letter-spacing:4.729536px;}
.ls40{letter-spacing:5.365440px;}
.ls4{letter-spacing:6.094080px;}
.ls5d{letter-spacing:6.186816px;}
.ls2a{letter-spacing:6.756480px;}
.ls35{letter-spacing:7.485120px;}
.ls36{letter-spacing:7.677216px;}
.ls57{letter-spacing:7.830720px;}
.ls4e{letter-spacing:8.213760px;}
.ls2d{letter-spacing:8.942400px;}
.ls1d{letter-spacing:9.671040px;}
.ls2e{letter-spacing:10.349280px;}
.ls58{letter-spacing:11.128320px;}
.ls32{letter-spacing:11.856960px;}
.ls31{letter-spacing:11.929824px;}
.ls27{letter-spacing:12.519360px;}
.ls30{letter-spacing:12.588480px;}
.ls2f{letter-spacing:12.731328px;}
.ls47{letter-spacing:13.248000px;}
.ls2c{letter-spacing:14.705280px;}
.ls7{letter-spacing:16.162560px;}
.ls1b{letter-spacing:18.282240px;}
.ls3d{letter-spacing:18.345600px;}
.ls1a{letter-spacing:18.348480px;}
.ls4c{letter-spacing:19.010880px;}
.ls22{letter-spacing:19.739520px;}
.ls4b{letter-spacing:19.805760px;}
.ls23{letter-spacing:20.468160px;}
.ls45{letter-spacing:20.567520px;}
.ls76{letter-spacing:22.654080px;}
.ls37{letter-spacing:23.316480px;}
.ls75{letter-spacing:59.351040px;}
.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;}
}
.ws2e{word-spacing:-66.240000px;}
.wsb{word-spacing:-32.886000px;}
.ws1{word-spacing:-19.800000px;}
.ws51{word-spacing:-18.745920px;}
.ws62{word-spacing:-18.679680px;}
.ws6{word-spacing:-18.414720px;}
.ws4{word-spacing:-18.282240px;}
.ws2d{word-spacing:-18.149760px;}
.ws7{word-spacing:-18.083520px;}
.ws52{word-spacing:-18.017280px;}
.ws50{word-spacing:-17.951040px;}
.ws57{word-spacing:-17.686080px;}
.ws5{word-spacing:-17.553600px;}
.ws2c{word-spacing:-17.421120px;}
.ws58{word-spacing:-17.354880px;}
.ws3{word-spacing:-16.493760px;}
.ws0{word-spacing:-13.410720px;}
.wsa{word-spacing:-11.609280px;}
.ws9{word-spacing:-11.525760px;}
.ws8{word-spacing:-11.442240px;}
.ws60{word-spacing:-3.841920px;}
.ws3a{word-spacing:-3.179520px;}
.ws34{word-spacing:-2.450880px;}
.ws35{word-spacing:-2.252160px;}
.ws1b{word-spacing:-1.722240px;}
.ws3b{word-spacing:-1.523520px;}
.ws4c{word-spacing:-1.457280px;}
.ws3c{word-spacing:-1.126080px;}
.ws1e{word-spacing:-0.993600px;}
.ws11{word-spacing:-0.864000px;}
.ws64{word-spacing:-0.861120px;}
.ws24{word-spacing:-0.794880px;}
.ws7f{word-spacing:-0.728640px;}
.ws7e{word-spacing:-0.662400px;}
.ws10{word-spacing:-0.576000px;}
.ws5c{word-spacing:-0.397440px;}
.ws39{word-spacing:-0.331200px;}
.ws17{word-spacing:-0.264960px;}
.wsf{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.108000px;}
.ws63{word-spacing:-0.066240px;}
.wsc{word-spacing:0.000000px;}
.ws13{word-spacing:0.059760px;}
.ws7b{word-spacing:0.066240px;}
.ws18{word-spacing:0.132480px;}
.ws12{word-spacing:0.192960px;}
.ws14{word-spacing:0.239040px;}
.ws74{word-spacing:0.264960px;}
.ws15{word-spacing:0.298800px;}
.ws43{word-spacing:0.331200px;}
.ws1d{word-spacing:0.397440px;}
.ws16{word-spacing:0.463680px;}
.wse{word-spacing:0.540000px;}
.ws7c{word-spacing:0.596160px;}
.ws54{word-spacing:0.662400px;}
.ws44{word-spacing:0.728640px;}
.ws79{word-spacing:0.794880px;}
.ws1a{word-spacing:0.861120px;}
.ws7d{word-spacing:0.993600px;}
.ws2a{word-spacing:1.059840px;}
.ws6b{word-spacing:1.126080px;}
.ws2b{word-spacing:1.192320px;}
.ws72{word-spacing:1.324800px;}
.ws4d{word-spacing:1.523520px;}
.ws25{word-spacing:1.920960px;}
.ws66{word-spacing:2.119680px;}
.ws32{word-spacing:2.583360px;}
.ws78{word-spacing:2.649600px;}
.ws4b{word-spacing:2.782080px;}
.ws20{word-spacing:3.312000px;}
.ws76{word-spacing:3.510720px;}
.ws42{word-spacing:3.576960px;}
.ws21{word-spacing:4.040640px;}
.ws6a{word-spacing:4.173120px;}
.ws61{word-spacing:4.239360px;}
.ws1c{word-spacing:4.769280px;}
.ws68{word-spacing:5.034240px;}
.ws70{word-spacing:5.365440px;}
.ws22{word-spacing:5.497920px;}
.ws59{word-spacing:5.696640px;}
.ws6f{word-spacing:6.094080px;}
.ws23{word-spacing:6.226560px;}
.ws5d{word-spacing:6.359040px;}
.ws5a{word-spacing:6.425280px;}
.ws3f{word-spacing:6.955200px;}
.ws69{word-spacing:7.352640px;}
.ws38{word-spacing:7.683840px;}
.ws47{word-spacing:8.213760px;}
.ws30{word-spacing:8.346240px;}
.ws46{word-spacing:8.544960px;}
.ws45{word-spacing:9.074880px;}
.ws19{word-spacing:9.803520px;}
.ws67{word-spacing:10.399680px;}
.ws3d{word-spacing:10.532160px;}
.ws4a{word-spacing:10.797120px;}
.ws65{word-spacing:11.128320px;}
.ws49{word-spacing:11.260800px;}
.ws73{word-spacing:11.459520px;}
.ws31{word-spacing:11.989440px;}
.ws48{word-spacing:12.254400px;}
.ws3e{word-spacing:12.718080px;}
.ws6d{word-spacing:12.916800px;}
.ws5f{word-spacing:13.380480px;}
.ws71{word-spacing:13.579200px;}
.ws33{word-spacing:14.109120px;}
.ws77{word-spacing:14.705280px;}
.ws1f{word-spacing:14.837760px;}
.ws41{word-spacing:15.566400px;}
.ws27{word-spacing:16.162560px;}
.ws26{word-spacing:16.295040px;}
.ws6c{word-spacing:16.493760px;}
.ws53{word-spacing:17.752320px;}
.ws5e{word-spacing:17.951040px;}
.ws2f{word-spacing:18.480960px;}
.ws29{word-spacing:19.143360px;}
.ws28{word-spacing:19.872000px;}
.ws75{word-spacing:20.070720px;}
.ws36{word-spacing:20.600640px;}
.ws37{word-spacing:20.799360px;}
.ws4e{word-spacing:22.057920px;}
.ws4f{word-spacing:22.786560px;}
.ws5b{word-spacing:23.515200px;}
.ws7a{word-spacing:24.243840px;}
.ws6e{word-spacing:24.906240px;}
.ws55{word-spacing:26.363520px;}
.ws56{word-spacing:27.092160px;}
.ws40{word-spacing:35.703360px;}
.ws2{word-spacing:38.664720px;}
._12{margin-left:-12.939840px;}
._11{margin-left:-5.137920px;}
._9{margin-left:-3.312000px;}
._8{margin-left:-2.082240px;}
._0{margin-left:-1.080000px;}
._1{width:1.188000px;}
._10{width:2.424960px;}
._4{width:3.585600px;}
._3{width:4.789440px;}
._5{width:6.557760px;}
._a{width:7.948800px;}
._2{width:9.583200px;}
._7{width:11.554560px;}
._c{width:13.032000px;}
._b{width:14.837760px;}
._6{width:15.861600px;}
._13{width:19.512000px;}
._f{width:20.638080px;}
._d{width:22.985280px;}
._e{width:26.959680px;}
._14{width:845.553600px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(1,0,0);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:57.960000px;}
.y1{bottom:78.120000px;}
.y62{bottom:114.125040px;}
.y124{bottom:114.388560px;}
.yc0{bottom:115.932960px;}
.y165{bottom:115.958880px;}
.y29{bottom:116.642880px;}
.yda{bottom:116.647920px;}
.y72{bottom:121.512960px;}
.y61{bottom:133.027920px;}
.y123{bottom:133.283520px;}
.y91{bottom:134.142480px;}
.ybf{bottom:134.827920px;}
.y105{bottom:134.848800px;}
.y164{bottom:134.853840px;}
.yd9{bottom:135.542880px;}
.y28{bottom:135.740880px;}
.y71{bottom:140.407920px;}
.y60{bottom:152.105040px;}
.y122{bottom:152.360640px;}
.y90{bottom:153.037440px;}
.ybe{bottom:153.722880px;}
.y104{bottom:153.743760px;}
.y163{bottom:153.748800px;}
.y27{bottom:154.635840px;}
.yd8{bottom:154.645920px;}
.y70{bottom:159.485040px;}
.y5f{bottom:171.015840px;}
.y121{bottom:171.255600px;}
.y8f{bottom:172.114560px;}
.ybd{bottom:172.807920px;}
.y103{bottom:172.820880px;}
.y162{bottom:172.825920px;}
.yd7{bottom:173.540880px;}
.y26{bottom:173.712960px;}
.y6f{bottom:178.392960px;}
.y5e{bottom:190.092960px;}
.y120{bottom:190.150560px;}
.y8e{bottom:191.009520px;}
.ybc{bottom:191.702880px;}
.y102{bottom:191.715840px;}
.y161{bottom:191.720880px;}
.y25{bottom:192.607920px;}
.yd6{bottom:192.618000px;}
.y6e{bottom:197.470080px;}
.y5d{bottom:208.987920px;}
.y11f{bottom:209.227680px;}
.y8d{bottom:209.904480px;}
.y101{bottom:210.792960px;}
.y160{bottom:210.798000px;}
.ybb{bottom:210.834720px;}
.y24{bottom:211.502880px;}
.yd5{bottom:211.512960px;}
.y6d{bottom:216.365040px;}
.y8c{bottom:225.388080px;}
.y5c{bottom:227.882880px;}
.y11e{bottom:228.122640px;}
.y100{bottom:229.687920px;}
.y15f{bottom:229.692960px;}
.yba{bottom:229.729680px;}
.yd4{bottom:230.407920px;}
.y23{bottom:230.608800px;}
.y6c{bottom:235.262880px;}
.y5b{bottom:246.967920px;}
.y11d{bottom:247.199760px;}
.yff{bottom:248.582880px;}
.y15e{bottom:248.587920px;}
.yb9{bottom:248.624640px;}
.yd3{bottom:249.485040px;}
.y22{bottom:249.503760px;}
.y6b{bottom:254.340000px;}
.y5a{bottom:265.862880px;}
.y11c{bottom:266.094720px;}
.y15d{bottom:267.665040px;}
.yb8{bottom:267.701760px;}
.yfe{bottom:267.706800px;}
.yd2{bottom:268.423200px;}
.y21{bottom:268.580880px;}
.y6a{bottom:279.540000px;}
.y59{bottom:284.945040px;}
.y11b{bottom:284.989680px;}
.y15c{bottom:286.560000px;}
.yb7{bottom:286.596720px;}
.yfd{bottom:286.601760px;}
.y20{bottom:287.475900px;}
.yd1{bottom:287.500320px;}
.y69{bottom:293.942880px;}
.y58{bottom:303.847920px;}
.y11a{bottom:304.066800px;}
.y13e{bottom:305.554320px;}
.yb6{bottom:305.673840px;}
.yfc{bottom:305.678880px;}
.y15b{bottom:305.807040px;}
.yd0{bottom:306.395280px;}
.y68{bottom:313.030080px;}
.y57{bottom:322.925040px;}
.y119{bottom:322.961760px;}
.yb5{bottom:324.568800px;}
.yfb{bottom:324.573840px;}
.y13d{bottom:324.631440px;}
.y15a{bottom:324.702000px;}
.y1f{bottom:325.447920px;}
.ycf{bottom:325.472400px;}
.y67{bottom:331.925040px;}
.y56{bottom:341.827920px;}
.y118{bottom:342.038880px;}
.yb4{bottom:343.645920px;}
.yfa{bottom:343.650960px;}
.y13c{bottom:343.708560px;}
.y159{bottom:343.779120px;}
.y1e{bottom:344.342880px;}
.yce{bottom:344.367360px;}
.y66{bottom:350.833680px;}
.y55{bottom:360.722880px;}
.y117{bottom:360.933840px;}
.yb3{bottom:362.540880px;}
.yf9{bottom:362.545920px;}
.y13b{bottom:362.603520px;}
.y158{bottom:362.674080px;}
.ycd{bottom:363.262320px;}
.y1d{bottom:363.474720px;}
.y65{bottom:369.910800px;}
.y54{bottom:379.800000px;}
.y116{bottom:379.828800px;}
.y167{bottom:381.240720px;}
.yb2{bottom:381.435840px;}
.yf8{bottom:381.440880px;}
.y13a{bottom:381.498480px;}
.y157{bottom:381.569040px;}
.ycc{bottom:382.339440px;}
.y1c{bottom:382.369680px;}
.y64{bottom:385.394400px;}
.y115{bottom:398.905920px;}
.y53{bottom:399.240000px;}
.y166{bottom:400.500000px;}
.yb1{bottom:400.512960px;}
.yf7{bottom:400.518000px;}
.y139{bottom:400.575600px;}
.y156{bottom:400.646160px;}
.ycb{bottom:401.234400px;}
.y1b{bottom:401.446800px;}
.yca{bottom:416.718000px;}
.y114{bottom:417.800880px;}
.yb0{bottom:419.407920px;}
.yf6{bottom:419.412960px;}
.y52{bottom:419.436720px;}
.y138{bottom:419.470560px;}
.y155{bottom:419.541120px;}
.y1a{bottom:420.341760px;}
.y113{bottom:436.878000px;}
.yaf{bottom:438.485040px;}
.yf5{bottom:438.490080px;}
.y51{bottom:438.513840px;}
.y137{bottom:438.547680px;}
.y154{bottom:438.618240px;}
.y19{bottom:439.236720px;}
.y112{bottom:455.772960px;}
.yae{bottom:457.385040px;}
.y50{bottom:457.408800px;}
.y136{bottom:457.442640px;}
.y153{bottom:457.513200px;}
.y18{bottom:458.313840px;}
.y111{bottom:474.667920px;}
.yad{bottom:476.282880px;}
.yf4{bottom:476.287920px;}
.y4f{bottom:476.303760px;}
.y135{bottom:476.337600px;}
.y152{bottom:476.408160px;}
.y17{bottom:477.208800px;}
.y110{bottom:493.745040px;}
.yac{bottom:495.365040px;}
.y4e{bottom:495.380880px;}
.y134{bottom:495.414720px;}
.y151{bottom:495.485280px;}
.y16{bottom:496.285920px;}
.y10f{bottom:512.670240px;}
.yab{bottom:514.272960px;}
.y4d{bottom:514.275840px;}
.yf3{bottom:514.288800px;}
.y133{bottom:514.309680px;}
.y150{bottom:514.380240px;}
.y15{bottom:515.180880px;}
.y10e{bottom:531.747360px;}
.yaa{bottom:533.350080px;}
.y4c{bottom:533.352960px;}
.yf2{bottom:533.365920px;}
.y8b{bottom:533.370960px;}
.y132{bottom:533.386800px;}
.y14f{bottom:533.457360px;}
.y14{bottom:534.075840px;}
.y10d{bottom:547.230960px;}
.ya9{bottom:552.245040px;}
.y4b{bottom:552.247920px;}
.yf1{bottom:552.260880px;}
.y8a{bottom:552.265920px;}
.y131{bottom:552.281760px;}
.y14e{bottom:552.352320px;}
.y13{bottom:553.152960px;}
.y4a{bottom:571.142880px;}
.ya8{bottom:571.150800px;}
.yf0{bottom:571.155840px;}
.y89{bottom:571.160880px;}
.y130{bottom:571.176720px;}
.y14d{bottom:571.247280px;}
.y12{bottom:572.047950px;}
.ya7{bottom:590.227920px;}
.yef{bottom:590.232960px;}
.y88{bottom:590.238000px;}
.y49{bottom:590.245920px;}
.y12f{bottom:590.253840px;}
.y14c{bottom:590.324400px;}
.ya6{bottom:609.122880px;}
.yee{bottom:609.127920px;}
.y87{bottom:609.132960px;}
.y48{bottom:609.140880px;}
.y12e{bottom:609.148800px;}
.y14b{bottom:609.219360px;}
.y11{bottom:610.020000px;}
.yed{bottom:628.205040px;}
.y86{bottom:628.210080px;}
.y47{bottom:628.218000px;}
.y12d{bottom:628.225920px;}
.ya5{bottom:628.254720px;}
.y14a{bottom:628.296480px;}
.y85{bottom:647.105040px;}
.y46{bottom:647.112960px;}
.y12c{bottom:647.120880px;}
.yec{bottom:647.141760px;}
.ya4{bottom:647.149680px;}
.y149{bottom:647.191440px;}
.y10{bottom:654.660000px;}
.y45{bottom:666.007920px;}
.y12b{bottom:666.015840px;}
.yeb{bottom:666.036720px;}
.ya3{bottom:666.044640px;}
.y84{bottom:666.070560px;}
.y148{bottom:666.086400px;}
.y44{bottom:685.085040px;}
.y12a{bottom:685.092960px;}
.yea{bottom:685.113840px;}
.ya2{bottom:685.121760px;}
.y83{bottom:685.147680px;}
.y147{bottom:685.163520px;}
.yf{bottom:688.130460px;}
.y43{bottom:703.987920px;}
.ye9{bottom:704.008800px;}
.ya1{bottom:704.016720px;}
.y82{bottom:704.042640px;}
.y146{bottom:704.058480px;}
.ye{bottom:714.051360px;}
.y42{bottom:723.065040px;}
.ye8{bottom:723.085920px;}
.ya0{bottom:723.093840px;}
.y81{bottom:723.119760px;}
.y145{bottom:723.135600px;}
.yd{bottom:739.972260px;}
.y129{bottom:741.960000px;}
.y41{bottom:741.967920px;}
.yc9{bottom:741.972960px;}
.ye7{bottom:741.980880px;}
.y9f{bottom:741.988800px;}
.y80{bottom:742.014720px;}
.y144{bottom:742.030560px;}
.y40{bottom:760.862880px;}
.yc8{bottom:760.867920px;}
.ye6{bottom:760.875840px;}
.y9e{bottom:760.883760px;}
.y7f{bottom:760.909680px;}
.y143{bottom:760.925520px;}
.yc{bottom:765.893160px;}
.y16c{bottom:774.902160px;}
.y3f{bottom:779.945040px;}
.ye5{bottom:779.952960px;}
.y9d{bottom:779.960880px;}
.y7e{bottom:779.986800px;}
.y142{bottom:780.002640px;}
.yb{bottom:791.634780px;}
.y16b{bottom:793.797120px;}
.y128{bottom:798.840000px;}
.y3e{bottom:798.842880px;}
.ye4{bottom:798.847920px;}
.y9c{bottom:798.855840px;}
.y10c{bottom:798.876720px;}
.y7d{bottom:798.881760px;}
.y141{bottom:798.897600px;}
.y16a{bottom:812.874240px;}
.ya{bottom:817.555680px;}
.ye3{bottom:817.925040px;}
.yc7{bottom:817.927920px;}
.y9b{bottom:817.932960px;}
.y3d{bottom:817.945920px;}
.y10b{bottom:817.953840px;}
.y7c{bottom:817.958880px;}
.y140{bottom:817.974720px;}
.y169{bottom:831.769200px;}
.yc6{bottom:836.822880px;}
.y9a{bottom:836.827920px;}
.y3c{bottom:836.840880px;}
.y10a{bottom:836.848800px;}
.y7b{bottom:836.853840px;}
.ye2{bottom:836.861760px;}
.y13f{bottom:836.869680px;}
.y9{bottom:843.476580px;}
.y168{bottom:847.252800px;}
.y99{bottom:855.905040px;}
.yc5{bottom:855.912960px;}
.y3b{bottom:855.918000px;}
.y109{bottom:855.925920px;}
.y7a{bottom:855.930960px;}
.ye1{bottom:855.938880px;}
.y127{bottom:855.946800px;}
.y8{bottom:869.397480px;}
.yc4{bottom:874.807920px;}
.y3a{bottom:874.812960px;}
.y98{bottom:874.815840px;}
.y108{bottom:874.820880px;}
.y79{bottom:874.825920px;}
.ye0{bottom:874.833840px;}
.y126{bottom:874.841760px;}
.yc3{bottom:893.702880px;}
.y39{bottom:893.707920px;}
.y97{bottom:893.710800px;}
.y107{bottom:893.715840px;}
.y78{bottom:893.720880px;}
.ydf{bottom:893.728800px;}
.y125{bottom:893.736720px;}
.y7{bottom:895.139100px;}
.y38{bottom:912.785040px;}
.y96{bottom:912.787920px;}
.y106{bottom:912.792960px;}
.y77{bottom:912.798000px;}
.yde{bottom:912.805920px;}
.yc2{bottom:912.813840px;}
.y6{bottom:921.060000px;}
.y95{bottom:931.682880px;}
.y37{bottom:931.687920px;}
.y76{bottom:931.692960px;}
.ydd{bottom:931.700880px;}
.yc1{bottom:931.708800px;}
.y36{bottom:950.765040px;}
.y75{bottom:950.770080px;}
.ydc{bottom:950.778000px;}
.y94{bottom:950.785920px;}
.y5{bottom:959.580000px;}
.y74{bottom:969.665040px;}
.y35{bottom:969.672960px;}
.y93{bottom:969.680880px;}
.y4{bottom:980.280000px;}
.y73{bottom:988.562880px;}
.y34{bottom:988.567920px;}
.y92{bottom:988.575840px;}
.y33{bottom:1007.645040px;}
.y63{bottom:1007.652960px;}
.y3{bottom:1023.831000px;}
.ydb{bottom:1026.542880px;}
.y32{bottom:1026.547920px;}
.y31{bottom:1045.625040px;}
.y2{bottom:1054.800000px;}
.y30{bottom:1064.520000px;}
.y2e{bottom:1098.612000px;}
.y2d{bottom:1114.812000px;}
.y2c{bottom:1131.012000px;}
.y2b{bottom:1147.212000px;}
.y2a{bottom:1163.412000px;}
.ha{height:42.292969px;}
.h15{height:43.246406px;}
.hb{height:47.988281px;}
.h6{height:48.224531px;}
.h16{height:48.256875px;}
.h4{height:53.573906px;}
.h3{height:56.000039px;}
.h5{height:59.383005px;}
.h1{height:59.383125px;}
.h17{height:60.914948px;}
.h18{height:60.978307px;}
.h1d{height:61.009988px;}
.h1b{height:61.024388px;}
.h1c{height:61.030147px;}
.h1a{height:61.061827px;}
.h1e{height:61.076228px;}
.h7{height:61.081987px;}
.hf{height:61.093507px;}
.h8{height:61.113668px;}
.h12{height:61.133828px;}
.h13{height:61.142468px;}
.he{height:61.145348px;}
.h19{height:61.153987px;}
.h14{height:61.156867px;}
.hd{height:61.165508px;}
.h10{height:61.177027px;}
.h9{height:61.185667px;}
.hc{height:61.197188px;}
.h11{height:66.974726px;}
.h2{height:78.626953px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:81.000000px;}
.x4{left:86.940000px;}
.x12{left:90.444000px;}
.x2{left:108.000000px;}
.x11{left:112.860000px;}
.xa{left:117.039240px;}
.x17{left:118.856160px;}
.x5{left:125.640000px;}
.x8{left:128.557980px;}
.x7{left:130.694400px;}
.x10{left:135.018720px;}
.xb{left:140.629500px;}
.x6{left:194.040000px;}
.x3{left:205.389000px;}
.xd{left:225.443880px;}
.xc{left:251.334900px;}
.x18{left:314.992800px;}
.xe{left:357.660000px;}
.x16{left:449.820000px;}
.x1{left:454.320000px;}
.x9{left:466.246800px;}
.x13{left:626.578560px;}
.x15{left:812.133360px;}
.x14{left:824.580000px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.130240pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:21.017600pt;}
.ls3b{letter-spacing:-1.354240pt;}
.ls64{letter-spacing:-1.177600pt;}
.ls63{letter-spacing:-1.000960pt;}
.ls46{letter-spacing:-0.942080pt;}
.ls38{letter-spacing:-0.883200pt;}
.ls15{letter-spacing:-0.765440pt;}
.ls3a{letter-spacing:-0.647680pt;}
.ls62{letter-spacing:-0.471040pt;}
.ls3f{letter-spacing:-0.412160pt;}
.ls16{letter-spacing:-0.353280pt;}
.ls17{letter-spacing:-0.294400pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls13{letter-spacing:-0.265600pt;}
.ls39{letter-spacing:-0.235520pt;}
.ls12{letter-spacing:-0.212480pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.171520pt;}
.ls18{letter-spacing:-0.148480pt;}
.ls14{letter-spacing:-0.117760pt;}
.ls11{letter-spacing:-0.106240pt;}
.ls19{letter-spacing:-0.074240pt;}
.lsc{letter-spacing:0.000000pt;}
.ls79{letter-spacing:0.011776pt;}
.ls7b{letter-spacing:0.017664pt;}
.ls77{letter-spacing:0.023552pt;}
.ls52{letter-spacing:0.041216pt;}
.ls72{letter-spacing:0.047104pt;}
.ls33{letter-spacing:0.074240pt;}
.ls5b{letter-spacing:0.076544pt;}
.ls29{letter-spacing:0.110080pt;}
.ls0{letter-spacing:0.128000pt;}
.ls7a{letter-spacing:0.129536pt;}
.ls7d{letter-spacing:0.188416pt;}
.ls44{letter-spacing:0.206080pt;}
.ls5a{letter-spacing:0.223744pt;}
.ls5{letter-spacing:0.235520pt;}
.ls5c{letter-spacing:0.241408pt;}
.lsa{letter-spacing:0.250880pt;}
.lse{letter-spacing:0.256000pt;}
.ls42{letter-spacing:0.259072pt;}
.ls26{letter-spacing:0.263680pt;}
.ls1{letter-spacing:0.265600pt;}
.ls48{letter-spacing:0.270848pt;}
.ls56{letter-spacing:0.271360pt;}
.ls3e{letter-spacing:0.276480pt;}
.lsb{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.294400pt;}
.ls6{letter-spacing:0.294613pt;}
.ls25{letter-spacing:0.300288pt;}
.ls80{letter-spacing:0.312064pt;}
.ls78{letter-spacing:0.317952pt;}
.ls4d{letter-spacing:0.319232pt;}
.ls7e{letter-spacing:0.323840pt;}
.ls1f{letter-spacing:0.329728pt;}
.ls1c{letter-spacing:0.332800pt;}
.ls69{letter-spacing:0.341504pt;}
.ls3{letter-spacing:0.353493pt;}
.ls54{letter-spacing:0.370944pt;}
.ls7f{letter-spacing:0.376832pt;}
.ls61{letter-spacing:0.406272pt;}
.ls68{letter-spacing:0.418048pt;}
.ls1e{letter-spacing:0.435712pt;}
.ls7c{letter-spacing:0.441600pt;}
.ls70{letter-spacing:0.447488pt;}
.ls4f{letter-spacing:0.449152pt;}
.ls24{letter-spacing:0.481280pt;}
.ls71{letter-spacing:0.500480pt;}
.ls55{letter-spacing:0.506368pt;}
.ls34{letter-spacing:0.524032pt;}
.ls60{letter-spacing:0.535808pt;}
.ls41{letter-spacing:0.541696pt;}
.ls59{letter-spacing:0.600576pt;}
.ls50{letter-spacing:0.665344pt;}
.ls28{letter-spacing:0.671232pt;}
.ls74{letter-spacing:0.859648pt;}
.ls9{letter-spacing:0.883200pt;}
.ls51{letter-spacing:0.918528pt;}
.ls6f{letter-spacing:1.048064pt;}
.ls2b{letter-spacing:1.530880pt;}
.ls6a{letter-spacing:1.648640pt;}
.ls6e{letter-spacing:1.895936pt;}
.ls21{letter-spacing:2.178560pt;}
.ls20{letter-spacing:2.408192pt;}
.ls3c{letter-spacing:2.826240pt;}
.ls53{letter-spacing:2.873344pt;}
.ls6d{letter-spacing:2.967552pt;}
.ls4a{letter-spacing:3.002880pt;}
.ls67{letter-spacing:3.061760pt;}
.ls49{letter-spacing:3.132416pt;}
.ls6b{letter-spacing:3.473920pt;}
.ls65{letter-spacing:3.491584pt;}
.ls5f{letter-spacing:3.509248pt;}
.ls73{letter-spacing:3.603456pt;}
.ls6c{letter-spacing:3.609344pt;}
.ls5e{letter-spacing:3.685888pt;}
.ls8{letter-spacing:4.121600pt;}
.ls43{letter-spacing:4.180480pt;}
.ls66{letter-spacing:4.204032pt;}
.ls40{letter-spacing:4.769280pt;}
.ls4{letter-spacing:5.416960pt;}
.ls5d{letter-spacing:5.499392pt;}
.ls2a{letter-spacing:6.005760pt;}
.ls35{letter-spacing:6.653440pt;}
.ls36{letter-spacing:6.824192pt;}
.ls57{letter-spacing:6.960640pt;}
.ls4e{letter-spacing:7.301120pt;}
.ls2d{letter-spacing:7.948800pt;}
.ls1d{letter-spacing:8.596480pt;}
.ls2e{letter-spacing:9.199360pt;}
.ls58{letter-spacing:9.891840pt;}
.ls32{letter-spacing:10.539520pt;}
.ls31{letter-spacing:10.604288pt;}
.ls27{letter-spacing:11.128320pt;}
.ls30{letter-spacing:11.189760pt;}
.ls2f{letter-spacing:11.316736pt;}
.ls47{letter-spacing:11.776000pt;}
.ls2c{letter-spacing:13.071360pt;}
.ls7{letter-spacing:14.366720pt;}
.ls1b{letter-spacing:16.250880pt;}
.ls3d{letter-spacing:16.307200pt;}
.ls1a{letter-spacing:16.309760pt;}
.ls4c{letter-spacing:16.898560pt;}
.ls22{letter-spacing:17.546240pt;}
.ls4b{letter-spacing:17.605120pt;}
.ls23{letter-spacing:18.193920pt;}
.ls45{letter-spacing:18.282240pt;}
.ls76{letter-spacing:20.136960pt;}
.ls37{letter-spacing:20.725760pt;}
.ls75{letter-spacing:52.756480pt;}
.ws2e{word-spacing:-58.880000pt;}
.wsb{word-spacing:-29.232000pt;}
.ws1{word-spacing:-17.600000pt;}
.ws51{word-spacing:-16.663040pt;}
.ws62{word-spacing:-16.604160pt;}
.ws6{word-spacing:-16.368640pt;}
.ws4{word-spacing:-16.250880pt;}
.ws2d{word-spacing:-16.133120pt;}
.ws7{word-spacing:-16.074240pt;}
.ws52{word-spacing:-16.015360pt;}
.ws50{word-spacing:-15.956480pt;}
.ws57{word-spacing:-15.720960pt;}
.ws5{word-spacing:-15.603200pt;}
.ws2c{word-spacing:-15.485440pt;}
.ws58{word-spacing:-15.426560pt;}
.ws3{word-spacing:-14.661120pt;}
.ws0{word-spacing:-11.920640pt;}
.wsa{word-spacing:-10.319360pt;}
.ws9{word-spacing:-10.245120pt;}
.ws8{word-spacing:-10.170880pt;}
.ws60{word-spacing:-3.415040pt;}
.ws3a{word-spacing:-2.826240pt;}
.ws34{word-spacing:-2.178560pt;}
.ws35{word-spacing:-2.001920pt;}
.ws1b{word-spacing:-1.530880pt;}
.ws3b{word-spacing:-1.354240pt;}
.ws4c{word-spacing:-1.295360pt;}
.ws3c{word-spacing:-1.000960pt;}
.ws1e{word-spacing:-0.883200pt;}
.ws11{word-spacing:-0.768000pt;}
.ws64{word-spacing:-0.765440pt;}
.ws24{word-spacing:-0.706560pt;}
.ws7f{word-spacing:-0.647680pt;}
.ws7e{word-spacing:-0.588800pt;}
.ws10{word-spacing:-0.512000pt;}
.ws5c{word-spacing:-0.353280pt;}
.ws39{word-spacing:-0.294400pt;}
.ws17{word-spacing:-0.235520pt;}
.wsf{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.096000pt;}
.ws63{word-spacing:-0.058880pt;}
.wsc{word-spacing:0.000000pt;}
.ws13{word-spacing:0.053120pt;}
.ws7b{word-spacing:0.058880pt;}
.ws18{word-spacing:0.117760pt;}
.ws12{word-spacing:0.171520pt;}
.ws14{word-spacing:0.212480pt;}
.ws74{word-spacing:0.235520pt;}
.ws15{word-spacing:0.265600pt;}
.ws43{word-spacing:0.294400pt;}
.ws1d{word-spacing:0.353280pt;}
.ws16{word-spacing:0.412160pt;}
.wse{word-spacing:0.480000pt;}
.ws7c{word-spacing:0.529920pt;}
.ws54{word-spacing:0.588800pt;}
.ws44{word-spacing:0.647680pt;}
.ws79{word-spacing:0.706560pt;}
.ws1a{word-spacing:0.765440pt;}
.ws7d{word-spacing:0.883200pt;}
.ws2a{word-spacing:0.942080pt;}
.ws6b{word-spacing:1.000960pt;}
.ws2b{word-spacing:1.059840pt;}
.ws72{word-spacing:1.177600pt;}
.ws4d{word-spacing:1.354240pt;}
.ws25{word-spacing:1.707520pt;}
.ws66{word-spacing:1.884160pt;}
.ws32{word-spacing:2.296320pt;}
.ws78{word-spacing:2.355200pt;}
.ws4b{word-spacing:2.472960pt;}
.ws20{word-spacing:2.944000pt;}
.ws76{word-spacing:3.120640pt;}
.ws42{word-spacing:3.179520pt;}
.ws21{word-spacing:3.591680pt;}
.ws6a{word-spacing:3.709440pt;}
.ws61{word-spacing:3.768320pt;}
.ws1c{word-spacing:4.239360pt;}
.ws68{word-spacing:4.474880pt;}
.ws70{word-spacing:4.769280pt;}
.ws22{word-spacing:4.887040pt;}
.ws59{word-spacing:5.063680pt;}
.ws6f{word-spacing:5.416960pt;}
.ws23{word-spacing:5.534720pt;}
.ws5d{word-spacing:5.652480pt;}
.ws5a{word-spacing:5.711360pt;}
.ws3f{word-spacing:6.182400pt;}
.ws69{word-spacing:6.535680pt;}
.ws38{word-spacing:6.830080pt;}
.ws47{word-spacing:7.301120pt;}
.ws30{word-spacing:7.418880pt;}
.ws46{word-spacing:7.595520pt;}
.ws45{word-spacing:8.066560pt;}
.ws19{word-spacing:8.714240pt;}
.ws67{word-spacing:9.244160pt;}
.ws3d{word-spacing:9.361920pt;}
.ws4a{word-spacing:9.597440pt;}
.ws65{word-spacing:9.891840pt;}
.ws49{word-spacing:10.009600pt;}
.ws73{word-spacing:10.186240pt;}
.ws31{word-spacing:10.657280pt;}
.ws48{word-spacing:10.892800pt;}
.ws3e{word-spacing:11.304960pt;}
.ws6d{word-spacing:11.481600pt;}
.ws5f{word-spacing:11.893760pt;}
.ws71{word-spacing:12.070400pt;}
.ws33{word-spacing:12.541440pt;}
.ws77{word-spacing:13.071360pt;}
.ws1f{word-spacing:13.189120pt;}
.ws41{word-spacing:13.836800pt;}
.ws27{word-spacing:14.366720pt;}
.ws26{word-spacing:14.484480pt;}
.ws6c{word-spacing:14.661120pt;}
.ws53{word-spacing:15.779840pt;}
.ws5e{word-spacing:15.956480pt;}
.ws2f{word-spacing:16.427520pt;}
.ws29{word-spacing:17.016320pt;}
.ws28{word-spacing:17.664000pt;}
.ws75{word-spacing:17.840640pt;}
.ws36{word-spacing:18.311680pt;}
.ws37{word-spacing:18.488320pt;}
.ws4e{word-spacing:19.607040pt;}
.ws4f{word-spacing:20.254720pt;}
.ws5b{word-spacing:20.902400pt;}
.ws7a{word-spacing:21.550080pt;}
.ws6e{word-spacing:22.138880pt;}
.ws55{word-spacing:23.434240pt;}
.ws56{word-spacing:24.081920pt;}
.ws40{word-spacing:31.736320pt;}
.ws2{word-spacing:34.368640pt;}
._12{margin-left:-11.502080pt;}
._11{margin-left:-4.567040pt;}
._9{margin-left:-2.944000pt;}
._8{margin-left:-1.850880pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.056000pt;}
._10{width:2.155520pt;}
._4{width:3.187200pt;}
._3{width:4.257280pt;}
._5{width:5.829120pt;}
._a{width:7.065600pt;}
._2{width:8.518400pt;}
._7{width:10.270720pt;}
._c{width:11.584000pt;}
._b{width:13.189120pt;}
._6{width:14.099200pt;}
._13{width:17.344000pt;}
._f{width:18.344960pt;}
._d{width:20.431360pt;}
._e{width:23.964160pt;}
._14{width:751.603200pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:51.520000pt;}
.y1{bottom:69.440000pt;}
.y62{bottom:101.444480pt;}
.y124{bottom:101.678720pt;}
.yc0{bottom:103.051520pt;}
.y165{bottom:103.074560pt;}
.y29{bottom:103.682560pt;}
.yda{bottom:103.687040pt;}
.y72{bottom:108.011520pt;}
.y61{bottom:118.247040pt;}
.y123{bottom:118.474240pt;}
.y91{bottom:119.237760pt;}
.ybf{bottom:119.847040pt;}
.y105{bottom:119.865600pt;}
.y164{bottom:119.870080pt;}
.yd9{bottom:120.482560pt;}
.y28{bottom:120.658560pt;}
.y71{bottom:124.807040pt;}
.y60{bottom:135.204480pt;}
.y122{bottom:135.431680pt;}
.y90{bottom:136.033280pt;}
.ybe{bottom:136.642560pt;}
.y104{bottom:136.661120pt;}
.y163{bottom:136.665600pt;}
.y27{bottom:137.454080pt;}
.yd8{bottom:137.463040pt;}
.y70{bottom:141.764480pt;}
.y5f{bottom:152.014080pt;}
.y121{bottom:152.227200pt;}
.y8f{bottom:152.990720pt;}
.ybd{bottom:153.607040pt;}
.y103{bottom:153.618560pt;}
.y162{bottom:153.623040pt;}
.yd7{bottom:154.258560pt;}
.y26{bottom:154.411520pt;}
.y6f{bottom:158.571520pt;}
.y5e{bottom:168.971520pt;}
.y120{bottom:169.022720pt;}
.y8e{bottom:169.786240pt;}
.ybc{bottom:170.402560pt;}
.y102{bottom:170.414080pt;}
.y161{bottom:170.418560pt;}
.y25{bottom:171.207040pt;}
.yd6{bottom:171.216000pt;}
.y6e{bottom:175.528960pt;}
.y5d{bottom:185.767040pt;}
.y11f{bottom:185.980160pt;}
.y8d{bottom:186.581760pt;}
.y101{bottom:187.371520pt;}
.y160{bottom:187.376000pt;}
.ybb{bottom:187.408640pt;}
.y24{bottom:188.002560pt;}
.yd5{bottom:188.011520pt;}
.y6d{bottom:192.324480pt;}
.y8c{bottom:200.344960pt;}
.y5c{bottom:202.562560pt;}
.y11e{bottom:202.775680pt;}
.y100{bottom:204.167040pt;}
.y15f{bottom:204.171520pt;}
.yba{bottom:204.204160pt;}
.yd4{bottom:204.807040pt;}
.y23{bottom:204.985600pt;}
.y6c{bottom:209.122560pt;}
.y5b{bottom:219.527040pt;}
.y11d{bottom:219.733120pt;}
.yff{bottom:220.962560pt;}
.y15e{bottom:220.967040pt;}
.yb9{bottom:220.999680pt;}
.yd3{bottom:221.764480pt;}
.y22{bottom:221.781120pt;}
.y6b{bottom:226.080000pt;}
.y5a{bottom:236.322560pt;}
.y11c{bottom:236.528640pt;}
.y15d{bottom:237.924480pt;}
.yb8{bottom:237.957120pt;}
.yfe{bottom:237.961600pt;}
.yd2{bottom:238.598400pt;}
.y21{bottom:238.738560pt;}
.y6a{bottom:248.480000pt;}
.y59{bottom:253.284480pt;}
.y11b{bottom:253.324160pt;}
.y15c{bottom:254.720000pt;}
.yb7{bottom:254.752640pt;}
.yfd{bottom:254.757120pt;}
.y20{bottom:255.534133pt;}
.yd1{bottom:255.555840pt;}
.y69{bottom:261.282560pt;}
.y58{bottom:270.087040pt;}
.y11a{bottom:270.281600pt;}
.y13e{bottom:271.603840pt;}
.yb6{bottom:271.710080pt;}
.yfc{bottom:271.714560pt;}
.y15b{bottom:271.828480pt;}
.yd0{bottom:272.351360pt;}
.y68{bottom:278.248960pt;}
.y57{bottom:287.044480pt;}
.y119{bottom:287.077120pt;}
.yb5{bottom:288.505600pt;}
.yfb{bottom:288.510080pt;}
.y13d{bottom:288.561280pt;}
.y15a{bottom:288.624000pt;}
.y1f{bottom:289.287040pt;}
.ycf{bottom:289.308800pt;}
.y67{bottom:295.044480pt;}
.y56{bottom:303.847040pt;}
.y118{bottom:304.034560pt;}
.yb4{bottom:305.463040pt;}
.yfa{bottom:305.467520pt;}
.y13c{bottom:305.518720pt;}
.y159{bottom:305.581440pt;}
.y1e{bottom:306.082560pt;}
.yce{bottom:306.104320pt;}
.y66{bottom:311.852160pt;}
.y55{bottom:320.642560pt;}
.y117{bottom:320.830080pt;}
.yb3{bottom:322.258560pt;}
.yf9{bottom:322.263040pt;}
.y13b{bottom:322.314240pt;}
.y158{bottom:322.376960pt;}
.ycd{bottom:322.899840pt;}
.y1d{bottom:323.088640pt;}
.y65{bottom:328.809600pt;}
.y54{bottom:337.600000pt;}
.y116{bottom:337.625600pt;}
.y167{bottom:338.880640pt;}
.yb2{bottom:339.054080pt;}
.yf8{bottom:339.058560pt;}
.y13a{bottom:339.109760pt;}
.y157{bottom:339.172480pt;}
.ycc{bottom:339.857280pt;}
.y1c{bottom:339.884160pt;}
.y64{bottom:342.572800pt;}
.y115{bottom:354.583040pt;}
.y53{bottom:354.880000pt;}
.y166{bottom:356.000000pt;}
.yb1{bottom:356.011520pt;}
.yf7{bottom:356.016000pt;}
.y139{bottom:356.067200pt;}
.y156{bottom:356.129920pt;}
.ycb{bottom:356.652800pt;}
.y1b{bottom:356.841600pt;}
.yca{bottom:370.416000pt;}
.y114{bottom:371.378560pt;}
.yb0{bottom:372.807040pt;}
.yf6{bottom:372.811520pt;}
.y52{bottom:372.832640pt;}
.y138{bottom:372.862720pt;}
.y155{bottom:372.925440pt;}
.y1a{bottom:373.637120pt;}
.y113{bottom:388.336000pt;}
.yaf{bottom:389.764480pt;}
.yf5{bottom:389.768960pt;}
.y51{bottom:389.790080pt;}
.y137{bottom:389.820160pt;}
.y154{bottom:389.882880pt;}
.y19{bottom:390.432640pt;}
.y112{bottom:405.131520pt;}
.yae{bottom:406.564480pt;}
.y50{bottom:406.585600pt;}
.y136{bottom:406.615680pt;}
.y153{bottom:406.678400pt;}
.y18{bottom:407.390080pt;}
.y111{bottom:421.927040pt;}
.yad{bottom:423.362560pt;}
.yf4{bottom:423.367040pt;}
.y4f{bottom:423.381120pt;}
.y135{bottom:423.411200pt;}
.y152{bottom:423.473920pt;}
.y17{bottom:424.185600pt;}
.y110{bottom:438.884480pt;}
.yac{bottom:440.324480pt;}
.y4e{bottom:440.338560pt;}
.y134{bottom:440.368640pt;}
.y151{bottom:440.431360pt;}
.y16{bottom:441.143040pt;}
.y10f{bottom:455.706880pt;}
.yab{bottom:457.131520pt;}
.y4d{bottom:457.134080pt;}
.yf3{bottom:457.145600pt;}
.y133{bottom:457.164160pt;}
.y150{bottom:457.226880pt;}
.y15{bottom:457.938560pt;}
.y10e{bottom:472.664320pt;}
.yaa{bottom:474.088960pt;}
.y4c{bottom:474.091520pt;}
.yf2{bottom:474.103040pt;}
.y8b{bottom:474.107520pt;}
.y132{bottom:474.121600pt;}
.y14f{bottom:474.184320pt;}
.y14{bottom:474.734080pt;}
.y10d{bottom:486.427520pt;}
.ya9{bottom:490.884480pt;}
.y4b{bottom:490.887040pt;}
.yf1{bottom:490.898560pt;}
.y8a{bottom:490.903040pt;}
.y131{bottom:490.917120pt;}
.y14e{bottom:490.979840pt;}
.y13{bottom:491.691520pt;}
.y4a{bottom:507.682560pt;}
.ya8{bottom:507.689600pt;}
.yf0{bottom:507.694080pt;}
.y89{bottom:507.698560pt;}
.y130{bottom:507.712640pt;}
.y14d{bottom:507.775360pt;}
.y12{bottom:508.487067pt;}
.ya7{bottom:524.647040pt;}
.yef{bottom:524.651520pt;}
.y88{bottom:524.656000pt;}
.y49{bottom:524.663040pt;}
.y12f{bottom:524.670080pt;}
.y14c{bottom:524.732800pt;}
.ya6{bottom:541.442560pt;}
.yee{bottom:541.447040pt;}
.y87{bottom:541.451520pt;}
.y48{bottom:541.458560pt;}
.y12e{bottom:541.465600pt;}
.y14b{bottom:541.528320pt;}
.y11{bottom:542.240000pt;}
.yed{bottom:558.404480pt;}
.y86{bottom:558.408960pt;}
.y47{bottom:558.416000pt;}
.y12d{bottom:558.423040pt;}
.ya5{bottom:558.448640pt;}
.y14a{bottom:558.485760pt;}
.y85{bottom:575.204480pt;}
.y46{bottom:575.211520pt;}
.y12c{bottom:575.218560pt;}
.yec{bottom:575.237120pt;}
.ya4{bottom:575.244160pt;}
.y149{bottom:575.281280pt;}
.y10{bottom:581.920000pt;}
.y45{bottom:592.007040pt;}
.y12b{bottom:592.014080pt;}
.yeb{bottom:592.032640pt;}
.ya3{bottom:592.039680pt;}
.y84{bottom:592.062720pt;}
.y148{bottom:592.076800pt;}
.y44{bottom:608.964480pt;}
.y12a{bottom:608.971520pt;}
.yea{bottom:608.990080pt;}
.ya2{bottom:608.997120pt;}
.y83{bottom:609.020160pt;}
.y147{bottom:609.034240pt;}
.yf{bottom:611.671520pt;}
.y43{bottom:625.767040pt;}
.ye9{bottom:625.785600pt;}
.ya1{bottom:625.792640pt;}
.y82{bottom:625.815680pt;}
.y146{bottom:625.829760pt;}
.ye{bottom:634.712320pt;}
.y42{bottom:642.724480pt;}
.ye8{bottom:642.743040pt;}
.ya0{bottom:642.750080pt;}
.y81{bottom:642.773120pt;}
.y145{bottom:642.787200pt;}
.yd{bottom:657.753120pt;}
.y129{bottom:659.520000pt;}
.y41{bottom:659.527040pt;}
.yc9{bottom:659.531520pt;}
.ye7{bottom:659.538560pt;}
.y9f{bottom:659.545600pt;}
.y80{bottom:659.568640pt;}
.y144{bottom:659.582720pt;}
.y40{bottom:676.322560pt;}
.yc8{bottom:676.327040pt;}
.ye6{bottom:676.334080pt;}
.y9e{bottom:676.341120pt;}
.y7f{bottom:676.364160pt;}
.y143{bottom:676.378240pt;}
.yc{bottom:680.793920pt;}
.y16c{bottom:688.801920pt;}
.y3f{bottom:693.284480pt;}
.ye5{bottom:693.291520pt;}
.y9d{bottom:693.298560pt;}
.y7e{bottom:693.321600pt;}
.y142{bottom:693.335680pt;}
.yb{bottom:703.675360pt;}
.y16b{bottom:705.597440pt;}
.y128{bottom:710.080000pt;}
.y3e{bottom:710.082560pt;}
.ye4{bottom:710.087040pt;}
.y9c{bottom:710.094080pt;}
.y10c{bottom:710.112640pt;}
.y7d{bottom:710.117120pt;}
.y141{bottom:710.131200pt;}
.y16a{bottom:722.554880pt;}
.ya{bottom:726.716160pt;}
.ye3{bottom:727.044480pt;}
.yc7{bottom:727.047040pt;}
.y9b{bottom:727.051520pt;}
.y3d{bottom:727.063040pt;}
.y10b{bottom:727.070080pt;}
.y7c{bottom:727.074560pt;}
.y140{bottom:727.088640pt;}
.y169{bottom:739.350400pt;}
.yc6{bottom:743.842560pt;}
.y9a{bottom:743.847040pt;}
.y3c{bottom:743.858560pt;}
.y10a{bottom:743.865600pt;}
.y7b{bottom:743.870080pt;}
.ye2{bottom:743.877120pt;}
.y13f{bottom:743.884160pt;}
.y9{bottom:749.756960pt;}
.y168{bottom:753.113600pt;}
.y99{bottom:760.804480pt;}
.yc5{bottom:760.811520pt;}
.y3b{bottom:760.816000pt;}
.y109{bottom:760.823040pt;}
.y7a{bottom:760.827520pt;}
.ye1{bottom:760.834560pt;}
.y127{bottom:760.841600pt;}
.y8{bottom:772.797760pt;}
.yc4{bottom:777.607040pt;}
.y3a{bottom:777.611520pt;}
.y98{bottom:777.614080pt;}
.y108{bottom:777.618560pt;}
.y79{bottom:777.623040pt;}
.ye0{bottom:777.630080pt;}
.y126{bottom:777.637120pt;}
.yc3{bottom:794.402560pt;}
.y39{bottom:794.407040pt;}
.y97{bottom:794.409600pt;}
.y107{bottom:794.414080pt;}
.y78{bottom:794.418560pt;}
.ydf{bottom:794.425600pt;}
.y125{bottom:794.432640pt;}
.y7{bottom:795.679200pt;}
.y38{bottom:811.364480pt;}
.y96{bottom:811.367040pt;}
.y106{bottom:811.371520pt;}
.y77{bottom:811.376000pt;}
.yde{bottom:811.383040pt;}
.yc2{bottom:811.390080pt;}
.y6{bottom:818.720000pt;}
.y95{bottom:828.162560pt;}
.y37{bottom:828.167040pt;}
.y76{bottom:828.171520pt;}
.ydd{bottom:828.178560pt;}
.yc1{bottom:828.185600pt;}
.y36{bottom:845.124480pt;}
.y75{bottom:845.128960pt;}
.ydc{bottom:845.136000pt;}
.y94{bottom:845.143040pt;}
.y5{bottom:852.960000pt;}
.y74{bottom:861.924480pt;}
.y35{bottom:861.931520pt;}
.y93{bottom:861.938560pt;}
.y4{bottom:871.360000pt;}
.y73{bottom:878.722560pt;}
.y34{bottom:878.727040pt;}
.y92{bottom:878.734080pt;}
.y33{bottom:895.684480pt;}
.y63{bottom:895.691520pt;}
.y3{bottom:910.072000pt;}
.ydb{bottom:912.482560pt;}
.y32{bottom:912.487040pt;}
.y31{bottom:929.444480pt;}
.y2{bottom:937.600000pt;}
.y30{bottom:946.240000pt;}
.y2e{bottom:976.544000pt;}
.y2d{bottom:990.944000pt;}
.y2c{bottom:1005.344000pt;}
.y2b{bottom:1019.744000pt;}
.y2a{bottom:1034.144000pt;}
.ha{height:37.593750pt;}
.h15{height:38.441250pt;}
.hb{height:42.656250pt;}
.h6{height:42.866250pt;}
.h16{height:42.895000pt;}
.h4{height:47.621250pt;}
.h3{height:49.777813pt;}
.h5{height:52.784893pt;}
.h1{height:52.785000pt;}
.h17{height:54.146620pt;}
.h18{height:54.202940pt;}
.h1d{height:54.231100pt;}
.h1b{height:54.243900pt;}
.h1c{height:54.249020pt;}
.h1a{height:54.277180pt;}
.h1e{height:54.289980pt;}
.h7{height:54.295100pt;}
.hf{height:54.305340pt;}
.h8{height:54.323260pt;}
.h12{height:54.341180pt;}
.h13{height:54.348860pt;}
.he{height:54.351420pt;}
.h19{height:54.359100pt;}
.h14{height:54.361660pt;}
.hd{height:54.369340pt;}
.h10{height:54.379580pt;}
.h9{height:54.387260pt;}
.hc{height:54.397500pt;}
.h11{height:59.533090pt;}
.h2{height:69.890625pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:72.000000pt;}
.x4{left:77.280000pt;}
.x12{left:80.394667pt;}
.x2{left:96.000000pt;}
.x11{left:100.320000pt;}
.xa{left:104.034880pt;}
.x17{left:105.649920pt;}
.x5{left:111.680000pt;}
.x8{left:114.273760pt;}
.x7{left:116.172800pt;}
.x10{left:120.016640pt;}
.xb{left:125.004000pt;}
.x6{left:172.480000pt;}
.x3{left:182.568000pt;}
.xd{left:200.394560pt;}
.xc{left:223.408800pt;}
.x18{left:279.993600pt;}
.xe{left:317.920000pt;}
.x16{left:399.840000pt;}
.x1{left:403.840000pt;}
.x9{left:414.441600pt;}
.x13{left:556.958720pt;}
.x15{left:721.896320pt;}
.x14{left:732.960000pt;}
}




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