
    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_70d1b7422212ad38f87ee8e4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_481440d92be131aa286699e2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9418e583066de2873a798a8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e3c4e64992a86275668325e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919922;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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_87651dd24c75bb77b0f47700.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0c07580a9a769bae209bc549.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_496a6f279ef924178b773ca8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911133;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_583954f7b77a34e02b64d678.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.746094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f731e46d747fca0d6cf63e46.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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);}
.v1{vertical-align:-83.160000px;}
.v3{vertical-align:-82.080000px;}
.v5{vertical-align:-75.959640px;}
.v4{vertical-align:-69.859440px;}
.v6{vertical-align:-1.101240px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.120000px;}
.v7{vertical-align:55.062000px;}
.ls4c{letter-spacing:-0.526680px;}
.ls4b{letter-spacing:-0.480960px;}
.ls17{letter-spacing:-0.420840px;}
.ls65{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.329400px;}
.ls63{letter-spacing:-0.324000px;}
.ls31{letter-spacing:-0.263520px;}
.ls66{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.197640px;}
.ls57{letter-spacing:-0.191520px;}
.ls19{letter-spacing:-0.180360px;}
.ls62{letter-spacing:-0.162000px;}
.ls29{letter-spacing:-0.131760px;}
.ls14{letter-spacing:-0.120240px;}
.ls4e{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.095760px;}
.ls4{letter-spacing:-0.083880px;}
.ls7{letter-spacing:-0.072000px;}
.ls12{letter-spacing:-0.065880px;}
.ls18{letter-spacing:-0.060120px;}
.ls0{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.026352px;}
.ls16{letter-spacing:0.060120px;}
.ls13{letter-spacing:0.065880px;}
.ls5{letter-spacing:0.072000px;}
.ls64{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.120240px;}
.ls68{letter-spacing:0.151200px;}
.ls4d{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.167760px;}
.ls15{letter-spacing:0.180360px;}
.ls3b{letter-spacing:0.191520px;}
.ls1c{letter-spacing:0.197640px;}
.ls4f{letter-spacing:0.239400px;}
.ls2a{letter-spacing:0.263520px;}
.ls2b{letter-spacing:0.270108px;}
.ls1f{letter-spacing:0.461160px;}
.ls52{letter-spacing:0.678564px;}
.ls1e{letter-spacing:0.718092px;}
.ls51{letter-spacing:0.790560px;}
.ls39{letter-spacing:1.119960px;}
.lsd{letter-spacing:1.142280px;}
.ls58{letter-spacing:1.185840px;}
.ls6b{letter-spacing:1.242000px;}
.lsc{letter-spacing:1.863720px;}
.ls6e{letter-spacing:1.873800px;}
.ls30{letter-spacing:1.910520px;}
.ls1a{letter-spacing:2.176344px;}
.ls49{letter-spacing:2.239920px;}
.ls10{letter-spacing:2.585160px;}
.ls1d{letter-spacing:2.635200px;}
.ls59{letter-spacing:2.700000px;}
.ls5d{letter-spacing:3.078000px;}
.ls26{letter-spacing:3.359880px;}
.ls53{letter-spacing:4.413960px;}
.ls47{letter-spacing:4.860000px;}
.ls35{letter-spacing:5.138640px;}
.ls46{letter-spacing:5.238000px;}
.ls33{letter-spacing:5.645916px;}
.ls22{letter-spacing:5.863320px;}
.ls61{letter-spacing:5.940000px;}
.lsf{letter-spacing:6.192360px;}
.ls21{letter-spacing:6.192720px;}
.ls34{letter-spacing:6.449652px;}
.ls38{letter-spacing:6.588000px;}
.ls5c{letter-spacing:6.642000px;}
.ls9{letter-spacing:6.913800px;}
.ls5f{letter-spacing:7.020000px;}
.ls3a{letter-spacing:7.312680px;}
.ls2e{letter-spacing:7.642080px;}
.ls5a{letter-spacing:7.995960px;}
.ls23{letter-spacing:8.037360px;}
.ls5e{letter-spacing:8.137800px;}
.ls5b{letter-spacing:8.478000px;}
.ls11{letter-spacing:8.717400px;}
.ls2d{letter-spacing:9.322020px;}
.ls2c{letter-spacing:9.420840px;}
.ls69{letter-spacing:9.466200px;}
.ls20{letter-spacing:9.816120px;}
.ls36{letter-spacing:10.145520px;}
.ls6d{letter-spacing:10.260000px;}
.lse{letter-spacing:10.881720px;}
.ls54{letter-spacing:11.594880px;}
.ls6a{letter-spacing:12.112200px;}
.ls48{letter-spacing:13.439520px;}
.ls60{letter-spacing:14.958000px;}
.ls2f{letter-spacing:15.942960px;}
.ls24{letter-spacing:16.997040px;}
.ls37{letter-spacing:17.583372px;}
.ls55{letter-spacing:18.117000px;}
.ls56{letter-spacing:18.446400px;}
.ls67{letter-spacing:23.220000px;}
.ls4a{letter-spacing:36.761040px;}
.ls6c{letter-spacing:41.202000px;}
.ls1b{letter-spacing:68.844600px;}
.ls3{letter-spacing:161.640000px;}
.ls42{letter-spacing:171.266760px;}
.ls3f{letter-spacing:184.577400px;}
.ls3e{letter-spacing:187.115040px;}
.ls41{letter-spacing:193.961880px;}
.ls45{letter-spacing:194.680080px;}
.ls3c{letter-spacing:195.015240px;}
.ls40{letter-spacing:203.681520px;}
.ls43{letter-spacing:210.863520px;}
.ls44{letter-spacing:217.710360px;}
.ls3d{letter-spacing:218.811600px;}
.ls2{letter-spacing:431.640000px;}
.ls32{letter-spacing:519.002640px;}
.ls50{letter-spacing:664.789860px;}
.lsa{letter-spacing:877.030560px;}
.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;}
}
.wsaa{word-spacing:-65.880000px;}
.ws1{word-spacing:-21.137760px;}
.ws2{word-spacing:-18.369720px;}
.ws3{word-spacing:-18.000000px;}
.ws42{word-spacing:-16.667640px;}
.ws44{word-spacing:-16.535880px;}
.ws3f{word-spacing:-16.470000px;}
.ws45{word-spacing:-16.404120px;}
.ws43{word-spacing:-16.338240px;}
.ws40{word-spacing:-16.272360px;}
.ws41{word-spacing:-16.140600px;}
.ws12{word-spacing:-15.210360px;}
.ws10{word-spacing:-15.150240px;}
.wsf{word-spacing:-15.090120px;}
.wsa7{word-spacing:-15.030000px;}
.wsa8{word-spacing:-14.969880px;}
.ws11{word-spacing:-14.909760px;}
.wscd{word-spacing:-14.849640px;}
.ws13{word-spacing:-14.609160px;}
.ws3e{word-spacing:-14.559480px;}
.ws6e{word-spacing:-14.493600px;}
.ws6f{word-spacing:-14.427720px;}
.ws93{word-spacing:-14.361840px;}
.wsd1{word-spacing:-13.662000px;}
.wscc{word-spacing:-13.608000px;}
.wsca{word-spacing:-13.500000px;}
.wsd0{word-spacing:-13.392000px;}
.wscf{word-spacing:-13.284000px;}
.wscb{word-spacing:-13.176000px;}
.wsce{word-spacing:-13.122000px;}
.wsbc{word-spacing:-12.209400px;}
.wsbd{word-spacing:-12.161520px;}
.wsa9{word-spacing:-11.970000px;}
.ws4{word-spacing:-11.874240px;}
.wsbe{word-spacing:-11.778480px;}
.ws67{word-spacing:-0.461160px;}
.ws19{word-spacing:-0.420840px;}
.ws82{word-spacing:-0.329400px;}
.wsf9{word-spacing:-0.324000px;}
.wsb1{word-spacing:-0.287280px;}
.ws64{word-spacing:-0.263520px;}
.ws5{word-spacing:-0.251640px;}
.ws17{word-spacing:-0.197640px;}
.ws14{word-spacing:-0.162000px;}
.ws54{word-spacing:-0.131760px;}
.wsab{word-spacing:-0.120240px;}
.wse1{word-spacing:-0.108000px;}
.wsb0{word-spacing:-0.095760px;}
.ws7{word-spacing:-0.083880px;}
.ws8{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.065880px;}
.ws2d{word-spacing:-0.060120px;}
.ws0{word-spacing:0.000000px;}
.ws10e{word-spacing:0.054000px;}
.ws24{word-spacing:0.060120px;}
.ws53{word-spacing:0.065880px;}
.wsc{word-spacing:0.072000px;}
.ws6{word-spacing:0.083880px;}
.wsc2{word-spacing:0.095760px;}
.wsb5{word-spacing:0.108000px;}
.ws23{word-spacing:0.120240px;}
.ws60{word-spacing:0.131760px;}
.ws15{word-spacing:0.162000px;}
.wsae{word-spacing:0.180360px;}
.ws71{word-spacing:0.197640px;}
.wse5{word-spacing:0.216000px;}
.ws18{word-spacing:0.240480px;}
.ws68{word-spacing:0.263520px;}
.wsdc{word-spacing:0.270000px;}
.ws109{word-spacing:0.324000px;}
.wsb{word-spacing:0.360000px;}
.ws110{word-spacing:0.378000px;}
.wsa3{word-spacing:0.395280px;}
.ws1a{word-spacing:0.420840px;}
.wsa4{word-spacing:0.461160px;}
.wsb2{word-spacing:0.526680px;}
.wsa5{word-spacing:0.527040px;}
.ws4b{word-spacing:0.592920px;}
.wsc3{word-spacing:0.724680px;}
.ws104{word-spacing:0.756000px;}
.ws49{word-spacing:0.856440px;}
.ws105{word-spacing:0.918000px;}
.ws2f{word-spacing:0.961920px;}
.ws9f{word-spacing:0.988200px;}
.ws28{word-spacing:1.022040px;}
.ws79{word-spacing:1.054080px;}
.ws4a{word-spacing:1.119960px;}
.wsb6{word-spacing:1.185840px;}
.wsd3{word-spacing:1.242000px;}
.ws9e{word-spacing:1.251720px;}
.ws27{word-spacing:1.262520px;}
.ws70{word-spacing:1.317600px;}
.ws21{word-spacing:1.322640px;}
.ws8c{word-spacing:1.449360px;}
.ws107{word-spacing:1.458000px;}
.wsd2{word-spacing:1.581120px;}
.ws108{word-spacing:1.620000px;}
.ws3b{word-spacing:1.623240px;}
.ws46{word-spacing:1.683360px;}
.ws58{word-spacing:1.712880px;}
.ws5a{word-spacing:1.976400px;}
.ws20{word-spacing:1.983960px;}
.ws10f{word-spacing:1.998000px;}
.ws76{word-spacing:2.042280px;}
.wsbb{word-spacing:2.174040px;}
.ws77{word-spacing:2.305800px;}
.wsd5{word-spacing:2.322000px;}
.ws55{word-spacing:2.437560px;}
.wse2{word-spacing:2.700000px;}
.ws5d{word-spacing:2.701080px;}
.ws2e{word-spacing:2.765520px;}
.ws56{word-spacing:2.766960px;}
.wsd4{word-spacing:2.862000px;}
.wsba{word-spacing:2.898720px;}
.wsaf{word-spacing:3.006000px;}
.ws5b{word-spacing:3.030480px;}
.wse0{word-spacing:3.078000px;}
.ws75{word-spacing:3.162240px;}
.ws100{word-spacing:3.240000px;}
.ws6b{word-spacing:3.359880px;}
.ws6c{word-spacing:3.425760px;}
.wsac{word-spacing:3.426840px;}
.ws25{word-spacing:3.727440px;}
.wsad{word-spacing:3.787560px;}
.ws22{word-spacing:3.847680px;}
.ws7d{word-spacing:3.886920px;}
.ws7e{word-spacing:4.150440px;}
.wse4{word-spacing:4.158000px;}
.ws51{word-spacing:4.216320px;}
.wsf6{word-spacing:4.266000px;}
.wsc4{word-spacing:4.348080px;}
.wsc5{word-spacing:4.479840px;}
.ws47{word-spacing:4.545720px;}
.ws39{word-spacing:4.569120px;}
.ws6d{word-spacing:4.809240px;}
.ws38{word-spacing:4.809600px;}
.ws4d{word-spacing:4.941000px;}
.wsb9{word-spacing:5.072760px;}
.wsb4{word-spacing:5.076000px;}
.ws8b{word-spacing:5.204520px;}
.ws3d{word-spacing:5.230440px;}
.wsb3{word-spacing:5.238000px;}
.ws6a{word-spacing:5.270400px;}
.ws5c{word-spacing:5.402160px;}
.ws69{word-spacing:5.533920px;}
.wsed{word-spacing:5.562000px;}
.ws62{word-spacing:5.665680px;}
.wsa2{word-spacing:5.863320px;}
.ws61{word-spacing:5.929200px;}
.wseb{word-spacing:5.940000px;}
.ws84{word-spacing:5.995080px;}
.ws2a{word-spacing:6.012000px;}
.ws2c{word-spacing:6.252480px;}
.ws85{word-spacing:6.258600px;}
.ws106{word-spacing:6.318000px;}
.ws96{word-spacing:6.390360px;}
.ws10a{word-spacing:6.426000px;}
.ws9d{word-spacing:6.522120px;}
.ws2b{word-spacing:6.613200px;}
.wsdd{word-spacing:6.642000px;}
.ws95{word-spacing:6.653880px;}
.ws3a{word-spacing:6.673320px;}
.ws52{word-spacing:6.719760px;}
.wsde{word-spacing:6.858000px;}
.wsd{word-spacing:6.912000px;}
.ws26{word-spacing:6.973920px;}
.wse8{word-spacing:7.020000px;}
.ws86{word-spacing:7.115040px;}
.ws88{word-spacing:7.246800px;}
.ws87{word-spacing:7.378560px;}
.ws1b{word-spacing:7.394760px;}
.ws50{word-spacing:7.444440px;}
.ws1e{word-spacing:7.454880px;}
.wsd8{word-spacing:7.515000px;}
.ws4f{word-spacing:7.707960px;}
.wsdb{word-spacing:7.722000px;}
.ws4c{word-spacing:7.839720px;}
.wsa{word-spacing:7.848000px;}
.ws1c{word-spacing:7.935840px;}
.wse3{word-spacing:8.100000px;}
.ws63{word-spacing:8.103240px;}
.ws1d{word-spacing:8.116200px;}
.wsc0{word-spacing:8.169120px;}
.wsbf{word-spacing:8.300880px;}
.wsd9{word-spacing:8.316000px;}
.wsc1{word-spacing:8.432640px;}
.wsda{word-spacing:8.478000px;}
.ws94{word-spacing:8.564400px;}
.ws31{word-spacing:8.597160px;}
.wsc6{word-spacing:8.696160px;}
.ws78{word-spacing:8.827920px;}
.ws32{word-spacing:8.837640px;}
.wsa0{word-spacing:8.893800px;}
.ws33{word-spacing:8.897760px;}
.wsa6{word-spacing:9.025560px;}
.wsa1{word-spacing:9.157320px;}
.ws48{word-spacing:9.223200px;}
.ws36{word-spacing:9.378720px;}
.ws57{word-spacing:9.486720px;}
.wsf7{word-spacing:9.558000px;}
.ws37{word-spacing:9.559080px;}
.ws5e{word-spacing:9.618480px;}
.ws3c{word-spacing:9.619200px;}
.ws5f{word-spacing:9.882000px;}
.ws9a{word-spacing:9.947880px;}
.ws10d{word-spacing:10.152000px;}
.ws99{word-spacing:10.211400px;}
.ws10c{word-spacing:10.260000px;}
.ws35{word-spacing:10.280520px;}
.ws4e{word-spacing:10.343160px;}
.ws30{word-spacing:10.581120px;}
.wse9{word-spacing:10.638000px;}
.ws9{word-spacing:10.872000px;}
.ws1f{word-spacing:10.941840px;}
.wsfa{word-spacing:10.962000px;}
.ws29{word-spacing:11.001960px;}
.ws72{word-spacing:11.397240px;}
.ws73{word-spacing:11.529000px;}
.ws83{word-spacing:11.660760px;}
.wsf3{word-spacing:11.718000px;}
.ws98{word-spacing:11.792520px;}
.ws34{word-spacing:12.024000px;}
.wsfe{word-spacing:12.042000px;}
.ws59{word-spacing:12.056040px;}
.wsfc{word-spacing:12.258000px;}
.wsff{word-spacing:12.420000px;}
.wsb8{word-spacing:12.517200px;}
.wsfd{word-spacing:12.528000px;}
.wsb7{word-spacing:12.780720px;}
.ws7a{word-spacing:13.241880px;}
.ws7c{word-spacing:13.373640px;}
.ws8f{word-spacing:13.505400px;}
.ws7b{word-spacing:13.637160px;}
.ws8e{word-spacing:14.625360px;}
.ws8d{word-spacing:14.888880px;}
.wsef{word-spacing:14.958000px;}
.wsea{word-spacing:15.282000px;}
.ws8a{word-spacing:15.481800px;}
.ws89{word-spacing:15.613560px;}
.ws92{word-spacing:16.074720px;}
.ws91{word-spacing:16.206480px;}
.ws90{word-spacing:16.338240px;}
.ws66{word-spacing:16.470000px;}
.wse{word-spacing:16.848000px;}
.ws65{word-spacing:16.931160px;}
.ws97{word-spacing:17.458200px;}
.ws9c{word-spacing:17.524080px;}
.wsc7{word-spacing:17.655840px;}
.ws9b{word-spacing:17.787600px;}
.wsc9{word-spacing:17.919360px;}
.wsc8{word-spacing:18.182880px;}
.ws81{word-spacing:18.248760px;}
.ws7f{word-spacing:18.644040px;}
.ws80{word-spacing:18.775800px;}
.wsf5{word-spacing:23.598000px;}
.wsf4{word-spacing:23.706000px;}
.ws74{word-spacing:26.417880px;}
.wsd6{word-spacing:30.402000px;}
.wsd7{word-spacing:30.510000px;}
.wsf8{word-spacing:37.260000px;}
.ws10b{word-spacing:41.202000px;}
.wsfb{word-spacing:41.958000px;}
.wse6{word-spacing:44.280000px;}
.wse7{word-spacing:44.442000px;}
.wsf2{word-spacing:57.996000px;}
.wsf1{word-spacing:67.122000px;}
.wsec{word-spacing:70.740000px;}
.ws101{word-spacing:71.442000px;}
.ws103{word-spacing:71.550000px;}
.ws102{word-spacing:71.604000px;}
.wsdf{word-spacing:84.780000px;}
.wsf0{word-spacing:94.878000px;}
.wsee{word-spacing:141.534000px;}
._0{margin-left:-1.031724px;}
._1{width:1.006560px;}
._8{width:2.150496px;}
._6{width:4.055076px;}
._7{width:5.511564px;}
._4{width:6.776028px;}
._3{width:7.847172px;}
._c{width:9.289080px;}
._2{width:10.906200px;}
._9{width:12.103560px;}
._e{width:13.487040px;}
._b{width:14.493600px;}
._5{width:16.487172px;}
._a{width:18.686376px;}
._12{width:23.544000px;}
._10{width:30.510000px;}
._11{width:44.069724px;}
._13{width:71.334000px;}
._f{width:418.518000px;}
._d{width:847.546200px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(255,102,0);}
.fc2{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs6{font-size:47.880000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.880000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yd8{bottom:2.880000px;}
.ye4{bottom:2.970000px;}
.yd6{bottom:3.240000px;}
.y119{bottom:16.740000px;}
.yee{bottom:30.510000px;}
.yd9{bottom:58.050000px;}
.y113{bottom:58.140000px;}
.y5{bottom:66.525004px;}
.yde{bottom:85.680000px;}
.yb1{bottom:90.937800px;}
.y191{bottom:96.111000px;}
.y4{bottom:97.125005px;}
.y135{bottom:100.155780px;}
.y60{bottom:100.826280px;}
.y88{bottom:104.437530px;}
.y105{bottom:108.339030px;}
.yb0{bottom:109.927710px;}
.y190{bottom:111.595500px;}
.y5f{bottom:118.020600px;}
.y134{bottom:119.063340px;}
.y15e{bottom:123.300000px;}
.y87{bottom:123.345090px;}
.y18f{bottom:127.161000px;}
.y104{bottom:128.498310px;}
.yaf{bottom:128.917620px;}
.y36{bottom:129.060000px;}
.y5e{bottom:135.305100px;}
.y133{bottom:138.053250px;}
.y15d{bottom:138.865500px;}
.y20{bottom:139.264499px;}
.y86{bottom:142.335000px;}
.y18e{bottom:142.645500px;}
.y103{bottom:147.488220px;}
.yae{bottom:147.907530px;}
.y35{bottom:149.760000px;}
.y5d{bottom:152.589600px;}
.y15c{bottom:154.350000px;}
.y132{bottom:157.043160px;}
.y18d{bottom:158.211000px;}
.y85{bottom:161.324910px;}
.y102{bottom:166.478130px;}
.yad{bottom:166.897440px;}
.y5c{bottom:169.783920px;}
.y15b{bottom:169.915500px;}
.y34{bottom:170.460000px;}
.y18c{bottom:173.695500px;}
.y131{bottom:176.033070px;}
.y84{bottom:180.314820px;}
.y101{bottom:185.385690px;}
.y15a{bottom:185.400000px;}
.yac{bottom:185.887350px;}
.y5b{bottom:187.068420px;}
.y18b{bottom:189.261000px;}
.y33{bottom:191.160000px;}
.y130{bottom:195.022980px;}
.y17{bottom:196.933500px;}
.y83{bottom:199.304730px;}
.y159{bottom:200.965500px;}
.y5a{bottom:204.352920px;}
.y100{bottom:204.375600px;}
.yd4{bottom:204.434910px;}
.y18a{bottom:204.745500px;}
.yab{bottom:204.794910px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y32{bottom:211.860000px;}
.y12f{bottom:214.012890px;}
.y158{bottom:216.450000px;}
.y82{bottom:218.212290px;}
.y189{bottom:220.311000px;}
.y59{bottom:221.547240px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.yff{bottom:223.365510px;}
.yd3{bottom:223.424820px;}
.yaa{bottom:223.784820px;}
.y157{bottom:232.015500px;}
.y12e{bottom:232.920450px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y188{bottom:235.795500px;}
.y81{bottom:237.202200px;}
.yfe{bottom:242.355420px;}
.yd2{bottom:242.414730px;}
.ya9{bottom:242.774730px;}
.y156{bottom:247.500000px;}
.y58{bottom:247.834710px;}
.y31{bottom:250.560000px;}
.y187{bottom:251.361000px;}
.y12d{bottom:251.910360px;}
.y80{bottom:256.192110px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.yfd{bottom:261.345330px;}
.yd1{bottom:261.404640px;}
.ya8{bottom:261.764640px;}
.y155{bottom:263.065500px;}
.y57{bottom:265.029030px;}
.y186{bottom:266.845500px;}
.y12c{bottom:270.900270px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y30{bottom:274.320000px;}
.y7f{bottom:275.182020px;}
.y154{bottom:278.550000px;}
.yd0{bottom:280.312200px;}
.yfc{bottom:280.335240px;}
.ya7{bottom:280.754550px;}
.y56{bottom:282.313530px;}
.y185{bottom:282.411000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y12b{bottom:289.890180px;}
.y153{bottom:294.115500px;}
.y7e{bottom:294.171930px;}
.y184{bottom:297.895500px;}
.y2f{bottom:298.170000px;}
.yfb{bottom:299.242800px;}
.ycf{bottom:299.302110px;}
.y55{bottom:299.598030px;}
.ya6{bottom:299.662110px;}
.y12a{bottom:308.880090px;}
.y152{bottom:309.600000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y7d{bottom:313.161840px;}
.y183{bottom:313.461000px;}
.y54{bottom:316.792350px;}
.yfa{bottom:318.232710px;}
.yce{bottom:318.292020px;}
.ya5{bottom:318.652020px;}
.y2e{bottom:321.930000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y151{bottom:325.165500px;}
.y129{bottom:327.870000px;}
.y182{bottom:328.945500px;}
.y7c{bottom:332.069400px;}
.y53{bottom:334.076850px;}
.yf9{bottom:337.222620px;}
.ycd{bottom:337.281930px;}
.ya4{bottom:337.641930px;}
.y150{bottom:340.650000px;}
.y181{bottom:344.430000px;}
.y2d{bottom:345.780000px;}
.y128{bottom:347.490000px;}
.ye{bottom:348.133500px;}
.y7b{bottom:351.059310px;}
.y52{bottom:351.361350px;}
.yf8{bottom:356.212530px;}
.y14f{bottom:356.215500px;}
.ycc{bottom:356.271840px;}
.ya3{bottom:356.631840px;}
.y180{bottom:359.995500px;}
.y127{bottom:367.375500px;}
.y51{bottom:368.555670px;}
.y7a{bottom:370.049220px;}
.y14e{bottom:371.700000px;}
.yf7{bottom:375.202440px;}
.ycb{bottom:375.261750px;}
.y17f{bottom:375.480000px;}
.ya2{bottom:375.621750px;}
.y126{bottom:382.860000px;}
.yd{bottom:386.785499px;}
.y14d{bottom:387.265500px;}
.y79{bottom:389.039130px;}
.y17e{bottom:391.045500px;}
.yf6{bottom:394.110000px;}
.yca{bottom:394.169310px;}
.ya1{bottom:394.529310px;}
.y50{bottom:394.843140px;}
.y122{bottom:395.910000px;}
.y14c{bottom:402.750000px;}
.y2c{bottom:405.360000px;}
.y125{bottom:405.724500px;}
.y17d{bottom:406.530000px;}
.y78{bottom:408.029040px;}
.yc{bottom:408.044999px;}
.y4f{bottom:412.127640px;}
.y123{bottom:412.560000px;}
.yf5{bottom:412.645500px;}
.yc9{bottom:413.159220px;}
.ya0{bottom:413.519220px;}
.y14b{bottom:418.234500px;}
.y124{bottom:419.490000px;}
.y17c{bottom:422.095500px;}
.y2b{bottom:426.060000px;}
.y77{bottom:426.936600px;}
.yf4{bottom:428.130000px;}
.y4e{bottom:429.321960px;}
.yc8{bottom:432.149130px;}
.y9f{bottom:432.509130px;}
.y14a{bottom:433.800000px;}
.y17b{bottom:437.580000px;}
.y120{bottom:438.030000px;}
.yf2{bottom:441.180000px;}
.y76{bottom:445.926510px;}
.y4d{bottom:446.606460px;}
.y2a{bottom:447.294960px;}
.y121{bottom:447.840000px;}
.y149{bottom:449.284500px;}
.yc7{bottom:451.139040px;}
.y9e{bottom:451.499040px;}
.y17a{bottom:453.145500px;}
.yf3{bottom:457.830000px;}
.y148{bottom:464.850000px;}
.y75{bottom:464.916420px;}
.y11e{bottom:466.380000px;}
.y179{bottom:468.630000px;}
.yc6{bottom:470.128950px;}
.y9d{bottom:470.488950px;}
.y29{bottom:471.515310px;}
.y4c{bottom:472.893930px;}
.y11f{bottom:476.190000px;}
.y147{bottom:480.334500px;}
.yf0{bottom:483.300000px;}
.y74{bottom:483.906330px;}
.y178{bottom:484.195500px;}
.yc5{bottom:489.036510px;}
.y9c{bottom:489.478860px;}
.y4b{bottom:490.088250px;}
.y11d{bottom:494.730000px;}
.y28{bottom:495.630810px;}
.y146{bottom:495.900000px;}
.y177{bottom:499.680000px;}
.yf1{bottom:500.040000px;}
.y73{bottom:502.896240px;}
.y4a{bottom:507.372750px;}
.yc4{bottom:508.026420px;}
.y9b{bottom:508.386420px;}
.y145{bottom:511.384500px;}
.y176{bottom:515.245500px;}
.y27{bottom:520.018920px;}
.yb{bottom:520.864502px;}
.y72{bottom:521.886150px;}
.y11b{bottom:523.080000px;}
.y49{bottom:524.657250px;}
.yed{bottom:525.420000px;}
.y144{bottom:526.950000px;}
.yc3{bottom:527.016330px;}
.y9a{bottom:527.376330px;}
.y175{bottom:530.730000px;}
.y11c{bottom:532.890000px;}
.ya{bottom:538.864499px;}
.y71{bottom:540.793710px;}
.y48{bottom:541.851570px;}
.yef{bottom:542.160000px;}
.y143{bottom:542.434500px;}
.y26{bottom:544.595760px;}
.yc2{bottom:546.006240px;}
.y174{bottom:546.295500px;}
.y99{bottom:546.366240px;}
.y118{bottom:551.430000px;}
.y9{bottom:556.864499px;}
.y142{bottom:558.000000px;}
.y47{bottom:559.136070px;}
.y70{bottom:559.783620px;}
.y11a{bottom:561.240000px;}
.y173{bottom:561.780000px;}
.yc1{bottom:564.996150px;}
.y98{bottom:565.356150px;}
.ye6{bottom:567.630000px;}
.y25{bottom:569.256480px;}
.y141{bottom:573.655500px;}
.y46{bottom:576.420570px;}
.y172{bottom:577.345500px;}
.y6f{bottom:578.773530px;}
.y117{bottom:579.780000px;}
.yc0{bottom:583.986060px;}
.yeb{bottom:584.286480px;}
.y97{bottom:584.346060px;}
.y140{bottom:590.940000px;}
.y171{bottom:592.830000px;}
.y24{bottom:593.644590px;}
.y116{bottom:596.529000px;}
.y6e{bottom:597.763440px;}
.yea{bottom:598.147740px;}
.ybf{bottom:602.893620px;}
.y96{bottom:603.253620px;}
.y13f{bottom:608.040000px;}
.y170{bottom:608.395500px;}
.y115{bottom:610.294500px;}
.yec{bottom:611.730000px;}
.ye9{bottom:611.913240px;}
.y6d{bottom:616.753350px;}
.y45{bottom:619.902360px;}
.ybe{bottom:621.883530px;}
.y95{bottom:622.243530px;}
.y13e{bottom:623.524500px;}
.y16f{bottom:623.880000px;}
.y114{bottom:624.060000px;}
.ye8{bottom:625.678740px;}
.y6c{bottom:635.660910px;}
.y44{bottom:637.096680px;}
.y23{bottom:639.086580px;}
.y13d{bottom:639.090000px;}
.y16e{bottom:639.445500px;}
.ye7{bottom:639.540000px;}
.ybd{bottom:640.873440px;}
.y94{bottom:641.233440px;}
.y8{bottom:645.510000px;}
.y112{bottom:649.530000px;}
.y43{bottom:654.381180px;}
.y13c{bottom:654.574500px;}
.y6b{bottom:654.650820px;}
.y16d{bottom:654.930000px;}
.ybc{bottom:659.863350px;}
.y93{bottom:660.223350px;}
.ydd{bottom:664.920000px;}
.y111{bottom:666.279000px;}
.y7{bottom:666.771000px;}
.y13b{bottom:670.140000px;}
.y16c{bottom:670.495500px;}
.y42{bottom:671.485320px;}
.y6a{bottom:673.640730px;}
.ybb{bottom:678.853260px;}
.y92{bottom:679.213260px;}
.y110{bottom:680.044500px;}
.ye3{bottom:681.672240px;}
.y22{bottom:684.360810px;}
.y13a{bottom:685.624500px;}
.y16b{bottom:685.980000px;}
.y41{bottom:688.860000px;}
.y69{bottom:692.630640px;}
.y10f{bottom:693.810000px;}
.ye2{bottom:695.437740px;}
.yba{bottom:697.760820px;}
.y91{bottom:698.203170px;}
.y139{bottom:701.190000px;}
.y16a{bottom:701.545500px;}
.y40{bottom:706.405770px;}
.ye5{bottom:709.020000px;}
.ye1{bottom:709.203240px;}
.y68{bottom:711.620550px;}
.yb9{bottom:716.750730px;}
.y169{bottom:717.030000px;}
.y90{bottom:717.110730px;}
.y10e{bottom:719.280000px;}
.ye0{bottom:723.064500px;}
.y21{bottom:724.770000px;}
.y3f{bottom:725.395680px;}
.y6{bottom:726.298500px;}
.y67{bottom:730.610460px;}
.y168{bottom:732.595500px;}
.yb8{bottom:735.740640px;}
.y138{bottom:736.462980px;}
.ydf{bottom:736.830000px;}
.y10d{bottom:737.275500px;}
.y3e{bottom:744.385590px;}
.y167{bottom:748.080000px;}
.y66{bottom:749.518020px;}
.y3{bottom:752.599495px;}
.y10c{bottom:754.560000px;}
.yb7{bottom:754.730550px;}
.y8f{bottom:755.090550px;}
.y137{bottom:755.452890px;}
.yd7{bottom:762.300000px;}
.y166{bottom:763.645500px;}
.y3d{bottom:763.737840px;}
.y10b{bottom:772.021080px;}
.yb6{bottom:773.720460px;}
.y8e{bottom:774.080460px;}
.y136{bottom:774.442800px;}
.ydc{bottom:778.953240px;}
.y165{bottom:779.130000px;}
.y3c{bottom:783.090090px;}
.y65{bottom:787.497840px;}
.y10a{bottom:791.010990px;}
.yb5{bottom:792.710370px;}
.ydb{bottom:792.814500px;}
.y8d{bottom:793.432710px;}
.y164{bottom:794.695500px;}
.y3b{bottom:802.080000px;}
.y64{bottom:806.487750px;}
.yda{bottom:806.580000px;}
.y109{bottom:810.000900px;}
.y163{bottom:810.180000px;}
.yb4{bottom:811.617930px;}
.y8c{bottom:812.422620px;}
.y3a{bottom:820.534500px;}
.y162{bottom:825.745500px;}
.y63{bottom:825.840000px;}
.y108{bottom:828.990810px;}
.y8b{bottom:831.330180px;}
.yd5{bottom:832.050000px;}
.y39{bottom:836.100000px;}
.y161{bottom:841.230000px;}
.y107{bottom:847.980720px;}
.yb3{bottom:849.597750px;}
.y8a{bottom:850.320090px;}
.y38{bottom:851.584500px;}
.y62{bottom:853.465500px;}
.y160{bottom:856.795500px;}
.y37{bottom:867.960000px;}
.y106{bottom:868.140000px;}
.yb2{bottom:868.950000px;}
.y89{bottom:869.310000px;}
.y61{bottom:870.750000px;}
.y15f{bottom:872.280000px;}
.y2{bottom:879.369000px;}
.y1{bottom:966.726000px;}
.h1f{height:13.770000px;}
.h17{height:17.191500px;}
.h22{height:27.628500px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h23{height:41.398500px;}
.h1d{height:41.400000px;}
.h7{height:45.960000px;}
.h13{height:46.193203px;}
.h19{height:46.991602px;}
.h1b{height:47.709802px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h25{height:52.971680px;}
.h11{height:52.998047px;}
.h2{height:55.152000px;}
.hd{height:58.814297px;}
.h15{height:59.004492px;}
.h14{height:60.589687px;}
.h12{height:64.657617px;}
.h16{height:66.394687px;}
.h1e{height:68.710781px;}
.h18{height:68.938500px;}
.h21{height:69.030000px;}
.h20{height:69.031500px;}
.he{height:70.628906px;}
.h10{height:70.664062px;}
.hf{height:72.562500px;}
.h5{height:78.132000px;}
.hc{height:84.535312px;}
.h1c{height:96.570000px;}
.h1a{height:96.571500px;}
.h24{height:102.053602px;}
.h4{height:119.055004px;}
.ha{height:969.570000px;}
.hb{height:969.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w7{width:46.710000px;}
.wd{width:52.650000px;}
.wb{width:57.328500px;}
.w9{width:58.500000px;}
.w6{width:60.838500px;}
.wa{width:63.538500px;}
.w8{width:67.320000px;}
.wc{width:72.900000px;}
.w10{width:96.390000px;}
.we{width:177.930000px;}
.wf{width:209.070000px;}
.w5{width:484.920000px;}
.w2{width:637.794021px;}
.w3{width:671.940000px;}
.w4{width:672.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:5.220000px;}
.x20{left:6.390000px;}
.x25{left:7.560000px;}
.x19{left:9.000000px;}
.x2a{left:11.070000px;}
.x31{left:17.820000px;}
.x23{left:20.790000px;}
.x17{left:30.510000px;}
.x39{left:40.590000px;}
.xd{left:85.050000px;}
.x11{left:87.759000px;}
.xa{left:89.011260px;}
.x15{left:93.510000px;}
.x37{left:95.220000px;}
.x33{left:98.730000px;}
.x9{left:100.167300px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x13{left:110.067480px;}
.xc{left:117.635310px;}
.x6{left:133.383780px;}
.x10{left:138.154500px;}
.xf{left:150.750000px;}
.x18{left:155.070000px;}
.x14{left:158.126940px;}
.x1b{left:162.357660px;}
.x1c{left:166.678830px;}
.x1a{left:171.000000px;}
.x34{left:172.350000px;}
.x35{left:178.380000px;}
.x4{left:203.484001px;}
.x16{left:216.540000px;}
.xe{left:259.740000px;}
.x1d{left:270.540000px;}
.x36{left:272.160000px;}
.x3a{left:277.020000px;}
.x7{left:278.202600px;}
.x1e{left:287.097480px;}
.xb{left:301.227660px;}
.x12{left:302.233500px;}
.x1f{left:329.760000px;}
.x8{left:335.974950px;}
.x22{left:339.022080px;}
.x21{left:340.650000px;}
.x24{left:394.020000px;}
.x27{left:406.621890px;}
.x26{left:409.770000px;}
.x28{left:411.661260px;}
.x5{left:433.800000px;}
.x29{left:452.070000px;}
.x3{left:454.959000px;}
.x2d{left:459.183690px;}
.x2b{left:463.050000px;}
.x2c{left:467.012070px;}
.x38{left:482.040000px;}
.x3b{left:486.900000px;}
.x2e{left:525.780000px;}
.x2f{left:532.710000px;}
.x30{left:535.582800px;}
@media print{
.v1{vertical-align:-73.920000pt;}
.v3{vertical-align:-72.960000pt;}
.v5{vertical-align:-67.519680pt;}
.v4{vertical-align:-62.097280pt;}
.v6{vertical-align:-0.978880pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.440000pt;}
.v7{vertical-align:48.944000pt;}
.ls4c{letter-spacing:-0.468160pt;}
.ls4b{letter-spacing:-0.427520pt;}
.ls17{letter-spacing:-0.374080pt;}
.ls65{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.292800pt;}
.ls63{letter-spacing:-0.288000pt;}
.ls31{letter-spacing:-0.234240pt;}
.ls66{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.175680pt;}
.ls57{letter-spacing:-0.170240pt;}
.ls19{letter-spacing:-0.160320pt;}
.ls62{letter-spacing:-0.144000pt;}
.ls29{letter-spacing:-0.117120pt;}
.ls14{letter-spacing:-0.106880pt;}
.ls4e{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.085120pt;}
.ls4{letter-spacing:-0.074560pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls12{letter-spacing:-0.058560pt;}
.ls18{letter-spacing:-0.053440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.023424pt;}
.ls16{letter-spacing:0.053440pt;}
.ls13{letter-spacing:0.058560pt;}
.ls5{letter-spacing:0.064000pt;}
.ls64{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.106880pt;}
.ls68{letter-spacing:0.134400pt;}
.ls4d{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.149120pt;}
.ls15{letter-spacing:0.160320pt;}
.ls3b{letter-spacing:0.170240pt;}
.ls1c{letter-spacing:0.175680pt;}
.ls4f{letter-spacing:0.212800pt;}
.ls2a{letter-spacing:0.234240pt;}
.ls2b{letter-spacing:0.240096pt;}
.ls1f{letter-spacing:0.409920pt;}
.ls52{letter-spacing:0.603168pt;}
.ls1e{letter-spacing:0.638304pt;}
.ls51{letter-spacing:0.702720pt;}
.ls39{letter-spacing:0.995520pt;}
.lsd{letter-spacing:1.015360pt;}
.ls58{letter-spacing:1.054080pt;}
.ls6b{letter-spacing:1.104000pt;}
.lsc{letter-spacing:1.656640pt;}
.ls6e{letter-spacing:1.665600pt;}
.ls30{letter-spacing:1.698240pt;}
.ls1a{letter-spacing:1.934528pt;}
.ls49{letter-spacing:1.991040pt;}
.ls10{letter-spacing:2.297920pt;}
.ls1d{letter-spacing:2.342400pt;}
.ls59{letter-spacing:2.400000pt;}
.ls5d{letter-spacing:2.736000pt;}
.ls26{letter-spacing:2.986560pt;}
.ls53{letter-spacing:3.923520pt;}
.ls47{letter-spacing:4.320000pt;}
.ls35{letter-spacing:4.567680pt;}
.ls46{letter-spacing:4.656000pt;}
.ls33{letter-spacing:5.018592pt;}
.ls22{letter-spacing:5.211840pt;}
.ls61{letter-spacing:5.280000pt;}
.lsf{letter-spacing:5.504320pt;}
.ls21{letter-spacing:5.504640pt;}
.ls34{letter-spacing:5.733024pt;}
.ls38{letter-spacing:5.856000pt;}
.ls5c{letter-spacing:5.904000pt;}
.ls9{letter-spacing:6.145600pt;}
.ls5f{letter-spacing:6.240000pt;}
.ls3a{letter-spacing:6.500160pt;}
.ls2e{letter-spacing:6.792960pt;}
.ls5a{letter-spacing:7.107520pt;}
.ls23{letter-spacing:7.144320pt;}
.ls5e{letter-spacing:7.233600pt;}
.ls5b{letter-spacing:7.536000pt;}
.ls11{letter-spacing:7.748800pt;}
.ls2d{letter-spacing:8.286240pt;}
.ls2c{letter-spacing:8.374080pt;}
.ls69{letter-spacing:8.414400pt;}
.ls20{letter-spacing:8.725440pt;}
.ls36{letter-spacing:9.018240pt;}
.ls6d{letter-spacing:9.120000pt;}
.lse{letter-spacing:9.672640pt;}
.ls54{letter-spacing:10.306560pt;}
.ls6a{letter-spacing:10.766400pt;}
.ls48{letter-spacing:11.946240pt;}
.ls60{letter-spacing:13.296000pt;}
.ls2f{letter-spacing:14.171520pt;}
.ls24{letter-spacing:15.108480pt;}
.ls37{letter-spacing:15.629664pt;}
.ls55{letter-spacing:16.104000pt;}
.ls56{letter-spacing:16.396800pt;}
.ls67{letter-spacing:20.640000pt;}
.ls4a{letter-spacing:32.676480pt;}
.ls6c{letter-spacing:36.624000pt;}
.ls1b{letter-spacing:61.195200pt;}
.ls3{letter-spacing:143.680000pt;}
.ls42{letter-spacing:152.237120pt;}
.ls3f{letter-spacing:164.068800pt;}
.ls3e{letter-spacing:166.324480pt;}
.ls41{letter-spacing:172.410560pt;}
.ls45{letter-spacing:173.048960pt;}
.ls3c{letter-spacing:173.346880pt;}
.ls40{letter-spacing:181.050240pt;}
.ls43{letter-spacing:187.434240pt;}
.ls44{letter-spacing:193.520320pt;}
.ls3d{letter-spacing:194.499200pt;}
.ls2{letter-spacing:383.680000pt;}
.ls32{letter-spacing:461.335680pt;}
.ls50{letter-spacing:590.924320pt;}
.lsa{letter-spacing:779.582720pt;}
.wsaa{word-spacing:-58.560000pt;}
.ws1{word-spacing:-18.789120pt;}
.ws2{word-spacing:-16.328640pt;}
.ws3{word-spacing:-16.000000pt;}
.ws42{word-spacing:-14.815680pt;}
.ws44{word-spacing:-14.698560pt;}
.ws3f{word-spacing:-14.640000pt;}
.ws45{word-spacing:-14.581440pt;}
.ws43{word-spacing:-14.522880pt;}
.ws40{word-spacing:-14.464320pt;}
.ws41{word-spacing:-14.347200pt;}
.ws12{word-spacing:-13.520320pt;}
.ws10{word-spacing:-13.466880pt;}
.wsf{word-spacing:-13.413440pt;}
.wsa7{word-spacing:-13.360000pt;}
.wsa8{word-spacing:-13.306560pt;}
.ws11{word-spacing:-13.253120pt;}
.wscd{word-spacing:-13.199680pt;}
.ws13{word-spacing:-12.985920pt;}
.ws3e{word-spacing:-12.941760pt;}
.ws6e{word-spacing:-12.883200pt;}
.ws6f{word-spacing:-12.824640pt;}
.ws93{word-spacing:-12.766080pt;}
.wsd1{word-spacing:-12.144000pt;}
.wscc{word-spacing:-12.096000pt;}
.wsca{word-spacing:-12.000000pt;}
.wsd0{word-spacing:-11.904000pt;}
.wscf{word-spacing:-11.808000pt;}
.wscb{word-spacing:-11.712000pt;}
.wsce{word-spacing:-11.664000pt;}
.wsbc{word-spacing:-10.852800pt;}
.wsbd{word-spacing:-10.810240pt;}
.wsa9{word-spacing:-10.640000pt;}
.ws4{word-spacing:-10.554880pt;}
.wsbe{word-spacing:-10.469760pt;}
.ws67{word-spacing:-0.409920pt;}
.ws19{word-spacing:-0.374080pt;}
.ws82{word-spacing:-0.292800pt;}
.wsf9{word-spacing:-0.288000pt;}
.wsb1{word-spacing:-0.255360pt;}
.ws64{word-spacing:-0.234240pt;}
.ws5{word-spacing:-0.223680pt;}
.ws17{word-spacing:-0.175680pt;}
.ws14{word-spacing:-0.144000pt;}
.ws54{word-spacing:-0.117120pt;}
.wsab{word-spacing:-0.106880pt;}
.wse1{word-spacing:-0.096000pt;}
.wsb0{word-spacing:-0.085120pt;}
.ws7{word-spacing:-0.074560pt;}
.ws8{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.058560pt;}
.ws2d{word-spacing:-0.053440pt;}
.ws0{word-spacing:0.000000pt;}
.ws10e{word-spacing:0.048000pt;}
.ws24{word-spacing:0.053440pt;}
.ws53{word-spacing:0.058560pt;}
.wsc{word-spacing:0.064000pt;}
.ws6{word-spacing:0.074560pt;}
.wsc2{word-spacing:0.085120pt;}
.wsb5{word-spacing:0.096000pt;}
.ws23{word-spacing:0.106880pt;}
.ws60{word-spacing:0.117120pt;}
.ws15{word-spacing:0.144000pt;}
.wsae{word-spacing:0.160320pt;}
.ws71{word-spacing:0.175680pt;}
.wse5{word-spacing:0.192000pt;}
.ws18{word-spacing:0.213760pt;}
.ws68{word-spacing:0.234240pt;}
.wsdc{word-spacing:0.240000pt;}
.ws109{word-spacing:0.288000pt;}
.wsb{word-spacing:0.320000pt;}
.ws110{word-spacing:0.336000pt;}
.wsa3{word-spacing:0.351360pt;}
.ws1a{word-spacing:0.374080pt;}
.wsa4{word-spacing:0.409920pt;}
.wsb2{word-spacing:0.468160pt;}
.wsa5{word-spacing:0.468480pt;}
.ws4b{word-spacing:0.527040pt;}
.wsc3{word-spacing:0.644160pt;}
.ws104{word-spacing:0.672000pt;}
.ws49{word-spacing:0.761280pt;}
.ws105{word-spacing:0.816000pt;}
.ws2f{word-spacing:0.855040pt;}
.ws9f{word-spacing:0.878400pt;}
.ws28{word-spacing:0.908480pt;}
.ws79{word-spacing:0.936960pt;}
.ws4a{word-spacing:0.995520pt;}
.wsb6{word-spacing:1.054080pt;}
.wsd3{word-spacing:1.104000pt;}
.ws9e{word-spacing:1.112640pt;}
.ws27{word-spacing:1.122240pt;}
.ws70{word-spacing:1.171200pt;}
.ws21{word-spacing:1.175680pt;}
.ws8c{word-spacing:1.288320pt;}
.ws107{word-spacing:1.296000pt;}
.wsd2{word-spacing:1.405440pt;}
.ws108{word-spacing:1.440000pt;}
.ws3b{word-spacing:1.442880pt;}
.ws46{word-spacing:1.496320pt;}
.ws58{word-spacing:1.522560pt;}
.ws5a{word-spacing:1.756800pt;}
.ws20{word-spacing:1.763520pt;}
.ws10f{word-spacing:1.776000pt;}
.ws76{word-spacing:1.815360pt;}
.wsbb{word-spacing:1.932480pt;}
.ws77{word-spacing:2.049600pt;}
.wsd5{word-spacing:2.064000pt;}
.ws55{word-spacing:2.166720pt;}
.wse2{word-spacing:2.400000pt;}
.ws5d{word-spacing:2.400960pt;}
.ws2e{word-spacing:2.458240pt;}
.ws56{word-spacing:2.459520pt;}
.wsd4{word-spacing:2.544000pt;}
.wsba{word-spacing:2.576640pt;}
.wsaf{word-spacing:2.672000pt;}
.ws5b{word-spacing:2.693760pt;}
.wse0{word-spacing:2.736000pt;}
.ws75{word-spacing:2.810880pt;}
.ws100{word-spacing:2.880000pt;}
.ws6b{word-spacing:2.986560pt;}
.ws6c{word-spacing:3.045120pt;}
.wsac{word-spacing:3.046080pt;}
.ws25{word-spacing:3.313280pt;}
.wsad{word-spacing:3.366720pt;}
.ws22{word-spacing:3.420160pt;}
.ws7d{word-spacing:3.455040pt;}
.ws7e{word-spacing:3.689280pt;}
.wse4{word-spacing:3.696000pt;}
.ws51{word-spacing:3.747840pt;}
.wsf6{word-spacing:3.792000pt;}
.wsc4{word-spacing:3.864960pt;}
.wsc5{word-spacing:3.982080pt;}
.ws47{word-spacing:4.040640pt;}
.ws39{word-spacing:4.061440pt;}
.ws6d{word-spacing:4.274880pt;}
.ws38{word-spacing:4.275200pt;}
.ws4d{word-spacing:4.392000pt;}
.wsb9{word-spacing:4.509120pt;}
.wsb4{word-spacing:4.512000pt;}
.ws8b{word-spacing:4.626240pt;}
.ws3d{word-spacing:4.649280pt;}
.wsb3{word-spacing:4.656000pt;}
.ws6a{word-spacing:4.684800pt;}
.ws5c{word-spacing:4.801920pt;}
.ws69{word-spacing:4.919040pt;}
.wsed{word-spacing:4.944000pt;}
.ws62{word-spacing:5.036160pt;}
.wsa2{word-spacing:5.211840pt;}
.ws61{word-spacing:5.270400pt;}
.wseb{word-spacing:5.280000pt;}
.ws84{word-spacing:5.328960pt;}
.ws2a{word-spacing:5.344000pt;}
.ws2c{word-spacing:5.557760pt;}
.ws85{word-spacing:5.563200pt;}
.ws106{word-spacing:5.616000pt;}
.ws96{word-spacing:5.680320pt;}
.ws10a{word-spacing:5.712000pt;}
.ws9d{word-spacing:5.797440pt;}
.ws2b{word-spacing:5.878400pt;}
.wsdd{word-spacing:5.904000pt;}
.ws95{word-spacing:5.914560pt;}
.ws3a{word-spacing:5.931840pt;}
.ws52{word-spacing:5.973120pt;}
.wsde{word-spacing:6.096000pt;}
.wsd{word-spacing:6.144000pt;}
.ws26{word-spacing:6.199040pt;}
.wse8{word-spacing:6.240000pt;}
.ws86{word-spacing:6.324480pt;}
.ws88{word-spacing:6.441600pt;}
.ws87{word-spacing:6.558720pt;}
.ws1b{word-spacing:6.573120pt;}
.ws50{word-spacing:6.617280pt;}
.ws1e{word-spacing:6.626560pt;}
.wsd8{word-spacing:6.680000pt;}
.ws4f{word-spacing:6.851520pt;}
.wsdb{word-spacing:6.864000pt;}
.ws4c{word-spacing:6.968640pt;}
.wsa{word-spacing:6.976000pt;}
.ws1c{word-spacing:7.054080pt;}
.wse3{word-spacing:7.200000pt;}
.ws63{word-spacing:7.202880pt;}
.ws1d{word-spacing:7.214400pt;}
.wsc0{word-spacing:7.261440pt;}
.wsbf{word-spacing:7.378560pt;}
.wsd9{word-spacing:7.392000pt;}
.wsc1{word-spacing:7.495680pt;}
.wsda{word-spacing:7.536000pt;}
.ws94{word-spacing:7.612800pt;}
.ws31{word-spacing:7.641920pt;}
.wsc6{word-spacing:7.729920pt;}
.ws78{word-spacing:7.847040pt;}
.ws32{word-spacing:7.855680pt;}
.wsa0{word-spacing:7.905600pt;}
.ws33{word-spacing:7.909120pt;}
.wsa6{word-spacing:8.022720pt;}
.wsa1{word-spacing:8.139840pt;}
.ws48{word-spacing:8.198400pt;}
.ws36{word-spacing:8.336640pt;}
.ws57{word-spacing:8.432640pt;}
.wsf7{word-spacing:8.496000pt;}
.ws37{word-spacing:8.496960pt;}
.ws5e{word-spacing:8.549760pt;}
.ws3c{word-spacing:8.550400pt;}
.ws5f{word-spacing:8.784000pt;}
.ws9a{word-spacing:8.842560pt;}
.ws10d{word-spacing:9.024000pt;}
.ws99{word-spacing:9.076800pt;}
.ws10c{word-spacing:9.120000pt;}
.ws35{word-spacing:9.138240pt;}
.ws4e{word-spacing:9.193920pt;}
.ws30{word-spacing:9.405440pt;}
.wse9{word-spacing:9.456000pt;}
.ws9{word-spacing:9.664000pt;}
.ws1f{word-spacing:9.726080pt;}
.wsfa{word-spacing:9.744000pt;}
.ws29{word-spacing:9.779520pt;}
.ws72{word-spacing:10.130880pt;}
.ws73{word-spacing:10.248000pt;}
.ws83{word-spacing:10.365120pt;}
.wsf3{word-spacing:10.416000pt;}
.ws98{word-spacing:10.482240pt;}
.ws34{word-spacing:10.688000pt;}
.wsfe{word-spacing:10.704000pt;}
.ws59{word-spacing:10.716480pt;}
.wsfc{word-spacing:10.896000pt;}
.wsff{word-spacing:11.040000pt;}
.wsb8{word-spacing:11.126400pt;}
.wsfd{word-spacing:11.136000pt;}
.wsb7{word-spacing:11.360640pt;}
.ws7a{word-spacing:11.770560pt;}
.ws7c{word-spacing:11.887680pt;}
.ws8f{word-spacing:12.004800pt;}
.ws7b{word-spacing:12.121920pt;}
.ws8e{word-spacing:13.000320pt;}
.ws8d{word-spacing:13.234560pt;}
.wsef{word-spacing:13.296000pt;}
.wsea{word-spacing:13.584000pt;}
.ws8a{word-spacing:13.761600pt;}
.ws89{word-spacing:13.878720pt;}
.ws92{word-spacing:14.288640pt;}
.ws91{word-spacing:14.405760pt;}
.ws90{word-spacing:14.522880pt;}
.ws66{word-spacing:14.640000pt;}
.wse{word-spacing:14.976000pt;}
.ws65{word-spacing:15.049920pt;}
.ws97{word-spacing:15.518400pt;}
.ws9c{word-spacing:15.576960pt;}
.wsc7{word-spacing:15.694080pt;}
.ws9b{word-spacing:15.811200pt;}
.wsc9{word-spacing:15.928320pt;}
.wsc8{word-spacing:16.162560pt;}
.ws81{word-spacing:16.221120pt;}
.ws7f{word-spacing:16.572480pt;}
.ws80{word-spacing:16.689600pt;}
.wsf5{word-spacing:20.976000pt;}
.wsf4{word-spacing:21.072000pt;}
.ws74{word-spacing:23.482560pt;}
.wsd6{word-spacing:27.024000pt;}
.wsd7{word-spacing:27.120000pt;}
.wsf8{word-spacing:33.120000pt;}
.ws10b{word-spacing:36.624000pt;}
.wsfb{word-spacing:37.296000pt;}
.wse6{word-spacing:39.360000pt;}
.wse7{word-spacing:39.504000pt;}
.wsf2{word-spacing:51.552000pt;}
.wsf1{word-spacing:59.664000pt;}
.wsec{word-spacing:62.880000pt;}
.ws101{word-spacing:63.504000pt;}
.ws103{word-spacing:63.600000pt;}
.ws102{word-spacing:63.648000pt;}
.wsdf{word-spacing:75.360000pt;}
.wsf0{word-spacing:84.336000pt;}
.wsee{word-spacing:125.808000pt;}
._0{margin-left:-0.917088pt;}
._1{width:0.894720pt;}
._8{width:1.911552pt;}
._6{width:3.604512pt;}
._7{width:4.899168pt;}
._4{width:6.023136pt;}
._3{width:6.975264pt;}
._c{width:8.256960pt;}
._2{width:9.694400pt;}
._9{width:10.758720pt;}
._e{width:11.988480pt;}
._b{width:12.883200pt;}
._5{width:14.655264pt;}
._a{width:16.610112pt;}
._12{width:20.928000pt;}
._10{width:27.120000pt;}
._11{width:39.173088pt;}
._13{width:63.408000pt;}
._f{width:372.016000pt;}
._d{width:753.374400pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.560000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.560000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yd8{bottom:2.560000pt;}
.ye4{bottom:2.640000pt;}
.yd6{bottom:2.880000pt;}
.y119{bottom:14.880000pt;}
.yee{bottom:27.120000pt;}
.yd9{bottom:51.600000pt;}
.y113{bottom:51.680000pt;}
.y5{bottom:59.133337pt;}
.yde{bottom:76.160000pt;}
.yb1{bottom:80.833600pt;}
.y191{bottom:85.432000pt;}
.y4{bottom:86.333337pt;}
.y135{bottom:89.027360pt;}
.y60{bottom:89.623360pt;}
.y88{bottom:92.833360pt;}
.y105{bottom:96.301360pt;}
.yb0{bottom:97.713520pt;}
.y190{bottom:99.196000pt;}
.y5f{bottom:104.907200pt;}
.y134{bottom:105.834080pt;}
.y15e{bottom:109.600000pt;}
.y87{bottom:109.640080pt;}
.y18f{bottom:113.032000pt;}
.y104{bottom:114.220720pt;}
.yaf{bottom:114.593440pt;}
.y36{bottom:114.720000pt;}
.y5e{bottom:120.271200pt;}
.y133{bottom:122.714000pt;}
.y15d{bottom:123.436000pt;}
.y20{bottom:123.790666pt;}
.y86{bottom:126.520000pt;}
.y18e{bottom:126.796000pt;}
.y103{bottom:131.100640pt;}
.yae{bottom:131.473360pt;}
.y35{bottom:133.120000pt;}
.y5d{bottom:135.635200pt;}
.y15c{bottom:137.200000pt;}
.y132{bottom:139.593920pt;}
.y18d{bottom:140.632000pt;}
.y85{bottom:143.399920pt;}
.y102{bottom:147.980560pt;}
.yad{bottom:148.353280pt;}
.y5c{bottom:150.919040pt;}
.y15b{bottom:151.036000pt;}
.y34{bottom:151.520000pt;}
.y18c{bottom:154.396000pt;}
.y131{bottom:156.473840pt;}
.y84{bottom:160.279840pt;}
.y101{bottom:164.787280pt;}
.y15a{bottom:164.800000pt;}
.yac{bottom:165.233200pt;}
.y5b{bottom:166.283040pt;}
.y18b{bottom:168.232000pt;}
.y33{bottom:169.920000pt;}
.y130{bottom:173.353760pt;}
.y17{bottom:175.052000pt;}
.y83{bottom:177.159760pt;}
.y159{bottom:178.636000pt;}
.y5a{bottom:181.647040pt;}
.y100{bottom:181.667200pt;}
.yd4{bottom:181.719920pt;}
.y18a{bottom:181.996000pt;}
.yab{bottom:182.039920pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y32{bottom:188.320000pt;}
.y12f{bottom:190.233680pt;}
.y158{bottom:192.400000pt;}
.y82{bottom:193.966480pt;}
.y189{bottom:195.832000pt;}
.y59{bottom:196.930880pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.yff{bottom:198.547120pt;}
.yd3{bottom:198.599840pt;}
.yaa{bottom:198.919840pt;}
.y157{bottom:206.236000pt;}
.y12e{bottom:207.040400pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y188{bottom:209.596000pt;}
.y81{bottom:210.846400pt;}
.yfe{bottom:215.427040pt;}
.yd2{bottom:215.479760pt;}
.ya9{bottom:215.799760pt;}
.y156{bottom:220.000000pt;}
.y58{bottom:220.297520pt;}
.y31{bottom:222.720000pt;}
.y187{bottom:223.432000pt;}
.y12d{bottom:223.920320pt;}
.y80{bottom:227.726320pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.yfd{bottom:232.306960pt;}
.yd1{bottom:232.359680pt;}
.ya8{bottom:232.679680pt;}
.y155{bottom:233.836000pt;}
.y57{bottom:235.581360pt;}
.y186{bottom:237.196000pt;}
.y12c{bottom:240.800240pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y30{bottom:243.840000pt;}
.y7f{bottom:244.606240pt;}
.y154{bottom:247.600000pt;}
.yd0{bottom:249.166400pt;}
.yfc{bottom:249.186880pt;}
.ya7{bottom:249.559600pt;}
.y56{bottom:250.945360pt;}
.y185{bottom:251.032000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y12b{bottom:257.680160pt;}
.y153{bottom:261.436000pt;}
.y7e{bottom:261.486160pt;}
.y184{bottom:264.796000pt;}
.y2f{bottom:265.040000pt;}
.yfb{bottom:265.993600pt;}
.ycf{bottom:266.046320pt;}
.y55{bottom:266.309360pt;}
.ya6{bottom:266.366320pt;}
.y12a{bottom:274.560080pt;}
.y152{bottom:275.200000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y7d{bottom:278.366080pt;}
.y183{bottom:278.632000pt;}
.y54{bottom:281.593200pt;}
.yfa{bottom:282.873520pt;}
.yce{bottom:282.926240pt;}
.ya5{bottom:283.246240pt;}
.y2e{bottom:286.160000pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y151{bottom:289.036000pt;}
.y129{bottom:291.440000pt;}
.y182{bottom:292.396000pt;}
.y7c{bottom:295.172800pt;}
.y53{bottom:296.957200pt;}
.yf9{bottom:299.753440pt;}
.ycd{bottom:299.806160pt;}
.ya4{bottom:300.126160pt;}
.y150{bottom:302.800000pt;}
.y181{bottom:306.160000pt;}
.y2d{bottom:307.360000pt;}
.y128{bottom:308.880000pt;}
.ye{bottom:309.452000pt;}
.y7b{bottom:312.052720pt;}
.y52{bottom:312.321200pt;}
.yf8{bottom:316.633360pt;}
.y14f{bottom:316.636000pt;}
.ycc{bottom:316.686080pt;}
.ya3{bottom:317.006080pt;}
.y180{bottom:319.996000pt;}
.y127{bottom:326.556000pt;}
.y51{bottom:327.605040pt;}
.y7a{bottom:328.932640pt;}
.y14e{bottom:330.400000pt;}
.yf7{bottom:333.513280pt;}
.ycb{bottom:333.566000pt;}
.y17f{bottom:333.760000pt;}
.ya2{bottom:333.886000pt;}
.y126{bottom:340.320000pt;}
.yd{bottom:343.809333pt;}
.y14d{bottom:344.236000pt;}
.y79{bottom:345.812560pt;}
.y17e{bottom:347.596000pt;}
.yf6{bottom:350.320000pt;}
.yca{bottom:350.372720pt;}
.ya1{bottom:350.692720pt;}
.y50{bottom:350.971680pt;}
.y122{bottom:351.920000pt;}
.y14c{bottom:358.000000pt;}
.y2c{bottom:360.320000pt;}
.y125{bottom:360.644000pt;}
.y17d{bottom:361.360000pt;}
.y78{bottom:362.692480pt;}
.yc{bottom:362.706666pt;}
.y4f{bottom:366.335680pt;}
.y123{bottom:366.720000pt;}
.yf5{bottom:366.796000pt;}
.yc9{bottom:367.252640pt;}
.ya0{bottom:367.572640pt;}
.y14b{bottom:371.764000pt;}
.y124{bottom:372.880000pt;}
.y17c{bottom:375.196000pt;}
.y2b{bottom:378.720000pt;}
.y77{bottom:379.499200pt;}
.yf4{bottom:380.560000pt;}
.y4e{bottom:381.619520pt;}
.yc8{bottom:384.132560pt;}
.y9f{bottom:384.452560pt;}
.y14a{bottom:385.600000pt;}
.y17b{bottom:388.960000pt;}
.y120{bottom:389.360000pt;}
.yf2{bottom:392.160000pt;}
.y76{bottom:396.379120pt;}
.y4d{bottom:396.983520pt;}
.y2a{bottom:397.595520pt;}
.y121{bottom:398.080000pt;}
.y149{bottom:399.364000pt;}
.yc7{bottom:401.012480pt;}
.y9e{bottom:401.332480pt;}
.y17a{bottom:402.796000pt;}
.yf3{bottom:406.960000pt;}
.y148{bottom:413.200000pt;}
.y75{bottom:413.259040pt;}
.y11e{bottom:414.560000pt;}
.y179{bottom:416.560000pt;}
.yc6{bottom:417.892400pt;}
.y9d{bottom:418.212400pt;}
.y29{bottom:419.124720pt;}
.y4c{bottom:420.350160pt;}
.y11f{bottom:423.280000pt;}
.y147{bottom:426.964000pt;}
.yf0{bottom:429.600000pt;}
.y74{bottom:430.138960pt;}
.y178{bottom:430.396000pt;}
.yc5{bottom:434.699120pt;}
.y9c{bottom:435.092320pt;}
.y4b{bottom:435.634000pt;}
.y11d{bottom:439.760000pt;}
.y28{bottom:440.560720pt;}
.y146{bottom:440.800000pt;}
.y177{bottom:444.160000pt;}
.yf1{bottom:444.480000pt;}
.y73{bottom:447.018880pt;}
.y4a{bottom:450.998000pt;}
.yc4{bottom:451.579040pt;}
.y9b{bottom:451.899040pt;}
.y145{bottom:454.564000pt;}
.y176{bottom:457.996000pt;}
.y27{bottom:462.239040pt;}
.yb{bottom:462.990669pt;}
.y72{bottom:463.898800pt;}
.y11b{bottom:464.960000pt;}
.y49{bottom:466.362000pt;}
.yed{bottom:467.040000pt;}
.y144{bottom:468.400000pt;}
.yc3{bottom:468.458960pt;}
.y9a{bottom:468.778960pt;}
.y175{bottom:471.760000pt;}
.y11c{bottom:473.680000pt;}
.ya{bottom:478.990666pt;}
.y71{bottom:480.705520pt;}
.y48{bottom:481.645840pt;}
.yef{bottom:481.920000pt;}
.y143{bottom:482.164000pt;}
.y26{bottom:484.085120pt;}
.yc2{bottom:485.338880pt;}
.y174{bottom:485.596000pt;}
.y99{bottom:485.658880pt;}
.y118{bottom:490.160000pt;}
.y9{bottom:494.990666pt;}
.y142{bottom:496.000000pt;}
.y47{bottom:497.009840pt;}
.y70{bottom:497.585440pt;}
.y11a{bottom:498.880000pt;}
.y173{bottom:499.360000pt;}
.yc1{bottom:502.218800pt;}
.y98{bottom:502.538800pt;}
.ye6{bottom:504.560000pt;}
.y25{bottom:506.005760pt;}
.y141{bottom:509.916000pt;}
.y46{bottom:512.373840pt;}
.y172{bottom:513.196000pt;}
.y6f{bottom:514.465360pt;}
.y117{bottom:515.360000pt;}
.yc0{bottom:519.098720pt;}
.yeb{bottom:519.365760pt;}
.y97{bottom:519.418720pt;}
.y140{bottom:525.280000pt;}
.y171{bottom:526.960000pt;}
.y24{bottom:527.684080pt;}
.y116{bottom:530.248000pt;}
.y6e{bottom:531.345280pt;}
.yea{bottom:531.686880pt;}
.ybf{bottom:535.905440pt;}
.y96{bottom:536.225440pt;}
.y13f{bottom:540.480000pt;}
.y170{bottom:540.796000pt;}
.y115{bottom:542.484000pt;}
.yec{bottom:543.760000pt;}
.ye9{bottom:543.922880pt;}
.y6d{bottom:548.225200pt;}
.y45{bottom:551.024320pt;}
.ybe{bottom:552.785360pt;}
.y95{bottom:553.105360pt;}
.y13e{bottom:554.244000pt;}
.y16f{bottom:554.560000pt;}
.y114{bottom:554.720000pt;}
.ye8{bottom:556.158880pt;}
.y6c{bottom:565.031920pt;}
.y44{bottom:566.308160pt;}
.y23{bottom:568.076960pt;}
.y13d{bottom:568.080000pt;}
.y16e{bottom:568.396000pt;}
.ye7{bottom:568.480000pt;}
.ybd{bottom:569.665280pt;}
.y94{bottom:569.985280pt;}
.y8{bottom:573.786667pt;}
.y112{bottom:577.360000pt;}
.y43{bottom:581.672160pt;}
.y13c{bottom:581.844000pt;}
.y6b{bottom:581.911840pt;}
.y16d{bottom:582.160000pt;}
.ybc{bottom:586.545200pt;}
.y93{bottom:586.865200pt;}
.ydd{bottom:591.040000pt;}
.y111{bottom:592.248000pt;}
.y7{bottom:592.685334pt;}
.y13b{bottom:595.680000pt;}
.y16c{bottom:595.996000pt;}
.y42{bottom:596.875840pt;}
.y6a{bottom:598.791760pt;}
.ybb{bottom:603.425120pt;}
.y92{bottom:603.745120pt;}
.y110{bottom:604.484000pt;}
.ye3{bottom:605.930880pt;}
.y22{bottom:608.320720pt;}
.y13a{bottom:609.444000pt;}
.y16b{bottom:609.760000pt;}
.y41{bottom:612.320000pt;}
.y69{bottom:615.671680pt;}
.y10f{bottom:616.720000pt;}
.ye2{bottom:618.166880pt;}
.yba{bottom:620.231840pt;}
.y91{bottom:620.625040pt;}
.y139{bottom:623.280000pt;}
.y16a{bottom:623.596000pt;}
.y40{bottom:627.916240pt;}
.ye5{bottom:630.240000pt;}
.ye1{bottom:630.402880pt;}
.y68{bottom:632.551600pt;}
.yb9{bottom:637.111760pt;}
.y169{bottom:637.360000pt;}
.y90{bottom:637.431760pt;}
.y10e{bottom:639.360000pt;}
.ye0{bottom:642.724000pt;}
.y21{bottom:644.240000pt;}
.y3f{bottom:644.796160pt;}
.y6{bottom:645.598667pt;}
.y67{bottom:649.431520pt;}
.y168{bottom:651.196000pt;}
.yb8{bottom:653.991680pt;}
.y138{bottom:654.633760pt;}
.ydf{bottom:654.960000pt;}
.y10d{bottom:655.356000pt;}
.y3e{bottom:661.676080pt;}
.y167{bottom:664.960000pt;}
.y66{bottom:666.238240pt;}
.y3{bottom:668.977329pt;}
.y10c{bottom:670.720000pt;}
.yb7{bottom:670.871600pt;}
.y8f{bottom:671.191600pt;}
.y137{bottom:671.513680pt;}
.yd7{bottom:677.600000pt;}
.y166{bottom:678.796000pt;}
.y3d{bottom:678.878080pt;}
.y10b{bottom:686.240960pt;}
.yb6{bottom:687.751520pt;}
.y8e{bottom:688.071520pt;}
.y136{bottom:688.393600pt;}
.ydc{bottom:692.402880pt;}
.y165{bottom:692.560000pt;}
.y3c{bottom:696.080080pt;}
.y65{bottom:699.998080pt;}
.y10a{bottom:703.120880pt;}
.yb5{bottom:704.631440pt;}
.ydb{bottom:704.724000pt;}
.y8d{bottom:705.273520pt;}
.y164{bottom:706.396000pt;}
.y3b{bottom:712.960000pt;}
.y64{bottom:716.878000pt;}
.yda{bottom:716.960000pt;}
.y109{bottom:720.000800pt;}
.y163{bottom:720.160000pt;}
.yb4{bottom:721.438160pt;}
.y8c{bottom:722.153440pt;}
.y3a{bottom:729.364000pt;}
.y162{bottom:733.996000pt;}
.y63{bottom:734.080000pt;}
.y108{bottom:736.880720pt;}
.y8b{bottom:738.960160pt;}
.yd5{bottom:739.600000pt;}
.y39{bottom:743.200000pt;}
.y161{bottom:747.760000pt;}
.y107{bottom:753.760640pt;}
.yb3{bottom:755.198000pt;}
.y8a{bottom:755.840080pt;}
.y38{bottom:756.964000pt;}
.y62{bottom:758.636000pt;}
.y160{bottom:761.596000pt;}
.y37{bottom:771.520000pt;}
.y106{bottom:771.680000pt;}
.yb2{bottom:772.400000pt;}
.y89{bottom:772.720000pt;}
.y61{bottom:774.000000pt;}
.y15f{bottom:775.360000pt;}
.y2{bottom:781.661334pt;}
.y1{bottom:859.312000pt;}
.h1f{height:12.240000pt;}
.h17{height:15.281333pt;}
.h22{height:24.558667pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h23{height:36.798667pt;}
.h1d{height:36.800000pt;}
.h7{height:40.853333pt;}
.h13{height:41.060625pt;}
.h19{height:41.770312pt;}
.h1b{height:42.408712pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h25{height:47.085938pt;}
.h11{height:47.109375pt;}
.h2{height:49.024000pt;}
.hd{height:52.279375pt;}
.h15{height:52.448437pt;}
.h14{height:53.857500pt;}
.h12{height:57.473437pt;}
.h16{height:59.017500pt;}
.h1e{height:61.076250pt;}
.h18{height:61.278667pt;}
.h21{height:61.360000pt;}
.h20{height:61.361333pt;}
.he{height:62.781250pt;}
.h10{height:62.812500pt;}
.hf{height:64.500000pt;}
.h5{height:69.450667pt;}
.hc{height:75.142500pt;}
.h1c{height:85.840000pt;}
.h1a{height:85.841333pt;}
.h24{height:90.714312pt;}
.h4{height:105.826671pt;}
.ha{height:861.840000pt;}
.hb{height:862.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w7{width:41.520000pt;}
.wd{width:46.800000pt;}
.wb{width:50.958667pt;}
.w9{width:52.000000pt;}
.w6{width:54.078667pt;}
.wa{width:56.478667pt;}
.w8{width:59.840000pt;}
.wc{width:64.800000pt;}
.w10{width:85.680000pt;}
.we{width:158.160000pt;}
.wf{width:185.840000pt;}
.w5{width:431.040000pt;}
.w2{width:566.928019pt;}
.w3{width:597.280000pt;}
.w4{width:597.333333pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:4.640000pt;}
.x20{left:5.680000pt;}
.x25{left:6.720000pt;}
.x19{left:8.000000pt;}
.x2a{left:9.840000pt;}
.x31{left:15.840000pt;}
.x23{left:18.480000pt;}
.x17{left:27.120000pt;}
.x39{left:36.080000pt;}
.xd{left:75.600000pt;}
.x11{left:78.008000pt;}
.xa{left:79.121120pt;}
.x15{left:83.120000pt;}
.x37{left:84.640000pt;}
.x33{left:87.760000pt;}
.x9{left:89.037600pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x13{left:97.837760pt;}
.xc{left:104.564720pt;}
.x6{left:118.563360pt;}
.x10{left:122.804000pt;}
.xf{left:134.000000pt;}
.x18{left:137.840000pt;}
.x14{left:140.557280pt;}
.x1b{left:144.317920pt;}
.x1c{left:148.158960pt;}
.x1a{left:152.000000pt;}
.x34{left:153.200000pt;}
.x35{left:158.560000pt;}
.x4{left:180.874667pt;}
.x16{left:192.480000pt;}
.xe{left:230.880000pt;}
.x1d{left:240.480000pt;}
.x36{left:241.920000pt;}
.x3a{left:246.240000pt;}
.x7{left:247.291200pt;}
.x1e{left:255.197760pt;}
.xb{left:267.757920pt;}
.x12{left:268.652000pt;}
.x1f{left:293.120000pt;}
.x8{left:298.644400pt;}
.x22{left:301.352960pt;}
.x21{left:302.800000pt;}
.x24{left:350.240000pt;}
.x27{left:361.441680pt;}
.x26{left:364.240000pt;}
.x28{left:365.921120pt;}
.x5{left:385.600000pt;}
.x29{left:401.840000pt;}
.x3{left:404.408000pt;}
.x2d{left:408.163280pt;}
.x2b{left:411.600000pt;}
.x2c{left:415.121840pt;}
.x38{left:428.480000pt;}
.x3b{left:432.800000pt;}
.x2e{left:467.360000pt;}
.x2f{left:473.520000pt;}
.x30{left:476.073600pt;}
}




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