
    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_5e9ed58ef1d173ca57f99d5a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_19cd27e35eb0e02d9bf0478f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ff83b662fadf98cc0fdc6f89.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e849931d006d7945107b565d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_11c8f73307ad4068185b62b0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ff0e9643b01f0363332cdc32.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b77cbd91f71e024c5a0ec208.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a7efa9ccd48ea9c5dc5fbf6f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf9b642079ed34d16a0c4e6c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.222000;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_b1454bb92131c81d259ea508.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.444000;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_b4f82ca672130fe0c38814b4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.684000;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_1e1f87576efb54114e6aa62b.woff2')format("woff");}.fff{font-family:fff;line-height:1.113000;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_bf7b6b9e1a7e6b3cdee6aa14.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_c90186feb9f305c7860d99a2.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_cfe524c251393267f62d5da5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921000;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_9ff610d2a15827f17c4f362a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666000;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:ff14;src:url('chunks/assets/font_d839381887a7b609131e5309.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.870000;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:ff15;src:url('chunks/assets/font_0b562ded5961378595cb2232.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.824219;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.va{vertical-align:-16.799927px;}
.v6{vertical-align:-14.706060px;}
.v8{vertical-align:-8.802660px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.488000px;}
.v7{vertical-align:8.802660px;}
.v9{vertical-align:19.121854px;}
.v4{vertical-align:23.526951px;}
.v1{vertical-align:26.399780px;}
.v5{vertical-align:54.000000px;}
.ls3{letter-spacing:-6.056400px;}
.ls2{letter-spacing:-1.050000px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000010px;}
.ls20{letter-spacing:0.000013px;}
.ls6{letter-spacing:0.000060px;}
.ls5{letter-spacing:0.000400px;}
.ls11{letter-spacing:0.029273px;}
.ls1f{letter-spacing:0.576240px;}
.ls21{letter-spacing:0.576450px;}
.ls1c{letter-spacing:0.717336px;}
.ls1b{letter-spacing:0.717360px;}
.ls18{letter-spacing:0.759145px;}
.ls13{letter-spacing:0.759914px;}
.ls14{letter-spacing:0.759974px;}
.ls1e{letter-spacing:0.822567px;}
.ls4{letter-spacing:0.823200px;}
.ls1d{letter-spacing:0.881443px;}
.ls1{letter-spacing:5.460000px;}
.lsc{letter-spacing:13.057997px;}
.lse{letter-spacing:13.058016px;}
.lsa{letter-spacing:13.116816px;}
.ls10{letter-spacing:13.116857px;}
.lsb{letter-spacing:16.060255px;}
.lsf{letter-spacing:16.062595px;}
.ls15{letter-spacing:16.081735px;}
.ls9{letter-spacing:16.170595px;}
.ls8{letter-spacing:16.351896px;}
.ls12{letter-spacing:16.682184px;}
.lsd{letter-spacing:16.736244px;}
.ls17{letter-spacing:19.086118px;}
.ls7{letter-spacing:19.975704px;}
.ls19{letter-spacing:782.050160px;}
.ls1a{letter-spacing:982.608000px;}
.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;}
}
.ws4{word-spacing:-21.216000px;}
.wsb3{word-spacing:-19.580400px;}
.ws8c{word-spacing:-14.758800px;}
.wscc{word-spacing:-14.641200px;}
.ws71{word-spacing:-13.935600px;}
.ws1f{word-spacing:-13.818000px;}
.ws2{word-spacing:-12.483600px;}
.ws3{word-spacing:-12.420000px;}
.wsfe{word-spacing:-11.426400px;}
.wscd{word-spacing:-10.248840px;}
.ws5{word-spacing:-10.176000px;}
.ws1{word-spacing:-10.117800px;}
.wse9{word-spacing:-9.936000px;}
.ws6{word-spacing:-9.855000px;}
.ws70{word-spacing:-9.672600px;}
.wsfd{word-spacing:-9.315000px;}
.wscf{word-spacing:-8.784000px;}
.ws1d{word-spacing:-8.148000px;}
.wsff{word-spacing:-8.100000px;}
.ws72{word-spacing:-7.266420px;}
.ws7{word-spacing:-6.898500px;}
.wsbd{word-spacing:-6.468000px;}
.wsce{word-spacing:-6.232800px;}
.ws15{word-spacing:-4.602000px;}
.wsb2{word-spacing:-4.512000px;}
.wsda{word-spacing:-3.936000px;}
.wsd9{word-spacing:-3.654000px;}
.ws1e{word-spacing:-1.890000px;}
.wsbc{word-spacing:-0.882000px;}
.wsd{word-spacing:-0.823200px;}
.wsab{word-spacing:-0.646800px;}
.ws52{word-spacing:-0.588000px;}
.wsdc{word-spacing:-0.529200px;}
.ws9e{word-spacing:-0.470400px;}
.ws5f{word-spacing:-0.411600px;}
.wsd3{word-spacing:-0.352800px;}
.ws1b{word-spacing:-0.336000px;}
.wse6{word-spacing:-0.294000px;}
.ws6f{word-spacing:-0.235200px;}
.wsa1{word-spacing:-0.176400px;}
.ws101{word-spacing:-0.135000px;}
.ws36{word-spacing:-0.117600px;}
.wsb4{word-spacing:-0.058820px;}
.ws89{word-spacing:-0.058800px;}
.wsb5{word-spacing:-0.044702px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:0.042000px;}
.ws51{word-spacing:0.058800px;}
.ws85{word-spacing:0.087600px;}
.ws38{word-spacing:0.176400px;}
.ws67{word-spacing:0.235200px;}
.wsf9{word-spacing:0.294000px;}
.ws81{word-spacing:0.306600px;}
.ws3b{word-spacing:0.352800px;}
.ws90{word-spacing:0.411600px;}
.ws9d{word-spacing:0.470400px;}
.ws84{word-spacing:0.525600px;}
.ws10{word-spacing:0.529200px;}
.wsa3{word-spacing:0.588000px;}
.ws69{word-spacing:0.646800px;}
.ws7f{word-spacing:0.700800px;}
.wsc{word-spacing:0.705600px;}
.ws87{word-spacing:0.744600px;}
.ws28{word-spacing:0.764400px;}
.wse2{word-spacing:0.788400px;}
.ws47{word-spacing:0.823200px;}
.ws19{word-spacing:0.840000px;}
.ws46{word-spacing:0.882000px;}
.wsd4{word-spacing:0.940800px;}
.wsdf{word-spacing:0.999600px;}
.ws1c{word-spacing:1.050000px;}
.ws57{word-spacing:1.058400px;}
.ws1a{word-spacing:1.092000px;}
.wsb{word-spacing:1.234800px;}
.ws6b{word-spacing:1.293600px;}
.wscb{word-spacing:1.350000px;}
.ws23{word-spacing:1.352400px;}
.wsea{word-spacing:1.411200px;}
.wse8{word-spacing:1.470000px;}
.ws5d{word-spacing:1.528800px;}
.ws76{word-spacing:1.587600px;}
.wsfc{word-spacing:1.646400px;}
.ws66{word-spacing:1.705200px;}
.ws11{word-spacing:1.764000px;}
.ws44{word-spacing:1.822800px;}
.ws27{word-spacing:1.881600px;}
.ws9b{word-spacing:1.940400px;}
.ws34{word-spacing:1.999200px;}
.ws18{word-spacing:2.016000px;}
.ws78{word-spacing:2.058000px;}
.ws5e{word-spacing:2.116800px;}
.ws60{word-spacing:2.175600px;}
.ws2a{word-spacing:2.234400px;}
.ws62{word-spacing:2.293200px;}
.ws64{word-spacing:2.352000px;}
.wsf3{word-spacing:2.410800px;}
.wse1{word-spacing:2.452800px;}
.ws92{word-spacing:2.469600px;}
.wseb{word-spacing:2.528400px;}
.ws4b{word-spacing:2.587200px;}
.ws82{word-spacing:2.628000px;}
.ws53{word-spacing:2.646000px;}
.ws65{word-spacing:2.704800px;}
.ws86{word-spacing:2.759400px;}
.ws8e{word-spacing:2.763600px;}
.ws55{word-spacing:2.822400px;}
.ws29{word-spacing:2.881200px;}
.wsca{word-spacing:2.940000px;}
.ws83{word-spacing:2.978400px;}
.ws68{word-spacing:2.998800px;}
.ws3a{word-spacing:3.057600px;}
.wsa8{word-spacing:3.116400px;}
.ws8f{word-spacing:3.175200px;}
.wsee{word-spacing:3.292800px;}
.wsec{word-spacing:3.351600px;}
.ws58{word-spacing:3.469200px;}
.ws80{word-spacing:3.504000px;}
.ws9f{word-spacing:3.528000px;}
.ws5b{word-spacing:3.586800px;}
.wse3{word-spacing:3.645600px;}
.ws2b{word-spacing:3.704400px;}
.ws6a{word-spacing:3.763200px;}
.ws17{word-spacing:3.780000px;}
.ws9a{word-spacing:3.822000px;}
.wsc8{word-spacing:3.880800px;}
.ws24{word-spacing:3.939600px;}
.ws7e{word-spacing:3.998400px;}
.ws61{word-spacing:4.057200px;}
.ws37{word-spacing:4.116000px;}
.ws3f{word-spacing:4.174800px;}
.ws45{word-spacing:4.233600px;}
.wsbf{word-spacing:4.292400px;}
.ws14{word-spacing:4.351200px;}
.wsdd{word-spacing:4.410000px;}
.ws63{word-spacing:4.468800px;}
.ws40{word-spacing:4.645200px;}
.ws4a{word-spacing:4.704000px;}
.wsc7{word-spacing:4.762800px;}
.ws88{word-spacing:4.821600px;}
.ws59{word-spacing:4.880400px;}
.ws13{word-spacing:4.939200px;}
.wsd1{word-spacing:4.998000px;}
.ws4c{word-spacing:5.056800px;}
.wsc4{word-spacing:5.115600px;}
.ws42{word-spacing:5.174400px;}
.ws9c{word-spacing:5.233200px;}
.ws91{word-spacing:5.292000px;}
.ws33{word-spacing:5.350800px;}
.ws7a{word-spacing:5.409600px;}
.ws2c{word-spacing:5.468400px;}
.ws4d{word-spacing:5.527200px;}
.ws3c{word-spacing:5.586000px;}
.ws25{word-spacing:5.644800px;}
.wsc9{word-spacing:5.703600px;}
.wsa4{word-spacing:5.762400px;}
.ws49{word-spacing:5.821200px;}
.wse4{word-spacing:5.880000px;}
.ws96{word-spacing:5.938800px;}
.ws3e{word-spacing:5.997600px;}
.wsbe{word-spacing:6.056400px;}
.ws32{word-spacing:6.115200px;}
.wse{word-spacing:6.174000px;}
.ws7b{word-spacing:6.232800px;}
.ws22{word-spacing:6.291600px;}
.ws75{word-spacing:6.350400px;}
.wsf0{word-spacing:6.409200px;}
.wsf6{word-spacing:6.468000px;}
.ws2f{word-spacing:6.526800px;}
.ws21{word-spacing:6.585600px;}
.wsad{word-spacing:6.644400px;}
.ws79{word-spacing:6.762000px;}
.ws8a{word-spacing:6.879600px;}
.wsd5{word-spacing:6.938400px;}
.ws8{word-spacing:6.997200px;}
.ws73{word-spacing:7.056000px;}
.wsa2{word-spacing:7.114800px;}
.ws7d{word-spacing:7.173600px;}
.ws56{word-spacing:7.232400px;}
.ws39{word-spacing:7.350000px;}
.wsa9{word-spacing:7.408800px;}
.wsba{word-spacing:7.467600px;}
.wse5{word-spacing:7.526400px;}
.ws41{word-spacing:7.585200px;}
.wsed{word-spacing:7.644000px;}
.ws35{word-spacing:7.702800px;}
.wsd6{word-spacing:7.761600px;}
.ws3d{word-spacing:7.820400px;}
.ws2e{word-spacing:7.879200px;}
.ws94{word-spacing:8.055600px;}
.ws2d{word-spacing:8.114400px;}
.wsa0{word-spacing:8.173200px;}
.wsc6{word-spacing:8.232000px;}
.wsb0{word-spacing:8.290800px;}
.wsd2{word-spacing:8.349600px;}
.wsf7{word-spacing:8.408400px;}
.ws9{word-spacing:8.526000px;}
.ws93{word-spacing:8.643600px;}
.ws43{word-spacing:8.761200px;}
.ws54{word-spacing:8.820000px;}
.wsaf{word-spacing:8.937600px;}
.wsb9{word-spacing:9.055200px;}
.wsf{word-spacing:9.114000px;}
.ws95{word-spacing:9.231600px;}
.ws8d{word-spacing:9.349200px;}
.wsaa{word-spacing:9.584400px;}
.ws7c{word-spacing:9.702000px;}
.ws20{word-spacing:9.760800px;}
.ws5c{word-spacing:9.878400px;}
.wse7{word-spacing:10.054800px;}
.wsc5{word-spacing:10.113600px;}
.wsa{word-spacing:10.172400px;}
.wsde{word-spacing:10.231200px;}
.wsef{word-spacing:10.407600px;}
.ws98{word-spacing:10.466400px;}
.wsfb{word-spacing:10.525200px;}
.ws12{word-spacing:10.760400px;}
.wsae{word-spacing:10.995600px;}
.ws48{word-spacing:11.054400px;}
.ws77{word-spacing:11.230800px;}
.wsf5{word-spacing:11.340000px;}
.ws5a{word-spacing:11.348400px;}
.wsbb{word-spacing:11.701200px;}
.wsb1{word-spacing:11.877600px;}
.ws26{word-spacing:12.054000px;}
.ws31{word-spacing:12.112800px;}
.ws99{word-spacing:12.289200px;}
.ws50{word-spacing:12.465600px;}
.wsf8{word-spacing:12.642000px;}
.wsb8{word-spacing:12.700800px;}
.wse0{word-spacing:13.230000px;}
.wsfa{word-spacing:13.288800px;}
.ws30{word-spacing:13.524000px;}
.wsf4{word-spacing:13.641600px;}
.ws4f{word-spacing:13.759200px;}
.ws8b{word-spacing:13.994400px;}
.ws6d{word-spacing:14.170800px;}
.ws6e{word-spacing:14.523600px;}
.wsac{word-spacing:14.994000px;}
.ws4e{word-spacing:15.346800px;}
.ws74{word-spacing:15.523200px;}
.ws6c{word-spacing:15.699600px;}
.wsb7{word-spacing:15.988831px;}
.ws100{word-spacing:16.522800px;}
.wsb6{word-spacing:16.804956px;}
.wsd7{word-spacing:16.993200px;}
.ws97{word-spacing:17.404800px;}
.wsd8{word-spacing:20.088000px;}
.wsc0{word-spacing:148.271994px;}
.wsa6{word-spacing:187.344000px;}
.wsc1{word-spacing:204.575994px;}
.wsa7{word-spacing:342.384000px;}
.wsc3{word-spacing:520.127984px;}
.wsa5{word-spacing:527.088000px;}
.wsc2{word-spacing:543.551984px;}
.wsf1{word-spacing:650.400000px;}
.wsd0{word-spacing:655.920000px;}
.wsf2{word-spacing:727.920000px;}
.wsdb{word-spacing:1235.664000px;}
._2f{margin-left:-22.753758px;}
._3c{margin-left:-17.161200px;}
._1f{margin-left:-15.750840px;}
._4{margin-left:-11.701800px;}
._2e{margin-left:-10.531080px;}
._9{margin-left:-8.976000px;}
._1e{margin-left:-7.388100px;}
._7{margin-left:-6.056400px;}
._2{margin-left:-4.092000px;}
._1{margin-left:-2.318400px;}
._0{margin-left:-1.008000px;}
._5{width:1.017240px;}
._6{width:2.281440px;}
._d{width:4.027320px;}
._c{width:5.339040px;}
._1d{width:6.390060px;}
._b{width:7.661640px;}
._a{width:8.815800px;}
._3b{width:10.701600px;}
._1b{width:12.583200px;}
._10{width:14.846400px;}
._8{width:16.787988px;}
._1c{width:20.580000px;}
._e{width:28.165200px;}
._12{width:29.929200px;}
._f{width:31.340400px;}
._11{width:33.692400px;}
._3{width:38.959828px;}
._22{width:158.351994px;}
._2a{width:159.676779px;}
._3f{width:179.261520px;}
._46{width:185.630393px;}
._14{width:194.064000px;}
._28{width:207.129581px;}
._13{width:213.360000px;}
._33{width:226.790746px;}
._26{width:236.879994px;}
._21{width:246.239994px;}
._29{width:250.232381px;}
._3e{width:261.808680px;}
._41{width:280.895989px;}
._17{width:285.312000px;}
._43{width:310.836960px;}
._25{width:331.024673px;}
._40{width:368.688000px;}
._15{width:376.320000px;}
._36{width:394.752000px;}
._3a{width:429.840000px;}
._23{width:438.288000px;}
._39{width:452.150731px;}
._38{width:460.752000px;}
._2c{width:539.174760px;}
._2d{width:585.839984px;}
._31{width:587.904000px;}
._27{width:601.344000px;}
._44{width:620.640000px;}
._1a{width:626.544000px;}
._19{width:638.508000px;}
._32{width:665.999986px;}
._42{width:705.845160px;}
._47{width:738.432000px;}
._4a{width:754.175993px;}
._18{width:759.312000px;}
._16{width:782.688000px;}
._3d{width:793.790400px;}
._37{width:812.669520px;}
._20{width:813.721157px;}
._24{width:817.967984px;}
._2b{width:829.872000px;}
._49{width:837.407993px;}
._48{width:898.511993px;}
._4b{width:961.967993px;}
._45{width:965.822393px;}
._34{width:1056.479986px;}
._30{width:1060.334386px;}
._35{width:1249.742400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:29.400000px;}
.fs11{font-size:30.660000px;}
.fse{font-size:31.500000px;}
.fs17{font-size:33.600000px;}
.fs10{font-size:41.160000px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:43.800000px;}
.fs16{font-size:44.702400px;}
.fsd{font-size:45.000000px;}
.fs7{font-size:46.199999px;}
.fsb{font-size:48.000000px;}
.fs13{font-size:54.000000px;}
.fsf{font-size:55.199999px;}
.fs14{font-size:55.200000px;}
.fs9{font-size:58.800000px;}
.fs15{font-size:58.819800px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:74.579400px;}
.fsa{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y19b{bottom:0.151350px;}
.y51{bottom:5.059865px;}
.y19e{bottom:16.054320px;}
.y198{bottom:18.254985px;}
.y50{bottom:27.433685px;}
.y19a{bottom:36.641700px;}
.y19d{bottom:37.856970px;}
.y5{bottom:66.525004px;}
.y4a{bottom:75.796800px;}
.y49{bottom:87.798300px;}
.y4{bottom:97.125005px;}
.yf8{bottom:99.459598px;}
.y16e{bottom:99.460798px;}
.y48{bottom:99.799800px;}
.y30f{bottom:99.987579px;}
.y2a1{bottom:100.647598px;}
.y195{bottom:100.656600px;}
.y1eb{bottom:100.658396px;}
.y144{bottom:100.660205px;}
.y101{bottom:101.208594px;}
.y282{bottom:102.748648px;}
.y2c8{bottom:104.295902px;}
.yaf{bottom:108.720898px;}
.y87{bottom:111.195900px;}
.yf7{bottom:111.460798px;}
.y47{bottom:111.801300px;}
.y30e{bottom:113.487579px;}
.y25c{bottom:114.860400px;}
.y16d{bottom:115.841995px;}
.y127{bottom:116.369098px;}
.y2c7{bottom:117.795902px;}
.y1b7{bottom:118.610400px;}
.y2a0{bottom:121.874398px;}
.y194{bottom:121.883400px;}
.y1ea{bottom:121.885196px;}
.y143{bottom:121.887005px;}
.y100{bottom:122.435394px;}
.y46{bottom:123.802800px;}
.y281{bottom:123.975448px;}
.y30d{bottom:126.987579px;}
.yf6{bottom:127.841995px;}
.yae{bottom:129.933305px;}
.y2c6{bottom:131.295902px;}
.y86{bottom:132.415509px;}
.y239{bottom:134.895905px;}
.y45{bottom:135.804300px;}
.y25b{bottom:136.085403px;}
.y126{bottom:137.595898px;}
.y21{bottom:139.264499px;}
.y1b6{bottom:139.824594px;}
.y30c{bottom:140.487579px;}
.yf5{bottom:140.508900px;}
.y142{bottom:143.101198px;}
.y1e9{bottom:143.103007px;}
.y193{bottom:143.110200px;}
.yff{bottom:143.660397px;}
.y2c5{bottom:144.795902px;}
.y280{bottom:145.202248px;}
.y44{bottom:147.805800px;}
.yad{bottom:151.160105px;}
.yf4{bottom:152.510100px;}
.y85{bottom:153.642309px;}
.ycf{bottom:153.865491px;}
.y30b{bottom:153.987579px;}
.y238{bottom:156.120895px;}
.y25a{bottom:157.292394px;}
.y125{bottom:158.820900px;}
.y1b5{bottom:161.051394px;}
.y141{bottom:164.327998px;}
.y1e8{bottom:164.329807px;}
.y192{bottom:164.337000px;}
.y27f{bottom:166.423643px;}
.y30a{bottom:167.487579px;}
.yf3{bottom:168.890099px;}
.yac{bottom:172.386905px;}
.y84{bottom:174.869109px;}
.yce{bottom:175.092291px;}
.y165{bottom:176.056799px;}
.y237{bottom:177.344100px;}
.y259{bottom:178.519194px;}
.y124{bottom:180.045902px;}
.y309{bottom:180.987579px;}
.yf2{bottom:181.553405px;}
.y1b4{bottom:182.278194px;}
.y20d{bottom:183.706808px;}
.y140{bottom:185.554798px;}
.y1e7{bottom:185.556607px;}
.y191{bottom:185.558400px;}
.yfe{bottom:186.633899px;}
.y27e{bottom:187.650443px;}
.yf1{bottom:193.554605px;}
.yab{bottom:193.613705px;}
.y308{bottom:194.487579px;}
.y83{bottom:196.095909px;}
.ycd{bottom:196.319091px;}
.y37{bottom:196.356142px;}
.y18{bottom:196.933500px;}
.y164{bottom:197.283599px;}
.y236{bottom:198.570900px;}
.y258{bottom:199.745994px;}
.y123{bottom:201.270905px;}
.y1b3{bottom:203.504994px;}
.y20c{bottom:204.933608px;}
.yf0{bottom:205.555805px;}
.y13f{bottom:206.781598px;}
.y1e6{bottom:206.783407px;}
.y190{bottom:206.785200px;}
.yfd{bottom:207.860699px;}
.y307{bottom:207.987579px;}
.y27d{bottom:208.877243px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yaa{bottom:214.840505px;}
.y2c4{bottom:217.020905px;}
.y82{bottom:217.319091px;}
.ycc{bottom:217.545891px;}
.yef{bottom:217.557005px;}
.y36{bottom:217.582942px;}
.y163{bottom:218.510399px;}
.y235{bottom:219.790509px;}
.y257{bottom:220.972794px;}
.y306{bottom:221.487579px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1b2{bottom:224.731794px;}
.y20b{bottom:226.160408px;}
.y13e{bottom:228.008398px;}
.y1e5{bottom:228.010207px;}
.y18f{bottom:228.012000px;}
.yfc{bottom:229.087499px;}
.y27c{bottom:230.100448px;}
.yee{bottom:233.938202px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y305{bottom:234.987579px;}
.ya9{bottom:236.067305px;}
.y81{bottom:238.545891px;}
.ycb{bottom:238.761905px;}
.y35{bottom:238.809742px;}
.y162{bottom:239.731794px;}
.y234{bottom:241.017309px;}
.y256{bottom:242.199594px;}
.y2c3{bottom:244.020905px;}
.y1b1{bottom:245.958594px;}
.yed{bottom:246.605108px;}
.y20a{bottom:247.385399px;}
.y304{bottom:248.487579px;}
.y18e{bottom:249.229800px;}
.y13d{bottom:249.235198px;}
.y1e4{bottom:249.237007px;}
.yfb{bottom:250.314299px;}
.y27b{bottom:251.327248px;}
.ya8{bottom:257.294105px;}
.y2c2{bottom:257.520905px;}
.y80{bottom:259.770905px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yca{bottom:259.988705px;}
.y34{bottom:260.036542px;}
.y161{bottom:260.958594px;}
.y303{bottom:261.987579px;}
.y233{bottom:262.244109px;}
.yec{bottom:262.986305px;}
.y255{bottom:263.426394px;}
.y1b0{bottom:267.185394px;}
.y209{bottom:268.608603px;}
.y1e3{bottom:270.447593px;}
.y18d{bottom:270.456600px;}
.y13c{bottom:270.461998px;}
.y2c1{bottom:271.020905px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y27a{bottom:272.548506px;}
.y302{bottom:275.487579px;}
.ya7{bottom:278.520905px;}
.y122{bottom:280.986895px;}
.yc9{bottom:281.215505px;}
.y33{bottom:281.263342px;}
.y160{bottom:282.179990px;}
.y232{bottom:283.470909px;}
.y254{bottom:284.653194px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y1af{bottom:288.408599px;}
.y301{bottom:288.987579px;}
.y208{bottom:289.835403px;}
.yfa{bottom:290.283599px;}
.y1e2{bottom:291.674393px;}
.y29f{bottom:291.679798px;}
.y13b{bottom:291.681607px;}
.y18c{bottom:291.683400px;}
.y2c0{bottom:293.520905px;}
.y279{bottom:293.775306px;}
.ya6{bottom:299.745895px;}
.y121{bottom:302.213695px;}
.yc8{bottom:302.442305px;}
.y300{bottom:302.487579px;}
.y32{bottom:302.490142px;}
.y15f{bottom:303.406790px;}
.y231{bottom:304.690805px;}
.y253{bottom:305.879994px;}
.y1ae{bottom:309.635399px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y207{bottom:311.060394px;}
.yf9{bottom:311.510399px;}
.y1e1{bottom:312.901193px;}
.y29e{bottom:312.906598px;}
.y13a{bottom:312.908407px;}
.y18b{bottom:312.910200px;}
.y278{bottom:315.002106px;}
.y2ff{bottom:315.987579px;}
.ya5{bottom:320.945695px;}
.y7f{bottom:320.969100px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y120{bottom:323.440495px;}
.yc7{bottom:323.669105px;}
.y31{bottom:323.716942px;}
.y15e{bottom:324.633590px;}
.y230{bottom:325.917605px;}
.y252{bottom:327.106794px;}
.y2fe{bottom:329.487579px;}
.y1ad{bottom:330.849603px;}
.y1e0{bottom:334.127993px;}
.y29d{bottom:334.133398px;}
.y139{bottom:334.135207px;}
.y18a{bottom:334.137000px;}
.y2bf{bottom:335.970886px;}
.y277{bottom:336.216471px;}
.ya4{bottom:342.172495px;}
.y7e{bottom:342.195900px;}
.y2fd{bottom:342.987579px;}
.yeb{bottom:344.145905px;}
.y11f{bottom:344.667295px;}
.yc6{bottom:344.895905px;}
.y30{bottom:344.927528px;}
.y15d{bottom:345.860390px;}
.y22f{bottom:347.144405px;}
.yf{bottom:348.133500px;}
.y251{bottom:348.333594px;}
.y2be{bottom:349.470886px;}
.y1ac{bottom:352.076403px;}
.y206{bottom:353.499613px;}
.y1df{bottom:355.354793px;}
.y29c{bottom:355.360198px;}
.y189{bottom:355.362000px;}
.y138{bottom:355.362007px;}
.y2fc{bottom:356.487579px;}
.y276{bottom:357.443271px;}
.ya3{bottom:363.399295px;}
.y7d{bottom:363.419105px;}
.yea{bottom:365.365823px;}
.y102{bottom:365.795242px;}
.y11e{bottom:365.894095px;}
.yc5{bottom:366.120895px;}
.y2f{bottom:366.154328px;}
.y15c{bottom:367.074594px;}
.y250{bottom:369.560394px;}
.y2fb{bottom:369.987579px;}
.y2bd{bottom:371.970886px;}
.y1ab{bottom:373.303203px;}
.y205{bottom:374.726413px;}
.y1de{bottom:376.581593px;}
.y188{bottom:376.583400px;}
.y137{bottom:376.585212px;}
.y29b{bottom:376.586998px;}
.y275{bottom:378.670071px;}
.y2fa{bottom:383.487579px;}
.ya2{bottom:384.626095px;}
.y7c{bottom:384.645905px;}
.y2bc{bottom:385.470886px;}
.ye9{bottom:386.592623px;}
.ye{bottom:386.785499px;}
.y22e{bottom:387.113705px;}
.y11d{bottom:387.120895px;}
.yc4{bottom:387.345886px;}
.y2e{bottom:387.381128px;}
.y15b{bottom:388.301394px;}
.y24f{bottom:390.774622px;}
.y1aa{bottom:394.530003px;}
.y204{bottom:395.953213px;}
.y2f9{bottom:396.987579px;}
.y1dd{bottom:397.808393px;}
.y187{bottom:397.810200px;}
.y136{bottom:397.812012px;}
.y2bb{bottom:398.970886px;}
.y274{bottom:399.896871px;}
.ya1{bottom:405.852895px;}
.y7b{bottom:405.870895px;}
.ye8{bottom:407.819423px;}
.yd{bottom:408.044999px;}
.y11c{bottom:408.301241px;}
.y22d{bottom:408.340505px;}
.y2d{bottom:408.607928px;}
.y15a{bottom:409.528194px;}
.y2f8{bottom:410.487579px;}
.y24e{bottom:412.001422px;}
.y1a9{bottom:415.756803px;}
.y203{bottom:417.180013px;}
.y29a{bottom:419.031621px;}
.y1dc{bottom:419.035193px;}
.y186{bottom:419.037000px;}
.y135{bottom:419.037003px;}
.y273{bottom:421.123671px;}
.y2ba{bottom:421.470886px;}
.y2f7{bottom:423.987579px;}
.ya0{bottom:427.079695px;}
.y7a{bottom:427.086886px;}
.ye7{bottom:429.046223px;}
.y11b{bottom:429.528041px;}
.y22c{bottom:429.567305px;}
.y2c{bottom:429.834728px;}
.y159{bottom:430.754994px;}
.y24d{bottom:433.228222px;}
.y2b9{bottom:434.970886px;}
.y1a8{bottom:436.983603px;}
.y2f6{bottom:437.487579px;}
.y202{bottom:438.406813px;}
.y185{bottom:440.256615px;}
.y299{bottom:440.258421px;}
.y1db{bottom:440.261993px;}
.y272{bottom:442.350471px;}
.y9f{bottom:448.306495px;}
.yc3{bottom:448.310114px;}
.y79{bottom:448.313686px;}
.y2b8{bottom:448.470886px;}
.ye6{bottom:450.273023px;}
.y11a{bottom:450.754841px;}
.y22b{bottom:450.794105px;}
.y2f5{bottom:450.987579px;}
.y2b{bottom:451.061528px;}
.y158{bottom:451.981794px;}
.y24c{bottom:454.455022px;}
.y1a7{bottom:458.210403px;}
.y201{bottom:459.633613px;}
.y184{bottom:461.483415px;}
.y298{bottom:461.485221px;}
.y1da{bottom:461.486984px;}
.y2b7{bottom:461.970886px;}
.y271{bottom:463.577271px;}
.y2f4{bottom:464.487579px;}
.y9e{bottom:469.533295px;}
.yc2{bottom:469.536914px;}
.y78{bottom:469.540486px;}
.y134{bottom:469.542295px;}
.y119{bottom:471.981641px;}
.y22a{bottom:472.020905px;}
.y2a{bottom:472.288328px;}
.y157{bottom:473.208594px;}
.y2b6{bottom:475.470886px;}
.y24b{bottom:475.681822px;}
.y2f3{bottom:477.987579px;}
.y1a6{bottom:479.430013px;}
.y200{bottom:480.860413px;}
.y1d9{bottom:482.704784px;}
.y183{bottom:482.710215px;}
.y297{bottom:482.712021px;}
.y270{bottom:484.791315px;}
.y2b5{bottom:488.970886px;}
.ye5{bottom:490.242323px;}
.y9d{bottom:490.760095px;}
.yc1{bottom:490.763714px;}
.y77{bottom:490.767286px;}
.y133{bottom:490.769095px;}
.y2f2{bottom:491.487579px;}
.y118{bottom:493.208441px;}
.y229{bottom:493.245895px;}
.y29{bottom:493.515128px;}
.y156{bottom:494.435394px;}
.y24a{bottom:496.908622px;}
.y1a5{bottom:500.656813px;}
.y1ff{bottom:502.076403px;}
.y2b4{bottom:502.470886px;}
.yc{bottom:502.864502px;}
.y296{bottom:503.928012px;}
.y1d8{bottom:503.931584px;}
.y182{bottom:503.937015px;}
.y2f1{bottom:504.987579px;}
.y26f{bottom:506.018115px;}
.ye4{bottom:511.469123px;}
.y9c{bottom:511.986895px;}
.yc0{bottom:511.990514px;}
.y76{bottom:511.994086px;}
.y132{bottom:511.995895px;}
.y117{bottom:514.435241px;}
.y228{bottom:514.440268px;}
.y28{bottom:514.741928px;}
.y155{bottom:515.653194px;}
.y2b3{bottom:515.970886px;}
.y249{bottom:518.135422px;}
.y2f0{bottom:518.487579px;}
.yb{bottom:520.864502px;}
.y1a4{bottom:521.883613px;}
.y1fe{bottom:523.303203px;}
.y295{bottom:525.154812px;}
.y1d7{bottom:525.158384px;}
.y181{bottom:525.160200px;}
.y26e{bottom:527.244915px;}
.y2b2{bottom:529.470886px;}
.y2ef{bottom:531.987579px;}
.ye3{bottom:532.695923px;}
.y131{bottom:533.199268px;}
.y9b{bottom:533.213695px;}
.ybf{bottom:533.217314px;}
.y75{bottom:533.220886px;}
.y116{bottom:535.662041px;}
.y227{bottom:535.667068px;}
.y27{bottom:535.966965px;}
.y154{bottom:536.879994px;}
.ya{bottom:538.864499px;}
.y248{bottom:539.358603px;}
.y2b1{bottom:542.970886px;}
.y1a3{bottom:543.110413px;}
.y1fd{bottom:544.530003px;}
.y2ee{bottom:545.487579px;}
.y294{bottom:546.381612px;}
.y180{bottom:546.383415px;}
.y1d6{bottom:546.385184px;}
.y26d{bottom:548.471715px;}
.ye2{bottom:553.917295px;}
.y130{bottom:554.426068px;}
.y74{bottom:554.438686px;}
.y9a{bottom:554.440495px;}
.ybe{bottom:554.444114px;}
.y2b0{bottom:556.470886px;}
.y9{bottom:556.864499px;}
.y115{bottom:556.888841px;}
.y226{bottom:556.893868px;}
.y26{bottom:557.191956px;}
.y153{bottom:558.106794px;}
.y2ed{bottom:558.987579px;}
.y247{bottom:560.585403px;}
.y1a2{bottom:564.330022px;}
.y1fc{bottom:565.756803px;}
.y293{bottom:567.608412px;}
.y17f{bottom:567.610215px;}
.y1d5{bottom:567.611984px;}
.y26c{bottom:569.698515px;}
.y2af{bottom:569.970886px;}
.y2ec{bottom:572.487579px;}
.ye1{bottom:575.144095px;}
.y12f{bottom:575.652868px;}
.y73{bottom:575.665486px;}
.y99{bottom:575.667295px;}
.ybd{bottom:575.670914px;}
.y114{bottom:578.115641px;}
.y225{bottom:578.120668px;}
.y152{bottom:579.333594px;}
.y246{bottom:581.799585px;}
.y2ae{bottom:583.470886px;}
.y1a1{bottom:585.556822px;}
.y2eb{bottom:585.987579px;}
.y1fb{bottom:586.983603px;}
.y292{bottom:588.835212px;}
.y1d4{bottom:588.837021px;}
.y17e{bottom:588.838515px;}
.y26b{bottom:590.925315px;}
.ye0{bottom:596.370895px;}
.y12e{bottom:596.879668px;}
.y72{bottom:596.892286px;}
.y98{bottom:596.894095px;}
.ybc{bottom:596.895905px;}
.y2ad{bottom:596.970886px;}
.y42{bottom:597.842102px;}
.y113{bottom:599.342441px;}
.y224{bottom:599.347468px;}
.y2ea{bottom:599.487579px;}
.y151{bottom:600.560394px;}
.y245{bottom:603.026385px;}
.y1a0{bottom:606.783622px;}
.y1fa{bottom:608.210403px;}
.y1d3{bottom:610.053012px;}
.y291{bottom:610.062012px;}
.y2ac{bottom:610.470886px;}
.y26a{bottom:612.152115px;}
.y2e9{bottom:612.987579px;}
.ydf{bottom:617.588695px;}
.y12d{bottom:618.106468px;}
.y71{bottom:618.119086px;}
.y97{bottom:618.120895px;}
.y112{bottom:620.569241px;}
.y223{bottom:620.574268px;}
.y150{bottom:621.780003px;}
.y41{bottom:621.842102px;}
.y244{bottom:624.253185px;}
.y2e8{bottom:626.487579px;}
.y19f{bottom:628.010422px;}
.y1f9{bottom:629.435394px;}
.y1d2{bottom:631.279812px;}
.y290{bottom:631.287003px;}
.y2ab{bottom:632.970886px;}
.y269{bottom:633.373671px;}
.yde{bottom:638.815495px;}
.y12c{bottom:639.333268px;}
.y96{bottom:639.344123px;}
.y70{bottom:639.345886px;}
.y40{bottom:639.842102px;}
.y2e7{bottom:639.987579px;}
.y111{bottom:641.796041px;}
.y222{bottom:641.801068px;}
.y197{bottom:641.899515px;}
.y14f{bottom:643.006803px;}
.y243{bottom:645.479985px;}
.y8{bottom:645.510000px;}
.y2aa{bottom:646.470886px;}
.y1f8{bottom:650.651385px;}
.y1d1{bottom:652.506612px;}
.y2e6{bottom:653.487579px;}
.y268{bottom:654.600471px;}
.y3f{bottom:657.842102px;}
.y199{bottom:657.953835px;}
.y196{bottom:657.987165px;}
.y2a9{bottom:659.970886px;}
.ydd{bottom:660.042295px;}
.y19c{bottom:660.154500px;}
.y12b{bottom:660.560068px;}
.y6f{bottom:660.565495px;}
.y95{bottom:660.570923px;}
.y110{bottom:663.022841px;}
.y221{bottom:663.027868px;}
.y14e{bottom:664.233603px;}
.y242{bottom:666.706785px;}
.y7{bottom:666.771000px;}
.y2e5{bottom:666.987579px;}
.y1f7{bottom:671.878185px;}
.y1d0{bottom:673.733412px;}
.y267{bottom:675.827271px;}
.y3e{bottom:675.842102px;}
.y2e4{bottom:680.487579px;}
.y5a{bottom:680.866928px;}
.y1b9{bottom:681.087021px;}
.ydc{bottom:681.269095px;}
.y28f{bottom:681.781486px;}
.y12a{bottom:681.786868px;}
.y94{bottom:681.790486px;}
.y6e{bottom:681.792295px;}
.y2a8{bottom:682.470886px;}
.y10f{bottom:684.249641px;}
.y220{bottom:684.254668px;}
.y14d{bottom:685.460403px;}
.y241{bottom:687.933585px;}
.y1f6{bottom:693.104985px;}
.y3d{bottom:693.842102px;}
.y2e3{bottom:693.987579px;}
.y1cf{bottom:694.960212px;}
.y2a7{bottom:695.970886px;}
.y266{bottom:697.048643px;}
.y59{bottom:698.866928px;}
.ydb{bottom:702.492323px;}
.y1cb{bottom:702.672009px;}
.y28e{bottom:703.008286px;}
.y129{bottom:703.013668px;}
.y93{bottom:703.017286px;}
.y6d{bottom:703.019095px;}
.y21f{bottom:705.481468px;}
.y17d{bottom:706.320915px;}
.y14c{bottom:706.680013px;}
.y2e2{bottom:707.487579px;}
.y58{bottom:707.866928px;}
.y240{bottom:709.160385px;}
.y2a6{bottom:709.470886px;}
.y3c{bottom:711.842102px;}
.y1f5{bottom:714.331785px;}
.y1ce{bottom:716.187012px;}
.y265{bottom:718.275443px;}
.y1ca{bottom:720.919518px;}
.y2e1{bottom:720.987579px;}
.y57{bottom:721.366928px;}
.y2a5{bottom:722.970886px;}
.yda{bottom:723.719123px;}
.y10e{bottom:724.218941px;}
.y28d{bottom:724.235086px;}
.y128{bottom:724.240468px;}
.y92{bottom:724.244086px;}
.y6c{bottom:724.245895px;}
.y6{bottom:726.298500px;}
.y21e{bottom:726.708268px;}
.y17c{bottom:727.547715px;}
.y14b{bottom:727.906813px;}
.y3b{bottom:729.842102px;}
.y23f{bottom:730.383613px;}
.y2e0{bottom:734.487579px;}
.y56{bottom:734.866928px;}
.y1f4{bottom:735.558585px;}
.y1cd{bottom:737.410193px;}
.y1c9{bottom:739.063518px;}
.y264{bottom:739.502243px;}
.yd9{bottom:744.945923px;}
.y10d{bottom:745.445741px;}
.ybb{bottom:745.452886px;}
.y28c{bottom:745.461886px;}
.y6b{bottom:745.467268px;}
.y2a4{bottom:745.469123px;}
.y91{bottom:745.470886px;}
.y3a{bottom:747.842102px;}
.y21d{bottom:747.935068px;}
.y2df{bottom:747.987579px;}
.y17b{bottom:748.774515px;}
.y14a{bottom:749.133613px;}
.y23e{bottom:751.610413px;}
.y3{bottom:752.599495px;}
.y55{bottom:752.866928px;}
.y1f3{bottom:756.785385px;}
.y1c8{bottom:757.207518px;}
.y1cc{bottom:758.636993px;}
.y263{bottom:760.727097px;}
.y2de{bottom:761.487579px;}
.y39{bottom:765.842102px;}
.yd8{bottom:766.172068px;}
.y10c{bottom:766.672541px;}
.yba{bottom:766.679686px;}
.y28b{bottom:766.688686px;}
.y90{bottom:766.692305px;}
.y6a{bottom:766.694068px;}
.y2a3{bottom:766.695923px;}
.y21c{bottom:769.161868px;}
.y54{bottom:769.741974px;}
.y17a{bottom:769.985130px;}
.y149{bottom:770.360413px;}
.y23d{bottom:772.831831px;}
.y2dd{bottom:774.987579px;}
.y1c7{bottom:775.363518px;}
.y1f2{bottom:778.010376px;}
.y53{bottom:783.241974px;}
.y10b{bottom:787.899341px;}
.yb9{bottom:787.906486px;}
.y28a{bottom:787.915486px;}
.y2a2{bottom:787.917341px;}
.y8f{bottom:787.919105px;}
.y69{bottom:787.920868px;}
.y38{bottom:788.342102px;}
.y2dc{bottom:788.487579px;}
.y21b{bottom:790.388668px;}
.y179{bottom:791.211930px;}
.y148{bottom:791.579976px;}
.y311{bottom:792.987579px;}
.y1c6{bottom:793.507518px;}
.y23c{bottom:794.058631px;}
.y52{bottom:796.741974px;}
.y2db{bottom:801.987579px;}
.y310{bottom:806.487579px;}
.y10a{bottom:809.126141px;}
.yb8{bottom:809.133286px;}
.y289{bottom:809.142286px;}
.y68{bottom:809.144141px;}
.y8e{bottom:809.145905px;}
.y21a{bottom:811.615468px;}
.y1c5{bottom:811.651518px;}
.y178{bottom:812.438730px;}
.y284{bottom:812.587475px;}
.y147{bottom:812.806776px;}
.y23b{bottom:815.285431px;}
.y2da{bottom:815.487579px;}
.y2d9{bottom:828.987579px;}
.y1c4{bottom:829.795518px;}
.y109{bottom:830.352941px;}
.yb7{bottom:830.360086px;}
.yd7{bottom:830.365468px;}
.y288{bottom:830.369086px;}
.y67{bottom:830.370941px;}
.y219{bottom:832.842268px;}
.y177{bottom:833.665530px;}
.y283{bottom:833.786957px;}
.y146{bottom:834.033576px;}
.y23a{bottom:836.510376px;}
.y20e{bottom:839.786957px;}
.y2d8{bottom:842.487579px;}
.y1c3{bottom:847.951518px;}
.y108{bottom:851.579741px;}
.yb6{bottom:851.586886px;}
.yd6{bottom:851.592268px;}
.y66{bottom:851.594123px;}
.y287{bottom:851.595886px;}
.y286{bottom:852.079518px;}
.y218{bottom:854.069068px;}
.y1ed{bottom:854.285065px;}
.y25{bottom:854.679474px;}
.y176{bottom:854.892330px;}
.y145{bottom:855.260376px;}
.y2d7{bottom:855.987579px;}
.y211{bottom:856.723518px;}
.y1c2{bottom:861.451518px;}
.y2d6{bottom:869.487579px;}
.y285{bottom:870.307518px;}
.y1ec{bottom:871.286957px;}
.y107{bottom:872.806541px;}
.yb5{bottom:872.813686px;}
.yd5{bottom:872.819068px;}
.y65{bottom:872.820923px;}
.y210{bottom:874.951518px;}
.y217{bottom:875.295868px;}
.y175{bottom:876.119130px;}
.y2{bottom:879.369000px;}
.y1c1{bottom:879.607518px;}
.y2d5{bottom:882.987579px;}
.y1f1{bottom:888.379518px;}
.y20f{bottom:888.451518px;}
.y262{bottom:892.411518px;}
.y106{bottom:894.033341px;}
.y64{bottom:894.038723px;}
.yb4{bottom:894.040486px;}
.y8d{bottom:894.044105px;}
.yd4{bottom:894.045868px;}
.y2d4{bottom:896.487579px;}
.y216{bottom:896.520905px;}
.y174{bottom:897.345930px;}
.y1c0{bottom:897.751518px;}
.y24{bottom:900.896406px;}
.y1f0{bottom:906.607518px;}
.y2d3{bottom:909.987579px;}
.y261{bottom:910.639518px;}
.y105{bottom:915.260141px;}
.yd3{bottom:915.263668px;}
.y63{bottom:915.265523px;}
.yb3{bottom:915.267286px;}
.y8c{bottom:915.270905px;}
.y215{bottom:917.744086px;}
.y173{bottom:918.572730px;}
.y2d2{bottom:923.487579px;}
.y16c{bottom:924.067518px;}
.y1bf{bottom:924.643518px;}
.y1ef{bottom:924.751518px;}
.y260{bottom:928.795518px;}
.y104{bottom:936.486941px;}
.yd2{bottom:936.490468px;}
.y62{bottom:936.492323px;}
.yb2{bottom:936.494086px;}
.y2d1{bottom:936.987579px;}
.y214{bottom:938.970886px;}
.y172{bottom:939.799530px;}
.y23{bottom:939.884406px;}
.y16b{bottom:942.295518px;}
.y25f{bottom:946.939518px;}
.y1be{bottom:948.487518px;}
.y2d0{bottom:950.487579px;}
.y1ee{bottom:951.643518px;}
.y103{bottom:957.713741px;}
.yd1{bottom:957.717268px;}
.y61{bottom:957.719123px;}
.yb1{bottom:957.720886px;}
.y213{bottom:960.195923px;}
.y16a{bottom:960.439518px;}
.y171{bottom:961.024470px;}
.y1bd{bottom:961.987518px;}
.y2cf{bottom:963.987579px;}
.y25e{bottom:965.095518px;}
.y1{bottom:966.726000px;}
.y1bc{bottom:975.487518px;}
.y2ce{bottom:977.487579px;}
.y169{bottom:978.595518px;}
.y22{bottom:978.872406px;}
.yb0{bottom:978.940541px;}
.yd0{bottom:978.944068px;}
.y60{bottom:978.945923px;}
.y212{bottom:981.424841px;}
.y1bb{bottom:988.987518px;}
.y2cd{bottom:990.987579px;}
.y25d{bottom:991.987518px;}
.y5f{bottom:1000.167341px;}
.y8b{bottom:1000.170868px;}
.y1ba{bottom:1002.487518px;}
.y2cc{bottom:1004.487579px;}
.y168{bottom:1005.487518px;}
.y2cb{bottom:1017.987579px;}
.y167{bottom:1018.987518px;}
.y5e{bottom:1021.394141px;}
.y170{bottom:1021.395900px;}
.y1b8{bottom:1026.803079px;}
.y2ca{bottom:1031.487579px;}
.y4b{bottom:1035.298370px;}
.y43{bottom:1035.750183px;}
.y5d{bottom:1042.620941px;}
.y16f{bottom:1042.620945px;}
.y166{bottom:1043.300079px;}
.y2c9{bottom:1044.987579px;}
.y4f{bottom:1094.425507px;}
.y4e{bottom:1097.297079px;}
.y4d{bottom:1112.297079px;}
.y88{bottom:1126.524628px;}
.y5b{bottom:1126.524719px;}
.y8a{bottom:1126.756989px;}
.y4c{bottom:1126.925079px;}
.y89{bottom:1127.300079px;}
.y5c{bottom:1127.304719px;}
.h1a{height:27.814500px;}
.h53{height:27.988800px;}
.h32{height:28.483140px;}
.h4b{height:31.291680px;}
.h7{height:32.130000px;}
.h13{height:37.086000px;}
.h19{height:39.735000px;}
.h4e{height:39.984000px;}
.h33{height:40.690200px;}
.h49{height:41.173860px;}
.h12{height:41.538000px;}
.h3f{height:42.384000px;}
.h61{height:42.840000px;}
.h48{height:43.200000px;}
.h17{height:43.410000px;}
.h60{height:43.785000px;}
.h16{height:45.696000px;}
.h15{height:45.744000px;}
.h6{height:45.900000px;}
.h3d{height:46.704000px;}
.h14{height:47.232000px;}
.h34{height:47.472000px;}
.h4d{height:47.682000px;}
.h3{height:48.195000px;}
.h50{height:48.790654px;}
.h4a{height:49.976520px;}
.h54{height:51.892873px;}
.hf{height:52.980000px;}
.h3c{height:53.406000px;}
.h2c{height:53.654399px;}
.h23{height:53.709599px;}
.h40{height:53.709600px;}
.h30{height:54.625200px;}
.h56{height:54.632620px;}
.h31{height:54.645490px;}
.h57{height:54.747673px;}
.h35{height:54.803780px;}
.h2{height:55.080000px;}
.hd{height:55.860000px;}
.h5d{height:55.866596px;}
.h1d{height:55.867054px;}
.h22{height:55.867145px;}
.h59{height:55.867191px;}
.h43{height:55.867200px;}
.h24{height:55.867237px;}
.h5b{height:55.873741px;}
.h1b{height:55.874107px;}
.h42{height:55.874340px;}
.h3b{height:55.874382px;}
.h45{height:55.874400px;}
.h5e{height:55.874428px;}
.h1e{height:55.874473px;}
.h5c{height:55.875023px;}
.h58{height:55.880382px;}
.h28{height:55.881527px;}
.h44{height:55.881540px;}
.h25{height:55.881573px;}
.h1f{height:55.881710px;}
.h1c{height:55.888580px;}
.h2f{height:55.888763px;}
.h46{height:55.888800px;}
.h20{height:55.888946px;}
.h21{height:55.896000px;}
.h5a{height:55.903053px;}
.h4c{height:55.903145px;}
.h38{height:55.903191px;}
.h39{height:55.903237px;}
.h36{height:55.903420px;}
.h27{height:55.910382px;}
.h5f{height:55.917527px;}
.h41{height:55.917540px;}
.h51{height:55.917618px;}
.he{height:55.917710px;}
.h29{height:55.932000px;}
.h37{height:55.946473px;}
.h26{height:55.960855px;}
.h47{height:57.000000px;}
.h18{height:57.053241px;}
.h10{height:58.380000px;}
.hc{height:61.120200px;}
.h2d{height:62.621897px;}
.h55{height:62.621989px;}
.h2b{height:62.622264px;}
.h2a{height:62.628951px;}
.h2e{height:62.636371px;}
.h3a{height:62.643607px;}
.h52{height:62.657989px;}
.hb{height:67.194379px;}
.h11{height:77.142000px;}
.h5{height:78.030000px;}
.h4f{height:96.384000px;}
.h3e{height:100.704000px;}
.h4{height:119.055004px;}
.ha{height:137.088000px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:221.692497px;}
.w5{width:463.920000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.457520px;}
.xd{left:68.280666px;}
.x5{left:84.933002px;}
.xa{left:93.732302px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xf{left:176.456703px;}
.x12{left:185.456703px;}
.x10{left:188.451903px;}
.x25{left:198.956703px;}
.x4{left:203.484001px;}
.x11{left:206.444703px;}
.x19{left:221.409900px;}
.x17{left:222.586050px;}
.x18{left:228.821415px;}
.x6{left:267.874054px;}
.x8{left:277.624489px;}
.x7{left:279.869254px;}
.x1c{left:338.265615px;}
.x1b{left:345.448065px;}
.x13{left:358.724703px;}
.x1f{left:427.355392px;}
.x22{left:445.616703px;}
.x1a{left:450.533250px;}
.x3{left:454.959000px;}
.x1e{left:460.846200px;}
.x14{left:464.516703px;}
.x21{left:531.358195px;}
.x23{left:557.444703px;}
.x1d{left:567.996600px;}
.xb{left:587.194519px;}
.x20{left:591.382050px;}
.x24{left:647.324703px;}
.x9{left:694.929886px;}
.x16{left:699.146985px;}
.x15{left:741.068385px;}
.xe{left:747.224258px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.va{vertical-align:-14.933268pt;}
.v6{vertical-align:-13.072053pt;}
.v8{vertical-align:-7.824587pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.322667pt;}
.v7{vertical-align:7.824587pt;}
.v9{vertical-align:16.997203pt;}
.v4{vertical-align:20.912845pt;}
.v1{vertical-align:23.466471pt;}
.v5{vertical-align:48.000000pt;}
.ls3{letter-spacing:-5.383467pt;}
.ls2{letter-spacing:-0.933333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000009pt;}
.ls20{letter-spacing:0.000012pt;}
.ls6{letter-spacing:0.000053pt;}
.ls5{letter-spacing:0.000355pt;}
.ls11{letter-spacing:0.026021pt;}
.ls1f{letter-spacing:0.512213pt;}
.ls21{letter-spacing:0.512400pt;}
.ls1c{letter-spacing:0.637632pt;}
.ls1b{letter-spacing:0.637653pt;}
.ls18{letter-spacing:0.674795pt;}
.ls13{letter-spacing:0.675479pt;}
.ls14{letter-spacing:0.675533pt;}
.ls1e{letter-spacing:0.731171pt;}
.ls4{letter-spacing:0.731733pt;}
.ls1d{letter-spacing:0.783505pt;}
.ls1{letter-spacing:4.853333pt;}
.lsc{letter-spacing:11.607108pt;}
.lse{letter-spacing:11.607125pt;}
.lsa{letter-spacing:11.659392pt;}
.ls10{letter-spacing:11.659428pt;}
.lsb{letter-spacing:14.275782pt;}
.lsf{letter-spacing:14.277862pt;}
.ls15{letter-spacing:14.294876pt;}
.ls9{letter-spacing:14.373862pt;}
.ls8{letter-spacing:14.535019pt;}
.ls12{letter-spacing:14.828608pt;}
.lsd{letter-spacing:14.876661pt;}
.ls17{letter-spacing:16.965438pt;}
.ls7{letter-spacing:17.756181pt;}
.ls19{letter-spacing:695.155698pt;}
.ls1a{letter-spacing:873.429333pt;}
.ws4{word-spacing:-18.858667pt;}
.wsb3{word-spacing:-17.404800pt;}
.ws8c{word-spacing:-13.118933pt;}
.wscc{word-spacing:-13.014400pt;}
.ws71{word-spacing:-12.387200pt;}
.ws1f{word-spacing:-12.282667pt;}
.ws2{word-spacing:-11.096533pt;}
.ws3{word-spacing:-11.040000pt;}
.wsfe{word-spacing:-10.156800pt;}
.wscd{word-spacing:-9.110080pt;}
.ws5{word-spacing:-9.045333pt;}
.ws1{word-spacing:-8.993600pt;}
.wse9{word-spacing:-8.832000pt;}
.ws6{word-spacing:-8.760000pt;}
.ws70{word-spacing:-8.597867pt;}
.wsfd{word-spacing:-8.280000pt;}
.wscf{word-spacing:-7.808000pt;}
.ws1d{word-spacing:-7.242667pt;}
.wsff{word-spacing:-7.200000pt;}
.ws72{word-spacing:-6.459040pt;}
.ws7{word-spacing:-6.132000pt;}
.wsbd{word-spacing:-5.749333pt;}
.wsce{word-spacing:-5.540267pt;}
.ws15{word-spacing:-4.090667pt;}
.wsb2{word-spacing:-4.010667pt;}
.wsda{word-spacing:-3.498667pt;}
.wsd9{word-spacing:-3.248000pt;}
.ws1e{word-spacing:-1.680000pt;}
.wsbc{word-spacing:-0.784000pt;}
.wsd{word-spacing:-0.731733pt;}
.wsab{word-spacing:-0.574933pt;}
.ws52{word-spacing:-0.522667pt;}
.wsdc{word-spacing:-0.470400pt;}
.ws9e{word-spacing:-0.418133pt;}
.ws5f{word-spacing:-0.365867pt;}
.wsd3{word-spacing:-0.313600pt;}
.ws1b{word-spacing:-0.298667pt;}
.wse6{word-spacing:-0.261333pt;}
.ws6f{word-spacing:-0.209067pt;}
.wsa1{word-spacing:-0.156800pt;}
.ws101{word-spacing:-0.120000pt;}
.ws36{word-spacing:-0.104533pt;}
.wsb4{word-spacing:-0.052284pt;}
.ws89{word-spacing:-0.052267pt;}
.wsb5{word-spacing:-0.039735pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:0.037333pt;}
.ws51{word-spacing:0.052267pt;}
.ws85{word-spacing:0.077867pt;}
.ws38{word-spacing:0.156800pt;}
.ws67{word-spacing:0.209067pt;}
.wsf9{word-spacing:0.261333pt;}
.ws81{word-spacing:0.272533pt;}
.ws3b{word-spacing:0.313600pt;}
.ws90{word-spacing:0.365867pt;}
.ws9d{word-spacing:0.418133pt;}
.ws84{word-spacing:0.467200pt;}
.ws10{word-spacing:0.470400pt;}
.wsa3{word-spacing:0.522667pt;}
.ws69{word-spacing:0.574933pt;}
.ws7f{word-spacing:0.622933pt;}
.wsc{word-spacing:0.627200pt;}
.ws87{word-spacing:0.661867pt;}
.ws28{word-spacing:0.679467pt;}
.wse2{word-spacing:0.700800pt;}
.ws47{word-spacing:0.731733pt;}
.ws19{word-spacing:0.746667pt;}
.ws46{word-spacing:0.784000pt;}
.wsd4{word-spacing:0.836267pt;}
.wsdf{word-spacing:0.888533pt;}
.ws1c{word-spacing:0.933333pt;}
.ws57{word-spacing:0.940800pt;}
.ws1a{word-spacing:0.970667pt;}
.wsb{word-spacing:1.097600pt;}
.ws6b{word-spacing:1.149867pt;}
.wscb{word-spacing:1.200000pt;}
.ws23{word-spacing:1.202133pt;}
.wsea{word-spacing:1.254400pt;}
.wse8{word-spacing:1.306667pt;}
.ws5d{word-spacing:1.358933pt;}
.ws76{word-spacing:1.411200pt;}
.wsfc{word-spacing:1.463467pt;}
.ws66{word-spacing:1.515733pt;}
.ws11{word-spacing:1.568000pt;}
.ws44{word-spacing:1.620267pt;}
.ws27{word-spacing:1.672533pt;}
.ws9b{word-spacing:1.724800pt;}
.ws34{word-spacing:1.777067pt;}
.ws18{word-spacing:1.792000pt;}
.ws78{word-spacing:1.829333pt;}
.ws5e{word-spacing:1.881600pt;}
.ws60{word-spacing:1.933867pt;}
.ws2a{word-spacing:1.986133pt;}
.ws62{word-spacing:2.038400pt;}
.ws64{word-spacing:2.090667pt;}
.wsf3{word-spacing:2.142933pt;}
.wse1{word-spacing:2.180267pt;}
.ws92{word-spacing:2.195200pt;}
.wseb{word-spacing:2.247467pt;}
.ws4b{word-spacing:2.299733pt;}
.ws82{word-spacing:2.336000pt;}
.ws53{word-spacing:2.352000pt;}
.ws65{word-spacing:2.404267pt;}
.ws86{word-spacing:2.452800pt;}
.ws8e{word-spacing:2.456533pt;}
.ws55{word-spacing:2.508800pt;}
.ws29{word-spacing:2.561067pt;}
.wsca{word-spacing:2.613333pt;}
.ws83{word-spacing:2.647467pt;}
.ws68{word-spacing:2.665600pt;}
.ws3a{word-spacing:2.717867pt;}
.wsa8{word-spacing:2.770133pt;}
.ws8f{word-spacing:2.822400pt;}
.wsee{word-spacing:2.926933pt;}
.wsec{word-spacing:2.979200pt;}
.ws58{word-spacing:3.083733pt;}
.ws80{word-spacing:3.114667pt;}
.ws9f{word-spacing:3.136000pt;}
.ws5b{word-spacing:3.188267pt;}
.wse3{word-spacing:3.240533pt;}
.ws2b{word-spacing:3.292800pt;}
.ws6a{word-spacing:3.345067pt;}
.ws17{word-spacing:3.360000pt;}
.ws9a{word-spacing:3.397333pt;}
.wsc8{word-spacing:3.449600pt;}
.ws24{word-spacing:3.501867pt;}
.ws7e{word-spacing:3.554133pt;}
.ws61{word-spacing:3.606400pt;}
.ws37{word-spacing:3.658667pt;}
.ws3f{word-spacing:3.710933pt;}
.ws45{word-spacing:3.763200pt;}
.wsbf{word-spacing:3.815467pt;}
.ws14{word-spacing:3.867733pt;}
.wsdd{word-spacing:3.920000pt;}
.ws63{word-spacing:3.972267pt;}
.ws40{word-spacing:4.129067pt;}
.ws4a{word-spacing:4.181333pt;}
.wsc7{word-spacing:4.233600pt;}
.ws88{word-spacing:4.285867pt;}
.ws59{word-spacing:4.338133pt;}
.ws13{word-spacing:4.390400pt;}
.wsd1{word-spacing:4.442667pt;}
.ws4c{word-spacing:4.494933pt;}
.wsc4{word-spacing:4.547200pt;}
.ws42{word-spacing:4.599467pt;}
.ws9c{word-spacing:4.651733pt;}
.ws91{word-spacing:4.704000pt;}
.ws33{word-spacing:4.756267pt;}
.ws7a{word-spacing:4.808533pt;}
.ws2c{word-spacing:4.860800pt;}
.ws4d{word-spacing:4.913067pt;}
.ws3c{word-spacing:4.965333pt;}
.ws25{word-spacing:5.017600pt;}
.wsc9{word-spacing:5.069867pt;}
.wsa4{word-spacing:5.122133pt;}
.ws49{word-spacing:5.174400pt;}
.wse4{word-spacing:5.226667pt;}
.ws96{word-spacing:5.278933pt;}
.ws3e{word-spacing:5.331200pt;}
.wsbe{word-spacing:5.383467pt;}
.ws32{word-spacing:5.435733pt;}
.wse{word-spacing:5.488000pt;}
.ws7b{word-spacing:5.540267pt;}
.ws22{word-spacing:5.592533pt;}
.ws75{word-spacing:5.644800pt;}
.wsf0{word-spacing:5.697067pt;}
.wsf6{word-spacing:5.749333pt;}
.ws2f{word-spacing:5.801600pt;}
.ws21{word-spacing:5.853867pt;}
.wsad{word-spacing:5.906133pt;}
.ws79{word-spacing:6.010667pt;}
.ws8a{word-spacing:6.115200pt;}
.wsd5{word-spacing:6.167467pt;}
.ws8{word-spacing:6.219733pt;}
.ws73{word-spacing:6.272000pt;}
.wsa2{word-spacing:6.324267pt;}
.ws7d{word-spacing:6.376533pt;}
.ws56{word-spacing:6.428800pt;}
.ws39{word-spacing:6.533333pt;}
.wsa9{word-spacing:6.585600pt;}
.wsba{word-spacing:6.637867pt;}
.wse5{word-spacing:6.690133pt;}
.ws41{word-spacing:6.742400pt;}
.wsed{word-spacing:6.794667pt;}
.ws35{word-spacing:6.846933pt;}
.wsd6{word-spacing:6.899200pt;}
.ws3d{word-spacing:6.951467pt;}
.ws2e{word-spacing:7.003733pt;}
.ws94{word-spacing:7.160533pt;}
.ws2d{word-spacing:7.212800pt;}
.wsa0{word-spacing:7.265067pt;}
.wsc6{word-spacing:7.317333pt;}
.wsb0{word-spacing:7.369600pt;}
.wsd2{word-spacing:7.421867pt;}
.wsf7{word-spacing:7.474133pt;}
.ws9{word-spacing:7.578667pt;}
.ws93{word-spacing:7.683200pt;}
.ws43{word-spacing:7.787733pt;}
.ws54{word-spacing:7.840000pt;}
.wsaf{word-spacing:7.944533pt;}
.wsb9{word-spacing:8.049067pt;}
.wsf{word-spacing:8.101333pt;}
.ws95{word-spacing:8.205867pt;}
.ws8d{word-spacing:8.310400pt;}
.wsaa{word-spacing:8.519467pt;}
.ws7c{word-spacing:8.624000pt;}
.ws20{word-spacing:8.676267pt;}
.ws5c{word-spacing:8.780800pt;}
.wse7{word-spacing:8.937600pt;}
.wsc5{word-spacing:8.989867pt;}
.wsa{word-spacing:9.042133pt;}
.wsde{word-spacing:9.094400pt;}
.wsef{word-spacing:9.251200pt;}
.ws98{word-spacing:9.303467pt;}
.wsfb{word-spacing:9.355733pt;}
.ws12{word-spacing:9.564800pt;}
.wsae{word-spacing:9.773867pt;}
.ws48{word-spacing:9.826133pt;}
.ws77{word-spacing:9.982933pt;}
.wsf5{word-spacing:10.080000pt;}
.ws5a{word-spacing:10.087467pt;}
.wsbb{word-spacing:10.401067pt;}
.wsb1{word-spacing:10.557867pt;}
.ws26{word-spacing:10.714667pt;}
.ws31{word-spacing:10.766933pt;}
.ws99{word-spacing:10.923733pt;}
.ws50{word-spacing:11.080533pt;}
.wsf8{word-spacing:11.237333pt;}
.wsb8{word-spacing:11.289600pt;}
.wse0{word-spacing:11.760000pt;}
.wsfa{word-spacing:11.812267pt;}
.ws30{word-spacing:12.021333pt;}
.wsf4{word-spacing:12.125867pt;}
.ws4f{word-spacing:12.230400pt;}
.ws8b{word-spacing:12.439467pt;}
.ws6d{word-spacing:12.596267pt;}
.ws6e{word-spacing:12.909867pt;}
.wsac{word-spacing:13.328000pt;}
.ws4e{word-spacing:13.641600pt;}
.ws74{word-spacing:13.798400pt;}
.ws6c{word-spacing:13.955200pt;}
.wsb7{word-spacing:14.212294pt;}
.ws100{word-spacing:14.686933pt;}
.wsb6{word-spacing:14.937739pt;}
.wsd7{word-spacing:15.105067pt;}
.ws97{word-spacing:15.470933pt;}
.wsd8{word-spacing:17.856000pt;}
.wsc0{word-spacing:131.797328pt;}
.wsa6{word-spacing:166.528000pt;}
.wsc1{word-spacing:181.845328pt;}
.wsa7{word-spacing:304.341333pt;}
.wsc3{word-spacing:462.335986pt;}
.wsa5{word-spacing:468.522667pt;}
.wsc2{word-spacing:483.157319pt;}
.wsf1{word-spacing:578.133333pt;}
.wsd0{word-spacing:583.040000pt;}
.wsf2{word-spacing:647.040000pt;}
.wsdb{word-spacing:1098.368000pt;}
._2f{margin-left:-20.225563pt;}
._3c{margin-left:-15.254400pt;}
._1f{margin-left:-14.000747pt;}
._4{margin-left:-10.401600pt;}
._2e{margin-left:-9.360960pt;}
._9{margin-left:-7.978667pt;}
._1e{margin-left:-6.567200pt;}
._7{margin-left:-5.383467pt;}
._2{margin-left:-3.637333pt;}
._1{margin-left:-2.060800pt;}
._0{margin-left:-0.896000pt;}
._5{width:0.904213pt;}
._6{width:2.027947pt;}
._d{width:3.579840pt;}
._c{width:4.745813pt;}
._1d{width:5.680054pt;}
._b{width:6.810346pt;}
._a{width:7.836267pt;}
._3b{width:9.512533pt;}
._1b{width:11.185067pt;}
._10{width:13.196800pt;}
._8{width:14.922656pt;}
._1c{width:18.293333pt;}
._e{width:25.035733pt;}
._12{width:26.603733pt;}
._f{width:27.858133pt;}
._11{width:29.948800pt;}
._3{width:34.630958pt;}
._22{width:140.757328pt;}
._2a{width:141.934914pt;}
._3f{width:159.343573pt;}
._46{width:165.004793pt;}
._14{width:172.501333pt;}
._28{width:184.115183pt;}
._13{width:189.653333pt;}
._33{width:201.591774pt;}
._26{width:210.559994pt;}
._21{width:218.879995pt;}
._29{width:222.428783pt;}
._3e{width:232.718826pt;}
._41{width:249.685324pt;}
._17{width:253.610667pt;}
._43{width:276.299520pt;}
._25{width:294.244154pt;}
._40{width:327.722667pt;}
._15{width:334.506667pt;}
._36{width:350.890667pt;}
._3a{width:382.080000pt;}
._23{width:389.589333pt;}
._39{width:401.911761pt;}
._38{width:409.557333pt;}
._2c{width:479.266453pt;}
._2d{width:520.746653pt;}
._31{width:522.581333pt;}
._27{width:534.528000pt;}
._44{width:551.680000pt;}
._1a{width:556.928000pt;}
._19{width:567.562667pt;}
._32{width:591.999988pt;}
._42{width:627.417920pt;}
._47{width:656.384000pt;}
._4a{width:670.378660pt;}
._18{width:674.944000pt;}
._16{width:695.722667pt;}
._3d{width:705.591467pt;}
._37{width:722.372907pt;}
._20{width:723.307695pt;}
._24{width:727.082652pt;}
._2b{width:737.664000pt;}
._49{width:744.362660pt;}
._48{width:798.677327pt;}
._4b{width:855.082660pt;}
._45{width:858.508793pt;}
._34{width:939.093321pt;}
._30{width:942.519454pt;}
._35{width:1110.882133pt;}
.fs18{font-size:26.133333pt;}
.fs11{font-size:27.253333pt;}
.fse{font-size:28.000000pt;}
.fs17{font-size:29.866667pt;}
.fs10{font-size:36.586667pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:38.933333pt;}
.fs16{font-size:39.735467pt;}
.fsd{font-size:40.000000pt;}
.fs7{font-size:41.066666pt;}
.fsb{font-size:42.666667pt;}
.fs13{font-size:48.000000pt;}
.fsf{font-size:49.066666pt;}
.fs14{font-size:49.066667pt;}
.fs9{font-size:52.266667pt;}
.fs15{font-size:52.284267pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:66.292800pt;}
.fsa{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y19b{bottom:0.134533pt;}
.y51{bottom:4.497658pt;}
.y19e{bottom:14.270507pt;}
.y198{bottom:16.226653pt;}
.y50{bottom:24.385498pt;}
.y19a{bottom:32.570400pt;}
.y19d{bottom:33.650640pt;}
.y5{bottom:59.133337pt;}
.y4a{bottom:67.374933pt;}
.y49{bottom:78.042933pt;}
.y4{bottom:86.333337pt;}
.yf8{bottom:88.408532pt;}
.y16e{bottom:88.409598pt;}
.y48{bottom:88.710933pt;}
.y30f{bottom:88.877848pt;}
.y2a1{bottom:89.464532pt;}
.y195{bottom:89.472533pt;}
.y1eb{bottom:89.474130pt;}
.y144{bottom:89.475738pt;}
.y101{bottom:89.963195pt;}
.y282{bottom:91.332131pt;}
.y2c8{bottom:92.707469pt;}
.yaf{bottom:96.640798pt;}
.y87{bottom:98.840800pt;}
.yf7{bottom:99.076265pt;}
.y47{bottom:99.378933pt;}
.y30e{bottom:100.877848pt;}
.y25c{bottom:102.098133pt;}
.y16d{bottom:102.970662pt;}
.y127{bottom:103.439198pt;}
.y2c7{bottom:104.707469pt;}
.y1b7{bottom:105.431467pt;}
.y2a0{bottom:108.332798pt;}
.y194{bottom:108.340800pt;}
.y1ea{bottom:108.342396pt;}
.y143{bottom:108.344004pt;}
.y100{bottom:108.831462pt;}
.y46{bottom:110.046933pt;}
.y281{bottom:110.200398pt;}
.y30d{bottom:112.877848pt;}
.yf6{bottom:113.637329pt;}
.yae{bottom:115.496271pt;}
.y2c6{bottom:116.707469pt;}
.y86{bottom:117.702675pt;}
.y239{bottom:119.907471pt;}
.y45{bottom:120.714933pt;}
.y25b{bottom:120.964803pt;}
.y126{bottom:122.307465pt;}
.y21{bottom:123.790666pt;}
.y1b6{bottom:124.288528pt;}
.y30c{bottom:124.877848pt;}
.yf5{bottom:124.896800pt;}
.y142{bottom:127.201065pt;}
.y1e9{bottom:127.202673pt;}
.y193{bottom:127.209067pt;}
.yff{bottom:127.698130pt;}
.y2c5{bottom:128.707469pt;}
.y280{bottom:129.068665pt;}
.y44{bottom:131.382933pt;}
.yad{bottom:134.364537pt;}
.yf4{bottom:135.564533pt;}
.y85{bottom:136.570941pt;}
.ycf{bottom:136.769325pt;}
.y30b{bottom:136.877848pt;}
.y238{bottom:138.774129pt;}
.y25a{bottom:139.815462pt;}
.y125{bottom:141.174133pt;}
.y1b5{bottom:143.156795pt;}
.y141{bottom:146.069332pt;}
.y1e8{bottom:146.070940pt;}
.y192{bottom:146.077333pt;}
.y27f{bottom:147.932127pt;}
.y30a{bottom:148.877848pt;}
.yf3{bottom:150.124532pt;}
.yac{bottom:153.232804pt;}
.y84{bottom:155.439208pt;}
.yce{bottom:155.637592pt;}
.y165{bottom:156.494932pt;}
.y237{bottom:157.639200pt;}
.y259{bottom:158.683728pt;}
.y124{bottom:160.040802pt;}
.y309{bottom:160.877848pt;}
.yf2{bottom:161.380804pt;}
.y1b4{bottom:162.025062pt;}
.y20d{bottom:163.294940pt;}
.y140{bottom:164.937598pt;}
.y1e7{bottom:164.939206pt;}
.y191{bottom:164.940800pt;}
.yfe{bottom:165.896799pt;}
.y27e{bottom:166.800394pt;}
.yf1{bottom:172.048537pt;}
.yab{bottom:172.101071pt;}
.y308{bottom:172.877848pt;}
.y83{bottom:174.307475pt;}
.ycd{bottom:174.505858pt;}
.y37{bottom:174.538793pt;}
.y18{bottom:175.052000pt;}
.y164{bottom:175.363199pt;}
.y236{bottom:176.507467pt;}
.y258{bottom:177.551995pt;}
.y123{bottom:178.907471pt;}
.y1b3{bottom:180.893328pt;}
.y20c{bottom:182.163207pt;}
.yf0{bottom:182.716271pt;}
.y13f{bottom:183.805865pt;}
.y1e6{bottom:183.807473pt;}
.y190{bottom:183.809067pt;}
.yfd{bottom:184.765066pt;}
.y307{bottom:184.877848pt;}
.y27d{bottom:185.668660pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yaa{bottom:190.969337pt;}
.y2c4{bottom:192.907471pt;}
.y82{bottom:193.172525pt;}
.ycc{bottom:193.374125pt;}
.yef{bottom:193.384004pt;}
.y36{bottom:193.407059pt;}
.y163{bottom:194.231466pt;}
.y235{bottom:195.369341pt;}
.y257{bottom:196.420262pt;}
.y306{bottom:196.877848pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1b2{bottom:199.761595pt;}
.y20b{bottom:201.031474pt;}
.y13e{bottom:202.674132pt;}
.y1e5{bottom:202.675740pt;}
.y18f{bottom:202.677333pt;}
.yfc{bottom:203.633332pt;}
.y27c{bottom:204.533731pt;}
.yee{bottom:207.945068pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y305{bottom:208.877848pt;}
.ya9{bottom:209.837604pt;}
.y81{bottom:212.040792pt;}
.ycb{bottom:212.232804pt;}
.y35{bottom:212.275326pt;}
.y162{bottom:213.094928pt;}
.y234{bottom:214.237608pt;}
.y256{bottom:215.288528pt;}
.y2c3{bottom:216.907471pt;}
.y1b1{bottom:218.629862pt;}
.yed{bottom:219.204540pt;}
.y20a{bottom:219.898132pt;}
.y304{bottom:220.877848pt;}
.y18e{bottom:221.537600pt;}
.y13d{bottom:221.542398pt;}
.y1e4{bottom:221.544006pt;}
.yfb{bottom:222.501599pt;}
.y27b{bottom:223.401998pt;}
.ya8{bottom:228.705871pt;}
.y2c2{bottom:228.907471pt;}
.y80{bottom:230.907471pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yca{bottom:231.101071pt;}
.y34{bottom:231.143593pt;}
.y161{bottom:231.963195pt;}
.y303{bottom:232.877848pt;}
.y233{bottom:233.105875pt;}
.yec{bottom:233.765605pt;}
.y255{bottom:234.156795pt;}
.y1b0{bottom:237.498128pt;}
.y209{bottom:238.763203pt;}
.y1e3{bottom:240.397861pt;}
.y18d{bottom:240.405867pt;}
.y13c{bottom:240.410665pt;}
.y2c1{bottom:240.907471pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y27a{bottom:242.265338pt;}
.y302{bottom:244.877848pt;}
.ya7{bottom:247.574137pt;}
.y122{bottom:249.766129pt;}
.yc9{bottom:249.969337pt;}
.y33{bottom:250.011859pt;}
.y160{bottom:250.826658pt;}
.y232{bottom:251.974141pt;}
.y254{bottom:253.025062pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y1af{bottom:256.363199pt;}
.y301{bottom:256.877848pt;}
.y208{bottom:257.631470pt;}
.yfa{bottom:258.029866pt;}
.y1e2{bottom:259.266127pt;}
.y29f{bottom:259.270932pt;}
.y13b{bottom:259.272540pt;}
.y18c{bottom:259.274133pt;}
.y2c0{bottom:260.907471pt;}
.y279{bottom:261.133605pt;}
.ya6{bottom:266.440796pt;}
.y121{bottom:268.634396pt;}
.yc8{bottom:268.837604pt;}
.y300{bottom:268.877848pt;}
.y32{bottom:268.880126pt;}
.y15f{bottom:269.694924pt;}
.y231{bottom:270.836271pt;}
.y253{bottom:271.893328pt;}
.y1ae{bottom:275.231466pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y207{bottom:276.498128pt;}
.yf9{bottom:276.898132pt;}
.y1e1{bottom:278.134394pt;}
.y29e{bottom:278.139198pt;}
.y13a{bottom:278.140806pt;}
.y18b{bottom:278.142400pt;}
.y278{bottom:280.001872pt;}
.y2ff{bottom:280.877848pt;}
.ya5{bottom:285.285063pt;}
.y7f{bottom:285.305867pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y120{bottom:287.502663pt;}
.yc7{bottom:287.705871pt;}
.y31{bottom:287.748393pt;}
.y15e{bottom:288.563191pt;}
.y230{bottom:289.704537pt;}
.y252{bottom:290.761595pt;}
.y2fe{bottom:292.877848pt;}
.y1ad{bottom:294.088536pt;}
.y1e0{bottom:297.002661pt;}
.y29d{bottom:297.007465pt;}
.y139{bottom:297.009073pt;}
.y18a{bottom:297.010667pt;}
.y2bf{bottom:298.640788pt;}
.y277{bottom:298.859085pt;}
.ya4{bottom:304.153329pt;}
.y7e{bottom:304.174133pt;}
.y2fd{bottom:304.877848pt;}
.yeb{bottom:305.907471pt;}
.y11f{bottom:306.370929pt;}
.yc6{bottom:306.574137pt;}
.y30{bottom:306.602247pt;}
.y15d{bottom:307.431458pt;}
.y22f{bottom:308.572804pt;}
.yf{bottom:309.452000pt;}
.y251{bottom:309.629862pt;}
.y2be{bottom:310.640788pt;}
.y1ac{bottom:312.956803pt;}
.y206{bottom:314.221878pt;}
.y1df{bottom:315.870927pt;}
.y29c{bottom:315.875732pt;}
.y189{bottom:315.877333pt;}
.y138{bottom:315.877340pt;}
.y2fc{bottom:316.877848pt;}
.y276{bottom:317.727352pt;}
.ya3{bottom:323.021596pt;}
.y7d{bottom:323.039204pt;}
.yea{bottom:324.769620pt;}
.y102{bottom:325.151326pt;}
.y11e{bottom:325.239196pt;}
.yc5{bottom:325.440796pt;}
.y2f{bottom:325.470514pt;}
.y15c{bottom:326.288528pt;}
.y250{bottom:328.498128pt;}
.y2fb{bottom:328.877848pt;}
.y2bd{bottom:330.640788pt;}
.y1ab{bottom:331.825070pt;}
.y205{bottom:333.090145pt;}
.y1de{bottom:334.739194pt;}
.y188{bottom:334.740800pt;}
.y137{bottom:334.742410pt;}
.y29b{bottom:334.743998pt;}
.y275{bottom:336.595618pt;}
.y2fa{bottom:340.877848pt;}
.ya2{bottom:341.889863pt;}
.y7c{bottom:341.907471pt;}
.y2bc{bottom:342.640788pt;}
.ye9{bottom:343.637887pt;}
.ye{bottom:343.809333pt;}
.y22e{bottom:344.101071pt;}
.y11d{bottom:344.107463pt;}
.yc4{bottom:344.307454pt;}
.y2e{bottom:344.338781pt;}
.y15b{bottom:345.156795pt;}
.y24f{bottom:347.355219pt;}
.y1aa{bottom:350.693336pt;}
.y204{bottom:351.958411pt;}
.y2f9{bottom:352.877848pt;}
.y1dd{bottom:353.607461pt;}
.y187{bottom:353.609067pt;}
.y136{bottom:353.610677pt;}
.y2bb{bottom:354.640788pt;}
.y274{bottom:355.463885pt;}
.ya1{bottom:360.758129pt;}
.y7b{bottom:360.774129pt;}
.ye8{bottom:362.506154pt;}
.yd{bottom:362.706666pt;}
.y11c{bottom:362.934437pt;}
.y22d{bottom:362.969337pt;}
.y2d{bottom:363.207047pt;}
.y15a{bottom:364.025062pt;}
.y2f8{bottom:364.877848pt;}
.y24e{bottom:366.223486pt;}
.y1a9{bottom:369.561603pt;}
.y203{bottom:370.826678pt;}
.y29a{bottom:372.472552pt;}
.y1dc{bottom:372.475727pt;}
.y186{bottom:372.477333pt;}
.y135{bottom:372.477336pt;}
.y273{bottom:374.332152pt;}
.y2ba{bottom:374.640788pt;}
.y2f7{bottom:376.877848pt;}
.ya0{bottom:379.626396pt;}
.y7a{bottom:379.632788pt;}
.ye7{bottom:381.374420pt;}
.y11b{bottom:381.802703pt;}
.y22c{bottom:381.837604pt;}
.y2c{bottom:382.075314pt;}
.y159{bottom:382.893328pt;}
.y24d{bottom:385.091753pt;}
.y2b9{bottom:386.640788pt;}
.y1a8{bottom:388.429870pt;}
.y2f6{bottom:388.877848pt;}
.y202{bottom:389.694945pt;}
.y185{bottom:391.339213pt;}
.y299{bottom:391.340819pt;}
.y1db{bottom:391.343994pt;}
.y272{bottom:393.200418pt;}
.y9f{bottom:398.494663pt;}
.yc3{bottom:398.497879pt;}
.y79{bottom:398.501054pt;}
.y2b8{bottom:398.640788pt;}
.ye6{bottom:400.242687pt;}
.y11a{bottom:400.670970pt;}
.y22b{bottom:400.705871pt;}
.y2f5{bottom:400.877848pt;}
.y2b{bottom:400.943581pt;}
.y158{bottom:401.761595pt;}
.y24c{bottom:403.960019pt;}
.y1a7{bottom:407.298136pt;}
.y201{bottom:408.563211pt;}
.y184{bottom:410.207480pt;}
.y298{bottom:410.209085pt;}
.y1da{bottom:410.210653pt;}
.y2b7{bottom:410.640788pt;}
.y271{bottom:412.068685pt;}
.y2f4{bottom:412.877848pt;}
.y9e{bottom:417.362929pt;}
.yc2{bottom:417.366146pt;}
.y78{bottom:417.369321pt;}
.y134{bottom:417.370929pt;}
.y119{bottom:419.539237pt;}
.y22a{bottom:419.574137pt;}
.y2a{bottom:419.811847pt;}
.y157{bottom:420.629862pt;}
.y2b6{bottom:422.640788pt;}
.y24b{bottom:422.828286pt;}
.y2f3{bottom:424.877848pt;}
.y1a6{bottom:426.160011pt;}
.y200{bottom:427.431478pt;}
.y1d9{bottom:429.070919pt;}
.y183{bottom:429.075747pt;}
.y297{bottom:429.077352pt;}
.y270{bottom:430.925613pt;}
.y2b5{bottom:434.640788pt;}
.ye5{bottom:435.770954pt;}
.y9d{bottom:436.231196pt;}
.yc1{bottom:436.234412pt;}
.y77{bottom:436.237588pt;}
.y133{bottom:436.239196pt;}
.y2f2{bottom:436.877848pt;}
.y118{bottom:438.407503pt;}
.y229{bottom:438.440796pt;}
.y29{bottom:438.680114pt;}
.y156{bottom:439.498128pt;}
.y24a{bottom:441.696553pt;}
.y1a5{bottom:445.028278pt;}
.y1ff{bottom:446.290136pt;}
.y2b4{bottom:446.640788pt;}
.yc{bottom:446.990669pt;}
.y296{bottom:447.936010pt;}
.y1d8{bottom:447.939186pt;}
.y182{bottom:447.944013pt;}
.y2f1{bottom:448.877848pt;}
.y26f{bottom:449.793880pt;}
.ye4{bottom:454.639220pt;}
.y9c{bottom:455.099463pt;}
.yc0{bottom:455.102679pt;}
.y76{bottom:455.105854pt;}
.y132{bottom:455.107463pt;}
.y117{bottom:457.275770pt;}
.y228{bottom:457.280238pt;}
.y28{bottom:457.548381pt;}
.y155{bottom:458.358395pt;}
.y2b3{bottom:458.640788pt;}
.y249{bottom:460.564819pt;}
.y2f0{bottom:460.877848pt;}
.yb{bottom:462.990669pt;}
.y1a4{bottom:463.896545pt;}
.y1fe{bottom:465.158403pt;}
.y295{bottom:466.804277pt;}
.y1d7{bottom:466.807453pt;}
.y181{bottom:466.809067pt;}
.y26e{bottom:468.662147pt;}
.y2b2{bottom:470.640788pt;}
.y2ef{bottom:472.877848pt;}
.ye3{bottom:473.507487pt;}
.y131{bottom:473.954905pt;}
.y9b{bottom:473.967729pt;}
.ybf{bottom:473.970946pt;}
.y75{bottom:473.974121pt;}
.y116{bottom:476.144037pt;}
.y227{bottom:476.148505pt;}
.y27{bottom:476.415080pt;}
.y154{bottom:477.226662pt;}
.ya{bottom:478.990666pt;}
.y248{bottom:479.429870pt;}
.y2b1{bottom:482.640788pt;}
.y1a3{bottom:482.764811pt;}
.y1fd{bottom:484.026670pt;}
.y2ee{bottom:484.877848pt;}
.y294{bottom:485.672544pt;}
.y180{bottom:485.674147pt;}
.y1d6{bottom:485.675719pt;}
.y26d{bottom:487.530413pt;}
.ye2{bottom:492.370929pt;}
.y130{bottom:492.823171pt;}
.y74{bottom:492.834388pt;}
.y9a{bottom:492.835996pt;}
.ybe{bottom:492.839212pt;}
.y2b0{bottom:494.640788pt;}
.y9{bottom:494.990666pt;}
.y115{bottom:495.012303pt;}
.y226{bottom:495.016771pt;}
.y26{bottom:495.281738pt;}
.y153{bottom:496.094928pt;}
.y2ed{bottom:496.877848pt;}
.y247{bottom:498.298136pt;}
.y1a2{bottom:501.626686pt;}
.y1fc{bottom:502.894936pt;}
.y293{bottom:504.540810pt;}
.y17f{bottom:504.542413pt;}
.y1d5{bottom:504.543986pt;}
.y26c{bottom:506.398680pt;}
.y2af{bottom:506.640788pt;}
.y2ec{bottom:508.877848pt;}
.ye1{bottom:511.239196pt;}
.y12f{bottom:511.691438pt;}
.y73{bottom:511.702654pt;}
.y99{bottom:511.704263pt;}
.ybd{bottom:511.707479pt;}
.y114{bottom:513.880570pt;}
.y225{bottom:513.885038pt;}
.y152{bottom:514.963195pt;}
.y246{bottom:517.155187pt;}
.y2ae{bottom:518.640788pt;}
.y1a1{bottom:520.494953pt;}
.y2eb{bottom:520.877848pt;}
.y1fb{bottom:521.763203pt;}
.y292{bottom:523.409077pt;}
.y1d4{bottom:523.410685pt;}
.y17e{bottom:523.412013pt;}
.y26b{bottom:525.266947pt;}
.ye0{bottom:530.107463pt;}
.y12e{bottom:530.559705pt;}
.y72{bottom:530.570921pt;}
.y98{bottom:530.572529pt;}
.ybc{bottom:530.574137pt;}
.y2ad{bottom:530.640788pt;}
.y42{bottom:531.415202pt;}
.y113{bottom:532.748837pt;}
.y224{bottom:532.753305pt;}
.y2ea{bottom:532.877848pt;}
.y151{bottom:533.831462pt;}
.y245{bottom:536.023453pt;}
.y1a0{bottom:539.363219pt;}
.y1fa{bottom:540.631470pt;}
.y1d3{bottom:542.269344pt;}
.y291{bottom:542.277344pt;}
.y2ac{bottom:542.640788pt;}
.y26a{bottom:544.135213pt;}
.y2e9{bottom:544.877848pt;}
.ydf{bottom:548.967729pt;}
.y12d{bottom:549.427971pt;}
.y71{bottom:549.439188pt;}
.y97{bottom:549.440796pt;}
.y112{bottom:551.617103pt;}
.y223{bottom:551.621571pt;}
.y150{bottom:552.693336pt;}
.y41{bottom:552.748535pt;}
.y244{bottom:554.891720pt;}
.y2e8{bottom:556.877848pt;}
.y19f{bottom:558.231486pt;}
.y1f9{bottom:559.498128pt;}
.y1d2{bottom:561.137610pt;}
.y290{bottom:561.144002pt;}
.y2ab{bottom:562.640788pt;}
.y269{bottom:562.998818pt;}
.yde{bottom:567.835996pt;}
.y12c{bottom:568.296238pt;}
.y96{bottom:568.305887pt;}
.y70{bottom:568.307454pt;}
.y40{bottom:568.748535pt;}
.y2e7{bottom:568.877848pt;}
.y111{bottom:570.485370pt;}
.y222{bottom:570.489838pt;}
.y197{bottom:570.577347pt;}
.y14f{bottom:571.561603pt;}
.y243{bottom:573.759987pt;}
.y8{bottom:573.786667pt;}
.y2aa{bottom:574.640788pt;}
.y1f8{bottom:578.356787pt;}
.y1d1{bottom:580.005877pt;}
.y2e6{bottom:580.877848pt;}
.y268{bottom:581.867085pt;}
.y3f{bottom:584.748535pt;}
.y199{bottom:584.847853pt;}
.y196{bottom:584.877480pt;}
.y2a9{bottom:586.640788pt;}
.ydd{bottom:586.704263pt;}
.y19c{bottom:586.804000pt;}
.y12b{bottom:587.164505pt;}
.y6f{bottom:587.169329pt;}
.y95{bottom:587.174154pt;}
.y110{bottom:589.353637pt;}
.y221{bottom:589.358105pt;}
.y14e{bottom:590.429870pt;}
.y242{bottom:592.628253pt;}
.y7{bottom:592.685334pt;}
.y2e5{bottom:592.877848pt;}
.y1f7{bottom:597.225053pt;}
.y1d0{bottom:598.874144pt;}
.y267{bottom:600.735352pt;}
.y3e{bottom:600.748535pt;}
.y2e4{bottom:604.877848pt;}
.y5a{bottom:605.215047pt;}
.y1b9{bottom:605.410685pt;}
.ydc{bottom:605.572529pt;}
.y28f{bottom:606.027988pt;}
.y12a{bottom:606.032771pt;}
.y94{bottom:606.035988pt;}
.y6e{bottom:606.037596pt;}
.y2a8{bottom:606.640788pt;}
.y10f{bottom:608.221903pt;}
.y220{bottom:608.226371pt;}
.y14d{bottom:609.298136pt;}
.y241{bottom:611.496520pt;}
.y1f6{bottom:616.093320pt;}
.y3d{bottom:616.748535pt;}
.y2e3{bottom:616.877848pt;}
.y1cf{bottom:617.742410pt;}
.y2a7{bottom:618.640788pt;}
.y266{bottom:619.598794pt;}
.y59{bottom:621.215047pt;}
.ydb{bottom:624.437620pt;}
.y1cb{bottom:624.597341pt;}
.y28e{bottom:624.896254pt;}
.y129{bottom:624.901038pt;}
.y93{bottom:624.904254pt;}
.y6d{bottom:624.905863pt;}
.y21f{bottom:627.094638pt;}
.y17d{bottom:627.840813pt;}
.y14c{bottom:628.160011pt;}
.y2e2{bottom:628.877848pt;}
.y58{bottom:629.215047pt;}
.y240{bottom:630.364787pt;}
.y2a6{bottom:630.640788pt;}
.y3c{bottom:632.748535pt;}
.y1f5{bottom:634.961587pt;}
.y1ce{bottom:636.610677pt;}
.y265{bottom:638.467060pt;}
.y1ca{bottom:640.817350pt;}
.y2e1{bottom:640.877848pt;}
.y57{bottom:641.215047pt;}
.y2a5{bottom:642.640788pt;}
.yda{bottom:643.305887pt;}
.y10e{bottom:643.750170pt;}
.y28d{bottom:643.764521pt;}
.y128{bottom:643.769305pt;}
.y92{bottom:643.772521pt;}
.y6c{bottom:643.774129pt;}
.y6{bottom:645.598667pt;}
.y21e{bottom:645.962905pt;}
.y17c{bottom:646.709080pt;}
.y14b{bottom:647.028278pt;}
.y3b{bottom:648.748535pt;}
.y23f{bottom:649.229878pt;}
.y2e0{bottom:652.877848pt;}
.y56{bottom:653.215047pt;}
.y1f4{bottom:653.829853pt;}
.y1cd{bottom:655.475727pt;}
.y1c9{bottom:656.945350pt;}
.y264{bottom:657.335327pt;}
.yd9{bottom:662.174154pt;}
.y10d{bottom:662.618437pt;}
.ybb{bottom:662.624788pt;}
.y28c{bottom:662.632788pt;}
.y6b{bottom:662.637571pt;}
.y2a4{bottom:662.639220pt;}
.y91{bottom:662.640788pt;}
.y3a{bottom:664.748535pt;}
.y21d{bottom:664.831171pt;}
.y2df{bottom:664.877848pt;}
.y17b{bottom:665.577347pt;}
.y14a{bottom:665.896545pt;}
.y23e{bottom:668.098145pt;}
.y3{bottom:668.977329pt;}
.y55{bottom:669.215047pt;}
.y1f3{bottom:672.698120pt;}
.y1c8{bottom:673.073350pt;}
.y1cc{bottom:674.343994pt;}
.y263{bottom:676.201864pt;}
.y2de{bottom:676.877848pt;}
.y39{bottom:680.748535pt;}
.yd8{bottom:681.041839pt;}
.y10c{bottom:681.486703pt;}
.yba{bottom:681.493054pt;}
.y28b{bottom:681.501054pt;}
.y90{bottom:681.504271pt;}
.y6a{bottom:681.505838pt;}
.y2a3{bottom:681.507487pt;}
.y21c{bottom:683.699438pt;}
.y54{bottom:684.215088pt;}
.y17a{bottom:684.431227pt;}
.y149{bottom:684.764811pt;}
.y23d{bottom:686.961627pt;}
.y2dd{bottom:688.877848pt;}
.y1c7{bottom:689.212016pt;}
.y1f2{bottom:691.564779pt;}
.y53{bottom:696.215088pt;}
.y10b{bottom:700.354970pt;}
.yb9{bottom:700.361321pt;}
.y28a{bottom:700.369321pt;}
.y2a2{bottom:700.370970pt;}
.y8f{bottom:700.372537pt;}
.y69{bottom:700.374105pt;}
.y38{bottom:700.748535pt;}
.y2dc{bottom:700.877848pt;}
.y21b{bottom:702.567705pt;}
.y179{bottom:703.299493pt;}
.y148{bottom:703.626645pt;}
.y311{bottom:704.877848pt;}
.y1c6{bottom:705.340016pt;}
.y23c{bottom:705.829894pt;}
.y52{bottom:708.215088pt;}
.y2db{bottom:712.877848pt;}
.y310{bottom:716.877848pt;}
.y10a{bottom:719.223237pt;}
.yb8{bottom:719.229588pt;}
.y289{bottom:719.237588pt;}
.y68{bottom:719.239237pt;}
.y8e{bottom:719.240804pt;}
.y21a{bottom:721.435971pt;}
.y1c5{bottom:721.468016pt;}
.y178{bottom:722.167760pt;}
.y284{bottom:722.299978pt;}
.y147{bottom:722.494912pt;}
.y23b{bottom:724.698161pt;}
.y2da{bottom:724.877848pt;}
.y2d9{bottom:736.877848pt;}
.y1c4{bottom:737.596016pt;}
.y109{bottom:738.091503pt;}
.yb7{bottom:738.097854pt;}
.yd7{bottom:738.102638pt;}
.y288{bottom:738.105854pt;}
.y67{bottom:738.107503pt;}
.y219{bottom:740.304238pt;}
.y177{bottom:741.036027pt;}
.y283{bottom:741.143962pt;}
.y146{bottom:741.363179pt;}
.y23a{bottom:743.564779pt;}
.y20e{bottom:746.477295pt;}
.y2d8{bottom:748.877848pt;}
.y1c3{bottom:753.734683pt;}
.y108{bottom:756.959770pt;}
.yb6{bottom:756.966121pt;}
.yd6{bottom:756.970905pt;}
.y66{bottom:756.972554pt;}
.y287{bottom:756.974121pt;}
.y286{bottom:757.404016pt;}
.y218{bottom:759.172505pt;}
.y1ed{bottom:759.364502pt;}
.y25{bottom:759.715088pt;}
.y176{bottom:759.904293pt;}
.y145{bottom:760.231445pt;}
.y2d7{bottom:760.877848pt;}
.y211{bottom:761.532016pt;}
.y1c2{bottom:765.734683pt;}
.y2d6{bottom:772.877848pt;}
.y285{bottom:773.606683pt;}
.y1ec{bottom:774.477295pt;}
.y107{bottom:775.828037pt;}
.yb5{bottom:775.834388pt;}
.yd5{bottom:775.839171pt;}
.y65{bottom:775.840820pt;}
.y210{bottom:777.734683pt;}
.y217{bottom:778.040771pt;}
.y175{bottom:778.772560pt;}
.y2{bottom:781.661334pt;}
.y1c1{bottom:781.873350pt;}
.y2d5{bottom:784.877848pt;}
.y1f1{bottom:789.670683pt;}
.y20f{bottom:789.734683pt;}
.y262{bottom:793.254683pt;}
.y106{bottom:794.696303pt;}
.y64{bottom:794.701087pt;}
.yb4{bottom:794.702654pt;}
.y8d{bottom:794.705871pt;}
.yd4{bottom:794.707438pt;}
.y2d4{bottom:796.877848pt;}
.y216{bottom:796.907471pt;}
.y174{bottom:797.640827pt;}
.y1c0{bottom:798.001350pt;}
.y24{bottom:800.796805pt;}
.y1f0{bottom:805.873350pt;}
.y2d3{bottom:808.877848pt;}
.y261{bottom:809.457350pt;}
.y105{bottom:813.564570pt;}
.yd3{bottom:813.567705pt;}
.y63{bottom:813.569354pt;}
.yb3{bottom:813.570921pt;}
.y8c{bottom:813.574137pt;}
.y215{bottom:815.772521pt;}
.y173{bottom:816.509093pt;}
.y2d2{bottom:820.877848pt;}
.y16c{bottom:821.393350pt;}
.y1bf{bottom:821.905350pt;}
.y1ef{bottom:822.001350pt;}
.y260{bottom:825.596016pt;}
.y104{bottom:832.432837pt;}
.yd2{bottom:832.435971pt;}
.y62{bottom:832.437620pt;}
.yb2{bottom:832.439188pt;}
.y2d1{bottom:832.877848pt;}
.y214{bottom:834.640788pt;}
.y172{bottom:835.377360pt;}
.y23{bottom:835.452805pt;}
.y16b{bottom:837.596016pt;}
.y25f{bottom:841.724016pt;}
.y1be{bottom:843.100016pt;}
.y2d0{bottom:844.877848pt;}
.y1ee{bottom:845.905350pt;}
.y103{bottom:851.301103pt;}
.yd1{bottom:851.304238pt;}
.y61{bottom:851.305887pt;}
.yb1{bottom:851.307454pt;}
.y213{bottom:853.507487pt;}
.y16a{bottom:853.724016pt;}
.y171{bottom:854.243973pt;}
.y1bd{bottom:855.100016pt;}
.y2cf{bottom:856.877848pt;}
.y25e{bottom:857.862683pt;}
.y1{bottom:859.312000pt;}
.y1bc{bottom:867.100016pt;}
.y2ce{bottom:868.877848pt;}
.y169{bottom:869.862683pt;}
.y22{bottom:870.108805pt;}
.yb0{bottom:870.169370pt;}
.yd0{bottom:870.172505pt;}
.y60{bottom:870.174154pt;}
.y212{bottom:872.377637pt;}
.y1bb{bottom:879.100016pt;}
.y2cd{bottom:880.877848pt;}
.y25d{bottom:881.766683pt;}
.y5f{bottom:889.037637pt;}
.y8b{bottom:889.040771pt;}
.y1ba{bottom:891.100016pt;}
.y2cc{bottom:892.877848pt;}
.y168{bottom:893.766683pt;}
.y2cb{bottom:904.877848pt;}
.y167{bottom:905.766683pt;}
.y5e{bottom:907.905903pt;}
.y170{bottom:907.907467pt;}
.y1b8{bottom:912.713848pt;}
.y2ca{bottom:916.877848pt;}
.y4b{bottom:920.265218pt;}
.y43{bottom:920.666829pt;}
.y5d{bottom:926.774170pt;}
.y16f{bottom:926.774173pt;}
.y166{bottom:927.377848pt;}
.y2c9{bottom:928.877848pt;}
.y4f{bottom:972.822673pt;}
.y4e{bottom:975.375182pt;}
.y4d{bottom:988.708515pt;}
.y88{bottom:1001.355225pt;}
.y5b{bottom:1001.355306pt;}
.y8a{bottom:1001.561768pt;}
.y4c{bottom:1001.711182pt;}
.y89{bottom:1002.044515pt;}
.y5c{bottom:1002.048639pt;}
.h1a{height:24.724000pt;}
.h53{height:24.878933pt;}
.h32{height:25.318347pt;}
.h4b{height:27.814827pt;}
.h7{height:28.560000pt;}
.h13{height:32.965333pt;}
.h19{height:35.320000pt;}
.h4e{height:35.541333pt;}
.h33{height:36.169067pt;}
.h49{height:36.598987pt;}
.h12{height:36.922667pt;}
.h3f{height:37.674667pt;}
.h61{height:38.080000pt;}
.h48{height:38.400000pt;}
.h17{height:38.586667pt;}
.h60{height:38.920000pt;}
.h16{height:40.618667pt;}
.h15{height:40.661333pt;}
.h6{height:40.800000pt;}
.h3d{height:41.514667pt;}
.h14{height:41.984000pt;}
.h34{height:42.197333pt;}
.h4d{height:42.384000pt;}
.h3{height:42.840000pt;}
.h50{height:43.369470pt;}
.h4a{height:44.423573pt;}
.h54{height:46.126998pt;}
.hf{height:47.093333pt;}
.h3c{height:47.472000pt;}
.h2c{height:47.692799pt;}
.h23{height:47.741866pt;}
.h40{height:47.741867pt;}
.h30{height:48.555733pt;}
.h56{height:48.562329pt;}
.h31{height:48.573769pt;}
.h57{height:48.664598pt;}
.h35{height:48.714471pt;}
.h2{height:48.960000pt;}
.hd{height:49.653333pt;}
.h5d{height:49.659196pt;}
.h1d{height:49.659603pt;}
.h22{height:49.659685pt;}
.h59{height:49.659725pt;}
.h43{height:49.659733pt;}
.h24{height:49.659766pt;}
.h5b{height:49.665547pt;}
.h1b{height:49.665873pt;}
.h42{height:49.666080pt;}
.h3b{height:49.666117pt;}
.h45{height:49.666133pt;}
.h5e{height:49.666158pt;}
.h1e{height:49.666198pt;}
.h5c{height:49.666687pt;}
.h58{height:49.671451pt;}
.h28{height:49.672468pt;}
.h44{height:49.672480pt;}
.h25{height:49.672509pt;}
.h1f{height:49.672631pt;}
.h1c{height:49.678738pt;}
.h2f{height:49.678901pt;}
.h46{height:49.678933pt;}
.h20{height:49.679064pt;}
.h21{height:49.685333pt;}
.h5a{height:49.691603pt;}
.h4c{height:49.691685pt;}
.h38{height:49.691725pt;}
.h39{height:49.691766pt;}
.h36{height:49.691929pt;}
.h27{height:49.698117pt;}
.h5f{height:49.704468pt;}
.h41{height:49.704480pt;}
.h51{height:49.704550pt;}
.he{height:49.704631pt;}
.h29{height:49.717333pt;}
.h37{height:49.730198pt;}
.h26{height:49.742982pt;}
.h47{height:50.666667pt;}
.h18{height:50.713992pt;}
.h10{height:51.893333pt;}
.hc{height:54.329067pt;}
.h2d{height:55.663909pt;}
.h55{height:55.663990pt;}
.h2b{height:55.664234pt;}
.h2a{height:55.670179pt;}
.h2e{height:55.676774pt;}
.h3a{height:55.683207pt;}
.h52{height:55.695990pt;}
.hb{height:59.728337pt;}
.h11{height:68.570667pt;}
.h5{height:69.360000pt;}
.h4f{height:85.674667pt;}
.h3e{height:89.514667pt;}
.h4{height:105.826671pt;}
.ha{height:121.856000pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:197.059998pt;}
.w5{width:412.373333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.295573pt;}
.xd{left:60.693926pt;}
.x5{left:75.496002pt;}
.xa{left:83.317602pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xf{left:156.850403pt;}
.x12{left:164.850403pt;}
.x10{left:167.512803pt;}
.x25{left:176.850403pt;}
.x4{left:180.874667pt;}
.x11{left:183.506403pt;}
.x19{left:196.808800pt;}
.x17{left:197.854267pt;}
.x18{left:203.396813pt;}
.x6{left:238.110270pt;}
.x8{left:246.777323pt;}
.x7{left:248.772670pt;}
.x1c{left:300.680547pt;}
.x1b{left:307.064947pt;}
.x13{left:318.866403pt;}
.x1f{left:379.871460pt;}
.x22{left:396.103736pt;}
.x1a{left:400.474000pt;}
.x3{left:404.408000pt;}
.x1e{left:409.641067pt;}
.x14{left:412.903736pt;}
.x21{left:472.318395pt;}
.x23{left:495.506403pt;}
.x1d{left:504.885867pt;}
.xb{left:521.950684pt;}
.x20{left:525.672933pt;}
.x24{left:575.399736pt;}
.x9{left:617.715454pt;}
.x16{left:621.463987pt;}
.x15{left:658.727453pt;}
.xe{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; }
  