
    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_1f3966af2c4c104f80e36319.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_8311330c869b86bf2412b787.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_495f09b15578be84373a687c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.058105;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_41a99591f10849d5c7a8939a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4ebd39ad264faf7a9300a9c8.woff2')format("woff");}.ff5{font-family:ff5;line-height:4.296875;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_e1fdde9d9866e712401ecabb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.931152;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_69125c71dc94ff7da5388dee.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.037109;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_26ef806435c1a03c5577311a.woff2')format("woff");}.ff8{font-family:ff8;line-height:3.333984;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_d2def0c8b409406a13fdc98e.woff2')format("woff");}.ff9{font-family:ff9;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;}
.mb{transform:matrix(0.000000,-0.249834,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249834,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249834,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.249955,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249955,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249955,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,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);}
.m7{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,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:-12.240000px;}
.v7{vertical-align:-5.715360px;}
.v8{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.160000px;}
.v9{vertical-align:4.314000px;}
.v4{vertical-align:12.222000px;}
.v1{vertical-align:15.120000px;}
.v2{vertical-align:18.000000px;}
.v5{vertical-align:22.320000px;}
.ls75{letter-spacing:-1.417482px;}
.ls88{letter-spacing:-1.338698px;}
.ls86{letter-spacing:-1.075680px;}
.ls21{letter-spacing:-0.771840px;}
.ls77{letter-spacing:-0.730085px;}
.ls4f{letter-spacing:-0.715788px;}
.ls8a{letter-spacing:-0.689173px;}
.ls64{letter-spacing:-0.657360px;}
.ls8c{letter-spacing:-0.608094px;}
.ls1f{letter-spacing:-0.530640px;}
.ls78{letter-spacing:-0.515354px;}
.ls8b{letter-spacing:-0.486475px;}
.ls65{letter-spacing:-0.478080px;}
.ls87{letter-spacing:-0.432000px;}
.ls7d{letter-spacing:-0.378000px;}
.ls19{letter-spacing:-0.358560px;}
.ls51{letter-spacing:-0.357894px;}
.ls29{letter-spacing:-0.331200px;}
.ls4d{letter-spacing:-0.324000px;}
.ls4a{letter-spacing:-0.298800px;}
.ls24{letter-spacing:-0.270000px;}
.ls63{letter-spacing:-0.264960px;}
.ls26{letter-spacing:-0.252000px;}
.ls18{letter-spacing:-0.239040px;}
.ls4b{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.194400px;}
.ls4e{letter-spacing:-0.179280px;}
.ls1c{letter-spacing:-0.144000px;}
.ls92{letter-spacing:-0.121619px;}
.ls2c{letter-spacing:-0.119520px;}
.ls23{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.072000px;}
.ls15{letter-spacing:-0.059760px;}
.ls85{letter-spacing:-0.054000px;}
.ls8d{letter-spacing:-0.040540px;}
.ls17{letter-spacing:0.000000px;}
.ls52{letter-spacing:0.012960px;}
.ls7e{letter-spacing:0.018000px;}
.ls84{letter-spacing:0.040540px;}
.ls89{letter-spacing:0.040567px;}
.ls76{letter-spacing:0.042954px;}
.ls6c{letter-spacing:0.043200px;}
.ls82{letter-spacing:0.054053px;}
.ls11{letter-spacing:0.059760px;}
.ls2a{letter-spacing:0.066240px;}
.ls7f{letter-spacing:0.072000px;}
.ls80{letter-spacing:0.081079px;}
.ls1a{letter-spacing:0.084240px;}
.ls74{letter-spacing:0.085892px;}
.ls22{letter-spacing:0.108000px;}
.ls6b{letter-spacing:0.115200px;}
.ls2d{letter-spacing:0.119520px;}
.ls56{letter-spacing:0.132480px;}
.ls28{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.179280px;}
.ls81{letter-spacing:0.180177px;}
.ls1d{letter-spacing:0.192960px;}
.ls6a{letter-spacing:0.198000px;}
.ls2b{letter-spacing:0.239040px;}
.ls1b{letter-spacing:0.252720px;}
.ls27{letter-spacing:0.270000px;}
.ls2{letter-spacing:0.298800px;}
.ls7b{letter-spacing:0.320400px;}
.ls25{letter-spacing:0.324000px;}
.ls8{letter-spacing:0.358560px;}
.ls1e{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.378000px;}
.ls47{letter-spacing:0.399600px;}
.ls39{letter-spacing:0.418320px;}
.ls72{letter-spacing:0.478080px;}
.ls66{letter-spacing:0.497304px;}
.ls7c{letter-spacing:0.532800px;}
.ls2f{letter-spacing:0.537840px;}
.ls83{letter-spacing:0.648637px;}
.ls48{letter-spacing:0.656139px;}
.ls3c{letter-spacing:0.657360px;}
.ls7a{letter-spacing:0.684000px;}
.ls79{letter-spacing:0.687139px;}
.ls50{letter-spacing:0.715788px;}
.ls1{letter-spacing:0.717120px;}
.ls8e{letter-spacing:0.770252px;}
.ls49{letter-spacing:0.775437px;}
.ls73{letter-spacing:0.776880px;}
.ls3e{letter-spacing:0.780480px;}
.ls4c{letter-spacing:0.896400px;}
.ls93{letter-spacing:1.015920px;}
.ls68{letter-spacing:1.135440px;}
.ls9{letter-spacing:1.254960px;}
.ls46{letter-spacing:1.319040px;}
.ls54{letter-spacing:1.404720px;}
.ls10{letter-spacing:1.972080px;}
.ls30{letter-spacing:2.091600px;}
.lsa{letter-spacing:2.689200px;}
.ls42{letter-spacing:2.748960px;}
.ls5b{letter-spacing:2.868480px;}
.ls38{letter-spacing:3.137760px;}
.ls5{letter-spacing:3.240000px;}
.ls3b{letter-spacing:3.406320px;}
.ls40{letter-spacing:3.466080px;}
.ls69{letter-spacing:3.525840px;}
.ls6e{letter-spacing:3.732480px;}
.ls37{letter-spacing:3.891600px;}
.ls3a{letter-spacing:4.123440px;}
.ls0{letter-spacing:4.840560px;}
.ls6{letter-spacing:5.557680px;}
.ls5c{letter-spacing:5.976000px;}
.ls3{letter-spacing:6.102000px;}
.lsd{letter-spacing:6.274800px;}
.ls12{letter-spacing:7.709040px;}
.ls62{letter-spacing:7.768800px;}
.ls5a{letter-spacing:7.828560px;}
.ls59{letter-spacing:7.888320px;}
.ls5d{letter-spacing:8.426160px;}
.ls60{letter-spacing:9.143280px;}
.ls61{letter-spacing:9.920160px;}
.ls2e{letter-spacing:10.637280px;}
.ls91{letter-spacing:10.756800px;}
.ls70{letter-spacing:11.294640px;}
.ls43{letter-spacing:11.354400px;}
.ls71{letter-spacing:11.414160px;}
.lsc{letter-spacing:12.071520px;}
.lsb{letter-spacing:12.728880px;}
.ls36{letter-spacing:13.387680px;}
.ls67{letter-spacing:13.505760px;}
.ls34{letter-spacing:13.679280px;}
.ls8f{letter-spacing:14.222880px;}
.ls5e{letter-spacing:14.940000px;}
.ls33{letter-spacing:15.084720px;}
.ls5f{letter-spacing:15.119280px;}
.ls35{letter-spacing:15.167520px;}
.ls14{letter-spacing:15.657120px;}
.ls13{letter-spacing:15.836400px;}
.ls41{letter-spacing:15.887520px;}
.ls57{letter-spacing:16.140960px;}
.ls32{letter-spacing:16.559280px;}
.lse{letter-spacing:17.091360px;}
.ls45{letter-spacing:17.279280px;}
.ls90{letter-spacing:17.808480px;}
.ls44{letter-spacing:18.291600px;}
.ls31{letter-spacing:18.320400px;}
.ls6d{letter-spacing:18.374400px;}
.ls7{letter-spacing:18.525600px;}
.ls6f{letter-spacing:18.607680px;}
.ls55{letter-spacing:18.684720px;}
.ls53{letter-spacing:18.852480px;}
.ls58{letter-spacing:19.959840px;}
.ls3d{letter-spacing:103.464720px;}
.ls3f{letter-spacing:183.412800px;}
.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;}
}
.ws87{word-spacing:-59.760000px;}
.wsc5{word-spacing:-14.705280px;}
.wsd{word-spacing:-14.639040px;}
.ws6e{word-spacing:-14.572800px;}
.ws6f{word-spacing:-14.307840px;}
.wsc{word-spacing:-14.241600px;}
.ws51{word-spacing:-14.043600px;}
.ws86{word-spacing:-13.924080px;}
.ws10{word-spacing:-13.505760px;}
.ws71{word-spacing:-13.446000px;}
.ws13{word-spacing:-13.386240px;}
.ws12{word-spacing:-13.326480px;}
.ws52{word-spacing:-13.266720px;}
.ws50{word-spacing:-13.206960px;}
.ws1{word-spacing:-13.147200px;}
.ws56{word-spacing:-13.122780px;}
.ws2{word-spacing:-13.087440px;}
.ws11{word-spacing:-13.027680px;}
.ws70{word-spacing:-12.967920px;}
.wse{word-spacing:-12.908160px;}
.wsf{word-spacing:-12.788640px;}
.ws58{word-spacing:-12.764886px;}
.ws55{word-spacing:-12.406992px;}
.ws9f{word-spacing:-12.150000px;}
.wsb{word-spacing:-11.988000px;}
.wsa{word-spacing:-11.880000px;}
.ws9e{word-spacing:-11.826000px;}
.ws6{word-spacing:-11.772000px;}
.ws9{word-spacing:-11.610000px;}
.ws53{word-spacing:-11.556000px;}
.ws9b{word-spacing:-11.502000px;}
.wsa0{word-spacing:-11.448000px;}
.ws3{word-spacing:-10.805760px;}
.ws4{word-spacing:-10.082160px;}
.ws5{word-spacing:-9.840960px;}
.ws89{word-spacing:-9.534056px;}
.ws8a{word-spacing:-9.492834px;}
.ws88{word-spacing:-9.448164px;}
.wsa1{word-spacing:-8.999791px;}
.wsa2{word-spacing:-8.965219px;}
.wsa8{word-spacing:-8.959252px;}
.wsa3{word-spacing:-8.918712px;}
.wsb7{word-spacing:-8.797093px;}
.wsa7{word-spacing:-8.576425px;}
.ws0{word-spacing:-8.359200px;}
.wsa6{word-spacing:-8.310618px;}
.wsa5{word-spacing:-8.107965px;}
.ws8{word-spacing:-7.848000px;}
.ws7{word-spacing:-7.668000px;}
.wsb6{word-spacing:-3.689104px;}
.wsc4{word-spacing:-2.999930px;}
.ws98{word-spacing:-1.675206px;}
.wsb2{word-spacing:-1.582097px;}
.wsb5{word-spacing:-1.499965px;}
.ws1d{word-spacing:-1.080000px;}
.ws9a{word-spacing:-0.987763px;}
.wsb4{word-spacing:-0.932411px;}
.ws9d{word-spacing:-0.836640px;}
.ws99{word-spacing:-0.773032px;}
.wsb3{word-spacing:-0.729713px;}
.ws4d{word-spacing:-0.717120px;}
.ws77{word-spacing:-0.657360px;}
.ws1e{word-spacing:-0.648000px;}
.ws38{word-spacing:-0.537840px;}
.ws85{word-spacing:-0.497304px;}
.ws8f{word-spacing:-0.478080px;}
.ws93{word-spacing:-0.418320px;}
.ws18{word-spacing:-0.358560px;}
.wsc2{word-spacing:-0.298800px;}
.ws19{word-spacing:-0.239040px;}
.ws6d{word-spacing:-0.187920px;}
.ws66{word-spacing:-0.179280px;}
.ws31{word-spacing:-0.162000px;}
.ws36{word-spacing:-0.119520px;}
.ws2a{word-spacing:-0.108000px;}
.ws97{word-spacing:-0.085892px;}
.ws1b{word-spacing:-0.084240px;}
.wsb1{word-spacing:-0.081079px;}
.wsc9{word-spacing:-0.059760px;}
.ws15{word-spacing:0.000000px;}
.ws22{word-spacing:0.054000px;}
.ws37{word-spacing:0.059760px;}
.ws1f{word-spacing:0.072000px;}
.ws1a{word-spacing:0.084240px;}
.wsab{word-spacing:0.108000px;}
.ws8c{word-spacing:0.119520px;}
.wsc6{word-spacing:0.132480px;}
.ws1c{word-spacing:0.144000px;}
.ws3f{word-spacing:0.179280px;}
.wsa9{word-spacing:0.202698px;}
.ws16{word-spacing:0.239040px;}
.ws23{word-spacing:0.270000px;}
.ws40{word-spacing:0.298800px;}
.wsc8{word-spacing:0.331200px;}
.ws17{word-spacing:0.358560px;}
.ws9c{word-spacing:0.378000px;}
.ws83{word-spacing:0.478080px;}
.ws61{word-spacing:0.486000px;}
.ws54{word-spacing:0.532080px;}
.ws81{word-spacing:0.537840px;}
.ws5b{word-spacing:0.540000px;}
.ws5a{word-spacing:0.594000px;}
.ws59{word-spacing:0.597600px;}
.ws30{word-spacing:0.648000px;}
.ws75{word-spacing:0.657360px;}
.wsaf{word-spacing:0.702000px;}
.ws6a{word-spacing:0.715788px;}
.ws5d{word-spacing:0.776880px;}
.wsb0{word-spacing:0.810000px;}
.ws3c{word-spacing:0.896400px;}
.ws91{word-spacing:1.195200px;}
.ws90{word-spacing:1.254960px;}
.ws33{word-spacing:1.314720px;}
.ws3d{word-spacing:1.613520px;}
.ws26{word-spacing:1.674000px;}
.wsc1{word-spacing:1.972080px;}
.ws4a{word-spacing:2.031840px;}
.ws27{word-spacing:2.052000px;}
.ws5c{word-spacing:2.211120px;}
.ws63{word-spacing:2.330640px;}
.ws65{word-spacing:2.450160px;}
.wsca{word-spacing:2.689200px;}
.ws42{word-spacing:2.748960px;}
.ws2d{word-spacing:2.808000px;}
.ws41{word-spacing:2.808720px;}
.ws78{word-spacing:2.928240px;}
.ws79{word-spacing:3.047760px;}
.ws92{word-spacing:3.167280px;}
.ws84{word-spacing:3.406320px;}
.ws6c{word-spacing:3.412080px;}
.ws3e{word-spacing:3.466080px;}
.ws2b{word-spacing:3.510000px;}
.ws94{word-spacing:3.585600px;}
.wsc0{word-spacing:3.645360px;}
.ws25{word-spacing:3.672000px;}
.ws60{word-spacing:3.764880px;}
.wsce{word-spacing:4.063680px;}
.ws6b{word-spacing:4.132080px;}
.ws5e{word-spacing:4.183200px;}
.ws28{word-spacing:4.212000px;}
.ws5f{word-spacing:4.362480px;}
.ws62{word-spacing:4.482000px;}
.ws14{word-spacing:4.900320px;}
.wscf{word-spacing:5.079600px;}
.ws76{word-spacing:5.199120px;}
.ws35{word-spacing:5.617440px;}
.ws3a{word-spacing:5.916240px;}
.ws20{word-spacing:5.994000px;}
.ws46{word-spacing:6.334560px;}
.ws21{word-spacing:6.372000px;}
.ws7a{word-spacing:6.633360px;}
.ws4b{word-spacing:7.768800px;}
.ws2c{word-spacing:7.830000px;}
.ws4c{word-spacing:7.948080px;}
.ws4e{word-spacing:8.067600px;}
.ws49{word-spacing:8.485920px;}
.ws7e{word-spacing:8.904240px;}
.ws7d{word-spacing:9.203040px;}
.wsbe{word-spacing:9.382320px;}
.ws7f{word-spacing:9.501840px;}
.ws32{word-spacing:9.612000px;}
.ws80{word-spacing:9.920160px;}
.ws64{word-spacing:10.218960px;}
.wsb8{word-spacing:10.577520px;}
.ws39{word-spacing:10.637280px;}
.ws82{word-spacing:10.816560px;}
.ws69{word-spacing:10.936080px;}
.ws95{word-spacing:11.055600px;}
.ws67{word-spacing:11.354400px;}
.ws68{word-spacing:11.533680px;}
.ws96{word-spacing:11.653200px;}
.ws45{word-spacing:11.712960px;}
.ws43{word-spacing:12.131280px;}
.ws44{word-spacing:12.310560px;}
.wscc{word-spacing:12.430080px;}
.wsc3{word-spacing:12.848400px;}
.wscd{word-spacing:13.505760px;}
.ws8d{word-spacing:13.565520px;}
.ws8e{word-spacing:13.804560px;}
.wsbb{word-spacing:13.864320px;}
.wsb9{word-spacing:14.222880px;}
.wsba{word-spacing:14.282640px;}
.ws7b{word-spacing:14.999760px;}
.ws7c{word-spacing:15.298560px;}
.ws4f{word-spacing:15.716880px;}
.wsac{word-spacing:16.314480px;}
.ws47{word-spacing:16.434000px;}
.ws2f{word-spacing:16.578000px;}
.ws48{word-spacing:16.732800px;}
.ws24{word-spacing:16.794000px;}
.wscb{word-spacing:17.151120px;}
.ws2e{word-spacing:17.172000px;}
.wsbc{word-spacing:17.449920px;}
.wsbd{word-spacing:17.868240px;}
.ws29{word-spacing:17.928000px;}
.ws3b{word-spacing:18.167040px;}
.ws34{word-spacing:19.302480px;}
.wsbf{word-spacing:19.601280px;}
.wsad{word-spacing:19.959840px;}
.ws74{word-spacing:20.019600px;}
.wsc7{word-spacing:20.736720px;}
.wsae{word-spacing:21.035520px;}
.ws73{word-spacing:47.277854px;}
.ws8b{word-spacing:172.703085px;}
.wsaa{word-spacing:205.905095px;}
.wsa4{word-spacing:271.423180px;}
.ws72{word-spacing:561.419095px;}
.ws57{word-spacing:846.240363px;}
._1b{margin-left:-401.962346px;}
._19{margin-left:-399.980666px;}
._15{margin-left:-398.536828px;}
._17{margin-left:-395.592788px;}
._1a{margin-left:-389.856446px;}
._18{margin-left:-386.430927px;}
._16{margin-left:-383.486888px;}
._13{margin-left:-307.467005px;}
._12{margin-left:-294.643002px;}
._f{margin-left:-13.725360px;}
._10{margin-left:-3.600000px;}
._3{margin-left:-1.553760px;}
._0{width:1.135440px;}
._2{width:2.182320px;}
._4{width:3.551760px;}
._1{width:5.109120px;}
._8{width:6.752880px;}
._9{width:7.888320px;}
._5{width:8.910000px;}
._6{width:10.039680px;}
._b{width:11.185920px;}
._c{width:14.123520px;}
._a{width:15.955920px;}
._7{width:17.688960px;}
._d{width:20.378160px;}
._14{width:193.946389px;}
._e{width:211.185398px;}
._11{width:850.862880px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(166,166,166);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:32.635800px;}
.fs6{font-size:36.000000px;}
.fs14{font-size:36.035400px;}
.fs11{font-size:38.174400px;}
.fs1{font-size:38.880000px;}
.fsa{font-size:39.766200px;}
.fs12{font-size:40.539600px;}
.fs13{font-size:40.566600px;}
.fs8{font-size:41.760000px;}
.fsf{font-size:42.946200px;}
.fs10{font-size:42.954000px;}
.fs4{font-size:48.240000px;}
.fsb{font-size:49.730400px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:59.649000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fse{font-size:82.365600px;}
.fs2{font-size:84.240000px;}
.fsd{font-size:91.690200px;}
.y0{bottom:0.000000px;}
.y16c{bottom:3.103050px;}
.y13c{bottom:3.103200px;}
.y120{bottom:3.103350px;}
.yee{bottom:3.240000px;}
.y12e{bottom:4.492800px;}
.yec{bottom:4.500000px;}
.yfb{bottom:4.680000px;}
.ybd{bottom:4.759650px;}
.y16b{bottom:5.846550px;}
.y12d{bottom:5.847000px;}
.y11f{bottom:5.970600px;}
.y10e{bottom:5.971200px;}
.y17f{bottom:6.096750px;}
.y13b{bottom:6.097500px;}
.ybc{bottom:6.458250px;}
.y130{bottom:7.036350px;}
.yc0{bottom:7.057800px;}
.ybf{bottom:7.057950px;}
.y48{bottom:7.200000px;}
.y66{bottom:7.263600px;}
.y116{bottom:7.279200px;}
.y4c{bottom:7.380000px;}
.yc7{bottom:7.740000px;}
.yc5{bottom:7.920000px;}
.y114{bottom:8.342250px;}
.y122{bottom:9.790800px;}
.y123{bottom:9.790950px;}
.y10f{bottom:10.498800px;}
.y68{bottom:12.240000px;}
.y40{bottom:12.420000px;}
.y17c{bottom:12.475800px;}
.y17d{bottom:12.475950px;}
.y3f{bottom:12.600000px;}
.y169{bottom:14.477550px;}
.y13e{bottom:15.295500px;}
.y61{bottom:16.584450px;}
.y139{bottom:16.980150px;}
.ye0{bottom:17.100000px;}
.y11c{bottom:17.480700px;}
.y11d{bottom:17.480850px;}
.yfe{bottom:18.000000px;}
.yf0{bottom:18.180000px;}
.y12b{bottom:19.983000px;}
.yba{bottom:21.169350px;}
.y181{bottom:21.301800px;}
.y16f{bottom:21.425550px;}
.y16e{bottom:21.425700px;}
.y111{bottom:21.550800px;}
.y112{bottom:21.550950px;}
.y10b{bottom:25.989000px;}
.y10c{bottom:25.989150px;}
.ye3{bottom:26.640000px;}
.y173{bottom:27.814050px;}
.y163{bottom:29.815800px;}
.y135{bottom:32.318250px;}
.y119{bottom:32.818950px;}
.ydf{bottom:34.740000px;}
.y129{bottom:35.321100px;}
.yb3{bottom:37.417950px;}
.y108{bottom:41.327250px;}
.y182{bottom:42.487200px;}
.y184{bottom:42.861600px;}
.y172{bottom:44.429700px;}
.y170{bottom:44.927850px;}
.y132{bottom:49.917750px;}
.y134{bottom:50.017050px;}
.y140{bottom:50.056500px;}
.y142{bottom:50.695200px;}
.y125{bottom:51.495600px;}
.yc2{bottom:51.969450px;}
.y127{bottom:53.828850px;}
.y174{bottom:55.012500px;}
.y118{bottom:58.503900px;}
.y64{bottom:58.524600px;}
.y63{bottom:63.184650px;}
.y164{bottom:64.829400px;}
.yb4{bottom:75.570450px;}
.y175{bottom:82.211100px;}
.y8a{bottom:92.335860px;}
.y162{bottom:98.460000px;}
.y165{bottom:99.842850px;}
.y11a{bottom:101.844900px;}
.y136{bottom:102.345300px;}
.y106{bottom:102.938580px;}
.y176{bottom:109.409700px;}
.y89{bottom:109.980000px;}
.yb5{bottom:113.722800px;}
.y35{bottom:114.404220px;}
.y105{bottom:120.582720px;}
.y1b1{bottom:123.609060px;}
.y65{bottom:123.766050px;}
.y62{bottom:123.773703px;}
.y5e{bottom:126.180000px;}
.y161{bottom:126.287280px;}
.y8c{bottom:128.287200px;}
.y94{bottom:128.416350px;}
.y8e{bottom:128.619450px;}
.y34{bottom:131.869080px;}
.y166{bottom:134.856300px;}
.y177{bottom:136.608150px;}
.y12a{bottom:137.608950px;}
.y104{bottom:138.226860px;}
.y5d{bottom:140.400000px;}
.y109{bottom:140.611950px;}
.y88{bottom:142.204500px;}
.y33{bottom:149.513220px;}
.y1b0{bottom:150.247080px;}
.yb6{bottom:151.875000px;}
.y160{bottom:152.925300px;}
.y103{bottom:155.691720px;}
.y96{bottom:158.009250px;}
.y95{bottom:160.728900px;}
.y97{bottom:161.311800px;}
.y178{bottom:163.806600px;}
.y60{bottom:165.706950px;}
.y32{bottom:167.157360px;}
.y167{bottom:169.869750px;}
.y87{bottom:169.920000px;}
.y8b{bottom:170.001000px;}
.y11b{bottom:170.871000px;}
.y137{bottom:172.372200px;}
.y102{bottom:173.335860px;}
.y1af{bottom:176.885100px;}
.y5c{bottom:179.437860px;}
.y15f{bottom:179.563320px;}
.y91{bottom:183.809250px;}
.y90{bottom:186.524225px;}
.y8d{bottom:189.247200px;}
.yb7{bottom:190.027350px;}
.y101{bottom:190.980000px;}
.y179{bottom:191.005350px;}
.y92{bottom:191.033250px;}
.y31{bottom:193.616100px;}
.y1ae{bottom:194.349960px;}
.y5b{bottom:196.902720px;}
.y168{bottom:204.883350px;}
.y15e{bottom:206.022060px;}
.y30{bottom:211.260240px;}
.y5a{bottom:214.546860px;}
.y100{bottom:217.440000px;}
.y17a{bottom:218.203650px;}
.y1ad{bottom:220.987980px;}
.y15d{bottom:223.666200px;}
.yb8{bottom:228.179700px;}
.y2f{bottom:228.904380px;}
.y8f{bottom:229.056150px;}
.y59{bottom:232.191000px;}
.y1ac{bottom:238.632120px;}
.y10a{bottom:239.896800px;}
.y15c{bottom:241.310340px;}
.y138{bottom:242.399250px;}
.yff{bottom:244.080000px;}
.y17b{bottom:245.402250px;}
.y2e{bottom:246.548520px;}
.yb1{bottom:247.128840px;}
.y58{bottom:249.655860px;}
.y171{bottom:251.599650px;}
.y126{bottom:251.640900px;}
.y133{bottom:251.642100px;}
.y141{bottom:252.807750px;}
.y93{bottom:253.585050px;}
.y183{bottom:255.019350px;}
.y1ab{bottom:256.276260px;}
.yfd{bottom:258.300000px;}
.y2d{bottom:264.013380px;}
.yb9{bottom:266.331900px;}
.y57{bottom:267.300000px;}
.y15b{bottom:267.769080px;}
.yea{bottom:273.055140px;}
.yb0{bottom:273.766860px;}
.y56{bottom:281.520000px;}
.y2c{bottom:281.657520px;}
.y1aa{bottom:282.735000px;}
.y15a{bottom:285.413220px;}
.yfc{bottom:289.080000px;}
.ye9{bottom:290.520000px;}
.yaf{bottom:291.411000px;}
.y1a9{bottom:300.379140px;}
.y159{bottom:303.057360px;}
.yfa{bottom:304.920000px;}
.y2b{bottom:308.295540px;}
.yae{bottom:308.875860px;}
.y131{bottom:309.502500px;}
.y13f{bottom:309.504000px;}
.y128{bottom:309.874500px;}
.ye8{bottom:317.160000px;}
.y55{bottom:320.393700px;}
.y158{bottom:320.522220px;}
.y2a{bottom:325.760400px;}
.yad{bottom:326.520000px;}
.y1a8{bottom:327.017160px;}
.y54{bottom:338.037840px;}
.yac{bottom:340.740000px;}
.y13d{bottom:343.282500px;}
.y29{bottom:343.404540px;}
.ye7{bottom:343.797120px;}
.y1a7{bottom:344.482020px;}
.y157{bottom:347.160240px;}
.y12f{bottom:353.043000px;}
.y53{bottom:355.681980px;}
.ye6{bottom:361.261980px;}
.y156{bottom:364.804380px;}
.yab{bottom:367.380000px;}
.y28{bottom:370.042560px;}
.y1a6{bottom:371.120040px;}
.y52{bottom:382.320000px;}
.y155{bottom:382.448520px;}
.y27{bottom:387.507420px;}
.ye5{bottom:387.900000px;}
.y1a5{bottom:388.764180px;}
.y154{bottom:399.913380px;}
.ye2{bottom:404.460000px;}
.y26{bottom:405.151560px;}
.yaa{bottom:406.248840px;}
.y51{bottom:406.260000px;}
.y1a4{bottom:415.222920px;}
.y153{bottom:417.557520px;}
.y25{bottom:422.795700px;}
.y13a{bottom:423.610500px;}
.ya9{bottom:423.892980px;}
.y12c{bottom:426.613500px;}
.y50{bottom:432.540000px;}
.y1a3{bottom:432.867060px;}
.ye4{bottom:433.260000px;}
.y24{bottom:440.439840px;}
.y152{bottom:444.195540px;}
.ya8{bottom:450.531000px;}
.y23{bottom:457.904700px;}
.y4f{bottom:458.640000px;}
.y1a2{bottom:459.505080px;}
.yde{bottom:460.620000px;}
.y151{bottom:461.660400px;}
.y86{bottom:464.322240px;}
.ya7{bottom:467.995860px;}
.y150{bottom:479.304540px;}
.y85{bottom:481.966380px;}
.y22{bottom:484.542720px;}
.y4e{bottom:484.920000px;}
.ya6{bottom:485.640000px;}
.y1a1{bottom:486.143100px;}
.ye1{bottom:487.980000px;}
.y84{bottom:499.610520px;}
.y21{bottom:502.186860px;}
.y1a0{bottom:503.607960px;}
.y14f{bottom:505.942560px;}
.y4d{bottom:511.200000px;}
.ydd{bottom:516.780000px;}
.y83{bottom:517.075380px;}
.ya5{bottom:517.855500px;}
.y20{bottom:519.651720px;}
.y14e{bottom:523.407420px;}
.y19f{bottom:530.245980px;}
.y82{bottom:534.719520px;}
.y1f{bottom:537.295860px;}
.y4b{bottom:537.480000px;}
.y14d{bottom:541.051560px;}
.yc1{bottom:545.691000px;}
.ya4{bottom:545.760000px;}
.yb2{bottom:546.085500px;}
.y19e{bottom:547.890120px;}
.ydc{bottom:548.820000px;}
.y1e{bottom:554.940000px;}
.y14c{bottom:558.695700px;}
.y81{bottom:561.357540px;}
.y4a{bottom:563.760000px;}
.y19d{bottom:565.354980px;}
.y1d{bottom:572.760000px;}
.ydb{bottom:573.835140px;}
.y80{bottom:578.822400px;}
.y14b{bottom:585.333720px;}
.ybe{bottom:589.827000px;}
.y49{bottom:590.040000px;}
.yda{bottom:591.300000px;}
.y19c{bottom:591.993000px;}
.yf9{bottom:592.915140px;}
.y7f{bottom:596.466540px;}
.y1c{bottom:600.843240px;}
.y14a{bottom:602.798580px;}
.y19b{bottom:609.637140px;}
.yf8{bottom:610.380000px;}
.y7e{bottom:614.110680px;}
.y47{bottom:617.760000px;}
.yd9{bottom:618.296400px;}
.y149{bottom:620.442720px;}
.y46{bottom:624.960000px;}
.y19a{bottom:627.102000px;}
.y1b{bottom:627.481260px;}
.yf7{bottom:637.020000px;}
.y148{bottom:638.086860px;}
.y7d{bottom:640.569420px;}
.yd8{bottom:642.060000px;}
.y45{bottom:648.724500px;}
.y199{bottom:653.740020px;}
.y1a{bottom:653.940000px;}
.y147{bottom:655.551720px;}
.y7c{bottom:658.213560px;}
.yf6{bottom:663.650100px;}
.y44{bottom:664.560000px;}
.yd7{bottom:670.140000px;}
.y198{bottom:671.384160px;}
.y146{bottom:673.195860px;}
.ybb{bottom:675.322500px;}
.y7b{bottom:675.857700px;}
.y19{bottom:680.440500px;}
.yd6{bottom:686.520000px;}
.y43{bottom:689.391720px;}
.yf5{bottom:690.288120px;}
.y145{bottom:690.840000px;}
.y7a{bottom:693.501840px;}
.y18{bottom:696.276000px;}
.y197{bottom:698.022180px;}
.y42{bottom:707.035860px;}
.yf4{bottom:707.752980px;}
.yd5{bottom:709.380000px;}
.y79{bottom:710.966700px;}
.y196{bottom:715.487040px;}
.y144{bottom:717.654240px;}
.y17{bottom:721.116000px;}
.y41{bottom:724.680000px;}
.yf3{bottom:725.397120px;}
.y78{bottom:728.610840px;}
.yd4{bottom:732.240000px;}
.y16{bottom:736.951500px;}
.y3e{bottom:738.900000px;}
.y143{bottom:741.600000px;}
.y195{bottom:742.125060px;}
.y77{bottom:746.254980px;}
.yf2{bottom:752.035140px;}
.y15{bottom:752.787000px;}
.yd3{bottom:754.740000px;}
.y194{bottom:759.769200px;}
.y76{bottom:763.719840px;}
.y14{bottom:768.622500px;}
.yf1{bottom:769.500000px;}
.y193{bottom:777.234060px;}
.yd2{bottom:777.240000px;}
.y75{bottom:781.363980px;}
.yef{bottom:783.720000px;}
.y13{bottom:784.458000px;}
.y3d{bottom:786.771720px;}
.yd1{bottom:800.100000px;}
.y12{bottom:800.293500px;}
.y192{bottom:803.872080px;}
.y3c{bottom:804.415860px;}
.y74{bottom:808.002000px;}
.yed{bottom:814.680000px;}
.y11{bottom:816.129000px;}
.y191{bottom:821.516220px;}
.y3b{bottom:822.060000px;}
.yd0{bottom:822.780000px;}
.y73{bottom:825.466860px;}
.yeb{bottom:830.520000px;}
.y10{bottom:831.964500px;}
.y117{bottom:834.975000px;}
.y124{bottom:834.976500px;}
.y107{bottom:835.347000px;}
.y72{bottom:843.111000px;}
.ya3{bottom:845.056620px;}
.ycf{bottom:845.280000px;}
.yf{bottom:847.624500px;}
.y190{bottom:847.974960px;}
.y3a{bottom:854.280000px;}
.y180{bottom:855.241500px;}
.y16d{bottom:857.119500px;}
.y71{bottom:860.755140px;}
.ya2{bottom:862.700760px;}
.ye{bottom:863.460000px;}
.y18f{bottom:865.619100px;}
.yce{bottom:867.780000px;}
.y110{bottom:871.008000px;}
.y5f{bottom:876.042000px;}
.y39{bottom:876.057120px;}
.y121{bottom:877.012500px;}
.y70{bottom:878.220000px;}
.ya1{bottom:880.344900px;}
.y113{bottom:884.145000px;}
.yd{bottom:888.481980px;}
.ycd{bottom:890.640000px;}
.y18e{bottom:892.257120px;}
.ya0{bottom:897.809760px;}
.y6f{bottom:905.210640px;}
.y18d{bottom:909.721980px;}
.ycc{bottom:913.500000px;}
.yc{bottom:915.120000px;}
.y9f{bottom:915.453900px;}
.y6e{bottom:928.974240px;}
.y9e{bottom:933.098040px;}
.ycb{bottom:935.820000px;}
.y18c{bottom:936.360000px;}
.yb{bottom:944.640000px;}
.y16a{bottom:946.831500px;}
.y11e{bottom:951.712500px;}
.y10d{bottom:952.462500px;}
.y6d{bottom:952.920000px;}
.y17e{bottom:957.342000px;}
.yca{bottom:958.320000px;}
.y18b{bottom:958.860000px;}
.y9d{bottom:959.736060px;}
.ya{bottom:966.424500px;}
.y6c{bottom:973.080000px;}
.y9c{bottom:977.200920px;}
.yc9{bottom:981.180000px;}
.y9{bottom:985.320000px;}
.y18a{bottom:986.752980px;}
.y9b{bottom:994.845060px;}
.yc8{bottom:1004.040000px;}
.y8{bottom:1007.100000px;}
.y6b{bottom:1011.961980px;}
.y9a{bottom:1012.489200px;}
.y189{bottom:1013.391000px;}
.yc6{bottom:1026.540000px;}
.y188{bottom:1031.035140px;}
.y7{bottom:1032.660000px;}
.y6a{bottom:1038.600000px;}
.y99{bottom:1038.947940px;}
.y187{bottom:1048.500000px;}
.yc4{bottom:1050.840000px;}
.y69{bottom:1052.820000px;}
.y98{bottom:1056.592080px;}
.y6{bottom:1063.627020px;}
.y186{bottom:1071.000720px;}
.y38{bottom:1074.236220px;}
.y115{bottom:1079.337000px;}
.y67{bottom:1079.460000px;}
.y5{bottom:1088.098740px;}
.y185{bottom:1090.260000px;}
.y37{bottom:1091.701080px;}
.yc3{bottom:1093.140000px;}
.y4{bottom:1112.760000px;}
.y36{bottom:1118.339100px;}
.y3{bottom:1144.977120px;}
.y2{bottom:1171.435860px;}
.y1{bottom:1189.080000px;}
.h48{height:13.137000px;}
.h3e{height:13.138500px;}
.h43{height:14.640000px;}
.h21{height:15.508500px;}
.h2e{height:15.840000px;}
.h31{height:15.841500px;}
.h44{height:16.516500px;}
.h23{height:17.098500px;}
.h3b{height:18.768000px;}
.h3f{height:19.144500px;}
.h39{height:19.894500px;}
.h37{height:20.646000px;}
.h29{height:21.958500px;}
.h28{height:21.960000px;}
.h26{height:22.140000px;}
.h46{height:24.775500px;}
.hd{height:25.380000px;}
.hf{height:25.560000px;}
.he{height:25.561500px;}
.h15{height:26.460000px;}
.h11{height:26.640000px;}
.h10{height:26.641500px;}
.h19{height:28.396971px;}
.h32{height:30.780000px;}
.h4a{height:30.781500px;}
.h2f{height:30.961500px;}
.h41{height:31.355021px;}
.h3d{height:31.461221px;}
.h25{height:33.216202px;}
.h7{height:34.746328px;}
.h34{height:35.274203px;}
.h38{height:35.590918px;}
.h36{height:35.614622px;}
.h49{height:35.615222px;}
.hb{height:35.640000px;}
.h1e{height:37.368227px;}
.h22{height:37.703744px;}
.h20{height:37.710592px;}
.h17{height:41.765766px;}
.h3a{height:42.281536px;}
.h27{height:43.040039px;}
.h18{height:43.271276px;}
.ha{height:45.351562px;}
.h6{height:46.986328px;}
.h8{height:47.408203px;}
.h14{height:51.901620px;}
.h3{height:51.998203px;}
.h1c{height:52.042843px;}
.h2{height:52.465078px;}
.h2a{height:53.820000px;}
.h2c{height:55.260000px;}
.h9{height:58.154062px;}
.h42{height:58.933500px;}
.h35{height:59.308500px;}
.h5{height:62.648438px;}
.h1f{height:62.829000px;}
.h1b{height:67.444879px;}
.h4{height:73.956797px;}
.h1a{height:79.781219px;}
.h13{height:118.919369px;}
.h2b{height:119.140664px;}
.hc{height:145.460742px;}
.h12{height:185.775000px;}
.h33{height:270.264000px;}
.h40{height:270.943500px;}
.h3c{height:270.945000px;}
.h47{height:270.996000px;}
.h45{height:270.997500px;}
.h2d{height:275.400000px;}
.h30{height:275.580000px;}
.h16{height:281.979000px;}
.h1d{height:286.308000px;}
.h24{height:287.100000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w26{width:17.653500px;}
.w35{width:43.195500px;}
.w19{width:44.280000px;}
.w2e{width:45.073500px;}
.w25{width:45.075000px;}
.w27{width:48.079500px;}
.w24{width:51.459000px;}
.wa{width:53.100000px;}
.w14{width:54.487500px;}
.w13{width:54.489000px;}
.w2b{width:54.840000px;}
.wc{width:57.058500px;}
.w8{width:57.060000px;}
.w33{width:57.844500px;}
.we{width:63.720000px;}
.w17{width:66.778500px;}
.w31{width:72.117000px;}
.w22{width:72.118500px;}
.w6{width:72.360000px;}
.w16{width:74.701500px;}
.w11{width:76.363500px;}
.w18{width:87.840000px;}
.w5{width:88.920000px;}
.w3{width:89.460000px;}
.w2a{width:98.035500px;}
.w23{width:98.410500px;}
.w34{width:98.412000px;}
.w12{width:103.806000px;}
.w4{width:106.380000px;}
.w1c{width:118.800000px;}
.w1b{width:158.760000px;}
.w1d{width:201.960000px;}
.w1a{width:273.600000px;}
.w2d{width:345.525000px;}
.w30{width:345.600000px;}
.w2f{width:345.901500px;}
.w32{width:345.975000px;}
.w21{width:347.775000px;}
.w29{width:347.850000px;}
.w1e{width:348.120000px;}
.w28{width:348.150000px;}
.w2c{width:348.225000px;}
.w1f{width:348.300000px;}
.w10{width:381.816000px;}
.w15{width:382.618500px;}
.wf{width:382.650000px;}
.wb{width:425.130000px;}
.w2{width:599.040000px;}
.w7{width:633.060000px;}
.w9{width:635.400000px;}
.wd{width:646.020000px;}
.w20{width:696.420000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3c{left:6.264450px;}
.x1c{left:8.100000px;}
.x20{left:9.410850px;}
.x3a{left:10.714950px;}
.x46{left:11.880000px;}
.x6c{left:15.414600px;}
.x2e{left:16.767300px;}
.x62{left:17.919900px;}
.x15{left:19.080000px;}
.x47{left:20.880000px;}
.x18{left:22.140000px;}
.x4d{left:23.220000px;}
.x38{left:24.696450px;}
.x12{left:30.240000px;}
.x4f{left:33.840000px;}
.x19{left:36.540000px;}
.x16{left:40.680000px;}
.x50{left:41.760000px;}
.x4a{left:50.040000px;}
.xd{left:53.100000px;}
.x4b{left:54.900000px;}
.x33{left:57.557100px;}
.x32{left:61.825650px;}
.x59{left:65.376750px;}
.x63{left:67.586100px;}
.x54{left:76.860000px;}
.x56{left:77.940000px;}
.x2d{left:80.865450px;}
.x4e{left:83.880000px;}
.x23{left:88.891350px;}
.xa{left:98.280000px;}
.x45{left:100.980000px;}
.x70{left:104.767650px;}
.x7{left:106.380000px;}
.x48{left:107.460000px;}
.x6b{left:108.976500px;}
.x5a{left:110.856000px;}
.x30{left:116.905350px;}
.x68{left:117.918300px;}
.x3f{left:120.549450px;}
.x75{left:124.007550px;}
.x22{left:126.299971px;}
.x31{left:128.044650px;}
.x34{left:129.226050px;}
.x7e{left:131.846550px;}
.x35{left:146.463300px;}
.x78{left:148.624500px;}
.x6f{left:150.201600px;}
.x60{left:151.974450px;}
.x69{left:153.040950px;}
.x53{left:165.600000px;}
.x1{left:170.100000px;}
.x3{left:177.484320px;}
.x2{left:180.180000px;}
.x21{left:191.753690px;}
.x6d{left:200.626500px;}
.x7d{left:203.620650px;}
.x49{left:206.640000px;}
.x2f{left:210.797100px;}
.x40{left:213.480000px;}
.x9{left:214.920000px;}
.x24{left:219.800100px;}
.x76{left:223.918500px;}
.x74{left:226.533750px;}
.xe{left:232.560000px;}
.x1f{left:233.887500px;}
.x6a{left:235.843050px;}
.x58{left:242.222850px;}
.x5b{left:243.450000px;}
.x28{left:245.880000px;}
.x5c{left:249.084000px;}
.xb{left:252.900000px;}
.x2c{left:255.150000px;}
.x5f{left:256.221000px;}
.xf{left:259.020000px;}
.x1d{left:268.560000px;}
.x27{left:270.180000px;}
.x1a{left:277.200000px;}
.x5e{left:285.142500px;}
.x5{left:289.260000px;}
.x37{left:292.315500px;}
.x25{left:294.605250px;}
.x6e{left:298.285500px;}
.x77{left:299.791500px;}
.x41{left:309.600000px;}
.x14{left:312.660000px;}
.x26{left:317.981850px;}
.x4{left:323.998740px;}
.x10{left:327.960000px;}
.x57{left:333.276600px;}
.x5d{left:338.856000px;}
.x36{left:356.098650px;}
.x39{left:361.907850px;}
.x2b{left:364.500000px;}
.x51{left:369.360000px;}
.x55{left:371.700000px;}
.x42{left:384.300000px;}
.x11{left:401.580000px;}
.x3b{left:406.285500px;}
.x6{left:409.140000px;}
.x3d{left:432.933000px;}
.x52{left:446.400000px;}
.x43{left:451.080000px;}
.x61{left:454.950000px;}
.x79{left:456.076500px;}
.x71{left:457.200000px;}
.x64{left:459.082500px;}
.x4c{left:484.200000px;}
.x13{left:490.500000px;}
.x3e{left:500.943000px;}
.x17{left:507.960000px;}
.x44{left:538.920000px;}
.x66{left:564.253500px;}
.x72{left:571.012500px;}
.x7b{left:577.024500px;}
.x7a{left:591.673500px;}
.x65{left:593.176500px;}
.x2a{left:637.740000px;}
.x7c{left:649.143000px;}
.x8{left:658.984140px;}
.x73{left:672.427500px;}
.x67{left:680.695500px;}
.xc{left:697.320000px;}
.x1b{left:731.340000px;}
.x1e{left:733.680000px;}
.x29{left:744.300000px;}
@media print{
.v3{vertical-align:-10.880000pt;}
.v7{vertical-align:-5.080320pt;}
.v8{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.920000pt;}
.v9{vertical-align:3.834667pt;}
.v4{vertical-align:10.864000pt;}
.v1{vertical-align:13.440000pt;}
.v2{vertical-align:16.000000pt;}
.v5{vertical-align:19.840000pt;}
.ls75{letter-spacing:-1.259984pt;}
.ls88{letter-spacing:-1.189954pt;}
.ls86{letter-spacing:-0.956160pt;}
.ls21{letter-spacing:-0.686080pt;}
.ls77{letter-spacing:-0.648965pt;}
.ls4f{letter-spacing:-0.636256pt;}
.ls8a{letter-spacing:-0.612598pt;}
.ls64{letter-spacing:-0.584320pt;}
.ls8c{letter-spacing:-0.540528pt;}
.ls1f{letter-spacing:-0.471680pt;}
.ls78{letter-spacing:-0.458093pt;}
.ls8b{letter-spacing:-0.432422pt;}
.ls65{letter-spacing:-0.424960pt;}
.ls87{letter-spacing:-0.384000pt;}
.ls7d{letter-spacing:-0.336000pt;}
.ls19{letter-spacing:-0.318720pt;}
.ls51{letter-spacing:-0.318128pt;}
.ls29{letter-spacing:-0.294400pt;}
.ls4d{letter-spacing:-0.288000pt;}
.ls4a{letter-spacing:-0.265600pt;}
.ls24{letter-spacing:-0.240000pt;}
.ls63{letter-spacing:-0.235520pt;}
.ls26{letter-spacing:-0.224000pt;}
.ls18{letter-spacing:-0.212480pt;}
.ls4b{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.172800pt;}
.ls4e{letter-spacing:-0.159360pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls92{letter-spacing:-0.108106pt;}
.ls2c{letter-spacing:-0.106240pt;}
.ls23{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.064000pt;}
.ls15{letter-spacing:-0.053120pt;}
.ls85{letter-spacing:-0.048000pt;}
.ls8d{letter-spacing:-0.036035pt;}
.ls17{letter-spacing:0.000000pt;}
.ls52{letter-spacing:0.011520pt;}
.ls7e{letter-spacing:0.016000pt;}
.ls84{letter-spacing:0.036035pt;}
.ls89{letter-spacing:0.036059pt;}
.ls76{letter-spacing:0.038181pt;}
.ls6c{letter-spacing:0.038400pt;}
.ls82{letter-spacing:0.048047pt;}
.ls11{letter-spacing:0.053120pt;}
.ls2a{letter-spacing:0.058880pt;}
.ls7f{letter-spacing:0.064000pt;}
.ls80{letter-spacing:0.072070pt;}
.ls1a{letter-spacing:0.074880pt;}
.ls74{letter-spacing:0.076349pt;}
.ls22{letter-spacing:0.096000pt;}
.ls6b{letter-spacing:0.102400pt;}
.ls2d{letter-spacing:0.106240pt;}
.ls56{letter-spacing:0.117760pt;}
.ls28{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.159360pt;}
.ls81{letter-spacing:0.160157pt;}
.ls1d{letter-spacing:0.171520pt;}
.ls6a{letter-spacing:0.176000pt;}
.ls2b{letter-spacing:0.212480pt;}
.ls1b{letter-spacing:0.224640pt;}
.ls27{letter-spacing:0.240000pt;}
.ls2{letter-spacing:0.265600pt;}
.ls7b{letter-spacing:0.284800pt;}
.ls25{letter-spacing:0.288000pt;}
.ls8{letter-spacing:0.318720pt;}
.ls1e{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.336000pt;}
.ls47{letter-spacing:0.355200pt;}
.ls39{letter-spacing:0.371840pt;}
.ls72{letter-spacing:0.424960pt;}
.ls66{letter-spacing:0.442048pt;}
.ls7c{letter-spacing:0.473600pt;}
.ls2f{letter-spacing:0.478080pt;}
.ls83{letter-spacing:0.576566pt;}
.ls48{letter-spacing:0.583235pt;}
.ls3c{letter-spacing:0.584320pt;}
.ls7a{letter-spacing:0.608000pt;}
.ls79{letter-spacing:0.610790pt;}
.ls50{letter-spacing:0.636256pt;}
.ls1{letter-spacing:0.637440pt;}
.ls8e{letter-spacing:0.684669pt;}
.ls49{letter-spacing:0.689277pt;}
.ls73{letter-spacing:0.690560pt;}
.ls3e{letter-spacing:0.693760pt;}
.ls4c{letter-spacing:0.796800pt;}
.ls93{letter-spacing:0.903040pt;}
.ls68{letter-spacing:1.009280pt;}
.ls9{letter-spacing:1.115520pt;}
.ls46{letter-spacing:1.172480pt;}
.ls54{letter-spacing:1.248640pt;}
.ls10{letter-spacing:1.752960pt;}
.ls30{letter-spacing:1.859200pt;}
.lsa{letter-spacing:2.390400pt;}
.ls42{letter-spacing:2.443520pt;}
.ls5b{letter-spacing:2.549760pt;}
.ls38{letter-spacing:2.789120pt;}
.ls5{letter-spacing:2.880000pt;}
.ls3b{letter-spacing:3.027840pt;}
.ls40{letter-spacing:3.080960pt;}
.ls69{letter-spacing:3.134080pt;}
.ls6e{letter-spacing:3.317760pt;}
.ls37{letter-spacing:3.459200pt;}
.ls3a{letter-spacing:3.665280pt;}
.ls0{letter-spacing:4.302720pt;}
.ls6{letter-spacing:4.940160pt;}
.ls5c{letter-spacing:5.312000pt;}
.ls3{letter-spacing:5.424000pt;}
.lsd{letter-spacing:5.577600pt;}
.ls12{letter-spacing:6.852480pt;}
.ls62{letter-spacing:6.905600pt;}
.ls5a{letter-spacing:6.958720pt;}
.ls59{letter-spacing:7.011840pt;}
.ls5d{letter-spacing:7.489920pt;}
.ls60{letter-spacing:8.127360pt;}
.ls61{letter-spacing:8.817920pt;}
.ls2e{letter-spacing:9.455360pt;}
.ls91{letter-spacing:9.561600pt;}
.ls70{letter-spacing:10.039680pt;}
.ls43{letter-spacing:10.092800pt;}
.ls71{letter-spacing:10.145920pt;}
.lsc{letter-spacing:10.730240pt;}
.lsb{letter-spacing:11.314560pt;}
.ls36{letter-spacing:11.900160pt;}
.ls67{letter-spacing:12.005120pt;}
.ls34{letter-spacing:12.159360pt;}
.ls8f{letter-spacing:12.642560pt;}
.ls5e{letter-spacing:13.280000pt;}
.ls33{letter-spacing:13.408640pt;}
.ls5f{letter-spacing:13.439360pt;}
.ls35{letter-spacing:13.482240pt;}
.ls14{letter-spacing:13.917440pt;}
.ls13{letter-spacing:14.076800pt;}
.ls41{letter-spacing:14.122240pt;}
.ls57{letter-spacing:14.347520pt;}
.ls32{letter-spacing:14.719360pt;}
.lse{letter-spacing:15.192320pt;}
.ls45{letter-spacing:15.359360pt;}
.ls90{letter-spacing:15.829760pt;}
.ls44{letter-spacing:16.259200pt;}
.ls31{letter-spacing:16.284800pt;}
.ls6d{letter-spacing:16.332800pt;}
.ls7{letter-spacing:16.467200pt;}
.ls6f{letter-spacing:16.540160pt;}
.ls55{letter-spacing:16.608640pt;}
.ls53{letter-spacing:16.757760pt;}
.ls58{letter-spacing:17.742080pt;}
.ls3d{letter-spacing:91.968640pt;}
.ls3f{letter-spacing:163.033600pt;}
.ws87{word-spacing:-53.120000pt;}
.wsc5{word-spacing:-13.071360pt;}
.wsd{word-spacing:-13.012480pt;}
.ws6e{word-spacing:-12.953600pt;}
.ws6f{word-spacing:-12.718080pt;}
.wsc{word-spacing:-12.659200pt;}
.ws51{word-spacing:-12.483200pt;}
.ws86{word-spacing:-12.376960pt;}
.ws10{word-spacing:-12.005120pt;}
.ws71{word-spacing:-11.952000pt;}
.ws13{word-spacing:-11.898880pt;}
.ws12{word-spacing:-11.845760pt;}
.ws52{word-spacing:-11.792640pt;}
.ws50{word-spacing:-11.739520pt;}
.ws1{word-spacing:-11.686400pt;}
.ws56{word-spacing:-11.664693pt;}
.ws2{word-spacing:-11.633280pt;}
.ws11{word-spacing:-11.580160pt;}
.ws70{word-spacing:-11.527040pt;}
.wse{word-spacing:-11.473920pt;}
.wsf{word-spacing:-11.367680pt;}
.ws58{word-spacing:-11.346565pt;}
.ws55{word-spacing:-11.028437pt;}
.ws9f{word-spacing:-10.800000pt;}
.wsb{word-spacing:-10.656000pt;}
.wsa{word-spacing:-10.560000pt;}
.ws9e{word-spacing:-10.512000pt;}
.ws6{word-spacing:-10.464000pt;}
.ws9{word-spacing:-10.320000pt;}
.ws53{word-spacing:-10.272000pt;}
.ws9b{word-spacing:-10.224000pt;}
.wsa0{word-spacing:-10.176000pt;}
.ws3{word-spacing:-9.605120pt;}
.ws4{word-spacing:-8.961920pt;}
.ws5{word-spacing:-8.747520pt;}
.ws89{word-spacing:-8.474717pt;}
.ws8a{word-spacing:-8.438075pt;}
.ws88{word-spacing:-8.398368pt;}
.wsa1{word-spacing:-7.999814pt;}
.wsa2{word-spacing:-7.969083pt;}
.wsa8{word-spacing:-7.963779pt;}
.wsa3{word-spacing:-7.927744pt;}
.wsb7{word-spacing:-7.819638pt;}
.wsa7{word-spacing:-7.623489pt;}
.ws0{word-spacing:-7.430400pt;}
.wsa6{word-spacing:-7.387216pt;}
.wsa5{word-spacing:-7.207080pt;}
.ws8{word-spacing:-6.976000pt;}
.ws7{word-spacing:-6.816000pt;}
.wsb6{word-spacing:-3.279203pt;}
.wsc4{word-spacing:-2.666605pt;}
.ws98{word-spacing:-1.489072pt;}
.wsb2{word-spacing:-1.406309pt;}
.wsb5{word-spacing:-1.333302pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws9a{word-spacing:-0.878011pt;}
.wsb4{word-spacing:-0.828810pt;}
.ws9d{word-spacing:-0.743680pt;}
.ws99{word-spacing:-0.687139pt;}
.wsb3{word-spacing:-0.648634pt;}
.ws4d{word-spacing:-0.637440pt;}
.ws77{word-spacing:-0.584320pt;}
.ws1e{word-spacing:-0.576000pt;}
.ws38{word-spacing:-0.478080pt;}
.ws85{word-spacing:-0.442048pt;}
.ws8f{word-spacing:-0.424960pt;}
.ws93{word-spacing:-0.371840pt;}
.ws18{word-spacing:-0.318720pt;}
.wsc2{word-spacing:-0.265600pt;}
.ws19{word-spacing:-0.212480pt;}
.ws6d{word-spacing:-0.167040pt;}
.ws66{word-spacing:-0.159360pt;}
.ws31{word-spacing:-0.144000pt;}
.ws36{word-spacing:-0.106240pt;}
.ws2a{word-spacing:-0.096000pt;}
.ws97{word-spacing:-0.076349pt;}
.ws1b{word-spacing:-0.074880pt;}
.wsb1{word-spacing:-0.072070pt;}
.wsc9{word-spacing:-0.053120pt;}
.ws15{word-spacing:0.000000pt;}
.ws22{word-spacing:0.048000pt;}
.ws37{word-spacing:0.053120pt;}
.ws1f{word-spacing:0.064000pt;}
.ws1a{word-spacing:0.074880pt;}
.wsab{word-spacing:0.096000pt;}
.ws8c{word-spacing:0.106240pt;}
.wsc6{word-spacing:0.117760pt;}
.ws1c{word-spacing:0.128000pt;}
.ws3f{word-spacing:0.159360pt;}
.wsa9{word-spacing:0.180176pt;}
.ws16{word-spacing:0.212480pt;}
.ws23{word-spacing:0.240000pt;}
.ws40{word-spacing:0.265600pt;}
.wsc8{word-spacing:0.294400pt;}
.ws17{word-spacing:0.318720pt;}
.ws9c{word-spacing:0.336000pt;}
.ws83{word-spacing:0.424960pt;}
.ws61{word-spacing:0.432000pt;}
.ws54{word-spacing:0.472960pt;}
.ws81{word-spacing:0.478080pt;}
.ws5b{word-spacing:0.480000pt;}
.ws5a{word-spacing:0.528000pt;}
.ws59{word-spacing:0.531200pt;}
.ws30{word-spacing:0.576000pt;}
.ws75{word-spacing:0.584320pt;}
.wsaf{word-spacing:0.624000pt;}
.ws6a{word-spacing:0.636256pt;}
.ws5d{word-spacing:0.690560pt;}
.wsb0{word-spacing:0.720000pt;}
.ws3c{word-spacing:0.796800pt;}
.ws91{word-spacing:1.062400pt;}
.ws90{word-spacing:1.115520pt;}
.ws33{word-spacing:1.168640pt;}
.ws3d{word-spacing:1.434240pt;}
.ws26{word-spacing:1.488000pt;}
.wsc1{word-spacing:1.752960pt;}
.ws4a{word-spacing:1.806080pt;}
.ws27{word-spacing:1.824000pt;}
.ws5c{word-spacing:1.965440pt;}
.ws63{word-spacing:2.071680pt;}
.ws65{word-spacing:2.177920pt;}
.wsca{word-spacing:2.390400pt;}
.ws42{word-spacing:2.443520pt;}
.ws2d{word-spacing:2.496000pt;}
.ws41{word-spacing:2.496640pt;}
.ws78{word-spacing:2.602880pt;}
.ws79{word-spacing:2.709120pt;}
.ws92{word-spacing:2.815360pt;}
.ws84{word-spacing:3.027840pt;}
.ws6c{word-spacing:3.032960pt;}
.ws3e{word-spacing:3.080960pt;}
.ws2b{word-spacing:3.120000pt;}
.ws94{word-spacing:3.187200pt;}
.wsc0{word-spacing:3.240320pt;}
.ws25{word-spacing:3.264000pt;}
.ws60{word-spacing:3.346560pt;}
.wsce{word-spacing:3.612160pt;}
.ws6b{word-spacing:3.672960pt;}
.ws5e{word-spacing:3.718400pt;}
.ws28{word-spacing:3.744000pt;}
.ws5f{word-spacing:3.877760pt;}
.ws62{word-spacing:3.984000pt;}
.ws14{word-spacing:4.355840pt;}
.wscf{word-spacing:4.515200pt;}
.ws76{word-spacing:4.621440pt;}
.ws35{word-spacing:4.993280pt;}
.ws3a{word-spacing:5.258880pt;}
.ws20{word-spacing:5.328000pt;}
.ws46{word-spacing:5.630720pt;}
.ws21{word-spacing:5.664000pt;}
.ws7a{word-spacing:5.896320pt;}
.ws4b{word-spacing:6.905600pt;}
.ws2c{word-spacing:6.960000pt;}
.ws4c{word-spacing:7.064960pt;}
.ws4e{word-spacing:7.171200pt;}
.ws49{word-spacing:7.543040pt;}
.ws7e{word-spacing:7.914880pt;}
.ws7d{word-spacing:8.180480pt;}
.wsbe{word-spacing:8.339840pt;}
.ws7f{word-spacing:8.446080pt;}
.ws32{word-spacing:8.544000pt;}
.ws80{word-spacing:8.817920pt;}
.ws64{word-spacing:9.083520pt;}
.wsb8{word-spacing:9.402240pt;}
.ws39{word-spacing:9.455360pt;}
.ws82{word-spacing:9.614720pt;}
.ws69{word-spacing:9.720960pt;}
.ws95{word-spacing:9.827200pt;}
.ws67{word-spacing:10.092800pt;}
.ws68{word-spacing:10.252160pt;}
.ws96{word-spacing:10.358400pt;}
.ws45{word-spacing:10.411520pt;}
.ws43{word-spacing:10.783360pt;}
.ws44{word-spacing:10.942720pt;}
.wscc{word-spacing:11.048960pt;}
.wsc3{word-spacing:11.420800pt;}
.wscd{word-spacing:12.005120pt;}
.ws8d{word-spacing:12.058240pt;}
.ws8e{word-spacing:12.270720pt;}
.wsbb{word-spacing:12.323840pt;}
.wsb9{word-spacing:12.642560pt;}
.wsba{word-spacing:12.695680pt;}
.ws7b{word-spacing:13.333120pt;}
.ws7c{word-spacing:13.598720pt;}
.ws4f{word-spacing:13.970560pt;}
.wsac{word-spacing:14.501760pt;}
.ws47{word-spacing:14.608000pt;}
.ws2f{word-spacing:14.736000pt;}
.ws48{word-spacing:14.873600pt;}
.ws24{word-spacing:14.928000pt;}
.wscb{word-spacing:15.245440pt;}
.ws2e{word-spacing:15.264000pt;}
.wsbc{word-spacing:15.511040pt;}
.wsbd{word-spacing:15.882880pt;}
.ws29{word-spacing:15.936000pt;}
.ws3b{word-spacing:16.148480pt;}
.ws34{word-spacing:17.157760pt;}
.wsbf{word-spacing:17.423360pt;}
.wsad{word-spacing:17.742080pt;}
.ws74{word-spacing:17.795200pt;}
.wsc7{word-spacing:18.432640pt;}
.wsae{word-spacing:18.698240pt;}
.ws73{word-spacing:42.024759pt;}
.ws8b{word-spacing:153.513854pt;}
.wsaa{word-spacing:183.026751pt;}
.wsa4{word-spacing:241.265049pt;}
.ws72{word-spacing:499.039195pt;}
.ws57{word-spacing:752.213656pt;}
._1b{margin-left:-357.299863pt;}
._19{margin-left:-355.538370pt;}
._15{margin-left:-354.254958pt;}
._17{margin-left:-351.638034pt;}
._1a{margin-left:-346.539063pt;}
._18{margin-left:-343.494158pt;}
._16{margin-left:-340.877234pt;}
._13{margin-left:-273.304004pt;}
._12{margin-left:-261.904891pt;}
._f{margin-left:-12.200320pt;}
._10{margin-left:-3.200000pt;}
._3{margin-left:-1.381120pt;}
._0{width:1.009280pt;}
._2{width:1.939840pt;}
._4{width:3.157120pt;}
._1{width:4.541440pt;}
._8{width:6.002560pt;}
._9{width:7.011840pt;}
._5{width:7.920000pt;}
._6{width:8.924160pt;}
._b{width:9.943040pt;}
._c{width:12.554240pt;}
._a{width:14.183040pt;}
._7{width:15.723520pt;}
._d{width:18.113920pt;}
._14{width:172.396790pt;}
._e{width:187.720354pt;}
._11{width:756.322560pt;}
.fsc{font-size:29.009600pt;}
.fs6{font-size:32.000000pt;}
.fs14{font-size:32.031467pt;}
.fs11{font-size:33.932800pt;}
.fs1{font-size:34.560000pt;}
.fsa{font-size:35.347733pt;}
.fs12{font-size:36.035200pt;}
.fs13{font-size:36.059200pt;}
.fs8{font-size:37.120000pt;}
.fsf{font-size:38.174400pt;}
.fs10{font-size:38.181333pt;}
.fs4{font-size:42.880000pt;}
.fsb{font-size:44.204800pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.021333pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fse{font-size:73.213867pt;}
.fs2{font-size:74.880000pt;}
.fsd{font-size:81.502400pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:2.758267pt;}
.y13c{bottom:2.758400pt;}
.y120{bottom:2.758533pt;}
.yee{bottom:2.880000pt;}
.y12e{bottom:3.993600pt;}
.yec{bottom:4.000000pt;}
.yfb{bottom:4.160000pt;}
.ybd{bottom:4.230800pt;}
.y16b{bottom:5.196933pt;}
.y12d{bottom:5.197333pt;}
.y11f{bottom:5.307200pt;}
.y10e{bottom:5.307733pt;}
.y17f{bottom:5.419333pt;}
.y13b{bottom:5.420000pt;}
.ybc{bottom:5.740667pt;}
.y130{bottom:6.254533pt;}
.yc0{bottom:6.273600pt;}
.ybf{bottom:6.273733pt;}
.y48{bottom:6.400000pt;}
.y66{bottom:6.456533pt;}
.y116{bottom:6.470400pt;}
.y4c{bottom:6.560000pt;}
.yc7{bottom:6.880000pt;}
.yc5{bottom:7.040000pt;}
.y114{bottom:7.415333pt;}
.y122{bottom:8.702933pt;}
.y123{bottom:8.703067pt;}
.y10f{bottom:9.332267pt;}
.y68{bottom:10.880000pt;}
.y40{bottom:11.040000pt;}
.y17c{bottom:11.089600pt;}
.y17d{bottom:11.089733pt;}
.y3f{bottom:11.200000pt;}
.y169{bottom:12.868933pt;}
.y13e{bottom:13.596000pt;}
.y61{bottom:14.741733pt;}
.y139{bottom:15.093467pt;}
.ye0{bottom:15.200000pt;}
.y11c{bottom:15.538400pt;}
.y11d{bottom:15.538533pt;}
.yfe{bottom:16.000000pt;}
.yf0{bottom:16.160000pt;}
.y12b{bottom:17.762667pt;}
.yba{bottom:18.817200pt;}
.y181{bottom:18.934933pt;}
.y16f{bottom:19.044933pt;}
.y16e{bottom:19.045067pt;}
.y111{bottom:19.156267pt;}
.y112{bottom:19.156400pt;}
.y10b{bottom:23.101333pt;}
.y10c{bottom:23.101467pt;}
.ye3{bottom:23.680000pt;}
.y173{bottom:24.723600pt;}
.y163{bottom:26.502933pt;}
.y135{bottom:28.727333pt;}
.y119{bottom:29.172400pt;}
.ydf{bottom:30.880000pt;}
.y129{bottom:31.396533pt;}
.yb3{bottom:33.260400pt;}
.y108{bottom:36.735333pt;}
.y182{bottom:37.766400pt;}
.y184{bottom:38.099200pt;}
.y172{bottom:39.493067pt;}
.y170{bottom:39.935867pt;}
.y132{bottom:44.371333pt;}
.y134{bottom:44.459600pt;}
.y140{bottom:44.494667pt;}
.y142{bottom:45.062400pt;}
.y125{bottom:45.773867pt;}
.yc2{bottom:46.195067pt;}
.y127{bottom:47.847867pt;}
.y174{bottom:48.900000pt;}
.y118{bottom:52.003467pt;}
.y64{bottom:52.021867pt;}
.y63{bottom:56.164133pt;}
.y164{bottom:57.626133pt;}
.yb4{bottom:67.173733pt;}
.y175{bottom:73.076533pt;}
.y8a{bottom:82.076320pt;}
.y162{bottom:87.520000pt;}
.y165{bottom:88.749200pt;}
.y11a{bottom:90.528800pt;}
.y136{bottom:90.973600pt;}
.y106{bottom:91.500960pt;}
.y176{bottom:97.253067pt;}
.y89{bottom:97.760000pt;}
.yb5{bottom:101.086933pt;}
.y35{bottom:101.692640pt;}
.y105{bottom:107.184640pt;}
.y1b1{bottom:109.874720pt;}
.y65{bottom:110.014267pt;}
.y62{bottom:110.021069pt;}
.y5e{bottom:112.160000pt;}
.y161{bottom:112.255360pt;}
.y8c{bottom:114.033067pt;}
.y94{bottom:114.147867pt;}
.y8e{bottom:114.328400pt;}
.y34{bottom:117.216960pt;}
.y166{bottom:119.872267pt;}
.y177{bottom:121.429467pt;}
.y12a{bottom:122.319067pt;}
.y104{bottom:122.868320pt;}
.y5d{bottom:124.800000pt;}
.y109{bottom:124.988400pt;}
.y88{bottom:126.404000pt;}
.y33{bottom:132.900640pt;}
.y1b0{bottom:133.552960pt;}
.yb6{bottom:135.000000pt;}
.y160{bottom:135.933600pt;}
.y103{bottom:138.392640pt;}
.y96{bottom:140.452667pt;}
.y95{bottom:142.870133pt;}
.y97{bottom:143.388267pt;}
.y178{bottom:145.605867pt;}
.y60{bottom:147.295067pt;}
.y32{bottom:148.584320pt;}
.y167{bottom:150.995333pt;}
.y87{bottom:151.040000pt;}
.y8b{bottom:151.112000pt;}
.y11b{bottom:151.885333pt;}
.y137{bottom:153.219733pt;}
.y102{bottom:154.076320pt;}
.y1af{bottom:157.231200pt;}
.y5c{bottom:159.500320pt;}
.y15f{bottom:159.611840pt;}
.y91{bottom:163.386000pt;}
.y90{bottom:165.799311pt;}
.y8d{bottom:168.219733pt;}
.yb7{bottom:168.913200pt;}
.y101{bottom:169.760000pt;}
.y179{bottom:169.782533pt;}
.y92{bottom:169.807333pt;}
.y31{bottom:172.103200pt;}
.y1ae{bottom:172.755520pt;}
.y5b{bottom:175.024640pt;}
.y168{bottom:182.118533pt;}
.y15e{bottom:183.130720pt;}
.y30{bottom:187.786880pt;}
.y5a{bottom:190.708320pt;}
.y100{bottom:193.280000pt;}
.y17a{bottom:193.958800pt;}
.y1ad{bottom:196.433760pt;}
.y15d{bottom:198.814400pt;}
.yb8{bottom:202.826400pt;}
.y2f{bottom:203.470560pt;}
.y8f{bottom:203.605467pt;}
.y59{bottom:206.392000pt;}
.y1ac{bottom:212.117440pt;}
.y10a{bottom:213.241600pt;}
.y15c{bottom:214.498080pt;}
.y138{bottom:215.466000pt;}
.yff{bottom:216.960000pt;}
.y17b{bottom:218.135333pt;}
.y2e{bottom:219.154240pt;}
.yb1{bottom:219.670080pt;}
.y58{bottom:221.916320pt;}
.y171{bottom:223.644133pt;}
.y126{bottom:223.680800pt;}
.y133{bottom:223.681867pt;}
.y141{bottom:224.718000pt;}
.y93{bottom:225.408933pt;}
.y183{bottom:226.683867pt;}
.y1ab{bottom:227.801120pt;}
.yfd{bottom:229.600000pt;}
.y2d{bottom:234.678560pt;}
.yb9{bottom:236.739467pt;}
.y57{bottom:237.600000pt;}
.y15b{bottom:238.016960pt;}
.yea{bottom:242.715680pt;}
.yb0{bottom:243.348320pt;}
.y56{bottom:250.240000pt;}
.y2c{bottom:250.362240pt;}
.y1aa{bottom:251.320000pt;}
.y15a{bottom:253.700640pt;}
.yfc{bottom:256.960000pt;}
.ye9{bottom:258.240000pt;}
.yaf{bottom:259.032000pt;}
.y1a9{bottom:267.003680pt;}
.y159{bottom:269.384320pt;}
.yfa{bottom:271.040000pt;}
.y2b{bottom:274.040480pt;}
.yae{bottom:274.556320pt;}
.y131{bottom:275.113333pt;}
.y13f{bottom:275.114667pt;}
.y128{bottom:275.444000pt;}
.ye8{bottom:281.920000pt;}
.y55{bottom:284.794400pt;}
.y158{bottom:284.908640pt;}
.y2a{bottom:289.564800pt;}
.yad{bottom:290.240000pt;}
.y1a8{bottom:290.681920pt;}
.y54{bottom:300.478080pt;}
.yac{bottom:302.880000pt;}
.y13d{bottom:305.140000pt;}
.y29{bottom:305.248480pt;}
.ye7{bottom:305.597440pt;}
.y1a7{bottom:306.206240pt;}
.y157{bottom:308.586880pt;}
.y12f{bottom:313.816000pt;}
.y53{bottom:316.161760pt;}
.ye6{bottom:321.121760pt;}
.y156{bottom:324.270560pt;}
.yab{bottom:326.560000pt;}
.y28{bottom:328.926720pt;}
.y1a6{bottom:329.884480pt;}
.y52{bottom:339.840000pt;}
.y155{bottom:339.954240pt;}
.y27{bottom:344.451040pt;}
.ye5{bottom:344.800000pt;}
.y1a5{bottom:345.568160pt;}
.y154{bottom:355.478560pt;}
.ye2{bottom:359.520000pt;}
.y26{bottom:360.134720pt;}
.yaa{bottom:361.110080pt;}
.y51{bottom:361.120000pt;}
.y1a4{bottom:369.087040pt;}
.y153{bottom:371.162240pt;}
.y25{bottom:375.818400pt;}
.y13a{bottom:376.542667pt;}
.ya9{bottom:376.793760pt;}
.y12c{bottom:379.212000pt;}
.y50{bottom:384.480000pt;}
.y1a3{bottom:384.770720pt;}
.ye4{bottom:385.120000pt;}
.y24{bottom:391.502080pt;}
.y152{bottom:394.840480pt;}
.ya8{bottom:400.472000pt;}
.y23{bottom:407.026400pt;}
.y4f{bottom:407.680000pt;}
.y1a2{bottom:408.448960pt;}
.yde{bottom:409.440000pt;}
.y151{bottom:410.364800pt;}
.y86{bottom:412.730880pt;}
.ya7{bottom:415.996320pt;}
.y150{bottom:426.048480pt;}
.y85{bottom:428.414560pt;}
.y22{bottom:430.704640pt;}
.y4e{bottom:431.040000pt;}
.ya6{bottom:431.680000pt;}
.y1a1{bottom:432.127200pt;}
.ye1{bottom:433.760000pt;}
.y84{bottom:444.098240pt;}
.y21{bottom:446.388320pt;}
.y1a0{bottom:447.651520pt;}
.y14f{bottom:449.726720pt;}
.y4d{bottom:454.400000pt;}
.ydd{bottom:459.360000pt;}
.y83{bottom:459.622560pt;}
.ya5{bottom:460.316000pt;}
.y20{bottom:461.912640pt;}
.y14e{bottom:465.251040pt;}
.y19f{bottom:471.329760pt;}
.y82{bottom:475.306240pt;}
.y1f{bottom:477.596320pt;}
.y4b{bottom:477.760000pt;}
.y14d{bottom:480.934720pt;}
.yc1{bottom:485.058667pt;}
.ya4{bottom:485.120000pt;}
.yb2{bottom:485.409333pt;}
.y19e{bottom:487.013440pt;}
.ydc{bottom:487.840000pt;}
.y1e{bottom:493.280000pt;}
.y14c{bottom:496.618400pt;}
.y81{bottom:498.984480pt;}
.y4a{bottom:501.120000pt;}
.y19d{bottom:502.537760pt;}
.y1d{bottom:509.120000pt;}
.ydb{bottom:510.075680pt;}
.y80{bottom:514.508800pt;}
.y14b{bottom:520.296640pt;}
.ybe{bottom:524.290667pt;}
.y49{bottom:524.480000pt;}
.yda{bottom:525.600000pt;}
.y19c{bottom:526.216000pt;}
.yf9{bottom:527.035680pt;}
.y7f{bottom:530.192480pt;}
.y1c{bottom:534.082880pt;}
.y14a{bottom:535.820960pt;}
.y19b{bottom:541.899680pt;}
.yf8{bottom:542.560000pt;}
.y7e{bottom:545.876160pt;}
.y47{bottom:549.120000pt;}
.yd9{bottom:549.596800pt;}
.y149{bottom:551.504640pt;}
.y46{bottom:555.520000pt;}
.y19a{bottom:557.424000pt;}
.y1b{bottom:557.761120pt;}
.yf7{bottom:566.240000pt;}
.y148{bottom:567.188320pt;}
.y7d{bottom:569.395040pt;}
.yd8{bottom:570.720000pt;}
.y45{bottom:576.644000pt;}
.y199{bottom:581.102240pt;}
.y1a{bottom:581.280000pt;}
.y147{bottom:582.712640pt;}
.y7c{bottom:585.078720pt;}
.yf6{bottom:589.911200pt;}
.y44{bottom:590.720000pt;}
.yd7{bottom:595.680000pt;}
.y198{bottom:596.785920pt;}
.y146{bottom:598.396320pt;}
.ybb{bottom:600.286667pt;}
.y7b{bottom:600.762400pt;}
.y19{bottom:604.836000pt;}
.yd6{bottom:610.240000pt;}
.y43{bottom:612.792640pt;}
.yf5{bottom:613.589440pt;}
.y145{bottom:614.080000pt;}
.y7a{bottom:616.446080pt;}
.y18{bottom:618.912000pt;}
.y197{bottom:620.464160pt;}
.y42{bottom:628.476320pt;}
.yf4{bottom:629.113760pt;}
.yd5{bottom:630.560000pt;}
.y79{bottom:631.970400pt;}
.y196{bottom:635.988480pt;}
.y144{bottom:637.914880pt;}
.y17{bottom:640.992000pt;}
.y41{bottom:644.160000pt;}
.yf3{bottom:644.797440pt;}
.y78{bottom:647.654080pt;}
.yd4{bottom:650.880000pt;}
.y16{bottom:655.068000pt;}
.y3e{bottom:656.800000pt;}
.y143{bottom:659.200000pt;}
.y195{bottom:659.666720pt;}
.y77{bottom:663.337760pt;}
.yf2{bottom:668.475680pt;}
.y15{bottom:669.144000pt;}
.yd3{bottom:670.880000pt;}
.y194{bottom:675.350400pt;}
.y76{bottom:678.862080pt;}
.y14{bottom:683.220000pt;}
.yf1{bottom:684.000000pt;}
.y193{bottom:690.874720pt;}
.yd2{bottom:690.880000pt;}
.y75{bottom:694.545760pt;}
.yef{bottom:696.640000pt;}
.y13{bottom:697.296000pt;}
.y3d{bottom:699.352640pt;}
.yd1{bottom:711.200000pt;}
.y12{bottom:711.372000pt;}
.y192{bottom:714.552960pt;}
.y3c{bottom:715.036320pt;}
.y74{bottom:718.224000pt;}
.yed{bottom:724.160000pt;}
.y11{bottom:725.448000pt;}
.y191{bottom:730.236640pt;}
.y3b{bottom:730.720000pt;}
.yd0{bottom:731.360000pt;}
.y73{bottom:733.748320pt;}
.yeb{bottom:738.240000pt;}
.y10{bottom:739.524000pt;}
.y117{bottom:742.200000pt;}
.y124{bottom:742.201333pt;}
.y107{bottom:742.530667pt;}
.y72{bottom:749.432000pt;}
.ya3{bottom:751.161440pt;}
.ycf{bottom:751.360000pt;}
.yf{bottom:753.444000pt;}
.y190{bottom:753.755520pt;}
.y3a{bottom:759.360000pt;}
.y180{bottom:760.214667pt;}
.y16d{bottom:761.884000pt;}
.y71{bottom:765.115680pt;}
.ya2{bottom:766.845120pt;}
.ye{bottom:767.520000pt;}
.y18f{bottom:769.439200pt;}
.yce{bottom:771.360000pt;}
.y110{bottom:774.229333pt;}
.y5f{bottom:778.704000pt;}
.y39{bottom:778.717440pt;}
.y121{bottom:779.566667pt;}
.y70{bottom:780.640000pt;}
.ya1{bottom:782.528800pt;}
.y113{bottom:785.906667pt;}
.yd{bottom:789.761760pt;}
.ycd{bottom:791.680000pt;}
.y18e{bottom:793.117440pt;}
.ya0{bottom:798.053120pt;}
.y6f{bottom:804.631680pt;}
.y18d{bottom:808.641760pt;}
.ycc{bottom:812.000000pt;}
.yc{bottom:813.440000pt;}
.y9f{bottom:813.736800pt;}
.y6e{bottom:825.754880pt;}
.y9e{bottom:829.420480pt;}
.ycb{bottom:831.840000pt;}
.y18c{bottom:832.320000pt;}
.yb{bottom:839.680000pt;}
.y16a{bottom:841.628000pt;}
.y11e{bottom:845.966667pt;}
.y10d{bottom:846.633333pt;}
.y6d{bottom:847.040000pt;}
.y17e{bottom:850.970667pt;}
.yca{bottom:851.840000pt;}
.y18b{bottom:852.320000pt;}
.y9d{bottom:853.098720pt;}
.ya{bottom:859.044000pt;}
.y6c{bottom:864.960000pt;}
.y9c{bottom:868.623040pt;}
.yc9{bottom:872.160000pt;}
.y9{bottom:875.840000pt;}
.y18a{bottom:877.113760pt;}
.y9b{bottom:884.306720pt;}
.yc8{bottom:892.480000pt;}
.y8{bottom:895.200000pt;}
.y6b{bottom:899.521760pt;}
.y9a{bottom:899.990400pt;}
.y189{bottom:900.792000pt;}
.yc6{bottom:912.480000pt;}
.y188{bottom:916.475680pt;}
.y7{bottom:917.920000pt;}
.y6a{bottom:923.200000pt;}
.y99{bottom:923.509280pt;}
.y187{bottom:932.000000pt;}
.yc4{bottom:934.080000pt;}
.y69{bottom:935.840000pt;}
.y98{bottom:939.192960pt;}
.y6{bottom:945.446240pt;}
.y186{bottom:952.000640pt;}
.y38{bottom:954.876640pt;}
.y115{bottom:959.410667pt;}
.y67{bottom:959.520000pt;}
.y5{bottom:967.198880pt;}
.y185{bottom:969.120000pt;}
.y37{bottom:970.400960pt;}
.yc3{bottom:971.680000pt;}
.y4{bottom:989.120000pt;}
.y36{bottom:994.079200pt;}
.y3{bottom:1017.757440pt;}
.y2{bottom:1041.276320pt;}
.y1{bottom:1056.960000pt;}
.h48{height:11.677333pt;}
.h3e{height:11.678667pt;}
.h43{height:13.013333pt;}
.h21{height:13.785333pt;}
.h2e{height:14.080000pt;}
.h31{height:14.081333pt;}
.h44{height:14.681333pt;}
.h23{height:15.198667pt;}
.h3b{height:16.682667pt;}
.h3f{height:17.017333pt;}
.h39{height:17.684000pt;}
.h37{height:18.352000pt;}
.h29{height:19.518667pt;}
.h28{height:19.520000pt;}
.h26{height:19.680000pt;}
.h46{height:22.022667pt;}
.hd{height:22.560000pt;}
.hf{height:22.720000pt;}
.he{height:22.721333pt;}
.h15{height:23.520000pt;}
.h11{height:23.680000pt;}
.h10{height:23.681333pt;}
.h19{height:25.241752pt;}
.h32{height:27.360000pt;}
.h4a{height:27.361333pt;}
.h2f{height:27.521333pt;}
.h41{height:27.871130pt;}
.h3d{height:27.965530pt;}
.h25{height:29.525512pt;}
.h7{height:30.885625pt;}
.h34{height:31.354847pt;}
.h38{height:31.636372pt;}
.h36{height:31.657442pt;}
.h49{height:31.657976pt;}
.hb{height:31.680000pt;}
.h1e{height:33.216202pt;}
.h22{height:33.514439pt;}
.h20{height:33.520526pt;}
.h17{height:37.125125pt;}
.h3a{height:37.583588pt;}
.h27{height:38.257813pt;}
.h18{height:38.463356pt;}
.ha{height:40.312500pt;}
.h6{height:41.765625pt;}
.h8{height:42.140625pt;}
.h14{height:46.134773pt;}
.h3{height:46.220625pt;}
.h1c{height:46.260305pt;}
.h2{height:46.635625pt;}
.h2a{height:47.840000pt;}
.h2c{height:49.120000pt;}
.h9{height:51.692500pt;}
.h42{height:52.385333pt;}
.h35{height:52.718667pt;}
.h5{height:55.687500pt;}
.h1f{height:55.848000pt;}
.h1b{height:59.951003pt;}
.h4{height:65.739375pt;}
.h1a{height:70.916639pt;}
.h13{height:105.706105pt;}
.h2b{height:105.902812pt;}
.hc{height:129.298438pt;}
.h12{height:165.133333pt;}
.h33{height:240.234667pt;}
.h40{height:240.838667pt;}
.h3c{height:240.840000pt;}
.h47{height:240.885333pt;}
.h45{height:240.886667pt;}
.h2d{height:244.800000pt;}
.h30{height:244.960000pt;}
.h16{height:250.648000pt;}
.h1d{height:254.496000pt;}
.h24{height:255.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w26{width:15.692000pt;}
.w35{width:38.396000pt;}
.w19{width:39.360000pt;}
.w2e{width:40.065333pt;}
.w25{width:40.066667pt;}
.w27{width:42.737333pt;}
.w24{width:45.741333pt;}
.wa{width:47.200000pt;}
.w14{width:48.433333pt;}
.w13{width:48.434667pt;}
.w2b{width:48.746667pt;}
.wc{width:50.718667pt;}
.w8{width:50.720000pt;}
.w33{width:51.417333pt;}
.we{width:56.640000pt;}
.w17{width:59.358667pt;}
.w31{width:64.104000pt;}
.w22{width:64.105333pt;}
.w6{width:64.320000pt;}
.w16{width:66.401333pt;}
.w11{width:67.878667pt;}
.w18{width:78.080000pt;}
.w5{width:79.040000pt;}
.w3{width:79.520000pt;}
.w2a{width:87.142667pt;}
.w23{width:87.476000pt;}
.w34{width:87.477333pt;}
.w12{width:92.272000pt;}
.w4{width:94.560000pt;}
.w1c{width:105.600000pt;}
.w1b{width:141.120000pt;}
.w1d{width:179.520000pt;}
.w1a{width:243.200000pt;}
.w2d{width:307.133333pt;}
.w30{width:307.200000pt;}
.w2f{width:307.468000pt;}
.w32{width:307.533333pt;}
.w21{width:309.133333pt;}
.w29{width:309.200000pt;}
.w1e{width:309.440000pt;}
.w28{width:309.466667pt;}
.w2c{width:309.533333pt;}
.w1f{width:309.600000pt;}
.w10{width:339.392000pt;}
.w15{width:340.105333pt;}
.wf{width:340.133333pt;}
.wb{width:377.893333pt;}
.w2{width:532.480000pt;}
.w7{width:562.720000pt;}
.w9{width:564.800000pt;}
.wd{width:574.240000pt;}
.w20{width:619.040000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:5.568400pt;}
.x1c{left:7.200000pt;}
.x20{left:8.365200pt;}
.x3a{left:9.524400pt;}
.x46{left:10.560000pt;}
.x6c{left:13.701867pt;}
.x2e{left:14.904267pt;}
.x62{left:15.928800pt;}
.x15{left:16.960000pt;}
.x47{left:18.560000pt;}
.x18{left:19.680000pt;}
.x4d{left:20.640000pt;}
.x38{left:21.952400pt;}
.x12{left:26.880000pt;}
.x4f{left:30.080000pt;}
.x19{left:32.480000pt;}
.x16{left:36.160000pt;}
.x50{left:37.120000pt;}
.x4a{left:44.480000pt;}
.xd{left:47.200000pt;}
.x4b{left:48.800000pt;}
.x33{left:51.161867pt;}
.x32{left:54.956133pt;}
.x59{left:58.112667pt;}
.x63{left:60.076533pt;}
.x54{left:68.320000pt;}
.x56{left:69.280000pt;}
.x2d{left:71.880400pt;}
.x4e{left:74.560000pt;}
.x23{left:79.014533pt;}
.xa{left:87.360000pt;}
.x45{left:89.760000pt;}
.x70{left:93.126800pt;}
.x7{left:94.560000pt;}
.x48{left:95.520000pt;}
.x6b{left:96.868000pt;}
.x5a{left:98.538667pt;}
.x30{left:103.915867pt;}
.x68{left:104.816267pt;}
.x3f{left:107.155067pt;}
.x75{left:110.228933pt;}
.x22{left:112.266641pt;}
.x31{left:113.817467pt;}
.x34{left:114.867600pt;}
.x7e{left:117.196933pt;}
.x35{left:130.189600pt;}
.x78{left:132.110667pt;}
.x6f{left:133.512533pt;}
.x60{left:135.088400pt;}
.x69{left:136.036400pt;}
.x53{left:147.200000pt;}
.x1{left:151.200000pt;}
.x3{left:157.763840pt;}
.x2{left:160.160000pt;}
.x21{left:170.447724pt;}
.x6d{left:178.334667pt;}
.x7d{left:180.996133pt;}
.x49{left:183.680000pt;}
.x2f{left:187.375200pt;}
.x40{left:189.760000pt;}
.x9{left:191.040000pt;}
.x24{left:195.377867pt;}
.x76{left:199.038667pt;}
.x74{left:201.363333pt;}
.xe{left:206.720000pt;}
.x1f{left:207.900000pt;}
.x6a{left:209.638267pt;}
.x58{left:215.309200pt;}
.x5b{left:216.400000pt;}
.x28{left:218.560000pt;}
.x5c{left:221.408000pt;}
.xb{left:224.800000pt;}
.x2c{left:226.800000pt;}
.x5f{left:227.752000pt;}
.xf{left:230.240000pt;}
.x1d{left:238.720000pt;}
.x27{left:240.160000pt;}
.x1a{left:246.400000pt;}
.x5e{left:253.460000pt;}
.x5{left:257.120000pt;}
.x37{left:259.836000pt;}
.x25{left:261.871333pt;}
.x6e{left:265.142667pt;}
.x77{left:266.481333pt;}
.x41{left:275.200000pt;}
.x14{left:277.920000pt;}
.x26{left:282.650533pt;}
.x4{left:287.998880pt;}
.x10{left:291.520000pt;}
.x57{left:296.245867pt;}
.x5d{left:301.205333pt;}
.x36{left:316.532133pt;}
.x39{left:321.695867pt;}
.x2b{left:324.000000pt;}
.x51{left:328.320000pt;}
.x55{left:330.400000pt;}
.x42{left:341.600000pt;}
.x11{left:356.960000pt;}
.x3b{left:361.142667pt;}
.x6{left:363.680000pt;}
.x3d{left:384.829333pt;}
.x52{left:396.800000pt;}
.x43{left:400.960000pt;}
.x61{left:404.400000pt;}
.x79{left:405.401333pt;}
.x71{left:406.400000pt;}
.x64{left:408.073333pt;}
.x4c{left:430.400000pt;}
.x13{left:436.000000pt;}
.x3e{left:445.282667pt;}
.x17{left:451.520000pt;}
.x44{left:479.040000pt;}
.x66{left:501.558667pt;}
.x72{left:507.566667pt;}
.x7b{left:512.910667pt;}
.x7a{left:525.932000pt;}
.x65{left:527.268000pt;}
.x2a{left:566.880000pt;}
.x7c{left:577.016000pt;}
.x8{left:585.763680pt;}
.x73{left:597.713333pt;}
.x67{left:605.062667pt;}
.xc{left:619.840000pt;}
.x1b{left:650.080000pt;}
.x1e{left:652.160000pt;}
.x29{left:661.600000pt;}
}




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