
    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_b82f52146e61c1d0c7334498.woff2')format("woff");}.ff1{font-family:ff1;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: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_b178a752b0a0572ac7f2295a.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_bd26ac79a772201ea3eb976d.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c5ba7b5be9d8bb2c17b0ecd1.woff2')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_acc31f0070aa61fd11774c98.woff2')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c9893c48e31a20eb5f4bb75a.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a12926c207225281a226b5d2.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c86c22a14e1aafe4d0ad999d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-151.888320px;}
.v4{vertical-align:-82.800000px;}
.v1{vertical-align:-80.064720px;}
.v2{vertical-align:-75.579840px;}
.v6{vertical-align:-27.360000px;}
.v8{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:23.741280px;}
.v5{vertical-align:30.228480px;}
.ls34{letter-spacing:-2.202480px;}
.ls36{letter-spacing:-1.192320px;}
.ls20{letter-spacing:-1.059840px;}
.ls55{letter-spacing:-1.013040px;}
.ls43{letter-spacing:-1.010880px;}
.ls16{letter-spacing:-0.861120px;}
.ls3c{letter-spacing:-0.758160px;}
.ls18{letter-spacing:-0.728640px;}
.ls17{letter-spacing:-0.397440px;}
.ls65{letter-spacing:-0.378000px;}
.ls6{letter-spacing:-0.336960px;}
.ls15{letter-spacing:-0.331200px;}
.ls7{letter-spacing:-0.324000px;}
.ls32{letter-spacing:-0.298800px;}
.ls54{letter-spacing:-0.289440px;}
.ls35{letter-spacing:-0.264960px;}
.ls57{letter-spacing:-0.241200px;}
.ls31{letter-spacing:-0.239040px;}
.ls2f{letter-spacing:-0.192960px;}
.ls24{letter-spacing:-0.191520px;}
.ls14{letter-spacing:-0.132480px;}
.ls1f{letter-spacing:-0.119520px;}
.ls3b{letter-spacing:-0.084240px;}
.ls49{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.039744px;}
.ls2b{letter-spacing:0.046368px;}
.ls5d{letter-spacing:0.091800px;}
.ls5e{letter-spacing:0.108000px;}
.ls4b{letter-spacing:0.125856px;}
.ls74{letter-spacing:0.132480px;}
.ls4d{letter-spacing:0.144000px;}
.ls4c{letter-spacing:0.145728px;}
.ls33{letter-spacing:0.191520px;}
.ls4e{letter-spacing:0.216000px;}
.ls40{letter-spacing:0.238464px;}
.ls30{letter-spacing:0.239040px;}
.ls39{letter-spacing:0.241200px;}
.ls2e{letter-spacing:0.259920px;}
.lsb{letter-spacing:0.264960px;}
.ls5{letter-spacing:0.288000px;}
.ls53{letter-spacing:0.289440px;}
.ls10{letter-spacing:0.298080px;}
.ls60{letter-spacing:0.311328px;}
.ls42{letter-spacing:0.320112px;}
.ls1a{letter-spacing:0.322704px;}
.ls8{letter-spacing:0.331200px;}
.ls3a{letter-spacing:0.336960px;}
.ls72{letter-spacing:0.344448px;}
.ls3e{letter-spacing:0.364320px;}
.ls70{letter-spacing:0.370944px;}
.ls66{letter-spacing:0.378000px;}
.ls9{letter-spacing:0.397440px;}
.ls51{letter-spacing:0.417312px;}
.lsa{letter-spacing:0.423936px;}
.ls26{letter-spacing:0.424296px;}
.ls75{letter-spacing:0.450432px;}
.ls71{letter-spacing:0.476928px;}
.lsc{letter-spacing:0.483552px;}
.ls62{letter-spacing:0.516672px;}
.ls73{letter-spacing:0.556416px;}
.ls3f{letter-spacing:0.563040px;}
.ls41{letter-spacing:0.582912px;}
.ls50{letter-spacing:0.655776px;}
.ls29{letter-spacing:0.682272px;}
.ls28{letter-spacing:0.688896px;}
.ls5a{letter-spacing:0.695520px;}
.ls4f{letter-spacing:0.708768px;}
.ls63{letter-spacing:0.722016px;}
.ls56{letter-spacing:0.794880px;}
.ls48{letter-spacing:0.940608px;}
.ls58{letter-spacing:0.986976px;}
.ls4a{letter-spacing:1.261440px;}
.ls3d{letter-spacing:1.722240px;}
.ls44{letter-spacing:2.404512px;}
.ls5f{letter-spacing:2.450880px;}
.ls52{letter-spacing:2.861568px;}
.lsd{letter-spacing:3.179520px;}
.ls1d{letter-spacing:3.908160px;}
.ls59{letter-spacing:4.636800px;}
.ls6d{letter-spacing:5.365440px;}
.ls2c{letter-spacing:5.444928px;}
.ls1c{letter-spacing:6.756480px;}
.ls1e{letter-spacing:9.671040px;}
.ls27{letter-spacing:9.995616px;}
.lse{letter-spacing:10.399680px;}
.ls61{letter-spacing:10.439424px;}
.ls69{letter-spacing:11.128320px;}
.ls47{letter-spacing:11.664000px;}
.ls2d{letter-spacing:11.856960px;}
.ls68{letter-spacing:16.162560px;}
.ls46{letter-spacing:18.103392px;}
.ls6e{letter-spacing:19.739520px;}
.ls1b{letter-spacing:21.196800px;}
.ls6c{letter-spacing:23.316480px;}
.ls64{letter-spacing:24.475680px;}
.ls67{letter-spacing:24.773760px;}
.ls13{letter-spacing:27.688320px;}
.ls5b{letter-spacing:30.536640px;}
.ls45{letter-spacing:31.824000px;}
.ls38{letter-spacing:32.769360px;}
.ls37{letter-spacing:35.570880px;}
.ls6f{letter-spacing:35.696736px;}
.ls6b{letter-spacing:38.485440px;}
.ls6a{letter-spacing:52.859520px;}
.ls5c{letter-spacing:53.588160px;}
.ls22{letter-spacing:55.728000px;}
.ls23{letter-spacing:56.448000px;}
.ls12{letter-spacing:83.131200px;}
.ls11{letter-spacing:104.725440px;}
.lsf{letter-spacing:123.405120px;}
.ls3{letter-spacing:830.450880px;}
.ls21{letter-spacing:910.805760px;}
.ls25{letter-spacing:987.773040px;}
.ls2{letter-spacing:991.745280px;}
.ls19{letter-spacing:1138.965840px;}
.ls4{letter-spacing:1333.584000px;}
.ls1{letter-spacing:2505.900240px;}
.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;}
}
.ws81{word-spacing:-66.240000px;}
.ws61{word-spacing:-26.812800px;}
.ws29{word-spacing:-26.429760px;}
.ws50{word-spacing:-23.418720px;}
.ws4f{word-spacing:-23.334480px;}
.ws51{word-spacing:-23.081760px;}
.ws1{word-spacing:-20.304000px;}
.ws2{word-spacing:-20.016000px;}
.ws9{word-spacing:-18.745920px;}
.ws3e{word-spacing:-18.679680px;}
.ws8{word-spacing:-18.414720px;}
.ws7{word-spacing:-18.282240px;}
.ws3d{word-spacing:-18.149760px;}
.wsa{word-spacing:-18.083520px;}
.ws5b{word-spacing:-18.017280px;}
.wsc{word-spacing:-17.686080px;}
.wsb{word-spacing:-17.553600px;}
.ws5a{word-spacing:-17.354880px;}
.ws6a{word-spacing:-17.222400px;}
.ws1f{word-spacing:-16.493760px;}
.ws2c{word-spacing:-16.374240px;}
.ws2b{word-spacing:-13.410720px;}
.ws7d{word-spacing:-13.217760px;}
.ws7c{word-spacing:-12.397680px;}
.ws72{word-spacing:-11.609280px;}
.ws18{word-spacing:-1.722240px;}
.ws20{word-spacing:-1.374480px;}
.ws56{word-spacing:-0.673920px;}
.ws74{word-spacing:-0.336960px;}
.ws19{word-spacing:-0.331200px;}
.ws3a{word-spacing:-0.298800px;}
.ws6d{word-spacing:-0.288000px;}
.ws8a{word-spacing:-0.270000px;}
.ws16{word-spacing:-0.264960px;}
.ws37{word-spacing:-0.241200px;}
.ws82{word-spacing:-0.216000px;}
.ws80{word-spacing:-0.192960px;}
.ws40{word-spacing:-0.191520px;}
.ws5{word-spacing:-0.144000px;}
.ws71{word-spacing:-0.108000px;}
.ws28{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws2d{word-spacing:0.059760px;}
.ws8b{word-spacing:0.066240px;}
.ws57{word-spacing:0.084240px;}
.ws41{word-spacing:0.095760px;}
.ws3b{word-spacing:0.119520px;}
.ws14{word-spacing:0.132480px;}
.ws62{word-spacing:0.191520px;}
.ws48{word-spacing:0.192960px;}
.ws6e{word-spacing:0.216000px;}
.ws3c{word-spacing:0.239040px;}
.ws1e{word-spacing:0.331200px;}
.ws59{word-spacing:0.336960px;}
.ws88{word-spacing:0.378000px;}
.ws17{word-spacing:0.397440px;}
.ws58{word-spacing:0.421200px;}
.ws12{word-spacing:0.463680px;}
.ws38{word-spacing:0.482400px;}
.ws6{word-spacing:0.540000px;}
.ws7e{word-spacing:0.578880px;}
.ws83{word-spacing:0.648000px;}
.ws13{word-spacing:0.662400px;}
.ws3{word-spacing:0.673920px;}
.ws4{word-spacing:0.699840px;}
.ws55{word-spacing:0.758160px;}
.ws21{word-spacing:0.776880px;}
.ws15{word-spacing:0.861120px;}
.ws5d{word-spacing:1.010880px;}
.ws60{word-spacing:1.095120px;}
.ws2a{word-spacing:1.192320px;}
.ws7b{word-spacing:1.350000px;}
.ws45{word-spacing:1.920960px;}
.ws47{word-spacing:1.929600px;}
.ws86{word-spacing:2.052000px;}
.ws35{word-spacing:2.119680px;}
.ws10{word-spacing:2.583360px;}
.ws63{word-spacing:2.649600px;}
.ws78{word-spacing:2.808000px;}
.ws1a{word-spacing:3.312000px;}
.ws79{word-spacing:3.510000px;}
.wsd{word-spacing:4.040640px;}
.ws89{word-spacing:4.212000px;}
.ws53{word-spacing:4.239360px;}
.ws2e{word-spacing:4.769280px;}
.ws26{word-spacing:4.968000px;}
.ws34{word-spacing:5.497920px;}
.ws7a{word-spacing:5.670000px;}
.ws33{word-spacing:5.696640px;}
.ws24{word-spacing:6.226560px;}
.ws85{word-spacing:6.372000px;}
.ws25{word-spacing:6.955200px;}
.ws49{word-spacing:7.670160px;}
.ws32{word-spacing:7.683840px;}
.ws39{word-spacing:8.346240px;}
.ws1b{word-spacing:9.074880px;}
.ws70{word-spacing:9.288000px;}
.ws27{word-spacing:9.803520px;}
.ws1c{word-spacing:10.532160px;}
.ws1d{word-spacing:10.730880px;}
.ws2f{word-spacing:11.260800px;}
.ws84{word-spacing:11.459520px;}
.ws5f{word-spacing:11.856960px;}
.ws36{word-spacing:11.989440px;}
.ws4a{word-spacing:12.188160px;}
.ws3f{word-spacing:12.718080px;}
.ws44{word-spacing:13.380480px;}
.ws11{word-spacing:14.109120px;}
.ws87{word-spacing:14.310000px;}
.ws4e{word-spacing:14.837760px;}
.ws4d{word-spacing:15.566400px;}
.ws5e{word-spacing:16.295040px;}
.ws73{word-spacing:16.493760px;}
.ws6c{word-spacing:17.023680px;}
.ws52{word-spacing:17.752320px;}
.ws66{word-spacing:18.480960px;}
.wse{word-spacing:19.143360px;}
.wsf{word-spacing:19.342080px;}
.ws4c{word-spacing:19.872000px;}
.ws22{word-spacing:20.600640px;}
.ws23{word-spacing:21.329280px;}
.ws75{word-spacing:22.057920px;}
.ws46{word-spacing:22.786560px;}
.ws64{word-spacing:23.515200px;}
.ws65{word-spacing:24.243840px;}
.ws6f{word-spacing:24.906240px;}
.ws54{word-spacing:25.634880px;}
.ws7f{word-spacing:26.363520px;}
.ws76{word-spacing:27.092160px;}
.ws42{word-spacing:27.820800px;}
.ws5c{word-spacing:28.549440px;}
.ws43{word-spacing:29.278080px;}
.ws31{word-spacing:29.940480px;}
.ws30{word-spacing:30.669120px;}
.ws67{word-spacing:31.397760px;}
.ws4b{word-spacing:32.126400px;}
.ws8c{word-spacing:33.583680px;}
.ws68{word-spacing:35.703360px;}
.ws69{word-spacing:36.432000px;}
.ws6b{word-spacing:37.889280px;}
.ws8d{word-spacing:38.617920px;}
.ws77{word-spacing:40.803840px;}
._25{margin-left:-38.251512px;}
._20{margin-left:-35.802504px;}
._24{margin-left:-33.632424px;}
._23{margin-left:-31.993704px;}
._1f{margin-left:-27.789120px;}
._1e{margin-left:-26.178768px;}
._18{margin-left:-23.898024px;}
._1c{margin-left:-22.207464px;}
._1d{margin-left:-20.698128px;}
._19{margin-left:-18.704952px;}
._b{margin-left:-17.035200px;}
._14{margin-left:-15.217704px;}
._22{margin-left:-13.365648px;}
._8{margin-left:-12.067200px;}
._16{margin-left:-11.047464px;}
._6{margin-left:-9.869760px;}
._9{margin-left:-8.299296px;}
._7{margin-left:-6.370560px;}
._5{margin-left:-4.550400px;}
._a{margin-left:-2.787840px;}
._1{margin-left:-1.440000px;}
._0{width:1.356264px;}
._2{width:2.407104px;}
._4{width:4.147344px;}
._10{width:5.780376px;}
._f{width:7.418880px;}
._d{width:9.273816px;}
._3{width:10.901448px;}
._e{width:11.940696px;}
._15{width:15.036480px;}
._1a{width:16.096320px;}
._c{width:23.078160px;}
._1b{width:24.376320px;}
._11{width:27.496224px;}
._17{width:32.600880px;}
._13{width:36.400536px;}
._21{width:53.190720px;}
._12{width:845.553600px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsc{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:3.240000px;}
.ycb{bottom:3.420000px;}
.yc7{bottom:3.600000px;}
.y4d{bottom:17.100000px;}
.ycf{bottom:20.520000px;}
.ycd{bottom:20.700000px;}
.yc9{bottom:37.980000px;}
.y4a{bottom:53.640000px;}
.y21{bottom:58.140000px;}
.y5{bottom:66.525004px;}
.ya6{bottom:78.300000px;}
.y4{bottom:97.125005px;}
.y47{bottom:107.640000px;}
.y44{bottom:119.700000px;}
.y20d{bottom:130.473000px;}
.y285{bottom:130.482000px;}
.y1de{bottom:130.495500px;}
.y110{bottom:132.856560px;}
.y17f{bottom:133.495200px;}
.yd2{bottom:137.160000px;}
.y20{bottom:139.264499px;}
.y249{bottom:141.500880px;}
.y2b2{bottom:141.680880px;}
.y195{bottom:144.208800px;}
.y20c{bottom:145.957500px;}
.y284{bottom:145.966500px;}
.y10f{bottom:151.933680px;}
.y17e{bottom:152.390160px;}
.y1dd{bottom:152.820000px;}
.y126{bottom:156.610800px;}
.y151{bottom:157.530240px;}
.y22d{bottom:157.767120px;}
.yf0{bottom:157.864320px;}
.y248{bottom:160.395840px;}
.y2b1{bottom:160.758000px;}
.y20b{bottom:161.442000px;}
.y283{bottom:161.451000px;}
.y194{bottom:163.285920px;}
.y1dc{bottom:166.680000px;}
.y10e{bottom:170.828640px;}
.y2ed{bottom:171.208800px;}
.y17d{bottom:171.467280px;}
.y125{bottom:175.687920px;}
.y150{bottom:176.425200px;}
.y20a{bottom:177.102000px;}
.y282{bottom:177.111000px;}
.y78{bottom:177.840000px;}
.y247{bottom:179.290800px;}
.y2b0{bottom:179.652960px;}
.y4c{bottom:181.620000px;}
.y193{bottom:182.180880px;}
.y6d{bottom:183.244320px;}
.y22c{bottom:185.670720px;}
.yef{bottom:185.767920px;}
.yc5{bottom:188.123760px;}
.y10d{bottom:189.905760px;}
.y2ec{bottom:190.103760px;}
.y17c{bottom:190.362240px;}
.y1b5{bottom:190.848240px;}
.y209{bottom:192.586500px;}
.y281{bottom:192.595500px;}
.y124{bottom:194.582880px;}
.y14f{bottom:195.502320px;}
.y17{bottom:196.933500px;}
.y265{bottom:197.102880px;}
.y246{bottom:198.367920px;}
.y2af{bottom:198.547920px;}
.y1db{bottom:198.982080px;}
.y192{bottom:201.258000px;}
.y22b{bottom:204.565680px;}
.yee{bottom:204.845040px;}
.yc4{bottom:207.200880px;}
.y208{bottom:208.071000px;}
.y10c{bottom:208.800720px;}
.y17b{bottom:209.439360px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y1b4{bottom:209.925360px;}
.y123{bottom:213.660000px;}
.y14e{bottom:214.397280px;}
.y280{bottom:214.920000px;}
.y245{bottom:217.262880px;}
.y2ae{bottom:217.625040px;}
.y2eb{bottom:218.007360px;}
.y1da{bottom:218.059200px;}
.y83{bottom:218.194560px;}
.y6c{bottom:220.140000px;}
.y191{bottom:220.152960px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y207{bottom:223.555500px;}
.y22a{bottom:223.642800px;}
.yed{bottom:223.740000px;}
.yc3{bottom:226.095840px;}
.y264{bottom:226.265040px;}
.y10b{bottom:227.695680px;}
.y27f{bottom:228.780000px;}
.y1b3{bottom:228.820320px;}
.y79{bottom:230.220000px;}
.y14d{bottom:233.292240px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y244{bottom:236.340000px;}
.y2ad{bottom:236.520000px;}
.y1d9{bottom:236.954160px;}
.y2ea{bottom:237.084480px;}
.y17a{bottom:237.342960px;}
.y82{bottom:237.453840px;}
.y6b{bottom:238.680000px;}
.y190{bottom:239.047920px;}
.y206{bottom:239.215500px;}
.y229{bottom:242.537760px;}
.yc2{bottom:244.990800px;}
.y10a{bottom:246.772800px;}
.y1b2{bottom:247.715280px;}
.y122{bottom:251.640000px;}
.y14c{bottom:252.369360px;}
.y263{bottom:255.245040px;}
.y1d8{bottom:255.849120px;}
.y81{bottom:256.348800px;}
.y179{bottom:256.420080px;}
.y18f{bottom:258.125040px;}
.y1c{bottom:259.918497px;}
.yec{bottom:259.925580px;}
.y13{bottom:259.933500px;}
.y42{bottom:261.189360px;}
.y205{bottom:261.540000px;}
.y228{bottom:261.614880px;}
.yc1{bottom:264.067920px;}
.y2e9{bottom:264.988080px;}
.y6a{bottom:265.479840px;}
.y109{bottom:265.667760px;}
.y1b1{bottom:266.792400px;}
.y243{bottom:272.349360px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y1d7{bottom:274.926240px;}
.y2ac{bottom:275.220000px;}
.y80{bottom:275.243760px;}
.y178{bottom:275.315040px;}
.y204{bottom:275.400000px;}
.y18e{bottom:277.020000px;}
.yeb{bottom:278.100000px;}
.y14b{bottom:280.272960px;}
.y227{bottom:280.509840px;}
.yc0{bottom:282.962880px;}
.y262{bottom:283.330800px;}
.y2e8{bottom:284.065200px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y1b0{bottom:285.687360px;}
.y242{bottom:290.704680px;}
.y121{bottom:292.692960px;}
.y69{bottom:293.383440px;}
.y108{bottom:293.753520px;}
.y1d6{bottom:293.821200px;}
.y177{bottom:294.210000px;}
.y7f{bottom:294.320880px;}
.y41{bottom:298.085040px;}
.yea{bottom:298.319760px;}
.y14a{bottom:299.350080px;}
.y226{bottom:299.404800px;}
.ybf{bottom:302.040000px;}
.y261{bottom:302.225760px;}
.y2e7{bottom:302.960160px;}
.y1af{bottom:304.764480px;}
.y203{bottom:305.285040px;}
.y241{bottom:309.060000px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y120{bottom:311.770080px;}
.y27e{bottom:312.722640px;}
.y1d5{bottom:312.898320px;}
.y18d{bottom:313.200000px;}
.y7e{bottom:313.215840px;}
.y176{bottom:313.287120px;}
.y40{bottom:316.980000px;}
.y149{bottom:318.245040px;}
.y225{bottom:318.481920px;}
.y260{bottom:321.120720px;}
.y68{bottom:321.469200px;}
.y107{bottom:321.657120px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y1ae{bottom:323.659440px;}
.y202{bottom:324.252720px;}
.y2ab{bottom:328.239360px;}
.y240{bottom:329.124960px;}
.y11f{bottom:330.665040px;}
.y2e6{bottom:330.863760px;}
.y1d4{bottom:331.793280px;}
.y27d{bottom:331.799760px;}
.y175{bottom:332.182080px;}
.y7d{bottom:332.292960px;}
.y18c{bottom:333.248400px;}
.y3f{bottom:336.420000px;}
.y148{bottom:337.140000px;}
.y224{bottom:337.376880px;}
.ybe{bottom:338.044680px;}
.y25f{bottom:340.197840px;}
.y201{bottom:343.329840px;}
.y2aa{bottom:347.134320px;}
.ye{bottom:348.133500px;}
.y67{bottom:349.372800px;}
.y11e{bottom:349.560000px;}
.y106{bottom:349.742880px;}
.y2e5{bottom:349.940880px;}
.y27c{bottom:350.694720px;}
.y7c{bottom:351.187920px;}
.y174{bottom:351.259200px;}
.y1ad{bottom:351.563040px;}
.ybd{bottom:356.400000px;}
.y223{bottom:356.454000px;}
.y3e{bottom:357.120000px;}
.y1d3{bottom:359.696880px;}
.y200{bottom:362.224800px;}
.y2a9{bottom:366.211440px;}
.y105{bottom:368.637840px;}
.y2e4{bottom:368.835840px;}
.y25e{bottom:369.360000px;}
.y27b{bottom:369.589680px;}
.y7b{bottom:370.082880px;}
.y173{bottom:370.154160px;}
.y1ac{bottom:370.640160px;}
.yd1{bottom:374.760000px;}
.y147{bottom:375.300000px;}
.y222{bottom:375.348960px;}
.y66{bottom:377.276400px;}
.y49{bottom:377.280000px;}
.y1d2{bottom:378.774000px;}
.y1ff{bottom:381.301920px;}
.y2a8{bottom:385.106400px;}
.y11d{bottom:385.750260px;}
.yd{bottom:386.785499px;}
.y27a{bottom:388.666800px;}
.y172{bottom:389.049120px;}
.y7a{bottom:389.160000px;}
.y1ab{bottom:389.535120px;}
.y221{bottom:394.243920px;}
.y104{bottom:396.541440px;}
.y2e3{bottom:396.921600px;}
.y1d1{bottom:397.668960px;}
.y25d{bottom:398.383920px;}
.y3d{bottom:398.520000px;}
.y1fe{bottom:400.196880px;}
.y11c{bottom:404.105580px;}
.y2a7{bottom:404.183520px;}
.y65{bottom:405.180000px;}
.y279{bottom:407.561760px;}
.yc{bottom:408.044999px;}
.y1aa{bottom:408.612240px;}
.y4b{bottom:410.220000px;}
.y220{bottom:413.321040px;}
.yd4{bottom:413.640000px;}
.y103{bottom:415.618560px;}
.y2e2{bottom:415.816560px;}
.y146{bottom:416.396880px;}
.y1d0{bottom:416.746080px;}
.y171{bottom:417.134880px;}
.y1fd{bottom:419.091840px;}
.y3c{bottom:419.220000px;}
.y11b{bottom:422.280000px;}
.y64{bottom:425.160000px;}
.y25c{bottom:426.287520px;}
.y278{bottom:426.638880px;}
.y21f{bottom:432.216000px;}
.y2a6{bottom:433.163520px;}
.y145{bottom:435.291840px;}
.y1cf{bottom:435.641040px;}
.y170{bottom:436.029840px;}
.y1a9{bottom:436.515840px;}
.y1fc{bottom:438.168960px;}
.y3b{bottom:439.920000px;}
.y11a{bottom:442.471680px;}
.y102{bottom:443.522160px;}
.y2e1{bottom:443.902320px;}
.y25b{bottom:445.364640px;}
.y277{bottom:445.533840px;}
.y63{bottom:449.820000px;}
.y21e{bottom:451.293120px;}
.y2a5{bottom:452.240640px;}
.yd3{bottom:452.520000px;}
.y144{bottom:454.368960px;}
.y16f{bottom:455.106960px;}
.y1a8{bottom:455.592960px;}
.y1fb{bottom:457.063920px;}
.y46{bottom:458.280000px;}
.y3a{bottom:460.620000px;}
.y101{bottom:462.599280px;}
.y2e0{bottom:462.797280px;}
.y1ce{bottom:463.544640px;}
.y276{bottom:464.610960px;}
.y2a4{bottom:471.135600px;}
.y143{bottom:473.263920px;}
.y25a{bottom:473.268240px;}
.y16e{bottom:474.001920px;}
.y1a7{bottom:474.487920px;}
.y1fa{bottom:476.141040px;}
.y62{bottom:478.260000px;}
.y21d{bottom:479.726640px;}
.y39{bottom:481.320000px;}
.y1cd{bottom:482.621760px;}
.y275{bottom:483.505920px;}
.y2a3{bottom:490.030560px;}
.y100{bottom:490.502880px;}
.y2df{bottom:490.700880px;}
.yce{bottom:491.400000px;}
.y259{bottom:492.345360px;}
.y16d{bottom:492.896880px;}
.y1a6{bottom:493.382880px;}
.y1f9{bottom:495.036000px;}
.y2c5{bottom:496.513440px;}
.y142{bottom:501.349680px;}
.y1cc{bottom:501.516720px;}
.y38{bottom:502.020000px;}
.y274{bottom:502.400880px;}
.y2a2{bottom:509.107680px;}
.y21c{bottom:509.253120px;}
.y2de{bottom:509.778000px;}
.y16c{bottom:511.974000px;}
.y1a5{bottom:512.460000px;}
.yff{bottom:518.406480px;}
.y141{bottom:520.244640px;}
.y258{bottom:520.248960px;}
.y1cb{bottom:520.593840px;}
.yb{bottom:520.864502px;}
.y273{bottom:521.478000px;}
.y37{bottom:522.422640px;}
.y1f8{bottom:522.939600px;}
.y2c4{bottom:524.417040px;}
.y61{bottom:525.468960px;}
.y21b{bottom:528.148080px;}
.y16b{bottom:530.868960px;}
.ycc{bottom:531.000000px;}
.y2dd{bottom:537.681600px;}
.y2a1{bottom:538.087680px;}
.ya{bottom:538.864499px;}
.y140{bottom:539.139600px;}
.y257{bottom:539.143920px;}
.y1ca{bottom:539.488800px;}
.y272{bottom:540.372960px;}
.y1a4{bottom:540.900000px;}
.y36{bottom:541.317600px;}
.y1f7{bottom:542.016720px;}
.y2c3{bottom:543.494160px;}
.y60{bottom:544.546080px;}
.y48{bottom:545.220000px;}
.yfe{bottom:546.492240px;}
.y21a{bottom:547.225200px;}
.y16a{bottom:549.946080px;}
.y2dc{bottom:556.758720px;}
.y9{bottom:556.864499px;}
.y2a0{bottom:557.164800px;}
.y13f{bottom:558.216720px;}
.y256{bottom:558.221040px;}
.y1c9{bottom:558.383760px;}
.y271{bottom:559.450080px;}
.y1f6{bottom:560.911680px;}
.y2c2{bottom:562.389120px;}
.yfd{bottom:565.387200px;}
.y219{bottom:566.120160px;}
.y169{bottom:568.841040px;}
.yc8{bottom:570.600000px;}
.y2db{bottom:575.653680px;}
.y29f{bottom:576.059760px;}
.y13e{bottom:577.111680px;}
.y255{bottom:577.116000px;}
.y1c8{bottom:577.460880px;}
.y270{bottom:578.345040px;}
.y1a3{bottom:579.528720px;}
.y1f5{bottom:579.988800px;}
.y5f{bottom:581.441760px;}
.y2c1{bottom:581.466240px;}
.y168{bottom:587.736000px;}
.yca{bottom:591.300000px;}
.yc6{bottom:592.920000px;}
.yfc{bottom:593.472960px;}
.y218{bottom:594.023760px;}
.y29e{bottom:595.136880px;}
.y13d{bottom:596.188800px;}
.y1c7{bottom:596.355840px;}
.y26f{bottom:597.240000px;}
.y35{bottom:598.184640px;}
.y1a2{bottom:598.423680px;}
.y1f4{bottom:598.883760px;}
.y2c0{bottom:600.361200px;}
.y5e{bottom:600.518880px;}
.y2da{bottom:603.557280px;}
.y254{bottom:605.201760px;}
.y167{bottom:606.813120px;}
.yfb{bottom:612.367920px;}
.y217{bottom:613.100880px;}
.y29d{bottom:614.031840px;}
.y13c{bottom:615.083760px;}
.y1c6{bottom:615.432960px;}
.y34{bottom:617.261760px;}
.y1a1{bottom:617.500800px;}
.y1f3{bottom:617.960880px;}
.y2bf{bottom:619.256160px;}
.y5d{bottom:619.413840px;}
.y2d9{bottom:622.634400px;}
.y253{bottom:624.096720px;}
.y26e{bottom:625.860000px;}
.yfa{bottom:631.262880px;}
.y216{bottom:631.995840px;}
.y13b{bottom:634.160880px;}
.y1c5{bottom:634.327920px;}
.y166{bottom:634.716720px;}
.y33{bottom:636.156720px;}
.y1a0{bottom:636.395760px;}
.ya3{bottom:636.474240px;}
.y5c{bottom:638.490960px;}
.ybc{bottom:640.859040px;}
.y252{bottom:643.173840px;}
.y29c{bottom:643.194000px;}
.y8{bottom:645.510000px;}
.y1f2{bottom:646.394400px;}
.y2be{bottom:647.341920px;}
.yf9{bottom:650.340000px;}
.y2d8{bottom:650.538000px;}
.y215{bottom:651.072960px;}
.y13a{bottom:653.055840px;}
.y1c4{bottom:653.405040px;}
.y165{bottom:653.793840px;}
.y32{bottom:655.051680px;}
.y19f{bottom:655.290720px;}
.y5b{bottom:657.385920px;}
.ye9{bottom:659.758320px;}
.y43{bottom:660.600000px;}
.y251{bottom:662.068800px;}
.y26d{bottom:664.231680px;}
.ya2{bottom:664.560000px;}
.y2bd{bottom:666.236880px;}
.y7{bottom:666.771000px;}
.y2d7{bottom:669.615120px;}
.y214{bottom:669.967920px;}
.y29b{bottom:671.097600px;}
.y139{bottom:671.950800px;}
.y1c3{bottom:672.300000px;}
.y164{bottom:672.688800px;}
.y31{bottom:674.128800px;}
.y19e{bottom:674.367840px;}
.y1f1{bottom:675.920880px;}
.y5a{bottom:676.280880px;}
.ybb{bottom:677.572560px;}
.ye8{bottom:678.835440px;}
.y250{bottom:680.963760px;}
.y26c{bottom:683.308800px;}
.y23f{bottom:684.452880px;}
.y2bc{bottom:685.314000px;}
.y2d6{bottom:688.510080px;}
.y213{bottom:688.862880px;}
.yf8{bottom:689.040000px;}
.y29a{bottom:689.992560px;}
.y138{bottom:691.027920px;}
.y163{bottom:691.583760px;}
.y30{bottom:693.023760px;}
.y19d{bottom:693.262800px;}
.y1f0{bottom:694.815840px;}
.yba{bottom:696.649680px;}
.y24f{bottom:700.040880px;}
.ya1{bottom:701.460000px;}
.y26b{bottom:702.203760px;}
.y2bb{bottom:704.208960px;}
.y212{bottom:707.940000px;}
.y1c2{bottom:708.485580px;}
.y299{bottom:709.069680px;}
.y137{bottom:709.922880px;}
.y162{bottom:710.660880px;}
.y2f{bottom:712.100880px;}
.y19c{bottom:712.339920px;}
.y59{bottom:713.358720px;}
.y1ef{bottom:713.710800px;}
.yb9{bottom:715.544640px;}
.ye7{bottom:715.548960px;}
.y2d5{bottom:716.413680px;}
.y24e{bottom:718.935840px;}
.y26a{bottom:721.280880px;}
.y23e{bottom:721.348560px;}
.y2ba{bottom:723.286080px;}
.y6{bottom:726.298500px;}
.y1c1{bottom:726.660000px;}
.y298{bottom:727.964640px;}
.y136{bottom:729.000000px;}
.y161{bottom:729.555840px;}
.y2e{bottom:730.995840px;}
.y19b{bottom:731.234880px;}
.y1ee{bottom:732.787920px;}
.yb8{bottom:734.439600px;}
.ye6{bottom:734.443920px;}
.y2d4{bottom:735.490800px;}
.y24d{bottom:738.012960px;}
.ya0{bottom:738.360000px;}
.y269{bottom:740.175840px;}
.y23d{bottom:740.243520px;}
.yf7{bottom:741.077280px;}
.y2b9{bottom:742.181040px;}
.y211{bottom:743.944680px;}
.y1c0{bottom:746.842320px;}
.y297{bottom:747.041760px;}
.y160{bottom:748.632960px;}
.y2d{bottom:750.072960px;}
.y58{bottom:750.254400px;}
.y19a{bottom:750.312000px;}
.y1ed{bottom:751.682880px;}
.y3{bottom:752.599495px;}
.ye5{bottom:753.521040px;}
.y2d3{bottom:754.385760px;}
.y24c{bottom:756.907920px;}
.y45{bottom:757.080000px;}
.yf6{bottom:759.251700px;}
.y268{bottom:759.252960px;}
.y23c{bottom:759.320640px;}
.y2b8{bottom:761.076000px;}
.y2f3{bottom:762.135840px;}
.y210{bottom:762.300000px;}
.yb7{bottom:762.525360px;}
.y296{bottom:765.936720px;}
.y135{bottom:766.980000px;}
.y15f{bottom:767.527920px;}
.y2c{bottom:768.967920px;}
.y199{bottom:769.206960px;}
.y57{bottom:769.331520px;}
.y1ec{bottom:770.760000px;}
.ye4{bottom:772.416000px;}
.yf5{bottom:773.108640px;}
.y9f{bottom:775.260000px;}
.y24b{bottom:775.802880px;}
.y267{bottom:778.147920px;}
.y23b{bottom:778.215600px;}
.y2f2{bottom:781.030800px;}
.yb6{bottom:781.420320px;}
.y20f{bottom:782.471520px;}
.y295{bottom:784.831680px;}
.y15e{bottom:786.605040px;}
.y2b{bottom:787.862880px;}
.y198{bottom:788.101920px;}
.y56{bottom:788.226480px;}
.y2b7{bottom:789.161760px;}
.y18b{bottom:789.360480px;}
.yf4{bottom:791.463960px;}
.ye3{bottom:791.493120px;}
.y9e{bottom:794.340000px;}
.y24a{bottom:794.880000px;}
.y266{bottom:797.042880px;}
.y23a{bottom:797.110560px;}
.yb5{bottom:800.497440px;}
.y2d2{bottom:801.366480px;}
.yf3{bottom:805.140000px;}
.y15d{bottom:805.500000px;}
.y55{bottom:807.121440px;}
.y197{bottom:807.179040px;}
.y134{bottom:808.056720px;}
.y1eb{bottom:808.746300px;}
.y2f1{bottom:809.116560px;}
.ye2{bottom:810.388080px;}
.y294{bottom:812.917440px;}
.y9d{bottom:813.240000px;}
.y239{bottom:816.187680px;}
.yb4{bottom:819.392400px;}
.y2d1{bottom:820.261440px;}
.yf2{bottom:825.293520px;}
.y18a{bottom:826.074000px;}
.y54{bottom:826.198560px;}
.y2a{bottom:826.956180px;}
.y133{bottom:827.133840px;}
.ye1{bottom:829.283040px;}
.y293{bottom:831.812400px;}
.y9c{bottom:832.320000px;}
.y1ea{bottom:832.860000px;}
.y15c{bottom:834.120000px;}
.y238{bottom:835.082640px;}
.y2f0{bottom:837.020160px;}
.yb3{bottom:838.287360px;}
.y2d0{bottom:839.338560px;}
.y53{bottom:845.093520px;}
.y189{bottom:845.151120px;}
.y132{bottom:846.028800px;}
.y292{bottom:850.889520px;}
.y29{bottom:851.069880px;}
.y119{bottom:851.967360px;}
.y237{bottom:854.159760px;}
.y2ef{bottom:855.915120px;}
.yb2{bottom:857.364480px;}
.ye0{bottom:857.368800px;}
.y188{bottom:864.046080px;}
.y52{bottom:864.170640px;}
.y131{bottom:864.923760px;}
.y2cf{bottom:867.242160px;}
.y9b{bottom:869.220000px;}
.y291{bottom:869.784480px;}
.y118{bottom:870.862320px;}
.y15b{bottom:872.467920px;}
.y236{bottom:873.054720px;}
.y1e9{bottom:873.948960px;}
.y2ee{bottom:874.992240px;}
.y28{bottom:875.183580px;}
.ydf{bottom:876.263760px;}
.y2{bottom:879.369000px;}
.y51{bottom:879.472080px;}
.y187{bottom:882.941040px;}
.y130{bottom:884.000880px;}
.yb1{bottom:885.268080px;}
.y2ce{bottom:886.319280px;}
.y290{bottom:888.679440px;}
.y15a{bottom:891.362880px;}
.y235{bottom:891.949680px;}
.y1e8{bottom:893.026080px;}
.y91{bottom:893.214720px;}
.yde{bottom:895.340880px;}
.y27{bottom:899.297280px;}
.y186{bottom:902.018160px;}
.y12f{bottom:902.895840px;}
.yb0{bottom:904.345200px;}
.y9a{bottom:906.120000px;}
.y77{bottom:906.668640px;}
.y117{bottom:907.758000px;}
.y159{bottom:910.440000px;}
.y234{bottom:911.026800px;}
.y2b6{bottom:911.904480px;}
.y1e7{bottom:911.921040px;}
.y90{bottom:911.927520px;}
.y2cd{bottom:914.222880px;}
.ydd{bottom:914.235840px;}
.y28f{bottom:916.765200px;}
.y1bf{bottom:920.010240px;}
.y185{bottom:920.913120px;}
.y12e{bottom:921.972960px;}
.yaf{bottom:923.240160px;}
.y26{bottom:923.600520px;}
.y99{bottom:925.200000px;}
.y76{bottom:925.927920px;}
.y116{bottom:926.652960px;}
.y233{bottom:929.921760px;}
.y2b5{bottom:930.981600px;}
.y1e6{bottom:930.998160px;}
.y8f{bottom:931.004640px;}
.ydc{bottom:933.130800px;}
.y28e{bottom:935.660160px;}
.y1be{bottom:939.087360px;}
.y184{bottom:939.990240px;}
.y12d{bottom:940.867920px;}
.y2cc{bottom:942.126480px;}
.yae{bottom:942.135120px;}
.y98{bottom:944.100000px;}
.y115{bottom:945.730080px;}
.y25{bottom:947.714220px;}
.y158{bottom:948.420000px;}
.y232{bottom:948.998880px;}
.y2b4{bottom:949.876560px;}
.y1e5{bottom:949.893120px;}
.y8e{bottom:949.899600px;}
.ydb{bottom:952.207920px;}
.y75{bottom:953.831520px;}
.y28d{bottom:954.737280px;}
.y183{bottom:958.885200px;}
.y12c{bottom:959.762880px;}
.y2cb{bottom:961.203600px;}
.yad{bottom:961.212240px;}
.y97{bottom:963.180000px;}
.y114{bottom:964.625040px;}
.y1{bottom:966.726000px;}
.y231{bottom:967.893840px;}
.y2b3{bottom:968.771520px;}
.y1e4{bottom:968.788080px;}
.y8d{bottom:968.794560px;}
.yda{bottom:971.102880px;}
.y24{bottom:971.827920px;}
.y74{bottom:972.726480px;}
.y28c{bottom:973.632240px;}
.y1bd{bottom:975.800880px;}
.y182{bottom:977.780160px;}
.y113{bottom:983.520000px;}
.y230{bottom:986.788800px;}
.y12b{bottom:987.848640px;}
.y1e3{bottom:987.865200px;}
.y8c{bottom:987.871680px;}
.y2ca{bottom:989.107200px;}
.yac{bottom:989.115840px;}
.y157{bottom:989.470800px;}
.yd9{bottom:990.180000px;}
.y73{bottom:991.803600px;}
.y1bc{bottom:994.878000px;}
.y23{bottom:995.941620px;}
.y181{bottom:996.857280px;}
.y96{bottom:1000.080000px;}
.y28b{bottom:1001.535840px;}
.y22f{bottom:1005.865920px;}
.y12a{bottom:1006.743600px;}
.y1e2{bottom:1006.760160px;}
.y8b{bottom:1006.766640px;}
.y2c9{bottom:1008.184320px;}
.yab{bottom:1008.192960px;}
.y156{bottom:1008.547920px;}
.y72{bottom:1010.698560px;}
.y1bb{bottom:1013.772960px;}
.y22{bottom:1015.380000px;}
.y180{bottom:1015.752240px;}
.y28a{bottom:1020.612960px;}
.y112{bottom:1021.680000px;}
.y22e{bottom:1024.760880px;}
.y1e1{bottom:1025.837280px;}
.y8a{bottom:1025.843760px;}
.yaa{bottom:1027.087920px;}
.y155{bottom:1027.442880px;}
.yd8{bottom:1028.880000px;}
.y71{bottom:1029.775680px;}
.y1ba{bottom:1032.667920px;}
.y129{bottom:1034.829360px;}
.y2c8{bottom:1036.087920px;}
.y95{bottom:1036.980000px;}
.y289{bottom:1039.507920px;}
.y196{bottom:1043.838000px;}
.y1e0{bottom:1044.732240px;}
.y89{bottom:1044.738720px;}
.y20e{bottom:1044.914400px;}
.ya9{bottom:1046.165040px;}
.y154{bottom:1046.520000px;}
.y1b9{bottom:1051.745040px;}
.y128{bottom:1053.724320px;}
.y2c7{bottom:1055.165040px;}
.y70{bottom:1057.679280px;}
.y288{bottom:1058.585040px;}
.y111{bottom:1062.732960px;}
.y1df{bottom:1063.627200px;}
.y88{bottom:1063.633680px;}
.ya8{bottom:1065.060000px;}
.y1b8{bottom:1070.642880px;}
.y127{bottom:1072.619280px;}
.y2c6{bottom:1074.060000px;}
.y94{bottom:1074.065760px;}
.y6f{bottom:1076.574240px;}
.y287{bottom:1077.480000px;}
.yd7{bottom:1081.627920px;}
.y87{bottom:1082.710800px;}
.y153{bottom:1085.229000px;}
.y1b7{bottom:1089.720000px;}
.y93{bottom:1092.960720px;}
.yd6{bottom:1100.705040px;}
.y86{bottom:1101.605760px;}
.ya7{bottom:1103.760000px;}
.y6e{bottom:1104.660000px;}
.y152{bottom:1112.760000px;}
.y286{bottom:1115.460000px;}
.y1b6{bottom:1118.160000px;}
.yd5{bottom:1119.600000px;}
.yf1{bottom:1119.780000px;}
.y85{bottom:1120.682880px;}
.y92{bottom:1132.740000px;}
.y50{bottom:1139.580000px;}
.y84{bottom:1139.760000px;}
.ya5{bottom:1174.680000px;}
.y4f{bottom:1175.040000px;}
.ya4{bottom:1194.660000px;}
.y4e{bottom:1195.020000px;}
.h1c{height:17.098500px;}
.h1a{height:30.780000px;}
.h7{height:32.130000px;}
.h1d{height:34.380000px;}
.h1f{height:34.560000px;}
.h21{height:37.546875px;}
.h10{height:43.020000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h19{height:50.312812px;}
.h1b{height:53.100000px;}
.h2{height:55.080000px;}
.h24{height:55.280655px;}
.h22{height:56.320312px;}
.h12{height:62.327813px;}
.hb{height:69.086250px;}
.hf{height:70.200000px;}
.h13{height:71.982422px;}
.h23{height:73.503495px;}
.h26{height:73.523655px;}
.h25{height:73.618695px;}
.h20{height:73.782855px;}
.h9{height:75.093750px;}
.h5{height:78.030000px;}
.hd{height:81.101250px;}
.ha{height:87.859687px;}
.h14{height:96.508125px;}
.h16{height:99.874688px;}
.h11{height:112.640625px;}
.h4{height:119.055004px;}
.he{height:124.200000px;}
.hc{height:137.700000px;}
.h1e{height:151.020000px;}
.h15{height:245.520000px;}
.h18{height:1262.250000px;}
.h17{height:1262.520000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:97.920000px;}
.w10{width:108.000000px;}
.wd{width:143.640000px;}
.wb{width:148.681500px;}
.we{width:156.960000px;}
.w6{width:194.040000px;}
.wf{width:205.920000px;}
.w5{width:246.960000px;}
.w8{width:327.240000px;}
.wc{width:362.880000px;}
.wa{width:506.520000px;}
.w7{width:566.820000px;}
.w4{width:631.980000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w9{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:9.360000px;}
.xb{left:10.800000px;}
.x1b{left:13.680000px;}
.x23{left:14.940000px;}
.x2c{left:18.180000px;}
.x27{left:25.560000px;}
.x21{left:27.720000px;}
.x2a{left:30.420000px;}
.x28{left:31.860000px;}
.x26{left:33.120000px;}
.x25{left:34.380000px;}
.x2b{left:38.520000px;}
.x1e{left:47.160000px;}
.x24{left:54.900000px;}
.x10{left:93.420000px;}
.xa{left:94.860000px;}
.x15{left:97.740000px;}
.xe{left:98.820000px;}
.xc{left:99.900000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:108.010260px;}
.xf{left:109.620000px;}
.xd{left:110.700000px;}
.x1a{left:118.980000px;}
.x14{left:120.600000px;}
.x17{left:127.620000px;}
.x36{left:144.362160px;}
.x35{left:147.972240px;}
.x34{left:152.460000px;}
.x3a{left:154.620000px;}
.x33{left:156.252240px;}
.x31{left:159.845760px;}
.x16{left:160.920000px;}
.x41{left:170.835120px;}
.x3e{left:180.181440px;}
.x32{left:181.622160px;}
.x37{left:185.215680px;}
.x44{left:200.003760px;}
.x2f{left:201.960000px;}
.x4{left:203.484001px;}
.x45{left:208.618560px;}
.x2d{left:214.195680px;}
.x3f{left:216.911520px;}
.x43{left:222.120000px;}
.x40{left:255.960000px;}
.x22{left:275.940000px;}
.x3b{left:280.253520px;}
.x19{left:299.926800px;}
.x2e{left:339.836400px;}
.x38{left:346.675680px;}
.x6{left:364.500000px;}
.x29{left:383.940000px;}
.x3d{left:437.400000px;}
.x13{left:438.840000px;}
.x18{left:442.080000px;}
.x5{left:446.400000px;}
.x3{left:454.959000px;}
.x1f{left:481.860000px;}
.x9{left:572.752800px;}
.x1c{left:625.500000px;}
.x39{left:635.581440px;}
.x1d{left:643.680000px;}
.x42{left:673.917840px;}
.x12{left:689.400000px;}
.x30{left:716.574240px;}
.x8{left:740.340000px;}
.x3c{left:743.569200px;}
.x11{left:784.078560px;}
@media print{
.v3{vertical-align:-135.011840pt;}
.v4{vertical-align:-73.600000pt;}
.v1{vertical-align:-71.168640pt;}
.v2{vertical-align:-67.182080pt;}
.v6{vertical-align:-24.320000pt;}
.v8{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:21.103360pt;}
.v5{vertical-align:26.869760pt;}
.ls34{letter-spacing:-1.957760pt;}
.ls36{letter-spacing:-1.059840pt;}
.ls20{letter-spacing:-0.942080pt;}
.ls55{letter-spacing:-0.900480pt;}
.ls43{letter-spacing:-0.898560pt;}
.ls16{letter-spacing:-0.765440pt;}
.ls3c{letter-spacing:-0.673920pt;}
.ls18{letter-spacing:-0.647680pt;}
.ls17{letter-spacing:-0.353280pt;}
.ls65{letter-spacing:-0.336000pt;}
.ls6{letter-spacing:-0.299520pt;}
.ls15{letter-spacing:-0.294400pt;}
.ls7{letter-spacing:-0.288000pt;}
.ls32{letter-spacing:-0.265600pt;}
.ls54{letter-spacing:-0.257280pt;}
.ls35{letter-spacing:-0.235520pt;}
.ls57{letter-spacing:-0.214400pt;}
.ls31{letter-spacing:-0.212480pt;}
.ls2f{letter-spacing:-0.171520pt;}
.ls24{letter-spacing:-0.170240pt;}
.ls14{letter-spacing:-0.117760pt;}
.ls1f{letter-spacing:-0.106240pt;}
.ls3b{letter-spacing:-0.074880pt;}
.ls49{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.035328pt;}
.ls2b{letter-spacing:0.041216pt;}
.ls5d{letter-spacing:0.081600pt;}
.ls5e{letter-spacing:0.096000pt;}
.ls4b{letter-spacing:0.111872pt;}
.ls74{letter-spacing:0.117760pt;}
.ls4d{letter-spacing:0.128000pt;}
.ls4c{letter-spacing:0.129536pt;}
.ls33{letter-spacing:0.170240pt;}
.ls4e{letter-spacing:0.192000pt;}
.ls40{letter-spacing:0.211968pt;}
.ls30{letter-spacing:0.212480pt;}
.ls39{letter-spacing:0.214400pt;}
.ls2e{letter-spacing:0.231040pt;}
.lsb{letter-spacing:0.235520pt;}
.ls5{letter-spacing:0.256000pt;}
.ls53{letter-spacing:0.257280pt;}
.ls10{letter-spacing:0.264960pt;}
.ls60{letter-spacing:0.276736pt;}
.ls42{letter-spacing:0.284544pt;}
.ls1a{letter-spacing:0.286848pt;}
.ls8{letter-spacing:0.294400pt;}
.ls3a{letter-spacing:0.299520pt;}
.ls72{letter-spacing:0.306176pt;}
.ls3e{letter-spacing:0.323840pt;}
.ls70{letter-spacing:0.329728pt;}
.ls66{letter-spacing:0.336000pt;}
.ls9{letter-spacing:0.353280pt;}
.ls51{letter-spacing:0.370944pt;}
.lsa{letter-spacing:0.376832pt;}
.ls26{letter-spacing:0.377152pt;}
.ls75{letter-spacing:0.400384pt;}
.ls71{letter-spacing:0.423936pt;}
.lsc{letter-spacing:0.429824pt;}
.ls62{letter-spacing:0.459264pt;}
.ls73{letter-spacing:0.494592pt;}
.ls3f{letter-spacing:0.500480pt;}
.ls41{letter-spacing:0.518144pt;}
.ls50{letter-spacing:0.582912pt;}
.ls29{letter-spacing:0.606464pt;}
.ls28{letter-spacing:0.612352pt;}
.ls5a{letter-spacing:0.618240pt;}
.ls4f{letter-spacing:0.630016pt;}
.ls63{letter-spacing:0.641792pt;}
.ls56{letter-spacing:0.706560pt;}
.ls48{letter-spacing:0.836096pt;}
.ls58{letter-spacing:0.877312pt;}
.ls4a{letter-spacing:1.121280pt;}
.ls3d{letter-spacing:1.530880pt;}
.ls44{letter-spacing:2.137344pt;}
.ls5f{letter-spacing:2.178560pt;}
.ls52{letter-spacing:2.543616pt;}
.lsd{letter-spacing:2.826240pt;}
.ls1d{letter-spacing:3.473920pt;}
.ls59{letter-spacing:4.121600pt;}
.ls6d{letter-spacing:4.769280pt;}
.ls2c{letter-spacing:4.839936pt;}
.ls1c{letter-spacing:6.005760pt;}
.ls1e{letter-spacing:8.596480pt;}
.ls27{letter-spacing:8.884992pt;}
.lse{letter-spacing:9.244160pt;}
.ls61{letter-spacing:9.279488pt;}
.ls69{letter-spacing:9.891840pt;}
.ls47{letter-spacing:10.368000pt;}
.ls2d{letter-spacing:10.539520pt;}
.ls68{letter-spacing:14.366720pt;}
.ls46{letter-spacing:16.091904pt;}
.ls6e{letter-spacing:17.546240pt;}
.ls1b{letter-spacing:18.841600pt;}
.ls6c{letter-spacing:20.725760pt;}
.ls64{letter-spacing:21.756160pt;}
.ls67{letter-spacing:22.021120pt;}
.ls13{letter-spacing:24.611840pt;}
.ls5b{letter-spacing:27.143680pt;}
.ls45{letter-spacing:28.288000pt;}
.ls38{letter-spacing:29.128320pt;}
.ls37{letter-spacing:31.618560pt;}
.ls6f{letter-spacing:31.730432pt;}
.ls6b{letter-spacing:34.209280pt;}
.ls6a{letter-spacing:46.986240pt;}
.ls5c{letter-spacing:47.633920pt;}
.ls22{letter-spacing:49.536000pt;}
.ls23{letter-spacing:50.176000pt;}
.ls12{letter-spacing:73.894400pt;}
.ls11{letter-spacing:93.089280pt;}
.lsf{letter-spacing:109.693440pt;}
.ls3{letter-spacing:738.178560pt;}
.ls21{letter-spacing:809.605120pt;}
.ls25{letter-spacing:878.020480pt;}
.ls2{letter-spacing:881.551360pt;}
.ls19{letter-spacing:1012.414080pt;}
.ls4{letter-spacing:1185.408000pt;}
.ls1{letter-spacing:2227.466880pt;}
.ws81{word-spacing:-58.880000pt;}
.ws61{word-spacing:-23.833600pt;}
.ws29{word-spacing:-23.493120pt;}
.ws50{word-spacing:-20.816640pt;}
.ws4f{word-spacing:-20.741760pt;}
.ws51{word-spacing:-20.517120pt;}
.ws1{word-spacing:-18.048000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws9{word-spacing:-16.663040pt;}
.ws3e{word-spacing:-16.604160pt;}
.ws8{word-spacing:-16.368640pt;}
.ws7{word-spacing:-16.250880pt;}
.ws3d{word-spacing:-16.133120pt;}
.wsa{word-spacing:-16.074240pt;}
.ws5b{word-spacing:-16.015360pt;}
.wsc{word-spacing:-15.720960pt;}
.wsb{word-spacing:-15.603200pt;}
.ws5a{word-spacing:-15.426560pt;}
.ws6a{word-spacing:-15.308800pt;}
.ws1f{word-spacing:-14.661120pt;}
.ws2c{word-spacing:-14.554880pt;}
.ws2b{word-spacing:-11.920640pt;}
.ws7d{word-spacing:-11.749120pt;}
.ws7c{word-spacing:-11.020160pt;}
.ws72{word-spacing:-10.319360pt;}
.ws18{word-spacing:-1.530880pt;}
.ws20{word-spacing:-1.221760pt;}
.ws56{word-spacing:-0.599040pt;}
.ws74{word-spacing:-0.299520pt;}
.ws19{word-spacing:-0.294400pt;}
.ws3a{word-spacing:-0.265600pt;}
.ws6d{word-spacing:-0.256000pt;}
.ws8a{word-spacing:-0.240000pt;}
.ws16{word-spacing:-0.235520pt;}
.ws37{word-spacing:-0.214400pt;}
.ws82{word-spacing:-0.192000pt;}
.ws80{word-spacing:-0.171520pt;}
.ws40{word-spacing:-0.170240pt;}
.ws5{word-spacing:-0.128000pt;}
.ws71{word-spacing:-0.096000pt;}
.ws28{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws2d{word-spacing:0.053120pt;}
.ws8b{word-spacing:0.058880pt;}
.ws57{word-spacing:0.074880pt;}
.ws41{word-spacing:0.085120pt;}
.ws3b{word-spacing:0.106240pt;}
.ws14{word-spacing:0.117760pt;}
.ws62{word-spacing:0.170240pt;}
.ws48{word-spacing:0.171520pt;}
.ws6e{word-spacing:0.192000pt;}
.ws3c{word-spacing:0.212480pt;}
.ws1e{word-spacing:0.294400pt;}
.ws59{word-spacing:0.299520pt;}
.ws88{word-spacing:0.336000pt;}
.ws17{word-spacing:0.353280pt;}
.ws58{word-spacing:0.374400pt;}
.ws12{word-spacing:0.412160pt;}
.ws38{word-spacing:0.428800pt;}
.ws6{word-spacing:0.480000pt;}
.ws7e{word-spacing:0.514560pt;}
.ws83{word-spacing:0.576000pt;}
.ws13{word-spacing:0.588800pt;}
.ws3{word-spacing:0.599040pt;}
.ws4{word-spacing:0.622080pt;}
.ws55{word-spacing:0.673920pt;}
.ws21{word-spacing:0.690560pt;}
.ws15{word-spacing:0.765440pt;}
.ws5d{word-spacing:0.898560pt;}
.ws60{word-spacing:0.973440pt;}
.ws2a{word-spacing:1.059840pt;}
.ws7b{word-spacing:1.200000pt;}
.ws45{word-spacing:1.707520pt;}
.ws47{word-spacing:1.715200pt;}
.ws86{word-spacing:1.824000pt;}
.ws35{word-spacing:1.884160pt;}
.ws10{word-spacing:2.296320pt;}
.ws63{word-spacing:2.355200pt;}
.ws78{word-spacing:2.496000pt;}
.ws1a{word-spacing:2.944000pt;}
.ws79{word-spacing:3.120000pt;}
.wsd{word-spacing:3.591680pt;}
.ws89{word-spacing:3.744000pt;}
.ws53{word-spacing:3.768320pt;}
.ws2e{word-spacing:4.239360pt;}
.ws26{word-spacing:4.416000pt;}
.ws34{word-spacing:4.887040pt;}
.ws7a{word-spacing:5.040000pt;}
.ws33{word-spacing:5.063680pt;}
.ws24{word-spacing:5.534720pt;}
.ws85{word-spacing:5.664000pt;}
.ws25{word-spacing:6.182400pt;}
.ws49{word-spacing:6.817920pt;}
.ws32{word-spacing:6.830080pt;}
.ws39{word-spacing:7.418880pt;}
.ws1b{word-spacing:8.066560pt;}
.ws70{word-spacing:8.256000pt;}
.ws27{word-spacing:8.714240pt;}
.ws1c{word-spacing:9.361920pt;}
.ws1d{word-spacing:9.538560pt;}
.ws2f{word-spacing:10.009600pt;}
.ws84{word-spacing:10.186240pt;}
.ws5f{word-spacing:10.539520pt;}
.ws36{word-spacing:10.657280pt;}
.ws4a{word-spacing:10.833920pt;}
.ws3f{word-spacing:11.304960pt;}
.ws44{word-spacing:11.893760pt;}
.ws11{word-spacing:12.541440pt;}
.ws87{word-spacing:12.720000pt;}
.ws4e{word-spacing:13.189120pt;}
.ws4d{word-spacing:13.836800pt;}
.ws5e{word-spacing:14.484480pt;}
.ws73{word-spacing:14.661120pt;}
.ws6c{word-spacing:15.132160pt;}
.ws52{word-spacing:15.779840pt;}
.ws66{word-spacing:16.427520pt;}
.wse{word-spacing:17.016320pt;}
.wsf{word-spacing:17.192960pt;}
.ws4c{word-spacing:17.664000pt;}
.ws22{word-spacing:18.311680pt;}
.ws23{word-spacing:18.959360pt;}
.ws75{word-spacing:19.607040pt;}
.ws46{word-spacing:20.254720pt;}
.ws64{word-spacing:20.902400pt;}
.ws65{word-spacing:21.550080pt;}
.ws6f{word-spacing:22.138880pt;}
.ws54{word-spacing:22.786560pt;}
.ws7f{word-spacing:23.434240pt;}
.ws76{word-spacing:24.081920pt;}
.ws42{word-spacing:24.729600pt;}
.ws5c{word-spacing:25.377280pt;}
.ws43{word-spacing:26.024960pt;}
.ws31{word-spacing:26.613760pt;}
.ws30{word-spacing:27.261440pt;}
.ws67{word-spacing:27.909120pt;}
.ws4b{word-spacing:28.556800pt;}
.ws8c{word-spacing:29.852160pt;}
.ws68{word-spacing:31.736320pt;}
.ws69{word-spacing:32.384000pt;}
.ws6b{word-spacing:33.679360pt;}
.ws8d{word-spacing:34.327040pt;}
.ws77{word-spacing:36.270080pt;}
._25{margin-left:-34.001344pt;}
._20{margin-left:-31.824448pt;}
._24{margin-left:-29.895488pt;}
._23{margin-left:-28.438848pt;}
._1f{margin-left:-24.701440pt;}
._1e{margin-left:-23.270016pt;}
._18{margin-left:-21.242688pt;}
._1c{margin-left:-19.739968pt;}
._1d{margin-left:-18.398336pt;}
._19{margin-left:-16.626624pt;}
._b{margin-left:-15.142400pt;}
._14{margin-left:-13.526848pt;}
._22{margin-left:-11.880576pt;}
._8{margin-left:-10.726400pt;}
._16{margin-left:-9.819968pt;}
._6{margin-left:-8.773120pt;}
._9{margin-left:-7.377152pt;}
._7{margin-left:-5.662720pt;}
._5{margin-left:-4.044800pt;}
._a{margin-left:-2.478080pt;}
._1{margin-left:-1.280000pt;}
._0{width:1.205568pt;}
._2{width:2.139648pt;}
._4{width:3.686528pt;}
._10{width:5.138112pt;}
._f{width:6.594560pt;}
._d{width:8.243392pt;}
._3{width:9.690176pt;}
._e{width:10.613952pt;}
._15{width:13.365760pt;}
._1a{width:14.307840pt;}
._c{width:20.513920pt;}
._1b{width:21.667840pt;}
._11{width:24.441088pt;}
._17{width:28.978560pt;}
._13{width:32.356032pt;}
._21{width:47.280640pt;}
._12{width:751.603200pt;}
.fsf{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsc{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:2.880000pt;}
.ycb{bottom:3.040000pt;}
.yc7{bottom:3.200000pt;}
.y4d{bottom:15.200000pt;}
.ycf{bottom:18.240000pt;}
.ycd{bottom:18.400000pt;}
.yc9{bottom:33.760000pt;}
.y4a{bottom:47.680000pt;}
.y21{bottom:51.680000pt;}
.y5{bottom:59.133337pt;}
.ya6{bottom:69.600000pt;}
.y4{bottom:86.333337pt;}
.y47{bottom:95.680000pt;}
.y44{bottom:106.400000pt;}
.y20d{bottom:115.976000pt;}
.y285{bottom:115.984000pt;}
.y1de{bottom:115.996000pt;}
.y110{bottom:118.094720pt;}
.y17f{bottom:118.662400pt;}
.yd2{bottom:121.920000pt;}
.y20{bottom:123.790666pt;}
.y249{bottom:125.778560pt;}
.y2b2{bottom:125.938560pt;}
.y195{bottom:128.185600pt;}
.y20c{bottom:129.740000pt;}
.y284{bottom:129.748000pt;}
.y10f{bottom:135.052160pt;}
.y17e{bottom:135.457920pt;}
.y1dd{bottom:135.840000pt;}
.y126{bottom:139.209600pt;}
.y151{bottom:140.026880pt;}
.y22d{bottom:140.237440pt;}
.yf0{bottom:140.323840pt;}
.y248{bottom:142.574080pt;}
.y2b1{bottom:142.896000pt;}
.y20b{bottom:143.504000pt;}
.y283{bottom:143.512000pt;}
.y194{bottom:145.143040pt;}
.y1dc{bottom:148.160000pt;}
.y10e{bottom:151.847680pt;}
.y2ed{bottom:152.185600pt;}
.y17d{bottom:152.415360pt;}
.y125{bottom:156.167040pt;}
.y150{bottom:156.822400pt;}
.y20a{bottom:157.424000pt;}
.y282{bottom:157.432000pt;}
.y78{bottom:158.080000pt;}
.y247{bottom:159.369600pt;}
.y2b0{bottom:159.691520pt;}
.y4c{bottom:161.440000pt;}
.y193{bottom:161.938560pt;}
.y6d{bottom:162.883840pt;}
.y22c{bottom:165.040640pt;}
.yef{bottom:165.127040pt;}
.yc5{bottom:167.221120pt;}
.y10d{bottom:168.805120pt;}
.y2ec{bottom:168.981120pt;}
.y17c{bottom:169.210880pt;}
.y1b5{bottom:169.642880pt;}
.y209{bottom:171.188000pt;}
.y281{bottom:171.196000pt;}
.y124{bottom:172.962560pt;}
.y14f{bottom:173.779840pt;}
.y17{bottom:175.052000pt;}
.y265{bottom:175.202560pt;}
.y246{bottom:176.327040pt;}
.y2af{bottom:176.487040pt;}
.y1db{bottom:176.872960pt;}
.y192{bottom:178.896000pt;}
.y22b{bottom:181.836160pt;}
.yee{bottom:182.084480pt;}
.yc4{bottom:184.178560pt;}
.y208{bottom:184.952000pt;}
.y10c{bottom:185.600640pt;}
.y17b{bottom:186.168320pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y1b4{bottom:186.600320pt;}
.y123{bottom:189.920000pt;}
.y14e{bottom:190.575360pt;}
.y280{bottom:191.040000pt;}
.y245{bottom:193.122560pt;}
.y2ae{bottom:193.444480pt;}
.y2eb{bottom:193.784320pt;}
.y1da{bottom:193.830400pt;}
.y83{bottom:193.950720pt;}
.y6c{bottom:195.680000pt;}
.y191{bottom:195.691520pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y207{bottom:198.716000pt;}
.y22a{bottom:198.793600pt;}
.yed{bottom:198.880000pt;}
.yc3{bottom:200.974080pt;}
.y264{bottom:201.124480pt;}
.y10b{bottom:202.396160pt;}
.y27f{bottom:203.360000pt;}
.y1b3{bottom:203.395840pt;}
.y79{bottom:204.640000pt;}
.y14d{bottom:207.370880pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y244{bottom:210.080000pt;}
.y2ad{bottom:210.240000pt;}
.y1d9{bottom:210.625920pt;}
.y2ea{bottom:210.741760pt;}
.y17a{bottom:210.971520pt;}
.y82{bottom:211.070080pt;}
.y6b{bottom:212.160000pt;}
.y190{bottom:212.487040pt;}
.y206{bottom:212.636000pt;}
.y229{bottom:215.589120pt;}
.yc2{bottom:217.769600pt;}
.y10a{bottom:219.353600pt;}
.y1b2{bottom:220.191360pt;}
.y122{bottom:223.680000pt;}
.y14c{bottom:224.328320pt;}
.y263{bottom:226.884480pt;}
.y1d8{bottom:227.421440pt;}
.y81{bottom:227.865600pt;}
.y179{bottom:227.928960pt;}
.y18f{bottom:229.444480pt;}
.y1c{bottom:231.038664pt;}
.yec{bottom:231.044960pt;}
.y13{bottom:231.052000pt;}
.y42{bottom:232.168320pt;}
.y205{bottom:232.480000pt;}
.y228{bottom:232.546560pt;}
.yc1{bottom:234.727040pt;}
.y2e9{bottom:235.544960pt;}
.y6a{bottom:235.982080pt;}
.y109{bottom:236.149120pt;}
.y1b1{bottom:237.148800pt;}
.y243{bottom:242.088320pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y1d7{bottom:244.378880pt;}
.y2ac{bottom:244.640000pt;}
.y80{bottom:244.661120pt;}
.y178{bottom:244.724480pt;}
.y204{bottom:244.800000pt;}
.y18e{bottom:246.240000pt;}
.yeb{bottom:247.200000pt;}
.y14b{bottom:249.131520pt;}
.y227{bottom:249.342080pt;}
.yc0{bottom:251.522560pt;}
.y262{bottom:251.849600pt;}
.y2e8{bottom:252.502400pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y1b0{bottom:253.944320pt;}
.y242{bottom:258.404160pt;}
.y121{bottom:260.171520pt;}
.y69{bottom:260.785280pt;}
.y108{bottom:261.114240pt;}
.y1d6{bottom:261.174400pt;}
.y177{bottom:261.520000pt;}
.y7f{bottom:261.618560pt;}
.y41{bottom:264.964480pt;}
.yea{bottom:265.173120pt;}
.y14a{bottom:266.088960pt;}
.y226{bottom:266.137600pt;}
.ybf{bottom:268.480000pt;}
.y261{bottom:268.645120pt;}
.y2e7{bottom:269.297920pt;}
.y1af{bottom:270.901760pt;}
.y203{bottom:271.364480pt;}
.y241{bottom:274.720000pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y120{bottom:277.128960pt;}
.y27e{bottom:277.975680pt;}
.y1d5{bottom:278.131840pt;}
.y18d{bottom:278.400000pt;}
.y7e{bottom:278.414080pt;}
.y176{bottom:278.477440pt;}
.y40{bottom:281.760000pt;}
.y149{bottom:282.884480pt;}
.y225{bottom:283.095040pt;}
.y260{bottom:285.440640pt;}
.y68{bottom:285.750400pt;}
.y107{bottom:285.917440pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y1ae{bottom:287.697280pt;}
.y202{bottom:288.224640pt;}
.y2ab{bottom:291.768320pt;}
.y240{bottom:292.555520pt;}
.y11f{bottom:293.924480pt;}
.y2e6{bottom:294.101120pt;}
.y1d4{bottom:294.927360pt;}
.y27d{bottom:294.933120pt;}
.y175{bottom:295.272960pt;}
.y7d{bottom:295.371520pt;}
.y18c{bottom:296.220800pt;}
.y3f{bottom:299.040000pt;}
.y148{bottom:299.680000pt;}
.y224{bottom:299.890560pt;}
.ybe{bottom:300.484160pt;}
.y25f{bottom:302.398080pt;}
.y201{bottom:305.182080pt;}
.y2aa{bottom:308.563840pt;}
.ye{bottom:309.452000pt;}
.y67{bottom:310.553600pt;}
.y11e{bottom:310.720000pt;}
.y106{bottom:310.882560pt;}
.y2e5{bottom:311.058560pt;}
.y27c{bottom:311.728640pt;}
.y7c{bottom:312.167040pt;}
.y174{bottom:312.230400pt;}
.y1ad{bottom:312.500480pt;}
.ybd{bottom:316.800000pt;}
.y223{bottom:316.848000pt;}
.y3e{bottom:317.440000pt;}
.y1d3{bottom:319.730560pt;}
.y200{bottom:321.977600pt;}
.y2a9{bottom:325.521280pt;}
.y105{bottom:327.678080pt;}
.y2e4{bottom:327.854080pt;}
.y25e{bottom:328.320000pt;}
.y27b{bottom:328.524160pt;}
.y7b{bottom:328.962560pt;}
.y173{bottom:329.025920pt;}
.y1ac{bottom:329.457920pt;}
.yd1{bottom:333.120000pt;}
.y147{bottom:333.600000pt;}
.y222{bottom:333.643520pt;}
.y66{bottom:335.356800pt;}
.y49{bottom:335.360000pt;}
.y1d2{bottom:336.688000pt;}
.y1ff{bottom:338.935040pt;}
.y2a8{bottom:342.316800pt;}
.y11d{bottom:342.889120pt;}
.yd{bottom:343.809333pt;}
.y27a{bottom:345.481600pt;}
.y172{bottom:345.821440pt;}
.y7a{bottom:345.920000pt;}
.y1ab{bottom:346.253440pt;}
.y221{bottom:350.439040pt;}
.y104{bottom:352.481280pt;}
.y2e3{bottom:352.819200pt;}
.y1d1{bottom:353.483520pt;}
.y25d{bottom:354.119040pt;}
.y3d{bottom:354.240000pt;}
.y1fe{bottom:355.730560pt;}
.y11c{bottom:359.204960pt;}
.y2a7{bottom:359.274240pt;}
.y65{bottom:360.160000pt;}
.y279{bottom:362.277120pt;}
.yc{bottom:362.706666pt;}
.y1aa{bottom:363.210880pt;}
.y4b{bottom:364.640000pt;}
.y220{bottom:367.396480pt;}
.yd4{bottom:367.680000pt;}
.y103{bottom:369.438720pt;}
.y2e2{bottom:369.614720pt;}
.y146{bottom:370.130560pt;}
.y1d0{bottom:370.440960pt;}
.y171{bottom:370.786560pt;}
.y1fd{bottom:372.526080pt;}
.y3c{bottom:372.640000pt;}
.y11b{bottom:375.360000pt;}
.y64{bottom:377.920000pt;}
.y25c{bottom:378.922240pt;}
.y278{bottom:379.234560pt;}
.y21f{bottom:384.192000pt;}
.y2a6{bottom:385.034240pt;}
.y145{bottom:386.926080pt;}
.y1cf{bottom:387.236480pt;}
.y170{bottom:387.582080pt;}
.y1a9{bottom:388.014080pt;}
.y1fc{bottom:389.483520pt;}
.y3b{bottom:391.040000pt;}
.y11a{bottom:393.308160pt;}
.y102{bottom:394.241920pt;}
.y2e1{bottom:394.579840pt;}
.y25b{bottom:395.879680pt;}
.y277{bottom:396.030080pt;}
.y63{bottom:399.840000pt;}
.y21e{bottom:401.149440pt;}
.y2a5{bottom:401.991680pt;}
.yd3{bottom:402.240000pt;}
.y144{bottom:403.883520pt;}
.y16f{bottom:404.539520pt;}
.y1a8{bottom:404.971520pt;}
.y1fb{bottom:406.279040pt;}
.y46{bottom:407.360000pt;}
.y3a{bottom:409.440000pt;}
.y101{bottom:411.199360pt;}
.y2e0{bottom:411.375360pt;}
.y1ce{bottom:412.039680pt;}
.y276{bottom:412.987520pt;}
.y2a4{bottom:418.787200pt;}
.y143{bottom:420.679040pt;}
.y25a{bottom:420.682880pt;}
.y16e{bottom:421.335040pt;}
.y1a7{bottom:421.767040pt;}
.y1fa{bottom:423.236480pt;}
.y62{bottom:425.120000pt;}
.y21d{bottom:426.423680pt;}
.y39{bottom:427.840000pt;}
.y1cd{bottom:428.997120pt;}
.y275{bottom:429.783040pt;}
.y2a3{bottom:435.582720pt;}
.y100{bottom:436.002560pt;}
.y2df{bottom:436.178560pt;}
.yce{bottom:436.800000pt;}
.y259{bottom:437.640320pt;}
.y16d{bottom:438.130560pt;}
.y1a6{bottom:438.562560pt;}
.y1f9{bottom:440.032000pt;}
.y2c5{bottom:441.345280pt;}
.y142{bottom:445.644160pt;}
.y1cc{bottom:445.792640pt;}
.y38{bottom:446.240000pt;}
.y274{bottom:446.578560pt;}
.y2a2{bottom:452.540160pt;}
.y21c{bottom:452.669440pt;}
.y2de{bottom:453.136000pt;}
.y16c{bottom:455.088000pt;}
.y1a5{bottom:455.520000pt;}
.yff{bottom:460.805760pt;}
.y141{bottom:462.439680pt;}
.y258{bottom:462.443520pt;}
.y1cb{bottom:462.750080pt;}
.yb{bottom:462.990669pt;}
.y273{bottom:463.536000pt;}
.y37{bottom:464.375680pt;}
.y1f8{bottom:464.835200pt;}
.y2c4{bottom:466.148480pt;}
.y61{bottom:467.083520pt;}
.y21b{bottom:469.464960pt;}
.y16b{bottom:471.883520pt;}
.ycc{bottom:472.000000pt;}
.y2dd{bottom:477.939200pt;}
.y2a1{bottom:478.300160pt;}
.ya{bottom:478.990666pt;}
.y140{bottom:479.235200pt;}
.y257{bottom:479.239040pt;}
.y1ca{bottom:479.545600pt;}
.y272{bottom:480.331520pt;}
.y1a4{bottom:480.800000pt;}
.y36{bottom:481.171200pt;}
.y1f7{bottom:481.792640pt;}
.y2c3{bottom:483.105920pt;}
.y60{bottom:484.040960pt;}
.y48{bottom:484.640000pt;}
.yfe{bottom:485.770880pt;}
.y21a{bottom:486.422400pt;}
.y16a{bottom:488.840960pt;}
.y2dc{bottom:494.896640pt;}
.y9{bottom:494.990666pt;}
.y2a0{bottom:495.257600pt;}
.y13f{bottom:496.192640pt;}
.y256{bottom:496.196480pt;}
.y1c9{bottom:496.341120pt;}
.y271{bottom:497.288960pt;}
.y1f6{bottom:498.588160pt;}
.y2c2{bottom:499.901440pt;}
.yfd{bottom:502.566400pt;}
.y219{bottom:503.217920pt;}
.y169{bottom:505.636480pt;}
.yc8{bottom:507.200000pt;}
.y2db{bottom:511.692160pt;}
.y29f{bottom:512.053120pt;}
.y13e{bottom:512.988160pt;}
.y255{bottom:512.992000pt;}
.y1c8{bottom:513.298560pt;}
.y270{bottom:514.084480pt;}
.y1a3{bottom:515.136640pt;}
.y1f5{bottom:515.545600pt;}
.y5f{bottom:516.837120pt;}
.y2c1{bottom:516.858880pt;}
.y168{bottom:522.432000pt;}
.yca{bottom:525.600000pt;}
.yc6{bottom:527.040000pt;}
.yfc{bottom:527.531520pt;}
.y218{bottom:528.021120pt;}
.y29e{bottom:529.010560pt;}
.y13d{bottom:529.945600pt;}
.y1c7{bottom:530.094080pt;}
.y26f{bottom:530.880000pt;}
.y35{bottom:531.719680pt;}
.y1a2{bottom:531.932160pt;}
.y1f4{bottom:532.341120pt;}
.y2c0{bottom:533.654400pt;}
.y5e{bottom:533.794560pt;}
.y2da{bottom:536.495360pt;}
.y254{bottom:537.957120pt;}
.y167{bottom:539.389440pt;}
.yfb{bottom:544.327040pt;}
.y217{bottom:544.978560pt;}
.y29d{bottom:545.806080pt;}
.y13c{bottom:546.741120pt;}
.y1c6{bottom:547.051520pt;}
.y34{bottom:548.677120pt;}
.y1a1{bottom:548.889600pt;}
.y1f3{bottom:549.298560pt;}
.y2bf{bottom:550.449920pt;}
.y5d{bottom:550.590080pt;}
.y2d9{bottom:553.452800pt;}
.y253{bottom:554.752640pt;}
.y26e{bottom:556.320000pt;}
.yfa{bottom:561.122560pt;}
.y216{bottom:561.774080pt;}
.y13b{bottom:563.698560pt;}
.y1c5{bottom:563.847040pt;}
.y166{bottom:564.192640pt;}
.y33{bottom:565.472640pt;}
.y1a0{bottom:565.685120pt;}
.ya3{bottom:565.754880pt;}
.y5c{bottom:567.547520pt;}
.ybc{bottom:569.652480pt;}
.y252{bottom:571.710080pt;}
.y29c{bottom:571.728000pt;}
.y8{bottom:573.786667pt;}
.y1f2{bottom:574.572800pt;}
.y2be{bottom:575.415040pt;}
.yf9{bottom:578.080000pt;}
.y2d8{bottom:578.256000pt;}
.y215{bottom:578.731520pt;}
.y13a{bottom:580.494080pt;}
.y1c4{bottom:580.804480pt;}
.y165{bottom:581.150080pt;}
.y32{bottom:582.268160pt;}
.y19f{bottom:582.480640pt;}
.y5b{bottom:584.343040pt;}
.ye9{bottom:586.451840pt;}
.y43{bottom:587.200000pt;}
.y251{bottom:588.505600pt;}
.y26d{bottom:590.428160pt;}
.ya2{bottom:590.720000pt;}
.y2bd{bottom:592.210560pt;}
.y7{bottom:592.685334pt;}
.y2d7{bottom:595.213440pt;}
.y214{bottom:595.527040pt;}
.y29b{bottom:596.531200pt;}
.y139{bottom:597.289600pt;}
.y1c3{bottom:597.600000pt;}
.y164{bottom:597.945600pt;}
.y31{bottom:599.225600pt;}
.y19e{bottom:599.438080pt;}
.y1f1{bottom:600.818560pt;}
.y5a{bottom:601.138560pt;}
.ybb{bottom:602.286720pt;}
.ye8{bottom:603.409280pt;}
.y250{bottom:605.301120pt;}
.y26c{bottom:607.385600pt;}
.y23f{bottom:608.402560pt;}
.y2bc{bottom:609.168000pt;}
.y2d6{bottom:612.008960pt;}
.y213{bottom:612.322560pt;}
.yf8{bottom:612.480000pt;}
.y29a{bottom:613.326720pt;}
.y138{bottom:614.247040pt;}
.y163{bottom:614.741120pt;}
.y30{bottom:616.021120pt;}
.y19d{bottom:616.233600pt;}
.y1f0{bottom:617.614080pt;}
.yba{bottom:619.244160pt;}
.y24f{bottom:622.258560pt;}
.ya1{bottom:623.520000pt;}
.y26b{bottom:624.181120pt;}
.y2bb{bottom:625.963520pt;}
.y212{bottom:629.280000pt;}
.y1c2{bottom:629.764960pt;}
.y299{bottom:630.284160pt;}
.y137{bottom:631.042560pt;}
.y162{bottom:631.698560pt;}
.y2f{bottom:632.978560pt;}
.y19c{bottom:633.191040pt;}
.y59{bottom:634.096640pt;}
.y1ef{bottom:634.409600pt;}
.yb9{bottom:636.039680pt;}
.ye7{bottom:636.043520pt;}
.y2d5{bottom:636.812160pt;}
.y24e{bottom:639.054080pt;}
.y26a{bottom:641.138560pt;}
.y23e{bottom:641.198720pt;}
.y2ba{bottom:642.920960pt;}
.y6{bottom:645.598667pt;}
.y1c1{bottom:645.920000pt;}
.y298{bottom:647.079680pt;}
.y136{bottom:648.000000pt;}
.y161{bottom:648.494080pt;}
.y2e{bottom:649.774080pt;}
.y19b{bottom:649.986560pt;}
.y1ee{bottom:651.367040pt;}
.yb8{bottom:652.835200pt;}
.ye6{bottom:652.839040pt;}
.y2d4{bottom:653.769600pt;}
.y24d{bottom:656.011520pt;}
.ya0{bottom:656.320000pt;}
.y269{bottom:657.934080pt;}
.y23d{bottom:657.994240pt;}
.yf7{bottom:658.735360pt;}
.y2b9{bottom:659.716480pt;}
.y211{bottom:661.284160pt;}
.y1c0{bottom:663.859840pt;}
.y297{bottom:664.037120pt;}
.y160{bottom:665.451520pt;}
.y2d{bottom:666.731520pt;}
.y58{bottom:666.892800pt;}
.y19a{bottom:666.944000pt;}
.y1ed{bottom:668.162560pt;}
.y3{bottom:668.977329pt;}
.ye5{bottom:669.796480pt;}
.y2d3{bottom:670.565120pt;}
.y24c{bottom:672.807040pt;}
.y45{bottom:672.960000pt;}
.yf6{bottom:674.890400pt;}
.y268{bottom:674.891520pt;}
.y23c{bottom:674.951680pt;}
.y2b8{bottom:676.512000pt;}
.y2f3{bottom:677.454080pt;}
.y210{bottom:677.600000pt;}
.yb7{bottom:677.800320pt;}
.y296{bottom:680.832640pt;}
.y135{bottom:681.760000pt;}
.y15f{bottom:682.247040pt;}
.y2c{bottom:683.527040pt;}
.y199{bottom:683.739520pt;}
.y57{bottom:683.850240pt;}
.y1ec{bottom:685.120000pt;}
.ye4{bottom:686.592000pt;}
.yf5{bottom:687.207680pt;}
.y9f{bottom:689.120000pt;}
.y24b{bottom:689.602560pt;}
.y267{bottom:691.687040pt;}
.y23b{bottom:691.747200pt;}
.y2f2{bottom:694.249600pt;}
.yb6{bottom:694.595840pt;}
.y20f{bottom:695.530240pt;}
.y295{bottom:697.628160pt;}
.y15e{bottom:699.204480pt;}
.y2b{bottom:700.322560pt;}
.y198{bottom:700.535040pt;}
.y56{bottom:700.645760pt;}
.y2b7{bottom:701.477120pt;}
.y18b{bottom:701.653760pt;}
.yf4{bottom:703.523520pt;}
.ye3{bottom:703.549440pt;}
.y9e{bottom:706.080000pt;}
.y24a{bottom:706.560000pt;}
.y266{bottom:708.482560pt;}
.y23a{bottom:708.542720pt;}
.yb5{bottom:711.553280pt;}
.y2d2{bottom:712.325760pt;}
.yf3{bottom:715.680000pt;}
.y15d{bottom:716.000000pt;}
.y55{bottom:717.441280pt;}
.y197{bottom:717.492480pt;}
.y134{bottom:718.272640pt;}
.y1eb{bottom:718.885600pt;}
.y2f1{bottom:719.214720pt;}
.ye2{bottom:720.344960pt;}
.y294{bottom:722.593280pt;}
.y9d{bottom:722.880000pt;}
.y239{bottom:725.500160pt;}
.yb4{bottom:728.348800pt;}
.y2d1{bottom:729.121280pt;}
.yf2{bottom:733.594240pt;}
.y18a{bottom:734.288000pt;}
.y54{bottom:734.398720pt;}
.y2a{bottom:735.072160pt;}
.y133{bottom:735.230080pt;}
.ye1{bottom:737.140480pt;}
.y293{bottom:739.388800pt;}
.y9c{bottom:739.840000pt;}
.y1ea{bottom:740.320000pt;}
.y15c{bottom:741.440000pt;}
.y238{bottom:742.295680pt;}
.y2f0{bottom:744.017920pt;}
.yb3{bottom:745.144320pt;}
.y2d0{bottom:746.078720pt;}
.y53{bottom:751.194240pt;}
.y189{bottom:751.245440pt;}
.y132{bottom:752.025600pt;}
.y292{bottom:756.346240pt;}
.y29{bottom:756.506560pt;}
.y119{bottom:757.304320pt;}
.y237{bottom:759.253120pt;}
.y2ef{bottom:760.813440pt;}
.yb2{bottom:762.101760pt;}
.ye0{bottom:762.105600pt;}
.y188{bottom:768.040960pt;}
.y52{bottom:768.151680pt;}
.y131{bottom:768.821120pt;}
.y2cf{bottom:770.881920pt;}
.y9b{bottom:772.640000pt;}
.y291{bottom:773.141760pt;}
.y118{bottom:774.099840pt;}
.y15b{bottom:775.527040pt;}
.y236{bottom:776.048640pt;}
.y1e9{bottom:776.843520pt;}
.y2ee{bottom:777.770880pt;}
.y28{bottom:777.940960pt;}
.ydf{bottom:778.901120pt;}
.y2{bottom:781.661334pt;}
.y51{bottom:781.752960pt;}
.y187{bottom:784.836480pt;}
.y130{bottom:785.778560pt;}
.yb1{bottom:786.904960pt;}
.y2ce{bottom:787.839360pt;}
.y290{bottom:789.937280pt;}
.y15a{bottom:792.322560pt;}
.y235{bottom:792.844160pt;}
.y1e8{bottom:793.800960pt;}
.y91{bottom:793.968640pt;}
.yde{bottom:795.858560pt;}
.y27{bottom:799.375360pt;}
.y186{bottom:801.793920pt;}
.y12f{bottom:802.574080pt;}
.yb0{bottom:803.862400pt;}
.y9a{bottom:805.440000pt;}
.y77{bottom:805.927680pt;}
.y117{bottom:806.896000pt;}
.y159{bottom:809.280000pt;}
.y234{bottom:809.801600pt;}
.y2b6{bottom:810.581760pt;}
.y1e7{bottom:810.596480pt;}
.y90{bottom:810.602240pt;}
.y2cd{bottom:812.642560pt;}
.ydd{bottom:812.654080pt;}
.y28f{bottom:814.902400pt;}
.y1bf{bottom:817.786880pt;}
.y185{bottom:818.589440pt;}
.y12e{bottom:819.531520pt;}
.yaf{bottom:820.657920pt;}
.y26{bottom:820.978240pt;}
.y99{bottom:822.400000pt;}
.y76{bottom:823.047040pt;}
.y116{bottom:823.691520pt;}
.y233{bottom:826.597120pt;}
.y2b5{bottom:827.539200pt;}
.y1e6{bottom:827.553920pt;}
.y8f{bottom:827.559680pt;}
.ydc{bottom:829.449600pt;}
.y28e{bottom:831.697920pt;}
.y1be{bottom:834.744320pt;}
.y184{bottom:835.546880pt;}
.y12d{bottom:836.327040pt;}
.y2cc{bottom:837.445760pt;}
.yae{bottom:837.453440pt;}
.y98{bottom:839.200000pt;}
.y115{bottom:840.648960pt;}
.y25{bottom:842.412640pt;}
.y158{bottom:843.040000pt;}
.y232{bottom:843.554560pt;}
.y2b4{bottom:844.334720pt;}
.y1e5{bottom:844.349440pt;}
.y8e{bottom:844.355200pt;}
.ydb{bottom:846.407040pt;}
.y75{bottom:847.850240pt;}
.y28d{bottom:848.655360pt;}
.y183{bottom:852.342400pt;}
.y12c{bottom:853.122560pt;}
.y2cb{bottom:854.403200pt;}
.yad{bottom:854.410880pt;}
.y97{bottom:856.160000pt;}
.y114{bottom:857.444480pt;}
.y1{bottom:859.312000pt;}
.y231{bottom:860.350080pt;}
.y2b3{bottom:861.130240pt;}
.y1e4{bottom:861.144960pt;}
.y8d{bottom:861.150720pt;}
.yda{bottom:863.202560pt;}
.y24{bottom:863.847040pt;}
.y74{bottom:864.645760pt;}
.y28c{bottom:865.450880pt;}
.y1bd{bottom:867.378560pt;}
.y182{bottom:869.137920pt;}
.y113{bottom:874.240000pt;}
.y230{bottom:877.145600pt;}
.y12b{bottom:878.087680pt;}
.y1e3{bottom:878.102400pt;}
.y8c{bottom:878.108160pt;}
.y2ca{bottom:879.206400pt;}
.yac{bottom:879.214080pt;}
.y157{bottom:879.529600pt;}
.yd9{bottom:880.160000pt;}
.y73{bottom:881.603200pt;}
.y1bc{bottom:884.336000pt;}
.y23{bottom:885.281440pt;}
.y181{bottom:886.095360pt;}
.y96{bottom:888.960000pt;}
.y28b{bottom:890.254080pt;}
.y22f{bottom:894.103040pt;}
.y12a{bottom:894.883200pt;}
.y1e2{bottom:894.897920pt;}
.y8b{bottom:894.903680pt;}
.y2c9{bottom:896.163840pt;}
.yab{bottom:896.171520pt;}
.y156{bottom:896.487040pt;}
.y72{bottom:898.398720pt;}
.y1bb{bottom:901.131520pt;}
.y22{bottom:902.560000pt;}
.y180{bottom:902.890880pt;}
.y28a{bottom:907.211520pt;}
.y112{bottom:908.160000pt;}
.y22e{bottom:910.898560pt;}
.y1e1{bottom:911.855360pt;}
.y8a{bottom:911.861120pt;}
.yaa{bottom:912.967040pt;}
.y155{bottom:913.282560pt;}
.yd8{bottom:914.560000pt;}
.y71{bottom:915.356160pt;}
.y1ba{bottom:917.927040pt;}
.y129{bottom:919.848320pt;}
.y2c8{bottom:920.967040pt;}
.y95{bottom:921.760000pt;}
.y289{bottom:924.007040pt;}
.y196{bottom:927.856000pt;}
.y1e0{bottom:928.650880pt;}
.y89{bottom:928.656640pt;}
.y20e{bottom:928.812800pt;}
.ya9{bottom:929.924480pt;}
.y154{bottom:930.240000pt;}
.y1b9{bottom:934.884480pt;}
.y128{bottom:936.643840pt;}
.y2c7{bottom:937.924480pt;}
.y70{bottom:940.159360pt;}
.y288{bottom:940.964480pt;}
.y111{bottom:944.651520pt;}
.y1df{bottom:945.446400pt;}
.y88{bottom:945.452160pt;}
.ya8{bottom:946.720000pt;}
.y1b8{bottom:951.682560pt;}
.y127{bottom:953.439360pt;}
.y2c6{bottom:954.720000pt;}
.y94{bottom:954.725120pt;}
.y6f{bottom:956.954880pt;}
.y287{bottom:957.760000pt;}
.yd7{bottom:961.447040pt;}
.y87{bottom:962.409600pt;}
.y153{bottom:964.648000pt;}
.y1b7{bottom:968.640000pt;}
.y93{bottom:971.520640pt;}
.yd6{bottom:978.404480pt;}
.y86{bottom:979.205120pt;}
.ya7{bottom:981.120000pt;}
.y6e{bottom:981.920000pt;}
.y152{bottom:989.120000pt;}
.y286{bottom:991.520000pt;}
.y1b6{bottom:993.920000pt;}
.yd5{bottom:995.200000pt;}
.yf1{bottom:995.360000pt;}
.y85{bottom:996.162560pt;}
.y92{bottom:1006.880000pt;}
.y50{bottom:1012.960000pt;}
.y84{bottom:1013.120000pt;}
.ya5{bottom:1044.160000pt;}
.y4f{bottom:1044.480000pt;}
.ya4{bottom:1061.920000pt;}
.y4e{bottom:1062.240000pt;}
.h1c{height:15.198667pt;}
.h1a{height:27.360000pt;}
.h7{height:28.560000pt;}
.h1d{height:30.560000pt;}
.h1f{height:30.720000pt;}
.h21{height:33.375000pt;}
.h10{height:38.240000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h19{height:44.722500pt;}
.h1b{height:47.200000pt;}
.h2{height:48.960000pt;}
.h24{height:49.138360pt;}
.h22{height:50.062500pt;}
.h12{height:55.402500pt;}
.hb{height:61.410000pt;}
.hf{height:62.400000pt;}
.h13{height:63.984375pt;}
.h23{height:65.336440pt;}
.h26{height:65.354360pt;}
.h25{height:65.438840pt;}
.h20{height:65.584760pt;}
.h9{height:66.750000pt;}
.h5{height:69.360000pt;}
.hd{height:72.090000pt;}
.ha{height:78.097500pt;}
.h14{height:85.785000pt;}
.h16{height:88.777500pt;}
.h11{height:100.125000pt;}
.h4{height:105.826671pt;}
.he{height:110.400000pt;}
.hc{height:122.400000pt;}
.h1e{height:134.240000pt;}
.h15{height:218.240000pt;}
.h18{height:1122.000000pt;}
.h17{height:1122.240000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:87.040000pt;}
.w10{width:96.000000pt;}
.wd{width:127.680000pt;}
.wb{width:132.161333pt;}
.we{width:139.520000pt;}
.w6{width:172.480000pt;}
.wf{width:183.040000pt;}
.w5{width:219.520000pt;}
.w8{width:290.880000pt;}
.wc{width:322.560000pt;}
.wa{width:450.240000pt;}
.w7{width:503.840000pt;}
.w4{width:561.760000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w9{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:8.320000pt;}
.xb{left:9.600000pt;}
.x1b{left:12.160000pt;}
.x23{left:13.280000pt;}
.x2c{left:16.160000pt;}
.x27{left:22.720000pt;}
.x21{left:24.640000pt;}
.x2a{left:27.040000pt;}
.x28{left:28.320000pt;}
.x26{left:29.440000pt;}
.x25{left:30.560000pt;}
.x2b{left:34.240000pt;}
.x1e{left:41.920000pt;}
.x24{left:48.800000pt;}
.x10{left:83.040000pt;}
.xa{left:84.320000pt;}
.x15{left:86.880000pt;}
.xe{left:87.840000pt;}
.xc{left:88.800000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:96.009120pt;}
.xf{left:97.440000pt;}
.xd{left:98.400000pt;}
.x1a{left:105.760000pt;}
.x14{left:107.200000pt;}
.x17{left:113.440000pt;}
.x36{left:128.321920pt;}
.x35{left:131.530880pt;}
.x34{left:135.520000pt;}
.x3a{left:137.440000pt;}
.x33{left:138.890880pt;}
.x31{left:142.085120pt;}
.x16{left:143.040000pt;}
.x41{left:151.853440pt;}
.x3e{left:160.161280pt;}
.x32{left:161.441920pt;}
.x37{left:164.636160pt;}
.x44{left:177.781120pt;}
.x2f{left:179.520000pt;}
.x4{left:180.874667pt;}
.x45{left:185.438720pt;}
.x2d{left:190.396160pt;}
.x3f{left:192.810240pt;}
.x43{left:197.440000pt;}
.x40{left:227.520000pt;}
.x22{left:245.280000pt;}
.x3b{left:249.114240pt;}
.x19{left:266.601600pt;}
.x2e{left:302.076800pt;}
.x38{left:308.156160pt;}
.x6{left:324.000000pt;}
.x29{left:341.280000pt;}
.x3d{left:388.800000pt;}
.x13{left:390.080000pt;}
.x18{left:392.960000pt;}
.x5{left:396.800000pt;}
.x3{left:404.408000pt;}
.x1f{left:428.320000pt;}
.x9{left:509.113600pt;}
.x1c{left:556.000000pt;}
.x39{left:564.961280pt;}
.x1d{left:572.160000pt;}
.x42{left:599.038080pt;}
.x12{left:612.800000pt;}
.x30{left:636.954880pt;}
.x8{left:658.080000pt;}
.x3c{left:660.950400pt;}
.x11{left:696.958720pt;}
}




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