
    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_cb932d78ffa98e12b8a7810d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_839269ae62d1dc0bda167b0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_7e714a13017ebe7f19303de7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.907227;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_f14bd77944c2db31403d01d5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_213371b7834b44b99bda4305.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_9da179471eb1d26d3c6c6c61.woff2')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;}
.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:-18.000000px;}
.v3{vertical-align:-5.768640px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.ls66{letter-spacing:-7.888320px;}
.ls32{letter-spacing:-6.027840px;}
.ls5e{letter-spacing:-5.019840px;}
.ls33{letter-spacing:-4.636800px;}
.ls30{letter-spacing:-4.438080px;}
.ls37{letter-spacing:-3.709440px;}
.ls64{letter-spacing:-3.525840px;}
.ls67{letter-spacing:-3.406320px;}
.ls3a{letter-spacing:-2.318400px;}
.ls27{letter-spacing:-2.185920px;}
.ls31{letter-spacing:-1.920960px;}
.ls1b{letter-spacing:-1.854720px;}
.ls65{letter-spacing:-1.792800px;}
.ls44{letter-spacing:-1.722240px;}
.ls38{letter-spacing:-1.523520px;}
.ls39{letter-spacing:-1.457280px;}
.ls3e{letter-spacing:-1.324800px;}
.ls45{letter-spacing:-1.192320px;}
.ls68{letter-spacing:-1.135440px;}
.ls26{letter-spacing:-1.126080px;}
.ls24{letter-spacing:-1.059840px;}
.ls11{letter-spacing:-0.972000px;}
.ls23{letter-spacing:-0.861120px;}
.ls69{letter-spacing:-0.776880px;}
.ls19{letter-spacing:-0.728640px;}
.ls1a{letter-spacing:-0.596160px;}
.ls22{letter-spacing:-0.540000px;}
.ls62{letter-spacing:-0.537840px;}
.ls61{letter-spacing:-0.478080px;}
.ls18{letter-spacing:-0.463680px;}
.ls5f{letter-spacing:-0.418320px;}
.ls1c{letter-spacing:-0.397440px;}
.lsc{letter-spacing:-0.378000px;}
.ls15{letter-spacing:-0.358560px;}
.ls2f{letter-spacing:-0.331200px;}
.ls25{letter-spacing:-0.264960px;}
.ls5d{letter-spacing:-0.239040px;}
.ls9{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.132480px;}
.ls5c{letter-spacing:-0.119520px;}
.lsb{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.084240px;}
.ls17{letter-spacing:-0.059760px;}
.lsa{letter-spacing:0.000000px;}
.ls63{letter-spacing:0.059760px;}
.ls2e{letter-spacing:0.066240px;}
.lse{letter-spacing:0.084240px;}
.ls7{letter-spacing:0.092736px;}
.ls4c{letter-spacing:0.107568px;}
.ls12{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.119520px;}
.ls6{letter-spacing:0.132480px;}
.ls2{letter-spacing:0.162000px;}
.ls2d{letter-spacing:0.172224px;}
.ls4{letter-spacing:0.179280px;}
.ls1{letter-spacing:0.216000px;}
.ls49{letter-spacing:0.239040px;}
.ls20{letter-spacing:0.258336px;}
.ls21{letter-spacing:0.264960px;}
.lsf{letter-spacing:0.331200px;}
.ls14{letter-spacing:0.358560px;}
.ls0{letter-spacing:0.378000px;}
.ls60{letter-spacing:0.478080px;}
.ls2b{letter-spacing:0.576288px;}
.ls16{letter-spacing:0.657360px;}
.ls41{letter-spacing:0.728640px;}
.ls3f{letter-spacing:0.761760px;}
.ls58{letter-spacing:0.896400px;}
.ls28{letter-spacing:1.457280px;}
.ls57{letter-spacing:1.613520px;}
.ls53{letter-spacing:1.631448px;}
.ls52{letter-spacing:1.667304px;}
.ls35{letter-spacing:2.139552px;}
.ls3c{letter-spacing:2.185920px;}
.ls48{letter-spacing:2.330640px;}
.ls34{letter-spacing:2.848320px;}
.ls3b{letter-spacing:2.874816px;}
.ls4d{letter-spacing:3.047760px;}
.ls4e{letter-spacing:3.083616px;}
.ls43{letter-spacing:3.576960px;}
.ls59{letter-spacing:3.764880px;}
.ls4a{letter-spacing:4.482000px;}
.ls1f{letter-spacing:5.034240px;}
.ls4b{letter-spacing:5.199120px;}
.ls42{letter-spacing:5.762880px;}
.ls8{letter-spacing:5.855616px;}
.ls3{letter-spacing:5.916240px;}
.ls29{letter-spacing:7.220160px;}
.ls5a{letter-spacing:7.350480px;}
.ls5b{letter-spacing:7.410240px;}
.ls3d{letter-spacing:9.339840px;}
.ls4f{letter-spacing:9.561600px;}
.ls36{letter-spacing:11.525760px;}
.ls2a{letter-spacing:12.254400px;}
.ls50{letter-spacing:13.147200px;}
.ls2c{letter-spacing:13.665312px;}
.ls40{letter-spacing:13.711680px;}
.ls54{letter-spacing:14.581440px;}
.ls1d{letter-spacing:15.831360px;}
.ls55{letter-spacing:16.732800px;}
.ls1e{letter-spacing:17.288640px;}
.ls56{letter-spacing:18.167040px;}
.ls46{letter-spacing:23.051520px;}
.ls5{letter-spacing:42.668640px;}
.ls47{letter-spacing:66.214080px;}
.ls51{letter-spacing:66.931200px;}
.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;}
}
.wsf{word-spacing:-66.240000px;}
.ws4f{word-spacing:-16.891200px;}
.ws4a{word-spacing:-16.824960px;}
.ws4c{word-spacing:-16.692480px;}
.wse{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.427520px;}
.ws51{word-spacing:-16.295040px;}
.ws6b{word-spacing:-16.228800px;}
.ws52{word-spacing:-16.096320px;}
.ws4d{word-spacing:-15.963840px;}
.ws4e{word-spacing:-15.831360px;}
.ws4b{word-spacing:-15.698880px;}
.ws80{word-spacing:-15.500160px;}
.ws50{word-spacing:-15.433920px;}
.wsa9{word-spacing:-15.418080px;}
.ws91{word-spacing:-15.367680px;}
.wsb{word-spacing:-15.298560px;}
.wsaa{word-spacing:-15.179040px;}
.wsa5{word-spacing:-15.119280px;}
.ws92{word-spacing:-15.102720px;}
.ws8{word-spacing:-15.059520px;}
.wsa8{word-spacing:-15.047568px;}
.wsad{word-spacing:-14.999760px;}
.wsa{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.880240px;}
.wsa3{word-spacing:-14.820480px;}
.ws10{word-spacing:-14.705280px;}
.wsa4{word-spacing:-14.700960px;}
.ws6d{word-spacing:-14.639040px;}
.ws9{word-spacing:-14.581440px;}
.wsa7{word-spacing:-14.521680px;}
.wsae{word-spacing:-14.461920px;}
.ws53{word-spacing:-14.374080px;}
.wsb3{word-spacing:-14.163120px;}
.ws2{word-spacing:-13.878000px;}
.wsb2{word-spacing:-13.804560px;}
.ws0{word-spacing:-13.500000px;}
.ws1{word-spacing:-13.392000px;}
.ws4{word-spacing:-13.284000px;}
.wsaf{word-spacing:-13.147200px;}
.ws3{word-spacing:-13.122000px;}
.ws7f{word-spacing:-12.850560px;}
.ws7{word-spacing:-12.528000px;}
.ws6c{word-spacing:-12.121920px;}
.wsb1{word-spacing:-11.533680px;}
.wsac{word-spacing:-11.414160px;}
.ws5{word-spacing:-10.440000px;}
.wsa6{word-spacing:-9.920160px;}
.wsab{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.wsb0{word-spacing:-7.051680px;}
.ws68{word-spacing:-5.034240px;}
.wsc6{word-spacing:-5.019840px;}
.ws67{word-spacing:-4.570560px;}
.ws6a{word-spacing:-4.438080px;}
.ws66{word-spacing:-4.040640px;}
.ws69{word-spacing:-3.841920px;}
.ws9f{word-spacing:-3.709440px;}
.ws8d{word-spacing:-3.576960px;}
.ws27{word-spacing:-3.525840px;}
.ws19{word-spacing:-3.444480px;}
.wsc8{word-spacing:-3.047760px;}
.ws61{word-spacing:-2.980800px;}
.wsc5{word-spacing:-2.868480px;}
.ws63{word-spacing:-2.848320px;}
.wsc9{word-spacing:-2.808720px;}
.ws84{word-spacing:-2.517120px;}
.ws44{word-spacing:-2.450880px;}
.wsbd{word-spacing:-2.330640px;}
.ws5f{word-spacing:-2.318400px;}
.ws45{word-spacing:-2.252160px;}
.ws73{word-spacing:-2.185920px;}
.ws46{word-spacing:-2.119680px;}
.wscc{word-spacing:-2.091600px;}
.ws60{word-spacing:-1.987200px;}
.wscd{word-spacing:-1.912320px;}
.ws70{word-spacing:-1.788480px;}
.ws3b{word-spacing:-1.589760px;}
.ws3c{word-spacing:-1.457280px;}
.ws17{word-spacing:-1.059840px;}
.ws15{word-spacing:-0.926640px;}
.wsbe{word-spacing:-0.896400px;}
.ws93{word-spacing:-0.861120px;}
.ws5a{word-spacing:-0.728640px;}
.ws9e{word-spacing:-0.662400px;}
.ws24{word-spacing:-0.657360px;}
.ws7c{word-spacing:-0.596160px;}
.ws2a{word-spacing:-0.478080px;}
.ws8e{word-spacing:-0.397440px;}
.ws1d{word-spacing:-0.378000px;}
.wsb8{word-spacing:-0.358560px;}
.ws5c{word-spacing:-0.331200px;}
.ws71{word-spacing:-0.264960px;}
.ws16{word-spacing:-0.252720px;}
.ws1b{word-spacing:-0.216000px;}
.ws2e{word-spacing:-0.179280px;}
.ws6e{word-spacing:-0.162000px;}
.ws18{word-spacing:-0.132480px;}
.ws25{word-spacing:-0.119520px;}
.ws1e{word-spacing:-0.108000px;}
.ws14{word-spacing:-0.084240px;}
.ws6f{word-spacing:-0.066240px;}
.ws12{word-spacing:0.000000px;}
.ws28{word-spacing:0.059760px;}
.ws86{word-spacing:0.066240px;}
.wsce{word-spacing:0.119520px;}
.ws1a{word-spacing:0.132480px;}
.ws13{word-spacing:0.162000px;}
.ws1c{word-spacing:0.216000px;}
.wsc7{word-spacing:0.239040px;}
.ws8b{word-spacing:0.331200px;}
.ws20{word-spacing:0.358560px;}
.ws11{word-spacing:0.378000px;}
.ws83{word-spacing:0.397440px;}
.ws36{word-spacing:0.463680px;}
.wsc2{word-spacing:0.478080px;}
.ws2b{word-spacing:0.537840px;}
.ws54{word-spacing:0.540000px;}
.ws48{word-spacing:0.596160px;}
.wsd6{word-spacing:0.657360px;}
.ws55{word-spacing:0.702000px;}
.ws39{word-spacing:0.728640px;}
.ws9d{word-spacing:0.993600px;}
.wsd5{word-spacing:1.015920px;}
.ws62{word-spacing:1.059840px;}
.ws77{word-spacing:1.126080px;}
.wsd0{word-spacing:1.254960px;}
.ws3d{word-spacing:1.324800px;}
.wscf{word-spacing:1.434240px;}
.ws64{word-spacing:1.457280px;}
.wsca{word-spacing:1.494000px;}
.ws2d{word-spacing:1.673280px;}
.ws2c{word-spacing:1.972080px;}
.ws3a{word-spacing:2.053440px;}
.wsb6{word-spacing:2.151360px;}
.ws38{word-spacing:2.185920px;}
.ws21{word-spacing:2.211120px;}
.ws87{word-spacing:2.318400px;}
.wsb7{word-spacing:2.390400px;}
.ws9a{word-spacing:2.583360px;}
.wsc0{word-spacing:2.689200px;}
.ws56{word-spacing:2.782080px;}
.ws82{word-spacing:2.914560px;}
.ws29{word-spacing:2.928240px;}
.wsbb{word-spacing:3.107520px;}
.wsbc{word-spacing:3.406320px;}
.ws89{word-spacing:3.444480px;}
.ws47{word-spacing:3.510720px;}
.ws7b{word-spacing:3.576960px;}
.wsbf{word-spacing:3.585600px;}
.ws49{word-spacing:3.643200px;}
.wsd7{word-spacing:3.645360px;}
.ws95{word-spacing:3.974400px;}
.ws1f{word-spacing:4.123440px;}
.ws7a{word-spacing:4.173120px;}
.wsb9{word-spacing:4.302720px;}
.ws37{word-spacing:4.305600px;}
.ws7e{word-spacing:4.636800px;}
.ws96{word-spacing:4.703040px;}
.wsba{word-spacing:4.840560px;}
.ws65{word-spacing:4.901760px;}
.wsd1{word-spacing:5.019840px;}
.ws57{word-spacing:5.034240px;}
.ws75{word-spacing:5.166720px;}
.ws7d{word-spacing:5.299200px;}
.ws43{word-spacing:5.431680px;}
.wsd2{word-spacing:5.557680px;}
.ws9b{word-spacing:5.630400px;}
.ws9c{word-spacing:5.762880px;}
.ws23{word-spacing:5.796720px;}
.wscb{word-spacing:5.976000px;}
.ws22{word-spacing:6.274800px;}
.wsa2{word-spacing:6.359040px;}
.ws35{word-spacing:6.491520px;}
.ws30{word-spacing:6.991920px;}
.wsd8{word-spacing:7.051680px;}
.ws74{word-spacing:7.087680px;}
.ws3e{word-spacing:7.220160px;}
.ws81{word-spacing:7.352640px;}
.ws31{word-spacing:7.768800px;}
.ws3f{word-spacing:7.816320px;}
.ws42{word-spacing:7.948800px;}
.ws2f{word-spacing:8.007840px;}
.ws34{word-spacing:8.478720px;}
.ws8c{word-spacing:8.611200px;}
.ws8a{word-spacing:9.339840px;}
.ws26{word-spacing:9.920160px;}
.ws72{word-spacing:9.936000px;}
.ws88{word-spacing:10.068480px;}
.wsa0{word-spacing:10.465920px;}
.wsa1{word-spacing:10.664640px;}
.ws59{word-spacing:10.797120px;}
.ws85{word-spacing:11.393280px;}
.ws58{word-spacing:11.525760px;}
.ws76{word-spacing:11.923200px;}
.ws90{word-spacing:12.121920px;}
.ws8f{word-spacing:12.254400px;}
.wsc3{word-spacing:12.788640px;}
.wsc1{word-spacing:12.967920px;}
.wsc4{word-spacing:13.505760px;}
.ws98{word-spacing:13.579200px;}
.ws79{word-spacing:13.711680px;}
.ws78{word-spacing:14.307840px;}
.ws97{word-spacing:14.374080px;}
.ws99{word-spacing:15.433920px;}
.ws5b{word-spacing:15.831360px;}
.ws40{word-spacing:16.427520px;}
.ws94{word-spacing:17.288640px;}
.ws5d{word-spacing:17.884800px;}
.ws5e{word-spacing:18.017280px;}
.wsd4{word-spacing:18.047520px;}
.wsd3{word-spacing:18.226800px;}
.ws41{word-spacing:20.733120px;}
.wsb5{word-spacing:22.786560px;}
.wsb4{word-spacing:23.051520px;}
.ws33{word-spacing:42.549120px;}
.ws32{word-spacing:42.728400px;}
._f{margin-left:-9.887760px;}
._b{margin-left:-8.141472px;}
._a{margin-left:-6.288768px;}
._4{margin-left:-5.248368px;}
._3{margin-left:-3.622320px;}
._8{margin-left:-2.562624px;}
._1{margin-left:-1.493424px;}
._0{width:1.350000px;}
._9{width:3.149424px;}
._5{width:4.601520px;}
._d{width:6.027840px;}
._6{width:7.746048px;}
._10{width:9.640944px;}
._11{width:10.987632px;}
._e{width:12.414816px;}
._c{width:13.976640px;}
._13{width:17.732160px;}
._12{width:21.253248px;}
._7{width:42.667488px;}
._2{width:671.087088px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y115{bottom:5.760000px;}
.y4f{bottom:7.920000px;}
.y4d{bottom:8.100000px;}
.y7e{bottom:32.220000px;}
.y9d{bottom:32.400000px;}
.y3{bottom:79.380000px;}
.y61{bottom:81.006480px;}
.y60{bottom:101.160000px;}
.y5f{bottom:115.020720px;}
.yfe{bottom:123.847920px;}
.ya8{bottom:124.740000px;}
.y113{bottom:124.755120px;}
.y2f{bottom:133.998480px;}
.yd5{bottom:134.708400px;}
.y5e{bottom:138.420000px;}
.ya7{bottom:141.120000px;}
.yfd{bottom:142.925040px;}
.y112{bottom:144.014400px;}
.y2e{bottom:153.075600px;}
.yd4{bottom:153.603360px;}
.y5d{bottom:153.900000px;}
.yfc{bottom:161.833680px;}
.y111{bottom:162.909360px;}
.ya6{bottom:164.520000px;}
.y2d{bottom:171.970560px;}
.yd3{bottom:172.680480px;}
.y5c{bottom:178.200000px;}
.yfb{bottom:180.910800px;}
.y110{bottom:181.986480px;}
.ya5{bottom:187.920000px;}
.y2c{bottom:191.047680px;}
.yd2{bottom:191.575440px;}
.yfa{bottom:199.805760px;}
.y10f{bottom:200.881440px;}
.y5b{bottom:201.600000px;}
.y2b{bottom:209.942640px;}
.ya4{bottom:212.220000px;}
.yd1{bottom:214.974720px;}
.yf9{bottom:218.700720px;}
.y10e{bottom:219.776400px;}
.y5a{bottom:225.000000px;}
.y2a{bottom:229.019760px;}
.y143{bottom:232.858800px;}
.yd0{bottom:234.051840px;}
.ya3{bottom:235.620000px;}
.y10d{bottom:238.853520px;}
.yf8{bottom:242.100000px;}
.y89{bottom:243.720000px;}
.y29{bottom:247.914720px;}
.y59{bottom:248.580000px;}
.y142{bottom:250.144380px;}
.ycf{bottom:252.946800px;}
.y10c{bottom:257.748480px;}
.yf7{bottom:258.300000px;}
.ya2{bottom:259.200000px;}
.y88{bottom:260.100000px;}
.y28{bottom:266.809680px;}
.y141{bottom:271.926900px;}
.y58{bottom:271.980000px;}
.yce{bottom:272.023920px;}
.y10b{bottom:276.825600px;}
.yf6{bottom:281.700000px;}
.ya1{bottom:283.320000px;}
.y87{bottom:283.500000px;}
.y27{bottom:285.886800px;}
.y140{bottom:289.212480px;}
.ycd{bottom:290.918880px;}
.y57{bottom:295.560000px;}
.y10a{bottom:300.042720px;}
.y26{bottom:304.781760px;}
.yf5{bottom:305.280000px;}
.y86{bottom:306.900000px;}
.ycc{bottom:309.996000px;}
.y13f{bottom:310.815720px;}
.y56{bottom:318.960000px;}
.y109{bottom:323.442000px;}
.y25{bottom:323.858880px;}
.y13e{bottom:328.101300px;}
.ycb{bottom:328.890960px;}
.yf4{bottom:329.400000px;}
.ya0{bottom:330.300000px;}
.y85{bottom:331.200000px;}
.y55{bottom:342.360000px;}
.y24{bottom:342.753840px;}
.y108{bottom:347.023440px;}
.yca{bottom:347.785920px;}
.y13d{bottom:349.883820px;}
.yf3{bottom:353.700000px;}
.y84{bottom:354.600000px;}
.y23{bottom:361.648800px;}
.y117{bottom:363.780000px;}
.y54{bottom:365.940000px;}
.yc9{bottom:366.863040px;}
.y13c{bottom:367.169400px;}
.y107{bottom:370.422720px;}
.yf2{bottom:377.100000px;}
.y83{bottom:378.180000px;}
.y9c{bottom:378.720000px;}
.y22{bottom:380.725920px;}
.yc8{bottom:385.758000px;}
.y13b{bottom:388.951920px;}
.y53{bottom:389.340000px;}
.y106{bottom:390.410640px;}
.y9e{bottom:392.040000px;}
.y21{bottom:399.620880px;}
.yf1{bottom:400.680000px;}
.y82{bottom:402.300000px;}
.y9f{bottom:403.020000px;}
.yc7{bottom:404.835120px;}
.y13a{bottom:406.237500px;}
.y52{bottom:412.920000px;}
.y20{bottom:418.698000px;}
.yc6{bottom:423.730080px;}
.yf0{bottom:424.800000px;}
.y81{bottom:425.880000px;}
.y9b{bottom:427.140000px;}
.y139{bottom:427.840740px;}
.y51{bottom:436.320000px;}
.y1f{bottom:437.592960px;}
.yc5{bottom:442.625040px;}
.y138{bottom:445.126320px;}
.yef{bottom:449.100000px;}
.y80{bottom:449.280000px;}
.y1e{bottom:456.670080px;}
.y9a{bottom:459.395280px;}
.y50{bottom:459.720000px;}
.yc4{bottom:466.024320px;}
.y137{bottom:466.908840px;}
.yee{bottom:472.500000px;}
.y7d{bottom:473.580000px;}
.y1d{bottom:479.887200px;}
.y99{bottom:482.976720px;}
.y4e{bottom:483.300000px;}
.y136{bottom:484.194420px;}
.yc3{bottom:485.101440px;}
.yed{bottom:496.080000px;}
.y7f{bottom:497.700000px;}
.y1c{bottom:498.964320px;}
.y135{bottom:501.480000px;}
.y98{bottom:506.376000px;}
.y4c{bottom:507.420000px;}
.yc2{bottom:508.500720px;}
.y1b{bottom:518.041440px;}
.yec{bottom:520.200000px;}
.y7c{bottom:522.000000px;}
.y134{bottom:523.037700px;}
.y97{bottom:525.635280px;}
.yc1{bottom:531.900000px;}
.y4b{bottom:539.714880px;}
.y133{bottom:540.323280px;}
.y1a{bottom:541.258560px;}
.yeb{bottom:544.500000px;}
.y96{bottom:544.530240px;}
.yc0{bottom:548.100000px;}
.y7b{bottom:554.253120px;}
.y4a{bottom:558.974160px;}
.y132{bottom:562.105800px;}
.y95{bottom:563.607360px;}
.y19{bottom:564.840000px;}
.ybf{bottom:571.680000px;}
.yea{bottom:576.809280px;}
.y7a{bottom:577.652400px;}
.y131{bottom:579.391380px;}
.y49{bottom:582.191280px;}
.y94{bottom:582.502320px;}
.y18{bottom:587.817720px;}
.ybe{bottom:595.080000px;}
.ye9{bottom:595.886400px;}
.y130{bottom:596.676960px;}
.y79{bottom:601.233840px;}
.y93{bottom:601.397280px;}
.y17{bottom:605.103300px;}
.y48{bottom:605.772720px;}
.y12f{bottom:613.962540px;}
.ye8{bottom:619.285680px;}
.ybd{bottom:619.380000px;}
.y78{bottom:620.310960px;}
.y92{bottom:620.474400px;}
.y47{bottom:624.849840px;}
.y16{bottom:626.885820px;}
.y12e{bottom:631.248120px;}
.y77{bottom:639.205920px;}
.y91{bottom:639.369360px;}
.ye7{bottom:642.684960px;}
.ybc{bottom:642.780000px;}
.y46{bottom:643.744800px;}
.y12d{bottom:648.354420px;}
.y15{bottom:648.668340px;}
.y76{bottom:658.283040px;}
.y90{bottom:658.446480px;}
.ye6{bottom:661.762080px;}
.y114{bottom:661.860000px;}
.y45{bottom:662.821920px;}
.y116{bottom:663.300000px;}
.y12c{bottom:665.578800px;}
.y14{bottom:665.953920px;}
.y105{bottom:666.167760px;}
.ybb{bottom:666.180000px;}
.y75{bottom:677.178000px;}
.y8f{bottom:677.341440px;}
.ye5{bottom:680.839200px;}
.y12b{bottom:682.864380px;}
.y13{bottom:683.239500px;}
.y44{bottom:686.039040px;}
.y104{bottom:686.155680px;}
.yba{bottom:690.480000px;}
.y74{bottom:696.255120px;}
.ye4{bottom:699.734160px;}
.y12{bottom:700.345800px;}
.y8e{bottom:700.558560px;}
.y12a{bottom:704.646900px;}
.y43{bottom:705.298320px;}
.yb9{bottom:713.880000px;}
.y73{bottom:715.150080px;}
.y11{bottom:717.631380px;}
.ye3{bottom:718.811280px;}
.y129{bottom:721.932480px;}
.y8d{bottom:724.140000px;}
.y42{bottom:724.193280px;}
.y72{bottom:734.045040px;}
.y10{bottom:734.916960px;}
.yb8{bottom:737.460000px;}
.ye2{bottom:737.706240px;}
.y41{bottom:743.088240px;}
.y8c{bottom:743.217120px;}
.y128{bottom:743.535720px;}
.yf{bottom:752.202540px;}
.y71{bottom:753.122160px;}
.ye1{bottom:756.601200px;}
.y127{bottom:760.821300px;}
.yb7{bottom:761.580000px;}
.y40{bottom:762.165360px;}
.y8b{bottom:762.294240px;}
.ye{bottom:769.488120px;}
.ye0{bottom:775.678320px;}
.y70{bottom:776.339280px;}
.y3f{bottom:781.060320px;}
.y8a{bottom:782.100000px;}
.y126{bottom:782.603820px;}
.yb6{bottom:785.880000px;}
.yd{bottom:786.773700px;}
.ydf{bottom:794.573280px;}
.y125{bottom:799.889400px;}
.y6f{bottom:799.920720px;}
.y3e{bottom:800.137440px;}
.yc{bottom:803.880000px;}
.yb5{bottom:810.180000px;}
.yde{bottom:813.650400px;}
.y3d{bottom:819.032400px;}
.y124{bottom:821.671920px;}
.y6e{bottom:823.330800px;}
.ydd{bottom:832.545360px;}
.y123{bottom:838.957500px;}
.y3c{bottom:842.431680px;}
.yb4{bottom:842.435280px;}
.y6d{bottom:842.590080px;}
.ydc{bottom:851.622480px;}
.y122{bottom:856.063800px;}
.yb{bottom:861.480000px;}
.y6c{bottom:861.485040px;}
.y3b{bottom:861.508800px;}
.yb3{bottom:865.834560px;}
.ydb{bottom:870.517440px;}
.y121{bottom:877.846320px;}
.y3a{bottom:880.403760px;}
.y6b{bottom:880.404480px;}
.ya{bottom:881.460000px;}
.yb2{bottom:889.233840px;}
.yda{bottom:889.412400px;}
.y120{bottom:895.131900px;}
.y39{bottom:899.480880px;}
.y6a{bottom:899.481600px;}
.y9{bottom:901.440000px;}
.yd9{bottom:908.489520px;}
.yb1{bottom:908.493120px;}
.y11f{bottom:916.914420px;}
.y8{bottom:916.915500px;}
.y69{bottom:918.376560px;}
.y38{bottom:922.698000px;}
.yb0{bottom:927.388080px;}
.yd8{bottom:931.706640px;}
.y11e{bottom:934.200000px;}
.y7{bottom:936.900000px;}
.y68{bottom:937.453680px;}
.y103{bottom:946.263600px;}
.y37{bottom:946.279440px;}
.yaf{bottom:946.465200px;}
.yd7{bottom:950.965920px;}
.y11d{bottom:956.167920px;}
.y67{bottom:956.348640px;}
.yae{bottom:965.360160px;}
.y6{bottom:966.602880px;}
.y102{bottom:969.662880px;}
.y36{bottom:969.678720px;}
.yd6{bottom:969.860880px;}
.y66{bottom:975.243600px;}
.y11c{bottom:979.567200px;}
.yad{bottom:984.255120px;}
.y5{bottom:985.680000px;}
.y101{bottom:988.742880px;}
.y35{bottom:988.755840px;}
.y65{bottom:998.642880px;}
.y11b{bottom:1003.148640px;}
.yac{bottom:1003.332240px;}
.y100{bottom:1007.825040px;}
.y34{bottom:1007.832960px;}
.y64{bottom:1017.720720px;}
.y11a{bottom:1022.225760px;}
.y4{bottom:1023.480000px;}
.yab{bottom:1026.549360px;}
.y33{bottom:1026.727920px;}
.yff{bottom:1026.731520px;}
.y63{bottom:1041.122160px;}
.y119{bottom:1041.302880px;}
.y32{bottom:1045.805040px;}
.yaa{bottom:1045.808640px;}
.y118{bottom:1064.520000px;}
.y62{bottom:1064.521440px;}
.y31{bottom:1064.700000px;}
.ya9{bottom:1064.703600px;}
.y2{bottom:1082.340000px;}
.y1{bottom:1099.260000px;}
.y30{bottom:1111.680000px;}
.h19{height:21.240000px;}
.h1a{height:21.241500px;}
.ha{height:23.400000px;}
.hc{height:23.401500px;}
.h9{height:23.578500px;}
.hb{height:23.580000px;}
.h7{height:25.013672px;}
.h3{height:37.520508px;}
.h2{height:41.522695px;}
.h1b{height:41.767495px;}
.hd{height:44.149219px;}
.h8{height:45.345937px;}
.h11{height:45.992812px;}
.h1{height:46.025156px;}
.h10{height:47.700000px;}
.h12{height:47.701500px;}
.h6{height:52.336136px;}
.h5{height:52.347656px;}
.he{height:52.677939px;}
.h14{height:52.721139px;}
.h16{height:52.729779px;}
.hf{height:52.732659px;}
.h15{height:52.744179px;}
.h17{height:52.755699px;}
.h18{height:52.764339px;}
.h13{height:52.775859px;}
.h4{height:57.668203px;}
.h0{height:1188.000000px;}
.w5{width:23.760000px;}
.w17{width:40.500000px;}
.w2d{width:48.420000px;}
.w2e{width:48.600000px;}
.w27{width:56.700000px;}
.w12{width:57.240000px;}
.w15{width:63.000000px;}
.w26{width:63.900000px;}
.w1c{width:64.441500px;}
.w1{width:74.520000px;}
.w18{width:74.700000px;}
.w13{width:74.701500px;}
.w10{width:75.241500px;}
.w1e{width:78.840000px;}
.w1b{width:80.640000px;}
.w1f{width:80.820000px;}
.w1d{width:81.000000px;}
.w20{width:81.358500px;}
.w21{width:81.360000px;}
.w4{width:82.801500px;}
.w2{width:84.960000px;}
.w7{width:84.961500px;}
.w6{width:85.138500px;}
.w14{width:85.140000px;}
.w29{width:88.380000px;}
.w19{width:91.620000px;}
.w3{width:95.580000px;}
.w8{width:95.760000px;}
.wf{width:100.800000px;}
.w1a{width:103.680000px;}
.w24{width:106.200000px;}
.wd{width:111.420000px;}
.we{width:111.780000px;}
.w22{width:117.000000px;}
.w9{width:133.200000px;}
.w2b{width:141.480000px;}
.w2a{width:152.820000px;}
.wb{width:159.480000px;}
.w25{width:201.960000px;}
.w28{width:223.200000px;}
.w23{width:308.160000px;}
.w16{width:317.338500px;}
.wc{width:324.000000px;}
.w11{width:373.498500px;}
.w2c{width:382.680000px;}
.wa{width:483.480000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x28{left:8.100000px;}
.x50{left:9.720000px;}
.x17{left:11.340000px;}
.xc{left:12.420000px;}
.xd{left:14.220000px;}
.xf{left:15.840000px;}
.x13{left:17.640000px;}
.x48{left:19.080000px;}
.x3d{left:20.160000px;}
.x42{left:21.600000px;}
.x1f{left:23.400000px;}
.x29{left:25.020000px;}
.x43{left:26.100000px;}
.x18{left:27.540000px;}
.x1c{left:28.620000px;}
.x1d{left:30.060000px;}
.x2e{left:31.860000px;}
.x1e{left:33.120000px;}
.x19{left:34.200000px;}
.x1b{left:37.260000px;}
.x47{left:38.340000px;}
.x1a{left:39.420000px;}
.x22{left:41.400000px;}
.x20{left:42.480000px;}
.x3e{left:45.720000px;}
.x21{left:47.880000px;}
.x5a{left:49.680000px;}
.x4d{left:53.100000px;}
.x51{left:54.360000px;}
.x39{left:55.440000px;}
.x4b{left:58.500000px;}
.x2f{left:62.460000px;}
.x4c{left:65.340000px;}
.x26{left:66.600000px;}
.x5d{left:70.020000px;}
.x2d{left:71.460000px;}
.x5c{left:75.060000px;}
.x57{left:84.600000px;}
.x2b{left:93.420000px;}
.x5b{left:99.180000px;}
.x59{left:103.320000px;}
.x1{left:108.000000px;}
.x53{left:111.600000px;}
.x3{left:115.740000px;}
.x5{left:120.600000px;}
.x61{left:134.460000px;}
.x65{left:139.476420px;}
.xb{left:140.938560px;}
.x25{left:150.660000px;}
.x52{left:156.060000px;}
.x35{left:170.100000px;}
.x7{left:182.340000px;}
.x58{left:191.340000px;}
.xa{left:214.200000px;}
.x31{left:215.280000px;}
.x2{left:217.620000px;}
.x36{left:225.180000px;}
.x8{left:232.200000px;}
.x37{left:238.320000px;}
.x4a{left:246.420000px;}
.xe{left:267.480000px;}
.x9{left:275.760000px;}
.x62{left:278.820000px;}
.x27{left:283.860000px;}
.x38{left:288.180000px;}
.x49{left:310.152960px;}
.x24{left:319.575600px;}
.x4{left:334.987920px;}
.x10{left:363.060000px;}
.x54{left:379.260000px;}
.x6{left:412.555500px;}
.x64{left:434.700000px;}
.x2a{left:443.340000px;}
.x11{left:445.860000px;}
.x3f{left:454.500000px;}
.x5f{left:459.002880px;}
.x55{left:467.640000px;}
.x12{left:469.620000px;}
.x44{left:522.720000px;}
.x4e{left:533.520000px;}
.x14{left:554.760000px;}
.x40{left:558.180000px;}
.x63{left:583.200000px;}
.x32{left:588.780000px;}
.x45{left:603.540000px;}
.x3a{left:605.520000px;}
.x4f{left:614.880000px;}
.x56{left:620.460000px;}
.x60{left:631.077840px;}
.x15{left:639.720000px;}
.x33{left:646.020000px;}
.x3b{left:662.760000px;}
.x2c{left:666.540000px;}
.x46{left:684.900000px;}
.x30{left:696.240000px;}
.x41{left:713.520000px;}
.x34{left:720.720000px;}
.x16{left:735.480000px;}
.x3c{left:737.460000px;}
.x5e{left:757.265040px;}
.x23{left:810.000000px;}
@media print{
.v5{vertical-align:-21.120000pt;}
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.127680pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.ls66{letter-spacing:-7.011840pt;}
.ls32{letter-spacing:-5.358080pt;}
.ls5e{letter-spacing:-4.462080pt;}
.ls33{letter-spacing:-4.121600pt;}
.ls30{letter-spacing:-3.944960pt;}
.ls37{letter-spacing:-3.297280pt;}
.ls64{letter-spacing:-3.134080pt;}
.ls67{letter-spacing:-3.027840pt;}
.ls3a{letter-spacing:-2.060800pt;}
.ls27{letter-spacing:-1.943040pt;}
.ls31{letter-spacing:-1.707520pt;}
.ls1b{letter-spacing:-1.648640pt;}
.ls65{letter-spacing:-1.593600pt;}
.ls44{letter-spacing:-1.530880pt;}
.ls38{letter-spacing:-1.354240pt;}
.ls39{letter-spacing:-1.295360pt;}
.ls3e{letter-spacing:-1.177600pt;}
.ls45{letter-spacing:-1.059840pt;}
.ls68{letter-spacing:-1.009280pt;}
.ls26{letter-spacing:-1.000960pt;}
.ls24{letter-spacing:-0.942080pt;}
.ls11{letter-spacing:-0.864000pt;}
.ls23{letter-spacing:-0.765440pt;}
.ls69{letter-spacing:-0.690560pt;}
.ls19{letter-spacing:-0.647680pt;}
.ls1a{letter-spacing:-0.529920pt;}
.ls22{letter-spacing:-0.480000pt;}
.ls62{letter-spacing:-0.478080pt;}
.ls61{letter-spacing:-0.424960pt;}
.ls18{letter-spacing:-0.412160pt;}
.ls5f{letter-spacing:-0.371840pt;}
.ls1c{letter-spacing:-0.353280pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls15{letter-spacing:-0.318720pt;}
.ls2f{letter-spacing:-0.294400pt;}
.ls25{letter-spacing:-0.235520pt;}
.ls5d{letter-spacing:-0.212480pt;}
.ls9{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.117760pt;}
.ls5c{letter-spacing:-0.106240pt;}
.lsb{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.074880pt;}
.ls17{letter-spacing:-0.053120pt;}
.lsa{letter-spacing:0.000000pt;}
.ls63{letter-spacing:0.053120pt;}
.ls2e{letter-spacing:0.058880pt;}
.lse{letter-spacing:0.074880pt;}
.ls7{letter-spacing:0.082432pt;}
.ls4c{letter-spacing:0.095616pt;}
.ls12{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.106240pt;}
.ls6{letter-spacing:0.117760pt;}
.ls2{letter-spacing:0.144000pt;}
.ls2d{letter-spacing:0.153088pt;}
.ls4{letter-spacing:0.159360pt;}
.ls1{letter-spacing:0.192000pt;}
.ls49{letter-spacing:0.212480pt;}
.ls20{letter-spacing:0.229632pt;}
.ls21{letter-spacing:0.235520pt;}
.lsf{letter-spacing:0.294400pt;}
.ls14{letter-spacing:0.318720pt;}
.ls0{letter-spacing:0.336000pt;}
.ls60{letter-spacing:0.424960pt;}
.ls2b{letter-spacing:0.512256pt;}
.ls16{letter-spacing:0.584320pt;}
.ls41{letter-spacing:0.647680pt;}
.ls3f{letter-spacing:0.677120pt;}
.ls58{letter-spacing:0.796800pt;}
.ls28{letter-spacing:1.295360pt;}
.ls57{letter-spacing:1.434240pt;}
.ls53{letter-spacing:1.450176pt;}
.ls52{letter-spacing:1.482048pt;}
.ls35{letter-spacing:1.901824pt;}
.ls3c{letter-spacing:1.943040pt;}
.ls48{letter-spacing:2.071680pt;}
.ls34{letter-spacing:2.531840pt;}
.ls3b{letter-spacing:2.555392pt;}
.ls4d{letter-spacing:2.709120pt;}
.ls4e{letter-spacing:2.740992pt;}
.ls43{letter-spacing:3.179520pt;}
.ls59{letter-spacing:3.346560pt;}
.ls4a{letter-spacing:3.984000pt;}
.ls1f{letter-spacing:4.474880pt;}
.ls4b{letter-spacing:4.621440pt;}
.ls42{letter-spacing:5.122560pt;}
.ls8{letter-spacing:5.204992pt;}
.ls3{letter-spacing:5.258880pt;}
.ls29{letter-spacing:6.417920pt;}
.ls5a{letter-spacing:6.533760pt;}
.ls5b{letter-spacing:6.586880pt;}
.ls3d{letter-spacing:8.302080pt;}
.ls4f{letter-spacing:8.499200pt;}
.ls36{letter-spacing:10.245120pt;}
.ls2a{letter-spacing:10.892800pt;}
.ls50{letter-spacing:11.686400pt;}
.ls2c{letter-spacing:12.146944pt;}
.ls40{letter-spacing:12.188160pt;}
.ls54{letter-spacing:12.961280pt;}
.ls1d{letter-spacing:14.072320pt;}
.ls55{letter-spacing:14.873600pt;}
.ls1e{letter-spacing:15.367680pt;}
.ls56{letter-spacing:16.148480pt;}
.ls46{letter-spacing:20.490240pt;}
.ls5{letter-spacing:37.927680pt;}
.ls47{letter-spacing:58.856960pt;}
.ls51{letter-spacing:59.494400pt;}
.wsf{word-spacing:-58.880000pt;}
.ws4f{word-spacing:-15.014400pt;}
.ws4a{word-spacing:-14.955520pt;}
.ws4c{word-spacing:-14.837760pt;}
.wse{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.602240pt;}
.ws51{word-spacing:-14.484480pt;}
.ws6b{word-spacing:-14.425600pt;}
.ws52{word-spacing:-14.307840pt;}
.ws4d{word-spacing:-14.190080pt;}
.ws4e{word-spacing:-14.072320pt;}
.ws4b{word-spacing:-13.954560pt;}
.ws80{word-spacing:-13.777920pt;}
.ws50{word-spacing:-13.719040pt;}
.wsa9{word-spacing:-13.704960pt;}
.ws91{word-spacing:-13.660160pt;}
.wsb{word-spacing:-13.598720pt;}
.wsaa{word-spacing:-13.492480pt;}
.wsa5{word-spacing:-13.439360pt;}
.ws92{word-spacing:-13.424640pt;}
.ws8{word-spacing:-13.386240pt;}
.wsa8{word-spacing:-13.375616pt;}
.wsad{word-spacing:-13.333120pt;}
.wsa{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.226880pt;}
.wsa3{word-spacing:-13.173760pt;}
.ws10{word-spacing:-13.071360pt;}
.wsa4{word-spacing:-13.067520pt;}
.ws6d{word-spacing:-13.012480pt;}
.ws9{word-spacing:-12.961280pt;}
.wsa7{word-spacing:-12.908160pt;}
.wsae{word-spacing:-12.855040pt;}
.ws53{word-spacing:-12.776960pt;}
.wsb3{word-spacing:-12.589440pt;}
.ws2{word-spacing:-12.336000pt;}
.wsb2{word-spacing:-12.270720pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1{word-spacing:-11.904000pt;}
.ws4{word-spacing:-11.808000pt;}
.wsaf{word-spacing:-11.686400pt;}
.ws3{word-spacing:-11.664000pt;}
.ws7f{word-spacing:-11.422720pt;}
.ws7{word-spacing:-11.136000pt;}
.ws6c{word-spacing:-10.775040pt;}
.wsb1{word-spacing:-10.252160pt;}
.wsac{word-spacing:-10.145920pt;}
.ws5{word-spacing:-9.280000pt;}
.wsa6{word-spacing:-8.817920pt;}
.wsab{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.wsb0{word-spacing:-6.268160pt;}
.ws68{word-spacing:-4.474880pt;}
.wsc6{word-spacing:-4.462080pt;}
.ws67{word-spacing:-4.062720pt;}
.ws6a{word-spacing:-3.944960pt;}
.ws66{word-spacing:-3.591680pt;}
.ws69{word-spacing:-3.415040pt;}
.ws9f{word-spacing:-3.297280pt;}
.ws8d{word-spacing:-3.179520pt;}
.ws27{word-spacing:-3.134080pt;}
.ws19{word-spacing:-3.061760pt;}
.wsc8{word-spacing:-2.709120pt;}
.ws61{word-spacing:-2.649600pt;}
.wsc5{word-spacing:-2.549760pt;}
.ws63{word-spacing:-2.531840pt;}
.wsc9{word-spacing:-2.496640pt;}
.ws84{word-spacing:-2.237440pt;}
.ws44{word-spacing:-2.178560pt;}
.wsbd{word-spacing:-2.071680pt;}
.ws5f{word-spacing:-2.060800pt;}
.ws45{word-spacing:-2.001920pt;}
.ws73{word-spacing:-1.943040pt;}
.ws46{word-spacing:-1.884160pt;}
.wscc{word-spacing:-1.859200pt;}
.ws60{word-spacing:-1.766400pt;}
.wscd{word-spacing:-1.699840pt;}
.ws70{word-spacing:-1.589760pt;}
.ws3b{word-spacing:-1.413120pt;}
.ws3c{word-spacing:-1.295360pt;}
.ws17{word-spacing:-0.942080pt;}
.ws15{word-spacing:-0.823680pt;}
.wsbe{word-spacing:-0.796800pt;}
.ws93{word-spacing:-0.765440pt;}
.ws5a{word-spacing:-0.647680pt;}
.ws9e{word-spacing:-0.588800pt;}
.ws24{word-spacing:-0.584320pt;}
.ws7c{word-spacing:-0.529920pt;}
.ws2a{word-spacing:-0.424960pt;}
.ws8e{word-spacing:-0.353280pt;}
.ws1d{word-spacing:-0.336000pt;}
.wsb8{word-spacing:-0.318720pt;}
.ws5c{word-spacing:-0.294400pt;}
.ws71{word-spacing:-0.235520pt;}
.ws16{word-spacing:-0.224640pt;}
.ws1b{word-spacing:-0.192000pt;}
.ws2e{word-spacing:-0.159360pt;}
.ws6e{word-spacing:-0.144000pt;}
.ws18{word-spacing:-0.117760pt;}
.ws25{word-spacing:-0.106240pt;}
.ws1e{word-spacing:-0.096000pt;}
.ws14{word-spacing:-0.074880pt;}
.ws6f{word-spacing:-0.058880pt;}
.ws12{word-spacing:0.000000pt;}
.ws28{word-spacing:0.053120pt;}
.ws86{word-spacing:0.058880pt;}
.wsce{word-spacing:0.106240pt;}
.ws1a{word-spacing:0.117760pt;}
.ws13{word-spacing:0.144000pt;}
.ws1c{word-spacing:0.192000pt;}
.wsc7{word-spacing:0.212480pt;}
.ws8b{word-spacing:0.294400pt;}
.ws20{word-spacing:0.318720pt;}
.ws11{word-spacing:0.336000pt;}
.ws83{word-spacing:0.353280pt;}
.ws36{word-spacing:0.412160pt;}
.wsc2{word-spacing:0.424960pt;}
.ws2b{word-spacing:0.478080pt;}
.ws54{word-spacing:0.480000pt;}
.ws48{word-spacing:0.529920pt;}
.wsd6{word-spacing:0.584320pt;}
.ws55{word-spacing:0.624000pt;}
.ws39{word-spacing:0.647680pt;}
.ws9d{word-spacing:0.883200pt;}
.wsd5{word-spacing:0.903040pt;}
.ws62{word-spacing:0.942080pt;}
.ws77{word-spacing:1.000960pt;}
.wsd0{word-spacing:1.115520pt;}
.ws3d{word-spacing:1.177600pt;}
.wscf{word-spacing:1.274880pt;}
.ws64{word-spacing:1.295360pt;}
.wsca{word-spacing:1.328000pt;}
.ws2d{word-spacing:1.487360pt;}
.ws2c{word-spacing:1.752960pt;}
.ws3a{word-spacing:1.825280pt;}
.wsb6{word-spacing:1.912320pt;}
.ws38{word-spacing:1.943040pt;}
.ws21{word-spacing:1.965440pt;}
.ws87{word-spacing:2.060800pt;}
.wsb7{word-spacing:2.124800pt;}
.ws9a{word-spacing:2.296320pt;}
.wsc0{word-spacing:2.390400pt;}
.ws56{word-spacing:2.472960pt;}
.ws82{word-spacing:2.590720pt;}
.ws29{word-spacing:2.602880pt;}
.wsbb{word-spacing:2.762240pt;}
.wsbc{word-spacing:3.027840pt;}
.ws89{word-spacing:3.061760pt;}
.ws47{word-spacing:3.120640pt;}
.ws7b{word-spacing:3.179520pt;}
.wsbf{word-spacing:3.187200pt;}
.ws49{word-spacing:3.238400pt;}
.wsd7{word-spacing:3.240320pt;}
.ws95{word-spacing:3.532800pt;}
.ws1f{word-spacing:3.665280pt;}
.ws7a{word-spacing:3.709440pt;}
.wsb9{word-spacing:3.824640pt;}
.ws37{word-spacing:3.827200pt;}
.ws7e{word-spacing:4.121600pt;}
.ws96{word-spacing:4.180480pt;}
.wsba{word-spacing:4.302720pt;}
.ws65{word-spacing:4.357120pt;}
.wsd1{word-spacing:4.462080pt;}
.ws57{word-spacing:4.474880pt;}
.ws75{word-spacing:4.592640pt;}
.ws7d{word-spacing:4.710400pt;}
.ws43{word-spacing:4.828160pt;}
.wsd2{word-spacing:4.940160pt;}
.ws9b{word-spacing:5.004800pt;}
.ws9c{word-spacing:5.122560pt;}
.ws23{word-spacing:5.152640pt;}
.wscb{word-spacing:5.312000pt;}
.ws22{word-spacing:5.577600pt;}
.wsa2{word-spacing:5.652480pt;}
.ws35{word-spacing:5.770240pt;}
.ws30{word-spacing:6.215040pt;}
.wsd8{word-spacing:6.268160pt;}
.ws74{word-spacing:6.300160pt;}
.ws3e{word-spacing:6.417920pt;}
.ws81{word-spacing:6.535680pt;}
.ws31{word-spacing:6.905600pt;}
.ws3f{word-spacing:6.947840pt;}
.ws42{word-spacing:7.065600pt;}
.ws2f{word-spacing:7.118080pt;}
.ws34{word-spacing:7.536640pt;}
.ws8c{word-spacing:7.654400pt;}
.ws8a{word-spacing:8.302080pt;}
.ws26{word-spacing:8.817920pt;}
.ws72{word-spacing:8.832000pt;}
.ws88{word-spacing:8.949760pt;}
.wsa0{word-spacing:9.303040pt;}
.wsa1{word-spacing:9.479680pt;}
.ws59{word-spacing:9.597440pt;}
.ws85{word-spacing:10.127360pt;}
.ws58{word-spacing:10.245120pt;}
.ws76{word-spacing:10.598400pt;}
.ws90{word-spacing:10.775040pt;}
.ws8f{word-spacing:10.892800pt;}
.wsc3{word-spacing:11.367680pt;}
.wsc1{word-spacing:11.527040pt;}
.wsc4{word-spacing:12.005120pt;}
.ws98{word-spacing:12.070400pt;}
.ws79{word-spacing:12.188160pt;}
.ws78{word-spacing:12.718080pt;}
.ws97{word-spacing:12.776960pt;}
.ws99{word-spacing:13.719040pt;}
.ws5b{word-spacing:14.072320pt;}
.ws40{word-spacing:14.602240pt;}
.ws94{word-spacing:15.367680pt;}
.ws5d{word-spacing:15.897600pt;}
.ws5e{word-spacing:16.015360pt;}
.wsd4{word-spacing:16.042240pt;}
.wsd3{word-spacing:16.201600pt;}
.ws41{word-spacing:18.429440pt;}
.wsb5{word-spacing:20.254720pt;}
.wsb4{word-spacing:20.490240pt;}
.ws33{word-spacing:37.821440pt;}
.ws32{word-spacing:37.980800pt;}
._f{margin-left:-8.789120pt;}
._b{margin-left:-7.236864pt;}
._a{margin-left:-5.590016pt;}
._4{margin-left:-4.665216pt;}
._3{margin-left:-3.219840pt;}
._8{margin-left:-2.277888pt;}
._1{margin-left:-1.327488pt;}
._0{width:1.200000pt;}
._9{width:2.799488pt;}
._5{width:4.090240pt;}
._d{width:5.358080pt;}
._6{width:6.885376pt;}
._10{width:8.569728pt;}
._11{width:9.766784pt;}
._e{width:11.035392pt;}
._c{width:12.423680pt;}
._13{width:15.761920pt;}
._12{width:18.891776pt;}
._7{width:37.926656pt;}
._2{width:596.521856pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y115{bottom:5.120000pt;}
.y4f{bottom:7.040000pt;}
.y4d{bottom:7.200000pt;}
.y7e{bottom:28.640000pt;}
.y9d{bottom:28.800000pt;}
.y3{bottom:70.560000pt;}
.y61{bottom:72.005760pt;}
.y60{bottom:89.920000pt;}
.y5f{bottom:102.240640pt;}
.yfe{bottom:110.087040pt;}
.ya8{bottom:110.880000pt;}
.y113{bottom:110.893440pt;}
.y2f{bottom:119.109760pt;}
.yd5{bottom:119.740800pt;}
.y5e{bottom:123.040000pt;}
.ya7{bottom:125.440000pt;}
.yfd{bottom:127.044480pt;}
.y112{bottom:128.012800pt;}
.y2e{bottom:136.067200pt;}
.yd4{bottom:136.536320pt;}
.y5d{bottom:136.800000pt;}
.yfc{bottom:143.852160pt;}
.y111{bottom:144.808320pt;}
.ya6{bottom:146.240000pt;}
.y2d{bottom:152.862720pt;}
.yd3{bottom:153.493760pt;}
.y5c{bottom:158.400000pt;}
.yfb{bottom:160.809600pt;}
.y110{bottom:161.765760pt;}
.ya5{bottom:167.040000pt;}
.y2c{bottom:169.820160pt;}
.yd2{bottom:170.289280pt;}
.yfa{bottom:177.605120pt;}
.y10f{bottom:178.561280pt;}
.y5b{bottom:179.200000pt;}
.y2b{bottom:186.615680pt;}
.ya4{bottom:188.640000pt;}
.yd1{bottom:191.088640pt;}
.yf9{bottom:194.400640pt;}
.y10e{bottom:195.356800pt;}
.y5a{bottom:200.000000pt;}
.y2a{bottom:203.573120pt;}
.y143{bottom:206.985600pt;}
.yd0{bottom:208.046080pt;}
.ya3{bottom:209.440000pt;}
.y10d{bottom:212.314240pt;}
.yf8{bottom:215.200000pt;}
.y89{bottom:216.640000pt;}
.y29{bottom:220.368640pt;}
.y59{bottom:220.960000pt;}
.y142{bottom:222.350560pt;}
.ycf{bottom:224.841600pt;}
.y10c{bottom:229.109760pt;}
.yf7{bottom:229.600000pt;}
.ya2{bottom:230.400000pt;}
.y88{bottom:231.200000pt;}
.y28{bottom:237.164160pt;}
.y141{bottom:241.712800pt;}
.y58{bottom:241.760000pt;}
.yce{bottom:241.799040pt;}
.y10b{bottom:246.067200pt;}
.yf6{bottom:250.400000pt;}
.ya1{bottom:251.840000pt;}
.y87{bottom:252.000000pt;}
.y27{bottom:254.121600pt;}
.y140{bottom:257.077760pt;}
.ycd{bottom:258.594560pt;}
.y57{bottom:262.720000pt;}
.y10a{bottom:266.704640pt;}
.y26{bottom:270.917120pt;}
.yf5{bottom:271.360000pt;}
.y86{bottom:272.800000pt;}
.ycc{bottom:275.552000pt;}
.y13f{bottom:276.280640pt;}
.y56{bottom:283.520000pt;}
.y109{bottom:287.504000pt;}
.y25{bottom:287.874560pt;}
.y13e{bottom:291.645600pt;}
.ycb{bottom:292.347520pt;}
.yf4{bottom:292.800000pt;}
.ya0{bottom:293.600000pt;}
.y85{bottom:294.400000pt;}
.y55{bottom:304.320000pt;}
.y24{bottom:304.670080pt;}
.y108{bottom:308.465280pt;}
.yca{bottom:309.143040pt;}
.y13d{bottom:311.007840pt;}
.yf3{bottom:314.400000pt;}
.y84{bottom:315.200000pt;}
.y23{bottom:321.465600pt;}
.y117{bottom:323.360000pt;}
.y54{bottom:325.280000pt;}
.yc9{bottom:326.100480pt;}
.y13c{bottom:326.372800pt;}
.y107{bottom:329.264640pt;}
.yf2{bottom:335.200000pt;}
.y83{bottom:336.160000pt;}
.y9c{bottom:336.640000pt;}
.y22{bottom:338.423040pt;}
.yc8{bottom:342.896000pt;}
.y13b{bottom:345.735040pt;}
.y53{bottom:346.080000pt;}
.y106{bottom:347.031680pt;}
.y9e{bottom:348.480000pt;}
.y21{bottom:355.218560pt;}
.yf1{bottom:356.160000pt;}
.y82{bottom:357.600000pt;}
.y9f{bottom:358.240000pt;}
.yc7{bottom:359.853440pt;}
.y13a{bottom:361.100000pt;}
.y52{bottom:367.040000pt;}
.y20{bottom:372.176000pt;}
.yc6{bottom:376.648960pt;}
.yf0{bottom:377.600000pt;}
.y81{bottom:378.560000pt;}
.y9b{bottom:379.680000pt;}
.y139{bottom:380.302880pt;}
.y51{bottom:387.840000pt;}
.y1f{bottom:388.971520pt;}
.yc5{bottom:393.444480pt;}
.y138{bottom:395.667840pt;}
.yef{bottom:399.200000pt;}
.y80{bottom:399.360000pt;}
.y1e{bottom:405.928960pt;}
.y9a{bottom:408.351360pt;}
.y50{bottom:408.640000pt;}
.yc4{bottom:414.243840pt;}
.y137{bottom:415.030080pt;}
.yee{bottom:420.000000pt;}
.y7d{bottom:420.960000pt;}
.y1d{bottom:426.566400pt;}
.y99{bottom:429.312640pt;}
.y4e{bottom:429.600000pt;}
.y136{bottom:430.395040pt;}
.yc3{bottom:431.201280pt;}
.yed{bottom:440.960000pt;}
.y7f{bottom:442.400000pt;}
.y1c{bottom:443.523840pt;}
.y135{bottom:445.760000pt;}
.y98{bottom:450.112000pt;}
.y4c{bottom:451.040000pt;}
.yc2{bottom:452.000640pt;}
.y1b{bottom:460.481280pt;}
.yec{bottom:462.400000pt;}
.y7c{bottom:464.000000pt;}
.y134{bottom:464.922400pt;}
.y97{bottom:467.231360pt;}
.yc1{bottom:472.800000pt;}
.y4b{bottom:479.746560pt;}
.y133{bottom:480.287360pt;}
.y1a{bottom:481.118720pt;}
.yeb{bottom:484.000000pt;}
.y96{bottom:484.026880pt;}
.yc0{bottom:487.200000pt;}
.y7b{bottom:492.669440pt;}
.y4a{bottom:496.865920pt;}
.y132{bottom:499.649600pt;}
.y95{bottom:500.984320pt;}
.y19{bottom:502.080000pt;}
.ybf{bottom:508.160000pt;}
.yea{bottom:512.719360pt;}
.y7a{bottom:513.468800pt;}
.y131{bottom:515.014560pt;}
.y49{bottom:517.503360pt;}
.y94{bottom:517.779840pt;}
.y18{bottom:522.504640pt;}
.ybe{bottom:528.960000pt;}
.ye9{bottom:529.676800pt;}
.y130{bottom:530.379520pt;}
.y79{bottom:534.430080pt;}
.y93{bottom:534.575360pt;}
.y17{bottom:537.869600pt;}
.y48{bottom:538.464640pt;}
.y12f{bottom:545.744480pt;}
.ye8{bottom:550.476160pt;}
.ybd{bottom:550.560000pt;}
.y78{bottom:551.387520pt;}
.y92{bottom:551.532800pt;}
.y47{bottom:555.422080pt;}
.y16{bottom:557.231840pt;}
.y12e{bottom:561.109440pt;}
.y77{bottom:568.183040pt;}
.y91{bottom:568.328320pt;}
.ye7{bottom:571.275520pt;}
.ybc{bottom:571.360000pt;}
.y46{bottom:572.217600pt;}
.y12d{bottom:576.315040pt;}
.y15{bottom:576.594080pt;}
.y76{bottom:585.140480pt;}
.y90{bottom:585.285760pt;}
.ye6{bottom:588.232960pt;}
.y114{bottom:588.320000pt;}
.y45{bottom:589.175040pt;}
.y116{bottom:589.600000pt;}
.y12c{bottom:591.625600pt;}
.y14{bottom:591.959040pt;}
.y105{bottom:592.149120pt;}
.ybb{bottom:592.160000pt;}
.y75{bottom:601.936000pt;}
.y8f{bottom:602.081280pt;}
.ye5{bottom:605.190400pt;}
.y12b{bottom:606.990560pt;}
.y13{bottom:607.324000pt;}
.y44{bottom:609.812480pt;}
.y104{bottom:609.916160pt;}
.yba{bottom:613.760000pt;}
.y74{bottom:618.893440pt;}
.ye4{bottom:621.985920pt;}
.y12{bottom:622.529600pt;}
.y8e{bottom:622.718720pt;}
.y12a{bottom:626.352800pt;}
.y43{bottom:626.931840pt;}
.yb9{bottom:634.560000pt;}
.y73{bottom:635.688960pt;}
.y11{bottom:637.894560pt;}
.ye3{bottom:638.943360pt;}
.y129{bottom:641.717760pt;}
.y8d{bottom:643.680000pt;}
.y42{bottom:643.727360pt;}
.y72{bottom:652.484480pt;}
.y10{bottom:653.259520pt;}
.yb8{bottom:655.520000pt;}
.ye2{bottom:655.738880pt;}
.y41{bottom:660.522880pt;}
.y8c{bottom:660.637440pt;}
.y128{bottom:660.920640pt;}
.yf{bottom:668.624480pt;}
.y71{bottom:669.441920pt;}
.ye1{bottom:672.534400pt;}
.y127{bottom:676.285600pt;}
.yb7{bottom:676.960000pt;}
.y40{bottom:677.480320pt;}
.y8b{bottom:677.594880pt;}
.ye{bottom:683.989440pt;}
.ye0{bottom:689.491840pt;}
.y70{bottom:690.079360pt;}
.y3f{bottom:694.275840pt;}
.y8a{bottom:695.200000pt;}
.y126{bottom:695.647840pt;}
.yb6{bottom:698.560000pt;}
.yd{bottom:699.354400pt;}
.ydf{bottom:706.287360pt;}
.y125{bottom:711.012800pt;}
.y6f{bottom:711.040640pt;}
.y3e{bottom:711.233280pt;}
.yc{bottom:714.560000pt;}
.yb5{bottom:720.160000pt;}
.yde{bottom:723.244800pt;}
.y3d{bottom:728.028800pt;}
.y124{bottom:730.375040pt;}
.y6e{bottom:731.849600pt;}
.ydd{bottom:740.040320pt;}
.y123{bottom:745.740000pt;}
.y3c{bottom:748.828160pt;}
.yb4{bottom:748.831360pt;}
.y6d{bottom:748.968960pt;}
.ydc{bottom:756.997760pt;}
.y122{bottom:760.945600pt;}
.yb{bottom:765.760000pt;}
.y6c{bottom:765.764480pt;}
.y3b{bottom:765.785600pt;}
.yb3{bottom:769.630720pt;}
.ydb{bottom:773.793280pt;}
.y121{bottom:780.307840pt;}
.y3a{bottom:782.581120pt;}
.y6b{bottom:782.581760pt;}
.ya{bottom:783.520000pt;}
.yb2{bottom:790.430080pt;}
.yda{bottom:790.588800pt;}
.y120{bottom:795.672800pt;}
.y39{bottom:799.538560pt;}
.y6a{bottom:799.539200pt;}
.y9{bottom:801.280000pt;}
.yd9{bottom:807.546240pt;}
.yb1{bottom:807.549440pt;}
.y11f{bottom:815.035040pt;}
.y8{bottom:815.036000pt;}
.y69{bottom:816.334720pt;}
.y38{bottom:820.176000pt;}
.yb0{bottom:824.344960pt;}
.yd8{bottom:828.183680pt;}
.y11e{bottom:830.400000pt;}
.y7{bottom:832.800000pt;}
.y68{bottom:833.292160pt;}
.y103{bottom:841.123200pt;}
.y37{bottom:841.137280pt;}
.yaf{bottom:841.302400pt;}
.yd7{bottom:845.303040pt;}
.y11d{bottom:849.927040pt;}
.y67{bottom:850.087680pt;}
.yae{bottom:858.097920pt;}
.y6{bottom:859.202560pt;}
.y102{bottom:861.922560pt;}
.y36{bottom:861.936640pt;}
.yd6{bottom:862.098560pt;}
.y66{bottom:866.883200pt;}
.y11c{bottom:870.726400pt;}
.yad{bottom:874.893440pt;}
.y5{bottom:876.160000pt;}
.y101{bottom:878.882560pt;}
.y35{bottom:878.894080pt;}
.y65{bottom:887.682560pt;}
.y11b{bottom:891.687680pt;}
.yac{bottom:891.850880pt;}
.y100{bottom:895.844480pt;}
.y34{bottom:895.851520pt;}
.y64{bottom:904.640640pt;}
.y11a{bottom:908.645120pt;}
.y4{bottom:909.760000pt;}
.yab{bottom:912.488320pt;}
.y33{bottom:912.647040pt;}
.yff{bottom:912.650240pt;}
.y63{bottom:925.441920pt;}
.y119{bottom:925.602560pt;}
.y32{bottom:929.604480pt;}
.yaa{bottom:929.607680pt;}
.y118{bottom:946.240000pt;}
.y62{bottom:946.241280pt;}
.y31{bottom:946.400000pt;}
.ya9{bottom:946.403200pt;}
.y2{bottom:962.080000pt;}
.y1{bottom:977.120000pt;}
.y30{bottom:988.160000pt;}
.h19{height:18.880000pt;}
.h1a{height:18.881333pt;}
.ha{height:20.800000pt;}
.hc{height:20.801333pt;}
.h9{height:20.958667pt;}
.hb{height:20.960000pt;}
.h7{height:22.234375pt;}
.h3{height:33.351562pt;}
.h2{height:36.909063pt;}
.h1b{height:37.126663pt;}
.hd{height:39.243750pt;}
.h8{height:40.307500pt;}
.h11{height:40.882500pt;}
.h1{height:40.911250pt;}
.h10{height:42.400000pt;}
.h12{height:42.401333pt;}
.h6{height:46.521010pt;}
.h5{height:46.531250pt;}
.he{height:46.824835pt;}
.h14{height:46.863235pt;}
.h16{height:46.870915pt;}
.hf{height:46.873475pt;}
.h15{height:46.883715pt;}
.h17{height:46.893955pt;}
.h18{height:46.901635pt;}
.h13{height:46.911875pt;}
.h4{height:51.260625pt;}
.h0{height:1056.000000pt;}
.w5{width:21.120000pt;}
.w17{width:36.000000pt;}
.w2d{width:43.040000pt;}
.w2e{width:43.200000pt;}
.w27{width:50.400000pt;}
.w12{width:50.880000pt;}
.w15{width:56.000000pt;}
.w26{width:56.800000pt;}
.w1c{width:57.281333pt;}
.w1{width:66.240000pt;}
.w18{width:66.400000pt;}
.w13{width:66.401333pt;}
.w10{width:66.881333pt;}
.w1e{width:70.080000pt;}
.w1b{width:71.680000pt;}
.w1f{width:71.840000pt;}
.w1d{width:72.000000pt;}
.w20{width:72.318667pt;}
.w21{width:72.320000pt;}
.w4{width:73.601333pt;}
.w2{width:75.520000pt;}
.w7{width:75.521333pt;}
.w6{width:75.678667pt;}
.w14{width:75.680000pt;}
.w29{width:78.560000pt;}
.w19{width:81.440000pt;}
.w3{width:84.960000pt;}
.w8{width:85.120000pt;}
.wf{width:89.600000pt;}
.w1a{width:92.160000pt;}
.w24{width:94.400000pt;}
.wd{width:99.040000pt;}
.we{width:99.360000pt;}
.w22{width:104.000000pt;}
.w9{width:118.400000pt;}
.w2b{width:125.760000pt;}
.w2a{width:135.840000pt;}
.wb{width:141.760000pt;}
.w25{width:179.520000pt;}
.w28{width:198.400000pt;}
.w23{width:273.920000pt;}
.w16{width:282.078667pt;}
.wc{width:288.000000pt;}
.w11{width:331.998667pt;}
.w2c{width:340.160000pt;}
.wa{width:429.760000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x28{left:7.200000pt;}
.x50{left:8.640000pt;}
.x17{left:10.080000pt;}
.xc{left:11.040000pt;}
.xd{left:12.640000pt;}
.xf{left:14.080000pt;}
.x13{left:15.680000pt;}
.x48{left:16.960000pt;}
.x3d{left:17.920000pt;}
.x42{left:19.200000pt;}
.x1f{left:20.800000pt;}
.x29{left:22.240000pt;}
.x43{left:23.200000pt;}
.x18{left:24.480000pt;}
.x1c{left:25.440000pt;}
.x1d{left:26.720000pt;}
.x2e{left:28.320000pt;}
.x1e{left:29.440000pt;}
.x19{left:30.400000pt;}
.x1b{left:33.120000pt;}
.x47{left:34.080000pt;}
.x1a{left:35.040000pt;}
.x22{left:36.800000pt;}
.x20{left:37.760000pt;}
.x3e{left:40.640000pt;}
.x21{left:42.560000pt;}
.x5a{left:44.160000pt;}
.x4d{left:47.200000pt;}
.x51{left:48.320000pt;}
.x39{left:49.280000pt;}
.x4b{left:52.000000pt;}
.x2f{left:55.520000pt;}
.x4c{left:58.080000pt;}
.x26{left:59.200000pt;}
.x5d{left:62.240000pt;}
.x2d{left:63.520000pt;}
.x5c{left:66.720000pt;}
.x57{left:75.200000pt;}
.x2b{left:83.040000pt;}
.x5b{left:88.160000pt;}
.x59{left:91.840000pt;}
.x1{left:96.000000pt;}
.x53{left:99.200000pt;}
.x3{left:102.880000pt;}
.x5{left:107.200000pt;}
.x61{left:119.520000pt;}
.x65{left:123.979040pt;}
.xb{left:125.278720pt;}
.x25{left:133.920000pt;}
.x52{left:138.720000pt;}
.x35{left:151.200000pt;}
.x7{left:162.080000pt;}
.x58{left:170.080000pt;}
.xa{left:190.400000pt;}
.x31{left:191.360000pt;}
.x2{left:193.440000pt;}
.x36{left:200.160000pt;}
.x8{left:206.400000pt;}
.x37{left:211.840000pt;}
.x4a{left:219.040000pt;}
.xe{left:237.760000pt;}
.x9{left:245.120000pt;}
.x62{left:247.840000pt;}
.x27{left:252.320000pt;}
.x38{left:256.160000pt;}
.x49{left:275.691520pt;}
.x24{left:284.067200pt;}
.x4{left:297.767040pt;}
.x10{left:322.720000pt;}
.x54{left:337.120000pt;}
.x6{left:366.716000pt;}
.x64{left:386.400000pt;}
.x2a{left:394.080000pt;}
.x11{left:396.320000pt;}
.x3f{left:404.000000pt;}
.x5f{left:408.002560pt;}
.x55{left:415.680000pt;}
.x12{left:417.440000pt;}
.x44{left:464.640000pt;}
.x4e{left:474.240000pt;}
.x14{left:493.120000pt;}
.x40{left:496.160000pt;}
.x63{left:518.400000pt;}
.x32{left:523.360000pt;}
.x45{left:536.480000pt;}
.x3a{left:538.240000pt;}
.x4f{left:546.560000pt;}
.x56{left:551.520000pt;}
.x60{left:560.958080pt;}
.x15{left:568.640000pt;}
.x33{left:574.240000pt;}
.x3b{left:589.120000pt;}
.x2c{left:592.480000pt;}
.x46{left:608.800000pt;}
.x30{left:618.880000pt;}
.x41{left:634.240000pt;}
.x34{left:640.640000pt;}
.x16{left:653.760000pt;}
.x3c{left:655.520000pt;}
.x5e{left:673.124480pt;}
.x23{left:720.000000pt;}
}




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