
    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_aa079eb2a3184b781a0b5f2f.woff')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_57c6425f4410e029aacdc88d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_7a5f40cc6ab19cf0aa58ac7f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ca0041edb5f53ad6955c40f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fdbc6655c482c4aa532572f2.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_71564e98c9a52c0ad2c5e9e2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_ee64f0620674a1a8cc537077.woff')format("woff");}.ff7{font-family:ff7;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;}
.m2{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245833,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246621,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-20.864160px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v4{vertical-align:29.517120px;}
.v1{vertical-align:36.000000px;}
.ls4d{letter-spacing:-4.183200px;}
.ls72{letter-spacing:-4.123440px;}
.ls6a{letter-spacing:-3.705120px;}
.ls5c{letter-spacing:-3.346560px;}
.ls5d{letter-spacing:-3.227040px;}
.ls69{letter-spacing:-3.107520px;}
.ls6b{letter-spacing:-2.988000px;}
.ls62{letter-spacing:-2.928240px;}
.ls1a{letter-spacing:-2.748960px;}
.ls70{letter-spacing:-2.689200px;}
.ls46{letter-spacing:-2.629440px;}
.ls1f{letter-spacing:-2.509920px;}
.ls2b{letter-spacing:-2.390400px;}
.ls3a{letter-spacing:-2.270880px;}
.ls3d{letter-spacing:-2.211120px;}
.ls13{letter-spacing:-2.091600px;}
.ls1c{letter-spacing:-2.031840px;}
.ls73{letter-spacing:-1.972080px;}
.ls3e{letter-spacing:-1.912320px;}
.ls61{letter-spacing:-1.852560px;}
.ls19{letter-spacing:-1.792800px;}
.ls23{letter-spacing:-1.673280px;}
.ls6c{letter-spacing:-1.553760px;}
.ls1b{letter-spacing:-1.494000px;}
.ls16{letter-spacing:-1.374480px;}
.ls1d{letter-spacing:-1.314720px;}
.ls3c{letter-spacing:-1.254960px;}
.ls26{letter-spacing:-1.254240px;}
.ls2d{letter-spacing:-1.195200px;}
.ls28{letter-spacing:-1.157760px;}
.ls3b{letter-spacing:-1.135440px;}
.ls1e{letter-spacing:-1.127520px;}
.ls18{letter-spacing:-1.075680px;}
.ls48{letter-spacing:-1.044000px;}
.ls20{letter-spacing:-0.956160px;}
.ls21{letter-spacing:-0.776880px;}
.ls22{letter-spacing:-0.758160px;}
.ls3f{letter-spacing:-0.657360px;}
.ls2c{letter-spacing:-0.597600px;}
.ls71{letter-spacing:-0.537840px;}
.ls25{letter-spacing:-0.530640px;}
.ls39{letter-spacing:-0.478080px;}
.ls27{letter-spacing:-0.434160px;}
.ls4c{letter-spacing:-0.418320px;}
.ls15{letter-spacing:-0.358560px;}
.ls2a{letter-spacing:-0.337680px;}
.lsd{letter-spacing:-0.289440px;}
.lsf{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.239040px;}
.ls24{letter-spacing:-0.192960px;}
.ls11{letter-spacing:-0.119520px;}
.ls10{letter-spacing:-0.083520px;}
.ls14{letter-spacing:-0.059760px;}
.lsc{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.015840px;}
.ls9{letter-spacing:0.059760px;}
.ls68{letter-spacing:0.108000px;}
.lsa{letter-spacing:0.119520px;}
.ls5e{letter-spacing:0.125496px;}
.ls66{letter-spacing:0.149400px;}
.ls65{letter-spacing:0.173304px;}
.ls35{letter-spacing:0.179280px;}
.ls29{letter-spacing:0.192960px;}
.ls2e{letter-spacing:0.209160px;}
.ls4a{letter-spacing:0.215136px;}
.ls43{letter-spacing:0.233064px;}
.ls7{letter-spacing:0.239040px;}
.ls47{letter-spacing:0.241200px;}
.ls63{letter-spacing:0.245016px;}
.ls4f{letter-spacing:0.250992px;}
.ls60{letter-spacing:0.256968px;}
.ls49{letter-spacing:0.262944px;}
.ls6f{letter-spacing:0.268920px;}
.ls34{letter-spacing:0.274896px;}
.ls6{letter-spacing:0.280872px;}
.ls5f{letter-spacing:0.286848px;}
.ls40{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.304776px;}
.ls67{letter-spacing:0.310752px;}
.ls6d{letter-spacing:0.322704px;}
.ls50{letter-spacing:0.328680px;}
.ls33{letter-spacing:0.334656px;}
.ls17{letter-spacing:0.336960px;}
.ls64{letter-spacing:0.340632px;}
.ls5{letter-spacing:0.358560px;}
.lse{letter-spacing:0.385920px;}
.ls36{letter-spacing:0.430272px;}
.ls0{letter-spacing:0.542880px;}
.ls4e{letter-spacing:0.896400px;}
.ls8{letter-spacing:1.613520px;}
.ls37{letter-spacing:2.330640px;}
.ls53{letter-spacing:3.047760px;}
.ls52{letter-spacing:3.579624px;}
.ls42{letter-spacing:3.764880px;}
.ls38{letter-spacing:3.818664px;}
.ls41{letter-spacing:3.971520px;}
.ls54{letter-spacing:4.482000px;}
.ls32{letter-spacing:5.199120px;}
.ls30{letter-spacing:5.916240px;}
.ls56{letter-spacing:5.964048px;}
.ls31{letter-spacing:6.023808px;}
.ls4b{letter-spacing:6.633360px;}
.ls57{letter-spacing:6.645312px;}
.ls2f{letter-spacing:7.350480px;}
.ls2{letter-spacing:7.410240px;}
.ls44{letter-spacing:7.428168px;}
.ls58{letter-spacing:8.127360px;}
.ls55{letter-spacing:8.844480px;}
.lsb{letter-spacing:8.856432px;}
.ls5b{letter-spacing:9.561600px;}
.ls5a{letter-spacing:9.573552px;}
.ls59{letter-spacing:10.278720px;}
.ls45{letter-spacing:11.712960px;}
.ls51{letter-spacing:12.412152px;}
.ls6e{letter-spacing:14.581440px;}
.ls3{letter-spacing:51.274080px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-25.560000px;}
.ws8{word-spacing:-21.396960px;}
.ws82{word-spacing:-21.035520px;}
.ws10{word-spacing:-20.301840px;}
.ws4{word-spacing:-16.493760px;}
.ws11{word-spacing:-15.298560px;}
.ws5d{word-spacing:-15.238800px;}
.ws17{word-spacing:-15.179040px;}
.ws81{word-spacing:-15.119280px;}
.wsa3{word-spacing:-15.089400px;}
.wsf{word-spacing:-15.059520px;}
.ws15{word-spacing:-14.999760px;}
.wsb{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.880240px;}
.ws5b{word-spacing:-14.820480px;}
.ws5{word-spacing:-14.700960px;}
.wsd{word-spacing:-14.581440px;}
.ws83{word-spacing:-14.521680px;}
.ws5e{word-spacing:-14.461920px;}
.ws5a{word-spacing:-14.342400px;}
.ws18{word-spacing:-14.163120px;}
.ws6f{word-spacing:-13.983840px;}
.wse{word-spacing:-13.864320px;}
.ws59{word-spacing:-13.804560px;}
.ws14{word-spacing:-13.744800px;}
.wsa{word-spacing:-13.625280px;}
.ws6{word-spacing:-13.565520px;}
.ws9{word-spacing:-13.446000px;}
.wsb7{word-spacing:-13.386240px;}
.ws5c{word-spacing:-13.266720px;}
.ws16{word-spacing:-13.147200px;}
.ws9e{word-spacing:-13.087440px;}
.ws92{word-spacing:-13.027680px;}
.wsc{word-spacing:-12.908160px;}
.ws5f{word-spacing:-12.848400px;}
.ws70{word-spacing:-12.728880px;}
.ws58{word-spacing:-12.669120px;}
.wsa4{word-spacing:-12.549600px;}
.ws9f{word-spacing:-12.430080px;}
.ws71{word-spacing:-12.301200px;}
.wsb8{word-spacing:-12.250800px;}
.wsc6{word-spacing:-12.191040px;}
.ws12{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.770560px;}
.ws13{word-spacing:-11.722320px;}
.ws2{word-spacing:-11.525760px;}
.ws3{word-spacing:-10.440000px;}
.ws72{word-spacing:-9.396000px;}
.wsad{word-spacing:-1.972080px;}
.ws63{word-spacing:-1.254960px;}
.wsc7{word-spacing:-0.926640px;}
.ws78{word-spacing:-0.896400px;}
.wsba{word-spacing:-0.537840px;}
.ws8b{word-spacing:-0.505440px;}
.ws49{word-spacing:-0.478080px;}
.ws22{word-spacing:-0.358560px;}
.ws1d{word-spacing:-0.298800px;}
.ws7f{word-spacing:-0.239040px;}
.ws1a{word-spacing:-0.192960px;}
.ws35{word-spacing:-0.179280px;}
.ws1f{word-spacing:-0.119520px;}
.wsaa{word-spacing:-0.108000px;}
.ws46{word-spacing:-0.096480px;}
.ws65{word-spacing:-0.059760px;}
.ws19{word-spacing:0.000000px;}
.ws1e{word-spacing:0.059760px;}
.wsa2{word-spacing:0.119520px;}
.ws7e{word-spacing:0.179280px;}
.ws39{word-spacing:0.239040px;}
.ws1c{word-spacing:0.288000px;}
.ws6a{word-spacing:0.298800px;}
.ws21{word-spacing:0.358560px;}
.ws43{word-spacing:0.385920px;}
.ws1b{word-spacing:0.408960px;}
.ws7d{word-spacing:0.418320px;}
.ws48{word-spacing:0.434160px;}
.ws60{word-spacing:0.478080px;}
.ws29{word-spacing:0.537840px;}
.ws4c{word-spacing:0.597600px;}
.ws6e{word-spacing:0.657360px;}
.ws44{word-spacing:0.723600px;}
.ws3d{word-spacing:0.776880px;}
.ws3a{word-spacing:0.956160px;}
.ws23{word-spacing:1.075680px;}
.ws31{word-spacing:1.127520px;}
.ws85{word-spacing:1.135440px;}
.ws47{word-spacing:1.157760px;}
.ws96{word-spacing:1.195200px;}
.ws45{word-spacing:1.254240px;}
.ws4b{word-spacing:1.254960px;}
.ws32{word-spacing:1.314720px;}
.ws57{word-spacing:1.374480px;}
.ws3b{word-spacing:1.494000px;}
.wsb1{word-spacing:1.553760px;}
.ws41{word-spacing:1.673280px;}
.ws25{word-spacing:1.792800px;}
.ws6c{word-spacing:1.912320px;}
.ws67{word-spacing:1.972080px;}
.ws2e{word-spacing:2.031840px;}
.ws20{word-spacing:2.091600px;}
.ws61{word-spacing:2.211120px;}
.wsac{word-spacing:2.270880px;}
.ws4a{word-spacing:2.390400px;}
.ws37{word-spacing:2.509920px;}
.ws80{word-spacing:2.569680px;}
.ws7b{word-spacing:2.629440px;}
.ws54{word-spacing:2.689200px;}
.ws27{word-spacing:2.748960px;}
.ws3c{word-spacing:2.928240px;}
.wsb0{word-spacing:2.988000px;}
.ws84{word-spacing:3.107520px;}
.ws9c{word-spacing:3.227040px;}
.ws9a{word-spacing:3.346560px;}
.ws56{word-spacing:3.406320px;}
.ws55{word-spacing:3.645360px;}
.wsaf{word-spacing:3.705120px;}
.ws34{word-spacing:3.824640px;}
.wsb5{word-spacing:4.003920px;}
.ws64{word-spacing:4.123440px;}
.ws91{word-spacing:4.183200px;}
.ws52{word-spacing:4.362480px;}
.ws69{word-spacing:4.541760px;}
.ws50{word-spacing:4.840560px;}
.ws66{word-spacing:5.079600px;}
.ws74{word-spacing:5.258880px;}
.ws53{word-spacing:5.557680px;}
.ws90{word-spacing:5.677200px;}
.ws3e{word-spacing:5.796720px;}
.ws9b{word-spacing:5.976000px;}
.ws2b{word-spacing:6.274800px;}
.ws2a{word-spacing:6.513840px;}
.ws36{word-spacing:6.693120px;}
.wsc2{word-spacing:6.991920px;}
.ws3f{word-spacing:7.051680px;}
.ws40{word-spacing:7.290720px;}
.ws79{word-spacing:7.470000px;}
.ws8f{word-spacing:7.529760px;}
.ws26{word-spacing:7.768800px;}
.ws7c{word-spacing:8.007840px;}
.ws73{word-spacing:8.187120px;}
.ws24{word-spacing:8.485920px;}
.ws86{word-spacing:8.724960px;}
.ws7a{word-spacing:8.904240px;}
.ws4e{word-spacing:9.203040px;}
.ws87{word-spacing:9.442080px;}
.ws88{word-spacing:9.621360px;}
.ws30{word-spacing:9.920160px;}
.ws4d{word-spacing:10.159200px;}
.ws6d{word-spacing:10.338480px;}
.ws2f{word-spacing:10.637280px;}
.ws98{word-spacing:10.756800px;}
.ws4f{word-spacing:10.876320px;}
.wsa6{word-spacing:11.055600px;}
.ws33{word-spacing:11.354400px;}
.ws97{word-spacing:11.593440px;}
.ws42{word-spacing:11.772720px;}
.ws75{word-spacing:12.071520px;}
.ws68{word-spacing:12.310560px;}
.ws38{word-spacing:12.489840px;}
.ws8d{word-spacing:12.549600px;}
.ws2c{word-spacing:12.788640px;}
.ws2d{word-spacing:13.027680px;}
.wsa5{word-spacing:13.206960px;}
.ws62{word-spacing:13.505760px;}
.ws9d{word-spacing:13.744800px;}
.ws28{word-spacing:13.924080px;}
.ws99{word-spacing:14.222880px;}
.ws77{word-spacing:14.461920px;}
.ws8c{word-spacing:14.940000px;}
.wsa1{word-spacing:15.358320px;}
.ws51{word-spacing:15.657120px;}
.wsbc{word-spacing:15.896160px;}
.ws8a{word-spacing:16.075440px;}
.ws76{word-spacing:16.374240px;}
.ws89{word-spacing:16.613280px;}
.wsc4{word-spacing:17.270640px;}
.wsc5{word-spacing:17.330400px;}
.ws94{word-spacing:18.525600px;}
.ws93{word-spacing:19.959840px;}
.ws8e{word-spacing:21.453840px;}
.ws6b{word-spacing:22.170960px;}
.wsab{word-spacing:22.888080px;}
.wsa0{word-spacing:23.605200px;}
.wsb9{word-spacing:23.844240px;}
.wsb2{word-spacing:24.023520px;}
.wsbd{word-spacing:25.039440px;}
.wsa8{word-spacing:25.278480px;}
.wsa9{word-spacing:25.637040px;}
.wsb6{word-spacing:25.756560px;}
.ws95{word-spacing:29.581200px;}
.wsc3{word-spacing:30.059280px;}
.wsbf{word-spacing:32.927760px;}
.wsbe{word-spacing:33.525360px;}
.wsa7{word-spacing:34.063200px;}
.wsc1{word-spacing:36.573120px;}
.wsc0{word-spacing:36.991440px;}
.wsb4{word-spacing:39.441600px;}
.wsb3{word-spacing:40.158720px;}
.wsae{word-spacing:44.461440px;}
.wsbb{word-spacing:65.317680px;}
._f{margin-left:-16.080552px;}
._1d{margin-left:-14.720904px;}
._1c{margin-left:-13.285584px;}
._10{margin-left:-10.577520px;}
._a{margin-left:-9.486000px;}
._5{margin-left:-8.202168px;}
._e{margin-left:-5.632488px;}
._9{margin-left:-4.377384px;}
._3{margin-left:-2.754072px;}
._1{margin-left:-1.319688px;}
._0{width:1.138464px;}
._4{width:2.255760px;}
._d{width:3.353472px;}
._b{width:4.790736px;}
._8{width:5.793696px;}
._2{width:6.932160px;}
._12{width:8.485920px;}
._19{width:9.558576px;}
._11{width:10.582488px;}
._6{width:12.002688px;}
._7{width:13.024656px;}
._16{width:16.777800px;}
._c{width:21.334320px;}
._14{width:24.202800px;}
._18{width:25.363224px;}
._1b{width:30.069216px;}
._13{width:32.443632px;}
._1a{width:37.878768px;}
._17{width:39.856896px;}
._15{width:45.029088px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:5.760000px;}
.fsa{font-size:23.760000px;}
.fs13{font-size:27.360000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs14{font-size:51.120000px;}
.fs12{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fsd{font-size:63.360000px;}
.fs15{font-size:66.240000px;}
.fs2{font-size:69.120000px;}
.fs4{font-size:72.000000px;}
.fse{font-size:77.760000px;}
.fs8{font-size:81.360000px;}
.fs9{font-size:84.240000px;}
.fs7{font-size:87.120000px;}
.fsf{font-size:90.000000px;}
.fsc{font-size:95.760000px;}
.fs11{font-size:99.360000px;}
.fs3{font-size:102.240000px;}
.fs10{font-size:105.120000px;}
.fs6{font-size:110.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:5.580000px;}
.y4{bottom:12.240000px;}
.y3{bottom:28.620000px;}
.y1{bottom:35.280000px;}
.y5{bottom:37.980000px;}
.y58{bottom:87.547140px;}
.y35{bottom:88.204320px;}
.y14a{bottom:88.745220px;}
.y23c{bottom:88.898220px;}
.y208{bottom:89.567820px;}
.y29a{bottom:95.765940px;}
.y266{bottom:95.849820px;}
.y17c{bottom:96.050880px;}
.y8d{bottom:96.157080px;}
.y34{bottom:104.220000px;}
.y57{bottom:107.701200px;}
.y149{bottom:108.720000px;}
.y207{bottom:109.721880px;}
.y23b{bottom:112.114980px;}
.y299{bottom:115.920000px;}
.y265{bottom:116.003880px;}
.y17b{bottom:116.025660px;}
.y8c{bottom:116.311140px;}
.y33{bottom:117.540000px;}
.yc0{bottom:119.238480px;}
.y1de{bottom:119.580480px;}
.y11e{bottom:119.817540px;}
.y32{bottom:120.060000px;}
.y56{bottom:127.675980px;}
.yeb{bottom:128.335140px;}
.y206{bottom:129.875940px;}
.y148{bottom:131.400000px;}
.y23a{bottom:132.269040px;}
.y31{bottom:132.311160px;}
.y17a{bottom:136.179720px;}
.y8b{bottom:136.465200px;}
.y298{bottom:136.997100px;}
.y264{bottom:137.427840px;}
.ybf{bottom:139.392540px;}
.y1dd{bottom:139.734540px;}
.y11d{bottom:139.971600px;}
.y1aa{bottom:141.122520px;}
.y55{bottom:148.009320px;}
.yea{bottom:148.489200px;}
.y205{bottom:149.850720px;}
.y239{bottom:152.243820px;}
.y30{bottom:152.465220px;}
.y147{bottom:155.880000px;}
.y179{bottom:156.333780px;}
.y8a{bottom:156.439980px;}
.y297{bottom:157.151160px;}
.y263{bottom:157.581900px;}
.ybe{bottom:159.367320px;}
.y1dc{bottom:159.709320px;}
.y11c{bottom:159.946380px;}
.y1a9{bottom:160.738740px;}
.ye9{bottom:168.463980px;}
.y54{bottom:169.254000px;}
.y204{bottom:170.004780px;}
.y238{bottom:172.397880px;}
.y2f{bottom:172.440000px;}
.y178{bottom:176.487840px;}
.y89{bottom:176.594040px;}
.y296{bottom:177.305220px;}
.y262{bottom:177.735960px;}
.y1a8{bottom:179.100000px;}
.ybd{bottom:179.521380px;}
.y1db{bottom:179.863380px;}
.y11b{bottom:180.100440px;}
.y146{bottom:183.488940px;}
.ye8{bottom:188.618040px;}
.y53{bottom:189.408060px;}
.y203{bottom:190.158840px;}
.y237{bottom:192.551940px;}
.y2e{bottom:193.866300px;}
.y177{bottom:196.462620px;}
.y88{bottom:196.748100px;}
.y295{bottom:197.280000px;}
.y1a7{bottom:197.640000px;}
.y261{bottom:197.710740px;}
.ybc{bottom:199.675440px;}
.y1da{bottom:200.017440px;}
.y11a{bottom:200.254500px;}
.y145{bottom:203.643000px;}
.ye7{bottom:208.772100px;}
.y52{bottom:209.382840px;}
.y236{bottom:212.706000px;}
.y202{bottom:213.196320px;}
.y87{bottom:216.902160px;}
.y260{bottom:217.864800px;}
.y2d{bottom:217.980000px;}
.y294{bottom:218.351880px;}
.y176{bottom:218.424420px;}
.ybb{bottom:219.829500px;}
.y1d9{bottom:220.171500px;}
.y119{bottom:220.408560px;}
.y1a6{bottom:223.430580px;}
.y144{bottom:223.797060px;}
.ye6{bottom:228.926160px;}
.y51{bottom:229.716180px;}
.y235{bottom:232.860060px;}
.y201{bottom:233.350380px;}
.y86{bottom:236.876940px;}
.y25f{bottom:238.018860px;}
.y293{bottom:238.505940px;}
.y175{bottom:238.578480px;}
.y1d8{bottom:240.325560px;}
.yba{bottom:240.536340px;}
.y118{bottom:240.562620px;}
.y1a5{bottom:243.584640px;}
.y143{bottom:243.951120px;}
.y2c{bottom:244.120860px;}
.ye5{bottom:248.900940px;}
.y50{bottom:250.960860px;}
.y234{bottom:253.014120px;}
.y200{bottom:256.746420px;}
.y85{bottom:257.583780px;}
.y25e{bottom:258.172920px;}
.y292{bottom:258.660000px;}
.yb9{bottom:260.511120px;}
.y117{bottom:260.537400px;}
.y174{bottom:261.078120px;}
.y1d7{bottom:261.211680px;}
.y1a4{bottom:263.738700px;}
.y2b{bottom:264.274920px;}
.y142{bottom:264.657960px;}
.y4f{bottom:271.114920px;}
.y233{bottom:275.693040px;}
.y1ff{bottom:276.900480px;}
.y84{bottom:277.200000px;}
.y25d{bottom:278.326980px;}
.ye4{bottom:278.601660px;}
.y291{bottom:279.737820px;}
.yb8{bottom:280.665180px;}
.y116{bottom:280.691460px;}
.y173{bottom:281.052900px;}
.y1d6{bottom:282.456360px;}
.y1a3{bottom:283.713480px;}
.y2a{bottom:284.428980px;}
.y141{bottom:284.812020px;}
.y2c3{bottom:290.357820px;}
.y4e{bottom:291.089700px;}
.y2de{bottom:291.422520px;}
.y83{bottom:295.380000px;}
.y1fe{bottom:297.054540px;}
.y25c{bottom:298.301760px;}
.ye3{bottom:298.755720px;}
.y232{bottom:299.089080px;}
.y290{bottom:299.891880px;}
.yb7{bottom:300.819240px;}
.y115{bottom:300.845520px;}
.y172{bottom:301.206960px;}
.y1d5{bottom:302.431140px;}
.y1a2{bottom:303.867540px;}
.y29{bottom:304.583040px;}
.y140{bottom:304.966080px;}
.y2c2{bottom:310.511880px;}
.y4d{bottom:311.243760px;}
.y2dd{bottom:314.460000px;}
.y1fd{bottom:317.208600px;}
.y25b{bottom:318.635100px;}
.ye2{bottom:318.730500px;}
.y231{bottom:319.243140px;}
.y28f{bottom:320.045940px;}
.yb6{bottom:320.973300px;}
.y114{bottom:320.999580px;}
.y82{bottom:321.208920px;}
.y171{bottom:321.361020px;}
.y1d4{bottom:322.405920px;}
.y1a1{bottom:324.021600px;}
.y28{bottom:324.737100px;}
.y13f{bottom:325.120140px;}
.y2c1{bottom:330.665940px;}
.y4c{bottom:331.397820px;}
.y1fc{bottom:337.362660px;}
.ye1{bottom:338.884560px;}
.y230{bottom:339.217920px;}
.y25a{bottom:339.879780px;}
.y28e{bottom:340.200000px;}
.y113{bottom:341.153640px;}
.y81{bottom:341.362980px;}
.y170{bottom:341.515080px;}
.yb5{bottom:341.859420px;}
.y1d3{bottom:342.380700px;}
.y1a0{bottom:344.175660px;}
.y27{bottom:344.711880px;}
.y13e{bottom:345.274200px;}
.y2c0{bottom:350.820000px;}
.y4b{bottom:351.551880px;}
.y1fb{bottom:357.337440px;}
.ye0{bottom:359.038620px;}
.y22f{bottom:359.371980px;}
.y259{bottom:360.033840px;}
.y112{bottom:361.128420px;}
.y28d{bottom:361.277100px;}
.y80{bottom:361.517040px;}
.y16f{bottom:361.669140px;}
.yb4{bottom:361.834200px;}
.y1d2{bottom:362.355480px;}
.y19f{bottom:364.329720px;}
.y26{bottom:364.865940px;}
.y13d{bottom:365.248980px;}
.y2bf{bottom:371.183760px;}
.y4a{bottom:371.705940px;}
.y1fa{bottom:377.491500px;}
.ydf{bottom:379.192680px;}
.y22e{bottom:379.526040px;}
.y258{bottom:380.008620px;}
.y28c{bottom:381.431160px;}
.y7f{bottom:381.491820px;}
.y111{bottom:381.641040px;}
.y16e{bottom:381.643920px;}
.yb3{bottom:381.988260px;}
.y1d1{bottom:382.330260px;}
.y19e{bottom:384.483780px;}
.y25{bottom:385.020000px;}
.y13c{bottom:385.403040px;}
.y2be{bottom:391.337820px;}
.y49{bottom:391.860000px;}
.yde{bottom:399.346740px;}
.y22d{bottom:399.680100px;}
.y257{bottom:400.162680px;}
.y1f9{bottom:400.887540px;}
.y28b{bottom:401.585220px;}
.y7e{bottom:401.645880px;}
.y110{bottom:401.795100px;}
.y16d{bottom:401.797980px;}
.yb2{bottom:402.142320px;}
.y1d0{bottom:403.395660px;}
.y19d{bottom:404.100000px;}
.y13b{bottom:405.557100px;}
.y24{bottom:406.260000px;}
.y2dc{bottom:408.602700px;}
.y2bd{bottom:411.491880px;}
.y48{bottom:414.360000px;}
.ydd{bottom:419.321520px;}
.y22c{bottom:419.654880px;}
.y256{bottom:420.316740px;}
.y1f8{bottom:421.041600px;}
.y28a{bottom:421.560000px;}
.y7d{bottom:421.799940px;}
.y10f{bottom:421.949160px;}
.yb1{bottom:422.296380px;}
.y19c{bottom:422.640000px;}
.y1cf{bottom:423.370440px;}
.y16c{bottom:424.118340px;}
.y13a{bottom:425.711160px;}
.y23{bottom:430.200000px;}
.y2bc{bottom:431.645940px;}
.y2db{bottom:435.420000px;}
.y47{bottom:439.200000px;}
.ydc{bottom:439.475580px;}
.y22b{bottom:439.808940px;}
.y255{bottom:440.470800px;}
.y1f7{bottom:441.195660px;}
.y10e{bottom:441.923940px;}
.y7c{bottom:441.954000px;}
.yb0{bottom:442.450440px;}
.y289{bottom:442.631880px;}
.y1ce{bottom:443.345220px;}
.y16b{bottom:444.093120px;}
.y139{bottom:445.865220px;}
.y19b{bottom:448.546140px;}
.y2bb{bottom:451.800000px;}
.y22{bottom:455.957820px;}
.ydb{bottom:459.629640px;}
.y22a{bottom:459.963000px;}
.y254{bottom:460.624860px;}
.y1f6{bottom:461.349720px;}
.y10d{bottom:462.078000px;}
.y7b{bottom:462.108060px;}
.yaf{bottom:462.604500px;}
.y288{bottom:462.785940px;}
.y1cd{bottom:463.327920px;}
.y16a{bottom:464.247180px;}
.y138{bottom:465.904800px;}
.y46{bottom:468.104760px;}
.y19a{bottom:468.700200px;}
.y2e0{bottom:469.975320px;}
.y2ba{bottom:472.337100px;}
.y21{bottom:476.111880px;}
.yda{bottom:479.783700px;}
.y229{bottom:480.117060px;}
.y253{bottom:480.599640px;}
.y1f5{bottom:481.324500px;}
.y7a{bottom:482.082840px;}
.y10c{bottom:482.232060px;}
.yae{bottom:482.400000px;}
.y2e2{bottom:482.756580px;}
.y287{bottom:482.940000px;}
.y1cc{bottom:484.393320px;}
.y169{bottom:484.401240px;}
.y137{bottom:487.149480px;}
.y45{bottom:488.258820px;}
.y199{bottom:488.854260px;}
.y2df{bottom:491.220000px;}
.y2b9{bottom:492.311880px;}
.y20{bottom:496.265940px;}
.y2e1{bottom:500.580000px;}
.y1f4{bottom:501.478560px;}
.y79{bottom:502.236900px;}
.y10b{bottom:502.386120px;}
.y252{bottom:502.920000px;}
.y228{bottom:503.513100px;}
.y286{bottom:504.011160px;}
.y1cb{bottom:504.547380px;}
.y168{bottom:504.555300px;}
.y136{bottom:508.214880px;}
.y44{bottom:508.233600px;}
.yd9{bottom:508.946580px;}
.y198{bottom:509.008320px;}
.y2b8{bottom:512.465940px;}
.yad{bottom:512.640000px;}
.y1f{bottom:516.420000px;}
.y251{bottom:522.360000px;}
.y10a{bottom:522.360900px;}
.y78{bottom:522.390960px;}
.y227{bottom:523.667160px;}
.y285{bottom:523.985940px;}
.y167{bottom:524.709360px;}
.y1ca{bottom:525.060000px;}
.y1f3{bottom:525.233160px;}
.y43{bottom:528.387660px;}
.yd8{bottom:529.100640px;}
.y197{bottom:529.162380px;}
.y135{bottom:529.459560px;}
.y2b7{bottom:532.620000px;}
.yac{bottom:533.583900px;}
.y1e{bottom:536.441400px;}
.y109{bottom:541.260000px;}
.y77{bottom:542.545020px;}
.y1c9{bottom:543.240000px;}
.y226{bottom:543.821220px;}
.y284{bottom:544.140000px;}
.y1f2{bottom:545.387220px;}
.y166{bottom:546.491880px;}
.y42{bottom:548.541720px;}
.y196{bottom:549.137160px;}
.yd7{bottom:549.254700px;}
.y134{bottom:549.434340px;}
.y250{bottom:552.035520px;}
.y2b6{bottom:552.977820px;}
.yab{bottom:553.558680px;}
.y1d{bottom:557.686080px;}
.y76{bottom:562.699080px;}
.y225{bottom:563.796000px;}
.y108{bottom:564.120000px;}
.y283{bottom:565.211160px;}
.y1f1{bottom:565.541280px;}
.y165{bottom:566.645940px;}
.y1c8{bottom:566.820000px;}
.y41{bottom:568.695780px;}
.y195{bottom:569.291220px;}
.yd6{bottom:569.408760px;}
.y133{bottom:569.588400px;}
.y24f{bottom:572.189580px;}
.y2b5{bottom:573.131880px;}
.yaa{bottom:573.712740px;}
.y1c{bottom:577.840140px;}
.y75{bottom:583.943760px;}
.y224{bottom:583.950060px;}
.y282{bottom:585.365220px;}
.y1f0{bottom:585.516060px;}
.y164{bottom:586.800000px;}
.y1c7{bottom:586.816740px;}
.y107{bottom:586.928160px;}
.y40{bottom:588.849840px;}
.y194{bottom:589.445280px;}
.yd5{bottom:589.562820px;}
.y132{bottom:589.742460px;}
.y24e{bottom:592.343640px;}
.y2b4{bottom:593.285940px;}
.ya9{bottom:593.866800px;}
.y1b{bottom:597.994200px;}
.y74{bottom:604.097820px;}
.y223{bottom:604.104120px;}
.y281{bottom:605.340000px;}
.y1ef{bottom:605.670120px;}
.y106{bottom:607.082220px;}
.y1c6{bottom:607.329360px;}
.y163{bottom:608.787360px;}
.y3f{bottom:608.824620px;}
.yd4{bottom:609.537600px;}
.y193{bottom:609.599340px;}
.y131{bottom:609.896520px;}
.y24d{bottom:612.497700px;}
.y2b3{bottom:613.440000px;}
.ya8{bottom:614.020860px;}
.y1a{bottom:618.148260px;}
.y73{bottom:624.251880px;}
.y222{bottom:624.258180px;}
.y1ee{bottom:625.824180px;}
.y280{bottom:626.411880px;}
.y105{bottom:627.057000px;}
.y1c5{bottom:627.483420px;}
.y162{bottom:628.941420px;}
.y3e{bottom:628.978680px;}
.yd3{bottom:629.691660px;}
.y192{bottom:630.111960px;}
.y130{bottom:630.409140px;}
.y24c{bottom:632.472480px;}
.y2b2{bottom:633.977100px;}
.ya7{bottom:634.174920px;}
.y19{bottom:638.123040px;}
.y72{bottom:644.405940px;}
.y221{bottom:644.412240px;}
.y1ed{bottom:645.978240px;}
.y27f{bottom:646.565940px;}
.y104{bottom:647.211060px;}
.y1c4{bottom:647.458200px;}
.y161{bottom:649.095480px;}
.y3d{bottom:649.132740px;}
.y12f{bottom:650.563200px;}
.y191{bottom:650.624580px;}
.y24b{bottom:652.626540px;}
.y2b1{bottom:653.951880px;}
.ya6{bottom:654.149700px;}
.y18{bottom:658.277100px;}
.yd2{bottom:659.213100px;}
.y220{bottom:664.387020px;}
.y71{bottom:664.560000px;}
.y1ec{bottom:666.132300px;}
.y27e{bottom:666.720000px;}
.y103{bottom:667.365120px;}
.y1c3{bottom:667.612260px;}
.y3c{bottom:669.286800px;}
.y12e{bottom:670.537980px;}
.y190{bottom:670.778640px;}
.y160{bottom:671.057280px;}
.y24a{bottom:672.780600px;}
.y2b0{bottom:674.105940px;}
.ya5{bottom:674.303760px;}
.y17{bottom:678.431160px;}
.yd1{bottom:679.367160px;}
.y2d4{bottom:680.760000px;}
.y21f{bottom:684.541080px;}
.y70{bottom:685.446300px;}
.y1eb{bottom:686.107080px;}
.y1c2{bottom:687.766320px;}
.y27d{bottom:687.791880px;}
.y102{bottom:688.251240px;}
.y3b{bottom:689.440860px;}
.y12d{bottom:690.692040px;}
.y18f{bottom:690.932700px;}
.y15f{bottom:691.211340px;}
.y249{bottom:692.934660px;}
.y2af{bottom:694.260000px;}
.ya4{bottom:694.457820px;}
.y16{bottom:698.585220px;}
.yd0{bottom:699.521220px;}
.y2d3{bottom:705.420000px;}
.y1ea{bottom:706.440420px;}
.y21e{bottom:707.220000px;}
.y27c{bottom:707.766660px;}
.y101{bottom:708.405300px;}
.y1c1{bottom:708.473160px;}
.y3a{bottom:709.415640px;}
.y6f{bottom:709.560000px;}
.y12c{bottom:710.846100px;}
.y18e{bottom:711.086760px;}
.y15e{bottom:711.365400px;}
.y248{bottom:713.088720px;}
.ya3{bottom:714.611880px;}
.y2ae{bottom:714.797100px;}
.y2d2{bottom:717.480000px;}
.y15{bottom:718.560000px;}
.ycf{bottom:719.496000px;}
.y27b{bottom:728.100000px;}
.y100{bottom:728.559360px;}
.y1c0{bottom:729.180000px;}
.y1e9{bottom:729.477900px;}
.y39{bottom:729.569700px;}
.y12b{bottom:731.000160px;}
.y18d{bottom:731.061540px;}
.y21d{bottom:731.196000px;}
.y247{bottom:733.063500px;}
.ya2{bottom:734.586660px;}
.y2ad{bottom:734.771880px;}
.y15d{bottom:735.120000px;}
.y6e{bottom:735.946920px;}
.yce{bottom:739.650060px;}
.y14{bottom:739.800000px;}
.y2cf{bottom:743.396400px;}
.yff{bottom:748.713420px;}
.y27a{bottom:748.980000px;}
.y1bf{bottom:749.520000px;}
.y38{bottom:749.723760px;}
.y12a{bottom:751.154220px;}
.y21c{bottom:751.170780px;}
.y18c{bottom:751.394880px;}
.y1e8{bottom:753.053220px;}
.y246{bottom:753.217560px;}
.ya1{bottom:754.920000px;}
.y2ac{bottom:754.925940px;}
.y6d{bottom:756.100980px;}
.y2da{bottom:756.539460px;}
.y2ce{bottom:757.440000px;}
.ycd{bottom:759.804120px;}
.y13{bottom:763.920000px;}
.y279{bottom:767.880000px;}
.y2d8{bottom:768.420000px;}
.yfe{bottom:768.867480px;}
.y1be{bottom:769.680000px;}
.y37{bottom:769.877820px;}
.y129{bottom:771.129000px;}
.y21b{bottom:771.324840px;}
.y18b{bottom:771.907500px;}
.y1e7{bottom:773.207280px;}
.y245{bottom:773.371620px;}
.y2ab{bottom:775.080000px;}
.y6c{bottom:776.075760px;}
.ya0{bottom:776.464920px;}
.ycc{bottom:779.958180px;}
.y15c{bottom:786.104820px;}
.y12{bottom:787.320000px;}
.yfd{bottom:788.842260px;}
.y1bd{bottom:789.840000px;}
.y36{bottom:790.031880px;}
.y128{bottom:791.462340px;}
.y21a{bottom:791.478900px;}
.y18a{bottom:792.420120px;}
.y2d7{bottom:792.540000px;}
.y1e6{bottom:793.361340px;}
.y244{bottom:793.525680px;}
.y2a9{bottom:795.420000px;}
.y278{bottom:795.594600px;}
.y6b{bottom:796.229820px;}
.y9f{bottom:796.439700px;}
.ycb{bottom:800.112240px;}
.y2d6{bottom:802.620000px;}
.y15b{bottom:806.258880px;}
.yfc{bottom:808.996320px;}
.y1bc{bottom:809.820000px;}
.y11{bottom:810.006660px;}
.y219{bottom:811.632960px;}
.y127{bottom:812.707020px;}
.y189{bottom:813.126960px;}
.y243{bottom:813.500460px;}
.y1e5{bottom:813.515400px;}
.y277{bottom:815.748660px;}
.y2a8{bottom:815.765940px;}
.y6a{bottom:816.383880px;}
.y9e{bottom:816.593760px;}
.yca{bottom:820.087020px;}
.y15a{bottom:826.233660px;}
.yfb{bottom:829.150380px;}
.y1bb{bottom:830.160000px;}
.y10{bottom:830.340000px;}
.y218{bottom:831.787020px;}
.y126{bottom:832.681800px;}
.y188{bottom:833.281020px;}
.y1e4{bottom:833.490180px;}
.y242{bottom:835.282980px;}
.y276{bottom:835.902720px;}
.y2a7{bottom:835.920000px;}
.y69{bottom:836.537940px;}
.y9d{bottom:836.747820px;}
.y159{bottom:846.387720px;}
.yfa{bottom:849.304440px;}
.y1ba{bottom:851.400000px;}
.y217{bottom:851.761800px;}
.y187{bottom:853.255800px;}
.y1e3{bottom:853.644240px;}
.y125{bottom:853.926480px;}
.y241{bottom:855.437040px;}
.y275{bottom:856.056780px;}
.y2a6{bottom:856.463040px;}
.y68{bottom:856.692000px;}
.yf{bottom:856.800000px;}
.y9c{bottom:856.901880px;}
.yc9{bottom:862.920000px;}
.y158{bottom:866.541780px;}
.yf9{bottom:869.279220px;}
.y1b9{bottom:871.560000px;}
.y216{bottom:871.915860px;}
.y186{bottom:873.409860px;}
.y1e2{bottom:873.798300px;}
.y124{bottom:874.080540px;}
.y240{bottom:875.591100px;}
.y274{bottom:876.210840px;}
.y2a5{bottom:876.437820px;}
.y67{bottom:876.666780px;}
.y9b{bottom:877.055940px;}
.ye{bottom:880.380000px;}
.yc8{bottom:881.460000px;}
.y157{bottom:888.503580px;}
.yf8{bottom:890.165340px;}
.y1b8{bottom:891.540000px;}
.y215{bottom:892.069920px;}
.y185{bottom:893.563920px;}
.y1e1{bottom:893.952360px;}
.y123{bottom:894.234600px;}
.y23f{bottom:895.565880px;}
.y273{bottom:896.185620px;}
.y2a4{bottom:896.591880px;}
.y66{bottom:896.820840px;}
.y9a{bottom:897.030720px;}
.yd{bottom:900.360000px;}
.yc7{bottom:905.220000px;}
.y156{bottom:908.657640px;}
.yf7{bottom:910.319400px;}
.y1b7{bottom:911.700000px;}
.y214{bottom:912.223980px;}
.y184{bottom:913.717980px;}
.y1e0{bottom:914.106420px;}
.y122{bottom:915.300000px;}
.y23e{bottom:915.719940px;}
.y272{bottom:916.339680px;}
.y2a3{bottom:916.745940px;}
.y65{bottom:916.974900px;}
.y99{bottom:917.184780px;}
.yc6{bottom:925.920000px;}
.y155{bottom:928.632420px;}
.yf6{bottom:930.473460px;}
.y1b6{bottom:931.860000px;}
.y213{bottom:932.198760px;}
.y121{bottom:933.300000px;}
.y183{bottom:933.872040px;}
.y1df{bottom:934.081200px;}
.yc{bottom:935.460000px;}
.y23d{bottom:935.874000px;}
.y271{bottom:936.493740px;}
.y2a2{bottom:936.900000px;}
.y64{bottom:937.128960px;}
.y98{bottom:937.338840px;}
.yc5{bottom:948.826980px;}
.yf5{bottom:950.627520px;}
.y154{bottom:950.773500px;}
.y1b5{bottom:952.020000px;}
.y182{bottom:953.488260px;}
.y212{bottom:955.594800px;}
.y270{bottom:956.647800px;}
.y2a1{bottom:957.251880px;}
.y63{bottom:957.283020px;}
.y97{bottom:957.492900px;}
.y120{bottom:957.835800px;}
.yb{bottom:959.040000px;}
.yc4{bottom:968.981040px;}
.yf4{bottom:970.602300px;}
.y1b4{bottom:972.180000px;}
.y1b3{bottom:972.187380px;}
.y153{bottom:972.376740px;}
.y211{bottom:975.748860px;}
.y62{bottom:977.257800px;}
.y2a0{bottom:977.405940px;}
.y96{bottom:977.646960px;}
.y11f{bottom:977.989860px;}
.y26f{bottom:978.071760px;}
.ya{bottom:982.796040px;}
.yc3{bottom:989.135100px;}
.y2cc{bottom:989.820000px;}
.yf3{bottom:990.756360px;}
.y152{bottom:992.530800px;}
.y1b2{bottom:992.700000px;}
.y210{bottom:995.902920px;}
.y181{bottom:997.411860px;}
.y29f{bottom:997.560000px;}
.y95{bottom:997.621740px;}
.y61{bottom:998.143920px;}
.y26e{bottom:998.225820px;}
.y9{bottom:1001.160000px;}
.y2cb{bottom:1007.820000px;}
.yc2{bottom:1009.289160px;}
.yf2{bottom:1010.910420px;}
.y1b1{bottom:1011.420000px;}
.y151{bottom:1012.684860px;}
.y20f{bottom:1016.056980px;}
.y94{bottom:1017.775800px;}
.y29e{bottom:1017.917820px;}
.y60{bottom:1018.297980px;}
.y26d{bottom:1018.379880px;}
.y180{bottom:1018.477260px;}
.y2ca{bottom:1025.640000px;}
.yc1{bottom:1029.263940px;}
.yf1{bottom:1031.064480px;}
.y150{bottom:1033.018200px;}
.y20e{bottom:1036.031760px;}
.y93{bottom:1037.929860px;}
.y29d{bottom:1038.071880px;}
.y1b0{bottom:1038.269520px;}
.y5f{bottom:1038.272760px;}
.y26c{bottom:1038.354660px;}
.y17f{bottom:1038.452040px;}
.y2c9{bottom:1043.640000px;}
.y8{bottom:1050.300000px;}
.yf0{bottom:1051.577100px;}
.y14f{bottom:1054.980000px;}
.y20d{bottom:1056.185820px;}
.y92{bottom:1057.904640px;}
.y29c{bottom:1058.225940px;}
.y1af{bottom:1058.423580px;}
.y5e{bottom:1058.426820px;}
.y26b{bottom:1058.508720px;}
.y2c8{bottom:1061.640000px;}
.yef{bottom:1071.551880px;}
.y14e{bottom:1073.340000px;}
.y20c{bottom:1076.339880px;}
.y29b{bottom:1078.380000px;}
.y17e{bottom:1078.401600px;}
.y1ae{bottom:1078.577640px;}
.y5d{bottom:1078.580880px;}
.y91{bottom:1078.611480px;}
.y26a{bottom:1078.662780px;}
.y2c7{bottom:1079.640000px;}
.y7{bottom:1087.380000px;}
.yee{bottom:1091.705940px;}
.y20b{bottom:1096.493940px;}
.y2c6{bottom:1097.460000px;}
.y17d{bottom:1098.376380px;}
.y1ad{bottom:1098.731700px;}
.y14d{bottom:1098.734040px;}
.y5c{bottom:1098.734940px;}
.y90{bottom:1098.765540px;}
.y269{bottom:1098.816840px;}
.yed{bottom:1111.864140px;}
.y2c5{bottom:1115.460000px;}
.y20a{bottom:1116.648000px;}
.y1ac{bottom:1118.885760px;}
.y14c{bottom:1118.888100px;}
.y5b{bottom:1118.889000px;}
.y8f{bottom:1118.919600px;}
.y268{bottom:1118.970900px;}
.y6{bottom:1125.360000px;}
.yec{bottom:1131.660720px;}
.y2d1{bottom:1133.460000px;}
.y2c4{bottom:1135.080000px;}
.y1ab{bottom:1138.860540px;}
.y2aa{bottom:1138.860720px;}
.y14b{bottom:1138.862880px;}
.y5a{bottom:1138.863780px;}
.y8e{bottom:1138.894380px;}
.y267{bottom:1138.945680px;}
.y209{bottom:1139.326920px;}
.y2d9{bottom:1142.100000px;}
.y2d5{bottom:1146.600000px;}
.y2d0{bottom:1148.574780px;}
.y2cd{bottom:1155.420000px;}
.y59{bottom:1187.640000px;}
.h13{height:4.002188px;}
.h12{height:16.509023px;}
.h24{height:19.010391px;}
.h1{height:20.880000px;}
.h3{height:24.840000px;}
.h9{height:28.995469px;}
.h27{height:29.015859px;}
.h4{height:33.518320px;}
.h25{height:35.519414px;}
.h22{height:35.991211px;}
.h21{height:37.520508px;}
.h23{height:39.830273px;}
.h16{height:40.501406px;}
.h2{height:41.522695px;}
.hb{height:43.506914px;}
.h17{height:44.024062px;}
.h15{height:44.820000px;}
.h26{height:46.025156px;}
.h5{height:48.026250px;}
.h1b{height:49.636659px;}
.h10{height:49.730259px;}
.h1f{height:49.864179px;}
.h19{height:49.879299px;}
.hd{height:50.027344px;}
.h8{height:51.282422px;}
.h1a{height:54.029531px;}
.he{height:56.530898px;}
.hf{height:57.092344px;}
.h11{height:58.531992px;}
.h1e{height:60.533086px;}
.h1c{height:62.534180px;}
.hc{height:63.425742px;}
.h14{height:66.536367px;}
.h20{height:69.037734px;}
.h7{height:69.291562px;}
.h18{height:70.018526px;}
.h1d{height:73.039922px;}
.ha{height:80.723672px;}
.h6{height:84.796875px;}
.h0{height:1260.000000px;}
.w1{width:20.880000px;}
.w2{width:317.161500px;}
.w0{width:963.000000px;}
.x0{left:0.000000px;}
.x4{left:1.440000px;}
.x2{left:3.060000px;}
.x5{left:76.500000px;}
.x6{left:84.960000px;}
.x7{left:86.400000px;}
.x3{left:90.900000px;}
.x1c{left:92.340000px;}
.x9{left:99.900000px;}
.x1e{left:107.460000px;}
.x1f{left:114.840000px;}
.x1a{left:116.640000px;}
.x1b{left:118.800000px;}
.x8{left:139.140000px;}
.x20{left:141.840000px;}
.x24{left:213.120000px;}
.xa{left:237.600000px;}
.x26{left:278.460000px;}
.x2c{left:307.257840px;}
.x28{left:348.838380px;}
.x2a{left:360.720360px;}
.x2f{left:366.654960px;}
.x2d{left:388.800360px;}
.x22{left:391.318740px;}
.xc{left:490.500000px;}
.xb{left:498.960000px;}
.x10{left:501.300000px;}
.x15{left:504.720000px;}
.x11{left:508.680000px;}
.x12{left:511.560000px;}
.xd{left:513.900000px;}
.xe{left:515.513520px;}
.x13{left:522.360000px;}
.x16{left:523.980000px;}
.x17{left:525.240000px;}
.x18{left:530.640000px;}
.x19{left:532.800000px;}
.x14{left:534.600000px;}
.x1d{left:622.978920px;}
.x21{left:678.600000px;}
.x29{left:696.960000px;}
.x23{left:756.180000px;}
.x2b{left:769.860000px;}
.x27{left:777.960000px;}
.x25{left:842.040000px;}
.x1{left:859.320000px;}
.x2e{left:873.360000px;}
.xf{left:878.040000px;}
@media print{
.v3{vertical-align:-18.545920pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v4{vertical-align:26.237440pt;}
.v1{vertical-align:32.000000pt;}
.ls4d{letter-spacing:-3.718400pt;}
.ls72{letter-spacing:-3.665280pt;}
.ls6a{letter-spacing:-3.293440pt;}
.ls5c{letter-spacing:-2.974720pt;}
.ls5d{letter-spacing:-2.868480pt;}
.ls69{letter-spacing:-2.762240pt;}
.ls6b{letter-spacing:-2.656000pt;}
.ls62{letter-spacing:-2.602880pt;}
.ls1a{letter-spacing:-2.443520pt;}
.ls70{letter-spacing:-2.390400pt;}
.ls46{letter-spacing:-2.337280pt;}
.ls1f{letter-spacing:-2.231040pt;}
.ls2b{letter-spacing:-2.124800pt;}
.ls3a{letter-spacing:-2.018560pt;}
.ls3d{letter-spacing:-1.965440pt;}
.ls13{letter-spacing:-1.859200pt;}
.ls1c{letter-spacing:-1.806080pt;}
.ls73{letter-spacing:-1.752960pt;}
.ls3e{letter-spacing:-1.699840pt;}
.ls61{letter-spacing:-1.646720pt;}
.ls19{letter-spacing:-1.593600pt;}
.ls23{letter-spacing:-1.487360pt;}
.ls6c{letter-spacing:-1.381120pt;}
.ls1b{letter-spacing:-1.328000pt;}
.ls16{letter-spacing:-1.221760pt;}
.ls1d{letter-spacing:-1.168640pt;}
.ls3c{letter-spacing:-1.115520pt;}
.ls26{letter-spacing:-1.114880pt;}
.ls2d{letter-spacing:-1.062400pt;}
.ls28{letter-spacing:-1.029120pt;}
.ls3b{letter-spacing:-1.009280pt;}
.ls1e{letter-spacing:-1.002240pt;}
.ls18{letter-spacing:-0.956160pt;}
.ls48{letter-spacing:-0.928000pt;}
.ls20{letter-spacing:-0.849920pt;}
.ls21{letter-spacing:-0.690560pt;}
.ls22{letter-spacing:-0.673920pt;}
.ls3f{letter-spacing:-0.584320pt;}
.ls2c{letter-spacing:-0.531200pt;}
.ls71{letter-spacing:-0.478080pt;}
.ls25{letter-spacing:-0.471680pt;}
.ls39{letter-spacing:-0.424960pt;}
.ls27{letter-spacing:-0.385920pt;}
.ls4c{letter-spacing:-0.371840pt;}
.ls15{letter-spacing:-0.318720pt;}
.ls2a{letter-spacing:-0.300160pt;}
.lsd{letter-spacing:-0.257280pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.212480pt;}
.ls24{letter-spacing:-0.171520pt;}
.ls11{letter-spacing:-0.106240pt;}
.ls10{letter-spacing:-0.074240pt;}
.ls14{letter-spacing:-0.053120pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.014080pt;}
.ls9{letter-spacing:0.053120pt;}
.ls68{letter-spacing:0.096000pt;}
.lsa{letter-spacing:0.106240pt;}
.ls5e{letter-spacing:0.111552pt;}
.ls66{letter-spacing:0.132800pt;}
.ls65{letter-spacing:0.154048pt;}
.ls35{letter-spacing:0.159360pt;}
.ls29{letter-spacing:0.171520pt;}
.ls2e{letter-spacing:0.185920pt;}
.ls4a{letter-spacing:0.191232pt;}
.ls43{letter-spacing:0.207168pt;}
.ls7{letter-spacing:0.212480pt;}
.ls47{letter-spacing:0.214400pt;}
.ls63{letter-spacing:0.217792pt;}
.ls4f{letter-spacing:0.223104pt;}
.ls60{letter-spacing:0.228416pt;}
.ls49{letter-spacing:0.233728pt;}
.ls6f{letter-spacing:0.239040pt;}
.ls34{letter-spacing:0.244352pt;}
.ls6{letter-spacing:0.249664pt;}
.ls5f{letter-spacing:0.254976pt;}
.ls40{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.270912pt;}
.ls67{letter-spacing:0.276224pt;}
.ls6d{letter-spacing:0.286848pt;}
.ls50{letter-spacing:0.292160pt;}
.ls33{letter-spacing:0.297472pt;}
.ls17{letter-spacing:0.299520pt;}
.ls64{letter-spacing:0.302784pt;}
.ls5{letter-spacing:0.318720pt;}
.lse{letter-spacing:0.343040pt;}
.ls36{letter-spacing:0.382464pt;}
.ls0{letter-spacing:0.482560pt;}
.ls4e{letter-spacing:0.796800pt;}
.ls8{letter-spacing:1.434240pt;}
.ls37{letter-spacing:2.071680pt;}
.ls53{letter-spacing:2.709120pt;}
.ls52{letter-spacing:3.181888pt;}
.ls42{letter-spacing:3.346560pt;}
.ls38{letter-spacing:3.394368pt;}
.ls41{letter-spacing:3.530240pt;}
.ls54{letter-spacing:3.984000pt;}
.ls32{letter-spacing:4.621440pt;}
.ls30{letter-spacing:5.258880pt;}
.ls56{letter-spacing:5.301376pt;}
.ls31{letter-spacing:5.354496pt;}
.ls4b{letter-spacing:5.896320pt;}
.ls57{letter-spacing:5.906944pt;}
.ls2f{letter-spacing:6.533760pt;}
.ls2{letter-spacing:6.586880pt;}
.ls44{letter-spacing:6.602816pt;}
.ls58{letter-spacing:7.224320pt;}
.ls55{letter-spacing:7.861760pt;}
.lsb{letter-spacing:7.872384pt;}
.ls5b{letter-spacing:8.499200pt;}
.ls5a{letter-spacing:8.509824pt;}
.ls59{letter-spacing:9.136640pt;}
.ls45{letter-spacing:10.411520pt;}
.ls51{letter-spacing:11.033024pt;}
.ls6e{letter-spacing:12.961280pt;}
.ls3{letter-spacing:45.576960pt;}
.ws1{word-spacing:-22.720000pt;}
.ws8{word-spacing:-19.019520pt;}
.ws82{word-spacing:-18.698240pt;}
.ws10{word-spacing:-18.046080pt;}
.ws4{word-spacing:-14.661120pt;}
.ws11{word-spacing:-13.598720pt;}
.ws5d{word-spacing:-13.545600pt;}
.ws17{word-spacing:-13.492480pt;}
.ws81{word-spacing:-13.439360pt;}
.wsa3{word-spacing:-13.412800pt;}
.wsf{word-spacing:-13.386240pt;}
.ws15{word-spacing:-13.333120pt;}
.wsb{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.226880pt;}
.ws5b{word-spacing:-13.173760pt;}
.ws5{word-spacing:-13.067520pt;}
.wsd{word-spacing:-12.961280pt;}
.ws83{word-spacing:-12.908160pt;}
.ws5e{word-spacing:-12.855040pt;}
.ws5a{word-spacing:-12.748800pt;}
.ws18{word-spacing:-12.589440pt;}
.ws6f{word-spacing:-12.430080pt;}
.wse{word-spacing:-12.323840pt;}
.ws59{word-spacing:-12.270720pt;}
.ws14{word-spacing:-12.217600pt;}
.wsa{word-spacing:-12.111360pt;}
.ws6{word-spacing:-12.058240pt;}
.ws9{word-spacing:-11.952000pt;}
.wsb7{word-spacing:-11.898880pt;}
.ws5c{word-spacing:-11.792640pt;}
.ws16{word-spacing:-11.686400pt;}
.ws9e{word-spacing:-11.633280pt;}
.ws92{word-spacing:-11.580160pt;}
.wsc{word-spacing:-11.473920pt;}
.ws5f{word-spacing:-11.420800pt;}
.ws70{word-spacing:-11.314560pt;}
.ws58{word-spacing:-11.261440pt;}
.wsa4{word-spacing:-11.155200pt;}
.ws9f{word-spacing:-11.048960pt;}
.ws71{word-spacing:-10.934400pt;}
.wsb8{word-spacing:-10.889600pt;}
.wsc6{word-spacing:-10.836480pt;}
.ws12{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.462720pt;}
.ws13{word-spacing:-10.419840pt;}
.ws2{word-spacing:-10.245120pt;}
.ws3{word-spacing:-9.280000pt;}
.ws72{word-spacing:-8.352000pt;}
.wsad{word-spacing:-1.752960pt;}
.ws63{word-spacing:-1.115520pt;}
.wsc7{word-spacing:-0.823680pt;}
.ws78{word-spacing:-0.796800pt;}
.wsba{word-spacing:-0.478080pt;}
.ws8b{word-spacing:-0.449280pt;}
.ws49{word-spacing:-0.424960pt;}
.ws22{word-spacing:-0.318720pt;}
.ws1d{word-spacing:-0.265600pt;}
.ws7f{word-spacing:-0.212480pt;}
.ws1a{word-spacing:-0.171520pt;}
.ws35{word-spacing:-0.159360pt;}
.ws1f{word-spacing:-0.106240pt;}
.wsaa{word-spacing:-0.096000pt;}
.ws46{word-spacing:-0.085760pt;}
.ws65{word-spacing:-0.053120pt;}
.ws19{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.053120pt;}
.wsa2{word-spacing:0.106240pt;}
.ws7e{word-spacing:0.159360pt;}
.ws39{word-spacing:0.212480pt;}
.ws1c{word-spacing:0.256000pt;}
.ws6a{word-spacing:0.265600pt;}
.ws21{word-spacing:0.318720pt;}
.ws43{word-spacing:0.343040pt;}
.ws1b{word-spacing:0.363520pt;}
.ws7d{word-spacing:0.371840pt;}
.ws48{word-spacing:0.385920pt;}
.ws60{word-spacing:0.424960pt;}
.ws29{word-spacing:0.478080pt;}
.ws4c{word-spacing:0.531200pt;}
.ws6e{word-spacing:0.584320pt;}
.ws44{word-spacing:0.643200pt;}
.ws3d{word-spacing:0.690560pt;}
.ws3a{word-spacing:0.849920pt;}
.ws23{word-spacing:0.956160pt;}
.ws31{word-spacing:1.002240pt;}
.ws85{word-spacing:1.009280pt;}
.ws47{word-spacing:1.029120pt;}
.ws96{word-spacing:1.062400pt;}
.ws45{word-spacing:1.114880pt;}
.ws4b{word-spacing:1.115520pt;}
.ws32{word-spacing:1.168640pt;}
.ws57{word-spacing:1.221760pt;}
.ws3b{word-spacing:1.328000pt;}
.wsb1{word-spacing:1.381120pt;}
.ws41{word-spacing:1.487360pt;}
.ws25{word-spacing:1.593600pt;}
.ws6c{word-spacing:1.699840pt;}
.ws67{word-spacing:1.752960pt;}
.ws2e{word-spacing:1.806080pt;}
.ws20{word-spacing:1.859200pt;}
.ws61{word-spacing:1.965440pt;}
.wsac{word-spacing:2.018560pt;}
.ws4a{word-spacing:2.124800pt;}
.ws37{word-spacing:2.231040pt;}
.ws80{word-spacing:2.284160pt;}
.ws7b{word-spacing:2.337280pt;}
.ws54{word-spacing:2.390400pt;}
.ws27{word-spacing:2.443520pt;}
.ws3c{word-spacing:2.602880pt;}
.wsb0{word-spacing:2.656000pt;}
.ws84{word-spacing:2.762240pt;}
.ws9c{word-spacing:2.868480pt;}
.ws9a{word-spacing:2.974720pt;}
.ws56{word-spacing:3.027840pt;}
.ws55{word-spacing:3.240320pt;}
.wsaf{word-spacing:3.293440pt;}
.ws34{word-spacing:3.399680pt;}
.wsb5{word-spacing:3.559040pt;}
.ws64{word-spacing:3.665280pt;}
.ws91{word-spacing:3.718400pt;}
.ws52{word-spacing:3.877760pt;}
.ws69{word-spacing:4.037120pt;}
.ws50{word-spacing:4.302720pt;}
.ws66{word-spacing:4.515200pt;}
.ws74{word-spacing:4.674560pt;}
.ws53{word-spacing:4.940160pt;}
.ws90{word-spacing:5.046400pt;}
.ws3e{word-spacing:5.152640pt;}
.ws9b{word-spacing:5.312000pt;}
.ws2b{word-spacing:5.577600pt;}
.ws2a{word-spacing:5.790080pt;}
.ws36{word-spacing:5.949440pt;}
.wsc2{word-spacing:6.215040pt;}
.ws3f{word-spacing:6.268160pt;}
.ws40{word-spacing:6.480640pt;}
.ws79{word-spacing:6.640000pt;}
.ws8f{word-spacing:6.693120pt;}
.ws26{word-spacing:6.905600pt;}
.ws7c{word-spacing:7.118080pt;}
.ws73{word-spacing:7.277440pt;}
.ws24{word-spacing:7.543040pt;}
.ws86{word-spacing:7.755520pt;}
.ws7a{word-spacing:7.914880pt;}
.ws4e{word-spacing:8.180480pt;}
.ws87{word-spacing:8.392960pt;}
.ws88{word-spacing:8.552320pt;}
.ws30{word-spacing:8.817920pt;}
.ws4d{word-spacing:9.030400pt;}
.ws6d{word-spacing:9.189760pt;}
.ws2f{word-spacing:9.455360pt;}
.ws98{word-spacing:9.561600pt;}
.ws4f{word-spacing:9.667840pt;}
.wsa6{word-spacing:9.827200pt;}
.ws33{word-spacing:10.092800pt;}
.ws97{word-spacing:10.305280pt;}
.ws42{word-spacing:10.464640pt;}
.ws75{word-spacing:10.730240pt;}
.ws68{word-spacing:10.942720pt;}
.ws38{word-spacing:11.102080pt;}
.ws8d{word-spacing:11.155200pt;}
.ws2c{word-spacing:11.367680pt;}
.ws2d{word-spacing:11.580160pt;}
.wsa5{word-spacing:11.739520pt;}
.ws62{word-spacing:12.005120pt;}
.ws9d{word-spacing:12.217600pt;}
.ws28{word-spacing:12.376960pt;}
.ws99{word-spacing:12.642560pt;}
.ws77{word-spacing:12.855040pt;}
.ws8c{word-spacing:13.280000pt;}
.wsa1{word-spacing:13.651840pt;}
.ws51{word-spacing:13.917440pt;}
.wsbc{word-spacing:14.129920pt;}
.ws8a{word-spacing:14.289280pt;}
.ws76{word-spacing:14.554880pt;}
.ws89{word-spacing:14.767360pt;}
.wsc4{word-spacing:15.351680pt;}
.wsc5{word-spacing:15.404800pt;}
.ws94{word-spacing:16.467200pt;}
.ws93{word-spacing:17.742080pt;}
.ws8e{word-spacing:19.070080pt;}
.ws6b{word-spacing:19.707520pt;}
.wsab{word-spacing:20.344960pt;}
.wsa0{word-spacing:20.982400pt;}
.wsb9{word-spacing:21.194880pt;}
.wsb2{word-spacing:21.354240pt;}
.wsbd{word-spacing:22.257280pt;}
.wsa8{word-spacing:22.469760pt;}
.wsa9{word-spacing:22.788480pt;}
.wsb6{word-spacing:22.894720pt;}
.ws95{word-spacing:26.294400pt;}
.wsc3{word-spacing:26.719360pt;}
.wsbf{word-spacing:29.269120pt;}
.wsbe{word-spacing:29.800320pt;}
.wsa7{word-spacing:30.278400pt;}
.wsc1{word-spacing:32.509440pt;}
.wsc0{word-spacing:32.881280pt;}
.wsb4{word-spacing:35.059200pt;}
.wsb3{word-spacing:35.696640pt;}
.wsae{word-spacing:39.521280pt;}
.wsbb{word-spacing:58.060160pt;}
._f{margin-left:-14.293824pt;}
._1d{margin-left:-13.085248pt;}
._1c{margin-left:-11.809408pt;}
._10{margin-left:-9.402240pt;}
._a{margin-left:-8.432000pt;}
._5{margin-left:-7.290816pt;}
._e{margin-left:-5.006656pt;}
._9{margin-left:-3.891008pt;}
._3{margin-left:-2.448064pt;}
._1{margin-left:-1.173056pt;}
._0{width:1.011968pt;}
._4{width:2.005120pt;}
._d{width:2.980864pt;}
._b{width:4.258432pt;}
._8{width:5.149952pt;}
._2{width:6.161920pt;}
._12{width:7.543040pt;}
._19{width:8.496512pt;}
._11{width:9.406656pt;}
._6{width:10.669056pt;}
._7{width:11.577472pt;}
._16{width:14.913600pt;}
._c{width:18.963840pt;}
._14{width:21.513600pt;}
._18{width:22.545088pt;}
._1b{width:26.728192pt;}
._13{width:28.838784pt;}
._1a{width:33.670016pt;}
._17{width:35.428352pt;}
._15{width:40.025856pt;}
.fsb{font-size:5.120000pt;}
.fsa{font-size:21.120000pt;}
.fs13{font-size:24.320000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs14{font-size:45.440000pt;}
.fs12{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fsd{font-size:56.320000pt;}
.fs15{font-size:58.880000pt;}
.fs2{font-size:61.440000pt;}
.fs4{font-size:64.000000pt;}
.fse{font-size:69.120000pt;}
.fs8{font-size:72.320000pt;}
.fs9{font-size:74.880000pt;}
.fs7{font-size:77.440000pt;}
.fsf{font-size:80.000000pt;}
.fsc{font-size:85.120000pt;}
.fs11{font-size:88.320000pt;}
.fs3{font-size:90.880000pt;}
.fs10{font-size:93.440000pt;}
.fs6{font-size:98.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:4.960000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:25.440000pt;}
.y1{bottom:31.360000pt;}
.y5{bottom:33.760000pt;}
.y58{bottom:77.819680pt;}
.y35{bottom:78.403840pt;}
.y14a{bottom:78.884640pt;}
.y23c{bottom:79.020640pt;}
.y208{bottom:79.615840pt;}
.y29a{bottom:85.125280pt;}
.y266{bottom:85.199840pt;}
.y17c{bottom:85.378560pt;}
.y8d{bottom:85.472960pt;}
.y34{bottom:92.640000pt;}
.y57{bottom:95.734400pt;}
.y149{bottom:96.640000pt;}
.y207{bottom:97.530560pt;}
.y23b{bottom:99.657760pt;}
.y299{bottom:103.040000pt;}
.y265{bottom:103.114560pt;}
.y17b{bottom:103.133920pt;}
.y8c{bottom:103.387680pt;}
.y33{bottom:104.480000pt;}
.yc0{bottom:105.989760pt;}
.y1de{bottom:106.293760pt;}
.y11e{bottom:106.504480pt;}
.y32{bottom:106.720000pt;}
.y56{bottom:113.489760pt;}
.yeb{bottom:114.075680pt;}
.y206{bottom:115.445280pt;}
.y148{bottom:116.800000pt;}
.y23a{bottom:117.572480pt;}
.y31{bottom:117.609920pt;}
.y17a{bottom:121.048640pt;}
.y8b{bottom:121.302400pt;}
.y298{bottom:121.775200pt;}
.y264{bottom:122.158080pt;}
.ybf{bottom:123.904480pt;}
.y1dd{bottom:124.208480pt;}
.y11d{bottom:124.419200pt;}
.y1aa{bottom:125.442240pt;}
.y55{bottom:131.563840pt;}
.yea{bottom:131.990400pt;}
.y205{bottom:133.200640pt;}
.y239{bottom:135.327840pt;}
.y30{bottom:135.524640pt;}
.y147{bottom:138.560000pt;}
.y179{bottom:138.963360pt;}
.y8a{bottom:139.057760pt;}
.y297{bottom:139.689920pt;}
.y263{bottom:140.072800pt;}
.ybe{bottom:141.659840pt;}
.y1dc{bottom:141.963840pt;}
.y11c{bottom:142.174560pt;}
.y1a9{bottom:142.878880pt;}
.ye9{bottom:149.745760pt;}
.y54{bottom:150.448000pt;}
.y204{bottom:151.115360pt;}
.y238{bottom:153.242560pt;}
.y2f{bottom:153.280000pt;}
.y178{bottom:156.878080pt;}
.y89{bottom:156.972480pt;}
.y296{bottom:157.604640pt;}
.y262{bottom:157.987520pt;}
.y1a8{bottom:159.200000pt;}
.ybd{bottom:159.574560pt;}
.y1db{bottom:159.878560pt;}
.y11b{bottom:160.089280pt;}
.y146{bottom:163.101280pt;}
.ye8{bottom:167.660480pt;}
.y53{bottom:168.362720pt;}
.y203{bottom:169.030080pt;}
.y237{bottom:171.157280pt;}
.y2e{bottom:172.325600pt;}
.y177{bottom:174.633440pt;}
.y88{bottom:174.887200pt;}
.y295{bottom:175.360000pt;}
.y1a7{bottom:175.680000pt;}
.y261{bottom:175.742880pt;}
.ybc{bottom:177.489280pt;}
.y1da{bottom:177.793280pt;}
.y11a{bottom:178.004000pt;}
.y145{bottom:181.016000pt;}
.ye7{bottom:185.575200pt;}
.y52{bottom:186.118080pt;}
.y236{bottom:189.072000pt;}
.y202{bottom:189.507840pt;}
.y87{bottom:192.801920pt;}
.y260{bottom:193.657600pt;}
.y2d{bottom:193.760000pt;}
.y294{bottom:194.090560pt;}
.y176{bottom:194.155040pt;}
.ybb{bottom:195.404000pt;}
.y1d9{bottom:195.708000pt;}
.y119{bottom:195.918720pt;}
.y1a6{bottom:198.604960pt;}
.y144{bottom:198.930720pt;}
.ye6{bottom:203.489920pt;}
.y51{bottom:204.192160pt;}
.y235{bottom:206.986720pt;}
.y201{bottom:207.422560pt;}
.y86{bottom:210.557280pt;}
.y25f{bottom:211.572320pt;}
.y293{bottom:212.005280pt;}
.y175{bottom:212.069760pt;}
.y1d8{bottom:213.622720pt;}
.yba{bottom:213.810080pt;}
.y118{bottom:213.833440pt;}
.y1a5{bottom:216.519680pt;}
.y143{bottom:216.845440pt;}
.y2c{bottom:216.996320pt;}
.ye5{bottom:221.245280pt;}
.y50{bottom:223.076320pt;}
.y234{bottom:224.901440pt;}
.y200{bottom:228.219040pt;}
.y85{bottom:228.963360pt;}
.y25e{bottom:229.487040pt;}
.y292{bottom:229.920000pt;}
.yb9{bottom:231.565440pt;}
.y117{bottom:231.588800pt;}
.y174{bottom:232.069440pt;}
.y1d7{bottom:232.188160pt;}
.y1a4{bottom:234.434400pt;}
.y2b{bottom:234.911040pt;}
.y142{bottom:235.251520pt;}
.y4f{bottom:240.991040pt;}
.y233{bottom:245.060480pt;}
.y1ff{bottom:246.133760pt;}
.y84{bottom:246.400000pt;}
.y25d{bottom:247.401760pt;}
.ye4{bottom:247.645920pt;}
.y291{bottom:248.655840pt;}
.yb8{bottom:249.480160pt;}
.y116{bottom:249.503520pt;}
.y173{bottom:249.824800pt;}
.y1d6{bottom:251.072320pt;}
.y1a3{bottom:252.189760pt;}
.y2a{bottom:252.825760pt;}
.y141{bottom:253.166240pt;}
.y2c3{bottom:258.095840pt;}
.y4e{bottom:258.746400pt;}
.y2de{bottom:259.042240pt;}
.y83{bottom:262.560000pt;}
.y1fe{bottom:264.048480pt;}
.y25c{bottom:265.157120pt;}
.ye3{bottom:265.560640pt;}
.y232{bottom:265.856960pt;}
.y290{bottom:266.570560pt;}
.yb7{bottom:267.394880pt;}
.y115{bottom:267.418240pt;}
.y172{bottom:267.739520pt;}
.y1d5{bottom:268.827680pt;}
.y1a2{bottom:270.104480pt;}
.y29{bottom:270.740480pt;}
.y140{bottom:271.080960pt;}
.y2c2{bottom:276.010560pt;}
.y4d{bottom:276.661120pt;}
.y2dd{bottom:279.520000pt;}
.y1fd{bottom:281.963200pt;}
.y25b{bottom:283.231200pt;}
.ye2{bottom:283.316000pt;}
.y231{bottom:283.771680pt;}
.y28f{bottom:284.485280pt;}
.yb6{bottom:285.309600pt;}
.y114{bottom:285.332960pt;}
.y82{bottom:285.519040pt;}
.y171{bottom:285.654240pt;}
.y1d4{bottom:286.583040pt;}
.y1a1{bottom:288.019200pt;}
.y28{bottom:288.655200pt;}
.y13f{bottom:288.995680pt;}
.y2c1{bottom:293.925280pt;}
.y4c{bottom:294.575840pt;}
.y1fc{bottom:299.877920pt;}
.ye1{bottom:301.230720pt;}
.y230{bottom:301.527040pt;}
.y25a{bottom:302.115360pt;}
.y28e{bottom:302.400000pt;}
.y113{bottom:303.247680pt;}
.y81{bottom:303.433760pt;}
.y170{bottom:303.568960pt;}
.yb5{bottom:303.875040pt;}
.y1d3{bottom:304.338400pt;}
.y1a0{bottom:305.933920pt;}
.y27{bottom:306.410560pt;}
.y13e{bottom:306.910400pt;}
.y2c0{bottom:311.840000pt;}
.y4b{bottom:312.490560pt;}
.y1fb{bottom:317.633280pt;}
.ye0{bottom:319.145440pt;}
.y22f{bottom:319.441760pt;}
.y259{bottom:320.030080pt;}
.y112{bottom:321.003040pt;}
.y28d{bottom:321.135200pt;}
.y80{bottom:321.348480pt;}
.y16f{bottom:321.483680pt;}
.yb4{bottom:321.630400pt;}
.y1d2{bottom:322.093760pt;}
.y19f{bottom:323.848640pt;}
.y26{bottom:324.325280pt;}
.y13d{bottom:324.665760pt;}
.y2bf{bottom:329.941120pt;}
.y4a{bottom:330.405280pt;}
.y1fa{bottom:335.548000pt;}
.ydf{bottom:337.060160pt;}
.y22e{bottom:337.356480pt;}
.y258{bottom:337.785440pt;}
.y28c{bottom:339.049920pt;}
.y7f{bottom:339.103840pt;}
.y111{bottom:339.236480pt;}
.y16e{bottom:339.239040pt;}
.yb3{bottom:339.545120pt;}
.y1d1{bottom:339.849120pt;}
.y19e{bottom:341.763360pt;}
.y25{bottom:342.240000pt;}
.y13c{bottom:342.580480pt;}
.y2be{bottom:347.855840pt;}
.y49{bottom:348.320000pt;}
.yde{bottom:354.974880pt;}
.y22d{bottom:355.271200pt;}
.y257{bottom:355.700160pt;}
.y1f9{bottom:356.344480pt;}
.y28b{bottom:356.964640pt;}
.y7e{bottom:357.018560pt;}
.y110{bottom:357.151200pt;}
.y16d{bottom:357.153760pt;}
.yb2{bottom:357.459840pt;}
.y1d0{bottom:358.573920pt;}
.y19d{bottom:359.200000pt;}
.y13b{bottom:360.495200pt;}
.y24{bottom:361.120000pt;}
.y2dc{bottom:363.202400pt;}
.y2bd{bottom:365.770560pt;}
.y48{bottom:368.320000pt;}
.ydd{bottom:372.730240pt;}
.y22c{bottom:373.026560pt;}
.y256{bottom:373.614880pt;}
.y1f8{bottom:374.259200pt;}
.y28a{bottom:374.720000pt;}
.y7d{bottom:374.933280pt;}
.y10f{bottom:375.065920pt;}
.yb1{bottom:375.374560pt;}
.y19c{bottom:375.680000pt;}
.y1cf{bottom:376.329280pt;}
.y16c{bottom:376.994080pt;}
.y13a{bottom:378.409920pt;}
.y23{bottom:382.400000pt;}
.y2bc{bottom:383.685280pt;}
.y2db{bottom:387.040000pt;}
.y47{bottom:390.400000pt;}
.ydc{bottom:390.644960pt;}
.y22b{bottom:390.941280pt;}
.y255{bottom:391.529600pt;}
.y1f7{bottom:392.173920pt;}
.y10e{bottom:392.821280pt;}
.y7c{bottom:392.848000pt;}
.yb0{bottom:393.289280pt;}
.y289{bottom:393.450560pt;}
.y1ce{bottom:394.084640pt;}
.y16b{bottom:394.749440pt;}
.y139{bottom:396.324640pt;}
.y19b{bottom:398.707680pt;}
.y2bb{bottom:401.600000pt;}
.y22{bottom:405.295840pt;}
.ydb{bottom:408.559680pt;}
.y22a{bottom:408.856000pt;}
.y254{bottom:409.444320pt;}
.y1f6{bottom:410.088640pt;}
.y10d{bottom:410.736000pt;}
.y7b{bottom:410.762720pt;}
.yaf{bottom:411.204000pt;}
.y288{bottom:411.365280pt;}
.y1cd{bottom:411.847040pt;}
.y16a{bottom:412.664160pt;}
.y138{bottom:414.137600pt;}
.y46{bottom:416.093120pt;}
.y19a{bottom:416.622400pt;}
.y2e0{bottom:417.755840pt;}
.y2ba{bottom:419.855200pt;}
.y21{bottom:423.210560pt;}
.yda{bottom:426.474400pt;}
.y229{bottom:426.770720pt;}
.y253{bottom:427.199680pt;}
.y1f5{bottom:427.844000pt;}
.y7a{bottom:428.518080pt;}
.y10c{bottom:428.650720pt;}
.yae{bottom:428.800000pt;}
.y2e2{bottom:429.116960pt;}
.y287{bottom:429.280000pt;}
.y1cc{bottom:430.571840pt;}
.y169{bottom:430.578880pt;}
.y137{bottom:433.021760pt;}
.y45{bottom:434.007840pt;}
.y199{bottom:434.537120pt;}
.y2df{bottom:436.640000pt;}
.y2b9{bottom:437.610560pt;}
.y20{bottom:441.125280pt;}
.y2e1{bottom:444.960000pt;}
.y1f4{bottom:445.758720pt;}
.y79{bottom:446.432800pt;}
.y10b{bottom:446.565440pt;}
.y252{bottom:447.040000pt;}
.y228{bottom:447.567200pt;}
.y286{bottom:448.009920pt;}
.y1cb{bottom:448.486560pt;}
.y168{bottom:448.493600pt;}
.y136{bottom:451.746560pt;}
.y44{bottom:451.763200pt;}
.yd9{bottom:452.396960pt;}
.y198{bottom:452.451840pt;}
.y2b8{bottom:455.525280pt;}
.yad{bottom:455.680000pt;}
.y1f{bottom:459.040000pt;}
.y251{bottom:464.320000pt;}
.y10a{bottom:464.320800pt;}
.y78{bottom:464.347520pt;}
.y227{bottom:465.481920pt;}
.y285{bottom:465.765280pt;}
.y167{bottom:466.408320pt;}
.y1ca{bottom:466.720000pt;}
.y1f3{bottom:466.873920pt;}
.y43{bottom:469.677920pt;}
.yd8{bottom:470.311680pt;}
.y197{bottom:470.366560pt;}
.y135{bottom:470.630720pt;}
.y2b7{bottom:473.440000pt;}
.yac{bottom:474.296800pt;}
.y1e{bottom:476.836800pt;}
.y109{bottom:481.120000pt;}
.y77{bottom:482.262240pt;}
.y1c9{bottom:482.880000pt;}
.y226{bottom:483.396640pt;}
.y284{bottom:483.680000pt;}
.y1f2{bottom:484.788640pt;}
.y166{bottom:485.770560pt;}
.y42{bottom:487.592640pt;}
.y196{bottom:488.121920pt;}
.yd7{bottom:488.226400pt;}
.y134{bottom:488.386080pt;}
.y250{bottom:490.698240pt;}
.y2b6{bottom:491.535840pt;}
.yab{bottom:492.052160pt;}
.y1d{bottom:495.720960pt;}
.y76{bottom:500.176960pt;}
.y225{bottom:501.152000pt;}
.y108{bottom:501.440000pt;}
.y283{bottom:502.409920pt;}
.y1f1{bottom:502.703360pt;}
.y165{bottom:503.685280pt;}
.y1c8{bottom:503.840000pt;}
.y41{bottom:505.507360pt;}
.y195{bottom:506.036640pt;}
.yd6{bottom:506.141120pt;}
.y133{bottom:506.300800pt;}
.y24f{bottom:508.612960pt;}
.y2b5{bottom:509.450560pt;}
.yaa{bottom:509.966880pt;}
.y1c{bottom:513.635680pt;}
.y75{bottom:519.061120pt;}
.y224{bottom:519.066720pt;}
.y282{bottom:520.324640pt;}
.y1f0{bottom:520.458720pt;}
.y164{bottom:521.600000pt;}
.y1c7{bottom:521.614880pt;}
.y107{bottom:521.713920pt;}
.y40{bottom:523.422080pt;}
.y194{bottom:523.951360pt;}
.yd5{bottom:524.055840pt;}
.y132{bottom:524.215520pt;}
.y24e{bottom:526.527680pt;}
.y2b4{bottom:527.365280pt;}
.ya9{bottom:527.881600pt;}
.y1b{bottom:531.550400pt;}
.y74{bottom:536.975840pt;}
.y223{bottom:536.981440pt;}
.y281{bottom:538.080000pt;}
.y1ef{bottom:538.373440pt;}
.y106{bottom:539.628640pt;}
.y1c6{bottom:539.848320pt;}
.y163{bottom:541.144320pt;}
.y3f{bottom:541.177440pt;}
.yd4{bottom:541.811200pt;}
.y193{bottom:541.866080pt;}
.y131{bottom:542.130240pt;}
.y24d{bottom:544.442400pt;}
.y2b3{bottom:545.280000pt;}
.ya8{bottom:545.796320pt;}
.y1a{bottom:549.465120pt;}
.y73{bottom:554.890560pt;}
.y222{bottom:554.896160pt;}
.y1ee{bottom:556.288160pt;}
.y280{bottom:556.810560pt;}
.y105{bottom:557.384000pt;}
.y1c5{bottom:557.763040pt;}
.y162{bottom:559.059040pt;}
.y3e{bottom:559.092160pt;}
.yd3{bottom:559.725920pt;}
.y192{bottom:560.099520pt;}
.y130{bottom:560.363680pt;}
.y24c{bottom:562.197760pt;}
.y2b2{bottom:563.535200pt;}
.ya7{bottom:563.711040pt;}
.y19{bottom:567.220480pt;}
.y72{bottom:572.805280pt;}
.y221{bottom:572.810880pt;}
.y1ed{bottom:574.202880pt;}
.y27f{bottom:574.725280pt;}
.y104{bottom:575.298720pt;}
.y1c4{bottom:575.518400pt;}
.y161{bottom:576.973760pt;}
.y3d{bottom:577.006880pt;}
.y12f{bottom:578.278400pt;}
.y191{bottom:578.332960pt;}
.y24b{bottom:580.112480pt;}
.y2b1{bottom:581.290560pt;}
.ya6{bottom:581.466400pt;}
.y18{bottom:585.135200pt;}
.yd2{bottom:585.967200pt;}
.y220{bottom:590.566240pt;}
.y71{bottom:590.720000pt;}
.y1ec{bottom:592.117600pt;}
.y27e{bottom:592.640000pt;}
.y103{bottom:593.213440pt;}
.y1c3{bottom:593.433120pt;}
.y3c{bottom:594.921600pt;}
.y12e{bottom:596.033760pt;}
.y190{bottom:596.247680pt;}
.y160{bottom:596.495360pt;}
.y24a{bottom:598.027200pt;}
.y2b0{bottom:599.205280pt;}
.ya5{bottom:599.381120pt;}
.y17{bottom:603.049920pt;}
.yd1{bottom:603.881920pt;}
.y2d4{bottom:605.120000pt;}
.y21f{bottom:608.480960pt;}
.y70{bottom:609.285600pt;}
.y1eb{bottom:609.872960pt;}
.y1c2{bottom:611.347840pt;}
.y27d{bottom:611.370560pt;}
.y102{bottom:611.778880pt;}
.y3b{bottom:612.836320pt;}
.y12d{bottom:613.948480pt;}
.y18f{bottom:614.162400pt;}
.y15f{bottom:614.410080pt;}
.y249{bottom:615.941920pt;}
.y2af{bottom:617.120000pt;}
.ya4{bottom:617.295840pt;}
.y16{bottom:620.964640pt;}
.yd0{bottom:621.796640pt;}
.y2d3{bottom:627.040000pt;}
.y1ea{bottom:627.947040pt;}
.y21e{bottom:628.640000pt;}
.y27c{bottom:629.125920pt;}
.y101{bottom:629.693600pt;}
.y1c1{bottom:629.753920pt;}
.y3a{bottom:630.591680pt;}
.y6f{bottom:630.720000pt;}
.y12c{bottom:631.863200pt;}
.y18e{bottom:632.077120pt;}
.y15e{bottom:632.324800pt;}
.y248{bottom:633.856640pt;}
.ya3{bottom:635.210560pt;}
.y2ae{bottom:635.375200pt;}
.y2d2{bottom:637.760000pt;}
.y15{bottom:638.720000pt;}
.ycf{bottom:639.552000pt;}
.y27b{bottom:647.200000pt;}
.y100{bottom:647.608320pt;}
.y1c0{bottom:648.160000pt;}
.y1e9{bottom:648.424800pt;}
.y39{bottom:648.506400pt;}
.y12b{bottom:649.777920pt;}
.y18d{bottom:649.832480pt;}
.y21d{bottom:649.952000pt;}
.y247{bottom:651.612000pt;}
.ya2{bottom:652.965920pt;}
.y2ad{bottom:653.130560pt;}
.y15d{bottom:653.440000pt;}
.y6e{bottom:654.175040pt;}
.yce{bottom:657.466720pt;}
.y14{bottom:657.600000pt;}
.y2cf{bottom:660.796800pt;}
.yff{bottom:665.523040pt;}
.y27a{bottom:665.760000pt;}
.y1bf{bottom:666.240000pt;}
.y38{bottom:666.421120pt;}
.y12a{bottom:667.692640pt;}
.y21c{bottom:667.707360pt;}
.y18c{bottom:667.906560pt;}
.y1e8{bottom:669.380640pt;}
.y246{bottom:669.526720pt;}
.ya1{bottom:671.040000pt;}
.y2ac{bottom:671.045280pt;}
.y6d{bottom:672.089760pt;}
.y2da{bottom:672.479520pt;}
.y2ce{bottom:673.280000pt;}
.ycd{bottom:675.381440pt;}
.y13{bottom:679.040000pt;}
.y279{bottom:682.560000pt;}
.y2d8{bottom:683.040000pt;}
.yfe{bottom:683.437760pt;}
.y1be{bottom:684.160000pt;}
.y37{bottom:684.335840pt;}
.y129{bottom:685.448000pt;}
.y21b{bottom:685.622080pt;}
.y18b{bottom:686.140000pt;}
.y1e7{bottom:687.295360pt;}
.y245{bottom:687.441440pt;}
.y2ab{bottom:688.960000pt;}
.y6c{bottom:689.845120pt;}
.ya0{bottom:690.191040pt;}
.ycc{bottom:693.296160pt;}
.y15c{bottom:698.759840pt;}
.y12{bottom:699.840000pt;}
.yfd{bottom:701.193120pt;}
.y1bd{bottom:702.080000pt;}
.y36{bottom:702.250560pt;}
.y128{bottom:703.522080pt;}
.y21a{bottom:703.536800pt;}
.y18a{bottom:704.373440pt;}
.y2d7{bottom:704.480000pt;}
.y1e6{bottom:705.210080pt;}
.y244{bottom:705.356160pt;}
.y2a9{bottom:707.040000pt;}
.y278{bottom:707.195200pt;}
.y6b{bottom:707.759840pt;}
.y9f{bottom:707.946400pt;}
.ycb{bottom:711.210880pt;}
.y2d6{bottom:713.440000pt;}
.y15b{bottom:716.674560pt;}
.yfc{bottom:719.107840pt;}
.y1bc{bottom:719.840000pt;}
.y11{bottom:720.005920pt;}
.y219{bottom:721.451520pt;}
.y127{bottom:722.406240pt;}
.y189{bottom:722.779520pt;}
.y243{bottom:723.111520pt;}
.y1e5{bottom:723.124800pt;}
.y277{bottom:725.109920pt;}
.y2a8{bottom:725.125280pt;}
.y6a{bottom:725.674560pt;}
.y9e{bottom:725.861120pt;}
.yca{bottom:728.966240pt;}
.y15a{bottom:734.429920pt;}
.yfb{bottom:737.022560pt;}
.y1bb{bottom:737.920000pt;}
.y10{bottom:738.080000pt;}
.y218{bottom:739.366240pt;}
.y126{bottom:740.161600pt;}
.y188{bottom:740.694240pt;}
.y1e4{bottom:740.880160pt;}
.y242{bottom:742.473760pt;}
.y276{bottom:743.024640pt;}
.y2a7{bottom:743.040000pt;}
.y69{bottom:743.589280pt;}
.y9d{bottom:743.775840pt;}
.y159{bottom:752.344640pt;}
.yfa{bottom:754.937280pt;}
.y1ba{bottom:756.800000pt;}
.y217{bottom:757.121600pt;}
.y187{bottom:758.449600pt;}
.y1e3{bottom:758.794880pt;}
.y125{bottom:759.045760pt;}
.y241{bottom:760.388480pt;}
.y275{bottom:760.939360pt;}
.y2a6{bottom:761.300480pt;}
.y68{bottom:761.504000pt;}
.yf{bottom:761.600000pt;}
.y9c{bottom:761.690560pt;}
.yc9{bottom:767.040000pt;}
.y158{bottom:770.259360pt;}
.yf9{bottom:772.692640pt;}
.y1b9{bottom:774.720000pt;}
.y216{bottom:775.036320pt;}
.y186{bottom:776.364320pt;}
.y1e2{bottom:776.709600pt;}
.y124{bottom:776.960480pt;}
.y240{bottom:778.303200pt;}
.y274{bottom:778.854080pt;}
.y2a5{bottom:779.055840pt;}
.y67{bottom:779.259360pt;}
.y9b{bottom:779.605280pt;}
.ye{bottom:782.560000pt;}
.yc8{bottom:783.520000pt;}
.y157{bottom:789.780960pt;}
.yf8{bottom:791.258080pt;}
.y1b8{bottom:792.480000pt;}
.y215{bottom:792.951040pt;}
.y185{bottom:794.279040pt;}
.y1e1{bottom:794.624320pt;}
.y123{bottom:794.875200pt;}
.y23f{bottom:796.058560pt;}
.y273{bottom:796.609440pt;}
.y2a4{bottom:796.970560pt;}
.y66{bottom:797.174080pt;}
.y9a{bottom:797.360640pt;}
.yd{bottom:800.320000pt;}
.yc7{bottom:804.640000pt;}
.y156{bottom:807.695680pt;}
.yf7{bottom:809.172800pt;}
.y1b7{bottom:810.400000pt;}
.y214{bottom:810.865760pt;}
.y184{bottom:812.193760pt;}
.y1e0{bottom:812.539040pt;}
.y122{bottom:813.600000pt;}
.y23e{bottom:813.973280pt;}
.y272{bottom:814.524160pt;}
.y2a3{bottom:814.885280pt;}
.y65{bottom:815.088800pt;}
.y99{bottom:815.275360pt;}
.yc6{bottom:823.040000pt;}
.y155{bottom:825.451040pt;}
.yf6{bottom:827.087520pt;}
.y1b6{bottom:828.320000pt;}
.y213{bottom:828.621120pt;}
.y121{bottom:829.600000pt;}
.y183{bottom:830.108480pt;}
.y1df{bottom:830.294400pt;}
.yc{bottom:831.520000pt;}
.y23d{bottom:831.888000pt;}
.y271{bottom:832.438880pt;}
.y2a2{bottom:832.800000pt;}
.y64{bottom:833.003520pt;}
.y98{bottom:833.190080pt;}
.yc5{bottom:843.401760pt;}
.yf5{bottom:845.002240pt;}
.y154{bottom:845.132000pt;}
.y1b5{bottom:846.240000pt;}
.y182{bottom:847.545120pt;}
.y212{bottom:849.417600pt;}
.y270{bottom:850.353600pt;}
.y2a1{bottom:850.890560pt;}
.y63{bottom:850.918240pt;}
.y97{bottom:851.104800pt;}
.y120{bottom:851.409600pt;}
.yb{bottom:852.480000pt;}
.yc4{bottom:861.316480pt;}
.yf4{bottom:862.757600pt;}
.y1b4{bottom:864.160000pt;}
.y1b3{bottom:864.166560pt;}
.y153{bottom:864.334880pt;}
.y211{bottom:867.332320pt;}
.y62{bottom:868.673600pt;}
.y2a0{bottom:868.805280pt;}
.y96{bottom:869.019520pt;}
.y11f{bottom:869.324320pt;}
.y26f{bottom:869.397120pt;}
.ya{bottom:873.596480pt;}
.yc3{bottom:879.231200pt;}
.y2cc{bottom:879.840000pt;}
.yf3{bottom:880.672320pt;}
.y152{bottom:882.249600pt;}
.y1b2{bottom:882.400000pt;}
.y210{bottom:885.247040pt;}
.y181{bottom:886.588320pt;}
.y29f{bottom:886.720000pt;}
.y95{bottom:886.774880pt;}
.y61{bottom:887.239040pt;}
.y26e{bottom:887.311840pt;}
.y9{bottom:889.920000pt;}
.y2cb{bottom:895.840000pt;}
.yc2{bottom:897.145920pt;}
.yf2{bottom:898.587040pt;}
.y1b1{bottom:899.040000pt;}
.y151{bottom:900.164320pt;}
.y20f{bottom:903.161760pt;}
.y94{bottom:904.689600pt;}
.y29e{bottom:904.815840pt;}
.y60{bottom:905.153760pt;}
.y26d{bottom:905.226560pt;}
.y180{bottom:905.313120pt;}
.y2ca{bottom:911.680000pt;}
.yc1{bottom:914.901280pt;}
.yf1{bottom:916.501760pt;}
.y150{bottom:918.238400pt;}
.y20e{bottom:920.917120pt;}
.y93{bottom:922.604320pt;}
.y29d{bottom:922.730560pt;}
.y1b0{bottom:922.906240pt;}
.y5f{bottom:922.909120pt;}
.y26c{bottom:922.981920pt;}
.y17f{bottom:923.068480pt;}
.y2c9{bottom:927.680000pt;}
.y8{bottom:933.600000pt;}
.yf0{bottom:934.735200pt;}
.y14f{bottom:937.760000pt;}
.y20d{bottom:938.831840pt;}
.y92{bottom:940.359680pt;}
.y29c{bottom:940.645280pt;}
.y1af{bottom:940.820960pt;}
.y5e{bottom:940.823840pt;}
.y26b{bottom:940.896640pt;}
.y2c8{bottom:943.680000pt;}
.yef{bottom:952.490560pt;}
.y14e{bottom:954.080000pt;}
.y20c{bottom:956.746560pt;}
.y29b{bottom:958.560000pt;}
.y17e{bottom:958.579200pt;}
.y1ae{bottom:958.735680pt;}
.y5d{bottom:958.738560pt;}
.y91{bottom:958.765760pt;}
.y26a{bottom:958.811360pt;}
.y2c7{bottom:959.680000pt;}
.y7{bottom:966.560000pt;}
.yee{bottom:970.405280pt;}
.y20b{bottom:974.661280pt;}
.y2c6{bottom:975.520000pt;}
.y17d{bottom:976.334560pt;}
.y1ad{bottom:976.650400pt;}
.y14d{bottom:976.652480pt;}
.y5c{bottom:976.653280pt;}
.y90{bottom:976.680480pt;}
.y269{bottom:976.726080pt;}
.yed{bottom:988.323680pt;}
.y2c5{bottom:991.520000pt;}
.y20a{bottom:992.576000pt;}
.y1ac{bottom:994.565120pt;}
.y14c{bottom:994.567200pt;}
.y5b{bottom:994.568000pt;}
.y8f{bottom:994.595200pt;}
.y268{bottom:994.640800pt;}
.y6{bottom:1000.320000pt;}
.yec{bottom:1005.920640pt;}
.y2d1{bottom:1007.520000pt;}
.y2c4{bottom:1008.960000pt;}
.y1ab{bottom:1012.320480pt;}
.y2aa{bottom:1012.320640pt;}
.y14b{bottom:1012.322560pt;}
.y5a{bottom:1012.323360pt;}
.y8e{bottom:1012.350560pt;}
.y267{bottom:1012.396160pt;}
.y209{bottom:1012.735040pt;}
.y2d9{bottom:1015.200000pt;}
.y2d5{bottom:1019.200000pt;}
.y2d0{bottom:1020.955360pt;}
.y2cd{bottom:1027.040000pt;}
.y59{bottom:1055.680000pt;}
.h13{height:3.557500pt;}
.h12{height:14.674687pt;}
.h24{height:16.898125pt;}
.h1{height:18.560000pt;}
.h3{height:22.080000pt;}
.h9{height:25.773750pt;}
.h27{height:25.791875pt;}
.h4{height:29.794062pt;}
.h25{height:31.572812pt;}
.h22{height:31.992188pt;}
.h21{height:33.351562pt;}
.h23{height:35.404688pt;}
.h16{height:36.001250pt;}
.h2{height:36.909063pt;}
.hb{height:38.672812pt;}
.h17{height:39.132500pt;}
.h15{height:39.840000pt;}
.h26{height:40.911250pt;}
.h5{height:42.690000pt;}
.h1b{height:44.121475pt;}
.h10{height:44.204675pt;}
.h1f{height:44.323715pt;}
.h19{height:44.337155pt;}
.hd{height:44.468750pt;}
.h8{height:45.584375pt;}
.h1a{height:48.026250pt;}
.he{height:50.249687pt;}
.hf{height:50.748750pt;}
.h11{height:52.028437pt;}
.h1e{height:53.807187pt;}
.h1c{height:55.585938pt;}
.hc{height:56.378438pt;}
.h14{height:59.143438pt;}
.h20{height:61.366875pt;}
.h7{height:61.592500pt;}
.h18{height:62.238690pt;}
.h1d{height:64.924375pt;}
.ha{height:71.754375pt;}
.h6{height:75.375000pt;}
.h0{height:1120.000000pt;}
.w1{width:18.560000pt;}
.w2{width:281.921333pt;}
.w0{width:856.000000pt;}
.x0{left:0.000000pt;}
.x4{left:1.280000pt;}
.x2{left:2.720000pt;}
.x5{left:68.000000pt;}
.x6{left:75.520000pt;}
.x7{left:76.800000pt;}
.x3{left:80.800000pt;}
.x1c{left:82.080000pt;}
.x9{left:88.800000pt;}
.x1e{left:95.520000pt;}
.x1f{left:102.080000pt;}
.x1a{left:103.680000pt;}
.x1b{left:105.600000pt;}
.x8{left:123.680000pt;}
.x20{left:126.080000pt;}
.x24{left:189.440000pt;}
.xa{left:211.200000pt;}
.x26{left:247.520000pt;}
.x2c{left:273.118080pt;}
.x28{left:310.078560pt;}
.x2a{left:320.640320pt;}
.x2f{left:325.915520pt;}
.x2d{left:345.600320pt;}
.x22{left:347.838880pt;}
.xc{left:436.000000pt;}
.xb{left:443.520000pt;}
.x10{left:445.600000pt;}
.x15{left:448.640000pt;}
.x11{left:452.160000pt;}
.x12{left:454.720000pt;}
.xd{left:456.800000pt;}
.xe{left:458.234240pt;}
.x13{left:464.320000pt;}
.x16{left:465.760000pt;}
.x17{left:466.880000pt;}
.x18{left:471.680000pt;}
.x19{left:473.600000pt;}
.x14{left:475.200000pt;}
.x1d{left:553.759040pt;}
.x21{left:603.200000pt;}
.x29{left:619.520000pt;}
.x23{left:672.160000pt;}
.x2b{left:684.320000pt;}
.x27{left:691.520000pt;}
.x25{left:748.480000pt;}
.x1{left:763.840000pt;}
.x2e{left:776.320000pt;}
.xf{left:780.480000pt;}
}




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