
    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_d83f5058b480dfa96d5a7147.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_0dae8b06223195747840fd8c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_7c56843bddf42e2768b4742b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_24f8b5f8b9ceb250ee55206c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_45a3a2b8fe19cb681b21bfc4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.223000;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_812df999bfc4a8f6da3814cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908000;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_edd9a77dd1d0854e84993308.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.202000;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_1d90776507d302a12cb67fcb.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.483000;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_bf7b6b9e1a7e6b3cdee6aa14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;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_f7b4383a50c4184faff249bb.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202000;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_6dd4517c978ce32096426190.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4b51aef777fedf01a24181ae.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d6ca59047d3bb0fda906ae4f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.843750;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:ffe;src:url('chunks/assets/font_510d6d6442d3c13a9626fe8f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.690000;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:fff;src:url('chunks/assets/font_a9864a765a06f76059483167.woff2')format("woff");}.fff{font-family:fff;line-height:0.050000;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:ff10;src:url('chunks/assets/font_54ea7097aef1f478a3a2e880.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.714000;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:ff11;src:url('chunks/assets/font_97c7ec627496c10e84b1df43.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b093a307d2d7ec03071a03ad.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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:ff13;src:url('chunks/assets/font_6a3a7390c0445a2e06e938c4.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.027000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,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);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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);}
