
    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_95c44307d5603da0ee25ab6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_053acd636b19af941a10a519.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895000;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_ab33c2773e9c2bcab11faaf6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;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_f4ff63a295674584e6b266a1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900000;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_d2bc6a2cfd1d5f471bc6e55f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.697000;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_edf680c5072ea3ced906bc2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.451000;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_7e3f896843cad7873f51ee35.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a03f76afbdd9de69f4a8da28.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_92c49381802d15f5108b9995.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.843000;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_f9942f71667a40f5b35f8db4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854000;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_1bb6f45d76be3bebd40b69bb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.833000;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_e81858df04f335cb5b15a5c1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.773000;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_5279ce349c8e5939b03f8a8c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7140887787a22320cfd5d387.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.664000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_f12253696d4bdb0c0b02e5e3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.839000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.017439,0.249391,-0.249391,0.017439,0,0);-ms-transform:matrix(0.017439,0.249391,-0.249391,0.017439,0,0);-webkit-transform:matrix(0.017439,0.249391,-0.249391,0.017439,0,0);}
.m31{transform:matrix(0.233577,0.089116,-0.089116,0.233577,0,0);-ms-transform:matrix(0.233577,0.089116,-0.089116,0.233577,0,0);-webkit-transform:matrix(0.233577,0.089116,-0.089116,0.233577,0,0);}
.m28{transform:matrix(0.233659,0.088902,-0.088902,0.233659,0,0);-ms-transform:matrix(0.233659,0.088902,-0.088902,0.233659,0,0);-webkit-transform:matrix(0.233659,0.088902,-0.088902,0.233659,0,0);}
.m25{transform:matrix(0.233674,0.088861,-0.088861,0.233674,0,0);-ms-transform:matrix(0.233674,0.088861,-0.088861,0.233674,0,0);-webkit-transform:matrix(0.233674,0.088861,-0.088861,0.233674,0,0);}
.m2b{transform:matrix(0.233687,0.088828,-0.088828,0.233687,0,0);-ms-transform:matrix(0.233687,0.088828,-0.088828,0.233687,0,0);-webkit-transform:matrix(0.233687,0.088828,-0.088828,0.233687,0,0);}
.m2e{transform:matrix(0.233837,0.088433,-0.088433,0.233837,0,0);-ms-transform:matrix(0.233837,0.088433,-0.088433,0.233837,0,0);-webkit-transform:matrix(0.233837,0.088433,-0.088433,0.233837,0,0);}
.m19{transform:matrix(0.233932,0.088181,-0.088181,0.233932,0,0);-ms-transform:matrix(0.233932,0.088181,-0.088181,0.233932,0,0);-webkit-transform:matrix(0.233932,0.088181,-0.088181,0.233932,0,0);}
.m16{transform:matrix(0.234030,0.087919,-0.087919,0.234030,0,0);-ms-transform:matrix(0.234030,0.087919,-0.087919,0.234030,0,0);-webkit-transform:matrix(0.234030,0.087919,-0.087919,0.234030,0,0);}
.m13{transform:matrix(0.234051,0.087864,-0.087864,0.234051,0,0);-ms-transform:matrix(0.234051,0.087864,-0.087864,0.234051,0,0);-webkit-transform:matrix(0.234051,0.087864,-0.087864,0.234051,0,0);}
.m10{transform:matrix(0.234098,0.087740,-0.087740,0.234098,0,0);-ms-transform:matrix(0.234098,0.087740,-0.087740,0.234098,0,0);-webkit-transform:matrix(0.234098,0.087740,-0.087740,0.234098,0,0);}
.m1f{transform:matrix(0.234114,0.087696,-0.087696,0.234114,0,0);-ms-transform:matrix(0.234114,0.087696,-0.087696,0.234114,0,0);-webkit-transform:matrix(0.234114,0.087696,-0.087696,0.234114,0,0);}
.m1c{transform:matrix(0.234165,0.087559,-0.087559,0.234165,0,0);-ms-transform:matrix(0.234165,0.087559,-0.087559,0.234165,0,0);-webkit-transform:matrix(0.234165,0.087559,-0.087559,0.234165,0,0);}
.m22{transform:matrix(0.234196,0.087476,-0.087476,0.234196,0,0);-ms-transform:matrix(0.234196,0.087476,-0.087476,0.234196,0,0);-webkit-transform:matrix(0.234196,0.087476,-0.087476,0.234196,0,0);}
.md{transform:matrix(0.234203,0.087458,-0.087458,0.234203,0,0);-ms-transform:matrix(0.234203,0.087458,-0.087458,0.234203,0,0);-webkit-transform:matrix(0.234203,0.087458,-0.087458,0.234203,0,0);}
.m7{transform:matrix(0.234692,0.086138,-0.086138,0.234692,0,0);-ms-transform:matrix(0.234692,0.086138,-0.086138,0.234692,0,0);-webkit-transform:matrix(0.234692,0.086138,-0.086138,0.234692,0,0);}
.ma{transform:matrix(0.234754,0.085968,-0.085968,0.234754,0,0);-ms-transform:matrix(0.234754,0.085968,-0.085968,0.234754,0,0);-webkit-transform:matrix(0.234754,0.085968,-0.085968,0.234754,0,0);}
.m26{transform:matrix(0.234771,0.085922,-0.085922,0.234771,0,0);-ms-transform:matrix(0.234771,0.085922,-0.085922,0.234771,0,0);-webkit-transform:matrix(0.234771,0.085922,-0.085922,0.234771,0,0);}
.m4{transform:matrix(0.234794,0.085860,-0.085860,0.234794,0,0);-ms-transform:matrix(0.234794,0.085860,-0.085860,0.234794,0,0);-webkit-transform:matrix(0.234794,0.085860,-0.085860,0.234794,0,0);}
.m20{transform:matrix(0.235177,0.084804,-0.084804,0.235177,0,0);-ms-transform:matrix(0.235177,0.084804,-0.084804,0.235177,0,0);-webkit-transform:matrix(0.235177,0.084804,-0.084804,0.235177,0,0);}
.m2f{transform:matrix(0.235188,0.084775,-0.084775,0.235188,0,0);-ms-transform:matrix(0.235188,0.084775,-0.084775,0.235188,0,0);-webkit-transform:matrix(0.235188,0.084775,-0.084775,0.235188,0,0);}
.m29{transform:matrix(0.235205,0.084726,-0.084726,0.235205,0,0);-ms-transform:matrix(0.235205,0.084726,-0.084726,0.235205,0,0);-webkit-transform:matrix(0.235205,0.084726,-0.084726,0.235205,0,0);}
.m32{transform:matrix(0.235217,0.084694,-0.084694,0.235217,0,0);-ms-transform:matrix(0.235217,0.084694,-0.084694,0.235217,0,0);-webkit-transform:matrix(0.235217,0.084694,-0.084694,0.235217,0,0);}
.m1d{transform:matrix(0.235263,0.084564,-0.084564,0.235263,0,0);-ms-transform:matrix(0.235263,0.084564,-0.084564,0.235263,0,0);-webkit-transform:matrix(0.235263,0.084564,-0.084564,0.235263,0,0);}
.m23{transform:matrix(0.235265,0.084560,-0.084560,0.235265,0,0);-ms-transform:matrix(0.235265,0.084560,-0.084560,0.235265,0,0);-webkit-transform:matrix(0.235265,0.084560,-0.084560,0.235265,0,0);}
.me{transform:matrix(0.235272,0.084541,-0.084541,0.235272,0,0);-ms-transform:matrix(0.235272,0.084541,-0.084541,0.235272,0,0);-webkit-transform:matrix(0.235272,0.084541,-0.084541,0.235272,0,0);}
.m2c{transform:matrix(0.235285,0.084504,-0.084504,0.235285,0,0);-ms-transform:matrix(0.235285,0.084504,-0.084504,0.235285,0,0);-webkit-transform:matrix(0.235285,0.084504,-0.084504,0.235285,0,0);}
.m11{transform:matrix(0.235529,0.083821,-0.083821,0.235529,0,0);-ms-transform:matrix(0.235529,0.083821,-0.083821,0.235529,0,0);-webkit-transform:matrix(0.235529,0.083821,-0.083821,0.235529,0,0);}
.m14{transform:matrix(0.235571,0.083703,-0.083703,0.235571,0,0);-ms-transform:matrix(0.235571,0.083703,-0.083703,0.235571,0,0);-webkit-transform:matrix(0.235571,0.083703,-0.083703,0.235571,0,0);}
.m1a{transform:matrix(0.235578,0.083683,-0.083683,0.235578,0,0);-ms-transform:matrix(0.235578,0.083683,-0.083683,0.235578,0,0);-webkit-transform:matrix(0.235578,0.083683,-0.083683,0.235578,0,0);}
.m17{transform:matrix(0.235714,0.083301,-0.083301,0.235714,0,0);-ms-transform:matrix(0.235714,0.083301,-0.083301,0.235714,0,0);-webkit-transform:matrix(0.235714,0.083301,-0.083301,0.235714,0,0);}
.m8{transform:matrix(0.235753,0.083190,-0.083190,0.235753,0,0);-ms-transform:matrix(0.235753,0.083190,-0.083190,0.235753,0,0);-webkit-transform:matrix(0.235753,0.083190,-0.083190,0.235753,0,0);}
.m5{transform:matrix(0.235819,0.083003,-0.083003,0.235819,0,0);-ms-transform:matrix(0.235819,0.083003,-0.083003,0.235819,0,0);-webkit-transform:matrix(0.235819,0.083003,-0.083003,0.235819,0,0);}
.mb{transform:matrix(0.235839,0.082945,-0.082945,0.235839,0,0);-ms-transform:matrix(0.235839,0.082945,-0.082945,0.235839,0,0);-webkit-transform:matrix(0.235839,0.082945,-0.082945,0.235839,0,0);}
.m27{transform:matrix(0.236332,0.081531,-0.081531,0.236332,0,0);-ms-transform:matrix(0.236332,0.081531,-0.081531,0.236332,0,0);-webkit-transform:matrix(0.236332,0.081531,-0.081531,0.236332,0,0);}
.m2a{transform:matrix(0.236413,0.081297,-0.081297,0.236413,0,0);-ms-transform:matrix(0.236413,0.081297,-0.081297,0.236413,0,0);-webkit-transform:matrix(0.236413,0.081297,-0.081297,0.236413,0,0);}
.mf{transform:matrix(0.236506,0.081023,-0.081023,0.236506,0,0);-ms-transform:matrix(0.236506,0.081023,-0.081023,0.236506,0,0);-webkit-transform:matrix(0.236506,0.081023,-0.081023,0.236506,0,0);}
.m33{transform:matrix(0.236513,0.081004,-0.081004,0.236513,0,0);-ms-transform:matrix(0.236513,0.081004,-0.081004,0.236513,0,0);-webkit-transform:matrix(0.236513,0.081004,-0.081004,0.236513,0,0);}
.m30{transform:matrix(0.236524,0.080971,-0.080971,0.236524,0,0);-ms-transform:matrix(0.236524,0.080971,-0.080971,0.236524,0,0);-webkit-transform:matrix(0.236524,0.080971,-0.080971,0.236524,0,0);}
.m24{transform:matrix(0.236531,0.080952,-0.080952,0.236531,0,0);-ms-transform:matrix(0.236531,0.080952,-0.080952,0.236531,0,0);-webkit-transform:matrix(0.236531,0.080952,-0.080952,0.236531,0,0);}
.m1e{transform:matrix(0.236640,0.080632,-0.080632,0.236640,0,0);-ms-transform:matrix(0.236640,0.080632,-0.080632,0.236640,0,0);-webkit-transform:matrix(0.236640,0.080632,-0.080632,0.236640,0,0);}
.m2d{transform:matrix(0.236652,0.080596,-0.080596,0.236652,0,0);-ms-transform:matrix(0.236652,0.080596,-0.080596,0.236652,0,0);-webkit-transform:matrix(0.236652,0.080596,-0.080596,0.236652,0,0);}
.m21{transform:matrix(0.236660,0.080575,-0.080575,0.236660,0,0);-ms-transform:matrix(0.236660,0.080575,-0.080575,0.236660,0,0);-webkit-transform:matrix(0.236660,0.080575,-0.080575,0.236660,0,0);}
.m18{transform:matrix(0.236772,0.080244,-0.080244,0.236772,0,0);-ms-transform:matrix(0.236772,0.080244,-0.080244,0.236772,0,0);-webkit-transform:matrix(0.236772,0.080244,-0.080244,0.236772,0,0);}
.m12{transform:matrix(0.236793,0.080181,-0.080181,0.236793,0,0);-ms-transform:matrix(0.236793,0.080181,-0.080181,0.236793,0,0);-webkit-transform:matrix(0.236793,0.080181,-0.080181,0.236793,0,0);}
.m1b{transform:matrix(0.236851,0.080009,-0.080009,0.236851,0,0);-ms-transform:matrix(0.236851,0.080009,-0.080009,0.236851,0,0);-webkit-transform:matrix(0.236851,0.080009,-0.080009,0.236851,0,0);}
.m15{transform:matrix(0.236907,0.079844,-0.079844,0.236907,0,0);-ms-transform:matrix(0.236907,0.079844,-0.079844,0.236907,0,0);-webkit-transform:matrix(0.236907,0.079844,-0.079844,0.236907,0,0);}
.m9{transform:matrix(0.236933,0.079766,-0.079766,0.236933,0,0);-ms-transform:matrix(0.236933,0.079766,-0.079766,0.236933,0,0);-webkit-transform:matrix(0.236933,0.079766,-0.079766,0.236933,0,0);}
.m6{transform:matrix(0.236962,0.079682,-0.079682,0.236962,0,0);-ms-transform:matrix(0.236962,0.079682,-0.079682,0.236962,0,0);-webkit-transform:matrix(0.236962,0.079682,-0.079682,0.236962,0,0);}
.mc{transform:matrix(0.236970,0.079656,-0.079656,0.236970,0,0);-ms-transform:matrix(0.236970,0.079656,-0.079656,0.236970,0,0);-webkit-transform:matrix(0.236970,0.079656,-0.079656,0.236970,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-16.878000px;}
.v3{vertical-align:-8.370000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.094000px;}
.v1{vertical-align:21.696000px;}
.ls11{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000141px;}
.ls24{letter-spacing:0.000538px;}
.ls2d{letter-spacing:0.001739px;}
.lse{letter-spacing:0.002915px;}
.ls12{letter-spacing:0.004200px;}
.lsc{letter-spacing:0.006141px;}
.ls29{letter-spacing:2.033108px;}
.ls1d{letter-spacing:2.256538px;}
.ls6{letter-spacing:2.353217px;}
.ls7{letter-spacing:2.360735px;}
.ls4{letter-spacing:2.371909px;}
.lsa{letter-spacing:2.385487px;}
.lsb{letter-spacing:2.385746px;}
.ls5{letter-spacing:2.387740px;}
.ls3{letter-spacing:2.391030px;}
.ls8{letter-spacing:2.391527px;}
.ls18{letter-spacing:2.964877px;}
.ls20{letter-spacing:2.984525px;}
.ls27{letter-spacing:2.987675px;}
.ls28{letter-spacing:2.988017px;}
.ls19{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.988780px;}
.ls2{letter-spacing:2.989200px;}
.ls2f{letter-spacing:4.554538px;}
.ls2e{letter-spacing:4.560538px;}
.ls1e{letter-spacing:5.246525px;}
.ls23{letter-spacing:9.960538px;}
.ls26{letter-spacing:9.966538px;}
.ls2c{letter-spacing:14.109056px;}
.ls9{letter-spacing:14.348850px;}
.ls2b{letter-spacing:16.602538px;}
.ls1b{letter-spacing:17.789108px;}
.ls1c{letter-spacing:17.790538px;}
.ls2a{letter-spacing:17.895527px;}
.ls17{letter-spacing:17.932680px;}
.ls25{letter-spacing:19.672200px;}
.ls1f{letter-spacing:20.508538px;}
.ls22{letter-spacing:23.714525px;}
.lsf{letter-spacing:25.774200px;}
.ls1{letter-spacing:26.172600px;}
.ls14{letter-spacing:28.691640px;}
.ls13{letter-spacing:28.692360px;}
.ls16{letter-spacing:28.693680px;}
.ls15{letter-spacing:28.694640px;}
.ls10{letter-spacing:28.758600px;}
.ls1a{letter-spacing:30.756538px;}
.ls21{letter-spacing:33.662525px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6c{word-spacing:-17.932680px;}
.ws5{word-spacing:-16.438350px;}
.ws4{word-spacing:-14.943900px;}
.ws6d{word-spacing:-14.920027px;}
.ws34{word-spacing:-11.955150px;}
.ws35{word-spacing:-11.936059px;}
.ws2f{word-spacing:-9.564150px;}
.ws82{word-spacing:-4.961375px;}
.ws2a{word-spacing:-2.395003px;}
.ws2e{word-spacing:-2.392193px;}
.ws32{word-spacing:-2.391030px;}
.ws2c{word-spacing:-1.590780px;}
.ws118{word-spacing:-0.956412px;}
.wsec{word-spacing:-0.860771px;}
.wsd8{word-spacing:-0.812950px;}
.ws51{word-spacing:-0.765130px;}
.ws9b{word-spacing:-0.717307px;}
.ws10e{word-spacing:-0.621668px;}
.wsc0{word-spacing:-0.537980px;}
.ws107{word-spacing:-0.430385px;}
.ws146{word-spacing:-0.298878px;}
.ws29{word-spacing:-0.286924px;}
.ws155{word-spacing:-0.179327px;}
.ws165{word-spacing:-0.119551px;}
.ws81{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.ws39{word-spacing:-0.047821px;}
.ws13c{word-spacing:-0.013823px;}
.ws2b{word-spacing:0.000000px;}
.ws161{word-spacing:0.028594px;}
.ws13d{word-spacing:0.034594px;}
.wsaf{word-spacing:0.119551px;}
.wsaa{word-spacing:0.179327px;}
.wsab{word-spacing:0.239102px;}
.ws15{word-spacing:0.322790px;}
.ws137{word-spacing:0.334744px;}
.ws14c{word-spacing:0.358654px;}
.wsa2{word-spacing:0.418429px;}
.ws12f{word-spacing:0.430385px;}
.ws60{word-spacing:0.478205px;}
.ws160{word-spacing:0.537980px;}
.wsd3{word-spacing:0.657532px;}
.ws151{word-spacing:0.717307px;}
.wse2{word-spacing:0.765130px;}
.ws102{word-spacing:0.860771px;}
.ws72{word-spacing:0.956410px;}
.ws128{word-spacing:1.052053px;}
.wsa9{word-spacing:1.075961px;}
.wsb5{word-spacing:1.147694px;}
.ws92{word-spacing:1.195512px;}
.ws79{word-spacing:1.255288px;}
.ws16a{word-spacing:1.264208px;}
.ws83{word-spacing:1.315063px;}
.ws100{word-spacing:1.338977px;}
.ws65{word-spacing:1.434614px;}
.ws7{word-spacing:1.452557px;}
.wse7{word-spacing:1.482439px;}
.wsd6{word-spacing:1.530259px;}
.ws6b{word-spacing:1.554166px;}
.ws117{word-spacing:1.578080px;}
.ws74{word-spacing:1.613941px;}
.ws115{word-spacing:1.769362px;}
.ws73{word-spacing:1.912819px;}
.ws12b{word-spacing:1.912824px;}
.ws5b{word-spacing:1.972595px;}
.ws164{word-spacing:2.092146px;}
.ws103{word-spacing:2.104106px;}
.ws8b{word-spacing:2.151922px;}
.ws157{word-spacing:2.199748px;}
.wsfe{word-spacing:2.343209px;}
.wsc5{word-spacing:2.391024px;}
.ws30{word-spacing:2.391030px;}
.ws178{word-spacing:2.438851px;}
.ws91{word-spacing:2.450800px;}
.wsb8{word-spacing:2.630126px;}
.ws163{word-spacing:2.689902px;}
.wscb{word-spacing:3.048556px;}
.ws12d{word-spacing:3.156160px;}
.ws139{word-spacing:3.203980px;}
.ws69{word-spacing:3.287658px;}
.wsc7{word-spacing:3.347434px;}
.ws89{word-spacing:3.526760px;}
.wse0{word-spacing:3.634366px;}
.wsa0{word-spacing:3.765863px;}
.ws104{word-spacing:3.777827px;}
.ws133{word-spacing:3.921289px;}
.wsd1{word-spacing:3.945190px;}
.ws7e{word-spacing:4.004965px;}
.wsea{word-spacing:4.112572px;}
.wsb0{word-spacing:4.124516px;}
.ws174{word-spacing:4.244068px;}
.ws70{word-spacing:4.303843px;}
.wsdf{word-spacing:4.303854px;}
.ws159{word-spacing:4.363619px;}
.wsff{word-spacing:4.399495px;}
.ws25{word-spacing:4.542946px;}
.ws175{word-spacing:4.542957px;}
.ws16{word-spacing:4.572864px;}
.ws11d{word-spacing:4.590778px;}
.ws13f{word-spacing:4.602721px;}
.ws112{word-spacing:4.686419px;}
.ws93{word-spacing:4.722272px;}
.ws36{word-spacing:4.728376px;}
.ws2d{word-spacing:4.743818px;}
.ws33{word-spacing:4.760632px;}
.ws31{word-spacing:4.762975px;}
.ws119{word-spacing:4.778060px;}
.ws130{word-spacing:4.778311px;}
.wseb{word-spacing:4.779893px;}
.ws12e{word-spacing:4.780423px;}
.ws134{word-spacing:4.780923px;}
.ws158{word-spacing:4.781696px;}
.ws28{word-spacing:4.782060px;}
.ws37{word-spacing:4.782075px;}
.wsd7{word-spacing:4.783306px;}
.ws122{word-spacing:4.783864px;}
.wsee{word-spacing:4.784360px;}
.ws8e{word-spacing:4.841824px;}
.ws177{word-spacing:4.877701px;}
.ws162{word-spacing:4.961375px;}
.wsd5{word-spacing:4.973342px;}
.wse1{word-spacing:5.116804px;}
.ws123{word-spacing:5.164625px;}
.ws7a{word-spacing:5.200477px;}
.ws110{word-spacing:5.212445px;}
.ws98{word-spacing:5.260253px;}
.ws124{word-spacing:5.260266px;}
.wsb7{word-spacing:5.439580px;}
.wsfa{word-spacing:5.451548px;}
.wsb4{word-spacing:5.547190px;}
.ws15c{word-spacing:5.559131px;}
.ws15f{word-spacing:5.618906px;}
.ws138{word-spacing:5.690651px;}
.wsa4{word-spacing:5.738458px;}
.ws88{word-spacing:5.798233px;}
.wscd{word-spacing:5.858009px;}
.ws11{word-spacing:5.917824px;}
.ws10d{word-spacing:5.929754px;}
.ws172{word-spacing:5.975442px;}
.ws14f{word-spacing:5.976008px;}
.ws3{word-spacing:5.977560px;}
.ws156{word-spacing:5.977575px;}
.ws6a{word-spacing:6.097111px;}
.wsd{word-spacing:6.186816px;}
.ws8a{word-spacing:6.216662px;}
.wsef{word-spacing:6.216678px;}
.ws12c{word-spacing:6.264499px;}
.ws1d{word-spacing:6.294413px;}
.wsd4{word-spacing:6.312319px;}
.wsbe{word-spacing:6.395989px;}
.wsd9{word-spacing:6.407960px;}
.ws154{word-spacing:6.455765px;}
.ws108{word-spacing:6.455781px;}
.wsb6{word-spacing:6.515540px;}
.ws2{word-spacing:6.575340px;}
.wsfb{word-spacing:6.694884px;}
.ws20{word-spacing:6.724800px;}
.wsf0{word-spacing:6.742705px;}
.ws71{word-spacing:6.754643px;}
.ws114{word-spacing:6.790525px;}
.ws116{word-spacing:6.838346px;}
.ws64{word-spacing:6.874194px;}
.ws7d{word-spacing:6.993745px;}
.ws62{word-spacing:7.053521px;}
.wsc3{word-spacing:7.173072px;}
.ws127{word-spacing:7.220911px;}
.ws48{word-spacing:7.232848px;}
.ws7c{word-spacing:7.292623px;}
.ws120{word-spacing:7.316552px;}
.ws148{word-spacing:7.352399px;}
.wsed{word-spacing:7.364372px;}
.ws75{word-spacing:7.471950px;}
.ws9{word-spacing:7.531776px;}
.ws87{word-spacing:7.651277px;}
.wsce{word-spacing:7.711052px;}
.ws14{word-spacing:7.746970px;}
.wsb{word-spacing:7.800768px;}
.ws10f{word-spacing:7.842578px;}
.wsc6{word-spacing:7.890379px;}
.ws11f{word-spacing:7.890399px;}
.wsa3{word-spacing:7.950155px;}
.ws77{word-spacing:8.009930px;}
.ws13a{word-spacing:8.081681px;}
.wsf6{word-spacing:8.129502px;}
.wsae{word-spacing:8.189257px;}
.wsf5{word-spacing:8.225143px;}
.wsf4{word-spacing:8.242099px;}
.ws26{word-spacing:8.249033px;}
.ws86{word-spacing:8.368584px;}
.wsf9{word-spacing:8.368605px;}
.ws1f{word-spacing:8.392550px;}
.ws13e{word-spacing:8.428360px;}
.ws27{word-spacing:8.547911px;}
.wse8{word-spacing:8.559887px;}
.ws143{word-spacing:8.607686px;}
.wsac{word-spacing:8.667462px;}
.ws97{word-spacing:8.798990px;}
.ws169{word-spacing:8.846789px;}
.ws7b{word-spacing:8.966340px;}
.ws1a{word-spacing:8.984333px;}
.ws10b{word-spacing:9.133735px;}
.ws150{word-spacing:9.145667px;}
.wsa{word-spacing:9.145728px;}
.ws136{word-spacing:9.181555px;}
.ws8c{word-spacing:9.205442px;}
.ws14d{word-spacing:9.265218px;}
.ws6f{word-spacing:9.384769px;}
.wsc{word-spacing:9.414720px;}
.wsfc{word-spacing:9.420658px;}
.wsbd{word-spacing:9.444545px;}
.ws12a{word-spacing:9.468479px;}
.ws1c{word-spacing:9.522317px;}
.ws8d{word-spacing:9.564096px;}
.ws176{word-spacing:9.564120px;}
.ws126{word-spacing:9.611941px;}
.ws121{word-spacing:9.659761px;}
.ws106{word-spacing:9.707582px;}
.ws149{word-spacing:9.743423px;}
.ws49{word-spacing:9.803198px;}
.ws111{word-spacing:9.889963px;}
.ws132{word-spacing:10.041082px;}
.wse5{word-spacing:10.042176px;}
.wsad{word-spacing:10.102076px;}
.ws0{word-spacing:10.185788px;}
.wsda{word-spacing:10.233608px;}
.ws4d{word-spacing:10.281403px;}
.ws11b{word-spacing:10.281429px;}
.ws66{word-spacing:10.460730px;}
.ws99{word-spacing:10.580281px;}
.ws13b{word-spacing:10.616173px;}
.wsc1{word-spacing:10.640057px;}
.wse6{word-spacing:10.807456px;}
.ws4e{word-spacing:10.819384px;}
.ws19{word-spacing:10.867277px;}
.ws129{word-spacing:10.903097px;}
.ws10{word-spacing:10.974874px;}
.ws6e{word-spacing:11.178037px;}
.ws9d{word-spacing:11.237813px;}
.ws9f{word-spacing:11.476915px;}
.wsb3{word-spacing:11.656242px;}
.ws5f{word-spacing:11.716018px;}
.wse9{word-spacing:11.716047px;}
.wsa5{word-spacing:11.775793px;}
.ws47{word-spacing:11.895344px;}
.ws1e{word-spacing:11.943245px;}
.ws52{word-spacing:11.950463px;}
.ws54{word-spacing:11.950913px;}
.ws53{word-spacing:11.951850px;}
.ws22{word-spacing:11.955120px;}
.wsf3{word-spacing:12.002971px;}
.ws80{word-spacing:12.074671px;}
.ws101{word-spacing:12.242074px;}
.ws9a{word-spacing:12.313774px;}
.wsde{word-spacing:12.433356px;}
.wsf7{word-spacing:12.481177px;}
.wsc2{word-spacing:12.493100px;}
.ws113{word-spacing:12.528997px;}
.ws8f{word-spacing:12.732203px;}
.ws11e{word-spacing:12.815921px;}
.wsa8{word-spacing:12.851754px;}
.ws15b{word-spacing:13.031081px;}
.ws167{word-spacing:13.270183px;}
.ws14e{word-spacing:13.389734px;}
.wse4{word-spacing:13.437589px;}
.ws46{word-spacing:13.449510px;}
.ws13{word-spacing:13.557197px;}
.wsa7{word-spacing:13.628837px;}
.ws61{word-spacing:13.688612px;}
.ws105{word-spacing:13.772333px;}
.wsf1{word-spacing:13.820153px;}
.ws142{word-spacing:13.927715px;}
.ws135{word-spacing:14.059256px;}
.ws168{word-spacing:14.166817px;}
.ws131{word-spacing:14.202718px;}
.wsb2{word-spacing:14.346144px;}
.ws1{word-spacing:14.346180px;}
.ws76{word-spacing:14.465695px;}
.wsa6{word-spacing:14.585246px;}
.ws23{word-spacing:14.645022px;}
.wse{word-spacing:14.686963px;}
.ws166{word-spacing:14.704798px;}
.wse3{word-spacing:14.824386px;}
.ws10c{word-spacing:14.872207px;}
.ws4b{word-spacing:14.884124px;}
.ws16d{word-spacing:14.939818px;}
.ws16c{word-spacing:14.941124px;}
.ws5d{word-spacing:14.943900px;}
.wsb1{word-spacing:15.302554px;}
.ws9e{word-spacing:15.422105px;}
.ws109{word-spacing:15.637336px;}
.ws85{word-spacing:15.720983px;}
.ws67{word-spacing:15.780758px;}
.ws4f{word-spacing:15.840534px;}
.ws8{word-spacing:16.193318px;}
.ws4c{word-spacing:16.258963px;}
.ws16b{word-spacing:16.557841px;}
.ws1b{word-spacing:16.569907px;}
.ws50{word-spacing:16.677392px;}
.wsd0{word-spacing:16.737168px;}
.ws17{word-spacing:16.785101px;}
.wsfd{word-spacing:16.928492px;}
.ws145{word-spacing:17.095822px;}
.ws15e{word-spacing:17.221808px;}
.wsf2{word-spacing:17.263237px;}
.ws147{word-spacing:17.394700px;}
.ws11c{word-spacing:17.502340px;}
.ws18{word-spacing:17.538278px;}
.ws90{word-spacing:17.693578px;}
.ws125{word-spacing:17.741443px;}
.wsb9{word-spacing:17.932680px;}
.wsd2{word-spacing:17.992456px;}
.ws153{word-spacing:18.112007px;}
.wsc4{word-spacing:18.231558px;}
.ws11a{word-spacing:18.315290px;}
.wsbc{word-spacing:18.470660px;}
.ws15d{word-spacing:18.530436px;}
.ws15a{word-spacing:18.829314px;}
.ws78{word-spacing:18.948865px;}
.ws140{word-spacing:19.068416px;}
.wsba{word-spacing:19.187968px;}
.wsbb{word-spacing:19.247743px;}
.ws5e{word-spacing:19.367294px;}
.wsdd{word-spacing:19.415164px;}
.ws141{word-spacing:19.546621px;}
.wscf{word-spacing:19.666172px;}
.wsca{word-spacing:19.725948px;}
.ws68{word-spacing:19.965050px;}
.wsbf{word-spacing:20.024826px;}
.ws21{word-spacing:20.120602px;}
.ws84{word-spacing:20.450624px;}
.wsf{word-spacing:20.497190px;}
.ws14a{word-spacing:20.562806px;}
.ws5c{word-spacing:20.682358px;}
.wsc8{word-spacing:20.859617px;}
.ws173{word-spacing:20.865617px;}
.ws24{word-spacing:20.921460px;}
.ws9c{word-spacing:21.041011px;}
.ws4a{word-spacing:21.459440px;}
.wsf8{word-spacing:21.560043px;}
.ws152{word-spacing:21.578992px;}
.ws14b{word-spacing:21.758318px;}
.ws63{word-spacing:22.475626px;}
.ws16f{word-spacing:22.774504px;}
.ws12{word-spacing:22.810522px;}
.wsa1{word-spacing:22.953830px;}
.ws7f{word-spacing:23.192933px;}
.wsc9{word-spacing:23.312484px;}
.ws10a{word-spacing:23.988989px;}
.ws144{word-spacing:27.045300px;}
.ws57{word-spacing:28.643099px;}
.ws56{word-spacing:28.644059px;}
.ws55{word-spacing:28.644539px;}
.ws59{word-spacing:28.645499px;}
.ws5a{word-spacing:28.646219px;}
.ws58{word-spacing:28.648019px;}
.ws16e{word-spacing:30.425780px;}
.wsdb{word-spacing:34.717756px;}
.ws170{word-spacing:36.463116px;}
.ws171{word-spacing:38.136833px;}
.wscc{word-spacing:39.930101px;}
.wsdc{word-spacing:47.390215px;}
.ws3b{word-spacing:93.013950px;}
.ws3a{word-spacing:129.743740px;}
.ws3d{word-spacing:130.376250px;}
.ws3c{word-spacing:135.093195px;}
.ws42{word-spacing:135.740086px;}
.ws3e{word-spacing:141.716086px;}
.ws40{word-spacing:149.801100px;}
.ws96{word-spacing:163.142134px;}
.ws41{word-spacing:173.088644px;}
.ws44{word-spacing:175.205100px;}
.ws3f{word-spacing:179.734771px;}
.ws43{word-spacing:206.454904px;}
.ws38{word-spacing:240.694778px;}
.ws45{word-spacing:250.018037px;}
.ws94{word-spacing:449.491694px;}
.ws95{word-spacing:458.791523px;}
._2{margin-left:-15.924260px;}
._13{margin-left:-13.963540px;}
._0{margin-left:-11.476944px;}
._9{margin-left:-8.488128px;}
._1b{margin-left:-7.410000px;}
._5{margin-left:-6.049313px;}
._6{margin-left:-4.782916px;}
._1{margin-left:-2.869236px;}
._3{margin-left:-1.494390px;}
._b{width:1.037017px;}
._a{width:2.248670px;}
._c{width:3.309073px;}
._38{width:4.539522px;}
._4{width:5.849171px;}
._8{width:9.366859px;}
._14{width:10.478640px;}
._12{width:12.195109px;}
._28{width:13.767103px;}
._35{width:15.111310px;}
._20{width:16.557841px;}
._30{width:17.843820px;}
._21{width:19.368199px;}
._36{width:20.562858px;}
._16{width:21.578992px;}
._15{width:22.953830px;}
._2c{width:24.023774px;}
._1e{width:25.583957px;}
._1d{width:26.779469px;}
._29{width:27.820489px;}
._7{width:29.678760px;}
._32{width:31.944161px;}
._1a{width:33.474420px;}
._1f{width:35.052500px;}
._2d{width:36.361489px;}
._33{width:37.652659px;}
._22{width:38.999912px;}
._1c{width:41.556101px;}
._37{width:43.134181px;}
._27{width:44.550763px;}
._25{width:45.907776px;}
._34{width:47.198932px;}
._26{width:49.554093px;}
._2a{width:51.735818px;}
._2f{width:55.089331px;}
._2e{width:57.456458px;}
._2b{width:61.286608px;}
._31{width:62.349584px;}
._23{width:118.039073px;}
._d{width:135.131761px;}
._f{width:141.740306px;}
._24{width:157.796014px;}
._11{width:160.530500px;}
._e{width:206.818693px;}
._10{width:227.974378px;}
._17{width:458.791523px;}
._19{width:547.616617px;}
._18{width:614.128994px;}
.fc19{color:rgb(97,97,97);}
.fc12{color:rgb(255,255,255);}
.fc11{color:rgb(76,76,76);}
.fc10{color:rgb(94,94,94);}
.fcf{color:rgb(100,100,100);}
.fcd{color:rgb(98,98,98);}
.fc14{color:rgb(87,87,87);}
.fc0{color:rgb(0,0,0);}
.fc15{color:rgb(99,99,99);}
.fc1{color:rgb(128,128,128);}
.fc8{color:rgb(61,61,61);}
.fc13{color:rgb(93,93,93);}
.fc9{color:rgb(93,93,93);}
.fca{color:rgb(91,91,91);}
.fcb{color:rgb(72,72,72);}
.fc5{color:rgb(102,102,102);}
.fcc{color:rgb(102,102,102);}
.fc1a{color:rgb(109,109,109);}
.fc2{color:rgb(0,128,0);}
.fc18{color:rgb(96,96,96);}
.fc16{color:rgb(96,96,96);}
.fc4{color:rgb(171,33,255);}
.fc1b{color:rgb(106,106,106);}
.fce{color:rgb(77,77,77);}
.fc7{color:rgb(61,122,122);}
.fc17{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(186,33,33);}
.fse{font-size:22.080000px;}
.fs10{font-size:30.912000px;}
.fsb{font-size:33.990600px;}
.fs6{font-size:35.865600px;}
.fsa{font-size:37.389660px;}
.fsf{font-size:37.536000px;}
.fs7{font-size:38.256600px;}
.fs9{font-size:40.788720px;}
.fs4{font-size:41.842800px;}
.fsc{font-size:43.680000px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fsd{font-size:62.400000px;}
.fs1{font-size:65.753400px;}
.fs8{font-size:120.000000px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y12b{bottom:5.578650px;}
.yc9{bottom:11.283286px;}
.y133{bottom:19.775400px;}
.y12c{bottom:23.984804px;}
.y132{bottom:27.874275px;}
.y131{bottom:40.383823px;}
.y12d{bottom:42.466646px;}
.y12e{bottom:60.948488px;}
.yd3{bottom:69.382892px;}
.yd4{bottom:77.807544px;}
.yd2{bottom:78.622107px;}
.y12f{bottom:79.430330px;}
.yd1{bottom:87.746594px;}
.yd0{bottom:96.758476px;}
.y130{bottom:97.912171px;}
.yc8{bottom:101.328896px;}
.ycf{bottom:105.659826px;}
.y54{bottom:113.332500px;}
.y1c1{bottom:113.334000px;}
.y12a{bottom:113.384209px;}
.yce{bottom:114.452665px;}
.yc6{bottom:116.403268px;}
.y32{bottom:117.552000px;}
.y129{bottom:121.483084px;}
.ycd{bottom:123.138964px;}
.y124{bottom:125.671237px;}
.y53{bottom:126.783000px;}
.y31{bottom:128.127000px;}
.yd5{bottom:128.569071px;}
.y122{bottom:131.265000px;}
.y8f{bottom:131.266500px;}
.ycc{bottom:131.720648px;}
.y128{bottom:135.100945px;}
.y52{bottom:140.232000px;}
.yc7{bottom:140.756367px;}
.y1c0{bottom:140.944500px;}
.y30{bottom:141.577500px;}
.y258{bottom:142.002000px;}
.yc3{bottom:142.923000px;}
.y125{bottom:146.505693px;}
.y14b{bottom:149.088616px;}
.y17b{bottom:149.197500px;}
.yff{bottom:149.199000px;}
.y259{bottom:153.682500px;}
.y8e{bottom:153.973500px;}
.y1bf{bottom:154.393500px;}
.y51{bottom:157.900500px;}
.y203{bottom:158.166000px;}
.y257{bottom:159.934500px;}
.yc2{bottom:160.855500px;}
.yfe{bottom:167.131500px;}
.y126{bottom:167.340149px;}
.y1be{bottom:167.844000px;}
.y2f{bottom:170.808000px;}
.yec{bottom:171.568007px;}
.y202{bottom:171.615000px;}
.yd6{bottom:175.942815px;}
.y148{bottom:176.342556px;}
.y145{bottom:177.621079px;}
.y256{bottom:177.868500px;}
.yc1{bottom:178.789500px;}
.y232{bottom:179.304000px;}
.y1bd{bottom:182.005500px;}
.y8d{bottom:182.089500px;}
.yfd{bottom:185.064000px;}
.y201{bottom:185.065500px;}
.y50{bottom:186.270000px;}
.y142{bottom:186.469767px;}
.y127{bottom:188.174605px;}
.ye9{bottom:188.634026px;}
.y2e{bottom:188.740500px;}
.y1bc{bottom:195.454500px;}
.yc5{bottom:195.550839px;}
.y255{bottom:195.801000px;}
.yc0{bottom:196.722000px;}
.y13f{bottom:197.948058px;}
.y200{bottom:198.514500px;}
.y8c{bottom:200.022000px;}
.ye6{bottom:200.609444px;}
.y159{bottom:202.996500px;}
.yfc{bottom:203.491500px;}
.y4f{bottom:204.202500px;}
.y2d{bottom:206.674500px;}
.y121{bottom:207.525000px;}
.y1bb{bottom:208.903500px;}
.y1ff{bottom:211.963500px;}
.y254{bottom:213.733500px;}
.ye3{bottom:214.102243px;}
.ybf{bottom:214.654500px;}
.y231{bottom:217.899000px;}
.y8b{bottom:217.954500px;}
.y158{bottom:220.929000px;}
.yfb{bottom:221.425500px;}
.y4e{bottom:222.135000px;}
.y1ba{bottom:222.354000px;}
.y2c{bottom:224.607000px;}
.y1fe{bottom:225.414000px;}
.ye0{bottom:231.181292px;}
.y253{bottom:231.666000px;}
.ybe{bottom:232.587000px;}
.y120{bottom:234.468000px;}
.y230{bottom:235.831500px;}
.y8a{bottom:235.888500px;}
.y14c{bottom:236.082788px;}
.y1b9{bottom:236.515500px;}
.y17a{bottom:238.861500px;}
.y157{bottom:238.863000px;}
.yfa{bottom:239.358000px;}
.y4d{bottom:240.069000px;}
.y13c{bottom:241.023225px;}
.y2b{bottom:242.539500px;}
.y149{bottom:244.283222px;}
.y139{bottom:246.022557px;}
.y140{bottom:247.017600px;}
.y252{bottom:249.598500px;}
.y1b8{bottom:249.964500px;}
.y1fd{bottom:252.312000px;}
.y11f{bottom:252.400500px;}
.y22f{bottom:253.765500px;}
.y89{bottom:253.821000px;}
.ybd{bottom:255.126000px;}
.y179{bottom:256.794000px;}
.yf9{bottom:257.290500px;}
.y4c{bottom:258.001500px;}
.y136{bottom:259.303090px;}
.yed{bottom:259.987060px;}
.y146{bottom:260.660110px;}
.y1b7{bottom:263.415000px;}
.y143{bottom:265.324726px;}
.y2a{bottom:265.677000px;}
.y1fc{bottom:265.762500px;}
.y251{bottom:267.532500px;}
.y11e{bottom:270.333000px;}
.y156{bottom:270.765000px;}
.y22e{bottom:271.698000px;}
.y88{bottom:271.753500px;}
.y178{bottom:274.728000px;}
.yf8{bottom:275.223000px;}
.y4b{bottom:275.934000px;}
.ydd{bottom:276.361868px;}
.y1b6{bottom:276.864000px;}
.yea{bottom:279.016986px;}
.y1fb{bottom:279.211500px;}
.ye1{bottom:279.443338px;}
.ye7{bottom:279.492794px;}
.yda{bottom:282.460645px;}
.ybc{bottom:282.534000px;}
.y250{bottom:285.465000px;}
.ye4{bottom:286.556037px;}
.y11d{bottom:288.265500px;}
.y13d{bottom:288.653437px;}
.y22d{bottom:289.630500px;}
.y87{bottom:289.686000px;}
.y1b5{bottom:291.025500px;}
.y13a{bottom:292.551445px;}
.y177{bottom:292.660500px;}
.y1fa{bottom:292.662000px;}
.yf7{bottom:293.155500px;}
.y4a{bottom:293.866500px;}
.y29{bottom:298.555500px;}
.yd7{bottom:298.869126px;}
.ybb{bottom:300.466500px;}
.y24f{bottom:303.397500px;}
.y1b4{bottom:304.474500px;}
.y1f9{bottom:306.111000px;}
.y11c{bottom:306.198000px;}
.y14d{bottom:306.774811px;}
.y137{bottom:307.578107px;}
.y86{bottom:307.618500px;}
.y22c{bottom:309.429000px;}
.y176{bottom:310.593000px;}
.y49{bottom:311.799000px;}
.y155{bottom:311.905500px;}
.y28{bottom:313.582500px;}
.y14a{bottom:317.001617px;}
.y1b3{bottom:317.925000px;}
.yba{bottom:318.399000px;}
.yf6{bottom:318.768000px;}
.y1f8{bottom:319.560000px;}
.y24e{bottom:321.330000px;}
.y11b{bottom:324.132000px;}
.y85{bottom:325.551000px;}
.yde{bottom:326.209584px;}
.y22b{bottom:327.363000px;}
.y144{bottom:327.999228px;}
.y27{bottom:328.525500px;}
.y48{bottom:329.731500px;}
.y154{bottom:329.838000px;}
.ydb{bottom:329.986410px;}
.yee{bottom:330.089714px;}
.y141{bottom:331.711595px;}
.y1b2{bottom:332.086500px;}
.y1f7{bottom:333.010500px;}
.yeb{bottom:333.984022px;}
.y147{bottom:335.070738px;}
.yb9{bottom:336.331500px;}
.y24d{bottom:339.262500px;}
.y11a{bottom:341.884500px;}
.y26{bottom:343.470000px;}
.y84{bottom:343.485000px;}
.ye2{bottom:343.496648px;}
.yd8{bottom:343.664183px;}
.y22a{bottom:345.295500px;}
.y1b1{bottom:345.535500px;}
.y1f6{bottom:346.459500px;}
.y47{bottom:347.665500px;}
.y153{bottom:347.772000px;}
.y55{bottom:348.000000px;}
.yf5{bottom:350.998500px;}
.y175{bottom:351.511500px;}
.ye8{bottom:352.561352px;}
.ye5{bottom:353.915938px;}
.y13e{bottom:354.196227px;}
.yb8{bottom:354.264000px;}
.y24c{bottom:357.195000px;}
.y25{bottom:358.414500px;}
.y1b0{bottom:359.697000px;}
.y119{bottom:359.817000px;}
.y1f5{bottom:359.908500px;}
.y83{bottom:361.417500px;}
.yf0{bottom:362.473958px;}
.y229{bottom:363.228000px;}
.y46{bottom:365.598000px;}
.y152{bottom:365.704500px;}
.yf4{bottom:368.931000px;}
.y13b{bottom:371.823422px;}
.yb7{bottom:372.198000px;}
.y1af{bottom:373.146000px;}
.y24{bottom:373.357500px;}
.y1f4{bottom:373.359000px;}
.y24b{bottom:375.127500px;}
.y118{bottom:377.749500px;}
.y138{bottom:379.328199px;}
.y82{bottom:379.350000px;}
.yef{bottom:379.931333px;}
.y174{bottom:380.022000px;}
.y228{bottom:382.404000px;}
.y45{bottom:383.530500px;}
.y151{bottom:383.637000px;}
.ydf{bottom:384.042807px;}
.y1ae{bottom:386.596500px;}
.y1f3{bottom:386.808000px;}
.yf3{bottom:386.863500px;}
.y23{bottom:388.302000px;}
.yb6{bottom:390.130500px;}
.ydc{bottom:390.382687px;}
.y24a{bottom:393.061500px;}
.y117{bottom:395.683500px;}
.y81{bottom:397.282500px;}
.y173{bottom:397.954500px;}
.y1f2{bottom:400.258500px;}
.y227{bottom:400.338000px;}
.y1ad{bottom:400.758000px;}
.yd9{bottom:401.063911px;}
.y150{bottom:401.569500px;}
.y22{bottom:403.246500px;}
.yb5{bottom:408.063000px;}
.y249{bottom:410.994000px;}
.y116{bottom:413.616000px;}
.y1f1{bottom:413.707500px;}
.y1ac{bottom:414.207000px;}
.y80{bottom:415.215000px;}
.y172{bottom:415.887000px;}
.y21{bottom:418.189500px;}
.y226{bottom:418.270500px;}
.yb4{bottom:425.995500px;}
.y1f0{bottom:427.156500px;}
.y1ab{bottom:427.657500px;}
.y248{bottom:428.926500px;}
.y115{bottom:431.548500px;}
.y20{bottom:433.134000px;}
.y7f{bottom:433.149000px;}
.y171{bottom:433.819500px;}
.y225{bottom:436.203000px;}
.yf2{bottom:436.501500px;}
.y44{bottom:439.920000px;}
.y1ef{bottom:440.607000px;}
.y1aa{bottom:441.819000px;}
.yb3{bottom:443.928000px;}
.y247{bottom:446.859000px;}
.y1f{bottom:448.078500px;}
.yf1{bottom:449.950500px;}
.y170{bottom:451.810500px;}
.y43{bottom:453.369000px;}
.y114{bottom:454.009500px;}
.y1ee{bottom:454.056000px;}
.y224{bottom:454.135500px;}
.y1a9{bottom:455.268000px;}
.y7e{bottom:455.827500px;}
.yb2{bottom:461.860500px;}
.y1e{bottom:463.021500px;}
.y246{bottom:464.791500px;}
.y14f{bottom:464.863500px;}
.ycb{bottom:466.183500px;}
.y42{bottom:466.818000px;}
.y1ed{bottom:467.505000px;}
.y1a8{bottom:468.717000px;}
.y16f{bottom:469.743000px;}
.y223{bottom:472.068000px;}
.y1d{bottom:477.966000px;}
.y14e{bottom:478.314000px;}
.yb1{bottom:479.794500px;}
.y41{bottom:480.268500px;}
.y113{bottom:480.952500px;}
.y1ec{bottom:480.955500px;}
.y1a7{bottom:482.167500px;}
.y245{bottom:482.724000px;}
.y7d{bottom:483.943500px;}
.y16e{bottom:487.675500px;}
.y222{bottom:490.002000px;}
.y1c{bottom:492.909000px;}
.y40{bottom:493.717500px;}
.y1eb{bottom:494.404500px;}
.y135{bottom:494.545500px;}
.y1a6{bottom:496.329000px;}
.yb0{bottom:497.727000px;}
.y112{bottom:498.885000px;}
.y244{bottom:500.658000px;}
.y7c{bottom:501.876000px;}
.y16d{bottom:505.609500px;}
.y3f{bottom:507.168000px;}
.y1b{bottom:507.853500px;}
.y221{bottom:507.934500px;}
.y1a5{bottom:509.778000px;}
.yaf{bottom:515.659500px;}
.y111{bottom:516.817500px;}
.y3e{bottom:520.617000px;}
.y1ea{bottom:521.304000px;}
.y1a{bottom:522.798000px;}
.y1a4{bottom:523.228500px;}
.y243{bottom:523.297500px;}
.y16c{bottom:523.599000px;}
.y220{bottom:525.867000px;}
.yae{bottom:533.592000px;}
.y3d{bottom:534.066000px;}
.y110{bottom:534.750000px;}
.y1e9{bottom:534.753000px;}
.y1a3{bottom:537.390000px;}
.y19{bottom:537.741000px;}
.y16b{bottom:541.531500px;}
.y21f{bottom:545.665500px;}
.y1e8{bottom:548.203500px;}
.y1a2{bottom:550.839000px;}
.y7b{bottom:550.870500px;}
.y242{bottom:551.317500px;}
.yad{bottom:551.524500px;}
.y10f{bottom:552.682500px;}
.y18{bottom:552.685500px;}
.y3a{bottom:555.324000px;}
.y16a{bottom:559.464000px;}
.y1e7{bottom:561.652500px;}
.y3c{bottom:562.048500px;}
.y21e{bottom:563.598000px;}
.y1a1{bottom:564.288000px;}
.y17{bottom:567.630000px;}
.y38{bottom:568.773000px;}
.y7a{bottom:568.803000px;}
.y241{bottom:569.250000px;}
.yac{bottom:569.457000px;}
.y10e{bottom:570.616500px;}
.y1e6{bottom:575.101500px;}
.y3b{bottom:575.499000px;}
.y169{bottom:577.398000px;}
.y1a0{bottom:578.449500px;}
.y21d{bottom:581.532000px;}
.y39{bottom:582.223500px;}
.y16{bottom:582.573000px;}
.y240{bottom:587.182500px;}
.yab{bottom:587.391000px;}
.y10d{bottom:588.369000px;}
.y1e5{bottom:588.552000px;}
.y19f{bottom:591.900000px;}
.y168{bottom:595.330500px;}
.y15{bottom:597.517500px;}
.y79{bottom:598.605000px;}
.y21c{bottom:599.464500px;}
.y1e4{bottom:602.001000px;}
.y37{bottom:603.181500px;}
.y23f{bottom:605.115000px;}
.yaa{bottom:605.323500px;}
.y19e{bottom:605.349000px;}
.y10c{bottom:606.301500px;}
.y78{bottom:612.055500px;}
.y14{bottom:612.462000px;}
.y167{bottom:613.263000px;}
.y1e3{bottom:615.450000px;}
.y21b{bottom:617.397000px;}
.y19d{bottom:619.510500px;}
.y23e{bottom:623.049000px;}
.ya9{bottom:623.154000px;}
.y10b{bottom:624.235500px;}
.y77{bottom:625.504500px;}
.y13{bottom:627.405000px;}
.y1e2{bottom:628.900500px;}
.y166{bottom:631.195500px;}
.y19c{bottom:632.959500px;}
.y36{bottom:633.382500px;}
.y21a{bottom:637.195500px;}
.y76{bottom:638.955000px;}
.y23d{bottom:640.981500px;}
.ya8{bottom:641.086500px;}
.y10a{bottom:642.168000px;}
.y12{bottom:642.349500px;}
.y19b{bottom:646.410000px;}
.y35{bottom:646.833000px;}
.y165{bottom:649.128000px;}
.y75{bottom:652.404000px;}
.y219{bottom:655.129500px;}
.y1e1{bottom:655.800000px;}
.y11{bottom:657.294000px;}
.y23c{bottom:658.914000px;}
.ya7{bottom:659.019000px;}
.y109{bottom:660.100500px;}
.y34{bottom:660.282000px;}
.y19a{bottom:660.571500px;}
.y74{bottom:665.853000px;}
.y164{bottom:667.062000px;}
.y1e0{bottom:669.249000px;}
.y10{bottom:672.237000px;}
.y218{bottom:673.062000px;}
.y33{bottom:673.731000px;}
.y199{bottom:674.020500px;}
.y23b{bottom:676.846500px;}
.ya6{bottom:676.953000px;}
.y108{bottom:678.033000px;}
.y73{bottom:679.303500px;}
.y1df{bottom:682.698000px;}
.y163{bottom:684.994500px;}
.yf{bottom:687.181500px;}
.y198{bottom:687.471000px;}
.y72{bottom:692.752500px;}
.y217{bottom:692.860500px;}
.y23a{bottom:694.779000px;}
.ya5{bottom:694.885500px;}
.y107{bottom:695.965500px;}
.y1de{bottom:696.148500px;}
.y197{bottom:701.632500px;}
.y162{bottom:702.927000px;}
.y71{bottom:706.201500px;}
.y1dd{bottom:709.597500px;}
.y216{bottom:710.793000px;}
.y239{bottom:712.713000px;}
.ya4{bottom:712.818000px;}
.y106{bottom:713.898000px;}
.y196{bottom:715.081500px;}
.y70{bottom:719.652000px;}
.y161{bottom:720.859500px;}
.y1dc{bottom:723.046500px;}
.y195{bottom:729.243000px;}
.y215{bottom:729.970500px;}
.y238{bottom:730.645500px;}
.ya3{bottom:730.750500px;}
.y105{bottom:731.832000px;}
.y6f{bottom:733.101000px;}
.y1db{bottom:736.497000px;}
.y160{bottom:738.792000px;}
.y194{bottom:742.692000px;}
.y6e{bottom:746.551500px;}
.y214{bottom:747.903000px;}
.y237{bottom:748.578000px;}
.ya2{bottom:748.683000px;}
.y1da{bottom:749.946000px;}
.ye{bottom:750.124500px;}
.y104{bottom:754.291500px;}
.y193{bottom:756.142500px;}
.y15f{bottom:756.724500px;}
.y6d{bottom:760.000500px;}
.y1d9{bottom:763.396500px;}
.y213{bottom:765.835500px;}
.ya1{bottom:766.615500px;}
.yd{bottom:768.616500px;}
.y192{bottom:769.591500px;}
.y15e{bottom:774.658500px;}
.y1d8{bottom:776.845500px;}
.y103{bottom:781.234500px;}
.y191{bottom:783.753000px;}
.y212{bottom:783.768000px;}
.ya0{bottom:784.549500px;}
.y6c{bottom:786.900000px;}
.yc{bottom:787.110000px;}
.y1d7{bottom:790.294500px;}
.y15d{bottom:792.591000px;}
.y236{bottom:796.894500px;}
.y190{bottom:797.202000px;}
.y102{bottom:799.168500px;}
.y6b{bottom:800.349000px;}
.y211{bottom:801.702000px;}
.y9f{bottom:802.482000px;}
.y1d6{bottom:803.745000px;}
.yb{bottom:805.603500px;}
.y235{bottom:810.343500px;}
.y15c{bottom:810.523500px;}
.y18f{bottom:810.652500px;}
.y6a{bottom:813.798000px;}
.y101{bottom:817.101000px;}
.y1d5{bottom:817.194000px;}
.y210{bottom:819.634500px;}
.y9e{bottom:820.414500px;}
.y234{bottom:823.794000px;}
.ya{bottom:824.097000px;}
.y18e{bottom:824.101500px;}
.y69{bottom:827.248500px;}
.y15b{bottom:828.456000px;}
.y1d4{bottom:830.643000px;}
.y100{bottom:835.033500px;}
.y233{bottom:837.243000px;}
.y20f{bottom:837.567000px;}
.y18d{bottom:838.263000px;}
.y9d{bottom:838.347000px;}
.y68{bottom:840.697500px;}
.y9{bottom:842.811000px;}
.y1d3{bottom:844.093500px;}
.y15a{bottom:846.388500px;}
.y18c{bottom:851.713500px;}
.y67{bottom:854.148000px;}
.y9c{bottom:856.279500px;}
.y20e{bottom:857.365500px;}
.y1d2{bottom:857.542500px;}
.y18b{bottom:865.162500px;}
.y66{bottom:867.597000px;}
.y1d1{bottom:870.993000px;}
.y20d{bottom:875.298000px;}
.y18a{bottom:878.611500px;}
.y9b{bottom:878.818500px;}
.y8{bottom:880.315500px;}
.y65{bottom:881.046000px;}
.yca{bottom:883.350000px;}
.y1d0{bottom:884.442000px;}
.y189{bottom:892.773000px;}
.y20c{bottom:893.232000px;}
.y64{bottom:894.496500px;}
.y134{bottom:894.705000px;}
.y1cf{bottom:897.891000px;}
.y7{bottom:898.809000px;}
.yc4{bottom:899.583000px;}
.y188{bottom:906.223500px;}
.y9a{bottom:906.226500px;}
.y63{bottom:907.945500px;}
.y123{bottom:910.938000px;}
.y20b{bottom:911.164500px;}
.y1ce{bottom:911.341500px;}
.y6{bottom:917.523000px;}
.y187{bottom:919.672500px;}
.y62{bottom:921.394500px;}
.y99{bottom:924.159000px;}
.y1cd{bottom:924.790500px;}
.y20a{bottom:929.097000px;}
.y186{bottom:933.834000px;}
.y61{bottom:934.845000px;}
.y1cc{bottom:938.239500px;}
.y98{bottom:942.091500px;}
.y209{bottom:947.029500px;}
.y185{bottom:947.283000px;}
.y60{bottom:948.294000px;}
.y1cb{bottom:951.690000px;}
.y5{bottom:955.027500px;}
.y97{bottom:960.024000px;}
.y184{bottom:960.733500px;}
.y5f{bottom:961.744500px;}
.y208{bottom:964.962000px;}
.y1ca{bottom:965.139000px;}
.y4{bottom:973.521000px;}
.y183{bottom:974.895000px;}
.y5e{bottom:975.193500px;}
.y96{bottom:977.956500px;}
.y1c9{bottom:978.588000px;}
.y207{bottom:982.896000px;}
.y182{bottom:988.344000px;}
.y5d{bottom:988.642500px;}
.y1c8{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y95{bottom:995.890500px;}
.y206{bottom:1000.828500px;}
.y181{bottom:1001.794500px;}
.y5c{bottom:1002.093000px;}
.y1c7{bottom:1005.487500px;}
.y180{bottom:1015.243500px;}
.y94{bottom:1018.428000px;}
.y1c6{bottom:1018.938000px;}
.y5b{bottom:1028.991000px;}
.y17f{bottom:1029.405000px;}
.y205{bottom:1030.933500px;}
.y1c5{bottom:1032.387000px;}
.y2{bottom:1039.309500px;}
.y5a{bottom:1042.441500px;}
.y17e{bottom:1042.854000px;}
.y93{bottom:1045.836000px;}
.y59{bottom:1055.890500px;}
.y17d{bottom:1056.304500px;}
.y1c4{bottom:1059.286500px;}
.y92{bottom:1063.768500px;}
.y204{bottom:1069.528500px;}
.y17c{bottom:1069.753500px;}
.y1c3{bottom:1072.735500px;}
.y1{bottom:1081.152000px;}
.y91{bottom:1081.702500px;}
.y58{bottom:1082.790000px;}
.y1c2{bottom:1086.184500px;}
.y57{bottom:1096.239000px;}
.y90{bottom:1099.635000px;}
.y56{bottom:1109.689500px;}
.h19{height:20.512320px;}
.ha{height:24.675533px;}
.h1b{height:28.717248px;}
.he{height:30.509543px;}
.hf{height:30.939928px;}
.h14{height:31.577267px;}
.hd{height:31.944161px;}
.h1c{height:32.804932px;}
.h9{height:32.900573px;}
.h1d{height:33.134573px;}
.h1e{height:33.140573px;}
.h13{height:34.734994px;}
.h1a{height:34.870944px;}
.h7{height:37.336090px;}
.h6{height:37.605082px;}
.h12{height:37.892721px;}
.h16{height:40.578720px;}
.h4{height:41.006062px;}
.h3{height:41.125613px;}
.h1f{height:43.994573px;}
.h10{height:44.831700px;}
.h2{height:45.238339px;}
.h5{height:45.568339px;}
.hb{height:50.477846px;}
.h8{height:50.483846px;}
.h17{height:57.969600px;}
.h1{height:98.701718px;}
.hc{height:117.773438px;}
.h18{height:201.251955px;}
.h11{height:212.604299px;}
.h15{height:466.447022px;}
.h0{height:1188.000000px;}
.w2{width:437.598720px;}
.w1{width:771.095524px;}
.w3{width:771.121575px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5b{left:11.107275px;}
.x34{left:13.221812px;}
.x5a{left:15.264525px;}
.x33{left:18.327231px;}
.x38{left:34.363500px;}
.x32{left:36.196197px;}
.x5e{left:41.166000px;}
.x2d{left:48.000000px;}
.x39{left:61.488075px;}
.x43{left:67.080706px;}
.x5f{left:68.693839px;}
.x1{left:73.446000px;}
.x4{left:76.320000px;}
.x64{left:79.423500px;}
.x1a{left:85.401000px;}
.x18{left:88.390500px;}
.x46{left:94.454092px;}
.x60{left:95.690008px;}
.x2{left:100.347000px;}
.x2e{left:102.138000px;}
.x3{left:106.297500px;}
.x3a{left:114.393105px;}
.x5{left:117.415500px;}
.x49{left:121.768805px;}
.x44{left:124.001597px;}
.x65{left:138.456000px;}
.x3b{left:140.646338px;}
.x2f{left:145.177500px;}
.xd{left:146.554500px;}
.x47{left:150.624229px;}
.x37{left:155.586000px;}
.x5d{left:165.406500px;}
.x3c{left:167.737082px;}
.x30{left:172.854000px;}
.x45{left:176.982935px;}
.x4d{left:178.154226px;}
.x19{left:192.646500px;}
.x3d{left:195.369710px;}
.x59{left:201.397500px;}
.x48{left:203.039736px;}
.x4b{left:204.710975px;}
.x50{left:206.282751px;}
.x61{left:215.922000px;}
.x6b{left:217.192500px;}
.x16{left:218.799000px;}
.x63{left:219.897000px;}
.x3e{left:223.258950px;}
.x35{left:225.863745px;}
.x4a{left:229.355157px;}
.x4e{left:231.921791px;}
.x53{left:234.698080px;}
.x3f{left:251.593228px;}
.x4c{left:255.739290px;}
.x51{left:259.558001px;}
.x56{left:263.378069px;}
.x36{left:274.970851px;}
.x4f{left:282.705987px;}
.x54{left:287.651289px;}
.x40{left:297.050251px;}
.x52{left:309.987190px;}
.x57{left:315.777453px;}
.x15{left:326.709000px;}
.x14{left:329.445000px;}
.x8{left:330.654000px;}
.x13{left:331.887000px;}
.x55{left:337.196888px;}
.x17{left:338.425500px;}
.x41{left:345.361020px;}
.x58{left:365.097127px;}
.x9{left:373.864500px;}
.x5c{left:381.731288px;}
.x42{left:391.813267px;}
.xf{left:396.997500px;}
.x11{left:398.071500px;}
.x6{left:404.538000px;}
.xe{left:408.763500px;}
.x12{left:413.605500px;}
.x2b{left:467.967000px;}
.x29{left:476.932500px;}
.x1d{left:477.963000px;}
.x2c{left:479.922000px;}
.x7{left:481.765500px;}
.x31{left:482.910000px;}
.x1c{left:488.509500px;}
.x2a{left:489.814500px;}
.x1e{left:494.169000px;}
.x66{left:495.355500px;}
.x28{left:500.185500px;}
.x1f{left:510.988500px;}
.x68{left:518.709000px;}
.x21{left:575.884500px;}
.xb{left:584.989500px;}
.x67{left:592.048500px;}
.x62{left:593.967000px;}
.x69{left:600.507000px;}
.x6c{left:611.713500px;}
.xc{left:623.932500px;}
.x10{left:625.188000px;}
.x1b{left:633.474000px;}
.xa{left:656.712000px;}
.x6a{left:662.692500px;}
.x23{left:669.529500px;}
.x22{left:671.190000px;}
.x20{left:705.178500px;}
.x24{left:714.025500px;}
.x25{left:719.107500px;}
.x26{left:758.713500px;}
.x27{left:773.884500px;}
@media print{
.v2{vertical-align:-15.002667pt;}
.v3{vertical-align:-7.440000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.861333pt;}
.v1{vertical-align:19.285333pt;}
.ls11{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000125pt;}
.ls24{letter-spacing:0.000479pt;}
.ls2d{letter-spacing:0.001546pt;}
.lse{letter-spacing:0.002591pt;}
.ls12{letter-spacing:0.003733pt;}
.lsc{letter-spacing:0.005459pt;}
.ls29{letter-spacing:1.807207pt;}
.ls1d{letter-spacing:2.005812pt;}
.ls6{letter-spacing:2.091749pt;}
.ls7{letter-spacing:2.098431pt;}
.ls4{letter-spacing:2.108364pt;}
.lsa{letter-spacing:2.120433pt;}
.lsb{letter-spacing:2.120663pt;}
.ls5{letter-spacing:2.122436pt;}
.ls3{letter-spacing:2.125360pt;}
.ls8{letter-spacing:2.125802pt;}
.ls18{letter-spacing:2.635446pt;}
.ls20{letter-spacing:2.652911pt;}
.ls27{letter-spacing:2.655711pt;}
.ls28{letter-spacing:2.656015pt;}
.ls19{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.656693pt;}
.ls2{letter-spacing:2.657067pt;}
.ls2f{letter-spacing:4.048479pt;}
.ls2e{letter-spacing:4.053812pt;}
.ls1e{letter-spacing:4.663578pt;}
.ls23{letter-spacing:8.853812pt;}
.ls26{letter-spacing:8.859145pt;}
.ls2c{letter-spacing:12.541383pt;}
.ls9{letter-spacing:12.754533pt;}
.ls2b{letter-spacing:14.757812pt;}
.ls1b{letter-spacing:15.812541pt;}
.ls1c{letter-spacing:15.813812pt;}
.ls2a{letter-spacing:15.907135pt;}
.ls17{letter-spacing:15.940160pt;}
.ls25{letter-spacing:17.486400pt;}
.ls1f{letter-spacing:18.229812pt;}
.ls22{letter-spacing:21.079578pt;}
.lsf{letter-spacing:22.910400pt;}
.ls1{letter-spacing:23.264533pt;}
.ls14{letter-spacing:25.503680pt;}
.ls13{letter-spacing:25.504320pt;}
.ls16{letter-spacing:25.505493pt;}
.ls15{letter-spacing:25.506347pt;}
.ls10{letter-spacing:25.563200pt;}
.ls1a{letter-spacing:27.339145pt;}
.ls21{letter-spacing:29.922245pt;}
.ws6c{word-spacing:-15.940160pt;}
.ws5{word-spacing:-14.611867pt;}
.ws4{word-spacing:-13.283467pt;}
.ws6d{word-spacing:-13.262246pt;}
.ws34{word-spacing:-10.626800pt;}
.ws35{word-spacing:-10.609830pt;}
.ws2f{word-spacing:-8.501467pt;}
.ws82{word-spacing:-4.410111pt;}
.ws2a{word-spacing:-2.128892pt;}
.ws2e{word-spacing:-2.126394pt;}
.ws32{word-spacing:-2.125360pt;}
.ws2c{word-spacing:-1.414027pt;}
.ws118{word-spacing:-0.850144pt;}
.wsec{word-spacing:-0.765130pt;}
.wsd8{word-spacing:-0.722622pt;}
.ws51{word-spacing:-0.680115pt;}
.ws9b{word-spacing:-0.637606pt;}
.ws10e{word-spacing:-0.552594pt;}
.wsc0{word-spacing:-0.478205pt;}
.ws107{word-spacing:-0.382565pt;}
.ws146{word-spacing:-0.265669pt;}
.ws29{word-spacing:-0.255043pt;}
.ws155{word-spacing:-0.159402pt;}
.ws165{word-spacing:-0.106268pt;}
.ws81{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.ws39{word-spacing:-0.042507pt;}
.ws13c{word-spacing:-0.012287pt;}
.ws2b{word-spacing:0.000000pt;}
.ws161{word-spacing:0.025417pt;}
.ws13d{word-spacing:0.030750pt;}
.wsaf{word-spacing:0.106268pt;}
.wsaa{word-spacing:0.159402pt;}
.wsab{word-spacing:0.212535pt;}
.ws15{word-spacing:0.286925pt;}
.ws137{word-spacing:0.297550pt;}
.ws14c{word-spacing:0.318803pt;}
.wsa2{word-spacing:0.371937pt;}
.ws12f{word-spacing:0.382565pt;}
.ws60{word-spacing:0.425071pt;}
.ws160{word-spacing:0.478205pt;}
.wsd3{word-spacing:0.584473pt;}
.ws151{word-spacing:0.637606pt;}
.wse2{word-spacing:0.680115pt;}
.ws102{word-spacing:0.765130pt;}
.ws72{word-spacing:0.850142pt;}
.ws128{word-spacing:0.935158pt;}
.wsa9{word-spacing:0.956410pt;}
.wsb5{word-spacing:1.020173pt;}
.ws92{word-spacing:1.062677pt;}
.ws79{word-spacing:1.115811pt;}
.ws16a{word-spacing:1.123741pt;}
.ws83{word-spacing:1.168945pt;}
.ws100{word-spacing:1.190202pt;}
.ws65{word-spacing:1.275213pt;}
.ws7{word-spacing:1.291162pt;}
.wse7{word-spacing:1.317723pt;}
.wsd6{word-spacing:1.360230pt;}
.ws6b{word-spacing:1.381481pt;}
.ws117{word-spacing:1.402738pt;}
.ws74{word-spacing:1.434614pt;}
.ws115{word-spacing:1.572766pt;}
.ws73{word-spacing:1.700284pt;}
.ws12b{word-spacing:1.700288pt;}
.ws5b{word-spacing:1.753418pt;}
.ws164{word-spacing:1.859685pt;}
.ws103{word-spacing:1.870317pt;}
.ws8b{word-spacing:1.912819pt;}
.ws157{word-spacing:1.955331pt;}
.wsfe{word-spacing:2.082853pt;}
.wsc5{word-spacing:2.125355pt;}
.ws30{word-spacing:2.125360pt;}
.ws178{word-spacing:2.167867pt;}
.ws91{word-spacing:2.178489pt;}
.wsb8{word-spacing:2.337890pt;}
.ws163{word-spacing:2.391024pt;}
.wscb{word-spacing:2.709827pt;}
.ws12d{word-spacing:2.805475pt;}
.ws139{word-spacing:2.847982pt;}
.ws69{word-spacing:2.922363pt;}
.wsc7{word-spacing:2.975497pt;}
.ws89{word-spacing:3.134898pt;}
.wse0{word-spacing:3.230547pt;}
.wsa0{word-spacing:3.347434pt;}
.ws104{word-spacing:3.358069pt;}
.ws133{word-spacing:3.485590pt;}
.wsd1{word-spacing:3.506835pt;}
.ws7e{word-spacing:3.559969pt;}
.wsea{word-spacing:3.655619pt;}
.wsb0{word-spacing:3.666237pt;}
.ws174{word-spacing:3.772505pt;}
.ws70{word-spacing:3.825638pt;}
.wsdf{word-spacing:3.825648pt;}
.ws159{word-spacing:3.878772pt;}
.wsff{word-spacing:3.910662pt;}
.ws25{word-spacing:4.038174pt;}
.ws175{word-spacing:4.038184pt;}
.ws16{word-spacing:4.064768pt;}
.ws11d{word-spacing:4.080691pt;}
.ws13f{word-spacing:4.091308pt;}
.ws112{word-spacing:4.165706pt;}
.ws93{word-spacing:4.197575pt;}
.ws36{word-spacing:4.203001pt;}
.ws2d{word-spacing:4.216727pt;}
.ws33{word-spacing:4.231673pt;}
.ws31{word-spacing:4.233756pt;}
.ws119{word-spacing:4.247164pt;}
.ws130{word-spacing:4.247387pt;}
.wseb{word-spacing:4.248794pt;}
.ws12e{word-spacing:4.249265pt;}
.ws134{word-spacing:4.249709pt;}
.ws158{word-spacing:4.250397pt;}
.ws28{word-spacing:4.250720pt;}
.ws37{word-spacing:4.250733pt;}
.wsd7{word-spacing:4.251828pt;}
.ws122{word-spacing:4.252324pt;}
.wsee{word-spacing:4.252764pt;}
.ws8e{word-spacing:4.303843pt;}
.ws177{word-spacing:4.335734pt;}
.ws162{word-spacing:4.410111pt;}
.wsd5{word-spacing:4.420749pt;}
.wse1{word-spacing:4.548270pt;}
.ws123{word-spacing:4.590778pt;}
.ws7a{word-spacing:4.622646pt;}
.ws110{word-spacing:4.633285pt;}
.ws98{word-spacing:4.675780pt;}
.ws124{word-spacing:4.675792pt;}
.wsb7{word-spacing:4.835182pt;}
.wsfa{word-spacing:4.845821pt;}
.wsb4{word-spacing:4.930835pt;}
.ws15c{word-spacing:4.941450pt;}
.ws15f{word-spacing:4.994583pt;}
.ws138{word-spacing:5.058357pt;}
.wsa4{word-spacing:5.100851pt;}
.ws88{word-spacing:5.153985pt;}
.wscd{word-spacing:5.207119pt;}
.ws11{word-spacing:5.260288pt;}
.ws10d{word-spacing:5.270893pt;}
.ws172{word-spacing:5.311504pt;}
.ws14f{word-spacing:5.312007pt;}
.ws3{word-spacing:5.313387pt;}
.ws156{word-spacing:5.313400pt;}
.ws6a{word-spacing:5.419654pt;}
.wsd{word-spacing:5.499392pt;}
.ws8a{word-spacing:5.525922pt;}
.wsef{word-spacing:5.525936pt;}
.ws12c{word-spacing:5.568443pt;}
.ws1d{word-spacing:5.595034pt;}
.wsd4{word-spacing:5.610950pt;}
.wsbe{word-spacing:5.685324pt;}
.wsd9{word-spacing:5.695965pt;}
.ws154{word-spacing:5.738458pt;}
.ws108{word-spacing:5.738472pt;}
.wsb6{word-spacing:5.791591pt;}
.ws2{word-spacing:5.844747pt;}
.wsfb{word-spacing:5.951008pt;}
.ws20{word-spacing:5.977600pt;}
.wsf0{word-spacing:5.993515pt;}
.ws71{word-spacing:6.004127pt;}
.ws114{word-spacing:6.036022pt;}
.ws116{word-spacing:6.078530pt;}
.ws64{word-spacing:6.110395pt;}
.ws7d{word-spacing:6.216662pt;}
.ws62{word-spacing:6.269796pt;}
.wsc3{word-spacing:6.376064pt;}
.ws127{word-spacing:6.418587pt;}
.ws48{word-spacing:6.429198pt;}
.ws7c{word-spacing:6.482332pt;}
.ws120{word-spacing:6.503602pt;}
.ws148{word-spacing:6.535466pt;}
.wsed{word-spacing:6.546109pt;}
.ws75{word-spacing:6.641733pt;}
.ws9{word-spacing:6.694912pt;}
.ws87{word-spacing:6.801135pt;}
.wsce{word-spacing:6.854269pt;}
.ws14{word-spacing:6.886195pt;}
.wsb{word-spacing:6.934016pt;}
.ws10f{word-spacing:6.971181pt;}
.wsc6{word-spacing:7.013670pt;}
.ws11f{word-spacing:7.013688pt;}
.wsa3{word-spacing:7.066804pt;}
.ws77{word-spacing:7.119938pt;}
.ws13a{word-spacing:7.183717pt;}
.wsf6{word-spacing:7.226224pt;}
.wsae{word-spacing:7.279340pt;}
.wsf5{word-spacing:7.311238pt;}
.wsf4{word-spacing:7.326310pt;}
.ws26{word-spacing:7.332474pt;}
.ws86{word-spacing:7.438741pt;}
.wsf9{word-spacing:7.438760pt;}
.ws1f{word-spacing:7.460045pt;}
.ws13e{word-spacing:7.491875pt;}
.ws27{word-spacing:7.598143pt;}
.wse8{word-spacing:7.608789pt;}
.ws143{word-spacing:7.651277pt;}
.wsac{word-spacing:7.704411pt;}
.ws97{word-spacing:7.821325pt;}
.ws169{word-spacing:7.863812pt;}
.ws7b{word-spacing:7.970080pt;}
.ws1a{word-spacing:7.986074pt;}
.ws10b{word-spacing:8.118875pt;}
.ws150{word-spacing:8.129482pt;}
.wsa{word-spacing:8.129536pt;}
.ws136{word-spacing:8.161382pt;}
.ws8c{word-spacing:8.182615pt;}
.ws14d{word-spacing:8.235749pt;}
.ws6f{word-spacing:8.342017pt;}
.wsc{word-spacing:8.368640pt;}
.wsfc{word-spacing:8.373918pt;}
.wsbd{word-spacing:8.395151pt;}
.ws12a{word-spacing:8.416426pt;}
.ws1c{word-spacing:8.464282pt;}
.ws8d{word-spacing:8.501419pt;}
.ws176{word-spacing:8.501440pt;}
.ws126{word-spacing:8.543947pt;}
.ws121{word-spacing:8.586454pt;}
.ws106{word-spacing:8.628962pt;}
.ws149{word-spacing:8.660820pt;}
.ws49{word-spacing:8.713954pt;}
.ws111{word-spacing:8.791078pt;}
.ws132{word-spacing:8.925406pt;}
.wse5{word-spacing:8.926379pt;}
.wsad{word-spacing:8.979623pt;}
.ws0{word-spacing:9.054034pt;}
.wsda{word-spacing:9.096541pt;}
.ws4d{word-spacing:9.139025pt;}
.ws11b{word-spacing:9.139048pt;}
.ws66{word-spacing:9.298427pt;}
.ws99{word-spacing:9.404694pt;}
.ws13b{word-spacing:9.436598pt;}
.wsc1{word-spacing:9.457828pt;}
.wse6{word-spacing:9.606627pt;}
.ws4e{word-spacing:9.617230pt;}
.ws19{word-spacing:9.659802pt;}
.ws129{word-spacing:9.691642pt;}
.ws10{word-spacing:9.755443pt;}
.ws6e{word-spacing:9.936033pt;}
.ws9d{word-spacing:9.989167pt;}
.ws9f{word-spacing:10.201702pt;}
.wsb3{word-spacing:10.361104pt;}
.ws5f{word-spacing:10.414238pt;}
.wse9{word-spacing:10.414264pt;}
.wsa5{word-spacing:10.467372pt;}
.ws47{word-spacing:10.573639pt;}
.ws1e{word-spacing:10.616218pt;}
.ws52{word-spacing:10.622634pt;}
.ws54{word-spacing:10.623034pt;}
.ws53{word-spacing:10.623867pt;}
.ws22{word-spacing:10.626773pt;}
.wsf3{word-spacing:10.669307pt;}
.ws80{word-spacing:10.733041pt;}
.ws101{word-spacing:10.881843pt;}
.ws9a{word-spacing:10.945577pt;}
.wsde{word-spacing:11.051872pt;}
.wsf7{word-spacing:11.094379pt;}
.wsc2{word-spacing:11.104978pt;}
.ws113{word-spacing:11.136886pt;}
.ws8f{word-spacing:11.317514pt;}
.ws11e{word-spacing:11.391930pt;}
.wsa8{word-spacing:11.423781pt;}
.ws15b{word-spacing:11.583183pt;}
.ws167{word-spacing:11.795718pt;}
.ws14e{word-spacing:11.901986pt;}
.wse4{word-spacing:11.944523pt;}
.ws46{word-spacing:11.955120pt;}
.ws13{word-spacing:12.050842pt;}
.wsa7{word-spacing:12.114522pt;}
.ws61{word-spacing:12.167655pt;}
.ws105{word-spacing:12.242074pt;}
.wsf1{word-spacing:12.284581pt;}
.ws142{word-spacing:12.380191pt;}
.ws135{word-spacing:12.497117pt;}
.ws168{word-spacing:12.592726pt;}
.ws131{word-spacing:12.624638pt;}
.wsb2{word-spacing:12.752128pt;}
.ws1{word-spacing:12.752160pt;}
.ws76{word-spacing:12.858396pt;}
.wsa6{word-spacing:12.964663pt;}
.ws23{word-spacing:13.017797pt;}
.wse{word-spacing:13.055078pt;}
.ws166{word-spacing:13.070931pt;}
.wse3{word-spacing:13.177232pt;}
.ws10c{word-spacing:13.219739pt;}
.ws4b{word-spacing:13.230333pt;}
.ws16d{word-spacing:13.279838pt;}
.ws16c{word-spacing:13.280999pt;}
.ws5d{word-spacing:13.283467pt;}
.wsb1{word-spacing:13.602270pt;}
.ws9e{word-spacing:13.708538pt;}
.ws109{word-spacing:13.899854pt;}
.ws85{word-spacing:13.974207pt;}
.ws67{word-spacing:14.027341pt;}
.ws4f{word-spacing:14.080475pt;}
.ws8{word-spacing:14.394061pt;}
.ws4c{word-spacing:14.452412pt;}
.ws16b{word-spacing:14.718081pt;}
.ws1b{word-spacing:14.728806pt;}
.ws50{word-spacing:14.824349pt;}
.wsd0{word-spacing:14.877483pt;}
.ws17{word-spacing:14.920090pt;}
.wsfd{word-spacing:15.047549pt;}
.ws145{word-spacing:15.196286pt;}
.ws15e{word-spacing:15.308274pt;}
.wsf2{word-spacing:15.345099pt;}
.ws147{word-spacing:15.461955pt;}
.ws11c{word-spacing:15.557635pt;}
.ws18{word-spacing:15.589581pt;}
.ws90{word-spacing:15.727625pt;}
.ws125{word-spacing:15.770171pt;}
.wsb9{word-spacing:15.940160pt;}
.wsd2{word-spacing:15.993294pt;}
.ws153{word-spacing:16.099562pt;}
.wsc4{word-spacing:16.205829pt;}
.ws11a{word-spacing:16.280258pt;}
.wsbc{word-spacing:16.418365pt;}
.ws15d{word-spacing:16.471499pt;}
.ws15a{word-spacing:16.737168pt;}
.ws78{word-spacing:16.843436pt;}
.ws140{word-spacing:16.949703pt;}
.wsba{word-spacing:17.055971pt;}
.wsbb{word-spacing:17.109105pt;}
.ws5e{word-spacing:17.215373pt;}
.wsdd{word-spacing:17.257923pt;}
.ws141{word-spacing:17.374774pt;}
.wscf{word-spacing:17.481042pt;}
.wsca{word-spacing:17.534176pt;}
.ws68{word-spacing:17.746711pt;}
.wsbf{word-spacing:17.799845pt;}
.ws21{word-spacing:17.884979pt;}
.ws84{word-spacing:18.178333pt;}
.wsf{word-spacing:18.219725pt;}
.ws14a{word-spacing:18.278050pt;}
.ws5c{word-spacing:18.384318pt;}
.wsc8{word-spacing:18.541882pt;}
.ws173{word-spacing:18.547215pt;}
.ws24{word-spacing:18.596853pt;}
.ws9c{word-spacing:18.703121pt;}
.ws4a{word-spacing:19.075058pt;}
.wsf8{word-spacing:19.164483pt;}
.ws152{word-spacing:19.181326pt;}
.ws14b{word-spacing:19.340727pt;}
.ws63{word-spacing:19.978334pt;}
.ws16f{word-spacing:20.244003pt;}
.ws12{word-spacing:20.276019pt;}
.wsa1{word-spacing:20.403405pt;}
.ws7f{word-spacing:20.615940pt;}
.wsc9{word-spacing:20.722208pt;}
.ws10a{word-spacing:21.323546pt;}
.ws144{word-spacing:24.040267pt;}
.ws57{word-spacing:25.460533pt;}
.ws56{word-spacing:25.461386pt;}
.ws55{word-spacing:25.461813pt;}
.ws59{word-spacing:25.462666pt;}
.ws5a{word-spacing:25.463306pt;}
.ws58{word-spacing:25.464906pt;}
.ws16e{word-spacing:27.045138pt;}
.wsdb{word-spacing:30.860227pt;}
.ws170{word-spacing:32.411659pt;}
.ws171{word-spacing:33.899407pt;}
.wscc{word-spacing:35.493423pt;}
.wsdc{word-spacing:42.124635pt;}
.ws3b{word-spacing:82.679067pt;}
.ws3a{word-spacing:115.327769pt;}
.ws3d{word-spacing:115.890000pt;}
.ws3c{word-spacing:120.082840pt;}
.ws42{word-spacing:120.657854pt;}
.ws3e{word-spacing:125.969854pt;}
.ws40{word-spacing:133.156533pt;}
.ws96{word-spacing:145.015230pt;}
.ws41{word-spacing:153.856572pt;}
.ws44{word-spacing:155.737867pt;}
.ws3f{word-spacing:159.764241pt;}
.ws43{word-spacing:183.515470pt;}
.ws38{word-spacing:213.950914pt;}
.ws45{word-spacing:222.238255pt;}
.ws94{word-spacing:399.548173pt;}
.ws95{word-spacing:407.814687pt;}
._2{margin-left:-14.154898pt;}
._13{margin-left:-12.412036pt;}
._0{margin-left:-10.201728pt;}
._9{margin-left:-7.545003pt;}
._1b{margin-left:-6.586667pt;}
._5{margin-left:-5.377167pt;}
._6{margin-left:-4.251481pt;}
._1{margin-left:-2.550432pt;}
._3{margin-left:-1.328347pt;}
._b{width:0.921793pt;}
._a{width:1.998818pt;}
._c{width:2.941398pt;}
._38{width:4.035130pt;}
._4{width:5.199263pt;}
._8{width:8.326097pt;}
._14{width:9.314347pt;}
._12{width:10.840097pt;}
._28{width:12.237425pt;}
._35{width:13.432275pt;}
._20{width:14.718081pt;}
._30{width:15.861173pt;}
._21{width:17.216177pt;}
._36{width:18.278096pt;}
._16{width:19.181326pt;}
._15{width:20.403405pt;}
._2c{width:21.354466pt;}
._1e{width:22.741295pt;}
._1d{width:23.803972pt;}
._29{width:24.729324pt;}
._7{width:26.381120pt;}
._32{width:28.394810pt;}
._1a{width:29.755040pt;}
._1f{width:31.157778pt;}
._2d{width:32.321323pt;}
._33{width:33.469030pt;}
._22{width:34.666588pt;}
._1c{width:36.938757pt;}
._37{width:38.341494pt;}
._27{width:39.600678pt;}
._25{width:40.806912pt;}
._34{width:41.954606pt;}
._26{width:44.048083pt;}
._2a{width:45.987394pt;}
._2f{width:48.968294pt;}
._2e{width:51.072407pt;}
._2b{width:54.476985pt;}
._31{width:55.421853pt;}
._23{width:104.923621pt;}
._d{width:120.117121pt;}
._f{width:125.991383pt;}
._24{width:140.263123pt;}
._11{width:142.693778pt;}
._e{width:183.838838pt;}
._10{width:202.643891pt;}
._17{width:407.814687pt;}
._19{width:486.770326pt;}
._18{width:545.892439pt;}
.fse{font-size:19.626667pt;}
.fs10{font-size:27.477333pt;}
.fsb{font-size:30.213867pt;}
.fs6{font-size:31.880533pt;}
.fsa{font-size:33.235253pt;}
.fsf{font-size:33.365333pt;}
.fs7{font-size:34.005867pt;}
.fs9{font-size:36.256640pt;}
.fs4{font-size:37.193600pt;}
.fsc{font-size:38.826667pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fsd{font-size:55.466667pt;}
.fs1{font-size:58.447467pt;}
.fs8{font-size:106.666667pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y12b{bottom:4.958800pt;}
.yc9{bottom:10.029587pt;}
.y133{bottom:17.578133pt;}
.y12c{bottom:21.319826pt;}
.y132{bottom:24.777133pt;}
.y131{bottom:35.896731pt;}
.y12d{bottom:37.748130pt;}
.y12e{bottom:54.176434pt;}
.yd3{bottom:61.673682pt;}
.yd4{bottom:69.162261pt;}
.yd2{bottom:69.886317pt;}
.y12f{bottom:70.604737pt;}
.yd1{bottom:77.996972pt;}
.yd0{bottom:86.007535pt;}
.y130{bottom:87.033041pt;}
.yc8{bottom:90.070130pt;}
.ycf{bottom:93.919846pt;}
.y54{bottom:100.740000pt;}
.y1c1{bottom:100.741333pt;}
.y12a{bottom:100.785964pt;}
.yce{bottom:101.735702pt;}
.yc6{bottom:103.469572pt;}
.y32{bottom:104.490667pt;}
.y129{bottom:107.984964pt;}
.ycd{bottom:109.456857pt;}
.y124{bottom:111.707766pt;}
.y53{bottom:112.696000pt;}
.y31{bottom:113.890667pt;}
.yd5{bottom:114.283619pt;}
.y122{bottom:116.680000pt;}
.y8f{bottom:116.681333pt;}
.ycc{bottom:117.085021pt;}
.y128{bottom:120.089729pt;}
.y52{bottom:124.650667pt;}
.yc7{bottom:125.116771pt;}
.y1c0{bottom:125.284000pt;}
.y30{bottom:125.846667pt;}
.y258{bottom:126.224000pt;}
.yc3{bottom:127.042667pt;}
.y125{bottom:130.227283pt;}
.y14b{bottom:132.523214pt;}
.y17b{bottom:132.620000pt;}
.yff{bottom:132.621333pt;}
.y259{bottom:136.606667pt;}
.y8e{bottom:136.865333pt;}
.y1bf{bottom:137.238667pt;}
.y51{bottom:140.356000pt;}
.y203{bottom:140.592000pt;}
.y257{bottom:142.164000pt;}
.yc2{bottom:142.982667pt;}
.yfe{bottom:148.561333pt;}
.y126{bottom:148.746799pt;}
.y1be{bottom:149.194667pt;}
.y2f{bottom:151.829333pt;}
.yec{bottom:152.504895pt;}
.y202{bottom:152.546667pt;}
.yd6{bottom:156.393613pt;}
.y148{bottom:156.748939pt;}
.y145{bottom:157.885404pt;}
.y256{bottom:158.105333pt;}
.yc1{bottom:158.924000pt;}
.y232{bottom:159.381333pt;}
.y1bd{bottom:161.782667pt;}
.y8d{bottom:161.857333pt;}
.yfd{bottom:164.501333pt;}
.y201{bottom:164.502667pt;}
.y50{bottom:165.573333pt;}
.y142{bottom:165.750904pt;}
.y127{bottom:167.266316pt;}
.ye9{bottom:167.674690pt;}
.y2e{bottom:167.769333pt;}
.y1bc{bottom:173.737333pt;}
.yc5{bottom:173.822968pt;}
.y255{bottom:174.045333pt;}
.yc0{bottom:174.864000pt;}
.y13f{bottom:175.953830pt;}
.y200{bottom:176.457333pt;}
.y8c{bottom:177.797333pt;}
.ye6{bottom:178.319506pt;}
.y159{bottom:180.441333pt;}
.yfc{bottom:180.881333pt;}
.y4f{bottom:181.513333pt;}
.y2d{bottom:183.710667pt;}
.y121{bottom:184.466667pt;}
.y1bb{bottom:185.692000pt;}
.y1ff{bottom:188.412000pt;}
.y254{bottom:189.985333pt;}
.ye3{bottom:190.313104pt;}
.ybf{bottom:190.804000pt;}
.y231{bottom:193.688000pt;}
.y8b{bottom:193.737333pt;}
.y158{bottom:196.381333pt;}
.yfb{bottom:196.822667pt;}
.y4e{bottom:197.453333pt;}
.y1ba{bottom:197.648000pt;}
.y2c{bottom:199.650667pt;}
.y1fe{bottom:200.368000pt;}
.ye0{bottom:205.494482pt;}
.y253{bottom:205.925333pt;}
.ybe{bottom:206.744000pt;}
.y120{bottom:208.416000pt;}
.y230{bottom:209.628000pt;}
.y8a{bottom:209.678667pt;}
.y14c{bottom:209.851367pt;}
.y1b9{bottom:210.236000pt;}
.y17a{bottom:212.321333pt;}
.y157{bottom:212.322667pt;}
.yfa{bottom:212.762667pt;}
.y4d{bottom:213.394667pt;}
.y13c{bottom:214.242867pt;}
.y2b{bottom:215.590667pt;}
.y149{bottom:217.140642pt;}
.y139{bottom:218.686718pt;}
.y140{bottom:219.571200pt;}
.y252{bottom:221.865333pt;}
.y1b8{bottom:222.190667pt;}
.y1fd{bottom:224.277333pt;}
.y11f{bottom:224.356000pt;}
.y22f{bottom:225.569333pt;}
.y89{bottom:225.618667pt;}
.ybd{bottom:226.778667pt;}
.y179{bottom:228.261333pt;}
.yf9{bottom:228.702667pt;}
.y4c{bottom:229.334667pt;}
.y136{bottom:230.491636pt;}
.yed{bottom:231.099609pt;}
.y146{bottom:231.697876pt;}
.y1b7{bottom:234.146667pt;}
.y143{bottom:235.844201pt;}
.y2a{bottom:236.157333pt;}
.y1fc{bottom:236.233333pt;}
.y251{bottom:237.806667pt;}
.y11e{bottom:240.296000pt;}
.y156{bottom:240.680000pt;}
.y22e{bottom:241.509333pt;}
.y88{bottom:241.558667pt;}
.y178{bottom:244.202667pt;}
.yf8{bottom:244.642667pt;}
.y4b{bottom:245.274667pt;}
.ydd{bottom:245.654994pt;}
.y1b6{bottom:246.101333pt;}
.yea{bottom:248.015098pt;}
.y1fb{bottom:248.188000pt;}
.ye1{bottom:248.394078pt;}
.ye7{bottom:248.438039pt;}
.yda{bottom:251.076129pt;}
.ybc{bottom:251.141333pt;}
.y250{bottom:253.746667pt;}
.ye4{bottom:254.716477pt;}
.y11d{bottom:256.236000pt;}
.y13d{bottom:256.580833pt;}
.y22d{bottom:257.449333pt;}
.y87{bottom:257.498667pt;}
.y1b5{bottom:258.689333pt;}
.y13a{bottom:260.045729pt;}
.y177{bottom:260.142667pt;}
.y1fa{bottom:260.144000pt;}
.yf7{bottom:260.582667pt;}
.y4a{bottom:261.214667pt;}
.y29{bottom:265.382667pt;}
.yd7{bottom:265.661445pt;}
.ybb{bottom:267.081333pt;}
.y24f{bottom:269.686667pt;}
.y1b4{bottom:270.644000pt;}
.y1f9{bottom:272.098667pt;}
.y11c{bottom:272.176000pt;}
.y14d{bottom:272.688721pt;}
.y137{bottom:273.402762pt;}
.y86{bottom:273.438667pt;}
.y22c{bottom:275.048000pt;}
.y176{bottom:276.082667pt;}
.y49{bottom:277.154667pt;}
.y155{bottom:277.249333pt;}
.y28{bottom:278.740000pt;}
.y14a{bottom:281.779215pt;}
.y1b3{bottom:282.600000pt;}
.yba{bottom:283.021333pt;}
.yf6{bottom:283.349333pt;}
.y1f8{bottom:284.053333pt;}
.y24e{bottom:285.626667pt;}
.y11b{bottom:288.117333pt;}
.y85{bottom:289.378667pt;}
.yde{bottom:289.964075pt;}
.y22b{bottom:290.989333pt;}
.y144{bottom:291.554869pt;}
.y27{bottom:292.022667pt;}
.y48{bottom:293.094667pt;}
.y154{bottom:293.189333pt;}
.ydb{bottom:293.321253pt;}
.yee{bottom:293.413079pt;}
.y141{bottom:294.854752pt;}
.y1b2{bottom:295.188000pt;}
.y1f7{bottom:296.009333pt;}
.yeb{bottom:296.874686pt;}
.y147{bottom:297.840656pt;}
.yb9{bottom:298.961333pt;}
.y24d{bottom:301.566667pt;}
.y11a{bottom:303.897333pt;}
.y26{bottom:305.306667pt;}
.y84{bottom:305.320000pt;}
.ye2{bottom:305.330354pt;}
.yd8{bottom:305.479274pt;}
.y22a{bottom:306.929333pt;}
.y1b1{bottom:307.142667pt;}
.y1f6{bottom:307.964000pt;}
.y47{bottom:309.036000pt;}
.y153{bottom:309.130667pt;}
.y55{bottom:309.333333pt;}
.yf5{bottom:311.998667pt;}
.y175{bottom:312.454667pt;}
.ye8{bottom:313.387868pt;}
.ye5{bottom:314.591944pt;}
.y13e{bottom:314.841091pt;}
.yb8{bottom:314.901333pt;}
.y24c{bottom:317.506667pt;}
.y25{bottom:318.590667pt;}
.y1b0{bottom:319.730667pt;}
.y119{bottom:319.837333pt;}
.y1f5{bottom:319.918667pt;}
.y83{bottom:321.260000pt;}
.yf0{bottom:322.199074pt;}
.y229{bottom:322.869333pt;}
.y46{bottom:324.976000pt;}
.y152{bottom:325.070667pt;}
.yf4{bottom:327.938667pt;}
.y13b{bottom:330.509709pt;}
.yb7{bottom:330.842667pt;}
.y1af{bottom:331.685333pt;}
.y24{bottom:331.873333pt;}
.y1f4{bottom:331.874667pt;}
.y24b{bottom:333.446667pt;}
.y118{bottom:335.777333pt;}
.y138{bottom:337.180621pt;}
.y82{bottom:337.200000pt;}
.yef{bottom:337.716740pt;}
.y174{bottom:337.797333pt;}
.y228{bottom:339.914667pt;}
.y45{bottom:340.916000pt;}
.y151{bottom:341.010667pt;}
.ydf{bottom:341.371384pt;}
.y1ae{bottom:343.641333pt;}
.y1f3{bottom:343.829333pt;}
.yf3{bottom:343.878667pt;}
.y23{bottom:345.157333pt;}
.yb6{bottom:346.782667pt;}
.ydc{bottom:347.006833pt;}
.y24a{bottom:349.388000pt;}
.y117{bottom:351.718667pt;}
.y81{bottom:353.140000pt;}
.y173{bottom:353.737333pt;}
.y1f2{bottom:355.785333pt;}
.y227{bottom:355.856000pt;}
.y1ad{bottom:356.229333pt;}
.yd9{bottom:356.501254pt;}
.y150{bottom:356.950667pt;}
.y22{bottom:358.441333pt;}
.yb5{bottom:362.722667pt;}
.y249{bottom:365.328000pt;}
.y116{bottom:367.658667pt;}
.y1f1{bottom:367.740000pt;}
.y1ac{bottom:368.184000pt;}
.y80{bottom:369.080000pt;}
.y172{bottom:369.677333pt;}
.y21{bottom:371.724000pt;}
.y226{bottom:371.796000pt;}
.yb4{bottom:378.662667pt;}
.y1f0{bottom:379.694667pt;}
.y1ab{bottom:380.140000pt;}
.y248{bottom:381.268000pt;}
.y115{bottom:383.598667pt;}
.y20{bottom:385.008000pt;}
.y7f{bottom:385.021333pt;}
.y171{bottom:385.617333pt;}
.y225{bottom:387.736000pt;}
.yf2{bottom:388.001333pt;}
.y44{bottom:391.040000pt;}
.y1ef{bottom:391.650667pt;}
.y1aa{bottom:392.728000pt;}
.yb3{bottom:394.602667pt;}
.y247{bottom:397.208000pt;}
.y1f{bottom:398.292000pt;}
.yf1{bottom:399.956000pt;}
.y170{bottom:401.609333pt;}
.y43{bottom:402.994667pt;}
.y114{bottom:403.564000pt;}
.y1ee{bottom:403.605333pt;}
.y224{bottom:403.676000pt;}
.y1a9{bottom:404.682667pt;}
.y7e{bottom:405.180000pt;}
.yb2{bottom:410.542667pt;}
.y1e{bottom:411.574667pt;}
.y246{bottom:413.148000pt;}
.y14f{bottom:413.212000pt;}
.ycb{bottom:414.385333pt;}
.y42{bottom:414.949333pt;}
.y1ed{bottom:415.560000pt;}
.y1a8{bottom:416.637333pt;}
.y16f{bottom:417.549333pt;}
.y223{bottom:419.616000pt;}
.y1d{bottom:424.858667pt;}
.y14e{bottom:425.168000pt;}
.yb1{bottom:426.484000pt;}
.y41{bottom:426.905333pt;}
.y113{bottom:427.513333pt;}
.y1ec{bottom:427.516000pt;}
.y1a7{bottom:428.593333pt;}
.y245{bottom:429.088000pt;}
.y7d{bottom:430.172000pt;}
.y16e{bottom:433.489333pt;}
.y222{bottom:435.557333pt;}
.y1c{bottom:438.141333pt;}
.y40{bottom:438.860000pt;}
.y1eb{bottom:439.470667pt;}
.y135{bottom:439.596000pt;}
.y1a6{bottom:441.181333pt;}
.yb0{bottom:442.424000pt;}
.y112{bottom:443.453333pt;}
.y244{bottom:445.029333pt;}
.y7c{bottom:446.112000pt;}
.y16d{bottom:449.430667pt;}
.y3f{bottom:450.816000pt;}
.y1b{bottom:451.425333pt;}
.y221{bottom:451.497333pt;}
.y1a5{bottom:453.136000pt;}
.yaf{bottom:458.364000pt;}
.y111{bottom:459.393333pt;}
.y3e{bottom:462.770667pt;}
.y1ea{bottom:463.381333pt;}
.y1a{bottom:464.709333pt;}
.y1a4{bottom:465.092000pt;}
.y243{bottom:465.153333pt;}
.y16c{bottom:465.421333pt;}
.y220{bottom:467.437333pt;}
.yae{bottom:474.304000pt;}
.y3d{bottom:474.725333pt;}
.y110{bottom:475.333333pt;}
.y1e9{bottom:475.336000pt;}
.y1a3{bottom:477.680000pt;}
.y19{bottom:477.992000pt;}
.y16b{bottom:481.361333pt;}
.y21f{bottom:485.036000pt;}
.y1e8{bottom:487.292000pt;}
.y1a2{bottom:489.634667pt;}
.y7b{bottom:489.662667pt;}
.y242{bottom:490.060000pt;}
.yad{bottom:490.244000pt;}
.y10f{bottom:491.273333pt;}
.y18{bottom:491.276000pt;}
.y3a{bottom:493.621333pt;}
.y16a{bottom:497.301333pt;}
.y1e7{bottom:499.246667pt;}
.y3c{bottom:499.598667pt;}
.y21e{bottom:500.976000pt;}
.y1a1{bottom:501.589333pt;}
.y17{bottom:504.560000pt;}
.y38{bottom:505.576000pt;}
.y7a{bottom:505.602667pt;}
.y241{bottom:506.000000pt;}
.yac{bottom:506.184000pt;}
.y10e{bottom:507.214667pt;}
.y1e6{bottom:511.201333pt;}
.y3b{bottom:511.554667pt;}
.y169{bottom:513.242667pt;}
.y1a0{bottom:514.177333pt;}
.y21d{bottom:516.917333pt;}
.y39{bottom:517.532000pt;}
.y16{bottom:517.842667pt;}
.y240{bottom:521.940000pt;}
.yab{bottom:522.125333pt;}
.y10d{bottom:522.994667pt;}
.y1e5{bottom:523.157333pt;}
.y19f{bottom:526.133333pt;}
.y168{bottom:529.182667pt;}
.y15{bottom:531.126667pt;}
.y79{bottom:532.093333pt;}
.y21c{bottom:532.857333pt;}
.y1e4{bottom:535.112000pt;}
.y37{bottom:536.161333pt;}
.y23f{bottom:537.880000pt;}
.yaa{bottom:538.065333pt;}
.y19e{bottom:538.088000pt;}
.y10c{bottom:538.934667pt;}
.y78{bottom:544.049333pt;}
.y14{bottom:544.410667pt;}
.y167{bottom:545.122667pt;}
.y1e3{bottom:547.066667pt;}
.y21b{bottom:548.797333pt;}
.y19d{bottom:550.676000pt;}
.y23e{bottom:553.821333pt;}
.ya9{bottom:553.914667pt;}
.y10b{bottom:554.876000pt;}
.y77{bottom:556.004000pt;}
.y13{bottom:557.693333pt;}
.y1e2{bottom:559.022667pt;}
.y166{bottom:561.062667pt;}
.y19c{bottom:562.630667pt;}
.y36{bottom:563.006667pt;}
.y21a{bottom:566.396000pt;}
.y76{bottom:567.960000pt;}
.y23d{bottom:569.761333pt;}
.ya8{bottom:569.854667pt;}
.y10a{bottom:570.816000pt;}
.y12{bottom:570.977333pt;}
.y19b{bottom:574.586667pt;}
.y35{bottom:574.962667pt;}
.y165{bottom:577.002667pt;}
.y75{bottom:579.914667pt;}
.y219{bottom:582.337333pt;}
.y1e1{bottom:582.933333pt;}
.y11{bottom:584.261333pt;}
.y23c{bottom:585.701333pt;}
.ya7{bottom:585.794667pt;}
.y109{bottom:586.756000pt;}
.y34{bottom:586.917333pt;}
.y19a{bottom:587.174667pt;}
.y74{bottom:591.869333pt;}
.y164{bottom:592.944000pt;}
.y1e0{bottom:594.888000pt;}
.y10{bottom:597.544000pt;}
.y218{bottom:598.277333pt;}
.y33{bottom:598.872000pt;}
.y199{bottom:599.129333pt;}
.y23b{bottom:601.641333pt;}
.ya6{bottom:601.736000pt;}
.y108{bottom:602.696000pt;}
.y73{bottom:603.825333pt;}
.y1df{bottom:606.842667pt;}
.y163{bottom:608.884000pt;}
.yf{bottom:610.828000pt;}
.y198{bottom:611.085333pt;}
.y72{bottom:615.780000pt;}
.y217{bottom:615.876000pt;}
.y23a{bottom:617.581333pt;}
.ya5{bottom:617.676000pt;}
.y107{bottom:618.636000pt;}
.y1de{bottom:618.798667pt;}
.y197{bottom:623.673333pt;}
.y162{bottom:624.824000pt;}
.y71{bottom:627.734667pt;}
.y1dd{bottom:630.753333pt;}
.y216{bottom:631.816000pt;}
.y239{bottom:633.522667pt;}
.ya4{bottom:633.616000pt;}
.y106{bottom:634.576000pt;}
.y196{bottom:635.628000pt;}
.y70{bottom:639.690667pt;}
.y161{bottom:640.764000pt;}
.y1dc{bottom:642.708000pt;}
.y195{bottom:648.216000pt;}
.y215{bottom:648.862667pt;}
.y238{bottom:649.462667pt;}
.ya3{bottom:649.556000pt;}
.y105{bottom:650.517333pt;}
.y6f{bottom:651.645333pt;}
.y1db{bottom:654.664000pt;}
.y160{bottom:656.704000pt;}
.y194{bottom:660.170667pt;}
.y6e{bottom:663.601333pt;}
.y214{bottom:664.802667pt;}
.y237{bottom:665.402667pt;}
.ya2{bottom:665.496000pt;}
.y1da{bottom:666.618667pt;}
.ye{bottom:666.777333pt;}
.y104{bottom:670.481333pt;}
.y193{bottom:672.126667pt;}
.y15f{bottom:672.644000pt;}
.y6d{bottom:675.556000pt;}
.y1d9{bottom:678.574667pt;}
.y213{bottom:680.742667pt;}
.ya1{bottom:681.436000pt;}
.yd{bottom:683.214667pt;}
.y192{bottom:684.081333pt;}
.y15e{bottom:688.585333pt;}
.y1d8{bottom:690.529333pt;}
.y103{bottom:694.430667pt;}
.y191{bottom:696.669333pt;}
.y212{bottom:696.682667pt;}
.ya0{bottom:697.377333pt;}
.y6c{bottom:699.466667pt;}
.yc{bottom:699.653333pt;}
.y1d7{bottom:702.484000pt;}
.y15d{bottom:704.525333pt;}
.y236{bottom:708.350667pt;}
.y190{bottom:708.624000pt;}
.y102{bottom:710.372000pt;}
.y6b{bottom:711.421333pt;}
.y211{bottom:712.624000pt;}
.y9f{bottom:713.317333pt;}
.y1d6{bottom:714.440000pt;}
.yb{bottom:716.092000pt;}
.y235{bottom:720.305333pt;}
.y15c{bottom:720.465333pt;}
.y18f{bottom:720.580000pt;}
.y6a{bottom:723.376000pt;}
.y101{bottom:726.312000pt;}
.y1d5{bottom:726.394667pt;}
.y210{bottom:728.564000pt;}
.y9e{bottom:729.257333pt;}
.y234{bottom:732.261333pt;}
.ya{bottom:732.530667pt;}
.y18e{bottom:732.534667pt;}
.y69{bottom:735.332000pt;}
.y15b{bottom:736.405333pt;}
.y1d4{bottom:738.349333pt;}
.y100{bottom:742.252000pt;}
.y233{bottom:744.216000pt;}
.y20f{bottom:744.504000pt;}
.y18d{bottom:745.122667pt;}
.y9d{bottom:745.197333pt;}
.y68{bottom:747.286667pt;}
.y9{bottom:749.165333pt;}
.y1d3{bottom:750.305333pt;}
.y15a{bottom:752.345333pt;}
.y18c{bottom:757.078667pt;}
.y67{bottom:759.242667pt;}
.y9c{bottom:761.137333pt;}
.y20e{bottom:762.102667pt;}
.y1d2{bottom:762.260000pt;}
.y18b{bottom:769.033333pt;}
.y66{bottom:771.197333pt;}
.y1d1{bottom:774.216000pt;}
.y20d{bottom:778.042667pt;}
.y18a{bottom:780.988000pt;}
.y9b{bottom:781.172000pt;}
.y8{bottom:782.502667pt;}
.y65{bottom:783.152000pt;}
.yca{bottom:785.200000pt;}
.y1d0{bottom:786.170667pt;}
.y189{bottom:793.576000pt;}
.y20c{bottom:793.984000pt;}
.y64{bottom:795.108000pt;}
.y134{bottom:795.293333pt;}
.y1cf{bottom:798.125333pt;}
.y7{bottom:798.941333pt;}
.yc4{bottom:799.629333pt;}
.y188{bottom:805.532000pt;}
.y9a{bottom:805.534667pt;}
.y63{bottom:807.062667pt;}
.y123{bottom:809.722667pt;}
.y20b{bottom:809.924000pt;}
.y1ce{bottom:810.081333pt;}
.y6{bottom:815.576000pt;}
.y187{bottom:817.486667pt;}
.y62{bottom:819.017333pt;}
.y99{bottom:821.474667pt;}
.y1cd{bottom:822.036000pt;}
.y20a{bottom:825.864000pt;}
.y186{bottom:830.074667pt;}
.y61{bottom:830.973333pt;}
.y1cc{bottom:833.990667pt;}
.y98{bottom:837.414667pt;}
.y209{bottom:841.804000pt;}
.y185{bottom:842.029333pt;}
.y60{bottom:842.928000pt;}
.y1cb{bottom:845.946667pt;}
.y5{bottom:848.913333pt;}
.y97{bottom:853.354667pt;}
.y184{bottom:853.985333pt;}
.y5f{bottom:854.884000pt;}
.y208{bottom:857.744000pt;}
.y1ca{bottom:857.901333pt;}
.y4{bottom:865.352000pt;}
.y183{bottom:866.573333pt;}
.y5e{bottom:866.838667pt;}
.y96{bottom:869.294667pt;}
.y1c9{bottom:869.856000pt;}
.y207{bottom:873.685333pt;}
.y182{bottom:878.528000pt;}
.y5d{bottom:878.793333pt;}
.y1c8{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y95{bottom:885.236000pt;}
.y206{bottom:889.625333pt;}
.y181{bottom:890.484000pt;}
.y5c{bottom:890.749333pt;}
.y1c7{bottom:893.766667pt;}
.y180{bottom:902.438667pt;}
.y94{bottom:905.269333pt;}
.y1c6{bottom:905.722667pt;}
.y5b{bottom:914.658667pt;}
.y17f{bottom:915.026667pt;}
.y205{bottom:916.385333pt;}
.y1c5{bottom:917.677333pt;}
.y2{bottom:923.830667pt;}
.y5a{bottom:926.614667pt;}
.y17e{bottom:926.981333pt;}
.y93{bottom:929.632000pt;}
.y59{bottom:938.569333pt;}
.y17d{bottom:938.937333pt;}
.y1c4{bottom:941.588000pt;}
.y92{bottom:945.572000pt;}
.y204{bottom:950.692000pt;}
.y17c{bottom:950.892000pt;}
.y1c3{bottom:953.542667pt;}
.y1{bottom:961.024000pt;}
.y91{bottom:961.513333pt;}
.y58{bottom:962.480000pt;}
.y1c2{bottom:965.497333pt;}
.y57{bottom:974.434667pt;}
.y90{bottom:977.453333pt;}
.y56{bottom:986.390667pt;}
.h19{height:18.233173pt;}
.ha{height:21.933807pt;}
.h1b{height:25.526443pt;}
.he{height:27.119594pt;}
.hf{height:27.502158pt;}
.h14{height:28.068682pt;}
.hd{height:28.394810pt;}
.h1c{height:29.159939pt;}
.h9{height:29.244954pt;}
.h1d{height:29.452954pt;}
.h1e{height:29.458287pt;}
.h13{height:30.875550pt;}
.h1a{height:30.996395pt;}
.h7{height:33.187635pt;}
.h6{height:33.426739pt;}
.h12{height:33.682419pt;}
.h16{height:36.069973pt;}
.h4{height:36.449833pt;}
.h3{height:36.556100pt;}
.h1f{height:39.106287pt;}
.h10{height:39.850400pt;}
.h2{height:40.211857pt;}
.h5{height:40.505190pt;}
.hb{height:44.869197pt;}
.h8{height:44.874530pt;}
.h17{height:51.528533pt;}
.h1{height:87.734861pt;}
.hc{height:104.687500pt;}
.h18{height:178.890627pt;}
.h11{height:188.981599pt;}
.h15{height:414.619575pt;}
.h0{height:1056.000000pt;}
.w2{width:388.976640pt;}
.w1{width:685.418244pt;}
.w3{width:685.441400pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5b{left:9.873133pt;}
.x34{left:11.752722pt;}
.x5a{left:13.568467pt;}
.x33{left:16.290872pt;}
.x38{left:30.545333pt;}
.x32{left:32.174397pt;}
.x5e{left:36.592000pt;}
.x2d{left:42.666667pt;}
.x39{left:54.656067pt;}
.x43{left:59.627295pt;}
.x5f{left:61.061190pt;}
.x1{left:65.285333pt;}
.x4{left:67.840000pt;}
.x64{left:70.598667pt;}
.x1a{left:75.912000pt;}
.x18{left:78.569333pt;}
.x46{left:83.959193pt;}
.x60{left:85.057785pt;}
.x2{left:89.197333pt;}
.x2e{left:90.789333pt;}
.x3{left:94.486667pt;}
.x3a{left:101.682760pt;}
.x5{left:104.369333pt;}
.x49{left:108.238937pt;}
.x44{left:110.223642pt;}
.x65{left:123.072000pt;}
.x3b{left:125.018967pt;}
.x2f{left:129.046667pt;}
.xd{left:130.270667pt;}
.x47{left:133.888203pt;}
.x37{left:138.298667pt;}
.x5d{left:147.028000pt;}
.x3c{left:149.099628pt;}
.x30{left:153.648000pt;}
.x45{left:157.318165pt;}
.x4d{left:158.359312pt;}
.x19{left:171.241333pt;}
.x3d{left:173.661964pt;}
.x59{left:179.020000pt;}
.x48{left:180.479765pt;}
.x4b{left:181.965311pt;}
.x50{left:183.362445pt;}
.x61{left:191.930667pt;}
.x6b{left:193.060000pt;}
.x16{left:194.488000pt;}
.x63{left:195.464000pt;}
.x3e{left:198.452400pt;}
.x35{left:200.767773pt;}
.x4a{left:203.871250pt;}
.x4e{left:206.152703pt;}
.x53{left:208.620515pt;}
.x3f{left:223.638425pt;}
.x4c{left:227.323814pt;}
.x51{left:230.718223pt;}
.x56{left:234.113839pt;}
.x36{left:244.418534pt;}
.x4f{left:251.294211pt;}
.x54{left:255.690034pt;}
.x40{left:264.044668pt;}
.x52{left:275.544169pt;}
.x57{left:280.691069pt;}
.x15{left:290.408000pt;}
.x14{left:292.840000pt;}
.x8{left:293.914667pt;}
.x13{left:295.010667pt;}
.x55{left:299.730567pt;}
.x17{left:300.822667pt;}
.x41{left:306.987573pt;}
.x58{left:324.530779pt;}
.x9{left:332.324000pt;}
.x5c{left:339.316700pt;}
.x42{left:348.278460pt;}
.xf{left:352.886667pt;}
.x11{left:353.841333pt;}
.x6{left:359.589333pt;}
.xe{left:363.345333pt;}
.x12{left:367.649333pt;}
.x2b{left:415.970667pt;}
.x29{left:423.940000pt;}
.x1d{left:424.856000pt;}
.x2c{left:426.597333pt;}
.x7{left:428.236000pt;}
.x31{left:429.253333pt;}
.x1c{left:434.230667pt;}
.x2a{left:435.390667pt;}
.x1e{left:439.261333pt;}
.x66{left:440.316000pt;}
.x28{left:444.609333pt;}
.x1f{left:454.212000pt;}
.x68{left:461.074667pt;}
.x21{left:511.897333pt;}
.xb{left:519.990667pt;}
.x67{left:526.265333pt;}
.x62{left:527.970667pt;}
.x69{left:533.784000pt;}
.x6c{left:543.745333pt;}
.xc{left:554.606667pt;}
.x10{left:555.722667pt;}
.x1b{left:563.088000pt;}
.xa{left:583.744000pt;}
.x6a{left:589.060000pt;}
.x23{left:595.137333pt;}
.x22{left:596.613333pt;}
.x20{left:626.825333pt;}
.x24{left:634.689333pt;}
.x25{left:639.206667pt;}
.x26{left:674.412000pt;}
.x27{left:687.897333pt;}
}




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