
    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_db616fd02d380271d4b203f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_3a4016122f20af5e1d49ac0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_f48d121708466e3ad3927b32.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.933000;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_26e3bd423c09c955ac1b76e1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.009000;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_b5a0e423ba22c4cf46594035.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.691000;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_2ef83d746cd438b4e35060ce.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.761000;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_4207ad763544e4e6abe9873a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.014160;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_642533c8af49033c1b5f774a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_3a8176105fcfe1a1d43301bd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.209961;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_987a607ae55ebb9e4d2af0a6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;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_d4ce05cd35a78668853aac1a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.209961;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_46f5bcec38284d88c67caf8c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.014160;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_fc452d77e86ebd9034810815.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.665000;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_6e5ef93a87d5c5b4e0138765.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4207ad763544e4e6abe9873a.woff2')format("woff");}.fff{font-family:fff;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d38f7a9ed52397b4086caa83.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_86ad8ffa959bd3ad3f692ca4.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.209961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1c771eeb067bd55a8f04db32.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_a8c85d20cd499242fda0d3f9.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.209961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_936ea4931dcc3620f6d1dd4c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_1ce4750b1c2f0a00f794b9b0.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.014160;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:ff16;src:url('chunks/assets/font_4207ad763544e4e6abe9873a.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.014160;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:ff17;src:url('chunks/assets/font_642533c8af49033c1b5f774a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;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:ff18;src:url('chunks/assets/font_a794ed0504178156c61723e6.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.209961;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:ff19;src:url('chunks/assets/font_6eda3cb92acfb9a4c407aab1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.006348;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:ff1a;src:url('chunks/assets/font_d96744c05cfa8d493aba4aa8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.209961;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:ff1b;src:url('chunks/assets/font_7022f509ea14676af6ac6cc6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.014160;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:ff1c;src:url('chunks/assets/font_4207ad763544e4e6abe9873a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.014160;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:ff1d;src:url('chunks/assets/font_642533c8af49033c1b5f774a.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.006348;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:ff1e;src:url('chunks/assets/font_12e62f36f19db44acefd7104.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.209961;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:ff1f;src:url('chunks/assets/font_2a57a0d9e67d1ba518e15f89.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.006348;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:ff20;src:url('chunks/assets/font_cb5a628288e979d3a3f62637.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.209961;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:ff21;src:url('chunks/assets/font_b2226524fcaff395c293afb6.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.014160;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:ff22;src:url('chunks/assets/font_4207ad763544e4e6abe9873a.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.014160;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:ff23;src:url('chunks/assets/font_ae2792220cf558c23fdb1877.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.006348;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:ff24;src:url('chunks/assets/font_228999b5e7a7e649063d6753.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.209961;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:ff25;src:url('chunks/assets/font_b8a03265aa1ab656ec56fa18.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.006348;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:ff26;src:url('chunks/assets/font_bb2f95524eb79ba0aada63f2.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.209961;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:ff27;src:url('chunks/assets/font_11a29ad54dcf2672ba9f917b.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.014160;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:ff28;src:url('chunks/assets/font_0153182c4fda4b594918e0a1.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.726000;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;}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10{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:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v5{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v6{vertical-align:32.880000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls63{letter-spacing:-0.350892px;}
.ls5c{letter-spacing:-0.344783px;}
.ls40{letter-spacing:-0.328853px;}
.ls41{letter-spacing:-0.327852px;}
.ls64{letter-spacing:-0.122812px;}
.ls14{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.000419px;}
.ls68{letter-spacing:0.000503px;}
.ls80{letter-spacing:0.000566px;}
.ls71{letter-spacing:0.000589px;}
.ls0{letter-spacing:0.000600px;}
.ls79{letter-spacing:0.000676px;}
.ls69{letter-spacing:0.000800px;}
.ls6b{letter-spacing:0.001036px;}
.ls84{letter-spacing:0.001084px;}
.ls82{letter-spacing:0.001123px;}
.ls75{letter-spacing:0.001155px;}
.ls6d{letter-spacing:0.001254px;}
.ls16{letter-spacing:0.001298px;}
.ls2c{letter-spacing:0.001324px;}
.ls15{letter-spacing:0.001328px;}
.ls73{letter-spacing:0.001565px;}
.ls72{letter-spacing:0.001584px;}
.ls2{letter-spacing:0.001831px;}
.ls9{letter-spacing:0.001952px;}
.ls70{letter-spacing:0.002045px;}
.ls65{letter-spacing:0.002074px;}
.ls6c{letter-spacing:0.002096px;}
.ls6f{letter-spacing:0.002311px;}
.ls6a{letter-spacing:0.002544px;}
.ls5{letter-spacing:0.002725px;}
.ls83{letter-spacing:0.003070px;}
.ls1{letter-spacing:0.003116px;}
.lsa{letter-spacing:0.003488px;}
.ls66{letter-spacing:0.003859px;}
.ls1c{letter-spacing:0.004630px;}
.ls77{letter-spacing:0.004800px;}
.ls81{letter-spacing:0.004957px;}
.ls19{letter-spacing:0.005686px;}
.ls3d{letter-spacing:0.163926px;}
.ls2f{letter-spacing:0.164426px;}
.ls53{letter-spacing:0.172391px;}
.ls5e{letter-spacing:0.175446px;}
.ls17{letter-spacing:0.180000px;}
.ls3e{letter-spacing:0.272117px;}
.ls30{letter-spacing:0.272948px;}
.ls31{letter-spacing:0.284787px;}
.ls3f{letter-spacing:0.327852px;}
.ls33{letter-spacing:0.328853px;}
.ls54{letter-spacing:0.344783px;}
.ls5f{letter-spacing:0.350892px;}
.ls18{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.449213px;}
.ls34{letter-spacing:0.493279px;}
.ls48{letter-spacing:0.717483px;}
.ls47{letter-spacing:0.723483px;}
.ls22{letter-spacing:2.994600px;}
.ls4{letter-spacing:2.998354px;}
.ls35{letter-spacing:4.110660px;}
.ls3{letter-spacing:10.603130px;}
.ls10{letter-spacing:11.941616px;}
.ls13{letter-spacing:11.954850px;}
.ls28{letter-spacing:12.530693px;}
.ls4a{letter-spacing:12.785669px;}
.ls45{letter-spacing:12.999955px;}
.lse{letter-spacing:13.215086px;}
.ls60{letter-spacing:13.245698px;}
.ls49{letter-spacing:13.274467px;}
.ls11{letter-spacing:13.416484px;}
.ls7c{letter-spacing:13.444518px;}
.ls56{letter-spacing:13.444800px;}
.ls67{letter-spacing:13.448400px;}
.lsd{letter-spacing:13.450800px;}
.ls7e{letter-spacing:13.454400px;}
.ls55{letter-spacing:13.513275px;}
.ls85{letter-spacing:13.571506px;}
.ls12{letter-spacing:13.657375px;}
.ls78{letter-spacing:13.659933px;}
.ls6e{letter-spacing:13.694131px;}
.ls7d{letter-spacing:13.789176px;}
.ls20{letter-spacing:14.094088px;}
.ls21{letter-spacing:14.100088px;}
.ls7a{letter-spacing:14.285694px;}
.ls5a{letter-spacing:14.475465px;}
.ls5b{letter-spacing:14.481588px;}
.ls4c{letter-spacing:14.693732px;}
.ls76{letter-spacing:14.697459px;}
.ls7b{letter-spacing:14.720988px;}
.ls51{letter-spacing:14.724243px;}
.ls59{letter-spacing:14.730919px;}
.ls4f{letter-spacing:14.743468px;}
.ls57{letter-spacing:14.788117px;}
.ls46{letter-spacing:14.827051px;}
.ls38{letter-spacing:14.865141px;}
.ls37{letter-spacing:14.871024px;}
.ls1b{letter-spacing:14.885108px;}
.ls1f{letter-spacing:14.944200px;}
.ls7{letter-spacing:14.945108px;}
.ls52{letter-spacing:14.988830px;}
.ls2b{letter-spacing:15.015426px;}
.ls3c{letter-spacing:15.015621px;}
.lsf{letter-spacing:15.018447px;}
.ls3b{letter-spacing:15.021657px;}
.ls50{letter-spacing:15.035729px;}
.ls5d{letter-spacing:15.054566px;}
.ls58{letter-spacing:15.139667px;}
.ls24{letter-spacing:15.154796px;}
.ls29{letter-spacing:15.179410px;}
.ls2a{letter-spacing:15.185520px;}
.ls26{letter-spacing:15.191792px;}
.ls2d{letter-spacing:15.194434px;}
.ls27{letter-spacing:15.197914px;}
.ls2e{letter-spacing:15.200525px;}
.lsc{letter-spacing:15.265506px;}
.ls44{letter-spacing:15.318082px;}
.ls61{letter-spacing:15.818082px;}
.ls62{letter-spacing:15.823965px;}
.ls74{letter-spacing:16.091576px;}
.ls3a{letter-spacing:16.794553px;}
.ls39{letter-spacing:16.800435px;}
.ls4b{letter-spacing:17.500435px;}
.ls4e{letter-spacing:17.559259px;}
.ls4d{letter-spacing:17.565141px;}
.ls36{letter-spacing:17.671024px;}
.ls25{letter-spacing:19.600435px;}
.ls1d{letter-spacing:21.312200px;}
.ls1e{letter-spacing:21.318082px;}
.ls43{letter-spacing:21.576906px;}
.ls42{letter-spacing:23.303159px;}
.ls6{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lsb{letter-spacing:64.321654px;}
.ls23{letter-spacing:462.505133px;}
.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;}
}
.wsa0{word-spacing:-58.248072px;}
.ws79{word-spacing:-49.327920px;}
.ws5e{word-spacing:-15.300000px;}
.ws6c{word-spacing:-14.943900px;}
.wsa2{word-spacing:-14.912910px;}
.ws96{word-spacing:-14.653269px;}
.wsa3{word-spacing:-14.562018px;}
.ws95{word-spacing:-14.308486px;}
.wsa1{word-spacing:-14.211126px;}
.ws78{word-spacing:-13.976244px;}
.ws97{word-spacing:-13.963703px;}
.ws84{word-spacing:-13.933710px;}
.ws7a{word-spacing:-13.647391px;}
.ws82{word-spacing:-13.605858px;}
.ws28{word-spacing:-13.449600px;}
.ws77{word-spacing:-13.318538px;}
.ws83{word-spacing:-13.278006px;}
.ws5b{word-spacing:-12.420000px;}
.ws81{word-spacing:-12.294450px;}
.ws9e{word-spacing:-12.105774px;}
.ws5a{word-spacing:-12.060000px;}
.ws16{word-spacing:-11.955150px;}
.ws93{word-spacing:-11.895007px;}
.ws9d{word-spacing:-11.754882px;}
.ws5c{word-spacing:-11.700000px;}
.ws92{word-spacing:-11.550224px;}
.ws9f{word-spacing:-11.403990px;}
.ws14{word-spacing:-11.357400px;}
.ws75{word-spacing:-11.345422px;}
.ws7f{word-spacing:-11.310894px;}
.ws94{word-spacing:-11.205441px;}
.ws74{word-spacing:-11.016569px;}
.ws7e{word-spacing:-10.983042px;}
.ws76{word-spacing:-10.687716px;}
.ws80{word-spacing:-10.655190px;}
.ws1{word-spacing:-10.460700px;}
.ws5d{word-spacing:-9.000000px;}
.ws40{word-spacing:-2.988780px;}
.ws3f{word-spacing:-2.630126px;}
.ws6b{word-spacing:-2.199748px;}
.ws8f{word-spacing:-2.151922px;}
.ws8a{word-spacing:-1.972595px;}
.wsaf{word-spacing:-1.853044px;}
.ws42{word-spacing:-1.733492px;}
.ws26{word-spacing:-1.560154px;}
.wsac{word-spacing:-1.554166px;}
.ws25{word-spacing:-1.506355px;}
.ws1d{word-spacing:-1.344960px;}
.ws62{word-spacing:-1.315063px;}
.ws58{word-spacing:-1.255288px;}
.wsd5{word-spacing:-1.237363px;}
.wsd2{word-spacing:-0.968371px;}
.wsd3{word-spacing:-0.961665px;}
.ws53{word-spacing:-0.896634px;}
.ws5f{word-spacing:-0.836858px;}
.wsd4{word-spacing:-0.753178px;}
.ws7{word-spacing:-0.669485px;}
.wsb7{word-spacing:-0.645581px;}
.ws37{word-spacing:-0.597756px;}
.wscf{word-spacing:-0.591782px;}
.wse0{word-spacing:-0.537984px;}
.ws9c{word-spacing:-0.478205px;}
.wsce{word-spacing:-0.430387px;}
.ws61{word-spacing:-0.418429px;}
.ws6a{word-spacing:-0.376589px;}
.ws34{word-spacing:-0.358654px;}
.wscb{word-spacing:-0.322790px;}
.ws44{word-spacing:-0.298878px;}
.ws23{word-spacing:-0.268992px;}
.ws31{word-spacing:-0.239102px;}
.ws1a{word-spacing:-0.215194px;}
.ws32{word-spacing:-0.179327px;}
.wsbb{word-spacing:-0.161395px;}
.ws30{word-spacing:-0.119551px;}
.ws1f{word-spacing:-0.107597px;}
.wse{word-spacing:-0.059776px;}
.ws27{word-spacing:-0.053798px;}
.ws15{word-spacing:-0.047821px;}
.ws2{word-spacing:-0.041843px;}
.wsb8{word-spacing:-0.020957px;}
.wscc{word-spacing:-0.004118px;}
.ws99{word-spacing:-0.001594px;}
.ws12{word-spacing:-0.000950px;}
.ws13{word-spacing:-0.000866px;}
.ws8b{word-spacing:-0.000814px;}
.ws3{word-spacing:0.000000px;}
.ws11{word-spacing:0.000334px;}
.wsf{word-spacing:0.001792px;}
.ws2a{word-spacing:0.053798px;}
.ws3a{word-spacing:0.059776px;}
.ws17{word-spacing:0.095641px;}
.wsb4{word-spacing:0.107597px;}
.ws38{word-spacing:0.119551px;}
.ws4{word-spacing:0.125528px;}
.ws21{word-spacing:0.161395px;}
.ws36{word-spacing:0.179327px;}
.ws29{word-spacing:0.215194px;}
.ws4c{word-spacing:0.239102px;}
.ws1e{word-spacing:0.268992px;}
.ws49{word-spacing:0.298878px;}
.wsb3{word-spacing:0.322790px;}
.ws4f{word-spacing:0.358654px;}
.wsa7{word-spacing:0.418429px;}
.wsd6{word-spacing:0.591782px;}
.ws87{word-spacing:0.597756px;}
.ws6f{word-spacing:0.642086px;}
.ws72{word-spacing:0.648086px;}
.ws67{word-spacing:0.655834px;}
.ws2f{word-spacing:0.657532px;}
.ws69{word-spacing:0.658234px;}
.ws68{word-spacing:0.661834px;}
.ws73{word-spacing:0.667613px;}
.ws66{word-spacing:0.672000px;}
.ws71{word-spacing:0.673200px;}
.ws6e{word-spacing:0.695885px;}
.ws4e{word-spacing:0.717307px;}
.ws8c{word-spacing:0.743100px;}
.ws3e{word-spacing:0.836858px;}
.wsa4{word-spacing:0.896634px;}
.wsc6{word-spacing:0.914573px;}
.wsa5{word-spacing:0.956410px;}
.wsda{word-spacing:0.968371px;}
.wsa8{word-spacing:1.016185px;}
.wsde{word-spacing:1.022170px;}
.wsc8{word-spacing:1.237363px;}
.ws56{word-spacing:1.255288px;}
.wsdc{word-spacing:1.291162px;}
.ws1b{word-spacing:1.344960px;}
.wsd{word-spacing:1.380812px;}
.wse8{word-spacing:1.398758px;}
.ws3c{word-spacing:1.434614px;}
.wse9{word-spacing:1.452557px;}
.ws46{word-spacing:1.494390px;}
.ws57{word-spacing:1.554166px;}
.ws24{word-spacing:1.560154px;}
.ws59{word-spacing:1.673717px;}
.ws63{word-spacing:1.733492px;}
.ws22{word-spacing:1.829146px;}
.ws7d{word-spacing:1.853044px;}
.wsb6{word-spacing:1.882944px;}
.ws3d{word-spacing:1.912819px;}
.ws4a{word-spacing:1.972595px;}
.wsa6{word-spacing:2.032370px;}
.wsc1{word-spacing:2.044339px;}
.wse5{word-spacing:2.098138px;}
.ws4d{word-spacing:2.271473px;}
.wsb0{word-spacing:2.331248px;}
.ws60{word-spacing:2.450800px;}
.ws91{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws90{word-spacing:2.570351px;}
.ws54{word-spacing:2.630126px;}
.wsc2{word-spacing:2.636122px;}
.ws39{word-spacing:2.689902px;}
.wse3{word-spacing:2.689920px;}
.ws7c{word-spacing:2.749678px;}
.ws51{word-spacing:2.869229px;}
.ws18{word-spacing:2.869236px;}
.ws19{word-spacing:2.953205px;}
.ws9a{word-spacing:3.048556px;}
.ws2e{word-spacing:3.168107px;}
.wsd0{word-spacing:3.174106px;}
.ws2b{word-spacing:3.219667px;}
.wsb5{word-spacing:3.224822px;}
.wsbd{word-spacing:3.225600px;}
.wsf2{word-spacing:3.226253px;}
.wsca{word-spacing:3.227904px;}
.wsc0{word-spacing:3.227933px;}
.wse4{word-spacing:3.281702px;}
.ws98{word-spacing:3.335501px;}
.ws1c{word-spacing:3.389299px;}
.wse1{word-spacing:3.408393px;}
.wsaa{word-spacing:3.466985px;}
.wsf4{word-spacing:3.496896px;}
.wsab{word-spacing:3.526760px;}
.ws2c{word-spacing:3.586536px;}
.wsae{word-spacing:3.646312px;}
.wsad{word-spacing:3.706087px;}
.ws85{word-spacing:3.712090px;}
.ws9b{word-spacing:3.885414px;}
.wsc5{word-spacing:3.927283px;}
.ws2d{word-spacing:4.124516px;}
.ws35{word-spacing:4.244068px;}
.ws48{word-spacing:4.303843px;}
.ws7b{word-spacing:4.303872px;}
.ws8e{word-spacing:4.423394px;}
.wsa9{word-spacing:4.483170px;}
.wsd9{word-spacing:4.519066px;}
.ws86{word-spacing:4.572864px;}
.ws6d{word-spacing:4.602721px;}
.ws55{word-spacing:4.662497px;}
.ws3b{word-spacing:4.901599px;}
.ws20{word-spacing:5.003251px;}
.ws50{word-spacing:5.021150px;}
.wsb2{word-spacing:5.080926px;}
.wse6{word-spacing:5.326042px;}
.wse7{word-spacing:5.379840px;}
.wsb{word-spacing:5.481407px;}
.ws43{word-spacing:5.559131px;}
.ws88{word-spacing:5.678682px;}
.wsd8{word-spacing:5.702630px;}
.wsb1{word-spacing:5.858009px;}
.ws64{word-spacing:6.336214px;}
.ws65{word-spacing:6.395989px;}
.ws8d{word-spacing:6.515540px;}
.ws89{word-spacing:6.635092px;}
.wsed{word-spacing:6.778598px;}
.ws4b{word-spacing:6.874194px;}
.ws52{word-spacing:7.711052px;}
.ws47{word-spacing:7.890379px;}
.wsec{word-spacing:8.500147px;}
.ws9{word-spacing:9.833058px;}
.wsa{word-spacing:11.841512px;}
.ws33{word-spacing:11.908715px;}
.ws5{word-spacing:13.096796px;}
.wsbf{word-spacing:13.389187px;}
.wsc4{word-spacing:13.389734px;}
.wsd1{word-spacing:13.390157px;}
.wsf0{word-spacing:13.391491px;}
.wscd{word-spacing:13.392230px;}
.wsf1{word-spacing:13.394957px;}
.wsba{word-spacing:13.395802px;}
.wsbe{word-spacing:13.396157px;}
.wsee{word-spacing:13.402913px;}
.wse2{word-spacing:13.449600px;}
.wsf3{word-spacing:13.503398px;}
.wsc9{word-spacing:13.610995px;}
.wsdf{word-spacing:13.718592px;}
.ws41{word-spacing:14.884124px;}
.ws6{word-spacing:15.481836px;}
.wsc3{word-spacing:15.493939px;}
.wsef{word-spacing:16.300915px;}
.wsea{word-spacing:16.408512px;}
.wseb{word-spacing:16.462310px;}
.wsb9{word-spacing:16.623706px;}
.wsdd{word-spacing:16.892698px;}
.wsbc{word-spacing:16.946496px;}
.ws45{word-spacing:18.470660px;}
.wsd7{word-spacing:18.937037px;}
.wsc7{word-spacing:19.905408px;}
.wsdb{word-spacing:19.959206px;}
.ws8{word-spacing:22.339429px;}
.wsc{word-spacing:22.720640px;}
.ws10{word-spacing:40.042186px;}
.ws70{word-spacing:246.981216px;}
._3a{margin-left:-7.792346px;}
._12{margin-left:-6.683446px;}
._0{margin-left:-5.401032px;}
._10{margin-left:-4.399495px;}
._3c{margin-left:-3.383366px;}
._3{margin-left:-2.343197px;}
._1{margin-left:-1.087382px;}
._16{width:1.070899px;}
._5{width:2.999338px;}
._1b{width:4.247741px;}
._1a{width:5.475245px;}
._1c{width:7.345632px;}
._19{width:9.023760px;}
._18{width:10.099440px;}
._39{width:11.381400px;}
._2{width:12.716562px;}
._a{width:14.256576px;}
._7{width:15.816730px;}
._9{width:17.352950px;}
._e{width:18.470660px;}
._c{width:20.144377px;}
._b{width:21.869459px;}
._15{width:23.551586px;}
._4{width:25.314894px;}
._8{width:27.275789px;}
._d{width:28.572737px;}
._35{width:29.967322px;}
._13{width:33.832990px;}
._14{width:38.854140px;}
._6{width:69.349742px;}
._2d{width:77.308301px;}
._2c{width:89.251546px;}
._2b{width:101.194790px;}
._32{width:154.401408px;}
._31{width:164.730701px;}
._2e{width:168.012403px;}
._2a{width:182.442818px;}
._33{width:183.775334px;}
._30{width:210.703603px;}
._2f{width:211.990426px;}
._22{width:307.963234px;}
._20{width:321.015053px;}
._28{width:334.970030px;}
._1d{width:352.433318px;}
._26{width:471.865766px;}
._27{width:485.941294px;}
._25{width:491.081940px;}
._1f{width:498.764966px;}
._1e{width:525.407719px;}
._24{width:531.433140px;}
._23{width:543.363840px;}
._21{width:570.209242px;}
._29{width:597.162240px;}
._f{width:934.591919px;}
._36{width:1896.742317px;}
._34{width:1902.518465px;}
._37{width:1994.442465px;}
._38{width:2029.903299px;}
._17{width:2082.453917px;}
._3b{width:2496.631874px;}
._11{width:2520.541874px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(43,79,113);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fsb{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs12{font-size:43.932168px;}
.fse{font-size:44.066275px;}
.fs4{font-size:45.429600px;}
.fs15{font-size:46.200895px;}
.fs18{font-size:47.019528px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:48.240000px;}
.fs14{font-size:49.177800px;}
.fsf{font-size:49.327920px;}
.fsd{font-size:49.829400px;}
.fs17{font-size:51.717420px;}
.fs1a{font-size:52.633800px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs13{font-size:54.423432px;}
.fs10{font-size:54.589565px;}
.fsc{font-size:56.058000px;}
.fs16{font-size:57.233945px;}
.fs19{font-size:58.248072px;}
.fs9{font-size:59.760000px;}
.fs2{font-size:59.775600px;}
.fs11{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:124.175159px;}
.y1b2{bottom:-652.432502px;}
.y1b1{bottom:-633.835226px;}
.yd3{bottom:-628.410000px;}
.y1b0{bottom:-615.062504px;}
.yd2{bottom:-609.150000px;}
.y1af{bottom:-596.289782px;}
.yd1{bottom:-589.890000px;}
.y1ae{bottom:-577.522908px;}
.yd0{bottom:-570.816000px;}
.y1ad{bottom:-558.750186px;}
.ycf{bottom:-551.556000px;}
.y1ac{bottom:-540.152910px;}
.yce{bottom:-532.296000px;}
.y1ab{bottom:-521.380188px;}
.ycd{bottom:-513.036000px;}
.y1aa{bottom:-502.607466px;}
.ycc{bottom:-493.776000px;}
.y1a9{bottom:-483.834744px;}
.ycb{bottom:-474.696000px;}
.y1a8{bottom:-465.062022px;}
.yca{bottom:-450.936000px;}
.y1a7{bottom:-446.464746px;}
.y1a6{bottom:-427.692024px;}
.yc9{bottom:-413.676000px;}
.y1a5{bottom:-408.875441px;}
.y162{bottom:-402.934206px;}
.yc8{bottom:-394.371000px;}
.y1a4{bottom:-390.102719px;}
.y161{bottom:-385.353143px;}
.yc7{bottom:-375.111000px;}
.y1a3{bottom:-371.329997px;}
.y160{bottom:-367.813061px;}
.yc6{bottom:-356.031000px;}
.y1a2{bottom:-352.732721px;}
.y15f{bottom:-350.272979px;}
.yc5{bottom:-336.771000px;}
.y1a1{bottom:-333.959999px;}
.y15e{bottom:-332.896823px;}
.yc4{bottom:-317.511000px;}
.y15d{bottom:-315.356741px;}
.y1a0{bottom:-315.187277px;}
.y17f{bottom:-310.896397px;}
.yc3{bottom:-298.251000px;}
.y15c{bottom:-297.816659px;}
.y19f{bottom:-296.414555px;}
.y17e{bottom:-292.622909px;}
.y15b{bottom:-280.276577px;}
.yc2{bottom:-278.991000px;}
.y19e{bottom:-277.641833px;}
.y17d{bottom:-274.177029px;}
.y13a{bottom:-265.974774px;}
.y15a{bottom:-262.736495px;}
.yc1{bottom:-259.911000px;}
.y19d{bottom:-259.044557px;}
.y17c{bottom:-255.731149px;}
.y139{bottom:-248.381150px;}
.y159{bottom:-245.360339px;}
.yc0{bottom:-240.651000px;}
.y19c{bottom:-240.271835px;}
.y17b{bottom:-237.285269px;}
.y138{bottom:-230.787525px;}
.y158{bottom:-227.820257px;}
.y19b{bottom:-221.499113px;}
.ybf{bottom:-221.391000px;}
.y17a{bottom:-218.839390px;}
.y137{bottom:-213.199381px;}
.y157{bottom:-210.280175px;}
.y19a{bottom:-202.726391px;}
.ybe{bottom:-202.131000px;}
.y179{bottom:-200.565901px;}
.y136{bottom:-195.770183px;}
.y156{bottom:-192.740093px;}
.ybd{bottom:-182.871000px;}
.y178{bottom:-182.120021px;}
.y199{bottom:-179.742965px;}
.y135{bottom:-178.176558px;}
.y155{bottom:-175.200011px;}
.ybc{bottom:-163.791000px;}
.y177{bottom:-163.674142px;}
.y134{bottom:-160.582933px;}
.y154{bottom:-157.823855px;}
.y176{bottom:-145.199530px;}
.ybb{bottom:-144.531000px;}
.y198{bottom:-143.396402px;}
.y133{bottom:-142.989308px;}
.y153{bottom:-140.256452px;}
.y175{bottom:-126.753650px;}
.y132{bottom:-125.395683px;}
.yba{bottom:-125.241000px;}
.y197{bottom:-124.623680px;}
.y152{bottom:-122.716370px;}
.y131{bottom:-107.966485px;}
.yb9{bottom:-105.981000px;}
.y196{bottom:-105.850958px;}
.y151{bottom:-105.176288px;}
.y174{bottom:-104.170377px;}
.yb8{bottom:-86.721000px;}
.y130{bottom:-86.262200px;}
.y150{bottom:-83.538056px;}
.y195{bottom:-70.059974px;}
.y173{bottom:-69.002531px;}
.yb7{bottom:-63.141000px;}
.y194{bottom:-53.217158px;}
.y12f{bottom:-52.719215px;}
.y172{bottom:-52.452957px;}
.y14f{bottom:-50.097152px;}
.y12e{bottom:-36.893174px;}
.y193{bottom:-36.374342px;}
.y171{bottom:-35.730991px;}
.y14e{bottom:-34.360256px;}
.yb6{bottom:-26.421000px;}
.y12d{bottom:-21.108239px;}
.y192{bottom:-19.531526px;}
.y170{bottom:-19.181416px;}
.y14d{bottom:-18.623360px;}
.y16f{bottom:-6.252061px;}
.yb5{bottom:-3.741000px;}
.y12c{bottom:-0.554939px;}
.y0{bottom:0.000000px;}
.y14c{bottom:1.867390px;}
.y191{bottom:2.399224px;}
.y1a{bottom:3.695543px;}
.y11a{bottom:4.110660px;}
.y11c{bottom:4.275086px;}
.y121{bottom:13.482965px;}
.y120{bottom:22.690843px;}
.y19{bottom:27.214164px;}
.y49{bottom:31.890000px;}
.y48{bottom:104.128500px;}
.y17{bottom:104.646000px;}
.y114{bottom:110.130000px;}
.y165{bottom:111.483000px;}
.y18d{bottom:111.951000px;}
.yec{bottom:111.961500px;}
.y1d0{bottom:112.732500px;}
.y7d{bottom:115.561500px;}
.yb1{bottom:116.907000px;}
.y224{bottom:118.296000px;}
.y1ed{bottom:120.672000px;}
.y16{bottom:122.535000px;}
.y47{bottom:122.958000px;}
.y113{bottom:128.959500px;}
.y164{bottom:130.716000px;}
.y18c{bottom:130.780500px;}
.yeb{bottom:130.791000px;}
.y1cf{bottom:131.562000px;}
.y223{bottom:135.556500px;}
.yb0{bottom:135.736500px;}
.y7c{bottom:138.874500px;}
.y15{bottom:140.422500px;}
.y46{bottom:141.787500px;}
.y1ec{bottom:147.213000px;}
.y112{bottom:147.789000px;}
.y18b{bottom:149.610000px;}
.yea{bottom:149.620500px;}
.y163{bottom:149.949000px;}
.y1ce{bottom:150.391500px;}
.y222{bottom:152.817000px;}
.yaf{bottom:154.566000px;}
.y14{bottom:158.310000px;}
.y7b{bottom:159.048000px;}
.y45{bottom:160.615500px;}
.y1eb{bottom:164.787000px;}
.y111{bottom:166.618500px;}
.y18a{bottom:168.439500px;}
.y1cd{bottom:169.221000px;}
.y221{bottom:170.077500px;}
.y149{bottom:172.378500px;}
.ye9{bottom:172.932000px;}
.yad{bottom:173.395500px;}
.y13{bottom:176.199000px;}
.yae{bottom:178.819500px;}
.y44{bottom:179.445000px;}
.y1ea{bottom:182.361000px;}
.y110{bottom:185.448000px;}
.y189{bottom:187.269000px;}
.y220{bottom:187.338000px;}
.y1cc{bottom:188.050500px;}
.yac{bottom:192.225000px;}
.y7a{bottom:192.672000px;}
.y12{bottom:194.086500px;}
.y43{bottom:198.274500px;}
.y1e9{bottom:199.935000px;}
.y10f{bottom:204.277500px;}
.y21f{bottom:204.598500px;}
.y188{bottom:206.097000px;}
.ye8{bottom:206.556000px;}
.y1cb{bottom:206.880000px;}
.yab{bottom:211.054500px;}
.y79{bottom:211.501500px;}
.y11{bottom:211.974000px;}
.y1e8{bottom:217.509000px;}
.y42{bottom:221.587500px;}
.y21e{bottom:221.859000px;}
.y187{bottom:224.926500px;}
.ye7{bottom:225.385500px;}
.y1ca{bottom:225.709500px;}
.y10{bottom:229.863000px;}
.yaa{bottom:229.884000px;}
.y78{bottom:230.331000px;}
.y1e7{bottom:235.084500px;}
.y21d{bottom:239.118000px;}
.y186{bottom:243.756000px;}
.ye6{bottom:244.215000px;}
.y10e{bottom:244.411500px;}
.y1c9{bottom:244.539000px;}
.ya9{bottom:248.712000px;}
.y77{bottom:249.160500px;}
.y1e6{bottom:252.658500px;}
.y21c{bottom:256.378500px;}
.y185{bottom:262.585500px;}
.ye5{bottom:263.044500px;}
.y10d{bottom:263.254500px;}
.y1c8{bottom:263.368500px;}
.y252{bottom:267.243000px;}
.ya8{bottom:267.541500px;}
.y76{bottom:267.990000px;}
.y21b{bottom:273.639000px;}
.ye4{bottom:281.874000px;}
.y1c7{bottom:282.198000px;}
.y251{bottom:284.503500px;}
.y184{bottom:285.898500px;}
.ya7{bottom:286.371000px;}
.y75{bottom:286.819500px;}
.y10c{bottom:286.896000px;}
.y1e5{bottom:288.165000px;}
.y21a{bottom:290.899500px;}
.y41{bottom:296.737500px;}
.yf{bottom:299.892000px;}
.ye3{bottom:300.703500px;}
.y1c6{bottom:301.027500px;}
.y250{bottom:301.764000px;}
.ya6{bottom:305.200500px;}
.y74{bottom:305.649000px;}
.y1e4{bottom:306.994500px;}
.y219{bottom:308.160000px;}
.y10b{bottom:310.536000px;}
.y183{bottom:316.326000px;}
.ye{bottom:317.779500px;}
.ye2{bottom:319.533000px;}
.y1c5{bottom:319.857000px;}
.ya5{bottom:324.030000px;}
.y73{bottom:324.478500px;}
.y218{bottom:325.420500px;}
.y1e3{bottom:325.824000px;}
.y10a{bottom:326.974500px;}
.y40{bottom:334.128000px;}
.y182{bottom:335.559000px;}
.yd{bottom:335.667000px;}
.ye1{bottom:338.362500px;}
.y1c4{bottom:338.686500px;}
.y24f{bottom:340.842000px;}
.y217{bottom:342.681000px;}
.ya4{bottom:342.859500px;}
.y72{bottom:343.308000px;}
.y1e2{bottom:344.653500px;}
.y12b{bottom:345.425611px;}
.y109{bottom:350.616000px;}
.yc{bottom:353.554500px;}
.y3f{bottom:353.584500px;}
.y181{bottom:354.792000px;}
.ye0{bottom:357.192000px;}
.y1c3{bottom:357.516000px;}
.y24e{bottom:358.102500px;}
.y216{bottom:359.941500px;}
.y14b{bottom:361.917189px;}
.y71{bottom:362.137500px;}
.y12a{bottom:363.019236px;}
.y1e1{bottom:363.483000px;}
.ya3{bottom:366.172500px;}
.y14a{bottom:370.605267px;}
.y3e{bottom:373.042500px;}
.y180{bottom:374.025000px;}
.y108{bottom:374.256000px;}
.y24d{bottom:375.363000px;}
.ydf{bottom:376.021500px;}
.y1c2{bottom:376.345500px;}
.y215{bottom:377.202000px;}
.y129{bottom:380.612860px;}
.y70{bottom:380.967000px;}
.yb{bottom:381.904500px;}
.y1e0{bottom:382.312500px;}
.y3d{bottom:392.499000px;}
.y24c{bottom:392.623500px;}
.y190{bottom:394.418691px;}
.y214{bottom:394.461000px;}
.yde{bottom:394.851000px;}
.y1c1{bottom:395.175000px;}
.y16c{bottom:396.454500px;}
.y16e{bottom:397.388036px;}
.y107{bottom:397.897500px;}
.y128{bottom:398.042059px;}
.ya2{bottom:399.796500px;}
.y1df{bottom:401.142000px;}
.y18f{bottom:403.717329px;}
.y6f{bottom:404.280000px;}
.y16d{bottom:406.524780px;}
.ya{bottom:408.759000px;}
.y24b{bottom:409.884000px;}
.y213{bottom:411.721500px;}
.y3c{bottom:411.955500px;}
.ydd{bottom:413.680500px;}
.y1c0{bottom:414.003000px;}
.y127{bottom:415.635684px;}
.ya1{bottom:418.626000px;}
.y1de{bottom:419.971500px;}
.y106{bottom:421.537500px;}
.y9{bottom:426.646500px;}
.y24a{bottom:427.144500px;}
.y212{bottom:428.982000px;}
.y3b{bottom:431.413500px;}
.ydc{bottom:432.510000px;}
.y1bf{bottom:432.832500px;}
.y126{bottom:433.229308px;}
.yb4{bottom:436.074000px;}
.ya0{bottom:437.455500px;}
.y6e{bottom:437.904000px;}
.y1dd{bottom:443.283000px;}
.y249{bottom:444.403500px;}
.y8{bottom:444.534000px;}
.yb3{bottom:445.614000px;}
.y211{bottom:446.242500px;}
.y125{bottom:450.864040px;}
.y3a{bottom:450.870000px;}
.ydb{bottom:451.339500px;}
.y1be{bottom:451.662000px;}
.y105{bottom:453.157500px;}
.y9f{bottom:456.285000px;}
.y6d{bottom:456.733500px;}
.y248{bottom:461.664000px;}
.y7{bottom:462.423000px;}
.y210{bottom:463.503000px;}
.yda{bottom:470.169000px;}
.y39{bottom:470.326500px;}
.y1bd{bottom:470.491500px;}
.y9e{bottom:475.114500px;}
.y6c{bottom:475.563000px;}
.y1dc{bottom:476.907000px;}
.y247{bottom:478.924500px;}
.y6{bottom:480.310500px;}
.y20f{bottom:480.763500px;}
.y124{bottom:484.407026px;}
.yd9{bottom:488.998500px;}
.y104{bottom:489.178500px;}
.y1bc{bottom:489.321000px;}
.y38{bottom:489.784500px;}
.y9d{bottom:493.944000px;}
.y6b{bottom:494.392500px;}
.y1db{bottom:495.736500px;}
.y246{bottom:496.185000px;}
.y20e{bottom:498.024000px;}
.y5{bottom:498.198000px;}
.yd8{bottom:507.828000px;}
.y103{bottom:508.008000px;}
.y1bb{bottom:508.150500px;}
.y37{bottom:509.241000px;}
.y9c{bottom:512.773500px;}
.y6a{bottom:513.222000px;}
.y245{bottom:513.445500px;}
.y1da{bottom:514.566000px;}
.y20d{bottom:515.284500px;}
.y4{bottom:516.087000px;}
.y148{bottom:524.974500px;}
.yd7{bottom:526.657500px;}
.y102{bottom:526.837500px;}
.y36{bottom:528.699000px;}
.y244{bottom:530.706000px;}
.y1ba{bottom:531.463500px;}
.y9b{bottom:531.603000px;}
.y69{bottom:532.051500px;}
.y20c{bottom:532.543500px;}
.y1d9{bottom:533.395500px;}
.y3{bottom:533.974500px;}
.y147{bottom:543.804000px;}
.yd6{bottom:545.487000px;}
.y101{bottom:545.667000px;}
.y243{bottom:547.966500px;}
.y35{bottom:548.155500px;}
.y20b{bottom:549.804000px;}
.y2{bottom:551.862000px;}
.y1d8{bottom:552.225000px;}
.y9a{bottom:554.916000px;}
.y68{bottom:555.363000px;}
.y146{bottom:562.633500px;}
.y1b9{bottom:565.087500px;}
.y242{bottom:565.227000px;}
.y20a{bottom:567.064500px;}
.y34{bottom:567.612000px;}
.yd5{bottom:568.798500px;}
.y100{bottom:568.978500px;}
.y1{bottom:569.751000px;}
.y1d7{bottom:571.054500px;}
.y67{bottom:575.538000px;}
.y145{bottom:581.463000px;}
.y241{bottom:582.487500px;}
.y1b8{bottom:583.917000px;}
.y209{bottom:584.325000px;}
.y33{bottom:587.070000px;}
.y99{bottom:588.538500px;}
.y1d6{bottom:589.884000px;}
.yd4{bottom:599.226000px;}
.y240{bottom:599.746500px;}
.y144{bottom:600.292500px;}
.y208{bottom:601.585500px;}
.yff{bottom:602.602500px;}
.y1b7{bottom:602.746500px;}
.y32{bottom:606.526500px;}
.y98{bottom:607.368000px;}
.y1d5{bottom:608.713500px;}
.y66{bottom:609.162000px;}
.y23f{bottom:617.007000px;}
.y207{bottom:618.846000px;}
.y143{bottom:619.122000px;}
.yfe{bottom:621.432000px;}
.yb2{bottom:624.645000px;}
.y31{bottom:625.983000px;}
.y97{bottom:626.197500px;}
.y1d4{bottom:627.543000px;}
.y65{bottom:627.991500px;}
.y23e{bottom:634.267500px;}
.y206{bottom:636.106500px;}
.y1b6{bottom:636.312000px;}
.y142{bottom:637.951500px;}
.y96{bottom:645.027000px;}
.y30{bottom:645.441000px;}
.y1d3{bottom:646.372500px;}
.y64{bottom:646.821000px;}
.y23d{bottom:651.528000px;}
.y205{bottom:653.367000px;}
.y1b5{bottom:655.545000px;}
.y141{bottom:656.781000px;}
.yfd{bottom:661.566000px;}
.y118{bottom:663.138522px;}
.y95{bottom:663.856500px;}
.y2f{bottom:664.897500px;}
.y1d2{bottom:665.202000px;}
.y63{bottom:665.650500px;}
.y23c{bottom:668.788500px;}
.y204{bottom:670.627500px;}
.y1b4{bottom:674.778000px;}
.y140{bottom:675.610500px;}
.yfc{bottom:675.762000px;}
.y94{bottom:682.686000px;}
.y2e{bottom:684.355500px;}
.y62{bottom:684.480000px;}
.y23b{bottom:686.049000px;}
.y203{bottom:687.886500px;}
.y1d1{bottom:688.515000px;}
.y1b3{bottom:694.011000px;}
.y13f{bottom:694.440000px;}
.yfb{bottom:694.606500px;}
.y93{bottom:701.515500px;}
.y61{bottom:703.309500px;}
.y202{bottom:705.147000px;}
.yfa{bottom:711.045000px;}
.y117{bottom:711.836141px;}
.y18e{bottom:716.440500px;}
.y13e{bottom:717.753000px;}
.y92{bottom:720.345000px;}
.y116{bottom:720.550740px;}
.y23a{bottom:720.570000px;}
.y60{bottom:722.139000px;}
.y201{bottom:722.407500px;}
.y2d{bottom:722.940000px;}
.yf9{bottom:727.483500px;}
.y239{bottom:737.829000px;}
.y2c{bottom:739.080000px;}
.y91{bottom:739.174500px;}
.y200{bottom:739.668000px;}
.y5f{bottom:740.968500px;}
.yf8{bottom:743.922000px;}
.y13d{bottom:748.180500px;}
.y238{bottom:755.089500px;}
.y1ff{bottom:756.928500px;}
.y90{bottom:758.004000px;}
.y2b{bottom:759.559500px;}
.y5e{bottom:759.798000px;}
.y13c{bottom:767.413500px;}
.yf7{bottom:767.562000px;}
.y2a{bottom:771.358500px;}
.y237{bottom:772.350000px;}
.y16b{bottom:774.144000px;}
.y1fe{bottom:774.189000px;}
.y8f{bottom:776.833500px;}
.y5d{bottom:778.627500px;}
.y13b{bottom:786.646500px;}
.y236{bottom:789.610500px;}
.yf6{bottom:791.202000px;}
.y1fd{bottom:791.449500px;}
.y29{bottom:791.838000px;}
.y16a{bottom:792.973500px;}
.y8e{bottom:795.663000px;}
.y5c{bottom:797.457000px;}
.y28{bottom:803.638500px;}
.y235{bottom:806.871000px;}
.y1fc{bottom:808.710000px;}
.y115{bottom:809.076000px;}
.y169{bottom:811.803000px;}
.y8d{bottom:814.492500px;}
.yf5{bottom:815.232000px;}
.y5b{bottom:816.286500px;}
.y27{bottom:819.777000px;}
.y26{bottom:824.116500px;}
.y234{bottom:824.131500px;}
.y1fb{bottom:825.969000px;}
.y168{bottom:830.632500px;}
.y5a{bottom:835.114500px;}
.y8c{bottom:837.805500px;}
.yf4{bottom:838.873500px;}
.y25{bottom:840.256500px;}
.y233{bottom:841.392000px;}
.y1fa{bottom:843.229500px;}
.y167{bottom:849.462000px;}
.y24{bottom:852.057000px;}
.y8b{bottom:853.497000px;}
.y59{bottom:853.944000px;}
.y232{bottom:858.652500px;}
.y1f9{bottom:860.490000px;}
.yf3{bottom:862.513500px;}
.y166{bottom:868.291500px;}
.y23{bottom:872.536500px;}
.y58{bottom:872.773500px;}
.y231{bottom:875.913000px;}
.y1f8{bottom:877.750500px;}
.yf2{bottom:878.952000px;}
.y22{bottom:884.335500px;}
.y8a{bottom:887.121000px;}
.y57{bottom:891.603000px;}
.y230{bottom:893.172000px;}
.y1f7{bottom:895.011000px;}
.yf1{bottom:902.593500px;}
.y21{bottom:904.815000px;}
.y89{bottom:905.950500px;}
.y56{bottom:910.432500px;}
.y1f6{bottom:912.271500px;}
.y88{bottom:924.778500px;}
.yf0{bottom:926.233500px;}
.y22f{bottom:927.693000px;}
.y55{bottom:929.262000px;}
.y1f5{bottom:934.015500px;}
.y87{bottom:943.608000px;}
.y22e{bottom:944.953500px;}
.y54{bottom:948.091500px;}
.y20{bottom:949.491000px;}
.yef{bottom:949.875000px;}
.y22d{bottom:962.214000px;}
.y86{bottom:962.437500px;}
.y53{bottom:966.921000px;}
.y1f4{bottom:967.639500px;}
.y1f{bottom:968.320500px;}
.yee{bottom:973.515000px;}
.y22c{bottom:979.474500px;}
.y85{bottom:981.267000px;}
.y52{bottom:985.750500px;}
.y1f3{bottom:994.179000px;}
.y22b{bottom:996.735000px;}
.y84{bottom:1000.096500px;}
.y51{bottom:1004.580000px;}
.yed{bottom:1005.135000px;}
.y1e{bottom:1008.240000px;}
.y1f2{bottom:1011.753000px;}
.y22a{bottom:1013.995500px;}
.y83{bottom:1018.926000px;}
.y50{bottom:1023.409500px;}
.y1f1{bottom:1029.327000px;}
.y229{bottom:1031.254500px;}
.y1d{bottom:1036.485000px;}
.y81{bottom:1037.755500px;}
.y4f{bottom:1042.239000px;}
.y82{bottom:1043.181000px;}
.y228{bottom:1048.515000px;}
.y1f0{bottom:1055.868000px;}
.y80{bottom:1056.585000px;}
.y4e{bottom:1061.068500px;}
.y1c{bottom:1064.728500px;}
.y227{bottom:1065.775500px;}
.y7f{bottom:1075.414500px;}
.y4d{bottom:1079.898000px;}
.y1ef{bottom:1082.409000px;}
.y226{bottom:1083.036000px;}
.y1b{bottom:1092.972000px;}
.y7e{bottom:1094.244000px;}
.y4c{bottom:1098.727500px;}
.y1ee{bottom:1099.983000px;}
.y225{bottom:1100.296500px;}
.y4b{bottom:1117.557000px;}
.y18{bottom:1136.460000px;}
.y4a{bottom:1177.662000px;}
.y123{bottom:1307.130417px;}
.y122{bottom:1326.368306px;}
.y11f{bottom:1345.441768px;}
.y11e{bottom:1383.095413px;}
.y11d{bottom:1402.333302px;}
.y11b{bottom:1421.406765px;}
.y119{bottom:1440.644654px;}
.h21{height:-308.143295px;}
.h23{height:-288.905406px;}
.h25{height:-269.831944px;}
.h26{height:-250.594055px;}
.h27{height:-212.940409px;}
.h28{height:-193.866947px;}
.h29{height:-174.629058px;}
.ha{height:26.110157px;}
.hc{height:26.296208px;}
.he{height:26.302208px;}
.h2b{height:27.855430px;}
.h3{height:30.461558px;}
.h4{height:30.670772px;}
.h15{height:33.072749px;}
.hb{height:34.813397px;}
.h13{height:35.052500px;}
.h2{height:38.202476px;}
.h1b{height:38.896243px;}
.hf{height:39.165235px;}
.h10{height:39.434227px;}
.h31{height:39.887486px;}
.h2a{height:40.009246px;}
.h22{height:40.195832px;}
.h2e{height:40.628675px;}
.h1f{height:40.752698px;}
.h2c{height:41.482876px;}
.h36{height:41.947339px;}
.h33{height:42.726804px;}
.h3b{height:42.889694px;}
.h11{height:43.217759px;}
.h38{height:43.483880px;}
.h12{height:43.516637px;}
.hd{height:43.660208px;}
.h1a{height:43.798711px;}
.h7{height:43.815515px;}
.h17{height:44.612578px;}
.h30{height:45.479860px;}
.h20{height:45.618692px;}
.h35{height:47.828512px;}
.h3a{height:48.675985px;}
.h3c{height:49.117939px;}
.h1c{height:49.782344px;}
.h19{height:49.939453px;}
.h2f{height:50.331045px;}
.h24{height:50.484685px;}
.h5{height:50.931027px;}
.h34{height:52.930220px;}
.h39{height:53.868090px;}
.h9{height:54.547601px;}
.h14{height:54.575123px;}
.h18{height:55.266328px;}
.h1d{height:72.045235px;}
.h8{height:77.792486px;}
.h6{height:84.190758px;}
.h1e{height:323.425359px;}
.h2d{height:329.044562px;}
.h32{height:354.137907px;}
.h37{height:358.646713px;}
.h16{height:396.352500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:97.044461px;}
.w9{width:99.523189px;}
.w7{width:105.890602px;}
.w8{width:105.923487px;}
.w5{width:123.108786px;}
.w2{width:207.609956px;}
.w4{width:531.501487px;}
.wa{width:531.534153px;}
.wb{width:574.027447px;}
.wc{width:578.310953px;}
.w3{width:788.476200px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x9b{left:-194.211841px;}
.xae{left:-190.585528px;}
.x4d{left:-179.167227px;}
.x5d{left:-176.971778px;}
.x9d{left:-6.793658px;}
.x0{left:0.000000px;}
.x50{left:1.644264px;}
.x3a{left:3.851700px;}
.x51{left:6.905909px;}
.x56{left:13.732345px;}
.x54{left:17.185299px;}
.x57{left:19.651695px;}
.x55{left:21.704285px;}
.x9e{left:23.719620px;}
.x59{left:28.695147px;}
.x5f{left:30.258007px;}
.x4e{left:34.326751px;}
.x58{left:40.739381px;}
.x1{left:53.574000px;}
.x2{left:57.799011px;}
.xbe{left:85.470000px;}
.x3c{left:199.541700px;}
.x3d{left:231.401700px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x6{left:253.692000px;}
.x40{left:258.556500px;}
.x4a{left:261.772500px;}
.x49{left:265.174500px;}
.x4b{left:267.670500px;}
.x4{left:269.580000px;}
.x1d{left:279.820500px;}
.xa{left:281.479500px;}
.x48{left:282.747000px;}
.x4c{left:288.282000px;}
.xb6{left:292.212000px;}
.x1b{left:293.947500px;}
.xb{left:297.942000px;}
.x96{left:300.247500px;}
.x32{left:301.416000px;}
.x82{left:304.027500px;}
.x7{left:305.554500px;}
.x65{left:307.213500px;}
.x1c{left:308.892000px;}
.x47{left:311.598000px;}
.xa8{left:313.081500px;}
.x66{left:314.973000px;}
.x33{left:316.360500px;}
.xa9{left:321.451500px;}
.x67{left:323.344500px;}
.x5b{left:326.296500px;}
.x34{left:332.461500px;}
.x5c{left:338.589000px;}
.x46{left:341.776500px;}
.x19{left:343.696500px;}
.x45{left:346.308000px;}
.x35{left:347.404500px;}
.x44{left:350.841000px;}
.x77{left:352.768500px;}
.x1a{left:358.639500px;}
.x60{left:360.439500px;}
.x6c{left:363.090000px;}
.x43{left:365.877000px;}
.x4f{left:372.708007px;}
.x2b{left:374.191500px;}
.x7f{left:379.594500px;}
.xb3{left:381.895500px;}
.x42{left:391.081500px;}
.xb4{left:396.838500px;}
.x41{left:409.789500px;}
.x1e{left:412.041000px;}
.xe{left:415.875000px;}
.xbc{left:418.978500px;}
.x12{left:420.184500px;}
.x78{left:422.011500px;}
.xf{left:423.346500px;}
.x10{left:427.093500px;}
.x79{left:430.381500px;}
.x11{left:434.566500px;}
.x92{left:440.206500px;}
.x13{left:441.975000px;}
.xa3{left:443.659500px;}
.x80{left:447.114000px;}
.x14{left:449.448000px;}
.x61{left:450.475500px;}
.x93{left:452.497500px;}
.x23{left:455.182500px;}
.x72{left:456.285000px;}
.x8f{left:457.683000px;}
.x17{left:465.652500px;}
.x24{left:470.127000px;}
.x18{left:473.125500px;}
.xaa{left:487.165500px;}
.xb1{left:488.667000px;}
.xb2{left:492.406500px;}
.x94{left:494.260500px;}
.x68{left:496.594500px;}
.x3f{left:498.859500px;}
.x95{left:506.551500px;}
.x69{left:508.885500px;}
.x38{left:517.084500px;}
.x1f{left:520.674000px;}
.x39{left:523.510500px;}
.x5e{left:528.374479px;}
.x5a{left:531.949549px;}
.x20{left:535.618500px;}
.x7a{left:541.426500px;}
.xb7{left:547.839000px;}
.x7b{left:553.717500px;}
.xb8{left:562.783500px;}
.xbd{left:570.379500px;}
.x87{left:571.899000px;}
.x9c{left:574.136628px;}
.x52{left:575.637589px;}
.x15{left:577.719000px;}
.x73{left:581.547000px;}
.x88{left:584.190000px;}
.x16{left:585.192000px;}
.xa4{left:587.503500px;}
.x62{left:589.855500px;}
.x74{left:593.838000px;}
.x90{left:596.682000px;}
.xa5{left:599.794500px;}
.x7c{left:606.061500px;}
.x97{left:608.856000px;}
.x8b{left:613.614000px;}
.x6d{left:614.946000px;}
.x98{left:617.226000px;}
.x6e{left:623.317500px;}
.x89{left:627.148500px;}
.x63{left:634.093500px;}
.x75{left:635.503500px;}
.x8a{left:639.439500px;}
.xa6{left:641.641500px;}
.x64{left:646.384500px;}
.x76{left:647.794500px;}
.x91{left:651.124500px;}
.xa7{left:653.934000px;}
.xb9{left:662.602500px;}
.x29{left:664.408500px;}
.x9f{left:665.689500px;}
.xac{left:668.416500px;}
.xa0{left:674.061000px;}
.xad{left:676.788000px;}
.x2a{left:679.351500px;}
.x53{left:681.569298px;}
.x31{left:688.215000px;}
.xbb{left:689.925000px;}
.x2f{left:694.279500px;}
.x83{left:707.383500px;}
.x30{left:709.224000px;}
.x81{left:713.557500px;}
.x84{left:719.674500px;}
.xc{left:721.095000px;}
.xb5{left:726.955500px;}
.xd{left:728.566500px;}
.x8c{left:731.209500px;}
.x99{left:732.819000px;}
.x2e{left:735.507000px;}
.x21{left:742.230000px;}
.x36{left:744.016500px;}
.x9a{left:745.110000px;}
.x6f{left:746.905500px;}
.x2c{left:750.031500px;}
.x22{left:757.174500px;}
.x37{left:758.961000px;}
.xaf{left:760.449000px;}
.x85{left:761.634000px;}
.x2d{left:764.976000px;}
.xb0{left:767.922000px;}
.x6a{left:769.632000px;}
.x3e{left:770.671500px;}
.xab{left:772.504500px;}
.x86{left:773.925000px;}
.x6b{left:778.003500px;}
.x7d{left:779.496000px;}
.x8{left:781.048500px;}
.x8d{left:785.434500px;}
.x70{left:787.000500px;}
.x3b{left:788.801700px;}
.xa1{left:790.794000px;}
.x8e{left:797.725500px;}
.x71{left:799.291500px;}
.x25{left:800.487000px;}
.xa2{left:803.085000px;}
.x26{left:815.431500px;}
.xba{left:818.020500px;}
.x27{left:819.093000px;}
.x9{left:832.909500px;}
.x28{left:834.036000px;}
.x7e{left:837.120000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v5{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v6{vertical-align:29.226667pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls63{letter-spacing:-0.311904pt;}
.ls5c{letter-spacing:-0.306474pt;}
.ls40{letter-spacing:-0.292314pt;}
.ls41{letter-spacing:-0.291424pt;}
.ls64{letter-spacing:-0.109166pt;}
.ls14{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.000372pt;}
.ls68{letter-spacing:0.000447pt;}
.ls80{letter-spacing:0.000503pt;}
.ls71{letter-spacing:0.000523pt;}
.ls0{letter-spacing:0.000533pt;}
.ls79{letter-spacing:0.000600pt;}
.ls69{letter-spacing:0.000711pt;}
.ls6b{letter-spacing:0.000921pt;}
.ls84{letter-spacing:0.000964pt;}
.ls82{letter-spacing:0.000998pt;}
.ls75{letter-spacing:0.001026pt;}
.ls6d{letter-spacing:0.001115pt;}
.ls16{letter-spacing:0.001154pt;}
.ls2c{letter-spacing:0.001177pt;}
.ls15{letter-spacing:0.001181pt;}
.ls73{letter-spacing:0.001391pt;}
.ls72{letter-spacing:0.001408pt;}
.ls2{letter-spacing:0.001628pt;}
.ls9{letter-spacing:0.001735pt;}
.ls70{letter-spacing:0.001818pt;}
.ls65{letter-spacing:0.001843pt;}
.ls6c{letter-spacing:0.001863pt;}
.ls6f{letter-spacing:0.002054pt;}
.ls6a{letter-spacing:0.002262pt;}
.ls5{letter-spacing:0.002422pt;}
.ls83{letter-spacing:0.002729pt;}
.ls1{letter-spacing:0.002770pt;}
.lsa{letter-spacing:0.003100pt;}
.ls66{letter-spacing:0.003430pt;}
.ls1c{letter-spacing:0.004116pt;}
.ls77{letter-spacing:0.004267pt;}
.ls81{letter-spacing:0.004406pt;}
.ls19{letter-spacing:0.005055pt;}
.ls3d{letter-spacing:0.145712pt;}
.ls2f{letter-spacing:0.146157pt;}
.ls53{letter-spacing:0.153237pt;}
.ls5e{letter-spacing:0.155952pt;}
.ls17{letter-spacing:0.160000pt;}
.ls3e{letter-spacing:0.241882pt;}
.ls30{letter-spacing:0.242620pt;}
.ls31{letter-spacing:0.253144pt;}
.ls3f{letter-spacing:0.291424pt;}
.ls33{letter-spacing:0.292314pt;}
.ls54{letter-spacing:0.306474pt;}
.ls5f{letter-spacing:0.311904pt;}
.ls18{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.399300pt;}
.ls34{letter-spacing:0.438470pt;}
.ls48{letter-spacing:0.637762pt;}
.ls47{letter-spacing:0.643096pt;}
.ls22{letter-spacing:2.661867pt;}
.ls4{letter-spacing:2.665203pt;}
.ls35{letter-spacing:3.653920pt;}
.ls3{letter-spacing:9.425004pt;}
.ls10{letter-spacing:10.614770pt;}
.ls13{letter-spacing:10.626533pt;}
.ls28{letter-spacing:11.138393pt;}
.ls4a{letter-spacing:11.365039pt;}
.ls45{letter-spacing:11.555516pt;}
.lse{letter-spacing:11.746743pt;}
.ls60{letter-spacing:11.773954pt;}
.ls49{letter-spacing:11.799527pt;}
.ls11{letter-spacing:11.925764pt;}
.ls7c{letter-spacing:11.950682pt;}
.ls56{letter-spacing:11.950933pt;}
.ls67{letter-spacing:11.954133pt;}
.lsd{letter-spacing:11.956267pt;}
.ls7e{letter-spacing:11.959467pt;}
.ls55{letter-spacing:12.011800pt;}
.ls85{letter-spacing:12.063560pt;}
.ls12{letter-spacing:12.139889pt;}
.ls78{letter-spacing:12.142163pt;}
.ls6e{letter-spacing:12.172561pt;}
.ls7d{letter-spacing:12.257045pt;}
.ls20{letter-spacing:12.528078pt;}
.ls21{letter-spacing:12.533411pt;}
.ls7a{letter-spacing:12.698395pt;}
.ls5a{letter-spacing:12.867080pt;}
.ls5b{letter-spacing:12.872522pt;}
.ls4c{letter-spacing:13.061095pt;}
.ls76{letter-spacing:13.064408pt;}
.ls7b{letter-spacing:13.085323pt;}
.ls51{letter-spacing:13.088216pt;}
.ls59{letter-spacing:13.094150pt;}
.ls4f{letter-spacing:13.105305pt;}
.ls57{letter-spacing:13.144993pt;}
.ls46{letter-spacing:13.179601pt;}
.ls38{letter-spacing:13.213459pt;}
.ls37{letter-spacing:13.218688pt;}
.ls1b{letter-spacing:13.231207pt;}
.ls1f{letter-spacing:13.283733pt;}
.ls7{letter-spacing:13.284541pt;}
.ls52{letter-spacing:13.323404pt;}
.ls2b{letter-spacing:13.347045pt;}
.ls3c{letter-spacing:13.347218pt;}
.lsf{letter-spacing:13.349731pt;}
.ls3b{letter-spacing:13.352584pt;}
.ls50{letter-spacing:13.365093pt;}
.ls5d{letter-spacing:13.381836pt;}
.ls58{letter-spacing:13.457482pt;}
.ls24{letter-spacing:13.470930pt;}
.ls29{letter-spacing:13.492809pt;}
.ls2a{letter-spacing:13.498240pt;}
.ls26{letter-spacing:13.503815pt;}
.ls2d{letter-spacing:13.506163pt;}
.ls27{letter-spacing:13.509257pt;}
.ls2e{letter-spacing:13.511578pt;}
.lsc{letter-spacing:13.569339pt;}
.ls44{letter-spacing:13.616073pt;}
.ls61{letter-spacing:14.060518pt;}
.ls62{letter-spacing:14.065746pt;}
.ls74{letter-spacing:14.303624pt;}
.ls3a{letter-spacing:14.928492pt;}
.ls39{letter-spacing:14.933720pt;}
.ls4b{letter-spacing:15.555942pt;}
.ls4e{letter-spacing:15.608230pt;}
.ls4d{letter-spacing:15.613459pt;}
.ls36{letter-spacing:15.707576pt;}
.ls25{letter-spacing:17.422609pt;}
.ls1d{letter-spacing:18.944178pt;}
.ls1e{letter-spacing:18.949407pt;}
.ls43{letter-spacing:19.179472pt;}
.ls42{letter-spacing:20.713919pt;}
.ls6{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lsb{letter-spacing:57.174803pt;}
.ls23{letter-spacing:411.115674pt;}
.wsa0{word-spacing:-51.776064pt;}
.ws79{word-spacing:-43.847040pt;}
.ws5e{word-spacing:-13.600000pt;}
.ws6c{word-spacing:-13.283467pt;}
.wsa2{word-spacing:-13.255920pt;}
.ws96{word-spacing:-13.025128pt;}
.wsa3{word-spacing:-12.944016pt;}
.ws95{word-spacing:-12.718654pt;}
.wsa1{word-spacing:-12.632112pt;}
.ws78{word-spacing:-12.423328pt;}
.ws97{word-spacing:-12.412181pt;}
.ws84{word-spacing:-12.385520pt;}
.ws7a{word-spacing:-12.131014pt;}
.ws82{word-spacing:-12.094096pt;}
.ws28{word-spacing:-11.955200pt;}
.ws77{word-spacing:-11.838701pt;}
.ws83{word-spacing:-11.802672pt;}
.ws5b{word-spacing:-11.040000pt;}
.ws81{word-spacing:-10.928400pt;}
.ws9e{word-spacing:-10.760688pt;}
.ws5a{word-spacing:-10.720000pt;}
.ws16{word-spacing:-10.626800pt;}
.ws93{word-spacing:-10.573339pt;}
.ws9d{word-spacing:-10.448784pt;}
.ws5c{word-spacing:-10.400000pt;}
.ws92{word-spacing:-10.266866pt;}
.ws9f{word-spacing:-10.136880pt;}
.ws14{word-spacing:-10.095467pt;}
.ws75{word-spacing:-10.084819pt;}
.ws7f{word-spacing:-10.054128pt;}
.ws94{word-spacing:-9.960392pt;}
.ws74{word-spacing:-9.792506pt;}
.ws7e{word-spacing:-9.762704pt;}
.ws76{word-spacing:-9.500192pt;}
.ws80{word-spacing:-9.471280pt;}
.ws1{word-spacing:-9.298400pt;}
.ws5d{word-spacing:-8.000000pt;}
.ws40{word-spacing:-2.656693pt;}
.ws3f{word-spacing:-2.337890pt;}
.ws6b{word-spacing:-1.955331pt;}
.ws8f{word-spacing:-1.912819pt;}
.ws8a{word-spacing:-1.753418pt;}
.wsaf{word-spacing:-1.647150pt;}
.ws42{word-spacing:-1.540882pt;}
.ws26{word-spacing:-1.386803pt;}
.wsac{word-spacing:-1.381481pt;}
.ws25{word-spacing:-1.338982pt;}
.ws1d{word-spacing:-1.195520pt;}
.ws62{word-spacing:-1.168945pt;}
.ws58{word-spacing:-1.115811pt;}
.wsd5{word-spacing:-1.099878pt;}
.wsd2{word-spacing:-0.860774pt;}
.wsd3{word-spacing:-0.854814pt;}
.ws53{word-spacing:-0.797008pt;}
.ws5f{word-spacing:-0.743874pt;}
.wsd4{word-spacing:-0.669491pt;}
.ws7{word-spacing:-0.595098pt;}
.wsb7{word-spacing:-0.573850pt;}
.ws37{word-spacing:-0.531339pt;}
.wscf{word-spacing:-0.526029pt;}
.wse0{word-spacing:-0.478208pt;}
.ws9c{word-spacing:-0.425071pt;}
.wsce{word-spacing:-0.382566pt;}
.ws61{word-spacing:-0.371937pt;}
.ws6a{word-spacing:-0.334746pt;}
.ws34{word-spacing:-0.318803pt;}
.wscb{word-spacing:-0.286925pt;}
.ws44{word-spacing:-0.265669pt;}
.ws23{word-spacing:-0.239104pt;}
.ws31{word-spacing:-0.212535pt;}
.ws1a{word-spacing:-0.191283pt;}
.ws32{word-spacing:-0.159402pt;}
.wsbb{word-spacing:-0.143462pt;}
.ws30{word-spacing:-0.106268pt;}
.ws1f{word-spacing:-0.095642pt;}
.wse{word-spacing:-0.053134pt;}
.ws27{word-spacing:-0.047821pt;}
.ws15{word-spacing:-0.042507pt;}
.ws2{word-spacing:-0.037194pt;}
.wsb8{word-spacing:-0.018628pt;}
.wscc{word-spacing:-0.003661pt;}
.ws99{word-spacing:-0.001417pt;}
.ws12{word-spacing:-0.000845pt;}
.ws13{word-spacing:-0.000770pt;}
.ws8b{word-spacing:-0.000723pt;}
.ws3{word-spacing:0.000000pt;}
.ws11{word-spacing:0.000297pt;}
.wsf{word-spacing:0.001593pt;}
.ws2a{word-spacing:0.047821pt;}
.ws3a{word-spacing:0.053134pt;}
.ws17{word-spacing:0.085014pt;}
.wsb4{word-spacing:0.095642pt;}
.ws38{word-spacing:0.106268pt;}
.ws4{word-spacing:0.111581pt;}
.ws21{word-spacing:0.143462pt;}
.ws36{word-spacing:0.159402pt;}
.ws29{word-spacing:0.191283pt;}
.ws4c{word-spacing:0.212535pt;}
.ws1e{word-spacing:0.239104pt;}
.ws49{word-spacing:0.265669pt;}
.wsb3{word-spacing:0.286925pt;}
.ws4f{word-spacing:0.318803pt;}
.wsa7{word-spacing:0.371937pt;}
.wsd6{word-spacing:0.526029pt;}
.ws87{word-spacing:0.531339pt;}
.ws6f{word-spacing:0.570743pt;}
.ws72{word-spacing:0.576077pt;}
.ws67{word-spacing:0.582963pt;}
.ws2f{word-spacing:0.584473pt;}
.ws69{word-spacing:0.585097pt;}
.ws68{word-spacing:0.588297pt;}
.ws73{word-spacing:0.593434pt;}
.ws66{word-spacing:0.597333pt;}
.ws71{word-spacing:0.598400pt;}
.ws6e{word-spacing:0.618564pt;}
.ws4e{word-spacing:0.637606pt;}
.ws8c{word-spacing:0.660533pt;}
.ws3e{word-spacing:0.743874pt;}
.wsa4{word-spacing:0.797008pt;}
.wsc6{word-spacing:0.812954pt;}
.wsa5{word-spacing:0.850142pt;}
.wsda{word-spacing:0.860774pt;}
.wsa8{word-spacing:0.903276pt;}
.wsde{word-spacing:0.908595pt;}
.wsc8{word-spacing:1.099878pt;}
.ws56{word-spacing:1.115811pt;}
.wsdc{word-spacing:1.147699pt;}
.ws1b{word-spacing:1.195520pt;}
.wsd{word-spacing:1.227389pt;}
.wse8{word-spacing:1.243341pt;}
.ws3c{word-spacing:1.275213pt;}
.wse9{word-spacing:1.291162pt;}
.ws46{word-spacing:1.328347pt;}
.ws57{word-spacing:1.381481pt;}
.ws24{word-spacing:1.386803pt;}
.ws59{word-spacing:1.487748pt;}
.ws63{word-spacing:1.540882pt;}
.ws22{word-spacing:1.625907pt;}
.ws7d{word-spacing:1.647150pt;}
.wsb6{word-spacing:1.673728pt;}
.ws3d{word-spacing:1.700284pt;}
.ws4a{word-spacing:1.753418pt;}
.wsa6{word-spacing:1.806551pt;}
.wsc1{word-spacing:1.817190pt;}
.wse5{word-spacing:1.865011pt;}
.ws4d{word-spacing:2.019087pt;}
.wsb0{word-spacing:2.072221pt;}
.ws60{word-spacing:2.178489pt;}
.ws91{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws90{word-spacing:2.284756pt;}
.ws54{word-spacing:2.337890pt;}
.wsc2{word-spacing:2.343219pt;}
.ws39{word-spacing:2.391024pt;}
.wse3{word-spacing:2.391040pt;}
.ws7c{word-spacing:2.444158pt;}
.ws51{word-spacing:2.550426pt;}
.ws18{word-spacing:2.550432pt;}
.ws19{word-spacing:2.625071pt;}
.ws9a{word-spacing:2.709827pt;}
.ws2e{word-spacing:2.816095pt;}
.wsd0{word-spacing:2.821427pt;}
.ws2b{word-spacing:2.861926pt;}
.wsb5{word-spacing:2.866509pt;}
.wsbd{word-spacing:2.867200pt;}
.wsf2{word-spacing:2.867780pt;}
.wsca{word-spacing:2.869248pt;}
.wsc0{word-spacing:2.869274pt;}
.wse4{word-spacing:2.917069pt;}
.ws98{word-spacing:2.964890pt;}
.ws1c{word-spacing:3.012710pt;}
.wse1{word-spacing:3.029683pt;}
.wsaa{word-spacing:3.081764pt;}
.wsf4{word-spacing:3.108352pt;}
.wsab{word-spacing:3.134898pt;}
.ws2c{word-spacing:3.188032pt;}
.wsae{word-spacing:3.241166pt;}
.wsad{word-spacing:3.294300pt;}
.ws85{word-spacing:3.299635pt;}
.ws9b{word-spacing:3.453701pt;}
.wsc5{word-spacing:3.490918pt;}
.ws2d{word-spacing:3.666237pt;}
.ws35{word-spacing:3.772505pt;}
.ws48{word-spacing:3.825638pt;}
.ws7b{word-spacing:3.825664pt;}
.ws8e{word-spacing:3.931906pt;}
.wsa9{word-spacing:3.985040pt;}
.wsd9{word-spacing:4.016947pt;}
.ws86{word-spacing:4.064768pt;}
.ws6d{word-spacing:4.091308pt;}
.ws55{word-spacing:4.144442pt;}
.ws3b{word-spacing:4.356977pt;}
.ws20{word-spacing:4.447334pt;}
.ws50{word-spacing:4.463245pt;}
.wsb2{word-spacing:4.516379pt;}
.wse6{word-spacing:4.734259pt;}
.wse7{word-spacing:4.782080pt;}
.wsb{word-spacing:4.872362pt;}
.ws43{word-spacing:4.941450pt;}
.ws88{word-spacing:5.047717pt;}
.wsd8{word-spacing:5.069005pt;}
.wsb1{word-spacing:5.207119pt;}
.ws64{word-spacing:5.632190pt;}
.ws65{word-spacing:5.685324pt;}
.ws8d{word-spacing:5.791591pt;}
.ws89{word-spacing:5.897859pt;}
.wsed{word-spacing:6.025421pt;}
.ws4b{word-spacing:6.110395pt;}
.ws52{word-spacing:6.854269pt;}
.ws47{word-spacing:7.013670pt;}
.wsec{word-spacing:7.555686pt;}
.ws9{word-spacing:8.740496pt;}
.wsa{word-spacing:10.525789pt;}
.ws33{word-spacing:10.585525pt;}
.ws5{word-spacing:11.641597pt;}
.wsbf{word-spacing:11.901500pt;}
.wsc4{word-spacing:11.901986pt;}
.wsd1{word-spacing:11.902362pt;}
.wsf0{word-spacing:11.903548pt;}
.wscd{word-spacing:11.904205pt;}
.wsf1{word-spacing:11.906628pt;}
.wsba{word-spacing:11.907379pt;}
.wsbe{word-spacing:11.907695pt;}
.wsee{word-spacing:11.913700pt;}
.wse2{word-spacing:11.955200pt;}
.wsf3{word-spacing:12.003021pt;}
.wsc9{word-spacing:12.098662pt;}
.wsdf{word-spacing:12.194304pt;}
.ws41{word-spacing:13.230333pt;}
.ws6{word-spacing:13.761632pt;}
.wsc3{word-spacing:13.772390pt;}
.wsef{word-spacing:14.489702pt;}
.wsea{word-spacing:14.585344pt;}
.wseb{word-spacing:14.633165pt;}
.wsb9{word-spacing:14.776627pt;}
.wsdd{word-spacing:15.015731pt;}
.wsbc{word-spacing:15.063552pt;}
.ws45{word-spacing:16.418365pt;}
.wsd7{word-spacing:16.832922pt;}
.wsc7{word-spacing:17.693696pt;}
.wsdb{word-spacing:17.741517pt;}
.ws8{word-spacing:19.857270pt;}
.wsc{word-spacing:20.196125pt;}
.ws10{word-spacing:35.593054pt;}
.ws70{word-spacing:219.538859pt;}
._3a{margin-left:-6.926530pt;}
._12{margin-left:-5.940841pt;}
._0{margin-left:-4.800917pt;}
._10{margin-left:-3.910662pt;}
._3c{margin-left:-3.007437pt;}
._3{margin-left:-2.082842pt;}
._1{margin-left:-0.966562pt;}
._16{width:0.951910pt;}
._5{width:2.666078pt;}
._1b{width:3.775770pt;}
._1a{width:4.866884pt;}
._1c{width:6.529451pt;}
._19{width:8.021120pt;}
._18{width:8.977280pt;}
._39{width:10.116800pt;}
._2{width:11.303610pt;}
._a{width:12.672512pt;}
._7{width:14.059315pt;}
._9{width:15.424845pt;}
._e{width:16.418365pt;}
._c{width:17.906113pt;}
._b{width:19.439519pt;}
._15{width:20.934743pt;}
._4{width:22.502128pt;}
._8{width:24.245146pt;}
._d{width:25.397988pt;}
._35{width:26.637620pt;}
._13{width:30.073769pt;}
._14{width:34.537013pt;}
._6{width:61.644215pt;}
._2d{width:68.718490pt;}
._2c{width:79.334707pt;}
._2b{width:89.950925pt;}
._32{width:137.245696pt;}
._31{width:146.427290pt;}
._2e{width:149.344358pt;}
._2a{width:162.171394pt;}
._33{width:163.355853pt;}
._30{width:187.292092pt;}
._2f{width:188.435934pt;}
._22{width:273.745097pt;}
._20{width:285.346714pt;}
._28{width:297.751138pt;}
._1d{width:313.274061pt;}
._26{width:419.436237pt;}
._27{width:431.947817pt;}
._25{width:436.517280pt;}
._1f{width:443.346637pt;}
._1e{width:467.029084pt;}
._24{width:472.385013pt;}
._23{width:482.990080pt;}
._21{width:506.852659pt;}
._29{width:530.810880pt;}
._f{width:830.748373pt;}
._36{width:1685.993171pt;}
._34{width:1691.127524pt;}
._37{width:1772.837747pt;}
._38{width:1804.358488pt;}
._17{width:1851.070148pt;}
._3b{width:2219.228332pt;}
._11{width:2240.481666pt;}
.fs5{font-size:31.880533pt;}
.fsb{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs12{font-size:39.050816pt;}
.fse{font-size:39.170022pt;}
.fs4{font-size:40.381867pt;}
.fs15{font-size:41.067462pt;}
.fs18{font-size:41.795136pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.880000pt;}
.fs14{font-size:43.713600pt;}
.fsf{font-size:43.847040pt;}
.fsd{font-size:44.292800pt;}
.fs17{font-size:45.971040pt;}
.fs1a{font-size:46.785600pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs13{font-size:48.376384pt;}
.fs10{font-size:48.524058pt;}
.fsc{font-size:49.829333pt;}
.fs16{font-size:50.874618pt;}
.fs19{font-size:51.776064pt;}
.fs9{font-size:53.120000pt;}
.fs2{font-size:53.133867pt;}
.fs11{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:110.377919pt;}
.y1b2{bottom:-579.940002pt;}
.y1b1{bottom:-563.409090pt;}
.yd3{bottom:-558.586667pt;}
.y1b0{bottom:-546.722226pt;}
.yd2{bottom:-541.466667pt;}
.y1af{bottom:-530.035362pt;}
.yd1{bottom:-524.346667pt;}
.y1ae{bottom:-513.353696pt;}
.yd0{bottom:-507.392000pt;}
.y1ad{bottom:-496.666832pt;}
.ycf{bottom:-490.272000pt;}
.y1ac{bottom:-480.135920pt;}
.yce{bottom:-473.152000pt;}
.y1ab{bottom:-463.449056pt;}
.ycd{bottom:-456.032000pt;}
.y1aa{bottom:-446.762192pt;}
.ycc{bottom:-438.912000pt;}
.y1a9{bottom:-430.075328pt;}
.ycb{bottom:-421.952000pt;}
.y1a8{bottom:-413.388464pt;}
.yca{bottom:-400.832000pt;}
.y1a7{bottom:-396.857552pt;}
.y1a6{bottom:-380.170688pt;}
.yc9{bottom:-367.712000pt;}
.y1a5{bottom:-363.444836pt;}
.y162{bottom:-358.163739pt;}
.yc8{bottom:-350.552000pt;}
.y1a4{bottom:-346.757972pt;}
.y161{bottom:-342.536127pt;}
.yc7{bottom:-333.432000pt;}
.y1a3{bottom:-330.071108pt;}
.y160{bottom:-326.944943pt;}
.yc6{bottom:-316.472000pt;}
.y1a2{bottom:-313.540196pt;}
.y15f{bottom:-311.353759pt;}
.yc5{bottom:-299.352000pt;}
.y1a1{bottom:-296.853332pt;}
.y15e{bottom:-295.908287pt;}
.yc4{bottom:-282.232000pt;}
.y15d{bottom:-280.317103pt;}
.y1a0{bottom:-280.166468pt;}
.y17f{bottom:-276.352353pt;}
.yc3{bottom:-265.112000pt;}
.y15c{bottom:-264.725919pt;}
.y19f{bottom:-263.479604pt;}
.y17e{bottom:-260.109252pt;}
.y15b{bottom:-249.134735pt;}
.yc2{bottom:-247.992000pt;}
.y19e{bottom:-246.792740pt;}
.y17d{bottom:-243.712915pt;}
.y13a{bottom:-236.422022pt;}
.y15a{bottom:-233.543551pt;}
.yc1{bottom:-231.032000pt;}
.y19d{bottom:-230.261828pt;}
.y17c{bottom:-227.316577pt;}
.y139{bottom:-220.783244pt;}
.y159{bottom:-218.098079pt;}
.yc0{bottom:-213.912000pt;}
.y19c{bottom:-213.574964pt;}
.y17b{bottom:-210.920239pt;}
.y138{bottom:-205.144467pt;}
.y158{bottom:-202.506895pt;}
.y19b{bottom:-196.888100pt;}
.ybf{bottom:-196.792000pt;}
.y17a{bottom:-194.523902pt;}
.y137{bottom:-189.510561pt;}
.y157{bottom:-186.915711pt;}
.y19a{bottom:-180.201236pt;}
.ybe{bottom:-179.672000pt;}
.y179{bottom:-178.280801pt;}
.y136{bottom:-174.017940pt;}
.y156{bottom:-171.324527pt;}
.ybd{bottom:-162.552000pt;}
.y178{bottom:-161.884463pt;}
.y199{bottom:-159.771524pt;}
.y135{bottom:-158.379162pt;}
.y155{bottom:-155.733343pt;}
.ybc{bottom:-145.592000pt;}
.y177{bottom:-145.488126pt;}
.y134{bottom:-142.740385pt;}
.y154{bottom:-140.287871pt;}
.y176{bottom:-129.066249pt;}
.ybb{bottom:-128.472000pt;}
.y198{bottom:-127.463468pt;}
.y133{bottom:-127.101607pt;}
.y153{bottom:-124.672401pt;}
.y175{bottom:-112.669911pt;}
.y132{bottom:-111.462830pt;}
.yba{bottom:-111.325333pt;}
.y197{bottom:-110.776604pt;}
.y152{bottom:-109.081217pt;}
.y131{bottom:-95.970209pt;}
.yb9{bottom:-94.205333pt;}
.y196{bottom:-94.089740pt;}
.y151{bottom:-93.490033pt;}
.y174{bottom:-92.595890pt;}
.yb8{bottom:-77.085333pt;}
.y130{bottom:-76.677511pt;}
.y150{bottom:-74.256049pt;}
.y195{bottom:-62.275532pt;}
.y173{bottom:-61.335583pt;}
.yb7{bottom:-56.125333pt;}
.y194{bottom:-47.304140pt;}
.y12f{bottom:-46.861524pt;}
.y172{bottom:-46.624850pt;}
.y14f{bottom:-44.530801pt;}
.y12e{bottom:-32.793932pt;}
.y193{bottom:-32.332748pt;}
.y171{bottom:-31.760881pt;}
.y14e{bottom:-30.542449pt;}
.yb6{bottom:-23.485333pt;}
.y12d{bottom:-18.762879pt;}
.y192{bottom:-17.361356pt;}
.y170{bottom:-17.050148pt;}
.y14d{bottom:-16.554097pt;}
.y16f{bottom:-5.557388pt;}
.yb5{bottom:-3.325333pt;}
.y12c{bottom:-0.493279pt;}
.y0{bottom:0.000000pt;}
.y14c{bottom:1.659903pt;}
.y191{bottom:2.132644pt;}
.y1a{bottom:3.284927pt;}
.y11a{bottom:3.653920pt;}
.y11c{bottom:3.800077pt;}
.y121{bottom:11.984858pt;}
.y120{bottom:20.169638pt;}
.y19{bottom:24.190368pt;}
.y49{bottom:28.346667pt;}
.y48{bottom:92.558667pt;}
.y17{bottom:93.018667pt;}
.y114{bottom:97.893333pt;}
.y165{bottom:99.096000pt;}
.y18d{bottom:99.512000pt;}
.yec{bottom:99.521333pt;}
.y1d0{bottom:100.206667pt;}
.y7d{bottom:102.721333pt;}
.yb1{bottom:103.917333pt;}
.y224{bottom:105.152000pt;}
.y1ed{bottom:107.264000pt;}
.y16{bottom:108.920000pt;}
.y47{bottom:109.296000pt;}
.y113{bottom:114.630667pt;}
.y164{bottom:116.192000pt;}
.y18c{bottom:116.249333pt;}
.yeb{bottom:116.258667pt;}
.y1cf{bottom:116.944000pt;}
.y223{bottom:120.494667pt;}
.yb0{bottom:120.654667pt;}
.y7c{bottom:123.444000pt;}
.y15{bottom:124.820000pt;}
.y46{bottom:126.033333pt;}
.y1ec{bottom:130.856000pt;}
.y112{bottom:131.368000pt;}
.y18b{bottom:132.986667pt;}
.yea{bottom:132.996000pt;}
.y163{bottom:133.288000pt;}
.y1ce{bottom:133.681333pt;}
.y222{bottom:135.837333pt;}
.yaf{bottom:137.392000pt;}
.y14{bottom:140.720000pt;}
.y7b{bottom:141.376000pt;}
.y45{bottom:142.769333pt;}
.y1eb{bottom:146.477333pt;}
.y111{bottom:148.105333pt;}
.y18a{bottom:149.724000pt;}
.y1cd{bottom:150.418667pt;}
.y221{bottom:151.180000pt;}
.y149{bottom:153.225333pt;}
.ye9{bottom:153.717333pt;}
.yad{bottom:154.129333pt;}
.y13{bottom:156.621333pt;}
.yae{bottom:158.950667pt;}
.y44{bottom:159.506667pt;}
.y1ea{bottom:162.098667pt;}
.y110{bottom:164.842667pt;}
.y189{bottom:166.461333pt;}
.y220{bottom:166.522667pt;}
.y1cc{bottom:167.156000pt;}
.yac{bottom:170.866667pt;}
.y7a{bottom:171.264000pt;}
.y12{bottom:172.521333pt;}
.y43{bottom:176.244000pt;}
.y1e9{bottom:177.720000pt;}
.y10f{bottom:181.580000pt;}
.y21f{bottom:181.865333pt;}
.y188{bottom:183.197333pt;}
.ye8{bottom:183.605333pt;}
.y1cb{bottom:183.893333pt;}
.yab{bottom:187.604000pt;}
.y79{bottom:188.001333pt;}
.y11{bottom:188.421333pt;}
.y1e8{bottom:193.341333pt;}
.y42{bottom:196.966667pt;}
.y21e{bottom:197.208000pt;}
.y187{bottom:199.934667pt;}
.ye7{bottom:200.342667pt;}
.y1ca{bottom:200.630667pt;}
.y10{bottom:204.322667pt;}
.yaa{bottom:204.341333pt;}
.y78{bottom:204.738667pt;}
.y1e7{bottom:208.964000pt;}
.y21d{bottom:212.549333pt;}
.y186{bottom:216.672000pt;}
.ye6{bottom:217.080000pt;}
.y10e{bottom:217.254667pt;}
.y1c9{bottom:217.368000pt;}
.ya9{bottom:221.077333pt;}
.y77{bottom:221.476000pt;}
.y1e6{bottom:224.585333pt;}
.y21c{bottom:227.892000pt;}
.y185{bottom:233.409333pt;}
.ye5{bottom:233.817333pt;}
.y10d{bottom:234.004000pt;}
.y1c8{bottom:234.105333pt;}
.y252{bottom:237.549333pt;}
.ya8{bottom:237.814667pt;}
.y76{bottom:238.213333pt;}
.y21b{bottom:243.234667pt;}
.ye4{bottom:250.554667pt;}
.y1c7{bottom:250.842667pt;}
.y251{bottom:252.892000pt;}
.y184{bottom:254.132000pt;}
.ya7{bottom:254.552000pt;}
.y75{bottom:254.950667pt;}
.y10c{bottom:255.018667pt;}
.y1e5{bottom:256.146667pt;}
.y21a{bottom:258.577333pt;}
.y41{bottom:263.766667pt;}
.yf{bottom:266.570667pt;}
.ye3{bottom:267.292000pt;}
.y1c6{bottom:267.580000pt;}
.y250{bottom:268.234667pt;}
.ya6{bottom:271.289333pt;}
.y74{bottom:271.688000pt;}
.y1e4{bottom:272.884000pt;}
.y219{bottom:273.920000pt;}
.y10b{bottom:276.032000pt;}
.y183{bottom:281.178667pt;}
.ye{bottom:282.470667pt;}
.ye2{bottom:284.029333pt;}
.y1c5{bottom:284.317333pt;}
.ya5{bottom:288.026667pt;}
.y73{bottom:288.425333pt;}
.y218{bottom:289.262667pt;}
.y1e3{bottom:289.621333pt;}
.y10a{bottom:290.644000pt;}
.y40{bottom:297.002667pt;}
.y182{bottom:298.274667pt;}
.yd{bottom:298.370667pt;}
.ye1{bottom:300.766667pt;}
.y1c4{bottom:301.054667pt;}
.y24f{bottom:302.970667pt;}
.y217{bottom:304.605333pt;}
.ya4{bottom:304.764000pt;}
.y72{bottom:305.162667pt;}
.y1e2{bottom:306.358667pt;}
.y12b{bottom:307.044987pt;}
.y109{bottom:311.658667pt;}
.yc{bottom:314.270667pt;}
.y3f{bottom:314.297333pt;}
.y181{bottom:315.370667pt;}
.ye0{bottom:317.504000pt;}
.y1c3{bottom:317.792000pt;}
.y24e{bottom:318.313333pt;}
.y216{bottom:319.948000pt;}
.y14b{bottom:321.704168pt;}
.y71{bottom:321.900000pt;}
.y12a{bottom:322.683765pt;}
.y1e1{bottom:323.096000pt;}
.ya3{bottom:325.486667pt;}
.y14a{bottom:329.426904pt;}
.y3e{bottom:331.593333pt;}
.y180{bottom:332.466667pt;}
.y108{bottom:332.672000pt;}
.y24d{bottom:333.656000pt;}
.ydf{bottom:334.241333pt;}
.y1c2{bottom:334.529333pt;}
.y215{bottom:335.290667pt;}
.y129{bottom:338.322543pt;}
.y70{bottom:338.637333pt;}
.yb{bottom:339.470667pt;}
.y1e0{bottom:339.833333pt;}
.y3d{bottom:348.888000pt;}
.y24c{bottom:348.998667pt;}
.y190{bottom:350.594392pt;}
.y214{bottom:350.632000pt;}
.yde{bottom:350.978667pt;}
.y1c1{bottom:351.266667pt;}
.y16c{bottom:352.404000pt;}
.y16e{bottom:353.233810pt;}
.y107{bottom:353.686667pt;}
.y128{bottom:353.815163pt;}
.ya2{bottom:355.374667pt;}
.y1df{bottom:356.570667pt;}
.y18f{bottom:358.859848pt;}
.y6f{bottom:359.360000pt;}
.y16d{bottom:361.355360pt;}
.ya{bottom:363.341333pt;}
.y24b{bottom:364.341333pt;}
.y213{bottom:365.974667pt;}
.y3c{bottom:366.182667pt;}
.ydd{bottom:367.716000pt;}
.y1c0{bottom:368.002667pt;}
.y127{bottom:369.453941pt;}
.ya1{bottom:372.112000pt;}
.y1de{bottom:373.308000pt;}
.y106{bottom:374.700000pt;}
.y9{bottom:379.241333pt;}
.y24a{bottom:379.684000pt;}
.y212{bottom:381.317333pt;}
.y3b{bottom:383.478667pt;}
.ydc{bottom:384.453333pt;}
.y1bf{bottom:384.740000pt;}
.y126{bottom:385.092719pt;}
.yb4{bottom:387.621333pt;}
.ya0{bottom:388.849333pt;}
.y6e{bottom:389.248000pt;}
.y1dd{bottom:394.029333pt;}
.y249{bottom:395.025333pt;}
.y8{bottom:395.141333pt;}
.yb3{bottom:396.101333pt;}
.y211{bottom:396.660000pt;}
.y125{bottom:400.768035pt;}
.y3a{bottom:400.773333pt;}
.ydb{bottom:401.190667pt;}
.y1be{bottom:401.477333pt;}
.y105{bottom:402.806667pt;}
.y9f{bottom:405.586667pt;}
.y6d{bottom:405.985333pt;}
.y248{bottom:410.368000pt;}
.y7{bottom:411.042667pt;}
.y210{bottom:412.002667pt;}
.yda{bottom:417.928000pt;}
.y39{bottom:418.068000pt;}
.y1bd{bottom:418.214667pt;}
.y9e{bottom:422.324000pt;}
.y6c{bottom:422.722667pt;}
.y1dc{bottom:423.917333pt;}
.y247{bottom:425.710667pt;}
.y6{bottom:426.942667pt;}
.y20f{bottom:427.345333pt;}
.y124{bottom:430.584023pt;}
.yd9{bottom:434.665333pt;}
.y104{bottom:434.825333pt;}
.y1bc{bottom:434.952000pt;}
.y38{bottom:435.364000pt;}
.y9d{bottom:439.061333pt;}
.y6b{bottom:439.460000pt;}
.y1db{bottom:440.654667pt;}
.y246{bottom:441.053333pt;}
.y20e{bottom:442.688000pt;}
.y5{bottom:442.842667pt;}
.yd8{bottom:451.402667pt;}
.y103{bottom:451.562667pt;}
.y1bb{bottom:451.689333pt;}
.y37{bottom:452.658667pt;}
.y9c{bottom:455.798667pt;}
.y6a{bottom:456.197333pt;}
.y245{bottom:456.396000pt;}
.y1da{bottom:457.392000pt;}
.y20d{bottom:458.030667pt;}
.y4{bottom:458.744000pt;}
.y148{bottom:466.644000pt;}
.yd7{bottom:468.140000pt;}
.y102{bottom:468.300000pt;}
.y36{bottom:469.954667pt;}
.y244{bottom:471.738667pt;}
.y1ba{bottom:472.412000pt;}
.y9b{bottom:472.536000pt;}
.y69{bottom:472.934667pt;}
.y20c{bottom:473.372000pt;}
.y1d9{bottom:474.129333pt;}
.y3{bottom:474.644000pt;}
.y147{bottom:483.381333pt;}
.yd6{bottom:484.877333pt;}
.y101{bottom:485.037333pt;}
.y243{bottom:487.081333pt;}
.y35{bottom:487.249333pt;}
.y20b{bottom:488.714667pt;}
.y2{bottom:490.544000pt;}
.y1d8{bottom:490.866667pt;}
.y9a{bottom:493.258667pt;}
.y68{bottom:493.656000pt;}
.y146{bottom:500.118667pt;}
.y1b9{bottom:502.300000pt;}
.y242{bottom:502.424000pt;}
.y20a{bottom:504.057333pt;}
.y34{bottom:504.544000pt;}
.yd5{bottom:505.598667pt;}
.y100{bottom:505.758667pt;}
.y1{bottom:506.445333pt;}
.y1d7{bottom:507.604000pt;}
.y67{bottom:511.589333pt;}
.y145{bottom:516.856000pt;}
.y241{bottom:517.766667pt;}
.y1b8{bottom:519.037333pt;}
.y209{bottom:519.400000pt;}
.y33{bottom:521.840000pt;}
.y99{bottom:523.145333pt;}
.y1d6{bottom:524.341333pt;}
.yd4{bottom:532.645333pt;}
.y240{bottom:533.108000pt;}
.y144{bottom:533.593333pt;}
.y208{bottom:534.742667pt;}
.yff{bottom:535.646667pt;}
.y1b7{bottom:535.774667pt;}
.y32{bottom:539.134667pt;}
.y98{bottom:539.882667pt;}
.y1d5{bottom:541.078667pt;}
.y66{bottom:541.477333pt;}
.y23f{bottom:548.450667pt;}
.y207{bottom:550.085333pt;}
.y143{bottom:550.330667pt;}
.yfe{bottom:552.384000pt;}
.yb2{bottom:555.240000pt;}
.y31{bottom:556.429333pt;}
.y97{bottom:556.620000pt;}
.y1d4{bottom:557.816000pt;}
.y65{bottom:558.214667pt;}
.y23e{bottom:563.793333pt;}
.y206{bottom:565.428000pt;}
.y1b6{bottom:565.610667pt;}
.y142{bottom:567.068000pt;}
.y96{bottom:573.357333pt;}
.y30{bottom:573.725333pt;}
.y1d3{bottom:574.553333pt;}
.y64{bottom:574.952000pt;}
.y23d{bottom:579.136000pt;}
.y205{bottom:580.770667pt;}
.y1b5{bottom:582.706667pt;}
.y141{bottom:583.805333pt;}
.yfd{bottom:588.058667pt;}
.y118{bottom:589.456464pt;}
.y95{bottom:590.094667pt;}
.y2f{bottom:591.020000pt;}
.y1d2{bottom:591.290667pt;}
.y63{bottom:591.689333pt;}
.y23c{bottom:594.478667pt;}
.y204{bottom:596.113333pt;}
.y1b4{bottom:599.802667pt;}
.y140{bottom:600.542667pt;}
.yfc{bottom:600.677333pt;}
.y94{bottom:606.832000pt;}
.y2e{bottom:608.316000pt;}
.y62{bottom:608.426667pt;}
.y23b{bottom:609.821333pt;}
.y203{bottom:611.454667pt;}
.y1d1{bottom:612.013333pt;}
.y1b3{bottom:616.898667pt;}
.y13f{bottom:617.280000pt;}
.yfb{bottom:617.428000pt;}
.y93{bottom:623.569333pt;}
.y61{bottom:625.164000pt;}
.y202{bottom:626.797333pt;}
.yfa{bottom:632.040000pt;}
.y117{bottom:632.743237pt;}
.y18e{bottom:636.836000pt;}
.y13e{bottom:638.002667pt;}
.y92{bottom:640.306667pt;}
.y116{bottom:640.489547pt;}
.y23a{bottom:640.506667pt;}
.y60{bottom:641.901333pt;}
.y201{bottom:642.140000pt;}
.y2d{bottom:642.613333pt;}
.yf9{bottom:646.652000pt;}
.y239{bottom:655.848000pt;}
.y2c{bottom:656.960000pt;}
.y91{bottom:657.044000pt;}
.y200{bottom:657.482667pt;}
.y5f{bottom:658.638667pt;}
.yf8{bottom:661.264000pt;}
.y13d{bottom:665.049333pt;}
.y238{bottom:671.190667pt;}
.y1ff{bottom:672.825333pt;}
.y90{bottom:673.781333pt;}
.y2b{bottom:675.164000pt;}
.y5e{bottom:675.376000pt;}
.y13c{bottom:682.145333pt;}
.yf7{bottom:682.277333pt;}
.y2a{bottom:685.652000pt;}
.y237{bottom:686.533333pt;}
.y16b{bottom:688.128000pt;}
.y1fe{bottom:688.168000pt;}
.y8f{bottom:690.518667pt;}
.y5d{bottom:692.113333pt;}
.y13b{bottom:699.241333pt;}
.y236{bottom:701.876000pt;}
.yf6{bottom:703.290667pt;}
.y1fd{bottom:703.510667pt;}
.y29{bottom:703.856000pt;}
.y16a{bottom:704.865333pt;}
.y8e{bottom:707.256000pt;}
.y5c{bottom:708.850667pt;}
.y28{bottom:714.345333pt;}
.y235{bottom:717.218667pt;}
.y1fc{bottom:718.853333pt;}
.y115{bottom:719.178667pt;}
.y169{bottom:721.602667pt;}
.y8d{bottom:723.993333pt;}
.yf5{bottom:724.650667pt;}
.y5b{bottom:725.588000pt;}
.y27{bottom:728.690667pt;}
.y26{bottom:732.548000pt;}
.y234{bottom:732.561333pt;}
.y1fb{bottom:734.194667pt;}
.y168{bottom:738.340000pt;}
.y5a{bottom:742.324000pt;}
.y8c{bottom:744.716000pt;}
.yf4{bottom:745.665333pt;}
.y25{bottom:746.894667pt;}
.y233{bottom:747.904000pt;}
.y1fa{bottom:749.537333pt;}
.y167{bottom:755.077333pt;}
.y24{bottom:757.384000pt;}
.y8b{bottom:758.664000pt;}
.y59{bottom:759.061333pt;}
.y232{bottom:763.246667pt;}
.y1f9{bottom:764.880000pt;}
.yf3{bottom:766.678667pt;}
.y166{bottom:771.814667pt;}
.y23{bottom:775.588000pt;}
.y58{bottom:775.798667pt;}
.y231{bottom:778.589333pt;}
.y1f8{bottom:780.222667pt;}
.yf2{bottom:781.290667pt;}
.y22{bottom:786.076000pt;}
.y8a{bottom:788.552000pt;}
.y57{bottom:792.536000pt;}
.y230{bottom:793.930667pt;}
.y1f7{bottom:795.565333pt;}
.yf1{bottom:802.305333pt;}
.y21{bottom:804.280000pt;}
.y89{bottom:805.289333pt;}
.y56{bottom:809.273333pt;}
.y1f6{bottom:810.908000pt;}
.y88{bottom:822.025333pt;}
.yf0{bottom:823.318667pt;}
.y22f{bottom:824.616000pt;}
.y55{bottom:826.010667pt;}
.y1f5{bottom:830.236000pt;}
.y87{bottom:838.762667pt;}
.y22e{bottom:839.958667pt;}
.y54{bottom:842.748000pt;}
.y20{bottom:843.992000pt;}
.yef{bottom:844.333333pt;}
.y22d{bottom:855.301333pt;}
.y86{bottom:855.500000pt;}
.y53{bottom:859.485333pt;}
.y1f4{bottom:860.124000pt;}
.y1f{bottom:860.729333pt;}
.yee{bottom:865.346667pt;}
.y22c{bottom:870.644000pt;}
.y85{bottom:872.237333pt;}
.y52{bottom:876.222667pt;}
.y1f3{bottom:883.714667pt;}
.y22b{bottom:885.986667pt;}
.y84{bottom:888.974667pt;}
.y51{bottom:892.960000pt;}
.yed{bottom:893.453333pt;}
.y1e{bottom:896.213333pt;}
.y1f2{bottom:899.336000pt;}
.y22a{bottom:901.329333pt;}
.y83{bottom:905.712000pt;}
.y50{bottom:909.697333pt;}
.y1f1{bottom:914.957333pt;}
.y229{bottom:916.670667pt;}
.y1d{bottom:921.320000pt;}
.y81{bottom:922.449333pt;}
.y4f{bottom:926.434667pt;}
.y82{bottom:927.272000pt;}
.y228{bottom:932.013333pt;}
.y1f0{bottom:938.549333pt;}
.y80{bottom:939.186667pt;}
.y4e{bottom:943.172000pt;}
.y1c{bottom:946.425333pt;}
.y227{bottom:947.356000pt;}
.y7f{bottom:955.924000pt;}
.y4d{bottom:959.909333pt;}
.y1ef{bottom:962.141333pt;}
.y226{bottom:962.698667pt;}
.y1b{bottom:971.530667pt;}
.y7e{bottom:972.661333pt;}
.y4c{bottom:976.646667pt;}
.y1ee{bottom:977.762667pt;}
.y225{bottom:978.041333pt;}
.y4b{bottom:993.384000pt;}
.y18{bottom:1010.186667pt;}
.y4a{bottom:1046.810667pt;}
.y123{bottom:1161.893704pt;}
.y122{bottom:1178.994049pt;}
.y11f{bottom:1195.948238pt;}
.y11e{bottom:1229.418145pt;}
.y11d{bottom:1246.518491pt;}
.y11b{bottom:1263.472680pt;}
.y119{bottom:1280.573025pt;}
.h21{height:-273.905151pt;}
.h23{height:-256.804805pt;}
.h25{height:-239.850617pt;}
.h26{height:-222.750271pt;}
.h27{height:-189.280364pt;}
.h28{height:-172.326175pt;}
.h29{height:-155.225829pt;}
.ha{height:23.209028pt;}
.hc{height:23.374407pt;}
.he{height:23.379740pt;}
.h2b{height:24.760382pt;}
.h3{height:27.076941pt;}
.h4{height:27.262909pt;}
.h15{height:29.397999pt;}
.hb{height:30.945242pt;}
.h13{height:31.157778pt;}
.h2{height:33.957757pt;}
.h1b{height:34.574438pt;}
.hf{height:34.813542pt;}
.h10{height:35.052646pt;}
.h31{height:35.455543pt;}
.h2a{height:35.563775pt;}
.h22{height:35.729628pt;}
.h2e{height:36.114378pt;}
.h1f{height:36.224620pt;}
.h2c{height:36.873667pt;}
.h36{height:37.286524pt;}
.h33{height:37.979382pt;}
.h3b{height:38.124172pt;}
.h11{height:38.415786pt;}
.h38{height:38.652338pt;}
.h12{height:38.681455pt;}
.hd{height:38.809074pt;}
.h1a{height:38.932188pt;}
.h7{height:38.947124pt;}
.h17{height:39.655625pt;}
.h30{height:40.426542pt;}
.h20{height:40.549948pt;}
.h35{height:42.514233pt;}
.h3a{height:43.267542pt;}
.h3c{height:43.660390pt;}
.h1c{height:44.250973pt;}
.h19{height:44.390625pt;}
.h2f{height:44.738707pt;}
.h24{height:44.875276pt;}
.h5{height:45.272024pt;}
.h34{height:47.049085pt;}
.h39{height:47.882747pt;}
.h9{height:48.486756pt;}
.h14{height:48.511220pt;}
.h18{height:49.125625pt;}
.h1d{height:64.040209pt;}
.h8{height:69.148877pt;}
.h6{height:74.836229pt;}
.h1e{height:287.489208pt;}
.h2d{height:292.484055pt;}
.h32{height:314.789250pt;}
.h37{height:318.797078pt;}
.h16{height:352.313333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:86.261743pt;}
.w9{width:88.465057pt;}
.w7{width:94.124979pt;}
.w8{width:94.154211pt;}
.w5{width:109.430032pt;}
.w2{width:184.542183pt;}
.w4{width:472.445766pt;}
.wa{width:472.474803pt;}
.wb{width:510.246620pt;}
.wc{width:514.054181pt;}
.w3{width:700.867733pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x9b{left:-172.632748pt;}
.xae{left:-169.409358pt;}
.x4d{left:-159.259757pt;}
.x5d{left:-157.308247pt;}
.x9d{left:-6.038807pt;}
.x0{left:0.000000pt;}
.x50{left:1.461568pt;}
.x3a{left:3.423733pt;}
.x51{left:6.138586pt;}
.x56{left:12.206529pt;}
.x54{left:15.275822pt;}
.x57{left:17.468174pt;}
.x55{left:19.292698pt;}
.x9e{left:21.084107pt;}
.x59{left:25.506798pt;}
.x5f{left:26.896007pt;}
.x4e{left:30.512668pt;}
.x58{left:36.212783pt;}
.x1{left:47.621333pt;}
.x2{left:51.376898pt;}
.xbe{left:75.973333pt;}
.x3c{left:177.370400pt;}
.x3d{left:205.690400pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x6{left:225.504000pt;}
.x40{left:229.828000pt;}
.x4a{left:232.686667pt;}
.x49{left:235.710667pt;}
.x4b{left:237.929333pt;}
.x4{left:239.626667pt;}
.x1d{left:248.729333pt;}
.xa{left:250.204000pt;}
.x48{left:251.330667pt;}
.x4c{left:256.250667pt;}
.xb6{left:259.744000pt;}
.x1b{left:261.286667pt;}
.xb{left:264.837333pt;}
.x96{left:266.886667pt;}
.x32{left:267.925333pt;}
.x82{left:270.246667pt;}
.x7{left:271.604000pt;}
.x65{left:273.078667pt;}
.x1c{left:274.570667pt;}
.x47{left:276.976000pt;}
.xa8{left:278.294667pt;}
.x66{left:279.976000pt;}
.x33{left:281.209333pt;}
.xa9{left:285.734667pt;}
.x67{left:287.417333pt;}
.x5b{left:290.041333pt;}
.x34{left:295.521333pt;}
.x5c{left:300.968000pt;}
.x46{left:303.801333pt;}
.x19{left:305.508000pt;}
.x45{left:307.829333pt;}
.x35{left:308.804000pt;}
.x44{left:311.858667pt;}
.x77{left:313.572000pt;}
.x1a{left:318.790667pt;}
.x60{left:320.390667pt;}
.x6c{left:322.746667pt;}
.x43{left:325.224000pt;}
.x4f{left:331.296007pt;}
.x2b{left:332.614667pt;}
.x7f{left:337.417333pt;}
.xb3{left:339.462667pt;}
.x42{left:347.628000pt;}
.xb4{left:352.745333pt;}
.x41{left:364.257333pt;}
.x1e{left:366.258667pt;}
.xe{left:369.666667pt;}
.xbc{left:372.425333pt;}
.x12{left:373.497333pt;}
.x78{left:375.121333pt;}
.xf{left:376.308000pt;}
.x10{left:379.638667pt;}
.x79{left:382.561333pt;}
.x11{left:386.281333pt;}
.x92{left:391.294667pt;}
.x13{left:392.866667pt;}
.xa3{left:394.364000pt;}
.x80{left:397.434667pt;}
.x14{left:399.509333pt;}
.x61{left:400.422667pt;}
.x93{left:402.220000pt;}
.x23{left:404.606667pt;}
.x72{left:405.586667pt;}
.x8f{left:406.829333pt;}
.x17{left:413.913333pt;}
.x24{left:417.890667pt;}
.x18{left:420.556000pt;}
.xaa{left:433.036000pt;}
.xb1{left:434.370667pt;}
.xb2{left:437.694667pt;}
.x94{left:439.342667pt;}
.x68{left:441.417333pt;}
.x3f{left:443.430667pt;}
.x95{left:450.268000pt;}
.x69{left:452.342667pt;}
.x38{left:459.630667pt;}
.x1f{left:462.821333pt;}
.x39{left:465.342667pt;}
.x5e{left:469.666204pt;}
.x5a{left:472.844043pt;}
.x20{left:476.105333pt;}
.x7a{left:481.268000pt;}
.xb7{left:486.968000pt;}
.x7b{left:492.193333pt;}
.xb8{left:500.252000pt;}
.xbd{left:507.004000pt;}
.x87{left:508.354667pt;}
.x9c{left:510.343670pt;}
.x52{left:511.677857pt;}
.x15{left:513.528000pt;}
.x73{left:516.930667pt;}
.x88{left:519.280000pt;}
.x16{left:520.170667pt;}
.xa4{left:522.225333pt;}
.x62{left:524.316000pt;}
.x74{left:527.856000pt;}
.x90{left:530.384000pt;}
.xa5{left:533.150667pt;}
.x7c{left:538.721333pt;}
.x97{left:541.205333pt;}
.x8b{left:545.434667pt;}
.x6d{left:546.618667pt;}
.x98{left:548.645333pt;}
.x6e{left:554.060000pt;}
.x89{left:557.465333pt;}
.x63{left:563.638667pt;}
.x75{left:564.892000pt;}
.x8a{left:568.390667pt;}
.xa6{left:570.348000pt;}
.x64{left:574.564000pt;}
.x76{left:575.817333pt;}
.x91{left:578.777333pt;}
.xa7{left:581.274667pt;}
.xb9{left:588.980000pt;}
.x29{left:590.585333pt;}
.x9f{left:591.724000pt;}
.xac{left:594.148000pt;}
.xa0{left:599.165333pt;}
.xad{left:601.589333pt;}
.x2a{left:603.868000pt;}
.x53{left:605.839376pt;}
.x31{left:611.746667pt;}
.xbb{left:613.266667pt;}
.x2f{left:617.137333pt;}
.x83{left:628.785333pt;}
.x30{left:630.421333pt;}
.x81{left:634.273333pt;}
.x84{left:639.710667pt;}
.xc{left:640.973333pt;}
.xb5{left:646.182667pt;}
.xd{left:647.614667pt;}
.x8c{left:649.964000pt;}
.x99{left:651.394667pt;}
.x2e{left:653.784000pt;}
.x21{left:659.760000pt;}
.x36{left:661.348000pt;}
.x9a{left:662.320000pt;}
.x6f{left:663.916000pt;}
.x2c{left:666.694667pt;}
.x22{left:673.044000pt;}
.x37{left:674.632000pt;}
.xaf{left:675.954667pt;}
.x85{left:677.008000pt;}
.x2d{left:679.978667pt;}
.xb0{left:682.597333pt;}
.x6a{left:684.117333pt;}
.x3e{left:685.041333pt;}
.xab{left:686.670667pt;}
.x86{left:687.933333pt;}
.x6b{left:691.558667pt;}
.x7d{left:692.885333pt;}
.x8{left:694.265333pt;}
.x8d{left:698.164000pt;}
.x70{left:699.556000pt;}
.x3b{left:701.157067pt;}
.xa1{left:702.928000pt;}
.x8e{left:709.089333pt;}
.x71{left:710.481333pt;}
.x25{left:711.544000pt;}
.xa2{left:713.853333pt;}
.x26{left:724.828000pt;}
.xba{left:727.129333pt;}
.x27{left:728.082667pt;}
.x9{left:740.364000pt;}
.x28{left:741.365333pt;}
.x7e{left:744.106667pt;}
}




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