.v8{vertical-align:-18.000000px;}
.v3{vertical-align:-14.786382px;}
.v6{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v9{vertical-align:3.402000px;}
.v5{vertical-align:14.700439px;}
.v7{vertical-align:17.985000px;}
.v4{vertical-align:23.519989px;}
.v2{vertical-align:26.399780px;}
.ls19{letter-spacing:-5.115600px;}
.ls16{letter-spacing:-3.045840px;}
.ls3{letter-spacing:-1.050000px;}
.lsa{letter-spacing:-0.999600px;}
.ls5{letter-spacing:-0.588000px;}
.ls6{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.529200px;}
.ls4{letter-spacing:-0.470400px;}
.ls15{letter-spacing:-0.352800px;}
.ls2{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000002px;}
.ls22{letter-spacing:0.000025px;}
.ls8{letter-spacing:0.000400px;}
.lse{letter-spacing:0.013213px;}
.ls1c{letter-spacing:0.015012px;}
.lsd{letter-spacing:0.047805px;}
.lsf{letter-spacing:0.055634px;}
.lsc{letter-spacing:0.065863px;}
.ls7{letter-spacing:0.089853px;}
.ls24{letter-spacing:0.150130px;}
.ls14{letter-spacing:0.205800px;}
.ls25{letter-spacing:0.225194px;}
.ls9{letter-spacing:0.329280px;}
.ls1f{letter-spacing:0.352800px;}
.ls18{letter-spacing:0.529200px;}
.ls1d{letter-spacing:0.576240px;}
.ls1a{letter-spacing:0.717360px;}
.ls13{letter-spacing:0.770280px;}
.ls10{letter-spacing:0.823200px;}
.ls20{letter-spacing:0.829080px;}
.ls1e{letter-spacing:0.840840px;}
.ls1b{letter-spacing:0.845388px;}
.ls12{letter-spacing:0.882000px;}
.ls11{letter-spacing:0.887853px;}
.ls26{letter-spacing:1.125972px;}
.ls17{letter-spacing:1.293600px;}
.ls23{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.ls1{letter-spacing:38.305827px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.216000px;}
.ws93{word-spacing:-15.111600px;}
.ws95{word-spacing:-14.641200px;}
.ws94{word-spacing:-14.347200px;}
.wsf0{word-spacing:-14.170800px;}
.wsd{word-spacing:-13.818000px;}
.ws91{word-spacing:-13.465200px;}
.wsc{word-spacing:-13.347600px;}
.wse{word-spacing:-13.230000px;}
.ws5{word-spacing:-13.140000px;}
.ws3{word-spacing:-12.483600px;}
.ws4{word-spacing:-12.420000px;}
.ws130{word-spacing:-12.310630px;}
.wsf{word-spacing:-11.880000px;}
.wsa{word-spacing:-11.682000px;}
.ws12f{word-spacing:-11.559982px;}
.ws43{word-spacing:-11.426400px;}
.ws12e{word-spacing:-10.659204px;}
.ws12d{word-spacing:-10.584140px;}
.wsd3{word-spacing:-10.248840px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws41{word-spacing:-10.001880px;}
.ws8f{word-spacing:-9.878400px;}
.ws7{word-spacing:-9.855000px;}
.ws42{word-spacing:-9.672600px;}
.ws121{word-spacing:-9.315000px;}
.ws96{word-spacing:-8.702400px;}
.ws6{word-spacing:-8.148000px;}
.wseb{word-spacing:-7.358400px;}
.ws120{word-spacing:-6.898500px;}
.ws92{word-spacing:-6.626760px;}
.ws5a{word-spacing:-6.468000px;}
.wsb{word-spacing:-5.640000px;}
.ws9{word-spacing:-2.772000px;}
.wsc6{word-spacing:-1.999200px;}
.ws131{word-spacing:-1.876621px;}
.wsa6{word-spacing:-1.352400px;}
.ws6c{word-spacing:-0.882000px;}
.wsa8{word-spacing:-0.823200px;}
.ws23{word-spacing:-0.705600px;}
.ws10{word-spacing:-0.646800px;}
.wsf8{word-spacing:-0.529200px;}
.ws9c{word-spacing:-0.470400px;}
.ws6d{word-spacing:-0.411600px;}
.wsad{word-spacing:-0.294000px;}
.wsed{word-spacing:-0.176400px;}
.ws22{word-spacing:-0.117600px;}
.ws12b{word-spacing:-0.090000px;}
.ws12a{word-spacing:-0.058800px;}
.ws40{word-spacing:-0.055200px;}
.ws12c{word-spacing:-0.045000px;}
.ws90{word-spacing:-0.041160px;}
.ws8{word-spacing:0.000000px;}
.wsa9{word-spacing:0.058800px;}
.ws87{word-spacing:0.117600px;}
.ws9d{word-spacing:0.176400px;}
.ws67{word-spacing:0.235200px;}
.ws7c{word-spacing:0.294000px;}
.wsa5{word-spacing:0.352800px;}
.wsb7{word-spacing:0.411600px;}
.ws26{word-spacing:0.470400px;}
.ws6f{word-spacing:0.529200px;}
.ws2c{word-spacing:0.588000px;}
.ws4a{word-spacing:0.646800px;}
.ws6a{word-spacing:0.705600px;}
.ws1b{word-spacing:0.764400px;}
.ws129{word-spacing:0.823200px;}
.ws109{word-spacing:0.999600px;}
.ws61{word-spacing:1.058400px;}
.ws10d{word-spacing:1.117200px;}
.ws70{word-spacing:1.176000px;}
.wsaf{word-spacing:1.234800px;}
.wscc{word-spacing:1.293600px;}
.ws3b{word-spacing:1.320000px;}
.ws56{word-spacing:1.352400px;}
.ws21{word-spacing:1.411200px;}
.ws10b{word-spacing:1.470000px;}
.ws11e{word-spacing:1.528800px;}
.ws71{word-spacing:1.587600px;}
.wsf9{word-spacing:1.646400px;}
.ws34{word-spacing:1.705200px;}
.ws35{word-spacing:1.764000px;}
.wsb9{word-spacing:1.822800px;}
.ws4b{word-spacing:1.881600px;}
.ws9b{word-spacing:1.940400px;}
.wsb4{word-spacing:1.999200px;}
.ws69{word-spacing:2.058000px;}
.wsae{word-spacing:2.116800px;}
.ws63{word-spacing:2.234400px;}
.ws126{word-spacing:2.293200px;}
.ws82{word-spacing:2.352000px;}
.ws31{word-spacing:2.469600px;}
.ws113{word-spacing:2.528400px;}
.ws1e{word-spacing:2.587200px;}
.ws1c{word-spacing:2.704800px;}
.ws14{word-spacing:2.763600px;}
.ws127{word-spacing:2.822400px;}
.ws1a{word-spacing:2.881200px;}
.ws7b{word-spacing:2.940000px;}
.ws39{word-spacing:3.057600px;}
.ws51{word-spacing:3.175200px;}
.ws128{word-spacing:3.234000px;}
.ws78{word-spacing:3.292800px;}
.ws24{word-spacing:3.351600px;}
.ws7d{word-spacing:3.469200px;}
.wsb3{word-spacing:3.586800px;}
.ws64{word-spacing:3.645600px;}
.ws118{word-spacing:3.704400px;}
.wsd6{word-spacing:3.822000px;}
.ws7f{word-spacing:3.880800px;}
.wscf{word-spacing:3.939600px;}
.ws104{word-spacing:3.998400px;}
.wsac{word-spacing:4.057200px;}
.wsfb{word-spacing:4.174800px;}
.ws2b{word-spacing:4.233600px;}
.ws9f{word-spacing:4.292400px;}
.wsc0{word-spacing:4.351200px;}
.ws85{word-spacing:4.410000px;}
.ws88{word-spacing:4.468800px;}
.wsf5{word-spacing:4.586400px;}
.ws33{word-spacing:4.645200px;}
.ws27{word-spacing:4.762800px;}
.wsa7{word-spacing:4.821600px;}
.ws11c{word-spacing:4.880400px;}
.wsea{word-spacing:4.939200px;}
.ws68{word-spacing:4.998000px;}
.wsc5{word-spacing:5.056800px;}
.wsa3{word-spacing:5.115600px;}
.ws28{word-spacing:5.174400px;}
.wsbf{word-spacing:5.233200px;}
.ws36{word-spacing:5.350800px;}
.ws86{word-spacing:5.468400px;}
.wsbd{word-spacing:5.527200px;}
.ws48{word-spacing:5.586000px;}
.wscd{word-spacing:5.644800px;}
.wsfe{word-spacing:5.762400px;}
.wsa0{word-spacing:5.880000px;}
.ws116{word-spacing:5.938800px;}
.ws12{word-spacing:5.997600px;}
.wsd5{word-spacing:6.115200px;}
.wsf7{word-spacing:6.174000px;}
.ws6e{word-spacing:6.291600px;}
.ws55{word-spacing:6.409200px;}
.ws8b{word-spacing:6.468000px;}
.wsba{word-spacing:6.526800px;}
.wsf4{word-spacing:6.585600px;}
.ws16{word-spacing:6.644400px;}
.wsaa{word-spacing:6.703200px;}
.ws50{word-spacing:6.762000px;}
.ws62{word-spacing:6.820800px;}
.wsb6{word-spacing:6.879600px;}
.ws1f{word-spacing:6.997200px;}
.ws2f{word-spacing:7.114800px;}
.wsfc{word-spacing:7.173600px;}
.ws66{word-spacing:7.232400px;}
.ws107{word-spacing:7.291200px;}
.ws3a{word-spacing:7.350000px;}
.ws15{word-spacing:7.408800px;}
.ws3d{word-spacing:7.440000px;}
.ws19{word-spacing:7.467600px;}
.ws65{word-spacing:7.526400px;}
.ws4e{word-spacing:7.585200px;}
.ws53{word-spacing:7.644000px;}
.ws114{word-spacing:7.820400px;}
.ws9a{word-spacing:7.938000px;}
.ws77{word-spacing:7.996800px;}
.wsd0{word-spacing:8.055600px;}
.ws97{word-spacing:8.114400px;}
.ws7e{word-spacing:8.173200px;}
.ws11d{word-spacing:8.290800px;}
.ws5b{word-spacing:8.349600px;}
.ws10a{word-spacing:8.408400px;}
.ws1d{word-spacing:8.467200px;}
.ws29{word-spacing:8.526000px;}
.wsff{word-spacing:8.584800px;}
.ws32{word-spacing:8.702400px;}
.wsa1{word-spacing:8.820000px;}
.ws9e{word-spacing:8.878800px;}
.ws72{word-spacing:8.937600px;}
.ws57{word-spacing:9.114000px;}
.ws11b{word-spacing:9.172800px;}
.ws45{word-spacing:9.231600px;}
.ws46{word-spacing:9.290400px;}
.ws125{word-spacing:9.408000px;}
.ws54{word-spacing:9.525600px;}
.ws99{word-spacing:9.584400px;}
.ws4f{word-spacing:9.643200px;}
.ws47{word-spacing:9.702000px;}
.ws6b{word-spacing:9.760800px;}
.ws49{word-spacing:9.819600px;}
.ws8d{word-spacing:9.878400px;}
.ws20{word-spacing:9.937200px;}
.ws5d{word-spacing:10.113600px;}
.ws44{word-spacing:10.231200px;}
.ws84{word-spacing:10.290000px;}
.ws10e{word-spacing:10.348800px;}
.ws8c{word-spacing:10.407600px;}
.wsab{word-spacing:10.466400px;}
.wsb8{word-spacing:10.584000px;}
.wsb5{word-spacing:10.701600px;}
.wsca{word-spacing:10.760400px;}
.wscb{word-spacing:10.819200px;}
.ws3c{word-spacing:10.920000px;}
.wsc9{word-spacing:10.995600px;}
.ws8e{word-spacing:11.054400px;}
.wsc4{word-spacing:11.172000px;}
.ws3e{word-spacing:11.220000px;}
.ws10c{word-spacing:11.230800px;}
.wsef{word-spacing:11.289600px;}
.wsc7{word-spacing:11.407200px;}
.ws103{word-spacing:11.524800px;}
.ws13{word-spacing:11.583600px;}
.wsfa{word-spacing:11.877600px;}
.ws30{word-spacing:11.995200px;}
.wsd7{word-spacing:12.054000px;}
.wsf2{word-spacing:12.230400px;}
.ws122{word-spacing:12.348000px;}
.ws100{word-spacing:12.700800px;}
.wsb2{word-spacing:12.759600px;}
.ws102{word-spacing:12.818400px;}
.ws108{word-spacing:12.877200px;}
.ws124{word-spacing:12.994800px;}
.ws5e{word-spacing:13.171200px;}
.wsbe{word-spacing:13.230000px;}
.ws119{word-spacing:13.288800px;}
.ws4c{word-spacing:13.347600px;}
.wsc3{word-spacing:13.406400px;}
.ws11{word-spacing:13.641600px;}
.ws123{word-spacing:13.700400px;}
.ws18{word-spacing:13.759200px;}
.ws74{word-spacing:13.818000px;}
.wsda{word-spacing:13.876800px;}
.wsd9{word-spacing:13.935600px;}
.ws4d{word-spacing:13.994400px;}
.ws76{word-spacing:14.170800px;}
.ws83{word-spacing:14.288400px;}
.wsdc{word-spacing:14.406000px;}
.wsd8{word-spacing:14.464800px;}
.wsb1{word-spacing:14.523600px;}
.wse1{word-spacing:14.582400px;}
.ws105{word-spacing:14.700000px;}
.wsf6{word-spacing:14.758800px;}
.ws60{word-spacing:14.817600px;}
.wse2{word-spacing:14.876400px;}
.ws11a{word-spacing:14.994000px;}
.ws79{word-spacing:15.170400px;}
.wsf3{word-spacing:15.288000px;}
.ws89{word-spacing:15.346800px;}
.wsdb{word-spacing:15.464400px;}
.wsc1{word-spacing:15.582000px;}
.ws81{word-spacing:15.640800px;}
.wsee{word-spacing:15.758400px;}
.ws11f{word-spacing:15.817200px;}
.wse0{word-spacing:15.934800px;}
.wsbc{word-spacing:15.993600px;}
.ws2d{word-spacing:16.170000px;}
.wsdd{word-spacing:16.287600px;}
.wsfd{word-spacing:16.699200px;}
.wsc8{word-spacing:16.993200px;}
.ws111{word-spacing:17.052000px;}
.ws8a{word-spacing:17.110800px;}
.ws17{word-spacing:17.287200px;}
.ws25{word-spacing:17.346000px;}
.wsec{word-spacing:17.404800px;}
.wsc2{word-spacing:17.463600px;}
.wsa4{word-spacing:17.934000px;}
.ws115{word-spacing:18.169200px;}
.ws80{word-spacing:18.639600px;}
.ws2e{word-spacing:18.933600px;}
.ws58{word-spacing:19.168800px;}
.ws3f{word-spacing:19.320000px;}
.wse8{word-spacing:19.580400px;}
.ws106{word-spacing:19.639200px;}
.wse5{word-spacing:19.815600px;}
.ws38{word-spacing:19.992000px;}
.ws5f{word-spacing:20.521200px;}
.ws2a{word-spacing:20.697600px;}
.wsa2{word-spacing:20.815200px;}
.ws10f{word-spacing:21.050400px;}
.wsce{word-spacing:21.344400px;}
.ws52{word-spacing:21.403200px;}
.ws112{word-spacing:21.873600px;}
.ws5c{word-spacing:22.638000px;}
.ws73{word-spacing:23.343600px;}
.wsd1{word-spacing:23.931600px;}
.wsdf{word-spacing:24.460800px;}
.ws75{word-spacing:24.578400px;}
.wsf1{word-spacing:24.813600px;}
.wsde{word-spacing:25.225200px;}
.wsbb{word-spacing:25.284000px;}
.wse6{word-spacing:25.636800px;}
.wse4{word-spacing:25.754400px;}
.ws98{word-spacing:25.813200px;}
.wse3{word-spacing:26.224800px;}
.wse7{word-spacing:26.460000px;}
.ws37{word-spacing:26.812800px;}
.ws117{word-spacing:27.753600px;}
.wse9{word-spacing:28.576800px;}
.ws7a{word-spacing:29.106000px;}
.ws110{word-spacing:31.281600px;}
.wsb0{word-spacing:31.752000px;}
.wsd4{word-spacing:33.045600px;}
.wsd2{word-spacing:34.986000px;}
.ws101{word-spacing:37.455600px;}
.ws59{word-spacing:43.982400px;}
._12{margin-left:-29.988000px;}
._1a{margin-left:-27.720616px;}
._10{margin-left:-25.316425px;}
._1d{margin-left:-20.052482px;}
._16{margin-left:-18.307176px;}
._13{margin-left:-16.917650px;}
._1e{margin-left:-13.924875px;}
._1b{margin-left:-12.347991px;}
._17{margin-left:-11.172009px;}
._f{margin-left:-9.567644px;}
._0{margin-left:-7.372800px;}
._9{margin-left:-6.000000px;}
._2{margin-left:-4.464000px;}
._4{margin-left:-2.564377px;}
._3{margin-left:-1.440000px;}
._5{width:1.167613px;}
._1{width:2.577600px;}
._19{width:4.327427px;}
._8{width:5.794775px;}
._b{width:7.135124px;}
._a{width:9.055200px;}
._15{width:10.353214px;}
._18{width:12.193400px;}
._14{width:14.032187px;}
._7{width:15.059991px;}
._6{width:17.279986px;}
._21{width:23.004000px;}
._e{width:24.720000px;}
._1f{width:30.025187px;}
._d{width:33.120000px;}
._1c{width:36.581987px;}
._c{width:42.720000px;}
._20{width:44.964000px;}
._11{width:50.175852px;}
.fc3{color:transparent;}
.fc2{color:rgb(78,78,77);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:14.074549px;}
.fse{font-size:31.500000px;}
.fsd{font-size:33.600000px;}
.fsf{font-size:36.000000px;}
.fs11{font-size:37.532410px;}
.fs10{font-size:39.900000px;}
.fsc{font-size:41.160000px;}
.fs7{font-size:42.000000px;}
.fs9{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fs0{font-size:48.000000px;}
.fsb{font-size:55.199999px;}
.fsa{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs8{font-size:75.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:4.687042px;}
.y2b{bottom:79.008299px;}
.y2a{bottom:91.009799px;}
.y2c1{bottom:99.461998px;}
.y169{bottom:100.700400px;}
.y29{bottom:103.011299px;}
.y22c{bottom:105.346478px;}
.ydc{bottom:106.620895px;}
.yb3{bottom:106.642495px;}
.y4d{bottom:106.893152px;}
.y65{bottom:107.683506px;}
.y136{bottom:107.752353px;}
.y10f{bottom:107.759553px;}
.y1c9{bottom:107.867530px;}
.y197{bottom:107.903530px;}
.y162{bottom:108.521999px;}
.y1ec{bottom:112.991703px;}
.y2eb{bottom:114.342773px;}
.y2a9{bottom:114.342784px;}
.y28{bottom:115.012799px;}
.y2bf{bottom:115.974000px;}
.y168{bottom:118.693200px;}
.y22b{bottom:118.846478px;}
.y165{bottom:119.426403px;}
.y161{bottom:123.521999px;}
.yb2{bottom:124.635295px;}
.ydb{bottom:124.649695px;}
.y4c{bottom:124.885952px;}
.y263{bottom:125.592750px;}
.y64{bottom:125.676306px;}
.y135{bottom:125.745153px;}
.y10e{bottom:125.752353px;}
.y1c8{bottom:125.860330px;}
.y196{bottom:125.896330px;}
.y1eb{bottom:126.491703px;}
.y27{bottom:127.014299px;}
.y2ea{bottom:127.842773px;}
.y2a8{bottom:127.842784px;}
.y22a{bottom:132.346478px;}
.y2bd{bottom:133.764149px;}
.y167{bottom:136.686000px;}
.y164{bottom:137.419203px;}
.y160{bottom:138.521999px;}
.y26{bottom:139.015799px;}
.y262{bottom:139.092750px;}
.y2be{bottom:139.914000px;}
.y1ea{bottom:139.991703px;}
.y2e9{bottom:141.342773px;}
.y2a7{bottom:141.342784px;}
.yb1{bottom:142.628095px;}
.yda{bottom:142.642495px;}
.y4b{bottom:142.900352px;}
.y63{bottom:143.669106px;}
.y134{bottom:143.737953px;}
.y10d{bottom:143.745153px;}
.y1c7{bottom:143.853130px;}
.y195{bottom:143.889130px;}
.y229{bottom:145.846478px;}
.y25{bottom:151.017299px;}
.y2ba{bottom:151.773148px;}
.y261{bottom:152.592750px;}
.y166{bottom:154.686000px;}
.y2e8{bottom:154.842773px;}
.y2a6{bottom:154.842784px;}
.y163{bottom:155.412003px;}
.y228{bottom:159.346478px;}
.y1e9{bottom:159.487953px;}
.yb0{bottom:160.628095px;}
.yd9{bottom:160.635295px;}
.y4a{bottom:160.893152px;}
.y10c{bottom:161.737953px;}
.y62{bottom:161.741106px;}
.y1c6{bottom:161.845930px;}
.y194{bottom:161.881930px;}
.y24{bottom:163.018799px;}
.y260{bottom:166.092750px;}
.y2bc{bottom:167.479649px;}
.y2bb{bottom:168.058205px;}
.y2e7{bottom:168.342773px;}
.y2a5{bottom:168.342784px;}
.y2b8{bottom:168.927749px;}
.y1e8{bottom:172.987953px;}
.yd8{bottom:178.628095px;}
.yaf{bottom:178.678495px;}
.y49{bottom:178.885952px;}
.y25f{bottom:179.592750px;}
.y61{bottom:179.733906px;}
.y10b{bottom:179.773953px;}
.y1c5{bottom:179.838730px;}
.y193{bottom:179.874730px;}
.y2e6{bottom:181.842773px;}
.y2a4{bottom:181.842784px;}
.y2c2{bottom:182.881943px;}
.y2b7{bottom:184.824749px;}
.y2b9{bottom:185.888248px;}
.y227{bottom:186.346478px;}
.y1e7{bottom:186.491703px;}
.y2b5{bottom:187.776139px;}
.y25e{bottom:193.092750px;}
.y2e5{bottom:195.342773px;}
.y2a3{bottom:195.342784px;}
.yd7{bottom:196.620895px;}
.yae{bottom:196.671295px;}
.y48{bottom:196.893141px;}
.y60{bottom:197.726706px;}
.y10a{bottom:197.766753px;}
.y1c4{bottom:197.831530px;}
.y192{bottom:197.867530px;}
.y226{bottom:199.846478px;}
.y1e6{bottom:199.991703px;}
.y33{bottom:201.361794px;}
.y2b4{bottom:202.539139px;}
.y2b6{bottom:204.131400px;}
.y2b2{bottom:205.759204px;}
.y2e4{bottom:208.842773px;}
.y2a2{bottom:208.842784px;}
.y225{bottom:213.346478px;}
.yd6{bottom:214.642495px;}
.yad{bottom:214.664095px;}
.y32{bottom:214.861794px;}
.y47{bottom:214.885941px;}
.y5f{bottom:215.719506px;}
.y109{bottom:215.759553px;}
.y1c3{bottom:215.824330px;}
.y191{bottom:215.860330px;}
.y1e5{bottom:219.487953px;}
.y2b1{bottom:220.060204px;}
.y2b3{bottom:221.440041px;}
.y170{bottom:221.767342px;}
.y2e3{bottom:222.342773px;}
.y2a1{bottom:222.342784px;}
.y2af{bottom:223.765945px;}
.y31{bottom:228.361794px;}
.yd5{bottom:232.635295px;}
.yac{bottom:232.656895px;}
.y46{bottom:232.900341px;}
.y1e4{bottom:232.987953px;}
.y5e{bottom:233.712306px;}
.y108{bottom:233.752353px;}
.y1c2{bottom:233.817130px;}
.y190{bottom:233.853130px;}
.y2e2{bottom:235.842773px;}
.y2a0{bottom:235.842784px;}
.y16f{bottom:236.767342px;}
.y2ae{bottom:237.636445px;}
.y2b0{bottom:238.801346px;}
.y2ab{bottom:241.768497px;}
.y2ad{bottom:241.773445px;}
.y30{bottom:241.861794px;}
.y1e3{bottom:246.487953px;}
.y2e1{bottom:249.342773px;}
.y29f{bottom:249.342784px;}
.yd4{bottom:250.628095px;}
.yab{bottom:250.649695px;}
.y45{bottom:250.893141px;}
.y5d{bottom:251.705106px;}
.y107{bottom:251.745153px;}
.y16e{bottom:251.767342px;}
.y1c1{bottom:251.809930px;}
.y18f{bottom:251.845930px;}
.y224{bottom:252.350228px;}
.y2f{bottom:255.361794px;}
.y2aa{bottom:255.859497px;}
.y2ac{bottom:256.813042px;}
.y1e2{bottom:259.987953px;}
.y2e0{bottom:262.842773px;}
.y29e{bottom:262.842784px;}
.y223{bottom:265.850228px;}
.yd3{bottom:268.620895px;}
.yaa{bottom:268.642495px;}
.y2e{bottom:268.861794px;}
.y44{bottom:268.885941px;}
.y5c{bottom:269.697906px;}
.y106{bottom:269.737953px;}
.y1c0{bottom:269.802730px;}
.y18e{bottom:269.838730px;}
.y2df{bottom:276.342773px;}
.y29d{bottom:276.342784px;}
.y222{bottom:279.350228px;}
.y25d{bottom:280.842750px;}
.y2c0{bottom:282.343941px;}
.ya9{bottom:286.635295px;}
.y43{bottom:286.900341px;}
.y5b{bottom:287.690706px;}
.y105{bottom:287.737953px;}
.y133{bottom:287.759553px;}
.y1bf{bottom:287.795530px;}
.y18d{bottom:287.831530px;}
.y2de{bottom:289.842773px;}
.y29c{bottom:289.842784px;}
.y1e1{bottom:291.487953px;}
.y221{bottom:298.846478px;}
.y2dd{bottom:303.342773px;}
.y29b{bottom:303.342784px;}
.ya8{bottom:304.628095px;}
.y42{bottom:304.893141px;}
.y1e0{bottom:304.987953px;}
.y5a{bottom:305.683506px;}
.y132{bottom:305.752353px;}
.y1be{bottom:305.788330px;}
.y18c{bottom:305.824330px;}
.y25c{bottom:307.842750px;}
.y220{bottom:312.346478px;}
.y2dc{bottom:316.842773px;}
.y29a{bottom:316.842784px;}
.y22{bottom:319.715103px;}
.y25b{bottom:321.342750px;}
.yd2{bottom:322.620895px;}
.ya7{bottom:322.642495px;}
.y41{bottom:322.885941px;}
.y1df{bottom:322.987953px;}
.y59{bottom:323.676306px;}
.y131{bottom:323.745153px;}
.y104{bottom:323.752353px;}
.y1bd{bottom:323.781130px;}
.y18b{bottom:323.817130px;}
.y21f{bottom:325.846478px;}
.y2db{bottom:330.342773px;}
.y299{bottom:330.342784px;}
.y21{bottom:337.715103px;}
.y25a{bottom:339.342750px;}
.y21e{bottom:339.346478px;}
.yd1{bottom:340.620895px;}
.ya6{bottom:340.635295px;}
.y40{bottom:340.914741px;}
.y58{bottom:341.669106px;}
.y103{bottom:341.745153px;}
.y130{bottom:341.766730px;}
.y1bc{bottom:341.773930px;}
.y18a{bottom:341.809930px;}
.y2da{bottom:343.842773px;}
.y298{bottom:343.842784px;}
.y259{bottom:352.842750px;}
.y21d{bottom:352.846478px;}
.y20{bottom:355.715103px;}
.y2d9{bottom:357.342773px;}
.y297{bottom:357.342784px;}
.ya5{bottom:358.628095px;}
.yd0{bottom:358.635295px;}
.y3f{bottom:358.907541px;}
.y1de{bottom:359.009530px;}
.y57{bottom:359.697883px;}
.y102{bottom:359.737953px;}
.y12f{bottom:359.759530px;}
.y1bb{bottom:359.766730px;}
.y189{bottom:359.802730px;}
.y258{bottom:361.842750px;}
.y21c{bottom:366.346478px;}
.y2d8{bottom:370.842773px;}
.y296{bottom:370.842784px;}
.ya4{bottom:376.620895px;}
.ycf{bottom:376.628095px;}
.y3e{bottom:376.900341px;}
.y1dd{bottom:377.002330px;}
.y56{bottom:377.690683px;}
.y101{bottom:377.752330px;}
.y1ba{bottom:377.759530px;}
.y188{bottom:377.795530px;}
.y1f{bottom:378.215103px;}
.y257{bottom:379.842750px;}
.y21b{bottom:379.846478px;}
.y2d7{bottom:384.342773px;}
.y295{bottom:384.342784px;}
.y256{bottom:388.842728px;}
.y21a{bottom:393.346478px;}
.ya3{bottom:394.620895px;}
.y3d{bottom:394.893141px;}
.y1dc{bottom:394.995130px;}
.y55{bottom:395.683483px;}
.y100{bottom:395.745130px;}
.y1b9{bottom:395.752330px;}
.y187{bottom:395.788330px;}
.y1e{bottom:396.215103px;}
.y2d6{bottom:397.842773px;}
.y294{bottom:397.842784px;}
.y2d5{bottom:411.342773px;}
.y293{bottom:411.342784px;}
.ya2{bottom:412.620895px;}
.y219{bottom:412.842728px;}
.y3c{bottom:412.885941px;}
.y1db{bottom:412.987930px;}
.y54{bottom:413.676283px;}
.yff{bottom:413.745130px;}
.y186{bottom:413.781130px;}
.y1d{bottom:414.215103px;}
.y255{bottom:415.842728px;}
.y2d4{bottom:424.842773px;}
.y292{bottom:424.842784px;}
.y218{bottom:426.342728px;}
.y254{bottom:429.342728px;}
.y3b{bottom:430.914741px;}
.y1da{bottom:431.023930px;}
.y53{bottom:431.669083px;}
.y1b8{bottom:431.737930px;}
.yfe{bottom:431.745130px;}
.y12e{bottom:431.766730px;}
.y185{bottom:431.773930px;}
.y1c{bottom:432.215103px;}
.y2d3{bottom:438.342773px;}
.y291{bottom:438.342784px;}
.y217{bottom:439.842728px;}
.y253{bottom:442.842728px;}
.ya1{bottom:448.620895px;}
.yce{bottom:448.628095px;}
.y3a{bottom:448.907541px;}
.y1d9{bottom:449.016730px;}
.y52{bottom:449.690683px;}
.y1b7{bottom:449.752330px;}
.y12d{bottom:449.759530px;}
.y184{bottom:449.766730px;}
.yfd{bottom:449.781130px;}
.y1b{bottom:450.215103px;}
.y2d2{bottom:451.842773px;}
.y290{bottom:451.842784px;}
.y216{bottom:453.342728px;}
.y252{bottom:456.342728px;}
.y2d1{bottom:465.342773px;}
.y28f{bottom:465.342784px;}
.ycd{bottom:466.620895px;}
.ya0{bottom:466.649695px;}
.y215{bottom:466.842728px;}
.y39{bottom:466.900341px;}
.y1d8{bottom:467.009530px;}
.y51{bottom:467.683483px;}
.y1b6{bottom:467.745130px;}
.y12c{bottom:467.752330px;}
.y183{bottom:467.759530px;}
.yfc{bottom:467.773930px;}
.y1a{bottom:468.215103px;}
.y2d0{bottom:478.842773px;}
.y28e{bottom:478.842784px;}
.y214{bottom:480.350228px;}
.y251{bottom:483.342728px;}
.y9f{bottom:484.642495px;}
.ycc{bottom:484.649695px;}
.y38{bottom:484.893141px;}
.y1d7{bottom:485.002330px;}
.y50{bottom:485.676283px;}
.y1b5{bottom:485.737930px;}
.y12b{bottom:485.745130px;}
.y182{bottom:485.752330px;}
.yfb{bottom:485.766730px;}
.y19{bottom:486.215103px;}
.y2cf{bottom:492.342773px;}
.y28d{bottom:492.342784px;}
.y213{bottom:493.850228px;}
.y250{bottom:496.842728px;}
.y9e{bottom:502.635295px;}
.ycb{bottom:502.642495px;}
.y37{bottom:502.885941px;}
.y1d6{bottom:502.995130px;}
.y4f{bottom:503.669083px;}
.y12a{bottom:503.737930px;}
.y181{bottom:503.745130px;}
.yfa{bottom:503.759530px;}
.y1b4{bottom:503.781130px;}
.y18{bottom:504.215103px;}
.y2ce{bottom:505.842773px;}
.y28c{bottom:505.842784px;}
.y212{bottom:507.350228px;}
.y2cd{bottom:519.342773px;}
.y28b{bottom:519.342784px;}
.y9d{bottom:520.628095px;}
.yca{bottom:520.635295px;}
.y36{bottom:520.885941px;}
.y1d5{bottom:520.987930px;}
.y4e{bottom:521.683038px;}
.y129{bottom:521.737930px;}
.yf9{bottom:521.752330px;}
.y1b3{bottom:521.773930px;}
.y24f{bottom:523.842728px;}
.y17{bottom:526.715103px;}
.y211{bottom:526.846478px;}
.y2cc{bottom:532.842773px;}
.y28a{bottom:532.842784px;}
.y24e{bottom:537.342728px;}
.y9c{bottom:538.620895px;}
.yc9{bottom:538.628095px;}
.y1d4{bottom:539.002330px;}
.y128{bottom:539.737930px;}
.yf8{bottom:539.745130px;}
.y1b2{bottom:539.766730px;}
.y180{bottom:539.788330px;}
.y210{bottom:540.346478px;}
.y16{bottom:544.715103px;}
.y2cb{bottom:546.342773px;}
.y289{bottom:546.342784px;}
.y24d{bottom:550.842728px;}
.y20f{bottom:553.846478px;}
.y9b{bottom:556.642495px;}
.yc8{bottom:556.664095px;}
.y1d3{bottom:556.995130px;}
.yf7{bottom:557.737930px;}
.y1b1{bottom:557.759530px;}
.y17f{bottom:557.781130px;}
.y2ca{bottom:559.842773px;}
.y288{bottom:559.842784px;}
.y15{bottom:562.715103px;}
.y24c{bottom:564.342728px;}
.y20e{bottom:567.346478px;}
.y2c9{bottom:573.342773px;}
.y287{bottom:573.342784px;}
.y7c{bottom:573.535950px;}
.y9a{bottom:574.635295px;}
.yc7{bottom:574.656895px;}
.y1d2{bottom:574.987930px;}
.y1b0{bottom:575.752330px;}
.y127{bottom:575.766730px;}
.yf6{bottom:575.773930px;}
.y24b{bottom:577.842728px;}
.y14{bottom:580.715103px;}
.y20d{bottom:580.846478px;}
.y2c8{bottom:586.842773px;}
.y286{bottom:586.842784px;}
.y16d{bottom:591.335266px;}
.y7b{bottom:591.535950px;}
.y99{bottom:592.628095px;}
.yc6{bottom:592.649695px;}
.y1d1{bottom:592.987930px;}
.y1af{bottom:593.745130px;}
.y126{bottom:593.759530px;}
.yf5{bottom:593.766730px;}
.y20c{bottom:594.346478px;}
.y13{bottom:598.715103px;}
.y2c7{bottom:600.342773px;}
.y285{bottom:600.342784px;}
.y24a{bottom:604.842728px;}
.y16c{bottom:606.335266px;}
.y20b{bottom:607.846478px;}
.y7a{bottom:609.535950px;}
.y98{bottom:610.620895px;}
.yc5{bottom:610.642495px;}
.y1ae{bottom:611.737930px;}
.y125{bottom:611.752330px;}
.yf4{bottom:611.759530px;}
.y2c6{bottom:613.842773px;}
.y284{bottom:613.842784px;}
.y12{bottom:616.715103px;}
.y16b{bottom:621.335266px;}
.y20a{bottom:621.346478px;}
.y2c5{bottom:627.342773px;}
.y283{bottom:627.342784px;}
.y79{bottom:627.535950px;}
.yc4{bottom:628.635295px;}
.y97{bottom:628.649695px;}
.y124{bottom:629.745130px;}
.yf3{bottom:629.752330px;}
.y11{bottom:634.715103px;}
.y16a{bottom:636.335266px;}
.y209{bottom:640.842728px;}
.y249{bottom:640.842773px;}
.y282{bottom:640.842784px;}
.y78{bottom:645.535950px;}
.yc3{bottom:646.628095px;}
.y96{bottom:646.642495px;}
.y148{bottom:647.031130px;}
.y123{bottom:647.737930px;}
.yf2{bottom:647.745130px;}
.y15f{bottom:648.195871px;}
.y208{bottom:654.342728px;}
.y248{bottom:654.342773px;}
.y281{bottom:654.342784px;}
.y10{bottom:657.215103px;}
.y77{bottom:663.535950px;}
.yc2{bottom:664.620895px;}
.y95{bottom:664.635295px;}
.y147{bottom:665.023930px;}
.yf1{bottom:665.737930px;}
.y122{bottom:665.745130px;}
.y1ad{bottom:665.766730px;}
.y15e{bottom:666.188671px;}
.y207{bottom:667.842728px;}
.y247{bottom:667.842773px;}
.y280{bottom:667.842784px;}
.yf{bottom:675.215103px;}
.y206{bottom:681.342728px;}
.y246{bottom:681.342773px;}
.y27f{bottom:681.342784px;}
.y76{bottom:681.535950px;}
.y94{bottom:682.628095px;}
.yc1{bottom:682.642495px;}
.y146{bottom:683.016730px;}
.y121{bottom:683.737930px;}
.yf0{bottom:683.745130px;}
.y1ac{bottom:683.759530px;}
.y15d{bottom:684.181471px;}
.ye{bottom:693.215103px;}
.y205{bottom:694.842728px;}
.y245{bottom:694.842773px;}
.y27e{bottom:694.842784px;}
.y75{bottom:699.535950px;}
.y93{bottom:700.620895px;}
.yc0{bottom:700.635295px;}
.y145{bottom:701.009530px;}
.yef{bottom:701.737930px;}
.y1ab{bottom:701.752330px;}
.y120{bottom:701.759530px;}
.y1d0{bottom:701.766776px;}
.y17e{bottom:701.773976px;}
.y15c{bottom:702.174271px;}
.y204{bottom:708.342728px;}
.y244{bottom:708.342773px;}
.y27d{bottom:708.342784px;}
.yd{bottom:711.215103px;}
.y74{bottom:717.535950px;}
.ybf{bottom:718.628095px;}
.y92{bottom:718.649741px;}
.y144{bottom:719.002330px;}
.yee{bottom:719.737930px;}
.y1aa{bottom:719.745130px;}
.y11f{bottom:719.752330px;}
.y1cf{bottom:719.759576px;}
.y17d{bottom:719.766776px;}
.y15b{bottom:720.167071px;}
.y203{bottom:721.842728px;}
.y243{bottom:721.842773px;}
.y27c{bottom:721.842784px;}
.yc{bottom:729.215103px;}
.y202{bottom:735.342728px;}
.y242{bottom:735.342773px;}
.y27b{bottom:735.342784px;}
.y73{bottom:735.535950px;}
.ybe{bottom:736.620895px;}
.y91{bottom:736.642541px;}
.y143{bottom:736.995130px;}
.y1a9{bottom:737.737930px;}
.y11e{bottom:737.745130px;}
.y1ce{bottom:737.752376px;}
.y17c{bottom:737.759576px;}
.y15a{bottom:738.159871px;}
.y241{bottom:748.842773px;}
.y27a{bottom:748.842784px;}
.y201{bottom:748.846523px;}
.yb{bottom:751.715103px;}
.y72{bottom:753.535950px;}
.y90{bottom:754.635341px;}
.y142{bottom:754.987930px;}
.y1cd{bottom:755.745176px;}
.yed{bottom:755.752376px;}
.y1a8{bottom:755.773976px;}
.y159{bottom:756.152671px;}
.y240{bottom:762.342773px;}
.y279{bottom:762.342784px;}
.y200{bottom:762.346523px;}
.y8f{bottom:772.628141px;}
.y141{bottom:772.995176px;}
.y1cc{bottom:773.737976px;}
.yec{bottom:773.745176px;}
.y1a7{bottom:773.766776px;}
.y158{bottom:774.145471px;}
.y23f{bottom:775.842773px;}
.y278{bottom:775.842784px;}
.y71{bottom:776.035950px;}
.y1ff{bottom:781.842773px;}
.y23e{bottom:789.342773px;}
.y277{bottom:789.342784px;}
.y8e{bottom:790.620941px;}
.ybd{bottom:790.635341px;}
.y140{bottom:791.016776px;}
.yeb{bottom:791.737976px;}
.y1cb{bottom:791.752376px;}
.y1a6{bottom:791.759576px;}
.y157{bottom:792.138271px;}
.y1fe{bottom:795.342773px;}
.y23d{bottom:802.842773px;}
.y276{bottom:802.842784px;}
.y8d{bottom:808.628141px;}
.y1fd{bottom:808.842773px;}
.y13f{bottom:809.009576px;}
.y11d{bottom:809.737976px;}
.yea{bottom:809.745176px;}
.y1a5{bottom:809.752376px;}
.y17b{bottom:809.817176px;}
.y156{bottom:810.131071px;}
.y23c{bottom:816.342773px;}
.y275{bottom:816.342784px;}
.y70{bottom:819.462708px;}
.y1fc{bottom:822.342773px;}
.ya{bottom:822.548112px;}
.y8c{bottom:826.620941px;}
.y13e{bottom:827.002376px;}
.ye9{bottom:827.737976px;}
.y1a4{bottom:827.745176px;}
.y11c{bottom:827.795576px;}
.y17a{bottom:827.809976px;}
.y155{bottom:828.123871px;}
.y23b{bottom:829.842773px;}
.y274{bottom:829.842784px;}
.y1fb{bottom:835.842773px;}
.y23a{bottom:843.342773px;}
.y273{bottom:843.342784px;}
.y9{bottom:843.548112px;}
.ybc{bottom:844.635341px;}
.y8b{bottom:844.664141px;}
.y13d{bottom:844.995176px;}
.y1a3{bottom:845.737976px;}
.y11b{bottom:845.788376px;}
.y179{bottom:845.802776px;}
.ye8{bottom:845.817176px;}
.y154{bottom:846.123871px;}
.y1fa{bottom:849.342773px;}
.y6f{bottom:851.337708px;}
.y239{bottom:856.842773px;}
.y272{bottom:856.842784px;}
.ybb{bottom:862.628141px;}
.y8a{bottom:862.656941px;}
.y1f9{bottom:862.842773px;}
.y13c{bottom:862.987976px;}
.y1a2{bottom:863.759576px;}
.y11a{bottom:863.781176px;}
.y178{bottom:863.795576px;}
.ye7{bottom:863.809976px;}
.y153{bottom:864.145471px;}
.y8{bottom:864.552612px;}
.y6e{bottom:869.337708px;}
.y238{bottom:870.342773px;}
.y271{bottom:870.342784px;}
.y1f8{bottom:876.342773px;}
.yba{bottom:880.620941px;}
.y89{bottom:880.649741px;}
.y13b{bottom:880.987976px;}
.y1a1{bottom:881.752376px;}
.y119{bottom:881.773976px;}
.y177{bottom:881.788376px;}
.ye6{bottom:881.802776px;}
.y152{bottom:882.138271px;}
.y2c4{bottom:883.842773px;}
.y270{bottom:883.842784px;}
.y6d{bottom:887.337708px;}
.y1f7{bottom:889.850273px;}
.y237{bottom:897.342773px;}
.y26f{bottom:897.342784px;}
.yb9{bottom:898.635341px;}
.y88{bottom:898.642541px;}
.y13a{bottom:898.995176px;}
.y1a0{bottom:899.745176px;}
.y118{bottom:899.766776px;}
.y176{bottom:899.781176px;}
.ye5{bottom:899.795576px;}
.y151{bottom:900.131071px;}
.y7{bottom:900.577528px;}
.y2f5{bottom:901.842773px;}
.y1f6{bottom:903.350273px;}
.y6c{bottom:905.337708px;}
.y236{bottom:910.842773px;}
.y26e{bottom:910.842784px;}
.y2f4{bottom:915.342773px;}
.yb8{bottom:916.628141px;}
.y87{bottom:916.635341px;}
.y139{bottom:916.987976px;}
.y19f{bottom:917.737976px;}
.y117{bottom:917.759576px;}
.y175{bottom:917.773976px;}
.ye4{bottom:917.788376px;}
.y150{bottom:918.131071px;}
.y1f5{bottom:922.846523px;}
.y6b{bottom:923.337708px;}
.y235{bottom:924.342773px;}
.y26d{bottom:924.342784px;}
.y2f3{bottom:928.842773px;}
.yb7{bottom:934.620941px;}
.y86{bottom:934.628141px;}
.y138{bottom:934.992776px;}
.y116{bottom:935.752376px;}
.y174{bottom:935.766776px;}
.y19e{bottom:935.773976px;}
.ye3{bottom:935.781176px;}
.y14f{bottom:936.123871px;}
.y1f4{bottom:936.346523px;}
.y234{bottom:937.842773px;}
.y26c{bottom:937.842784px;}
.y6{bottom:939.565528px;}
.y6a{bottom:941.337708px;}
.y1f3{bottom:949.846523px;}
.y233{bottom:951.342773px;}
.y26b{bottom:951.342784px;}
.y85{bottom:952.620941px;}
.yb6{bottom:952.642541px;}
.y137{bottom:952.987976px;}
.y115{bottom:953.745176px;}
.y173{bottom:953.759576px;}
.y19d{bottom:953.766776px;}
.ye2{bottom:953.773976px;}
.y14e{bottom:954.145471px;}
.y69{bottom:959.337708px;}
.y1f2{bottom:963.346523px;}
.y232{bottom:964.842773px;}
.y26a{bottom:964.842784px;}
.y2f2{bottom:964.842808px;}
.y84{bottom:970.635341px;}
.y1ca{bottom:971.737976px;}
.y114{bottom:971.745176px;}
.y172{bottom:971.752376px;}
.y19c{bottom:971.759576px;}
.ye1{bottom:971.766776px;}
.y14d{bottom:972.138271px;}
.y1f1{bottom:976.846523px;}
.y68{bottom:977.337708px;}
.y231{bottom:978.342773px;}
.y269{bottom:978.342784px;}
.y2f1{bottom:978.342808px;}
.y5{bottom:978.553528px;}
.y83{bottom:988.628141px;}
.y113{bottom:989.737976px;}
.y171{bottom:989.745176px;}
.y19b{bottom:989.752376px;}
.ye0{bottom:989.759576px;}
.y14c{bottom:990.131071px;}
.y230{bottom:991.842773px;}
.y268{bottom:991.842784px;}
.y2f0{bottom:991.842808px;}
.y67{bottom:995.337708px;}
.y1f0{bottom:996.342773px;}
.y2c3{bottom:1005.342773px;}
.y267{bottom:1005.342784px;}
.y2ef{bottom:1005.342808px;}
.y82{bottom:1006.620941px;}
.y112{bottom:1007.737976px;}
.y19a{bottom:1007.745176px;}
.ydf{bottom:1007.752376px;}
.y14b{bottom:1008.123871px;}
.y1ef{bottom:1009.842773px;}
.y22f{bottom:1018.842773px;}
.y266{bottom:1018.842784px;}
.y2ee{bottom:1018.842808px;}
.y1ee{bottom:1023.342773px;}
.y81{bottom:1024.620941px;}
.yb5{bottom:1024.642795px;}
.y199{bottom:1025.737976px;}
.yde{bottom:1025.745176px;}
.y111{bottom:1025.759853px;}
.y14a{bottom:1026.123871px;}
.y66{bottom:1032.087708px;}
.y22e{bottom:1032.342773px;}
.y265{bottom:1032.342784px;}
.y2ed{bottom:1032.342808px;}
.y4{bottom:1033.362579px;}
.y23{bottom:1035.750183px;}
.y1ed{bottom:1036.842773px;}
.y80{bottom:1042.620941px;}
.yb4{bottom:1042.635595px;}
.ydd{bottom:1043.737976px;}
.y110{bottom:1043.752653px;}
.y198{bottom:1043.896630px;}
.y149{bottom:1044.123871px;}
.y22d{bottom:1045.842773px;}
.y264{bottom:1045.842784px;}
.y2ec{bottom:1045.842808px;}
.y3{bottom:1097.297079px;}
.y2{bottom:1112.297079px;}
.y2c{bottom:1117.669464px;}
.y7d{bottom:1126.524628px;}
.y34{bottom:1126.524719px;}
.y7f{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.y7e{bottom:1127.300079px;}
.y35{bottom:1127.304719px;}
.h30{height:10.640359px;}
.hf{height:20.380500px;}
.h2a{height:27.540000px;}
.h26{height:27.814500px;}
.h2e{height:28.374502px;}
.h28{height:29.988000px;}
.h2c{height:30.324000px;}
.h2d{height:30.523500px;}
.h29{height:32.130000px;}
.h2b{height:35.532000px;}
.he{height:37.086000px;}
.h11{height:39.735000px;}
.hd{height:41.538000px;}
.h1f{height:42.384000px;}
.h27{height:42.840000px;}
.h21{height:43.785000px;}
.h4{height:45.696000px;}
.h3{height:45.744000px;}
.h24{height:45.784500px;}
.h25{height:45.799317px;}
.h22{height:45.799500px;}
.h23{height:45.814500px;}
.h2{height:47.232000px;}
.h1e{height:47.472000px;}
.hc{height:52.980000px;}
.h13{height:53.709599px;}
.h12{height:55.860000px;}
.hb{height:58.380000px;}
.ha{height:61.120200px;}
.h15{height:62.391635px;}
.h20{height:62.419565px;}
.h18{height:62.449281px;}
.h1d{height:62.505965px;}
.h1c{height:62.506879px;}
.h14{height:62.535589px;}
.h17{height:62.563565px;}
.h1b{height:62.564296px;}
.h19{height:62.592365px;}
.h16{height:62.593235px;}
.h1a{height:62.593279px;}
.h8{height:67.194379px;}
.h9{height:67.212379px;}
.h10{height:71.400000px;}
.h5{height:77.142000px;}
.h6{height:137.088000px;}
.h7{height:137.232000px;}
.h2f{height:204.143990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:202.252510px;}
.w3{width:344.762993px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x19{left:12.796051px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xa{left:95.880900px;}
.xd{left:97.034552px;}
.xb{left:107.880900px;}
.xc{left:125.880900px;}
.x1b{left:139.550400px;}
.x1d{left:140.704651px;}
.x5{left:270.817497px;}
.x8{left:457.081652px;}
.x18{left:463.109985px;}
.xe{left:466.086594px;}
.x9{left:469.081794px;}
.x17{left:475.906036px;}
.x16{left:476.938660px;}
.xf{left:479.588102px;}
.x11{left:483.529633px;}
.x15{left:487.660338px;}
.x12{left:490.386133px;}
.x13{left:493.103989px;}
.x1a{left:602.660385px;}
.x1c{left:603.814636px;}
.x6{left:605.621979px;}
.x14{left:660.952332px;}
.x4{left:694.929886px;}
.x10{left:741.068390px;}
.x7{left:747.224258px;}
@media print{
.v8{vertical-align:-16.000000pt;}
.v3{vertical-align:-13.143450pt;}
.v6{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v9{vertical-align:3.024000pt;}
.v5{vertical-align:13.067057pt;}
.v7{vertical-align:15.986667pt;}
.v4{vertical-align:20.906657pt;}
.v2{vertical-align:23.466471pt;}
.ls19{letter-spacing:-4.547200pt;}
.ls16{letter-spacing:-2.707413pt;}
.ls3{letter-spacing:-0.933333pt;}
.lsa{letter-spacing:-0.888533pt;}
.ls5{letter-spacing:-0.522667pt;}
.ls6{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.470400pt;}
.ls4{letter-spacing:-0.418133pt;}
.ls15{letter-spacing:-0.313600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000001pt;}
.ls22{letter-spacing:0.000022pt;}
.ls8{letter-spacing:0.000355pt;}
.lse{letter-spacing:0.011745pt;}
.ls1c{letter-spacing:0.013344pt;}
.lsd{letter-spacing:0.042493pt;}
.lsf{letter-spacing:0.049452pt;}
.lsc{letter-spacing:0.058545pt;}
.ls7{letter-spacing:0.079869pt;}
.ls24{letter-spacing:0.133449pt;}
.ls14{letter-spacing:0.182933pt;}
.ls25{letter-spacing:0.200173pt;}
.ls9{letter-spacing:0.292693pt;}
.ls1f{letter-spacing:0.313600pt;}
.ls18{letter-spacing:0.470400pt;}
.ls1d{letter-spacing:0.512213pt;}
.ls1a{letter-spacing:0.637653pt;}
.ls13{letter-spacing:0.684693pt;}
.ls10{letter-spacing:0.731733pt;}
.ls20{letter-spacing:0.736960pt;}
.ls1e{letter-spacing:0.747413pt;}
.ls1b{letter-spacing:0.751456pt;}
.ls12{letter-spacing:0.784000pt;}
.ls11{letter-spacing:0.789202pt;}
.ls26{letter-spacing:1.000864pt;}
.ls17{letter-spacing:1.149867pt;}
.ls23{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.ls1{letter-spacing:34.049624pt;}
.ws1{word-spacing:-18.858667pt;}
.ws93{word-spacing:-13.432533pt;}
.ws95{word-spacing:-13.014400pt;}
.ws94{word-spacing:-12.753067pt;}
.wsf0{word-spacing:-12.596267pt;}
.wsd{word-spacing:-12.282667pt;}
.ws91{word-spacing:-11.969067pt;}
.wsc{word-spacing:-11.864533pt;}
.wse{word-spacing:-11.760000pt;}
.ws5{word-spacing:-11.680000pt;}
.ws3{word-spacing:-11.096533pt;}
.ws4{word-spacing:-11.040000pt;}
.ws130{word-spacing:-10.942783pt;}
.wsf{word-spacing:-10.560000pt;}
.wsa{word-spacing:-10.384000pt;}
.ws12f{word-spacing:-10.275540pt;}
.ws43{word-spacing:-10.156800pt;}
.ws12e{word-spacing:-9.474848pt;}
.ws12d{word-spacing:-9.408124pt;}
.wsd3{word-spacing:-9.110080pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws41{word-spacing:-8.890560pt;}
.ws8f{word-spacing:-8.780800pt;}
.ws7{word-spacing:-8.760000pt;}
.ws42{word-spacing:-8.597867pt;}
.ws121{word-spacing:-8.280000pt;}
.ws96{word-spacing:-7.735467pt;}
.ws6{word-spacing:-7.242667pt;}
.wseb{word-spacing:-6.540800pt;}
.ws120{word-spacing:-6.132000pt;}
.ws92{word-spacing:-5.890453pt;}
.ws5a{word-spacing:-5.749333pt;}
.wsb{word-spacing:-5.013333pt;}
.ws9{word-spacing:-2.464000pt;}
.wsc6{word-spacing:-1.777067pt;}
.ws131{word-spacing:-1.668107pt;}
.wsa6{word-spacing:-1.202133pt;}
.ws6c{word-spacing:-0.784000pt;}
.wsa8{word-spacing:-0.731733pt;}
.ws23{word-spacing:-0.627200pt;}
.ws10{word-spacing:-0.574933pt;}
.wsf8{word-spacing:-0.470400pt;}
.ws9c{word-spacing:-0.418133pt;}
.ws6d{word-spacing:-0.365867pt;}
.wsad{word-spacing:-0.261333pt;}
.wsed{word-spacing:-0.156800pt;}
.ws22{word-spacing:-0.104533pt;}
.ws12b{word-spacing:-0.080000pt;}
.ws12a{word-spacing:-0.052267pt;}
.ws40{word-spacing:-0.049067pt;}
.ws12c{word-spacing:-0.040000pt;}
.ws90{word-spacing:-0.036587pt;}
.ws8{word-spacing:0.000000pt;}
.wsa9{word-spacing:0.052267pt;}
.ws87{word-spacing:0.104533pt;}
.ws9d{word-spacing:0.156800pt;}
.ws67{word-spacing:0.209067pt;}
.ws7c{word-spacing:0.261333pt;}
.wsa5{word-spacing:0.313600pt;}
.wsb7{word-spacing:0.365867pt;}
.ws26{word-spacing:0.418133pt;}
.ws6f{word-spacing:0.470400pt;}
.ws2c{word-spacing:0.522667pt;}
.ws4a{word-spacing:0.574933pt;}
.ws6a{word-spacing:0.627200pt;}
.ws1b{word-spacing:0.679467pt;}
.ws129{word-spacing:0.731733pt;}
.ws109{word-spacing:0.888533pt;}
.ws61{word-spacing:0.940800pt;}
.ws10d{word-spacing:0.993067pt;}
.ws70{word-spacing:1.045333pt;}
.wsaf{word-spacing:1.097600pt;}
.wscc{word-spacing:1.149867pt;}
.ws3b{word-spacing:1.173333pt;}
.ws56{word-spacing:1.202133pt;}
.ws21{word-spacing:1.254400pt;}
.ws10b{word-spacing:1.306667pt;}
.ws11e{word-spacing:1.358933pt;}
.ws71{word-spacing:1.411200pt;}
.wsf9{word-spacing:1.463467pt;}
.ws34{word-spacing:1.515733pt;}
.ws35{word-spacing:1.568000pt;}
.wsb9{word-spacing:1.620267pt;}
.ws4b{word-spacing:1.672533pt;}
.ws9b{word-spacing:1.724800pt;}
.wsb4{word-spacing:1.777067pt;}
.ws69{word-spacing:1.829333pt;}
.wsae{word-spacing:1.881600pt;}
.ws63{word-spacing:1.986133pt;}
.ws126{word-spacing:2.038400pt;}
.ws82{word-spacing:2.090667pt;}
.ws31{word-spacing:2.195200pt;}
.ws113{word-spacing:2.247467pt;}
.ws1e{word-spacing:2.299733pt;}
.ws1c{word-spacing:2.404267pt;}
.ws14{word-spacing:2.456533pt;}
.ws127{word-spacing:2.508800pt;}
.ws1a{word-spacing:2.561067pt;}
.ws7b{word-spacing:2.613333pt;}
.ws39{word-spacing:2.717867pt;}
.ws51{word-spacing:2.822400pt;}
.ws128{word-spacing:2.874667pt;}
.ws78{word-spacing:2.926933pt;}
.ws24{word-spacing:2.979200pt;}
.ws7d{word-spacing:3.083733pt;}
.wsb3{word-spacing:3.188267pt;}
.ws64{word-spacing:3.240533pt;}
.ws118{word-spacing:3.292800pt;}
.wsd6{word-spacing:3.397333pt;}
.ws7f{word-spacing:3.449600pt;}
.wscf{word-spacing:3.501867pt;}
.ws104{word-spacing:3.554133pt;}
.wsac{word-spacing:3.606400pt;}
.wsfb{word-spacing:3.710933pt;}
.ws2b{word-spacing:3.763200pt;}
.ws9f{word-spacing:3.815467pt;}
.wsc0{word-spacing:3.867733pt;}
.ws85{word-spacing:3.920000pt;}
.ws88{word-spacing:3.972267pt;}
.wsf5{word-spacing:4.076800pt;}
.ws33{word-spacing:4.129067pt;}
.ws27{word-spacing:4.233600pt;}
.wsa7{word-spacing:4.285867pt;}
.ws11c{word-spacing:4.338133pt;}
.wsea{word-spacing:4.390400pt;}
.ws68{word-spacing:4.442667pt;}
.wsc5{word-spacing:4.494933pt;}
.wsa3{word-spacing:4.547200pt;}
.ws28{word-spacing:4.599467pt;}
.wsbf{word-spacing:4.651733pt;}
.ws36{word-spacing:4.756267pt;}
.ws86{word-spacing:4.860800pt;}
.wsbd{word-spacing:4.913067pt;}
.ws48{word-spacing:4.965333pt;}
.wscd{word-spacing:5.017600pt;}
.wsfe{word-spacing:5.122133pt;}
.wsa0{word-spacing:5.226667pt;}
.ws116{word-spacing:5.278933pt;}
.ws12{word-spacing:5.331200pt;}
.wsd5{word-spacing:5.435733pt;}
.wsf7{word-spacing:5.488000pt;}
.ws6e{word-spacing:5.592533pt;}
.ws55{word-spacing:5.697067pt;}
.ws8b{word-spacing:5.749333pt;}
.wsba{word-spacing:5.801600pt;}
.wsf4{word-spacing:5.853867pt;}
.ws16{word-spacing:5.906133pt;}
.wsaa{word-spacing:5.958400pt;}
.ws50{word-spacing:6.010667pt;}
.ws62{word-spacing:6.062933pt;}
.wsb6{word-spacing:6.115200pt;}
.ws1f{word-spacing:6.219733pt;}
.ws2f{word-spacing:6.324267pt;}
.wsfc{word-spacing:6.376533pt;}
.ws66{word-spacing:6.428800pt;}
.ws107{word-spacing:6.481067pt;}
.ws3a{word-spacing:6.533333pt;}
.ws15{word-spacing:6.585600pt;}
.ws3d{word-spacing:6.613333pt;}
.ws19{word-spacing:6.637867pt;}
.ws65{word-spacing:6.690133pt;}
.ws4e{word-spacing:6.742400pt;}
.ws53{word-spacing:6.794667pt;}
.ws114{word-spacing:6.951467pt;}
.ws9a{word-spacing:7.056000pt;}
.ws77{word-spacing:7.108267pt;}
.wsd0{word-spacing:7.160533pt;}
.ws97{word-spacing:7.212800pt;}
.ws7e{word-spacing:7.265067pt;}
.ws11d{word-spacing:7.369600pt;}
.ws5b{word-spacing:7.421867pt;}
.ws10a{word-spacing:7.474133pt;}
.ws1d{word-spacing:7.526400pt;}
.ws29{word-spacing:7.578667pt;}
.wsff{word-spacing:7.630933pt;}
.ws32{word-spacing:7.735467pt;}
.wsa1{word-spacing:7.840000pt;}
.ws9e{word-spacing:7.892267pt;}
.ws72{word-spacing:7.944533pt;}
.ws57{word-spacing:8.101333pt;}
.ws11b{word-spacing:8.153600pt;}
.ws45{word-spacing:8.205867pt;}
.ws46{word-spacing:8.258133pt;}
.ws125{word-spacing:8.362667pt;}
.ws54{word-spacing:8.467200pt;}
.ws99{word-spacing:8.519467pt;}
.ws4f{word-spacing:8.571733pt;}
.ws47{word-spacing:8.624000pt;}
.ws6b{word-spacing:8.676267pt;}
.ws49{word-spacing:8.728533pt;}
.ws8d{word-spacing:8.780800pt;}
.ws20{word-spacing:8.833067pt;}
.ws5d{word-spacing:8.989867pt;}
.ws44{word-spacing:9.094400pt;}
.ws84{word-spacing:9.146667pt;}
.ws10e{word-spacing:9.198933pt;}
.ws8c{word-spacing:9.251200pt;}
.wsab{word-spacing:9.303467pt;}
.wsb8{word-spacing:9.408000pt;}
.wsb5{word-spacing:9.512533pt;}
.wsca{word-spacing:9.564800pt;}
.wscb{word-spacing:9.617067pt;}
.ws3c{word-spacing:9.706667pt;}
.wsc9{word-spacing:9.773867pt;}
.ws8e{word-spacing:9.826133pt;}
.wsc4{word-spacing:9.930667pt;}
.ws3e{word-spacing:9.973333pt;}
.ws10c{word-spacing:9.982933pt;}
.wsef{word-spacing:10.035200pt;}
.wsc7{word-spacing:10.139733pt;}
.ws103{word-spacing:10.244267pt;}
.ws13{word-spacing:10.296533pt;}
.wsfa{word-spacing:10.557867pt;}
.ws30{word-spacing:10.662400pt;}
.wsd7{word-spacing:10.714667pt;}
.wsf2{word-spacing:10.871467pt;}
.ws122{word-spacing:10.976000pt;}
.ws100{word-spacing:11.289600pt;}
.wsb2{word-spacing:11.341867pt;}
.ws102{word-spacing:11.394133pt;}
.ws108{word-spacing:11.446400pt;}
.ws124{word-spacing:11.550933pt;}
.ws5e{word-spacing:11.707733pt;}
.wsbe{word-spacing:11.760000pt;}
.ws119{word-spacing:11.812267pt;}
.ws4c{word-spacing:11.864533pt;}
.wsc3{word-spacing:11.916800pt;}
.ws11{word-spacing:12.125867pt;}
.ws123{word-spacing:12.178133pt;}
.ws18{word-spacing:12.230400pt;}
.ws74{word-spacing:12.282667pt;}
.wsda{word-spacing:12.334933pt;}
.wsd9{word-spacing:12.387200pt;}
.ws4d{word-spacing:12.439467pt;}
.ws76{word-spacing:12.596267pt;}
.ws83{word-spacing:12.700800pt;}
.wsdc{word-spacing:12.805333pt;}
.wsd8{word-spacing:12.857600pt;}
.wsb1{word-spacing:12.909867pt;}
.wse1{word-spacing:12.962133pt;}
.ws105{word-spacing:13.066667pt;}
.wsf6{word-spacing:13.118933pt;}
.ws60{word-spacing:13.171200pt;}
.wse2{word-spacing:13.223467pt;}
.ws11a{word-spacing:13.328000pt;}
.ws79{word-spacing:13.484800pt;}
.wsf3{word-spacing:13.589333pt;}
.ws89{word-spacing:13.641600pt;}
.wsdb{word-spacing:13.746133pt;}
.wsc1{word-spacing:13.850667pt;}
.ws81{word-spacing:13.902933pt;}
.wsee{word-spacing:14.007467pt;}
.ws11f{word-spacing:14.059733pt;}
.wse0{word-spacing:14.164267pt;}
.wsbc{word-spacing:14.216533pt;}
.ws2d{word-spacing:14.373333pt;}
.wsdd{word-spacing:14.477867pt;}
.wsfd{word-spacing:14.843733pt;}
.wsc8{word-spacing:15.105067pt;}
.ws111{word-spacing:15.157333pt;}
.ws8a{word-spacing:15.209600pt;}
.ws17{word-spacing:15.366400pt;}
.ws25{word-spacing:15.418667pt;}
.wsec{word-spacing:15.470933pt;}
.wsc2{word-spacing:15.523200pt;}
.wsa4{word-spacing:15.941333pt;}
.ws115{word-spacing:16.150400pt;}
.ws80{word-spacing:16.568533pt;}
.ws2e{word-spacing:16.829867pt;}
.ws58{word-spacing:17.038933pt;}
.ws3f{word-spacing:17.173333pt;}
.wse8{word-spacing:17.404800pt;}
.ws106{word-spacing:17.457067pt;}
.wse5{word-spacing:17.613867pt;}
.ws38{word-spacing:17.770667pt;}
.ws5f{word-spacing:18.241067pt;}
.ws2a{word-spacing:18.397867pt;}
.wsa2{word-spacing:18.502400pt;}
.ws10f{word-spacing:18.711467pt;}
.wsce{word-spacing:18.972800pt;}
.ws52{word-spacing:19.025067pt;}
.ws112{word-spacing:19.443200pt;}
.ws5c{word-spacing:20.122667pt;}
.ws73{word-spacing:20.749867pt;}
.wsd1{word-spacing:21.272533pt;}
.wsdf{word-spacing:21.742933pt;}
.ws75{word-spacing:21.847467pt;}
.wsf1{word-spacing:22.056533pt;}
.wsde{word-spacing:22.422400pt;}
.wsbb{word-spacing:22.474667pt;}
.wse6{word-spacing:22.788267pt;}
.wse4{word-spacing:22.892800pt;}
.ws98{word-spacing:22.945067pt;}
.wse3{word-spacing:23.310933pt;}
.wse7{word-spacing:23.520000pt;}
.ws37{word-spacing:23.833600pt;}
.ws117{word-spacing:24.669867pt;}
.wse9{word-spacing:25.401600pt;}
.ws7a{word-spacing:25.872000pt;}
.ws110{word-spacing:27.805867pt;}
.wsb0{word-spacing:28.224000pt;}
.wsd4{word-spacing:29.373867pt;}
.wsd2{word-spacing:31.098667pt;}
.ws101{word-spacing:33.293867pt;}
.ws59{word-spacing:39.095467pt;}
._12{margin-left:-26.656000pt;}
._1a{margin-left:-24.640547pt;}
._10{margin-left:-22.503489pt;}
._1d{margin-left:-17.824429pt;}
._16{margin-left:-16.273045pt;}
._13{margin-left:-15.037911pt;}
._1e{margin-left:-12.377667pt;}
._1b{margin-left:-10.975992pt;}
._17{margin-left:-9.930674pt;}
._f{margin-left:-8.504573pt;}
._0{margin-left:-6.553600pt;}
._9{margin-left:-5.333333pt;}
._2{margin-left:-3.968000pt;}
._4{margin-left:-2.279446pt;}
._3{margin-left:-1.280000pt;}
._5{width:1.037878pt;}
._1{width:2.291200pt;}
._19{width:3.846602pt;}
._8{width:5.150911pt;}
._b{width:6.342332pt;}
._a{width:8.049067pt;}
._15{width:9.202857pt;}
._18{width:10.838578pt;}
._14{width:12.473055pt;}
._7{width:13.386659pt;}
._6{width:15.359988pt;}
._21{width:20.448000pt;}
._e{width:21.973333pt;}
._1f{width:26.689055pt;}
._d{width:29.440000pt;}
._1c{width:32.517322pt;}
._c{width:37.973333pt;}
._20{width:39.968000pt;}
._11{width:44.600758pt;}
.fs12{font-size:12.510710pt;}
.fse{font-size:28.000000pt;}
.fsd{font-size:29.866667pt;}
.fsf{font-size:32.000000pt;}
.fs11{font-size:33.362142pt;}
.fs10{font-size:35.466667pt;}
.fsc{font-size:36.586667pt;}
.fs7{font-size:37.333333pt;}
.fs9{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fs0{font-size:42.666667pt;}
.fsb{font-size:49.066666pt;}
.fsa{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs8{font-size:66.666667pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:4.166260pt;}
.y2b{bottom:70.229599pt;}
.y2a{bottom:80.897599pt;}
.y2c1{bottom:88.410665pt;}
.y169{bottom:89.511467pt;}
.y29{bottom:91.565599pt;}
.y22c{bottom:93.641313pt;}
.ydc{bottom:94.774129pt;}
.yb3{bottom:94.793329pt;}
.y4d{bottom:95.016135pt;}
.y65{bottom:95.718672pt;}
.y136{bottom:95.779869pt;}
.y10f{bottom:95.786269pt;}
.y1c9{bottom:95.882249pt;}
.y197{bottom:95.914249pt;}
.y162{bottom:96.463999pt;}
.y1ec{bottom:100.437069pt;}
.y2eb{bottom:101.638021pt;}
.y2a9{bottom:101.638031pt;}
.y28{bottom:102.233599pt;}
.y2bf{bottom:103.088000pt;}
.y168{bottom:105.505067pt;}
.y22b{bottom:105.641313pt;}
.y165{bottom:106.156802pt;}
.y161{bottom:109.797333pt;}
.yb2{bottom:110.786929pt;}
.ydb{bottom:110.799729pt;}
.y4c{bottom:111.009735pt;}
.y263{bottom:111.638000pt;}
.y64{bottom:111.712272pt;}
.y135{bottom:111.773469pt;}
.y10e{bottom:111.779869pt;}
.y1c8{bottom:111.875849pt;}
.y196{bottom:111.907849pt;}
.y1eb{bottom:112.437069pt;}
.y27{bottom:112.901599pt;}
.y2ea{bottom:113.638021pt;}
.y2a8{bottom:113.638031pt;}
.y22a{bottom:117.641313pt;}
.y2bd{bottom:118.901465pt;}
.y167{bottom:121.498667pt;}
.y164{bottom:122.150402pt;}
.y160{bottom:123.130666pt;}
.y26{bottom:123.569599pt;}
.y262{bottom:123.638000pt;}
.y2be{bottom:124.368000pt;}
.y1ea{bottom:124.437069pt;}
.y2e9{bottom:125.638021pt;}
.y2a7{bottom:125.638031pt;}
.yb1{bottom:126.780529pt;}
.yda{bottom:126.793329pt;}
.y4b{bottom:127.022535pt;}
.y63{bottom:127.705872pt;}
.y134{bottom:127.767069pt;}
.y10d{bottom:127.773469pt;}
.y1c7{bottom:127.869449pt;}
.y195{bottom:127.901449pt;}
.y229{bottom:129.641313pt;}
.y25{bottom:134.237599pt;}
.y2ba{bottom:134.909465pt;}
.y261{bottom:135.638000pt;}
.y166{bottom:137.498667pt;}
.y2e8{bottom:137.638021pt;}
.y2a6{bottom:137.638031pt;}
.y163{bottom:138.144002pt;}
.y228{bottom:141.641313pt;}
.y1e9{bottom:141.767069pt;}
.yb0{bottom:142.780529pt;}
.yd9{bottom:142.786929pt;}
.y4a{bottom:143.016135pt;}
.y10c{bottom:143.767069pt;}
.y62{bottom:143.769872pt;}
.y1c6{bottom:143.863049pt;}
.y194{bottom:143.895049pt;}
.y24{bottom:144.905599pt;}
.y260{bottom:147.638000pt;}
.y2bc{bottom:148.870799pt;}
.y2bb{bottom:149.385071pt;}
.y2e7{bottom:149.638021pt;}
.y2a5{bottom:149.638031pt;}
.y2b8{bottom:150.157999pt;}
.y1e8{bottom:153.767069pt;}
.yd8{bottom:158.780529pt;}
.yaf{bottom:158.825329pt;}
.y49{bottom:159.009735pt;}
.y25f{bottom:159.638000pt;}
.y61{bottom:159.763472pt;}
.y10b{bottom:159.799069pt;}
.y1c5{bottom:159.856649pt;}
.y193{bottom:159.888649pt;}
.y2e6{bottom:161.638021pt;}
.y2a4{bottom:161.638031pt;}
.y2c2{bottom:162.561727pt;}
.y2b7{bottom:164.288666pt;}
.y2b9{bottom:165.233999pt;}
.y227{bottom:165.641313pt;}
.y1e7{bottom:165.770403pt;}
.y2b5{bottom:166.912123pt;}
.y25e{bottom:171.638000pt;}
.y2e5{bottom:173.638021pt;}
.y2a3{bottom:173.638031pt;}
.yd7{bottom:174.774129pt;}
.yae{bottom:174.818929pt;}
.y48{bottom:175.016125pt;}
.y60{bottom:175.757072pt;}
.y10a{bottom:175.792669pt;}
.y1c4{bottom:175.850249pt;}
.y192{bottom:175.882249pt;}
.y226{bottom:177.641313pt;}
.y1e6{bottom:177.770403pt;}
.y33{bottom:178.988261pt;}
.y2b4{bottom:180.034790pt;}
.y2b6{bottom:181.450133pt;}
.y2b2{bottom:182.897070pt;}
.y2e4{bottom:185.638021pt;}
.y2a2{bottom:185.638031pt;}
.y225{bottom:189.641313pt;}
.yd6{bottom:190.793329pt;}
.yad{bottom:190.812529pt;}
.y32{bottom:190.988261pt;}
.y47{bottom:191.009725pt;}
.y5f{bottom:191.750672pt;}
.y109{bottom:191.786269pt;}
.y1c3{bottom:191.843849pt;}
.y191{bottom:191.875849pt;}
.y1e5{bottom:195.100403pt;}
.y2b1{bottom:195.609070pt;}
.y2b3{bottom:196.835592pt;}
.y170{bottom:197.126526pt;}
.y2e3{bottom:197.638021pt;}
.y2a1{bottom:197.638031pt;}
.y2af{bottom:198.903062pt;}
.y31{bottom:202.988261pt;}
.yd5{bottom:206.786929pt;}
.yac{bottom:206.806129pt;}
.y46{bottom:207.022525pt;}
.y1e4{bottom:207.100403pt;}
.y5e{bottom:207.744272pt;}
.y108{bottom:207.779869pt;}
.y1c2{bottom:207.837449pt;}
.y190{bottom:207.869449pt;}
.y2e2{bottom:209.638021pt;}
.y2a0{bottom:209.638031pt;}
.y16f{bottom:210.459859pt;}
.y2ae{bottom:211.232396pt;}
.y2b0{bottom:212.267863pt;}
.y2ab{bottom:214.905331pt;}
.y2ad{bottom:214.909729pt;}
.y30{bottom:214.988261pt;}
.y1e3{bottom:219.100403pt;}
.y2e1{bottom:221.638021pt;}
.y29f{bottom:221.638031pt;}
.yd4{bottom:222.780529pt;}
.yab{bottom:222.799729pt;}
.y45{bottom:223.016125pt;}
.y5d{bottom:223.737872pt;}
.y107{bottom:223.773469pt;}
.y16e{bottom:223.793193pt;}
.y1c1{bottom:223.831049pt;}
.y18f{bottom:223.863049pt;}
.y224{bottom:224.311313pt;}
.y2f{bottom:226.988261pt;}
.y2aa{bottom:227.430664pt;}
.y2ac{bottom:228.278259pt;}
.y1e2{bottom:231.100403pt;}
.y2e0{bottom:233.638021pt;}
.y29e{bottom:233.638031pt;}
.y223{bottom:236.311313pt;}
.yd3{bottom:238.774129pt;}
.yaa{bottom:238.793329pt;}
.y2e{bottom:238.988261pt;}
.y44{bottom:239.009725pt;}
.y5c{bottom:239.731472pt;}
.y106{bottom:239.767069pt;}
.y1c0{bottom:239.824649pt;}
.y18e{bottom:239.856649pt;}
.y2df{bottom:245.638021pt;}
.y29d{bottom:245.638031pt;}
.y222{bottom:248.311313pt;}
.y25d{bottom:249.638000pt;}
.y2c0{bottom:250.972392pt;}
.ya9{bottom:254.786929pt;}
.y43{bottom:255.022525pt;}
.y5b{bottom:255.725072pt;}
.y105{bottom:255.767069pt;}
.y133{bottom:255.786269pt;}
.y1bf{bottom:255.818249pt;}
.y18d{bottom:255.850249pt;}
.y2de{bottom:257.638021pt;}
.y29c{bottom:257.638031pt;}
.y1e1{bottom:259.100403pt;}
.y221{bottom:265.641313pt;}
.y2dd{bottom:269.638021pt;}
.y29b{bottom:269.638031pt;}
.ya8{bottom:270.780529pt;}
.y42{bottom:271.016125pt;}
.y1e0{bottom:271.100403pt;}
.y5a{bottom:271.718672pt;}
.y132{bottom:271.779869pt;}
.y1be{bottom:271.811849pt;}
.y18c{bottom:271.843849pt;}
.y25c{bottom:273.638000pt;}
.y220{bottom:277.641313pt;}
.y2dc{bottom:281.638021pt;}
.y29a{bottom:281.638031pt;}
.y22{bottom:284.191203pt;}
.y25b{bottom:285.638000pt;}
.yd2{bottom:286.774129pt;}
.ya7{bottom:286.793329pt;}
.y41{bottom:287.009725pt;}
.y1df{bottom:287.100403pt;}
.y59{bottom:287.712272pt;}
.y131{bottom:287.773469pt;}
.y104{bottom:287.779869pt;}
.y1bd{bottom:287.805449pt;}
.y18b{bottom:287.837449pt;}
.y21f{bottom:289.641313pt;}
.y2db{bottom:293.638021pt;}
.y299{bottom:293.638031pt;}
.y21{bottom:300.191203pt;}
.y25a{bottom:301.638000pt;}
.y21e{bottom:301.641313pt;}
.yd1{bottom:302.774129pt;}
.ya6{bottom:302.786929pt;}
.y40{bottom:303.035325pt;}
.y58{bottom:303.705872pt;}
.y103{bottom:303.773469pt;}
.y130{bottom:303.792649pt;}
.y1bc{bottom:303.799049pt;}
.y18a{bottom:303.831049pt;}
.y2da{bottom:305.638021pt;}
.y298{bottom:305.638031pt;}
.y259{bottom:313.638000pt;}
.y21d{bottom:313.641313pt;}
.y20{bottom:316.191203pt;}
.y2d9{bottom:317.638021pt;}
.y297{bottom:317.638031pt;}
.ya5{bottom:318.780529pt;}
.yd0{bottom:318.786929pt;}
.y3f{bottom:319.028925pt;}
.y1de{bottom:319.119582pt;}
.y57{bottom:319.731451pt;}
.y102{bottom:319.767069pt;}
.y12f{bottom:319.786249pt;}
.y1bb{bottom:319.792649pt;}
.y189{bottom:319.824649pt;}
.y258{bottom:321.638000pt;}
.y21c{bottom:325.641313pt;}
.y2d8{bottom:329.638021pt;}
.y296{bottom:329.638031pt;}
.ya4{bottom:334.774129pt;}
.ycf{bottom:334.780529pt;}
.y3e{bottom:335.022525pt;}
.y1dd{bottom:335.113182pt;}
.y56{bottom:335.725051pt;}
.y101{bottom:335.779849pt;}
.y1ba{bottom:335.786249pt;}
.y188{bottom:335.818249pt;}
.y1f{bottom:336.191203pt;}
.y257{bottom:337.638000pt;}
.y21b{bottom:337.641313pt;}
.y2d7{bottom:341.638021pt;}
.y295{bottom:341.638031pt;}
.y256{bottom:345.637980pt;}
.y21a{bottom:349.641313pt;}
.ya3{bottom:350.774129pt;}
.y3d{bottom:351.016125pt;}
.y1dc{bottom:351.106782pt;}
.y55{bottom:351.718651pt;}
.y100{bottom:351.773449pt;}
.y1b9{bottom:351.779849pt;}
.y187{bottom:351.811849pt;}
.y1e{bottom:352.191203pt;}
.y2d6{bottom:353.638021pt;}
.y294{bottom:353.638031pt;}
.y2d5{bottom:365.638021pt;}
.y293{bottom:365.638031pt;}
.ya2{bottom:366.774129pt;}
.y219{bottom:366.971313pt;}
.y3c{bottom:367.009725pt;}
.y1db{bottom:367.100382pt;}
.y54{bottom:367.712251pt;}
.yff{bottom:367.773449pt;}
.y186{bottom:367.805449pt;}
.y1d{bottom:368.191203pt;}
.y255{bottom:369.637980pt;}
.y2d4{bottom:377.638021pt;}
.y292{bottom:377.638031pt;}
.y218{bottom:378.971313pt;}
.y254{bottom:381.637980pt;}
.y3b{bottom:383.035325pt;}
.y1da{bottom:383.132382pt;}
.y53{bottom:383.705851pt;}
.y1b8{bottom:383.767049pt;}
.yfe{bottom:383.773449pt;}
.y12e{bottom:383.792649pt;}
.y185{bottom:383.799049pt;}
.y1c{bottom:384.191203pt;}
.y2d3{bottom:389.638021pt;}
.y291{bottom:389.638031pt;}
.y217{bottom:390.971313pt;}
.y253{bottom:393.637980pt;}
.ya1{bottom:398.774129pt;}
.yce{bottom:398.780529pt;}
.y3a{bottom:399.028925pt;}
.y1d9{bottom:399.125982pt;}
.y52{bottom:399.725051pt;}
.y1b7{bottom:399.779849pt;}
.y12d{bottom:399.786249pt;}
.y184{bottom:399.792649pt;}
.yfd{bottom:399.805449pt;}
.y1b{bottom:400.191203pt;}
.y2d2{bottom:401.638021pt;}
.y290{bottom:401.638031pt;}
.y216{bottom:402.971313pt;}
.y252{bottom:405.637980pt;}
.y2d1{bottom:413.638021pt;}
.y28f{bottom:413.638031pt;}
.ycd{bottom:414.774129pt;}
.ya0{bottom:414.799729pt;}
.y215{bottom:414.971313pt;}
.y39{bottom:415.022525pt;}
.y1d8{bottom:415.119582pt;}
.y51{bottom:415.718651pt;}
.y1b6{bottom:415.773449pt;}
.y12c{bottom:415.779849pt;}
.y183{bottom:415.786249pt;}
.yfc{bottom:415.799049pt;}
.y1a{bottom:416.191203pt;}
.y2d0{bottom:425.638021pt;}
.y28e{bottom:425.638031pt;}
.y214{bottom:426.977980pt;}
.y251{bottom:429.637980pt;}
.y9f{bottom:430.793329pt;}
.ycc{bottom:430.799729pt;}
.y38{bottom:431.016125pt;}
.y1d7{bottom:431.113182pt;}
.y50{bottom:431.712251pt;}
.y1b5{bottom:431.767049pt;}
.y12b{bottom:431.773449pt;}
.y182{bottom:431.779849pt;}
.yfb{bottom:431.792649pt;}
.y19{bottom:432.191203pt;}
.y2cf{bottom:437.638021pt;}
.y28d{bottom:437.638031pt;}
.y213{bottom:438.977980pt;}
.y250{bottom:441.637980pt;}
.y9e{bottom:446.786929pt;}
.ycb{bottom:446.793329pt;}
.y37{bottom:447.009725pt;}
.y1d6{bottom:447.106782pt;}
.y4f{bottom:447.705851pt;}
.y12a{bottom:447.767049pt;}
.y181{bottom:447.773449pt;}
.yfa{bottom:447.786249pt;}
.y1b4{bottom:447.805449pt;}
.y18{bottom:448.191203pt;}
.y2ce{bottom:449.638021pt;}
.y28c{bottom:449.638031pt;}
.y212{bottom:450.977980pt;}
.y2cd{bottom:461.638021pt;}
.y28b{bottom:461.638031pt;}
.y9d{bottom:462.780529pt;}
.yca{bottom:462.786929pt;}
.y36{bottom:463.009725pt;}
.y1d5{bottom:463.100382pt;}
.y4e{bottom:463.718256pt;}
.y129{bottom:463.767049pt;}
.yf9{bottom:463.779849pt;}
.y1b3{bottom:463.799049pt;}
.y24f{bottom:465.637980pt;}
.y17{bottom:468.191203pt;}
.y211{bottom:468.307980pt;}
.y2cc{bottom:473.638021pt;}
.y28a{bottom:473.638031pt;}
.y24e{bottom:477.637980pt;}
.y9c{bottom:478.774129pt;}
.yc9{bottom:478.780529pt;}
.y1d4{bottom:479.113182pt;}
.y128{bottom:479.767049pt;}
.yf8{bottom:479.773449pt;}
.y1b2{bottom:479.792649pt;}
.y180{bottom:479.811849pt;}
.y210{bottom:480.307980pt;}
.y16{bottom:484.191203pt;}
.y2cb{bottom:485.638021pt;}
.y289{bottom:485.638031pt;}
.y24d{bottom:489.637980pt;}
.y20f{bottom:492.307980pt;}
.y9b{bottom:494.793329pt;}
.yc8{bottom:494.812529pt;}
.y1d3{bottom:495.106782pt;}
.yf7{bottom:495.767049pt;}
.y1b1{bottom:495.786249pt;}
.y17f{bottom:495.805449pt;}
.y2ca{bottom:497.638021pt;}
.y288{bottom:497.638031pt;}
.y15{bottom:500.191203pt;}
.y24c{bottom:501.637980pt;}
.y20e{bottom:504.307980pt;}
.y2c9{bottom:509.638021pt;}
.y287{bottom:509.638031pt;}
.y7c{bottom:509.809733pt;}
.y9a{bottom:510.786929pt;}
.yc7{bottom:510.806129pt;}
.y1d2{bottom:511.100382pt;}
.y1b0{bottom:511.779849pt;}
.y127{bottom:511.792649pt;}
.yf6{bottom:511.799049pt;}
.y24b{bottom:513.637980pt;}
.y14{bottom:516.191203pt;}
.y20d{bottom:516.307980pt;}
.y2c8{bottom:521.638021pt;}
.y286{bottom:521.638031pt;}
.y16d{bottom:525.631348pt;}
.y7b{bottom:525.809733pt;}
.y99{bottom:526.780529pt;}
.yc6{bottom:526.799729pt;}
.y1d1{bottom:527.100382pt;}
.y1af{bottom:527.773449pt;}
.y126{bottom:527.786249pt;}
.yf5{bottom:527.792649pt;}
.y20c{bottom:528.307980pt;}
.y13{bottom:532.191203pt;}
.y2c7{bottom:533.638021pt;}
.y285{bottom:533.638031pt;}
.y24a{bottom:537.637980pt;}
.y16c{bottom:538.964681pt;}
.y20b{bottom:540.307980pt;}
.y7a{bottom:541.809733pt;}
.y98{bottom:542.774129pt;}
.yc5{bottom:542.793329pt;}
.y1ae{bottom:543.767049pt;}
.y125{bottom:543.779849pt;}
.yf4{bottom:543.786249pt;}
.y2c6{bottom:545.638021pt;}
.y284{bottom:545.638031pt;}
.y12{bottom:548.191203pt;}
.y16b{bottom:552.298014pt;}
.y20a{bottom:552.307980pt;}
.y2c5{bottom:557.638021pt;}
.y283{bottom:557.638031pt;}
.y79{bottom:557.809733pt;}
.yc4{bottom:558.786929pt;}
.y97{bottom:558.799729pt;}
.y124{bottom:559.773449pt;}
.yf3{bottom:559.779849pt;}
.y11{bottom:564.191203pt;}
.y16a{bottom:565.631348pt;}
.y209{bottom:569.637980pt;}
.y249{bottom:569.638021pt;}
.y282{bottom:569.638031pt;}
.y78{bottom:573.809733pt;}
.yc3{bottom:574.780529pt;}
.y96{bottom:574.793329pt;}
.y148{bottom:575.138782pt;}
.y123{bottom:575.767049pt;}
.yf2{bottom:575.773449pt;}
.y15f{bottom:576.174107pt;}
.y208{bottom:581.637980pt;}
.y248{bottom:581.638021pt;}
.y281{bottom:581.638031pt;}
.y10{bottom:584.191203pt;}
.y77{bottom:589.809733pt;}
.yc2{bottom:590.774129pt;}
.y95{bottom:590.786929pt;}
.y147{bottom:591.132382pt;}
.yf1{bottom:591.767049pt;}
.y122{bottom:591.773449pt;}
.y1ad{bottom:591.792649pt;}
.y15e{bottom:592.167707pt;}
.y207{bottom:593.637980pt;}
.y247{bottom:593.638021pt;}
.y280{bottom:593.638031pt;}
.yf{bottom:600.191203pt;}
.y206{bottom:605.637980pt;}
.y246{bottom:605.638021pt;}
.y27f{bottom:605.638031pt;}
.y76{bottom:605.809733pt;}
.y94{bottom:606.780529pt;}
.yc1{bottom:606.793329pt;}
.y146{bottom:607.125982pt;}
.y121{bottom:607.767049pt;}
.yf0{bottom:607.773449pt;}
.y1ac{bottom:607.786249pt;}
.y15d{bottom:608.161307pt;}
.ye{bottom:616.191203pt;}
.y205{bottom:617.637980pt;}
.y245{bottom:617.638021pt;}
.y27e{bottom:617.638031pt;}
.y75{bottom:621.809733pt;}
.y93{bottom:622.774129pt;}
.yc0{bottom:622.786929pt;}
.y145{bottom:623.119582pt;}
.yef{bottom:623.767049pt;}
.y1ab{bottom:623.779849pt;}
.y120{bottom:623.786249pt;}
.y1d0{bottom:623.792690pt;}
.y17e{bottom:623.799090pt;}
.y15c{bottom:624.154907pt;}
.y204{bottom:629.637980pt;}
.y244{bottom:629.638021pt;}
.y27d{bottom:629.638031pt;}
.yd{bottom:632.191203pt;}
.y74{bottom:637.809733pt;}
.ybf{bottom:638.780529pt;}
.y92{bottom:638.799770pt;}
.y144{bottom:639.113182pt;}
.yee{bottom:639.767049pt;}
.y1aa{bottom:639.773449pt;}
.y11f{bottom:639.779849pt;}
.y1cf{bottom:639.786290pt;}
.y17d{bottom:639.792690pt;}
.y15b{bottom:640.148507pt;}
.y203{bottom:641.637980pt;}
.y243{bottom:641.638021pt;}
.y27c{bottom:641.638031pt;}
.yc{bottom:648.191203pt;}
.y202{bottom:653.637980pt;}
.y242{bottom:653.638021pt;}
.y27b{bottom:653.638031pt;}
.y73{bottom:653.809733pt;}
.ybe{bottom:654.774129pt;}
.y91{bottom:654.793370pt;}
.y143{bottom:655.106782pt;}
.y1a9{bottom:655.767049pt;}
.y11e{bottom:655.773449pt;}
.y1ce{bottom:655.779890pt;}
.y17c{bottom:655.786290pt;}
.y15a{bottom:656.142107pt;}
.y241{bottom:665.638021pt;}
.y27a{bottom:665.638031pt;}
.y201{bottom:665.641354pt;}
.yb{bottom:668.191203pt;}
.y72{bottom:669.809733pt;}
.y90{bottom:670.786970pt;}
.y142{bottom:671.100382pt;}
.y1cd{bottom:671.773490pt;}
.yed{bottom:671.779890pt;}
.y1a8{bottom:671.799090pt;}
.y159{bottom:672.135707pt;}
.y240{bottom:677.638021pt;}
.y279{bottom:677.638031pt;}
.y200{bottom:677.641354pt;}
.y8f{bottom:686.780570pt;}
.y141{bottom:687.106823pt;}
.y1cc{bottom:687.767090pt;}
.yec{bottom:687.773490pt;}
.y1a7{bottom:687.792690pt;}
.y158{bottom:688.129307pt;}
.y23f{bottom:689.638021pt;}
.y278{bottom:689.638031pt;}
.y71{bottom:689.809733pt;}
.y1ff{bottom:694.971354pt;}
.y23e{bottom:701.638021pt;}
.y277{bottom:701.638031pt;}
.y8e{bottom:702.774170pt;}
.ybd{bottom:702.786970pt;}
.y140{bottom:703.126023pt;}
.yeb{bottom:703.767090pt;}
.y1cb{bottom:703.779890pt;}
.y1a6{bottom:703.786290pt;}
.y157{bottom:704.122907pt;}
.y1fe{bottom:706.971354pt;}
.y23d{bottom:713.638021pt;}
.y276{bottom:713.638031pt;}
.y8d{bottom:718.780570pt;}
.y1fd{bottom:718.971354pt;}
.y13f{bottom:719.119623pt;}
.y11d{bottom:719.767090pt;}
.yea{bottom:719.773490pt;}
.y1a5{bottom:719.779890pt;}
.y17b{bottom:719.837490pt;}
.y156{bottom:720.116507pt;}
.y23c{bottom:725.638021pt;}
.y275{bottom:725.638031pt;}
.y70{bottom:728.411296pt;}
.y1fc{bottom:730.971354pt;}
.ya{bottom:731.153878pt;}
.y8c{bottom:734.774170pt;}
.y13e{bottom:735.113223pt;}
.ye9{bottom:735.767090pt;}
.y1a4{bottom:735.773490pt;}
.y11c{bottom:735.818290pt;}
.y17a{bottom:735.831090pt;}
.y155{bottom:736.110107pt;}
.y23b{bottom:737.638021pt;}
.y274{bottom:737.638031pt;}
.y1fb{bottom:742.971354pt;}
.y23a{bottom:749.638021pt;}
.y273{bottom:749.638031pt;}
.y9{bottom:749.820544pt;}
.ybc{bottom:750.786970pt;}
.y8b{bottom:750.812570pt;}
.y13d{bottom:751.106823pt;}
.y1a3{bottom:751.767090pt;}
.y11b{bottom:751.811890pt;}
.y179{bottom:751.824690pt;}
.ye8{bottom:751.837490pt;}
.y154{bottom:752.110107pt;}
.y1fa{bottom:754.971354pt;}
.y6f{bottom:756.744629pt;}
.y239{bottom:761.638021pt;}
.y272{bottom:761.638031pt;}
.ybb{bottom:766.780570pt;}
.y8a{bottom:766.806170pt;}
.y1f9{bottom:766.971354pt;}
.y13c{bottom:767.100423pt;}
.y1a2{bottom:767.786290pt;}
.y11a{bottom:767.805490pt;}
.y178{bottom:767.818290pt;}
.ye7{bottom:767.831090pt;}
.y153{bottom:768.129307pt;}
.y8{bottom:768.491211pt;}
.y6e{bottom:772.744629pt;}
.y238{bottom:773.638021pt;}
.y271{bottom:773.638031pt;}
.y1f8{bottom:778.971354pt;}
.yba{bottom:782.774170pt;}
.y89{bottom:782.799770pt;}
.y13b{bottom:783.100423pt;}
.y1a1{bottom:783.779890pt;}
.y119{bottom:783.799090pt;}
.y177{bottom:783.811890pt;}
.ye6{bottom:783.824690pt;}
.y152{bottom:784.122907pt;}
.y2c4{bottom:785.638021pt;}
.y270{bottom:785.638031pt;}
.y6d{bottom:788.744629pt;}
.y1f7{bottom:790.978021pt;}
.y237{bottom:797.638021pt;}
.y26f{bottom:797.638031pt;}
.yb9{bottom:798.786970pt;}
.y88{bottom:798.793370pt;}
.y13a{bottom:799.106823pt;}
.y1a0{bottom:799.773490pt;}
.y118{bottom:799.792690pt;}
.y176{bottom:799.805490pt;}
.ye5{bottom:799.818290pt;}
.y151{bottom:800.116507pt;}
.y7{bottom:800.513358pt;}
.y2f5{bottom:801.638021pt;}
.y1f6{bottom:802.978021pt;}
.y6c{bottom:804.744629pt;}
.y236{bottom:809.638021pt;}
.y26e{bottom:809.638031pt;}
.y2f4{bottom:813.638021pt;}
.yb8{bottom:814.780570pt;}
.y87{bottom:814.786970pt;}
.y139{bottom:815.100423pt;}
.y19f{bottom:815.767090pt;}
.y117{bottom:815.786290pt;}
.y175{bottom:815.799090pt;}
.ye4{bottom:815.811890pt;}
.y150{bottom:816.116507pt;}
.y1f5{bottom:820.308021pt;}
.y6b{bottom:820.744629pt;}
.y235{bottom:821.638021pt;}
.y26d{bottom:821.638031pt;}
.y2f3{bottom:825.638021pt;}
.yb7{bottom:830.774170pt;}
.y86{bottom:830.780570pt;}
.y138{bottom:831.104690pt;}
.y116{bottom:831.779890pt;}
.y174{bottom:831.792690pt;}
.y19e{bottom:831.799090pt;}
.ye3{bottom:831.805490pt;}
.y14f{bottom:832.110107pt;}
.y1f4{bottom:832.308021pt;}
.y234{bottom:833.638021pt;}
.y26c{bottom:833.638031pt;}
.y6{bottom:835.169358pt;}
.y6a{bottom:836.744629pt;}
.y1f3{bottom:844.308021pt;}
.y233{bottom:845.638021pt;}
.y26b{bottom:845.638031pt;}
.y85{bottom:846.774170pt;}
.yb6{bottom:846.793370pt;}
.y137{bottom:847.100423pt;}
.y115{bottom:847.773490pt;}
.y173{bottom:847.786290pt;}
.y19d{bottom:847.792690pt;}
.ye2{bottom:847.799090pt;}
.y14e{bottom:848.129307pt;}
.y69{bottom:852.744629pt;}
.y1f2{bottom:856.308021pt;}
.y232{bottom:857.638021pt;}
.y26a{bottom:857.638031pt;}
.y2f2{bottom:857.638051pt;}
.y84{bottom:862.786970pt;}
.y1ca{bottom:863.767090pt;}
.y114{bottom:863.773490pt;}
.y172{bottom:863.779890pt;}
.y19c{bottom:863.786290pt;}
.ye1{bottom:863.792690pt;}
.y14d{bottom:864.122907pt;}
.y1f1{bottom:868.308021pt;}
.y68{bottom:868.744629pt;}
.y231{bottom:869.638021pt;}
.y269{bottom:869.638031pt;}
.y2f1{bottom:869.638051pt;}
.y5{bottom:869.825358pt;}
.y83{bottom:878.780570pt;}
.y113{bottom:879.767090pt;}
.y171{bottom:879.773490pt;}
.y19b{bottom:879.779890pt;}
.ye0{bottom:879.786290pt;}
.y14c{bottom:880.116507pt;}
.y230{bottom:881.638021pt;}
.y268{bottom:881.638031pt;}
.y2f0{bottom:881.638051pt;}
.y67{bottom:884.744629pt;}
.y1f0{bottom:885.638021pt;}
.y2c3{bottom:893.638021pt;}
.y267{bottom:893.638031pt;}
.y2ef{bottom:893.638051pt;}
.y82{bottom:894.774170pt;}
.y112{bottom:895.767090pt;}
.y19a{bottom:895.773490pt;}
.ydf{bottom:895.779890pt;}
.y14b{bottom:896.110107pt;}
.y1ef{bottom:897.638021pt;}
.y22f{bottom:905.638021pt;}
.y266{bottom:905.638031pt;}
.y2ee{bottom:905.638051pt;}
.y1ee{bottom:909.638021pt;}
.y81{bottom:910.774170pt;}
.yb5{bottom:910.793596pt;}
.y199{bottom:911.767090pt;}
.yde{bottom:911.773490pt;}
.y111{bottom:911.786536pt;}
.y14a{bottom:912.110107pt;}
.y66{bottom:917.411296pt;}
.y22e{bottom:917.638021pt;}
.y265{bottom:917.638031pt;}
.y2ed{bottom:917.638051pt;}
.y4{bottom:918.544515pt;}
.y23{bottom:920.666829pt;}
.y1ed{bottom:921.638021pt;}
.y80{bottom:926.774170pt;}
.yb4{bottom:926.787196pt;}
.ydd{bottom:927.767090pt;}
.y110{bottom:927.780136pt;}
.y198{bottom:927.908116pt;}
.y149{bottom:928.110107pt;}
.y22d{bottom:929.638021pt;}
.y264{bottom:929.638031pt;}
.y2ec{bottom:929.638051pt;}
.y3{bottom:975.375182pt;}
.y2{bottom:988.708515pt;}
.y2c{bottom:993.483968pt;}
.y7d{bottom:1001.355225pt;}
.y34{bottom:1001.355306pt;}
.y7f{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.y7e{bottom:1002.044515pt;}
.y35{bottom:1002.048639pt;}
.h30{height:9.458097pt;}
.hf{height:18.116000pt;}
.h2a{height:24.480000pt;}
.h26{height:24.724000pt;}
.h2e{height:25.221780pt;}
.h28{height:26.656000pt;}
.h2c{height:26.954667pt;}
.h2d{height:27.132000pt;}
.h29{height:28.560000pt;}
.h2b{height:31.584000pt;}
.he{height:32.965333pt;}
.h11{height:35.320000pt;}
.hd{height:36.922667pt;}
.h1f{height:37.674667pt;}
.h27{height:38.080000pt;}
.h21{height:38.920000pt;}
.h4{height:40.618667pt;}
.h3{height:40.661333pt;}
.h24{height:40.697333pt;}
.h25{height:40.710504pt;}
.h22{height:40.710667pt;}
.h23{height:40.724000pt;}
.h2{height:41.984000pt;}
.h1e{height:42.197333pt;}
.hc{height:47.093333pt;}
.h13{height:47.741866pt;}
.h12{height:49.653333pt;}
.hb{height:51.893333pt;}
.ha{height:54.329067pt;}
.h15{height:55.459231pt;}
.h20{height:55.484058pt;}
.h18{height:55.510472pt;}
.h1d{height:55.560858pt;}
.h1c{height:55.561670pt;}
.h14{height:55.587190pt;}
.h17{height:55.612058pt;}
.h1b{height:55.612707pt;}
.h19{height:55.637658pt;}
.h16{height:55.638431pt;}
.h1a{height:55.638470pt;}
.h8{height:59.728337pt;}
.h9{height:59.744337pt;}
.h10{height:63.466667pt;}
.h5{height:68.570667pt;}
.h6{height:121.856000pt;}
.h7{height:121.984000pt;}
.h2f{height:181.461324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:179.780009pt;}
.w3{width:306.455994pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x19{left:11.374268pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xa{left:85.227467pt;}
.xd{left:86.252935pt;}
.xb{left:95.894133pt;}
.xc{left:111.894133pt;}
.x1b{left:124.044800pt;}
.x1d{left:125.070801pt;}
.x5{left:240.726664pt;}
.x8{left:406.294802pt;}
.x18{left:411.653320pt;}
.xe{left:414.299194pt;}
.x9{left:416.961594pt;}
.x17{left:423.027588pt;}
.x16{left:423.945475pt;}
.xf{left:426.300535pt;}
.x11{left:429.804118pt;}
.x15{left:433.475856pt;}
.x12{left:435.898785pt;}
.x13{left:438.314657pt;}
.x1a{left:535.698120pt;}
.x1c{left:536.724121pt;}
.x6{left:538.330648pt;}
.x14{left:587.513184pt;}
.x4{left:617.715454pt;}
.x10{left:658.727458pt;}
.x7{left:664.199341pt;}
}




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