
    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_bf8d669b08f6ec66c5151bfa.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.054000;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_0d37208ae00178e053c1f511.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.044000;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_00a84ade14032e33fcc44fe5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.048000;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_3743f120c069b9a53bd7f7cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.721000;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_e73789d1c097baa2f3e3aff4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_2aefcbb423ec3bb018bf4261.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_85370573d04eba6fb2fab33d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.072000;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_5cf2c3271c03959ba67fa806.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.957000;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_7e36dc69b519262d93223ced.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_1579d8941719a82ddd16bf84.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.723000;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_70cfe9118693d0941fdce4c3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;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.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m2{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);}
.v4{vertical-align:-20.790000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.904000px;}
.v3{vertical-align:20.790000px;}
.v2{vertical-align:31.069800px;}
.ls19{letter-spacing:-0.567000px;}
.ls1b{letter-spacing:-0.441000px;}
.ls6b{letter-spacing:-0.288000px;}
.ls5b{letter-spacing:-0.252000px;}
.ls6d{letter-spacing:-0.240000px;}
.ls28{letter-spacing:-0.189000px;}
.ls6c{letter-spacing:-0.132300px;}
.ls35{letter-spacing:-0.126000px;}
.ls1c{letter-spacing:-0.096000px;}
.ls53{letter-spacing:-0.063000px;}
.lsb{letter-spacing:0.000000px;}
.ls48{letter-spacing:0.048000px;}
.ls58{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.063000px;}
.ls2b{letter-spacing:0.096000px;}
.ls32{letter-spacing:0.126000px;}
.ls52{letter-spacing:0.132300px;}
.ls70{letter-spacing:0.144000px;}
.ls62{letter-spacing:0.162000px;}
.ls13{letter-spacing:0.189000px;}
.ls15{letter-spacing:0.192000px;}
.ls64{letter-spacing:0.226800px;}
.ls67{letter-spacing:0.240000px;}
.ls40{letter-spacing:0.252000px;}
.ls60{letter-spacing:0.283500px;}
.ls41{letter-spacing:0.288000px;}
.ls5c{letter-spacing:0.315000px;}
.ls63{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.378000px;}
.ls26{letter-spacing:0.384000px;}
.ls29{letter-spacing:0.409500px;}
.ls38{letter-spacing:0.432000px;}
.ls21{letter-spacing:0.441000px;}
.ls20{letter-spacing:0.472500px;}
.lsc{letter-spacing:0.480000px;}
.ls5d{letter-spacing:0.485100px;}
.ls1e{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.528000px;}
.ls23{letter-spacing:0.567000px;}
.ls2a{letter-spacing:0.576000px;}
.ls3a{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.600000px;}
.ls2d{letter-spacing:0.624000px;}
.ls12{letter-spacing:0.630000px;}
.ls3d{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.661500px;}
.ls34{letter-spacing:0.672000px;}
.ls1a{letter-spacing:0.693000px;}
.ls4c{letter-spacing:0.702000px;}
.ls27{letter-spacing:0.720000px;}
.ls43{letter-spacing:0.729000px;}
.ls69{letter-spacing:0.744000px;}
.lsf{letter-spacing:0.756000px;}
.ls42{letter-spacing:0.793800px;}
.ls56{letter-spacing:0.810000px;}
.ls2e{letter-spacing:0.816000px;}
.ls45{letter-spacing:0.819000px;}
.ls55{letter-spacing:0.837000px;}
.ls0{letter-spacing:0.840000px;}
.ls3f{letter-spacing:0.850500px;}
.ls4d{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.882000px;}
.ls8{letter-spacing:0.912000px;}
.ls44{letter-spacing:0.918000px;}
.ls3b{letter-spacing:0.926100px;}
.ls33{letter-spacing:0.945000px;}
.ls2f{letter-spacing:0.960000px;}
.ls3e{letter-spacing:0.970200px;}
.ls6f{letter-spacing:0.972000px;}
.ls54{letter-spacing:0.976500px;}
.ls6e{letter-spacing:0.999000px;}
.ls4{letter-spacing:1.008000px;}
.ls37{letter-spacing:1.014300px;}
.ls39{letter-spacing:1.026000px;}
.ls71{letter-spacing:1.039500px;}
.ls59{letter-spacing:1.056000px;}
.ls14{letter-spacing:1.071000px;}
.ls4a{letter-spacing:1.080000px;}
.ls51{letter-spacing:1.082400px;}
.lsa{letter-spacing:1.104000px;}
.ls11{letter-spacing:1.107000px;}
.ls18{letter-spacing:1.134000px;}
.ls10{letter-spacing:1.197000px;}
.ls72{letter-spacing:1.228500px;}
.ls7{letter-spacing:1.248000px;}
.lsd{letter-spacing:1.260000px;}
.lse{letter-spacing:1.291500px;}
.ls17{letter-spacing:1.323000px;}
.ls73{letter-spacing:1.354500px;}
.ls25{letter-spacing:1.386000px;}
.ls36{letter-spacing:1.449000px;}
.ls46{letter-spacing:1.488000px;}
.ls24{letter-spacing:1.512000px;}
.ls4f{letter-spacing:1.575000px;}
.ls5a{letter-spacing:1.638000px;}
.ls31{letter-spacing:1.701000px;}
.ls3c{letter-spacing:1.764000px;}
.ls57{letter-spacing:1.827000px;}
.ls66{letter-spacing:1.890000px;}
.ls6a{letter-spacing:1.953000px;}
.ls4e{letter-spacing:1.984500px;}
.ls47{letter-spacing:2.064000px;}
.ls5e{letter-spacing:2.079000px;}
.ls16{letter-spacing:2.100000px;}
.ls65{letter-spacing:2.205000px;}
.ls4b{letter-spacing:2.241000px;}
.ls68{letter-spacing:2.394000px;}
.ls61{letter-spacing:2.583000px;}
.ls49{letter-spacing:3.475200px;}
.ls30{letter-spacing:4.152000px;}
.ls3{letter-spacing:7.246800px;}
.ls50{letter-spacing:7.492800px;}
.ls5f{letter-spacing:8.694000px;}
.ls2c{letter-spacing:9.076800px;}
.ls5{letter-spacing:10.870200px;}
.ls2{letter-spacing:14.493600px;}
.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;}
}
.ws6c{word-spacing:-14.994000px;}
.ws111{word-spacing:-14.868000px;}
.wsd7{word-spacing:-14.742000px;}
.ws94{word-spacing:-14.553000px;}
.ws107{word-spacing:-14.521500px;}
.wsa0{word-spacing:-14.490000px;}
.ws129{word-spacing:-14.238000px;}
.wsfc{word-spacing:-14.112000px;}
.ws30{word-spacing:-13.923000px;}
.ws11d{word-spacing:-13.230000px;}
.ws14{word-spacing:-12.789000px;}
.wsf3{word-spacing:-12.447000px;}
.ws134{word-spacing:-12.420000px;}
.ws133{word-spacing:-12.366000px;}
.ws132{word-spacing:-12.312000px;}
.ws11e{word-spacing:-11.520000px;}
.ws2{word-spacing:-11.184000px;}
.ws0{word-spacing:-10.080000px;}
.wsd8{word-spacing:-9.312000px;}
.ws70{word-spacing:-7.452900px;}
.ws6d{word-spacing:-7.408800px;}
.ws45{word-spacing:-7.276500px;}
.ws67{word-spacing:-7.144200px;}
.ws34{word-spacing:-7.100100px;}
.ws32{word-spacing:-6.967800px;}
.ws43{word-spacing:-6.526800px;}
.ws83{word-spacing:-6.388200px;}
.ws26{word-spacing:-5.594400px;}
.wsc8{word-spacing:-1.323000px;}
.ws9e{word-spacing:-1.296000px;}
.wsc9{word-spacing:-1.260000px;}
.wsfb{word-spacing:-1.134000px;}
.ws100{word-spacing:-1.071000px;}
.ws55{word-spacing:-1.008000px;}
.ws1{word-spacing:-0.960000px;}
.ws56{word-spacing:-0.912000px;}
.wsa7{word-spacing:-0.882000px;}
.ws2e{word-spacing:-0.693000px;}
.wsec{word-spacing:-0.567000px;}
.ws124{word-spacing:-0.528000px;}
.wsfd{word-spacing:-0.378000px;}
.wse8{word-spacing:-0.315000px;}
.ws5b{word-spacing:-0.252000px;}
.ws9d{word-spacing:-0.096000px;}
.wsf0{word-spacing:-0.063000px;}
.ws3{word-spacing:0.000000px;}
.ws105{word-spacing:0.048000px;}
.ws5a{word-spacing:0.063000px;}
.wsb4{word-spacing:0.108000px;}
.ws8e{word-spacing:0.126000px;}
.ws138{word-spacing:0.162000px;}
.wsf9{word-spacing:0.189000px;}
.wsa8{word-spacing:0.216000px;}
.wsd6{word-spacing:0.270000px;}
.ws8c{word-spacing:0.378000px;}
.wsa2{word-spacing:0.441000px;}
.ws97{word-spacing:0.504000px;}
.ws93{word-spacing:0.540000px;}
.ws65{word-spacing:0.567000px;}
.ws57{word-spacing:0.576000px;}
.ws69{word-spacing:0.624000px;}
.wse7{word-spacing:0.630000px;}
.ws5c{word-spacing:0.693000px;}
.wsfe{word-spacing:0.756000px;}
.ws106{word-spacing:0.768000px;}
.wsdc{word-spacing:0.810000px;}
.wsef{word-spacing:0.819000px;}
.ws74{word-spacing:0.882000px;}
.ws125{word-spacing:0.912000px;}
.wsb3{word-spacing:0.918000px;}
.ws8a{word-spacing:0.945000px;}
.ws12{word-spacing:1.008000px;}
.ws1f{word-spacing:1.026000px;}
.ws128{word-spacing:1.056000px;}
.ws96{word-spacing:1.071000px;}
.ws1b{word-spacing:1.134000px;}
.ws7d{word-spacing:1.152000px;}
.ws115{word-spacing:1.197000px;}
.ws7f{word-spacing:1.200000px;}
.wse0{word-spacing:1.242000px;}
.ws3b{word-spacing:1.260000px;}
.ws2f{word-spacing:1.296000px;}
.ws8b{word-spacing:1.323000px;}
.ws126{word-spacing:1.344000px;}
.ws112{word-spacing:1.386000px;}
.ws13c{word-spacing:1.440000px;}
.wsc0{word-spacing:1.449000px;}
.ws46{word-spacing:1.512000px;}
.wsd5{word-spacing:1.566000px;}
.ws121{word-spacing:1.575000px;}
.wsdb{word-spacing:1.620000px;}
.wsf6{word-spacing:1.638000px;}
.wsc4{word-spacing:1.674000px;}
.ws3f{word-spacing:1.680000px;}
.ws29{word-spacing:1.701000px;}
.ws64{word-spacing:1.764000px;}
.ws6b{word-spacing:1.824000px;}
.wsca{word-spacing:1.827000px;}
.ws91{word-spacing:1.836000px;}
.ws9{word-spacing:1.872000px;}
.wsbf{word-spacing:1.890000px;}
.wse5{word-spacing:1.920000px;}
.ws136{word-spacing:1.944000px;}
.wsbb{word-spacing:1.953000px;}
.ws28{word-spacing:2.016000px;}
.wsd9{word-spacing:2.052000px;}
.ws110{word-spacing:2.064000px;}
.ws9b{word-spacing:2.079000px;}
.ws102{word-spacing:2.112000px;}
.ws4d{word-spacing:2.142000px;}
.ws42{word-spacing:2.160000px;}
.ws108{word-spacing:2.205000px;}
.ws118{word-spacing:2.208000px;}
.ws123{word-spacing:2.214000px;}
.ws19{word-spacing:2.268000px;}
.wse{word-spacing:2.304000px;}
.ws6{word-spacing:2.310000px;}
.wsb8{word-spacing:2.331000px;}
.wsb7{word-spacing:2.394000px;}
.ws6e{word-spacing:2.457000px;}
.ws137{word-spacing:2.484000px;}
.wsbd{word-spacing:2.496000px;}
.ws49{word-spacing:2.520000px;}
.wsa{word-spacing:2.544000px;}
.ws31{word-spacing:2.583000px;}
.ws5{word-spacing:2.640000px;}
.ws75{word-spacing:2.646000px;}
.wsfa{word-spacing:2.709000px;}
.wsc{word-spacing:2.784000px;}
.ws25{word-spacing:2.808000px;}
.wsee{word-spacing:2.835000px;}
.ws146{word-spacing:2.898000px;}
.ws48{word-spacing:2.961000px;}
.ws44{word-spacing:3.024000px;}
.ws4{word-spacing:3.060000px;}
.ws58{word-spacing:3.087000px;}
.ws90{word-spacing:3.132000px;}
.ws147{word-spacing:3.150000px;}
.ws66{word-spacing:3.213000px;}
.ws95{word-spacing:3.240000px;}
.ws1e{word-spacing:3.276000px;}
.ws76{word-spacing:3.294000px;}
.ws1a{word-spacing:3.339000px;}
.ws78{word-spacing:3.348000px;}
.ws41{word-spacing:3.360000px;}
.wseb{word-spacing:3.402000px;}
.ws54{word-spacing:3.408000px;}
.ws52{word-spacing:3.456000px;}
.ws61{word-spacing:3.465000px;}
.ws10{word-spacing:3.504000px;}
.ws143{word-spacing:3.528000px;}
.ws12f{word-spacing:3.552000px;}
.ws77{word-spacing:3.564000px;}
.ws10b{word-spacing:3.591000px;}
.ws35{word-spacing:3.654000px;}
.ws47{word-spacing:3.717000px;}
.wsd{word-spacing:3.792000px;}
.ws7e{word-spacing:3.840000px;}
.wsd3{word-spacing:3.843000px;}
.wsc3{word-spacing:3.906000px;}
.ws139{word-spacing:3.942000px;}
.ws120{word-spacing:3.969000px;}
.ws117{word-spacing:4.032000px;}
.ws40{word-spacing:4.080000px;}
.ws13f{word-spacing:4.095000px;}
.ws92{word-spacing:4.104000px;}
.ws4a{word-spacing:4.158000px;}
.wsda{word-spacing:4.212000px;}
.wsed{word-spacing:4.221000px;}
.ws82{word-spacing:4.266000px;}
.ws5f{word-spacing:4.284000px;}
.wsaf{word-spacing:4.320000px;}
.ws10a{word-spacing:4.347000px;}
.wsb6{word-spacing:4.410000px;}
.wsf2{word-spacing:4.416000px;}
.ws24{word-spacing:4.428000px;}
.ws4e{word-spacing:4.473000px;}
.wsab{word-spacing:4.536000px;}
.ws12a{word-spacing:4.599000px;}
.ws11f{word-spacing:4.644000px;}
.wsb9{word-spacing:4.662000px;}
.ws13a{word-spacing:4.698000px;}
.ws53{word-spacing:4.704000px;}
.wsf1{word-spacing:4.752000px;}
.wsc2{word-spacing:4.788000px;}
.wsb{word-spacing:4.800000px;}
.ws122{word-spacing:4.806000px;}
.ws131{word-spacing:4.896000px;}
.ws17{word-spacing:4.914000px;}
.wsad{word-spacing:4.968000px;}
.ws84{word-spacing:4.977000px;}
.wsdf{word-spacing:5.022000px;}
.ws27{word-spacing:5.040000px;}
.wsa6{word-spacing:5.076000px;}
.wsba{word-spacing:5.103000px;}
.wscd{word-spacing:5.130000px;}
.ws38{word-spacing:5.166000px;}
.ws12c{word-spacing:5.229000px;}
.ws127{word-spacing:5.280000px;}
.ws12d{word-spacing:5.292000px;}
.wsac{word-spacing:5.346000px;}
.wse9{word-spacing:5.355000px;}
.wsa5{word-spacing:5.454000px;}
.wsc7{word-spacing:5.472000px;}
.ws2c{word-spacing:5.481000px;}
.wsf4{word-spacing:5.544000px;}
.wscc{word-spacing:5.562000px;}
.ws68{word-spacing:5.568000px;}
.ws86{word-spacing:5.607000px;}
.ws10c{word-spacing:5.670000px;}
.ws2b{word-spacing:5.796000px;}
.ws81{word-spacing:5.856000px;}
.wse6{word-spacing:5.859000px;}
.ws3c{word-spacing:5.922000px;}
.ws99{word-spacing:5.985000px;}
.ws1d{word-spacing:6.048000px;}
.ws21{word-spacing:6.102000px;}
.wse3{word-spacing:6.111000px;}
.ws59{word-spacing:6.174000px;}
.ws9c{word-spacing:6.237000px;}
.wsf{word-spacing:6.288000px;}
.ws37{word-spacing:6.300000px;}
.ws11{word-spacing:6.336000px;}
.wsf8{word-spacing:6.426000px;}
.ws8{word-spacing:6.432000px;}
.wscb{word-spacing:6.489000px;}
.ws6a{word-spacing:6.528000px;}
.wse2{word-spacing:6.552000px;}
.ws8d{word-spacing:6.678000px;}
.wsaa{word-spacing:6.696000px;}
.ws13d{word-spacing:6.720000px;}
.wsea{word-spacing:6.741000px;}
.ws79{word-spacing:6.750000px;}
.wsf7{word-spacing:6.804000px;}
.ws1c{word-spacing:6.930000px;}
.wsc6{word-spacing:6.993000px;}
.ws12e{word-spacing:7.056000px;}
.ws33{word-spacing:7.119000px;}
.ws8f{word-spacing:7.128000px;}
.ws116{word-spacing:7.182000px;}
.ws4b{word-spacing:7.245000px;}
.wscf{word-spacing:7.308000px;}
.ws114{word-spacing:7.344000px;}
.ws73{word-spacing:7.371000px;}
.ws80{word-spacing:7.392000px;}
.ws39{word-spacing:7.434000px;}
.ws60{word-spacing:7.497000px;}
.ws23{word-spacing:7.506000px;}
.wsb5{word-spacing:7.560000px;}
.ws149{word-spacing:7.623000px;}
.wsff{word-spacing:7.686000px;}
.wsd2{word-spacing:7.749000px;}
.wsd1{word-spacing:7.812000px;}
.wsa9{word-spacing:7.830000px;}
.ws103{word-spacing:7.875000px;}
.ws13{word-spacing:7.920000px;}
.ws4f{word-spacing:7.938000px;}
.ws135{word-spacing:7.992000px;}
.ws3a{word-spacing:8.001000px;}
.ws10e{word-spacing:8.064000px;}
.ws51{word-spacing:8.112000px;}
.wsbc{word-spacing:8.160000px;}
.ws5e{word-spacing:8.190000px;}
.ws12b{word-spacing:8.253000px;}
.wsdd{word-spacing:8.262000px;}
.wsde{word-spacing:8.316000px;}
.ws98{word-spacing:8.379000px;}
.ws71{word-spacing:8.442000px;}
.wsc1{word-spacing:8.505000px;}
.ws6f{word-spacing:8.568000px;}
.ws104{word-spacing:8.631000px;}
.ws7c{word-spacing:8.640000px;}
.ws130{word-spacing:8.688000px;}
.ws3d{word-spacing:8.694000px;}
.ws4c{word-spacing:8.757000px;}
.ws119{word-spacing:8.820000px;}
.ws3e{word-spacing:8.832000px;}
.ws7a{word-spacing:8.910000px;}
.ws11c{word-spacing:8.946000px;}
.ws22{word-spacing:8.964000px;}
.ws142{word-spacing:9.009000px;}
.ws140{word-spacing:9.072000px;}
.wsb1{word-spacing:9.234000px;}
.wsc5{word-spacing:9.261000px;}
.wsa1{word-spacing:9.324000px;}
.ws2d{word-spacing:9.387000px;}
.wsb0{word-spacing:9.396000px;}
.ws63{word-spacing:9.450000px;}
.wsd4{word-spacing:9.504000px;}
.ws14a{word-spacing:9.513000px;}
.ws10d{word-spacing:9.576000px;}
.ws11a{word-spacing:9.639000px;}
.ws5d{word-spacing:9.702000px;}
.ws113{word-spacing:9.765000px;}
.wsa3{word-spacing:9.828000px;}
.ws101{word-spacing:9.891000px;}
.ws10f{word-spacing:9.954000px;}
.ws16{word-spacing:10.017000px;}
.ws109{word-spacing:10.080000px;}
.ws7{word-spacing:10.176000px;}
.wsb2{word-spacing:10.206000px;}
.ws62{word-spacing:10.269000px;}
.ws11b{word-spacing:10.332000px;}
.wse1{word-spacing:10.458000px;}
.ws9f{word-spacing:10.512000px;}
.ws36{word-spacing:10.647000px;}
.ws141{word-spacing:10.710000px;}
.ws148{word-spacing:10.773000px;}
.ws20{word-spacing:11.016000px;}
.wsae{word-spacing:11.070000px;}
.ws18{word-spacing:11.088000px;}
.ws7b{word-spacing:11.124000px;}
.wsa4{word-spacing:11.340000px;}
.ws144{word-spacing:11.466000px;}
.ws13e{word-spacing:11.529000px;}
.wse4{word-spacing:11.592000px;}
.ws13b{word-spacing:11.655000px;}
.ws50{word-spacing:11.718000px;}
.ws88{word-spacing:11.844000px;}
.wsbe{word-spacing:11.907000px;}
.ws87{word-spacing:11.970000px;}
.ws9a{word-spacing:12.096000px;}
.ws89{word-spacing:12.285000px;}
.wsce{word-spacing:12.537000px;}
.ws145{word-spacing:12.600000px;}
.wsd0{word-spacing:12.663000px;}
.wsf5{word-spacing:12.789000px;}
.ws72{word-spacing:12.978000px;}
.ws85{word-spacing:13.104000px;}
.ws2a{word-spacing:13.230000px;}
.ws15{word-spacing:50.148000px;}
._7{margin-left:-6.342000px;}
._14{margin-left:-5.057100px;}
._a{margin-left:-4.051200px;}
._9{margin-left:-2.880000px;}
._2{margin-left:-1.848000px;}
._1{width:1.092000px;}
._0{width:2.100000px;}
._1a{width:3.194100px;}
._e{width:4.507200px;}
._b{width:7.282800px;}
._1b{width:8.568000px;}
._5{width:15.168000px;}
._3{width:16.176000px;}
._12{width:22.368000px;}
._1c{width:24.480000px;}
._c{width:25.824000px;}
._17{width:27.312000px;}
._19{width:28.848000px;}
._13{width:30.576000px;}
._16{width:32.016000px;}
._11{width:33.552000px;}
._d{width:34.572000px;}
._15{width:46.998000px;}
._10{width:50.148000px;}
._18{width:51.471000px;}
._4{width:100.944000px;}
._8{width:497.574000px;}
._6{width:928.704000px;}
._f{width:1544.890800px;}
.fc2{color:rgb(84,141,212);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:24.000000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:37.800000px;}
.fs5{font-size:42.000000px;}
.fsa{font-size:44.100000px;}
.fs2{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y216{bottom:67.594050px;}
.y25d{bottom:67.797900px;}
.y46{bottom:68.031450px;}
.y215{bottom:82.594050px;}
.y45{bottom:83.031450px;}
.y25c{bottom:87.406650px;}
.y214{bottom:97.594050px;}
.y44{bottom:98.031450px;}
.y25b{bottom:107.015400px;}
.y67{bottom:113.031450px;}
.y25a{bottom:126.624150px;}
.y66{bottom:128.031450px;}
.y238{bottom:130.351650px;}
.y141{bottom:133.017150px;}
.y224{bottom:138.677550px;}
.y103{bottom:140.788650px;}
.y1f{bottom:141.583050px;}
.y65{bottom:143.031450px;}
.y259{bottom:146.232900px;}
.y43{bottom:146.836650px;}
.y237{bottom:149.850150px;}
.y140{bottom:150.270150px;}
.y1e{bottom:156.583050px;}
.y64{bottom:158.031450px;}
.y102{bottom:158.041650px;}
.y223{bottom:158.191050px;}
.y258{bottom:165.841650px;}
.y42{bottom:166.335150px;}
.y13f{bottom:167.523150px;}
.y236{bottom:169.348650px;}
.y1c9{bottom:169.360650px;}
.y86{bottom:173.031450px;}
.y101{bottom:175.294650px;}
.y211{bottom:175.339650px;}
.y222{bottom:177.689550px;}
.y162{bottom:180.589650px;}
.y13e{bottom:184.776150px;}
.y130{bottom:185.086650px;}
.y257{bottom:185.450400px;}
.y41{bottom:185.833650px;}
.y1d{bottom:185.971050px;}
.y85{bottom:188.031450px;}
.y1a7{bottom:188.838150px;}
.y235{bottom:188.847150px;}
.y1c8{bottom:188.859150px;}
.ycf{bottom:191.210400px;}
.y100{bottom:192.547650px;}
.y210{bottom:194.838150px;}
.y221{bottom:197.188050px;}
.y161{bottom:200.088150px;}
.y1c{bottom:200.971050px;}
.y84{bottom:203.031450px;}
.y12f{bottom:204.585150px;}
.y256{bottom:205.059150px;}
.y40{bottom:205.332150px;}
.y1a6{bottom:208.336650px;}
.y234{bottom:208.345650px;}
.y19a{bottom:208.348650px;}
.y1c7{bottom:208.357650px;}
.yce{bottom:208.463400px;}
.yff{bottom:209.800650px;}
.y20f{bottom:214.336650px;}
.y63{bottom:215.854650px;}
.y220{bottom:216.686550px;}
.y83{bottom:218.031450px;}
.y13d{bottom:219.294150px;}
.y160{bottom:219.586650px;}
.y1b8{bottom:224.074650px;}
.y12e{bottom:224.083650px;}
.y255{bottom:224.667900px;}
.y3f{bottom:224.830650px;}
.ycd{bottom:225.716400px;}
.yfe{bottom:227.053650px;}
.y1b{bottom:227.155050px;}
.y1a5{bottom:227.835150px;}
.y233{bottom:227.844150px;}
.y199{bottom:227.847150px;}
.y1f8{bottom:227.851650px;}
.y1c6{bottom:227.856150px;}
.y82{bottom:233.031450px;}
.y20e{bottom:233.835150px;}
.y62{bottom:235.353150px;}
.y21f{bottom:236.185050px;}
.y11c{bottom:236.976900px;}
.y13c{bottom:238.792650px;}
.y15f{bottom:239.085150px;}
.y153{bottom:239.226900px;}
.y1a{bottom:242.155050px;}
.ycc{bottom:242.969400px;}
.y1b7{bottom:243.573150px;}
.y12d{bottom:243.582150px;}
.y254{bottom:244.276650px;}
.yfd{bottom:244.306650px;}
.y3e{bottom:244.329150px;}
.y174{bottom:245.803650px;}
.y9c{bottom:247.327650px;}
.y1a4{bottom:247.333650px;}
.y183{bottom:247.341150px;}
.y232{bottom:247.342650px;}
.y198{bottom:247.345650px;}
.y1f7{bottom:247.350150px;}
.y1c5{bottom:247.354650px;}
.y81{bottom:248.031450px;}
.y20d{bottom:253.333650px;}
.y61{bottom:254.851650px;}
.y21e{bottom:255.683550px;}
.y11b{bottom:256.499400px;}
.y1e2{bottom:257.062650px;}
.y19{bottom:257.155050px;}
.y13b{bottom:258.291150px;}
.y15e{bottom:258.583650px;}
.y152{bottom:258.737400px;}
.yb0{bottom:259.285650px;}
.ycb{bottom:260.222400px;}
.yfc{bottom:261.559650px;}
.y80{bottom:263.031450px;}
.y173{bottom:263.056650px;}
.y12c{bottom:263.080650px;}
.y1b6{bottom:263.085150px;}
.y3d{bottom:263.827650px;}
.y253{bottom:263.885400px;}
.y9b{bottom:266.826150px;}
.y1a3{bottom:266.832150px;}
.y182{bottom:266.839650px;}
.y231{bottom:266.841150px;}
.y197{bottom:266.844150px;}
.y1f6{bottom:266.848650px;}
.y1c4{bottom:266.853150px;}
.y18{bottom:272.155050px;}
.y20c{bottom:272.832150px;}
.y1e1{bottom:274.315650px;}
.y60{bottom:274.350150px;}
.y21d{bottom:275.182050px;}
.y11a{bottom:275.997900px;}
.yaf{bottom:276.538650px;}
.yca{bottom:277.475400px;}
.y13a{bottom:277.789650px;}
.y7f{bottom:278.031450px;}
.y15d{bottom:278.082150px;}
.y151{bottom:278.235900px;}
.yfb{bottom:278.812650px;}
.ye8{bottom:279.734400px;}
.y172{bottom:280.309650px;}
.y12b{bottom:282.579150px;}
.y1b5{bottom:282.583650px;}
.y3c{bottom:283.326150px;}
.y252{bottom:283.494150px;}
.y9a{bottom:286.324650px;}
.y1a2{bottom:286.330650px;}
.y181{bottom:286.338150px;}
.y230{bottom:286.339650px;}
.y196{bottom:286.342650px;}
.y1f5{bottom:286.347150px;}
.y1c3{bottom:286.351650px;}
.y17{bottom:287.155050px;}
.y1e0{bottom:291.568650px;}
.y20b{bottom:292.330650px;}
.y7e{bottom:293.031450px;}
.yae{bottom:293.791650px;}
.y5f{bottom:293.848650px;}
.y21c{bottom:294.680550px;}
.y119{bottom:295.496400px;}
.yfa{bottom:296.065650px;}
.y139{bottom:297.288150px;}
.y171{bottom:297.562650px;}
.y15c{bottom:297.580650px;}
.y150{bottom:297.734400px;}
.ye7{bottom:299.232900px;}
.y12a{bottom:302.077650px;}
.y1b4{bottom:302.082150px;}
.y16{bottom:302.155050px;}
.y3b{bottom:302.824650px;}
.y251{bottom:303.102900px;}
.y99{bottom:305.823150px;}
.y1a1{bottom:305.829150px;}
.y180{bottom:305.836650px;}
.y22f{bottom:305.838150px;}
.y195{bottom:305.841150px;}
.y1f4{bottom:305.845650px;}
.y1c2{bottom:305.850150px;}
.y7d{bottom:308.031450px;}
.y1df{bottom:308.821650px;}
.yad{bottom:311.044650px;}
.y20a{bottom:311.829150px;}
.yc9{bottom:311.985900px;}
.yf9{bottom:313.318650px;}
.y5e{bottom:313.347150px;}
.y21b{bottom:314.179050px;}
.y170{bottom:314.815650px;}
.y118{bottom:314.994900px;}
.y138{bottom:316.786650px;}
.y15b{bottom:317.079150px;}
.y15{bottom:317.155050px;}
.y14f{bottom:317.232900px;}
.ye6{bottom:318.731400px;}
.y129{bottom:321.576150px;}
.y1b3{bottom:321.580650px;}
.y3a{bottom:322.323150px;}
.y250{bottom:322.711650px;}
.y7c{bottom:323.031450px;}
.y98{bottom:325.321650px;}
.y1a0{bottom:325.327650px;}
.y17f{bottom:325.335150px;}
.y22e{bottom:325.336650px;}
.y194{bottom:325.339650px;}
.y1f3{bottom:325.344150px;}
.y1c1{bottom:325.348650px;}
.yac{bottom:328.297650px;}
.yf8{bottom:330.571650px;}
.y209{bottom:331.327650px;}
.yc8{bottom:331.484400px;}
.y16f{bottom:332.068650px;}
.y14{bottom:332.155050px;}
.y5d{bottom:332.845650px;}
.y21a{bottom:333.677550px;}
.y117{bottom:334.493400px;}
.y137{bottom:336.285150px;}
.y15a{bottom:336.577650px;}
.y14e{bottom:336.731400px;}
.ye5{bottom:338.229900px;}
.y128{bottom:341.074650px;}
.y1b2{bottom:341.079150px;}
.y39{bottom:341.821650px;}
.y24f{bottom:342.320400px;}
.y1de{bottom:343.329150px;}
.y19f{bottom:344.826150px;}
.y17e{bottom:344.833650px;}
.y22d{bottom:344.835150px;}
.y193{bottom:344.838150px;}
.y1f2{bottom:344.842650px;}
.y1c0{bottom:344.847150px;}
.yab{bottom:345.550650px;}
.y13{bottom:347.155050px;}
.y16e{bottom:349.321650px;}
.y208{bottom:350.826150px;}
.yc7{bottom:350.982900px;}
.y5c{bottom:352.344150px;}
.y219{bottom:353.176050px;}
.y116{bottom:353.991900px;}
.y136{bottom:355.783650px;}
.y159{bottom:356.076150px;}
.y14d{bottom:356.229900px;}
.ye4{bottom:357.728400px;}
.y127{bottom:360.573150px;}
.y1b1{bottom:360.577650px;}
.y24e{bottom:361.929150px;}
.y12{bottom:362.155050px;}
.yaa{bottom:362.803650px;}
.y1dd{bottom:362.827650px;}
.y19e{bottom:364.324650px;}
.y97{bottom:364.326150px;}
.y17d{bottom:364.332150px;}
.y22c{bottom:364.333650px;}
.y192{bottom:364.336650px;}
.y1f1{bottom:364.341150px;}
.y1bf{bottom:364.345650px;}
.yf7{bottom:365.076150px;}
.y207{bottom:370.324650px;}
.yc6{bottom:370.481400px;}
.y5b{bottom:371.842650px;}
.y115{bottom:373.490400px;}
.y38{bottom:374.800650px;}
.y135{bottom:375.282150px;}
.y158{bottom:375.574650px;}
.y14c{bottom:375.728400px;}
.ye3{bottom:377.226900px;}
.ya9{bottom:380.056650px;}
.y126{bottom:380.071650px;}
.y1b0{bottom:380.076150px;}
.y24d{bottom:381.537900px;}
.y1dc{bottom:382.326150px;}
.y16d{bottom:383.823150px;}
.y7b{bottom:383.829150px;}
.y17c{bottom:383.830650px;}
.y22b{bottom:383.832150px;}
.y191{bottom:383.835150px;}
.y1f0{bottom:383.839650px;}
.y1be{bottom:383.844150px;}
.yf6{bottom:384.574650px;}
.y206{bottom:389.823150px;}
.yc5{bottom:389.979900px;}
.y5a{bottom:391.341150px;}
.y11{bottom:391.543050px;}
.y37{bottom:392.053650px;}
.y114{bottom:392.988900px;}
.y134{bottom:394.780650px;}
.y157{bottom:395.073150px;}
.y14b{bottom:395.226900px;}
.ye2{bottom:396.731400px;}
.ya8{bottom:397.309650px;}
.y1af{bottom:399.574650px;}
.y24c{bottom:401.146650px;}
.y1db{bottom:401.824650px;}
.y218{bottom:402.676050px;}
.y19d{bottom:403.326150px;}
.y7a{bottom:403.327650px;}
.y17b{bottom:403.329150px;}
.y22a{bottom:403.330650px;}
.y190{bottom:403.333650px;}
.y16c{bottom:403.336650px;}
.y1ef{bottom:403.338150px;}
.y1bd{bottom:403.342650px;}
.yf5{bottom:404.073150px;}
.y10{bottom:406.543050px;}
.y36{bottom:409.306650px;}
.y205{bottom:409.321650px;}
.yc4{bottom:409.478400px;}
.y59{bottom:410.839650px;}
.y113{bottom:412.487400px;}
.y133{bottom:414.279150px;}
.ya7{bottom:414.562650px;}
.y156{bottom:414.571650px;}
.y14a{bottom:414.735900px;}
.y213{bottom:416.121750px;}
.ye1{bottom:416.229900px;}
.y125{bottom:416.809650px;}
.y217{bottom:417.676050px;}
.y1ae{bottom:419.073150px;}
.y24b{bottom:420.755400px;}
.y1da{bottom:421.323150px;}
.yf{bottom:421.543050px;}
.y19c{bottom:422.824650px;}
.y79{bottom:422.826150px;}
.y17a{bottom:422.827650px;}
.y229{bottom:422.829150px;}
.y18f{bottom:422.832150px;}
.y16b{bottom:422.835150px;}
.y1ee{bottom:422.836650px;}
.y1bc{bottom:422.841150px;}
.y96{bottom:422.845650px;}
.yf4{bottom:423.571650px;}
.y35{bottom:426.559650px;}
.yc3{bottom:428.976900px;}
.y212{bottom:431.121750px;}
.ya6{bottom:431.815650px;}
.y112{bottom:431.985900px;}
.y132{bottom:433.777650px;}
.y124{bottom:434.062650px;}
.y149{bottom:434.234400px;}
.ye0{bottom:435.728400px;}
.ye{bottom:436.543050px;}
.y1ad{bottom:438.571650px;}
.y24a{bottom:440.364150px;}
.y1d9{bottom:440.829150px;}
.y19b{bottom:442.323150px;}
.y78{bottom:442.324650px;}
.y179{bottom:442.326150px;}
.y228{bottom:442.327650px;}
.y18e{bottom:442.330650px;}
.y16a{bottom:442.333650px;}
.y1ed{bottom:442.335150px;}
.y1bb{bottom:442.339650px;}
.y95{bottom:442.344150px;}
.y34{bottom:443.812650px;}
.y58{bottom:445.332150px;}
.y204{bottom:446.020650px;}
.yc2{bottom:448.494900px;}
.ya5{bottom:449.068650px;}
.y123{bottom:451.315650px;}
.y111{bottom:451.484400px;}
.y131{bottom:453.276150px;}
.y148{bottom:453.732900px;}
.ydf{bottom:455.226900px;}
.y249{bottom:459.972900px;}
.yf3{bottom:460.303650px;}
.y1d8{bottom:460.327650px;}
.y33{bottom:461.065650px;}
.y77{bottom:461.823150px;}
.y178{bottom:461.824650px;}
.y227{bottom:461.826150px;}
.y18d{bottom:461.829150px;}
.y169{bottom:461.832150px;}
.y1ec{bottom:461.833650px;}
.y1ba{bottom:461.838150px;}
.y94{bottom:461.842650px;}
.y203{bottom:463.273650px;}
.ya4{bottom:466.321650px;}
.yc1{bottom:467.993400px;}
.y122{bottom:468.568650px;}
.y110{bottom:470.982900px;}
.y147{bottom:473.231400px;}
.yde{bottom:474.737400px;}
.y1ac{bottom:475.309650px;}
.yf2{bottom:477.556650px;}
.y32{bottom:478.318650px;}
.y248{bottom:479.581650px;}
.y1d7{bottom:479.826150px;}
.y202{bottom:480.526650px;}
.y177{bottom:481.323150px;}
.y226{bottom:481.324650px;}
.y18c{bottom:481.327650px;}
.y168{bottom:481.330650px;}
.y1eb{bottom:481.332150px;}
.y1b9{bottom:481.336650px;}
.y76{bottom:481.339650px;}
.y93{bottom:481.341150px;}
.y121{bottom:485.821650px;}
.yc0{bottom:487.491900px;}
.y10f{bottom:490.481400px;}
.y1ab{bottom:492.562650px;}
.y146{bottom:492.729900px;}
.ydd{bottom:494.235900px;}
.yf1{bottom:494.809650px;}
.y31{bottom:495.571650px;}
.y201{bottom:497.779650px;}
.y247{bottom:499.190400px;}
.y1d6{bottom:499.324650px;}
.y225{bottom:500.823150px;}
.y176{bottom:500.824650px;}
.y18b{bottom:500.826150px;}
.y167{bottom:500.829150px;}
.y1ea{bottom:500.830650px;}
.ya3{bottom:500.832150px;}
.y57{bottom:500.835150px;}
.y75{bottom:500.838150px;}
.y92{bottom:500.839650px;}
.ybf{bottom:506.990400px;}
.y1aa{bottom:509.815650px;}
.y10e{bottom:509.979900px;}
.yf0{bottom:512.062650px;}
.y145{bottom:512.228400px;}
.ydc{bottom:513.734400px;}
.y200{bottom:515.032650px;}
.y246{bottom:518.799150px;}
.y1d5{bottom:518.823150px;}
.y175{bottom:520.323150px;}
.y155{bottom:520.324650px;}
.y166{bottom:520.327650px;}
.y1e9{bottom:520.329150px;}
.ya2{bottom:520.330650px;}
.y56{bottom:520.333650px;}
.y74{bottom:520.336650px;}
.y91{bottom:520.338150px;}
.y120{bottom:520.342650px;}
.yd{bottom:523.468800px;}
.y30{bottom:524.847150px;}
.ybe{bottom:526.488900px;}
.y1a9{bottom:527.068650px;}
.yef{bottom:529.315650px;}
.y10d{bottom:529.478400px;}
.y144{bottom:531.726900px;}
.y1ff{bottom:532.285650px;}
.ydb{bottom:533.232900px;}
.yc{bottom:536.971800px;}
.y1d4{bottom:538.327650px;}
.y245{bottom:538.407900px;}
.y154{bottom:539.823150px;}
.y165{bottom:539.826150px;}
.y1e8{bottom:539.827650px;}
.ya1{bottom:539.829150px;}
.y55{bottom:539.832150px;}
.y73{bottom:539.835150px;}
.y90{bottom:539.836650px;}
.y11f{bottom:539.841150px;}
.y1a8{bottom:544.321650px;}
.y2f{bottom:544.345650px;}
.ybd{bottom:545.987400px;}
.yee{bottom:546.568650px;}
.y10c{bottom:548.976900px;}
.y1fe{bottom:549.538650px;}
.yb{bottom:550.474800px;}
.y143{bottom:551.225400px;}
.yda{bottom:552.731400px;}
.y1d3{bottom:557.826150px;}
.y244{bottom:558.016650px;}
.y164{bottom:559.324650px;}
.y1e7{bottom:559.326150px;}
.ya0{bottom:559.327650px;}
.y54{bottom:559.330650px;}
.y72{bottom:559.333650px;}
.y8f{bottom:559.335150px;}
.y18a{bottom:559.338150px;}
.y11e{bottom:559.339650px;}
.yed{bottom:563.821650px;}
.y2e{bottom:563.844150px;}
.ybc{bottom:565.485900px;}
.y1fd{bottom:566.791650px;}
.y10b{bottom:568.475400px;}
.yd9{bottom:572.229900px;}
.y1d2{bottom:577.324650px;}
.y243{bottom:577.625400px;}
.y163{bottom:578.823150px;}
.y1e6{bottom:578.824650px;}
.y9f{bottom:578.826150px;}
.y53{bottom:578.829150px;}
.y71{bottom:578.832150px;}
.y8e{bottom:578.833650px;}
.y189{bottom:578.836650px;}
.y11d{bottom:578.838150px;}
.y2d{bottom:583.342650px;}
.y1fc{bottom:584.044650px;}
.ybb{bottom:584.984400px;}
.y142{bottom:587.939400px;}
.ya{bottom:591.149100px;}
.yd8{bottom:591.728400px;}
.y1d1{bottom:596.823150px;}
.y242{bottom:597.234150px;}
.y1e5{bottom:598.323150px;}
.y9e{bottom:598.324650px;}
.y52{bottom:598.327650px;}
.y70{bottom:598.330650px;}
.y8d{bottom:598.332150px;}
.y188{bottom:598.335150px;}
.yec{bottom:598.336650px;}
.y1fb{bottom:601.297650px;}
.y2c{bottom:602.841150px;}
.yba{bottom:604.482900px;}
.y10a{bottom:605.192400px;}
.y9{bottom:606.149100px;}
.yd7{bottom:611.226900px;}
.y1d0{bottom:616.321650px;}
.y241{bottom:616.842900px;}
.y9d{bottom:617.823150px;}
.y1e4{bottom:617.824650px;}
.y51{bottom:617.826150px;}
.y6f{bottom:617.829150px;}
.y8c{bottom:617.830650px;}
.y187{bottom:617.833650px;}
.yeb{bottom:617.835150px;}
.y1fa{bottom:618.550650px;}
.y8{bottom:621.149100px;}
.y2b{bottom:622.339650px;}
.y109{bottom:622.445400px;}
.yb9{bottom:623.981400px;}
.yd6{bottom:630.726900px;}
.y1f9{bottom:635.803650px;}
.y7{bottom:636.149100px;}
.y240{bottom:636.451650px;}
.y1e3{bottom:637.323150px;}
.y50{bottom:637.324650px;}
.y6e{bottom:637.327650px;}
.y8b{bottom:637.329150px;}
.y186{bottom:637.332150px;}
.yea{bottom:637.333650px;}
.y108{bottom:639.698400px;}
.y2a{bottom:641.838150px;}
.yb8{bottom:643.479900px;}
.yd5{bottom:650.228400px;}
.y6{bottom:651.149100px;}
.y1cf{bottom:653.056650px;}
.y23f{bottom:656.060400px;}
.y4f{bottom:656.823150px;}
.y6d{bottom:656.826150px;}
.y8a{bottom:656.827650px;}
.y185{bottom:656.830650px;}
.ye9{bottom:656.832150px;}
.y107{bottom:656.951400px;}
.y29{bottom:661.336650px;}
.yb7{bottom:662.978400px;}
.y5{bottom:666.149100px;}
.yd4{bottom:669.726900px;}
.y1ce{bottom:670.309650px;}
.y106{bottom:674.204400px;}
.y23e{bottom:675.669150px;}
.y6c{bottom:676.324650px;}
.y89{bottom:676.326150px;}
.y184{bottom:676.329150px;}
.y4e{bottom:676.330650px;}
.y28{bottom:680.835150px;}
.yb6{bottom:682.476900px;}
.y1cd{bottom:687.562650px;}
.y4{bottom:688.649550px;}
.yd3{bottom:689.225400px;}
.y105{bottom:691.457400px;}
.y23d{bottom:695.277900px;}
.y6b{bottom:695.823150px;}
.y88{bottom:695.824650px;}
.y4d{bottom:695.829150px;}
.y27{bottom:700.333650px;}
.yb5{bottom:701.978400px;}
.y1cc{bottom:704.815650px;}
.y104{bottom:708.710400px;}
.y23c{bottom:714.886650px;}
.y87{bottom:715.323150px;}
.y6a{bottom:715.326150px;}
.y4c{bottom:715.327650px;}
.y26{bottom:719.832150px;}
.yb4{bottom:721.476900px;}
.y1cb{bottom:722.068650px;}
.yd2{bottom:725.963400px;}
.y23b{bottom:734.495400px;}
.y69{bottom:734.824650px;}
.y4b{bottom:734.826150px;}
.y1ca{bottom:739.321650px;}
.y25{bottom:739.330650px;}
.yb3{bottom:740.975400px;}
.y3{bottom:741.141600px;}
.yd1{bottom:743.216400px;}
.y23a{bottom:754.104150px;}
.y68{bottom:754.323150px;}
.y4a{bottom:754.324650px;}
.y24{bottom:758.829150px;}
.yd0{bottom:760.469400px;}
.y2{bottom:765.144600px;}
.y239{bottom:773.712900px;}
.y49{bottom:773.823150px;}
.yb2{bottom:777.722400px;}
.y1{bottom:789.147600px;}
.y23{bottom:793.321650px;}
.yb1{bottom:794.975400px;}
.y48{bottom:841.007700px;}
.y21{bottom:841.009800px;}
.y22{bottom:848.774400px;}
.y47{bottom:859.007700px;}
.y20{bottom:859.009800px;}
.h7{height:29.400000px;}
.h5{height:34.566000px;}
.h24{height:38.610000px;}
.h4{height:39.504000px;}
.h6{height:39.696000px;}
.hb{height:44.334000px;}
.h9{height:44.478000px;}
.h17{height:48.865800px;}
.h21{height:48.877800px;}
.h26{height:48.889800px;}
.h1a{height:48.901800px;}
.h25{height:48.913800px;}
.h1c{height:48.925800px;}
.hc{height:48.937800px;}
.h1d{height:48.985800px;}
.h1f{height:48.997800px;}
.h27{height:49.057800px;}
.h3{height:49.980000px;}
.h8{height:50.400000px;}
.ha{height:51.723000px;}
.h15{height:51.906600px;}
.h14{height:56.900100px;}
.h28{height:56.912100px;}
.h19{height:56.918100px;}
.h12{height:56.924100px;}
.h23{height:56.930100px;}
.h1e{height:56.936100px;}
.h22{height:56.942100px;}
.h1b{height:56.948100px;}
.h20{height:56.954100px;}
.hf{height:56.960100px;}
.h13{height:56.966100px;}
.h16{height:56.972100px;}
.h11{height:56.978100px;}
.h18{height:56.984100px;}
.h10{height:56.990100px;}
.he{height:56.996100px;}
.h29{height:58.716000px;}
.h2{height:69.972000px;}
.hd{height:81.469800px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x5{left:70.277400px;}
.x2{left:74.409450px;}
.x6{left:95.669250px;}
.x1{left:98.407500px;}
.xa{left:103.182300px;}
.xd{left:110.055600px;}
.x9{left:124.441950px;}
.xb{left:131.954850px;}
.x8{left:153.219000px;}
.xc{left:160.727700px;}
.x7{left:181.987500px;}
.x3{left:297.634200px;}
.x4{left:475.703700px;}
@media print{
.v4{vertical-align:-18.480000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.914667pt;}
.v3{vertical-align:18.480000pt;}
.v2{vertical-align:27.617600pt;}
.ls19{letter-spacing:-0.504000pt;}
.ls1b{letter-spacing:-0.392000pt;}
.ls6b{letter-spacing:-0.256000pt;}
.ls5b{letter-spacing:-0.224000pt;}
.ls6d{letter-spacing:-0.213333pt;}
.ls28{letter-spacing:-0.168000pt;}
.ls6c{letter-spacing:-0.117600pt;}
.ls35{letter-spacing:-0.112000pt;}
.ls1c{letter-spacing:-0.085333pt;}
.ls53{letter-spacing:-0.056000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls48{letter-spacing:0.042667pt;}
.ls58{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.056000pt;}
.ls2b{letter-spacing:0.085333pt;}
.ls32{letter-spacing:0.112000pt;}
.ls52{letter-spacing:0.117600pt;}
.ls70{letter-spacing:0.128000pt;}
.ls62{letter-spacing:0.144000pt;}
.ls13{letter-spacing:0.168000pt;}
.ls15{letter-spacing:0.170667pt;}
.ls64{letter-spacing:0.201600pt;}
.ls67{letter-spacing:0.213333pt;}
.ls40{letter-spacing:0.224000pt;}
.ls60{letter-spacing:0.252000pt;}
.ls41{letter-spacing:0.256000pt;}
.ls5c{letter-spacing:0.280000pt;}
.ls63{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.336000pt;}
.ls26{letter-spacing:0.341333pt;}
.ls29{letter-spacing:0.364000pt;}
.ls38{letter-spacing:0.384000pt;}
.ls21{letter-spacing:0.392000pt;}
.ls20{letter-spacing:0.420000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls5d{letter-spacing:0.431200pt;}
.ls1e{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.469333pt;}
.ls23{letter-spacing:0.504000pt;}
.ls2a{letter-spacing:0.512000pt;}
.ls3a{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls2d{letter-spacing:0.554667pt;}
.ls12{letter-spacing:0.560000pt;}
.ls3d{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.588000pt;}
.ls34{letter-spacing:0.597333pt;}
.ls1a{letter-spacing:0.616000pt;}
.ls4c{letter-spacing:0.624000pt;}
.ls27{letter-spacing:0.640000pt;}
.ls43{letter-spacing:0.648000pt;}
.ls69{letter-spacing:0.661333pt;}
.lsf{letter-spacing:0.672000pt;}
.ls42{letter-spacing:0.705600pt;}
.ls56{letter-spacing:0.720000pt;}
.ls2e{letter-spacing:0.725333pt;}
.ls45{letter-spacing:0.728000pt;}
.ls55{letter-spacing:0.744000pt;}
.ls0{letter-spacing:0.746667pt;}
.ls3f{letter-spacing:0.756000pt;}
.ls4d{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.784000pt;}
.ls8{letter-spacing:0.810667pt;}
.ls44{letter-spacing:0.816000pt;}
.ls3b{letter-spacing:0.823200pt;}
.ls33{letter-spacing:0.840000pt;}
.ls2f{letter-spacing:0.853333pt;}
.ls3e{letter-spacing:0.862400pt;}
.ls6f{letter-spacing:0.864000pt;}
.ls54{letter-spacing:0.868000pt;}
.ls6e{letter-spacing:0.888000pt;}
.ls4{letter-spacing:0.896000pt;}
.ls37{letter-spacing:0.901600pt;}
.ls39{letter-spacing:0.912000pt;}
.ls71{letter-spacing:0.924000pt;}
.ls59{letter-spacing:0.938667pt;}
.ls14{letter-spacing:0.952000pt;}
.ls4a{letter-spacing:0.960000pt;}
.ls51{letter-spacing:0.962133pt;}
.lsa{letter-spacing:0.981333pt;}
.ls11{letter-spacing:0.984000pt;}
.ls18{letter-spacing:1.008000pt;}
.ls10{letter-spacing:1.064000pt;}
.ls72{letter-spacing:1.092000pt;}
.ls7{letter-spacing:1.109333pt;}
.lsd{letter-spacing:1.120000pt;}
.lse{letter-spacing:1.148000pt;}
.ls17{letter-spacing:1.176000pt;}
.ls73{letter-spacing:1.204000pt;}
.ls25{letter-spacing:1.232000pt;}
.ls36{letter-spacing:1.288000pt;}
.ls46{letter-spacing:1.322667pt;}
.ls24{letter-spacing:1.344000pt;}
.ls4f{letter-spacing:1.400000pt;}
.ls5a{letter-spacing:1.456000pt;}
.ls31{letter-spacing:1.512000pt;}
.ls3c{letter-spacing:1.568000pt;}
.ls57{letter-spacing:1.624000pt;}
.ls66{letter-spacing:1.680000pt;}
.ls6a{letter-spacing:1.736000pt;}
.ls4e{letter-spacing:1.764000pt;}
.ls47{letter-spacing:1.834667pt;}
.ls5e{letter-spacing:1.848000pt;}
.ls16{letter-spacing:1.866667pt;}
.ls65{letter-spacing:1.960000pt;}
.ls4b{letter-spacing:1.992000pt;}
.ls68{letter-spacing:2.128000pt;}
.ls61{letter-spacing:2.296000pt;}
.ls49{letter-spacing:3.089067pt;}
.ls30{letter-spacing:3.690667pt;}
.ls3{letter-spacing:6.441600pt;}
.ls50{letter-spacing:6.660267pt;}
.ls5f{letter-spacing:7.728000pt;}
.ls2c{letter-spacing:8.068267pt;}
.ls5{letter-spacing:9.662400pt;}
.ls2{letter-spacing:12.883200pt;}
.ws6c{word-spacing:-13.328000pt;}
.ws111{word-spacing:-13.216000pt;}
.wsd7{word-spacing:-13.104000pt;}
.ws94{word-spacing:-12.936000pt;}
.ws107{word-spacing:-12.908000pt;}
.wsa0{word-spacing:-12.880000pt;}
.ws129{word-spacing:-12.656000pt;}
.wsfc{word-spacing:-12.544000pt;}
.ws30{word-spacing:-12.376000pt;}
.ws11d{word-spacing:-11.760000pt;}
.ws14{word-spacing:-11.368000pt;}
.wsf3{word-spacing:-11.064000pt;}
.ws134{word-spacing:-11.040000pt;}
.ws133{word-spacing:-10.992000pt;}
.ws132{word-spacing:-10.944000pt;}
.ws11e{word-spacing:-10.240000pt;}
.ws2{word-spacing:-9.941333pt;}
.ws0{word-spacing:-8.960000pt;}
.wsd8{word-spacing:-8.277333pt;}
.ws70{word-spacing:-6.624800pt;}
.ws6d{word-spacing:-6.585600pt;}
.ws45{word-spacing:-6.468000pt;}
.ws67{word-spacing:-6.350400pt;}
.ws34{word-spacing:-6.311200pt;}
.ws32{word-spacing:-6.193600pt;}
.ws43{word-spacing:-5.801600pt;}
.ws83{word-spacing:-5.678400pt;}
.ws26{word-spacing:-4.972800pt;}
.wsc8{word-spacing:-1.176000pt;}
.ws9e{word-spacing:-1.152000pt;}
.wsc9{word-spacing:-1.120000pt;}
.wsfb{word-spacing:-1.008000pt;}
.ws100{word-spacing:-0.952000pt;}
.ws55{word-spacing:-0.896000pt;}
.ws1{word-spacing:-0.853333pt;}
.ws56{word-spacing:-0.810667pt;}
.wsa7{word-spacing:-0.784000pt;}
.ws2e{word-spacing:-0.616000pt;}
.wsec{word-spacing:-0.504000pt;}
.ws124{word-spacing:-0.469333pt;}
.wsfd{word-spacing:-0.336000pt;}
.wse8{word-spacing:-0.280000pt;}
.ws5b{word-spacing:-0.224000pt;}
.ws9d{word-spacing:-0.085333pt;}
.wsf0{word-spacing:-0.056000pt;}
.ws3{word-spacing:0.000000pt;}
.ws105{word-spacing:0.042667pt;}
.ws5a{word-spacing:0.056000pt;}
.wsb4{word-spacing:0.096000pt;}
.ws8e{word-spacing:0.112000pt;}
.ws138{word-spacing:0.144000pt;}
.wsf9{word-spacing:0.168000pt;}
.wsa8{word-spacing:0.192000pt;}
.wsd6{word-spacing:0.240000pt;}
.ws8c{word-spacing:0.336000pt;}
.wsa2{word-spacing:0.392000pt;}
.ws97{word-spacing:0.448000pt;}
.ws93{word-spacing:0.480000pt;}
.ws65{word-spacing:0.504000pt;}
.ws57{word-spacing:0.512000pt;}
.ws69{word-spacing:0.554667pt;}
.wse7{word-spacing:0.560000pt;}
.ws5c{word-spacing:0.616000pt;}
.wsfe{word-spacing:0.672000pt;}
.ws106{word-spacing:0.682667pt;}
.wsdc{word-spacing:0.720000pt;}
.wsef{word-spacing:0.728000pt;}
.ws74{word-spacing:0.784000pt;}
.ws125{word-spacing:0.810667pt;}
.wsb3{word-spacing:0.816000pt;}
.ws8a{word-spacing:0.840000pt;}
.ws12{word-spacing:0.896000pt;}
.ws1f{word-spacing:0.912000pt;}
.ws128{word-spacing:0.938667pt;}
.ws96{word-spacing:0.952000pt;}
.ws1b{word-spacing:1.008000pt;}
.ws7d{word-spacing:1.024000pt;}
.ws115{word-spacing:1.064000pt;}
.ws7f{word-spacing:1.066667pt;}
.wse0{word-spacing:1.104000pt;}
.ws3b{word-spacing:1.120000pt;}
.ws2f{word-spacing:1.152000pt;}
.ws8b{word-spacing:1.176000pt;}
.ws126{word-spacing:1.194667pt;}
.ws112{word-spacing:1.232000pt;}
.ws13c{word-spacing:1.280000pt;}
.wsc0{word-spacing:1.288000pt;}
.ws46{word-spacing:1.344000pt;}
.wsd5{word-spacing:1.392000pt;}
.ws121{word-spacing:1.400000pt;}
.wsdb{word-spacing:1.440000pt;}
.wsf6{word-spacing:1.456000pt;}
.wsc4{word-spacing:1.488000pt;}
.ws3f{word-spacing:1.493333pt;}
.ws29{word-spacing:1.512000pt;}
.ws64{word-spacing:1.568000pt;}
.ws6b{word-spacing:1.621333pt;}
.wsca{word-spacing:1.624000pt;}
.ws91{word-spacing:1.632000pt;}
.ws9{word-spacing:1.664000pt;}
.wsbf{word-spacing:1.680000pt;}
.wse5{word-spacing:1.706667pt;}
.ws136{word-spacing:1.728000pt;}
.wsbb{word-spacing:1.736000pt;}
.ws28{word-spacing:1.792000pt;}
.wsd9{word-spacing:1.824000pt;}
.ws110{word-spacing:1.834667pt;}
.ws9b{word-spacing:1.848000pt;}
.ws102{word-spacing:1.877333pt;}
.ws4d{word-spacing:1.904000pt;}
.ws42{word-spacing:1.920000pt;}
.ws108{word-spacing:1.960000pt;}
.ws118{word-spacing:1.962667pt;}
.ws123{word-spacing:1.968000pt;}
.ws19{word-spacing:2.016000pt;}
.wse{word-spacing:2.048000pt;}
.ws6{word-spacing:2.053333pt;}
.wsb8{word-spacing:2.072000pt;}
.wsb7{word-spacing:2.128000pt;}
.ws6e{word-spacing:2.184000pt;}
.ws137{word-spacing:2.208000pt;}
.wsbd{word-spacing:2.218667pt;}
.ws49{word-spacing:2.240000pt;}
.wsa{word-spacing:2.261333pt;}
.ws31{word-spacing:2.296000pt;}
.ws5{word-spacing:2.346667pt;}
.ws75{word-spacing:2.352000pt;}
.wsfa{word-spacing:2.408000pt;}
.wsc{word-spacing:2.474667pt;}
.ws25{word-spacing:2.496000pt;}
.wsee{word-spacing:2.520000pt;}
.ws146{word-spacing:2.576000pt;}
.ws48{word-spacing:2.632000pt;}
.ws44{word-spacing:2.688000pt;}
.ws4{word-spacing:2.720000pt;}
.ws58{word-spacing:2.744000pt;}
.ws90{word-spacing:2.784000pt;}
.ws147{word-spacing:2.800000pt;}
.ws66{word-spacing:2.856000pt;}
.ws95{word-spacing:2.880000pt;}
.ws1e{word-spacing:2.912000pt;}
.ws76{word-spacing:2.928000pt;}
.ws1a{word-spacing:2.968000pt;}
.ws78{word-spacing:2.976000pt;}
.ws41{word-spacing:2.986667pt;}
.wseb{word-spacing:3.024000pt;}
.ws54{word-spacing:3.029333pt;}
.ws52{word-spacing:3.072000pt;}
.ws61{word-spacing:3.080000pt;}
.ws10{word-spacing:3.114667pt;}
.ws143{word-spacing:3.136000pt;}
.ws12f{word-spacing:3.157333pt;}
.ws77{word-spacing:3.168000pt;}
.ws10b{word-spacing:3.192000pt;}
.ws35{word-spacing:3.248000pt;}
.ws47{word-spacing:3.304000pt;}
.wsd{word-spacing:3.370667pt;}
.ws7e{word-spacing:3.413333pt;}
.wsd3{word-spacing:3.416000pt;}
.wsc3{word-spacing:3.472000pt;}
.ws139{word-spacing:3.504000pt;}
.ws120{word-spacing:3.528000pt;}
.ws117{word-spacing:3.584000pt;}
.ws40{word-spacing:3.626667pt;}
.ws13f{word-spacing:3.640000pt;}
.ws92{word-spacing:3.648000pt;}
.ws4a{word-spacing:3.696000pt;}
.wsda{word-spacing:3.744000pt;}
.wsed{word-spacing:3.752000pt;}
.ws82{word-spacing:3.792000pt;}
.ws5f{word-spacing:3.808000pt;}
.wsaf{word-spacing:3.840000pt;}
.ws10a{word-spacing:3.864000pt;}
.wsb6{word-spacing:3.920000pt;}
.wsf2{word-spacing:3.925333pt;}
.ws24{word-spacing:3.936000pt;}
.ws4e{word-spacing:3.976000pt;}
.wsab{word-spacing:4.032000pt;}
.ws12a{word-spacing:4.088000pt;}
.ws11f{word-spacing:4.128000pt;}
.wsb9{word-spacing:4.144000pt;}
.ws13a{word-spacing:4.176000pt;}
.ws53{word-spacing:4.181333pt;}
.wsf1{word-spacing:4.224000pt;}
.wsc2{word-spacing:4.256000pt;}
.wsb{word-spacing:4.266667pt;}
.ws122{word-spacing:4.272000pt;}
.ws131{word-spacing:4.352000pt;}
.ws17{word-spacing:4.368000pt;}
.wsad{word-spacing:4.416000pt;}
.ws84{word-spacing:4.424000pt;}
.wsdf{word-spacing:4.464000pt;}
.ws27{word-spacing:4.480000pt;}
.wsa6{word-spacing:4.512000pt;}
.wsba{word-spacing:4.536000pt;}
.wscd{word-spacing:4.560000pt;}
.ws38{word-spacing:4.592000pt;}
.ws12c{word-spacing:4.648000pt;}
.ws127{word-spacing:4.693333pt;}
.ws12d{word-spacing:4.704000pt;}
.wsac{word-spacing:4.752000pt;}
.wse9{word-spacing:4.760000pt;}
.wsa5{word-spacing:4.848000pt;}
.wsc7{word-spacing:4.864000pt;}
.ws2c{word-spacing:4.872000pt;}
.wsf4{word-spacing:4.928000pt;}
.wscc{word-spacing:4.944000pt;}
.ws68{word-spacing:4.949333pt;}
.ws86{word-spacing:4.984000pt;}
.ws10c{word-spacing:5.040000pt;}
.ws2b{word-spacing:5.152000pt;}
.ws81{word-spacing:5.205333pt;}
.wse6{word-spacing:5.208000pt;}
.ws3c{word-spacing:5.264000pt;}
.ws99{word-spacing:5.320000pt;}
.ws1d{word-spacing:5.376000pt;}
.ws21{word-spacing:5.424000pt;}
.wse3{word-spacing:5.432000pt;}
.ws59{word-spacing:5.488000pt;}
.ws9c{word-spacing:5.544000pt;}
.wsf{word-spacing:5.589333pt;}
.ws37{word-spacing:5.600000pt;}
.ws11{word-spacing:5.632000pt;}
.wsf8{word-spacing:5.712000pt;}
.ws8{word-spacing:5.717333pt;}
.wscb{word-spacing:5.768000pt;}
.ws6a{word-spacing:5.802667pt;}
.wse2{word-spacing:5.824000pt;}
.ws8d{word-spacing:5.936000pt;}
.wsaa{word-spacing:5.952000pt;}
.ws13d{word-spacing:5.973333pt;}
.wsea{word-spacing:5.992000pt;}
.ws79{word-spacing:6.000000pt;}
.wsf7{word-spacing:6.048000pt;}
.ws1c{word-spacing:6.160000pt;}
.wsc6{word-spacing:6.216000pt;}
.ws12e{word-spacing:6.272000pt;}
.ws33{word-spacing:6.328000pt;}
.ws8f{word-spacing:6.336000pt;}
.ws116{word-spacing:6.384000pt;}
.ws4b{word-spacing:6.440000pt;}
.wscf{word-spacing:6.496000pt;}
.ws114{word-spacing:6.528000pt;}
.ws73{word-spacing:6.552000pt;}
.ws80{word-spacing:6.570667pt;}
.ws39{word-spacing:6.608000pt;}
.ws60{word-spacing:6.664000pt;}
.ws23{word-spacing:6.672000pt;}
.wsb5{word-spacing:6.720000pt;}
.ws149{word-spacing:6.776000pt;}
.wsff{word-spacing:6.832000pt;}
.wsd2{word-spacing:6.888000pt;}
.wsd1{word-spacing:6.944000pt;}
.wsa9{word-spacing:6.960000pt;}
.ws103{word-spacing:7.000000pt;}
.ws13{word-spacing:7.040000pt;}
.ws4f{word-spacing:7.056000pt;}
.ws135{word-spacing:7.104000pt;}
.ws3a{word-spacing:7.112000pt;}
.ws10e{word-spacing:7.168000pt;}
.ws51{word-spacing:7.210667pt;}
.wsbc{word-spacing:7.253333pt;}
.ws5e{word-spacing:7.280000pt;}
.ws12b{word-spacing:7.336000pt;}
.wsdd{word-spacing:7.344000pt;}
.wsde{word-spacing:7.392000pt;}
.ws98{word-spacing:7.448000pt;}
.ws71{word-spacing:7.504000pt;}
.wsc1{word-spacing:7.560000pt;}
.ws6f{word-spacing:7.616000pt;}
.ws104{word-spacing:7.672000pt;}
.ws7c{word-spacing:7.680000pt;}
.ws130{word-spacing:7.722667pt;}
.ws3d{word-spacing:7.728000pt;}
.ws4c{word-spacing:7.784000pt;}
.ws119{word-spacing:7.840000pt;}
.ws3e{word-spacing:7.850667pt;}
.ws7a{word-spacing:7.920000pt;}
.ws11c{word-spacing:7.952000pt;}
.ws22{word-spacing:7.968000pt;}
.ws142{word-spacing:8.008000pt;}
.ws140{word-spacing:8.064000pt;}
.wsb1{word-spacing:8.208000pt;}
.wsc5{word-spacing:8.232000pt;}
.wsa1{word-spacing:8.288000pt;}
.ws2d{word-spacing:8.344000pt;}
.wsb0{word-spacing:8.352000pt;}
.ws63{word-spacing:8.400000pt;}
.wsd4{word-spacing:8.448000pt;}
.ws14a{word-spacing:8.456000pt;}
.ws10d{word-spacing:8.512000pt;}
.ws11a{word-spacing:8.568000pt;}
.ws5d{word-spacing:8.624000pt;}
.ws113{word-spacing:8.680000pt;}
.wsa3{word-spacing:8.736000pt;}
.ws101{word-spacing:8.792000pt;}
.ws10f{word-spacing:8.848000pt;}
.ws16{word-spacing:8.904000pt;}
.ws109{word-spacing:8.960000pt;}
.ws7{word-spacing:9.045333pt;}
.wsb2{word-spacing:9.072000pt;}
.ws62{word-spacing:9.128000pt;}
.ws11b{word-spacing:9.184000pt;}
.wse1{word-spacing:9.296000pt;}
.ws9f{word-spacing:9.344000pt;}
.ws36{word-spacing:9.464000pt;}
.ws141{word-spacing:9.520000pt;}
.ws148{word-spacing:9.576000pt;}
.ws20{word-spacing:9.792000pt;}
.wsae{word-spacing:9.840000pt;}
.ws18{word-spacing:9.856000pt;}
.ws7b{word-spacing:9.888000pt;}
.wsa4{word-spacing:10.080000pt;}
.ws144{word-spacing:10.192000pt;}
.ws13e{word-spacing:10.248000pt;}
.wse4{word-spacing:10.304000pt;}
.ws13b{word-spacing:10.360000pt;}
.ws50{word-spacing:10.416000pt;}
.ws88{word-spacing:10.528000pt;}
.wsbe{word-spacing:10.584000pt;}
.ws87{word-spacing:10.640000pt;}
.ws9a{word-spacing:10.752000pt;}
.ws89{word-spacing:10.920000pt;}
.wsce{word-spacing:11.144000pt;}
.ws145{word-spacing:11.200000pt;}
.wsd0{word-spacing:11.256000pt;}
.wsf5{word-spacing:11.368000pt;}
.ws72{word-spacing:11.536000pt;}
.ws85{word-spacing:11.648000pt;}
.ws2a{word-spacing:11.760000pt;}
.ws15{word-spacing:44.576000pt;}
._7{margin-left:-5.637333pt;}
._14{margin-left:-4.495200pt;}
._a{margin-left:-3.601067pt;}
._9{margin-left:-2.560000pt;}
._2{margin-left:-1.642667pt;}
._1{width:0.970667pt;}
._0{width:1.866667pt;}
._1a{width:2.839200pt;}
._e{width:4.006400pt;}
._b{width:6.473600pt;}
._1b{width:7.616000pt;}
._5{width:13.482667pt;}
._3{width:14.378667pt;}
._12{width:19.882667pt;}
._1c{width:21.760000pt;}
._c{width:22.954667pt;}
._17{width:24.277333pt;}
._19{width:25.642667pt;}
._13{width:27.178667pt;}
._16{width:28.458667pt;}
._11{width:29.824000pt;}
._d{width:30.730667pt;}
._15{width:41.776000pt;}
._10{width:44.576000pt;}
._18{width:45.752000pt;}
._4{width:89.728000pt;}
._8{width:442.288000pt;}
._6{width:825.514667pt;}
._f{width:1373.236267pt;}
.fs3{font-size:21.333333pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:33.600000pt;}
.fs5{font-size:37.333333pt;}
.fsa{font-size:39.200000pt;}
.fs2{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y216{bottom:60.083600pt;}
.y25d{bottom:60.264800pt;}
.y46{bottom:60.472400pt;}
.y215{bottom:73.416933pt;}
.y45{bottom:73.805733pt;}
.y25c{bottom:77.694800pt;}
.y214{bottom:86.750267pt;}
.y44{bottom:87.139067pt;}
.y25b{bottom:95.124800pt;}
.y67{bottom:100.472400pt;}
.y25a{bottom:112.554800pt;}
.y66{bottom:113.805733pt;}
.y238{bottom:115.868133pt;}
.y141{bottom:118.237467pt;}
.y224{bottom:123.268933pt;}
.y103{bottom:125.145467pt;}
.y1f{bottom:125.851600pt;}
.y65{bottom:127.139067pt;}
.y259{bottom:129.984800pt;}
.y43{bottom:130.521467pt;}
.y237{bottom:133.200133pt;}
.y140{bottom:133.573467pt;}
.y1e{bottom:139.184933pt;}
.y64{bottom:140.472400pt;}
.y102{bottom:140.481467pt;}
.y223{bottom:140.614267pt;}
.y258{bottom:147.414800pt;}
.y42{bottom:147.853467pt;}
.y13f{bottom:148.909467pt;}
.y236{bottom:150.532133pt;}
.y1c9{bottom:150.542800pt;}
.y86{bottom:153.805733pt;}
.y101{bottom:155.817467pt;}
.y211{bottom:155.857467pt;}
.y222{bottom:157.946267pt;}
.y162{bottom:160.524133pt;}
.y13e{bottom:164.245467pt;}
.y130{bottom:164.521467pt;}
.y257{bottom:164.844800pt;}
.y41{bottom:165.185467pt;}
.y1d{bottom:165.307600pt;}
.y85{bottom:167.139067pt;}
.y1a7{bottom:167.856133pt;}
.y235{bottom:167.864133pt;}
.y1c8{bottom:167.874800pt;}
.ycf{bottom:169.964800pt;}
.y100{bottom:171.153467pt;}
.y210{bottom:173.189467pt;}
.y221{bottom:175.278267pt;}
.y161{bottom:177.856133pt;}
.y1c{bottom:178.640933pt;}
.y84{bottom:180.472400pt;}
.y12f{bottom:181.853467pt;}
.y256{bottom:182.274800pt;}
.y40{bottom:182.517467pt;}
.y1a6{bottom:185.188133pt;}
.y234{bottom:185.196133pt;}
.y19a{bottom:185.198800pt;}
.y1c7{bottom:185.206800pt;}
.yce{bottom:185.300800pt;}
.yff{bottom:186.489467pt;}
.y20f{bottom:190.521467pt;}
.y63{bottom:191.870800pt;}
.y220{bottom:192.610267pt;}
.y83{bottom:193.805733pt;}
.y13d{bottom:194.928133pt;}
.y160{bottom:195.188133pt;}
.y1b8{bottom:199.177467pt;}
.y12e{bottom:199.185467pt;}
.y255{bottom:199.704800pt;}
.y3f{bottom:199.849467pt;}
.ycd{bottom:200.636800pt;}
.yfe{bottom:201.825467pt;}
.y1b{bottom:201.915600pt;}
.y1a5{bottom:202.520133pt;}
.y233{bottom:202.528133pt;}
.y199{bottom:202.530800pt;}
.y1f8{bottom:202.534800pt;}
.y1c6{bottom:202.538800pt;}
.y82{bottom:207.139067pt;}
.y20e{bottom:207.853467pt;}
.y62{bottom:209.202800pt;}
.y21f{bottom:209.942267pt;}
.y11c{bottom:210.646133pt;}
.y13c{bottom:212.260133pt;}
.y15f{bottom:212.520133pt;}
.y153{bottom:212.646133pt;}
.y1a{bottom:215.248933pt;}
.ycc{bottom:215.972800pt;}
.y1b7{bottom:216.509467pt;}
.y12d{bottom:216.517467pt;}
.y254{bottom:217.134800pt;}
.yfd{bottom:217.161467pt;}
.y3e{bottom:217.181467pt;}
.y174{bottom:218.492133pt;}
.y9c{bottom:219.846800pt;}
.y1a4{bottom:219.852133pt;}
.y183{bottom:219.858800pt;}
.y232{bottom:219.860133pt;}
.y198{bottom:219.862800pt;}
.y1f7{bottom:219.866800pt;}
.y1c5{bottom:219.870800pt;}
.y81{bottom:220.472400pt;}
.y20d{bottom:225.185467pt;}
.y61{bottom:226.534800pt;}
.y21e{bottom:227.274267pt;}
.y11b{bottom:227.999467pt;}
.y1e2{bottom:228.500133pt;}
.y19{bottom:228.582267pt;}
.y13b{bottom:229.592133pt;}
.y15e{bottom:229.852133pt;}
.y152{bottom:229.988800pt;}
.yb0{bottom:230.476133pt;}
.ycb{bottom:231.308800pt;}
.yfc{bottom:232.497467pt;}
.y80{bottom:233.805733pt;}
.y173{bottom:233.828133pt;}
.y12c{bottom:233.849467pt;}
.y1b6{bottom:233.853467pt;}
.y3d{bottom:234.513467pt;}
.y253{bottom:234.564800pt;}
.y9b{bottom:237.178800pt;}
.y1a3{bottom:237.184133pt;}
.y182{bottom:237.190800pt;}
.y231{bottom:237.192133pt;}
.y197{bottom:237.194800pt;}
.y1f6{bottom:237.198800pt;}
.y1c4{bottom:237.202800pt;}
.y18{bottom:241.915600pt;}
.y20c{bottom:242.517467pt;}
.y1e1{bottom:243.836133pt;}
.y60{bottom:243.866800pt;}
.y21d{bottom:244.606267pt;}
.y11a{bottom:245.331467pt;}
.yaf{bottom:245.812133pt;}
.yca{bottom:246.644800pt;}
.y13a{bottom:246.924133pt;}
.y7f{bottom:247.139067pt;}
.y15d{bottom:247.184133pt;}
.y151{bottom:247.320800pt;}
.yfb{bottom:247.833467pt;}
.ye8{bottom:248.652800pt;}
.y172{bottom:249.164133pt;}
.y12b{bottom:251.181467pt;}
.y1b5{bottom:251.185467pt;}
.y3c{bottom:251.845467pt;}
.y252{bottom:251.994800pt;}
.y9a{bottom:254.510800pt;}
.y1a2{bottom:254.516133pt;}
.y181{bottom:254.522800pt;}
.y230{bottom:254.524133pt;}
.y196{bottom:254.526800pt;}
.y1f5{bottom:254.530800pt;}
.y1c3{bottom:254.534800pt;}
.y17{bottom:255.248933pt;}
.y1e0{bottom:259.172133pt;}
.y20b{bottom:259.849467pt;}
.y7e{bottom:260.472400pt;}
.yae{bottom:261.148133pt;}
.y5f{bottom:261.198800pt;}
.y21c{bottom:261.938267pt;}
.y119{bottom:262.663467pt;}
.yfa{bottom:263.169467pt;}
.y139{bottom:264.256133pt;}
.y171{bottom:264.500133pt;}
.y15c{bottom:264.516133pt;}
.y150{bottom:264.652800pt;}
.ye7{bottom:265.984800pt;}
.y12a{bottom:268.513467pt;}
.y1b4{bottom:268.517467pt;}
.y16{bottom:268.582267pt;}
.y3b{bottom:269.177467pt;}
.y251{bottom:269.424800pt;}
.y99{bottom:271.842800pt;}
.y1a1{bottom:271.848133pt;}
.y180{bottom:271.854800pt;}
.y22f{bottom:271.856133pt;}
.y195{bottom:271.858800pt;}
.y1f4{bottom:271.862800pt;}
.y1c2{bottom:271.866800pt;}
.y7d{bottom:273.805733pt;}
.y1df{bottom:274.508133pt;}
.yad{bottom:276.484133pt;}
.y20a{bottom:277.181467pt;}
.yc9{bottom:277.320800pt;}
.yf9{bottom:278.505467pt;}
.y5e{bottom:278.530800pt;}
.y21b{bottom:279.270267pt;}
.y170{bottom:279.836133pt;}
.y118{bottom:279.995467pt;}
.y138{bottom:281.588133pt;}
.y15b{bottom:281.848133pt;}
.y15{bottom:281.915600pt;}
.y14f{bottom:281.984800pt;}
.ye6{bottom:283.316800pt;}
.y129{bottom:285.845467pt;}
.y1b3{bottom:285.849467pt;}
.y3a{bottom:286.509467pt;}
.y250{bottom:286.854800pt;}
.y7c{bottom:287.139067pt;}
.y98{bottom:289.174800pt;}
.y1a0{bottom:289.180133pt;}
.y17f{bottom:289.186800pt;}
.y22e{bottom:289.188133pt;}
.y194{bottom:289.190800pt;}
.y1f3{bottom:289.194800pt;}
.y1c1{bottom:289.198800pt;}
.yac{bottom:291.820133pt;}
.yf8{bottom:293.841467pt;}
.y209{bottom:294.513467pt;}
.yc8{bottom:294.652800pt;}
.y16f{bottom:295.172133pt;}
.y14{bottom:295.248933pt;}
.y5d{bottom:295.862800pt;}
.y21a{bottom:296.602267pt;}
.y117{bottom:297.327467pt;}
.y137{bottom:298.920133pt;}
.y15a{bottom:299.180133pt;}
.y14e{bottom:299.316800pt;}
.ye5{bottom:300.648800pt;}
.y128{bottom:303.177467pt;}
.y1b2{bottom:303.181467pt;}
.y39{bottom:303.841467pt;}
.y24f{bottom:304.284800pt;}
.y1de{bottom:305.181467pt;}
.y19f{bottom:306.512133pt;}
.y17e{bottom:306.518800pt;}
.y22d{bottom:306.520133pt;}
.y193{bottom:306.522800pt;}
.y1f2{bottom:306.526800pt;}
.y1c0{bottom:306.530800pt;}
.yab{bottom:307.156133pt;}
.y13{bottom:308.582267pt;}
.y16e{bottom:310.508133pt;}
.y208{bottom:311.845467pt;}
.yc7{bottom:311.984800pt;}
.y5c{bottom:313.194800pt;}
.y219{bottom:313.934267pt;}
.y116{bottom:314.659467pt;}
.y136{bottom:316.252133pt;}
.y159{bottom:316.512133pt;}
.y14d{bottom:316.648800pt;}
.ye4{bottom:317.980800pt;}
.y127{bottom:320.509467pt;}
.y1b1{bottom:320.513467pt;}
.y24e{bottom:321.714800pt;}
.y12{bottom:321.915600pt;}
.yaa{bottom:322.492133pt;}
.y1dd{bottom:322.513467pt;}
.y19e{bottom:323.844133pt;}
.y97{bottom:323.845467pt;}
.y17d{bottom:323.850800pt;}
.y22c{bottom:323.852133pt;}
.y192{bottom:323.854800pt;}
.y1f1{bottom:323.858800pt;}
.y1bf{bottom:323.862800pt;}
.yf7{bottom:324.512133pt;}
.y207{bottom:329.177467pt;}
.yc6{bottom:329.316800pt;}
.y5b{bottom:330.526800pt;}
.y115{bottom:331.991467pt;}
.y38{bottom:333.156133pt;}
.y135{bottom:333.584133pt;}
.y158{bottom:333.844133pt;}
.y14c{bottom:333.980800pt;}
.ye3{bottom:335.312800pt;}
.ya9{bottom:337.828133pt;}
.y126{bottom:337.841467pt;}
.y1b0{bottom:337.845467pt;}
.y24d{bottom:339.144800pt;}
.y1dc{bottom:339.845467pt;}
.y16d{bottom:341.176133pt;}
.y7b{bottom:341.181467pt;}
.y17c{bottom:341.182800pt;}
.y22b{bottom:341.184133pt;}
.y191{bottom:341.186800pt;}
.y1f0{bottom:341.190800pt;}
.y1be{bottom:341.194800pt;}
.yf6{bottom:341.844133pt;}
.y206{bottom:346.509467pt;}
.yc5{bottom:346.648800pt;}
.y5a{bottom:347.858800pt;}
.y11{bottom:348.038267pt;}
.y37{bottom:348.492133pt;}
.y114{bottom:349.323467pt;}
.y134{bottom:350.916133pt;}
.y157{bottom:351.176133pt;}
.y14b{bottom:351.312800pt;}
.ye2{bottom:352.650133pt;}
.ya8{bottom:353.164133pt;}
.y1af{bottom:355.177467pt;}
.y24c{bottom:356.574800pt;}
.y1db{bottom:357.177467pt;}
.y218{bottom:357.934267pt;}
.y19d{bottom:358.512133pt;}
.y7a{bottom:358.513467pt;}
.y17b{bottom:358.514800pt;}
.y22a{bottom:358.516133pt;}
.y190{bottom:358.518800pt;}
.y16c{bottom:358.521467pt;}
.y1ef{bottom:358.522800pt;}
.y1bd{bottom:358.526800pt;}
.yf5{bottom:359.176133pt;}
.y10{bottom:361.371600pt;}
.y36{bottom:363.828133pt;}
.y205{bottom:363.841467pt;}
.yc4{bottom:363.980800pt;}
.y59{bottom:365.190800pt;}
.y113{bottom:366.655467pt;}
.y133{bottom:368.248133pt;}
.ya7{bottom:368.500133pt;}
.y156{bottom:368.508133pt;}
.y14a{bottom:368.654133pt;}
.y213{bottom:369.886000pt;}
.ye1{bottom:369.982133pt;}
.y125{bottom:370.497467pt;}
.y217{bottom:371.267600pt;}
.y1ae{bottom:372.509467pt;}
.y24b{bottom:374.004800pt;}
.y1da{bottom:374.509467pt;}
.yf{bottom:374.704933pt;}
.y19c{bottom:375.844133pt;}
.y79{bottom:375.845467pt;}
.y17a{bottom:375.846800pt;}
.y229{bottom:375.848133pt;}
.y18f{bottom:375.850800pt;}
.y16b{bottom:375.853467pt;}
.y1ee{bottom:375.854800pt;}
.y1bc{bottom:375.858800pt;}
.y96{bottom:375.862800pt;}
.yf4{bottom:376.508133pt;}
.y35{bottom:379.164133pt;}
.yc3{bottom:381.312800pt;}
.y212{bottom:383.219333pt;}
.ya6{bottom:383.836133pt;}
.y112{bottom:383.987467pt;}
.y132{bottom:385.580133pt;}
.y124{bottom:385.833467pt;}
.y149{bottom:385.986133pt;}
.ye0{bottom:387.314133pt;}
.ye{bottom:388.038267pt;}
.y1ad{bottom:389.841467pt;}
.y24a{bottom:391.434800pt;}
.y1d9{bottom:391.848133pt;}
.y19b{bottom:393.176133pt;}
.y78{bottom:393.177467pt;}
.y179{bottom:393.178800pt;}
.y228{bottom:393.180133pt;}
.y18e{bottom:393.182800pt;}
.y16a{bottom:393.185467pt;}
.y1ed{bottom:393.186800pt;}
.y1bb{bottom:393.190800pt;}
.y95{bottom:393.194800pt;}
.y34{bottom:394.500133pt;}
.y58{bottom:395.850800pt;}
.y204{bottom:396.462800pt;}
.yc2{bottom:398.662133pt;}
.ya5{bottom:399.172133pt;}
.y123{bottom:401.169467pt;}
.y111{bottom:401.319467pt;}
.y131{bottom:402.912133pt;}
.y148{bottom:403.318133pt;}
.ydf{bottom:404.646133pt;}
.y249{bottom:408.864800pt;}
.yf3{bottom:409.158800pt;}
.y1d8{bottom:409.180133pt;}
.y33{bottom:409.836133pt;}
.y77{bottom:410.509467pt;}
.y178{bottom:410.510800pt;}
.y227{bottom:410.512133pt;}
.y18d{bottom:410.514800pt;}
.y169{bottom:410.517467pt;}
.y1ec{bottom:410.518800pt;}
.y1ba{bottom:410.522800pt;}
.y94{bottom:410.526800pt;}
.y203{bottom:411.798800pt;}
.ya4{bottom:414.508133pt;}
.yc1{bottom:415.994133pt;}
.y122{bottom:416.505467pt;}
.y110{bottom:418.651467pt;}
.y147{bottom:420.650133pt;}
.yde{bottom:421.988800pt;}
.y1ac{bottom:422.497467pt;}
.yf2{bottom:424.494800pt;}
.y32{bottom:425.172133pt;}
.y248{bottom:426.294800pt;}
.y1d7{bottom:426.512133pt;}
.y202{bottom:427.134800pt;}
.y177{bottom:427.842800pt;}
.y226{bottom:427.844133pt;}
.y18c{bottom:427.846800pt;}
.y168{bottom:427.849467pt;}
.y1eb{bottom:427.850800pt;}
.y1b9{bottom:427.854800pt;}
.y76{bottom:427.857467pt;}
.y93{bottom:427.858800pt;}
.y121{bottom:431.841467pt;}
.yc0{bottom:433.326133pt;}
.y10f{bottom:435.983467pt;}
.y1ab{bottom:437.833467pt;}
.y146{bottom:437.982133pt;}
.ydd{bottom:439.320800pt;}
.yf1{bottom:439.830800pt;}
.y31{bottom:440.508133pt;}
.y201{bottom:442.470800pt;}
.y247{bottom:443.724800pt;}
.y1d6{bottom:443.844133pt;}
.y225{bottom:445.176133pt;}
.y176{bottom:445.177467pt;}
.y18b{bottom:445.178800pt;}
.y167{bottom:445.181467pt;}
.y1ea{bottom:445.182800pt;}
.ya3{bottom:445.184133pt;}
.y57{bottom:445.186800pt;}
.y75{bottom:445.189467pt;}
.y92{bottom:445.190800pt;}
.ybf{bottom:450.658133pt;}
.y1aa{bottom:453.169467pt;}
.y10e{bottom:453.315467pt;}
.yf0{bottom:455.166800pt;}
.y145{bottom:455.314133pt;}
.ydc{bottom:456.652800pt;}
.y200{bottom:457.806800pt;}
.y246{bottom:461.154800pt;}
.y1d5{bottom:461.176133pt;}
.y175{bottom:462.509467pt;}
.y155{bottom:462.510800pt;}
.y166{bottom:462.513467pt;}
.y1e9{bottom:462.514800pt;}
.ya2{bottom:462.516133pt;}
.y56{bottom:462.518800pt;}
.y74{bottom:462.521467pt;}
.y91{bottom:462.522800pt;}
.y120{bottom:462.526800pt;}
.yd{bottom:465.305600pt;}
.y30{bottom:466.530800pt;}
.ybe{bottom:467.990133pt;}
.y1a9{bottom:468.505467pt;}
.yef{bottom:470.502800pt;}
.y10d{bottom:470.647467pt;}
.y144{bottom:472.646133pt;}
.y1ff{bottom:473.142800pt;}
.ydb{bottom:473.984800pt;}
.yc{bottom:477.308267pt;}
.y1d4{bottom:478.513467pt;}
.y245{bottom:478.584800pt;}
.y154{bottom:479.842800pt;}
.y165{bottom:479.845467pt;}
.y1e8{bottom:479.846800pt;}
.ya1{bottom:479.848133pt;}
.y55{bottom:479.850800pt;}
.y73{bottom:479.853467pt;}
.y90{bottom:479.854800pt;}
.y11f{bottom:479.858800pt;}
.y1a8{bottom:483.841467pt;}
.y2f{bottom:483.862800pt;}
.ybd{bottom:485.322133pt;}
.yee{bottom:485.838800pt;}
.y10c{bottom:487.979467pt;}
.y1fe{bottom:488.478800pt;}
.yb{bottom:489.310933pt;}
.y143{bottom:489.978133pt;}
.yda{bottom:491.316800pt;}
.y1d3{bottom:495.845467pt;}
.y244{bottom:496.014800pt;}
.y164{bottom:497.177467pt;}
.y1e7{bottom:497.178800pt;}
.ya0{bottom:497.180133pt;}
.y54{bottom:497.182800pt;}
.y72{bottom:497.185467pt;}
.y8f{bottom:497.186800pt;}
.y18a{bottom:497.189467pt;}
.y11e{bottom:497.190800pt;}
.yed{bottom:501.174800pt;}
.y2e{bottom:501.194800pt;}
.ybc{bottom:502.654133pt;}
.y1fd{bottom:503.814800pt;}
.y10b{bottom:505.311467pt;}
.yd9{bottom:508.648800pt;}
.y1d2{bottom:513.177467pt;}
.y243{bottom:513.444800pt;}
.y163{bottom:514.509467pt;}
.y1e6{bottom:514.510800pt;}
.y9f{bottom:514.512133pt;}
.y53{bottom:514.514800pt;}
.y71{bottom:514.517467pt;}
.y8e{bottom:514.518800pt;}
.y189{bottom:514.521467pt;}
.y11d{bottom:514.522800pt;}
.y2d{bottom:518.526800pt;}
.y1fc{bottom:519.150800pt;}
.ybb{bottom:519.986133pt;}
.y142{bottom:522.612800pt;}
.ya{bottom:525.465867pt;}
.yd8{bottom:525.980800pt;}
.y1d1{bottom:530.509467pt;}
.y242{bottom:530.874800pt;}
.y1e5{bottom:531.842800pt;}
.y9e{bottom:531.844133pt;}
.y52{bottom:531.846800pt;}
.y70{bottom:531.849467pt;}
.y8d{bottom:531.850800pt;}
.y188{bottom:531.853467pt;}
.yec{bottom:531.854800pt;}
.y1fb{bottom:534.486800pt;}
.y2c{bottom:535.858800pt;}
.yba{bottom:537.318133pt;}
.y10a{bottom:537.948800pt;}
.y9{bottom:538.799200pt;}
.yd7{bottom:543.312800pt;}
.y1d0{bottom:547.841467pt;}
.y241{bottom:548.304800pt;}
.y9d{bottom:549.176133pt;}
.y1e4{bottom:549.177467pt;}
.y51{bottom:549.178800pt;}
.y6f{bottom:549.181467pt;}
.y8c{bottom:549.182800pt;}
.y187{bottom:549.185467pt;}
.yeb{bottom:549.186800pt;}
.y1fa{bottom:549.822800pt;}
.y8{bottom:552.132533pt;}
.y2b{bottom:553.190800pt;}
.y109{bottom:553.284800pt;}
.yb9{bottom:554.650133pt;}
.yd6{bottom:560.646133pt;}
.y1f9{bottom:565.158800pt;}
.y7{bottom:565.465867pt;}
.y240{bottom:565.734800pt;}
.y1e3{bottom:566.509467pt;}
.y50{bottom:566.510800pt;}
.y6e{bottom:566.513467pt;}
.y8b{bottom:566.514800pt;}
.y186{bottom:566.517467pt;}
.yea{bottom:566.518800pt;}
.y108{bottom:568.620800pt;}
.y2a{bottom:570.522800pt;}
.yb8{bottom:571.982133pt;}
.yd5{bottom:577.980800pt;}
.y6{bottom:578.799200pt;}
.y1cf{bottom:580.494800pt;}
.y23f{bottom:583.164800pt;}
.y4f{bottom:583.842800pt;}
.y6d{bottom:583.845467pt;}
.y8a{bottom:583.846800pt;}
.y185{bottom:583.849467pt;}
.ye9{bottom:583.850800pt;}
.y107{bottom:583.956800pt;}
.y29{bottom:587.854800pt;}
.yb7{bottom:589.314133pt;}
.y5{bottom:592.132533pt;}
.yd4{bottom:595.312800pt;}
.y1ce{bottom:595.830800pt;}
.y106{bottom:599.292800pt;}
.y23e{bottom:600.594800pt;}
.y6c{bottom:601.177467pt;}
.y89{bottom:601.178800pt;}
.y184{bottom:601.181467pt;}
.y4e{bottom:601.182800pt;}
.y28{bottom:605.186800pt;}
.yb6{bottom:606.646133pt;}
.y1cd{bottom:611.166800pt;}
.y4{bottom:612.132933pt;}
.yd3{bottom:612.644800pt;}
.y105{bottom:614.628800pt;}
.y23d{bottom:618.024800pt;}
.y6b{bottom:618.509467pt;}
.y88{bottom:618.510800pt;}
.y4d{bottom:618.514800pt;}
.y27{bottom:622.518800pt;}
.yb5{bottom:623.980800pt;}
.y1cc{bottom:626.502800pt;}
.y104{bottom:629.964800pt;}
.y23c{bottom:635.454800pt;}
.y87{bottom:635.842800pt;}
.y6a{bottom:635.845467pt;}
.y4c{bottom:635.846800pt;}
.y26{bottom:639.850800pt;}
.yb4{bottom:641.312800pt;}
.y1cb{bottom:641.838800pt;}
.yd2{bottom:645.300800pt;}
.y23b{bottom:652.884800pt;}
.y69{bottom:653.177467pt;}
.y4b{bottom:653.178800pt;}
.y1ca{bottom:657.174800pt;}
.y25{bottom:657.182800pt;}
.yb3{bottom:658.644800pt;}
.y3{bottom:658.792533pt;}
.yd1{bottom:660.636800pt;}
.y23a{bottom:670.314800pt;}
.y68{bottom:670.509467pt;}
.y4a{bottom:670.510800pt;}
.y24{bottom:674.514800pt;}
.yd0{bottom:675.972800pt;}
.y2{bottom:680.128533pt;}
.y239{bottom:687.744800pt;}
.y49{bottom:687.842800pt;}
.yb2{bottom:691.308800pt;}
.y1{bottom:701.464533pt;}
.y23{bottom:705.174800pt;}
.yb1{bottom:706.644800pt;}
.y48{bottom:747.562400pt;}
.y21{bottom:747.564267pt;}
.y22{bottom:754.466133pt;}
.y47{bottom:763.562400pt;}
.y20{bottom:763.564267pt;}
.h7{height:26.133333pt;}
.h5{height:30.725333pt;}
.h24{height:34.320000pt;}
.h4{height:35.114667pt;}
.h6{height:35.285333pt;}
.hb{height:39.408000pt;}
.h9{height:39.536000pt;}
.h17{height:43.436267pt;}
.h21{height:43.446933pt;}
.h26{height:43.457600pt;}
.h1a{height:43.468267pt;}
.h25{height:43.478933pt;}
.h1c{height:43.489600pt;}
.hc{height:43.500267pt;}
.h1d{height:43.542933pt;}
.h1f{height:43.553600pt;}
.h27{height:43.606933pt;}
.h3{height:44.426667pt;}
.h8{height:44.800000pt;}
.ha{height:45.976000pt;}
.h15{height:46.139200pt;}
.h14{height:50.577867pt;}
.h28{height:50.588533pt;}
.h19{height:50.593867pt;}
.h12{height:50.599200pt;}
.h23{height:50.604533pt;}
.h1e{height:50.609867pt;}
.h22{height:50.615200pt;}
.h1b{height:50.620533pt;}
.h20{height:50.625867pt;}
.hf{height:50.631200pt;}
.h13{height:50.636533pt;}
.h16{height:50.641867pt;}
.h11{height:50.647200pt;}
.h18{height:50.652533pt;}
.h10{height:50.657867pt;}
.he{height:50.663200pt;}
.h29{height:52.192000pt;}
.h2{height:62.197333pt;}
.hd{height:72.417600pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x5{left:62.468800pt;}
.x2{left:66.141733pt;}
.x6{left:85.039333pt;}
.x1{left:87.473333pt;}
.xa{left:91.717600pt;}
.xd{left:97.827200pt;}
.x9{left:110.615067pt;}
.xb{left:117.293200pt;}
.x8{left:136.194667pt;}
.xc{left:142.869067pt;}
.x7{left:161.766667pt;}
.x3{left:264.563733pt;}
.x4{left:422.847733pt;}
}




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