
    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_a402e83e8a6c9b36785c5ac9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010254;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_65683032a4e8dd70fa38c504.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010254;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_8257e35aa8302d2646d52d60.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.922000;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_34c4137d7626cd05cd643fef.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.920000;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_97d0e1839bc1c27c2634bef5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_226b16ecf7ec961a269deadb.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a397782f54f175ad7f7a99d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.909000;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_93b9d21aea27c04ac71518c6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cb43c154c68934d7aa57bc07.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.923000;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_53ca1a54da9122fb42428674.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7a7093b178e2c57383b46ef3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;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_7bee48e75bf27235b6c0518a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_0706fb8c07506e29b5ab4a5c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.857910;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_ecaefa17277265537cf2f69b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.856934;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_641d473823b6e5a0f3478cb9.woff2')format("woff");}.fff{font-family:fff;line-height:0.635000;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_72b819e96ffbea66794b2b25.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.999000;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_f2a58599fb6d829bbbe4c3f9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_89915baf8c5f995973628d3c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;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_7d087cdf29d4231ee2fa387f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.535000;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_9ab3d41987a90d963b17a91a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_6a164a6b202b999982eefafb.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910000;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_aaabe526be94a4e0a8bbfa22.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_8979a7533e5a9592cf6ac05e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.806000;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_7f5e81e69b1c12830a270791.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_24aa8ddd88c9919cc71ea170.woff2')format("woff");}.ff19{font-family:ff19;line-height:2.400000;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_39b1c3a67585ac4aebbca229.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.388000;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_f466c18012977d0656a356b0.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.898000;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_03dc579c1a96f4d0c254ac84.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.898000;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_b180165ac291cdc845a88ca2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.938477;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_258de9259331b6187bc7ab32.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.938477;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_bd8313adca9faf2e46d0198c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;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_220054aadea441403b487643.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.938477;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_b977e956949713ab9747a9b3.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.938477;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_395c9cba8c4c8dfbf46355bb.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.925293;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_25fea0e980ced7a6cae1b0bb.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.938477;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_03eb7690b106e566e11c23aa.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.925293;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_bb0b1d831dcf46cd8257f382.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.938477;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_3fe6884cab416bdcd58a3564.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.925293;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_9661060c4bf25cc4741fd6fa.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.010254;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;}
.ff28{font-family:sans-serif;visibility:hidden;}
.m24{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m27{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.m2{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);}
.m17{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);}
.m1f{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);}
.m16{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);}
.mf{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);}
.m6{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);}
.m14{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);}
.m1d{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);}
.m23{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);}
.m22{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);}
.m26{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m13{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);}
.m5{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);}
.m11{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);}
.m1a{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);}
.m3{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);}
.m20{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);}
.m21{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);}
.m8{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);}
.m12{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);}
.m9{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);}
.m25{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);}
.m1c{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);}
.m10{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);}
.m18{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);}
.m1e{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);}
.m19{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);}
.mc{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);}
.ma{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);}
.m7{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);}
.md{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);}
.m1b{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);}
.me{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);}
.m28{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);}
.m15{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);}
.m4{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);}
.m29{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.438042px;}
.v1{vertical-align:-12.696856px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.688363px;}
.v5{vertical-align:25.385218px;}
.v7{vertical-align:49.827727px;}
.v8{vertical-align:58.040342px;}
.v4{vertical-align:100.920893px;}
.v2{vertical-align:140.276899px;}
.ls9{letter-spacing:-0.558387px;}
.ls7{letter-spacing:-0.335032px;}
.ls8{letter-spacing:-0.167516px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000589px;}
.ls21{letter-spacing:0.000691px;}
.ls1d{letter-spacing:0.003310px;}
.ls16{letter-spacing:0.004072px;}
.ls1e{letter-spacing:0.004289px;}
.ls17{letter-spacing:0.004627px;}
.ls1f{letter-spacing:0.005945px;}
.ls4{letter-spacing:0.071012px;}
.ls3{letter-spacing:0.126034px;}
.lsa{letter-spacing:0.279193px;}
.ls15{letter-spacing:10.152389px;}
.ls19{letter-spacing:18.803998px;}
.ls18{letter-spacing:22.517977px;}
.lsc{letter-spacing:26.080208px;}
.lsd{letter-spacing:26.086026px;}
.lsb{letter-spacing:26.090915px;}
.lse{letter-spacing:26.092334px;}
.ls14{letter-spacing:27.530294px;}
.ls6{letter-spacing:27.700713px;}
.ls11{letter-spacing:28.139882px;}
.ls2{letter-spacing:28.401653px;}
.lsf{letter-spacing:28.812667px;}
.ls10{letter-spacing:30.457297px;}
.ls12{letter-spacing:39.129535px;}
.ls1c{letter-spacing:42.300487px;}
.ls1b{letter-spacing:42.308980px;}
.ls13{letter-spacing:52.173180px;}
.ls1{letter-spacing:313.499098px;}
.ls20{letter-spacing:717.780042px;}
.ls1a{letter-spacing:836.739324px;}
.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;}
}
.ws2{word-spacing:-114.057000px;}
.ws3{word-spacing:-104.015025px;}
.ws1{word-spacing:-81.947475px;}
.ws87{word-spacing:-78.267545px;}
.ws120{word-spacing:-65.992704px;}
.ws123{word-spacing:-60.182477px;}
.ws4{word-spacing:-47.414323px;}
.ws38{word-spacing:-42.305583px;}
.ws0{word-spacing:-39.511672px;}
.ws5c{word-spacing:-39.133772px;}
.ws121{word-spacing:-37.359750px;}
.ws122{word-spacing:-35.805584px;}
.ws27{word-spacing:-23.014237px;}
.ws106{word-spacing:-22.760404px;}
.ws2c{word-spacing:-22.506570px;}
.wsbd{word-spacing:-22.421959px;}
.wsb{word-spacing:-21.914292px;}
.wsf{word-spacing:-21.829681px;}
.ws6{word-spacing:-21.758759px;}
.wsfb{word-spacing:-21.745070px;}
.wsb4{word-spacing:-21.660459px;}
.ws24{word-spacing:-21.237403px;}
.wsfc{word-spacing:-21.007098px;}
.wsba{word-spacing:-20.983569px;}
.wsc8{word-spacing:-20.729736px;}
.ws113{word-spacing:-20.645125px;}
.ws2f{word-spacing:-20.475902px;}
.wsf2{word-spacing:-20.306680px;}
.ws25{word-spacing:-19.968235px;}
.ws10d{word-spacing:-19.714402px;}
.wsb6{word-spacing:-19.545179px;}
.ws107{word-spacing:-19.375957px;}
.wsa{word-spacing:-19.206735px;}
.wsf9{word-spacing:-19.037512px;}
.wsb5{word-spacing:-18.952901px;}
.ws20{word-spacing:-18.868290px;}
.ws18{word-spacing:-18.783679px;}
.ws35{word-spacing:-18.752279px;}
.wse7{word-spacing:-18.614457px;}
.wsfa{word-spacing:-18.445234px;}
.wsea{word-spacing:-18.360623px;}
.ws57{word-spacing:-18.191401px;}
.ws97{word-spacing:-18.106790px;}
.ws98{word-spacing:-18.022178px;}
.wsd5{word-spacing:-17.937567px;}
.ws29{word-spacing:-17.345289px;}
.ws1c{word-spacing:-17.091456px;}
.wsdd{word-spacing:-17.006844px;}
.ws92{word-spacing:-16.922233px;}
.wsfd{word-spacing:-16.837622px;}
.ws7{word-spacing:-16.673222px;}
.wsd9{word-spacing:-16.668400px;}
.ws8{word-spacing:-16.571307px;}
.wsdc{word-spacing:-16.414566px;}
.ws1a{word-spacing:-16.245344px;}
.ws15{word-spacing:-16.160733px;}
.ws1f{word-spacing:-16.076122px;}
.ws1b{word-spacing:-15.906899px;}
.ws53{word-spacing:-15.822288px;}
.wsed{word-spacing:-15.755846px;}
.ws3e{word-spacing:-15.568455px;}
.wsa5{word-spacing:-15.483843px;}
.wsc{word-spacing:-15.230010px;}
.ws51{word-spacing:-15.199034px;}
.ws52{word-spacing:-15.145399px;}
.ws95{word-spacing:-15.068158px;}
.ws93{word-spacing:-15.060788px;}
.ws10a{word-spacing:-14.976176px;}
.ws3a{word-spacing:-14.722343px;}
.ws10{word-spacing:-14.637732px;}
.ws13{word-spacing:-14.553121px;}
.ws55{word-spacing:-14.522133px;}
.ws1e{word-spacing:-14.468509px;}
.ws21{word-spacing:-14.383898px;}
.ws39{word-spacing:-14.299287px;}
.ws3d{word-spacing:-14.214676px;}
.wsa3{word-spacing:-14.211992px;}
.wsa1{word-spacing:-14.211173px;}
.ws99{word-spacing:-14.206731px;}
.ws9f{word-spacing:-14.135386px;}
.ws9{word-spacing:-14.130065px;}
.wsc0{word-spacing:-14.107998px;}
.ws17{word-spacing:-14.045454px;}
.ws36{word-spacing:-13.960842px;}
.ws47{word-spacing:-13.941395px;}
.wsd{word-spacing:-13.876231px;}
.ws16{word-spacing:-13.791620px;}
.ws11{word-spacing:-13.707009px;}
.wsf3{word-spacing:-13.623335px;}
.ws2b{word-spacing:-13.622398px;}
.ws81{word-spacing:-13.547184px;}
.ws26{word-spacing:-13.537787px;}
.ws7f{word-spacing:-13.471034px;}
.ws117{word-spacing:-13.453175px;}
.ws11a{word-spacing:-13.283953px;}
.wse8{word-spacing:-13.199342px;}
.ws88{word-spacing:-13.166432px;}
.ws33{word-spacing:-13.114731px;}
.ws5e{word-spacing:-13.090281px;}
.ws80{word-spacing:-13.081791px;}
.ws71{word-spacing:-13.053948px;}
.ws66{word-spacing:-13.050537px;}
.ws74{word-spacing:-13.050233px;}
.ws78{word-spacing:-13.049773px;}
.ws6a{word-spacing:-13.047567px;}
.ws76{word-spacing:-13.041281px;}
.ws6f{word-spacing:-13.039074px;}
.wsb8{word-spacing:-13.030120px;}
.ws65{word-spacing:-13.018232px;}
.ws50{word-spacing:-13.014131px;}
.ws61{word-spacing:-13.013063px;}
.ws7d{word-spacing:-12.937980px;}
.ws85{word-spacing:-12.914455px;}
.ws4f{word-spacing:-12.898731px;}
.ws7a{word-spacing:-12.898121px;}
.ws3f{word-spacing:-12.776286px;}
.ws102{word-spacing:-12.709528px;}
.ws105{word-spacing:-12.633378px;}
.wse6{word-spacing:-12.607064px;}
.ws11d{word-spacing:-12.522453px;}
.ws4d{word-spacing:-12.452021px;}
.ws56{word-spacing:-12.353230px;}
.ws4c{word-spacing:-12.284505px;}
.ws4e{word-spacing:-12.061151px;}
.wsc9{word-spacing:-12.014786px;}
.wsee{word-spacing:-11.930174px;}
.wsc7{word-spacing:-11.845563px;}
.ws3b{word-spacing:-11.760952px;}
.ws23{word-spacing:-11.676341px;}
.ws22{word-spacing:-11.591730px;}
.wsb7{word-spacing:-10.999452px;}
.wsdf{word-spacing:-10.914840px;}
.wsdb{word-spacing:-10.576396px;}
.ws30{word-spacing:-10.491785px;}
.ws42{word-spacing:-10.322562px;}
.ws40{word-spacing:-10.237951px;}
.ws11c{word-spacing:-10.068729px;}
.ws1d{word-spacing:-9.899506px;}
.ws108{word-spacing:-9.814895px;}
.ws32{word-spacing:-9.730284px;}
.ws9d{word-spacing:-9.561062px;}
.wscb{word-spacing:-9.476451px;}
.ws34{word-spacing:-9.307228px;}
.ws9b{word-spacing:-9.222617px;}
.ws45{word-spacing:-9.053395px;}
.wse{word-spacing:-8.884172px;}
.wscc{word-spacing:-8.714950px;}
.wsce{word-spacing:-8.630339px;}
.ws11f{word-spacing:-8.545728px;}
.ws43{word-spacing:-8.461117px;}
.ws31{word-spacing:-8.376505px;}
.ws10f{word-spacing:-8.291894px;}
.ws112{word-spacing:-8.038061px;}
.ws8e{word-spacing:-7.978314px;}
.ws8c{word-spacing:-7.976992px;}
.ws90{word-spacing:-7.969385px;}
.ws91{word-spacing:-7.953450px;}
.wsb0{word-spacing:-7.868838px;}
.wsd2{word-spacing:-7.784227px;}
.wsd1{word-spacing:-7.770119px;}
.wsd7{word-spacing:-7.615005px;}
.wsaa{word-spacing:-7.530394px;}
.wsa9{word-spacing:-7.445783px;}
.wsda{word-spacing:-7.276560px;}
.ws2e{word-spacing:-7.107338px;}
.wsaf{word-spacing:-7.022727px;}
.wsc4{word-spacing:-6.938116px;}
.wsc2{word-spacing:-6.853504px;}
.wsbf{word-spacing:-6.768893px;}
.ws119{word-spacing:-6.430449px;}
.ws3c{word-spacing:-6.261226px;}
.wsff{word-spacing:-5.838170px;}
.ws14{word-spacing:-5.753559px;}
.ws101{word-spacing:-5.499726px;}
.ws110{word-spacing:-5.330503px;}
.ws2a{word-spacing:-5.245892px;}
.ws111{word-spacing:-5.161281px;}
.ws116{word-spacing:-5.076670px;}
.ws11e{word-spacing:-4.822836px;}
.ws10b{word-spacing:-4.738225px;}
.ws11b{word-spacing:-4.653614px;}
.ws118{word-spacing:-4.484392px;}
.wsd6{word-spacing:-4.315169px;}
.ws10c{word-spacing:-4.145947px;}
.wse9{word-spacing:-4.061336px;}
.wsb1{word-spacing:-3.976725px;}
.wsb2{word-spacing:-3.892114px;}
.ws10e{word-spacing:-3.722891px;}
.ws28{word-spacing:-3.299835px;}
.wsae{word-spacing:-3.215224px;}
.ws100{word-spacing:-3.046002px;}
.wsf8{word-spacing:-2.961391px;}
.wsac{word-spacing:-2.876780px;}
.wsfe{word-spacing:-2.538335px;}
.ws12{word-spacing:-2.284501px;}
.wsd8{word-spacing:-1.776834px;}
.wsa6{word-spacing:-1.692223px;}
.ws5b{word-spacing:-0.355061px;}
.ws2d{word-spacing:-0.084611px;}
.ws62{word-spacing:-0.076151px;}
.ws59{word-spacing:-0.059228px;}
.ws5{word-spacing:0.000000px;}
.ws5a{word-spacing:0.111677px;}
.ws63{word-spacing:10.813379px;}
.wsa7{word-spacing:14.045454px;}
.ws79{word-spacing:15.687015px;}
.wsd3{word-spacing:17.091456px;}
.ws89{word-spacing:17.919778px;}
.wsbc{word-spacing:22.337348px;}
.wsb3{word-spacing:23.183460px;}
.wsa8{word-spacing:23.398472px;}
.ws58{word-spacing:23.437293px;}
.ws109{word-spacing:23.691127px;}
.ws19{word-spacing:23.894253px;}
.wsb9{word-spacing:23.944960px;}
.ws114{word-spacing:24.198794px;}
.ws72{word-spacing:26.004049px;}
.ws68{word-spacing:26.004609px;}
.ws6d{word-spacing:26.007191px;}
.ws60{word-spacing:26.009362px;}
.ws75{word-spacing:26.012691px;}
.ws77{word-spacing:26.017089px;}
.ws6b{word-spacing:26.026438px;}
.ws6c{word-spacing:26.028123px;}
.ws86{word-spacing:26.038480px;}
.wsca{word-spacing:27.414018px;}
.ws7c{word-spacing:27.871105px;}
.wsc3{word-spacing:28.126316px;}
.ws64{word-spacing:28.773437px;}
.ws94{word-spacing:29.360075px;}
.ws9c{word-spacing:29.783131px;}
.wsde{word-spacing:29.867742px;}
.ws82{word-spacing:29.931039px;}
.ws9a{word-spacing:30.036964px;}
.ws115{word-spacing:30.121575px;}
.ws4b{word-spacing:30.206186px;}
.ws37{word-spacing:30.290798px;}
.ws46{word-spacing:30.375409px;}
.ws7b{word-spacing:30.667775px;}
.ws6e{word-spacing:30.995607px;}
.wsa2{word-spacing:31.043111px;}
.wsc1{word-spacing:31.136909px;}
.wsa0{word-spacing:31.309925px;}
.ws9e{word-spacing:31.489871px;}
.wsd4{word-spacing:31.559965px;}
.ws69{word-spacing:31.655869px;}
.ws70{word-spacing:31.664427px;}
.ws8a{word-spacing:31.672920px;}
.ws84{word-spacing:31.869357px;}
.wsbe{word-spacing:32.321466px;}
.wsad{word-spacing:32.406077px;}
.wsc6{word-spacing:33.329309px;}
.ws49{word-spacing:33.433576px;}
.ws41{word-spacing:33.675244px;}
.ws4a{word-spacing:33.878616px;}
.ws96{word-spacing:33.952897px;}
.ws54{word-spacing:34.159132px;}
.wsd0{word-spacing:34.352134px;}
.wsa4{word-spacing:34.501672px;}
.ws48{word-spacing:35.046514px;}
.wsc5{word-spacing:36.721246px;}
.wsab{word-spacing:38.582692px;}
.ws5d{word-spacing:39.051980px;}
.ws67{word-spacing:39.053119px;}
.ws5f{word-spacing:39.063335px;}
.wscd{word-spacing:39.919127px;}
.ws44{word-spacing:40.118959px;}
.ws8d{word-spacing:40.610214px;}
.ws8f{word-spacing:40.810413px;}
.wscf{word-spacing:40.968614px;}
.wsbb{word-spacing:41.290249px;}
.ws8b{word-spacing:125.213595px;}
.ws73{word-spacing:156.460415px;}
.wsef{word-spacing:235.231553px;}
.wsec{word-spacing:249.033052px;}
.ws83{word-spacing:273.853129px;}
.ws7e{word-spacing:273.857495px;}
.wsf1{word-spacing:347.799916px;}
.wseb{word-spacing:457.901920px;}
.wsf0{word-spacing:536.907854px;}
.wse5{word-spacing:633.060746px;}
.wse2{word-spacing:675.366329px;}
.wse4{word-spacing:675.396685px;}
.ws103{word-spacing:692.309321px;}
.wsf4{word-spacing:692.317814px;}
.wse1{word-spacing:717.671912px;}
.wse0{word-spacing:740.965030px;}
.wsf5{word-spacing:759.977496px;}
.wsf7{word-spacing:760.002755px;}
.ws104{word-spacing:881.132816px;}
.wsf6{word-spacing:923.435851px;}
.wse3{word-spacing:965.747379px;}
._51{margin-left:-12.776286px;}
._4f{margin-left:-11.760952px;}
._29{margin-left:-10.111884px;}
._19{margin-left:-8.803387px;}
._52{margin-left:-7.747246px;}
._d{margin-left:-6.599671px;}
._b{margin-left:-4.738225px;}
._2{margin-left:-3.685910px;}
._8{margin-left:-2.538335px;}
._1{margin-left:-1.434624px;}
._6{width:1.945408px;}
._3{width:3.685910px;}
._15{width:4.775207px;}
._1d{width:6.945667px;}
._23{width:9.899506px;}
._54{width:15.481880px;}
._53{width:19.287342px;}
._13{width:21.068180px;}
._3f{width:22.252737px;}
._7{width:24.158695px;}
._11{width:25.254226px;}
._10{width:26.652517px;}
._a{width:28.090907px;}
._1c{width:29.661538px;}
._37{width:30.714502px;}
._e{width:32.034522px;}
._17{width:33.590633px;}
._9{width:35.367468px;}
._12{width:36.599654px;}
._5{width:37.736580px;}
._4b{width:38.752563px;}
._0{width:39.795975px;}
._18{width:41.290249px;}
._c{width:43.067084px;}
._1a{width:45.775290px;}
._24{width:47.551475px;}
._2a{width:48.818175px;}
._1b{width:50.057373px;}
._50{width:51.191054px;}
._22{width:52.205090px;}
._16{width:55.674147px;}
._4e{width:56.677611px;}
._4{width:58.142256px;}
._26{width:59.817627px;}
._27{width:60.920689px;}
._4d{width:65.489043px;}
._28{width:67.858804px;}
._25{width:69.127323px;}
._14{width:71.073380px;}
._40{width:73.442492px;}
._2c{width:101.533400px;}
._3e{width:153.669492px;}
._46{width:195.981021px;}
._35{width:219.482014px;}
._3a{width:274.891954px;}
._49{width:285.953138px;}
._3b{width:301.679806px;}
._f{width:314.027145px;}
._45{width:324.950297px;}
._2f{width:328.256173px;}
._31{width:343.991334px;}
._43{width:370.567701px;}
._2b{width:418.487478px;}
._4a{width:430.215176px;}
._3c{width:461.713365px;}
._30{width:472.518211px;}
._38{width:489.413613px;}
._3d{width:498.747873px;}
._32{width:504.024894px;}
._47{width:509.791329px;}
._44{width:514.829740px;}
._33{width:522.018364px;}
._34{width:540.289240px;}
._2d{width:552.094364px;}
._39{width:568.419547px;}
._4c{width:570.674074px;}
._41{width:594.405892px;}
._48{width:654.561034px;}
._2e{width:696.864070px;}
._42{width:739.175598px;}
._36{width:783.584011px;}
._1f{width:894.616770px;}
._21{width:1308.723511px;}
._20{width:1346.570339px;}
._1e{width:1415.867348px;}
.fc1{color:transparent;}
.fc2{color:rgb(50,50,50);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:37.783804px;}
.fs8{font-size:55.838661px;}
.fsc{font-size:56.675706px;}
.fsa{font-size:59.227647px;}
.fs0{font-size:59.775600px;}
.fs6{font-size:67.689103px;}
.fs9{font-size:71.012210px;}
.fs2{font-size:71.731200px;}
.fse{font-size:75.565102px;}
.fsd{font-size:75.567608px;}
.fs7{font-size:76.150559px;}
.fs5{font-size:84.611166px;}
.fsf{font-size:88.162209px;}
.fs4{font-size:101.914560px;}
.fs3{font-size:118.900320px;}
.fs1{font-size:123.975000px;}
.y75{bottom:-2.417870px;}
.y0{bottom:0.000000px;}
.y74{bottom:2.639980px;}
.y173{bottom:6.037537px;}
.y79{bottom:8.345421px;}
.y73{bottom:8.345460px;}
.y71{bottom:8.345498px;}
.y6f{bottom:11.995748px;}
.y12d{bottom:14.735684px;}
.y7c{bottom:16.842649px;}
.y77{bottom:17.904831px;}
.y16a{bottom:23.055992px;}
.y190{bottom:31.030807px;}
.y172{bottom:31.097598px;}
.y12b{bottom:37.405966px;}
.y18d{bottom:37.910254px;}
.y16f{bottom:37.977045px;}
.y1ac{bottom:40.114348px;}
.y18c{bottom:40.127707px;}
.y1aa{bottom:40.141065px;}
.y18a{bottom:40.154423px;}
.y16d{bottom:40.181139px;}
.y1ad{bottom:42.291727px;}
.y18e{bottom:42.305085px;}
.y170{bottom:42.371876px;}
.y188{bottom:42.772620px;}
.y16b{bottom:42.785978px;}
.y1ae{bottom:48.289536px;}
.y18f{bottom:48.302894px;}
.y171{bottom:48.369684px;}
.y1a9{bottom:49.384904px;}
.y189{bottom:49.398262px;}
.y16c{bottom:49.411620px;}
.y1ab{bottom:62.409099px;}
.y18b{bottom:62.422457px;}
.y16e{bottom:62.462532px;}
.y26{bottom:66.104760px;}
.y140{bottom:74.685986px;}
.y12c{bottom:78.732002px;}
.y184{bottom:91.003866px;}
.y165{bottom:96.120423px;}
.y174{bottom:123.285404px;}
.y1a0{bottom:147.766160px;}
.y163{bottom:149.931609px;}
.y1cf{bottom:151.445464px;}
.y1be{bottom:156.046482px;}
.y10a{bottom:156.798102px;}
.y6a{bottom:158.084773px;}
.y13f{bottom:159.035976px;}
.y96{bottom:159.653833px;}
.y1a5{bottom:159.896335px;}
.y97{bottom:166.949217px;}
.y25{bottom:168.713613px;}
.y166{bottom:171.555788px;}
.yea{bottom:172.066177px;}
.ybd{bottom:173.626744px;}
.y95{bottom:175.278609px;}
.y162{bottom:175.314704px;}
.y185{bottom:176.074101px;}
.y1ce{bottom:176.828559px;}
.yc9{bottom:178.285088px;}
.y1bd{bottom:181.429577px;}
.y109{bottom:182.181197px;}
.y69{bottom:183.467868px;}
.y13e{bottom:184.419071px;}
.y94{bottom:185.039051px;}
.y4c{bottom:187.366100px;}
.y92{bottom:192.332312px;}
.y24{bottom:194.096708px;}
.y19f{bottom:196.873879px;}
.ybc{bottom:196.895112px;}
.ye9{bottom:197.449272px;}
.y93{bottom:200.661704px;}
.y1cd{bottom:202.211655px;}
.y129{bottom:203.039710px;}
.yc8{bottom:203.668183px;}
.y1bc{bottom:206.812672px;}
.y108{bottom:207.564292px;}
.y68{bottom:208.853087px;}
.y13d{bottom:209.802166px;}
.y1a1{bottom:210.222788px;}
.y4b{bottom:212.749195px;}
.y91{bottom:217.715407px;}
.y19e{bottom:222.256975px;}
.ye8{bottom:222.832367px;}
.ybb{bottom:223.864252px;}
.y12e{bottom:226.010121px;}
.y161{bottom:227.051205px;}
.y128{bottom:228.422805px;}
.y1e8{bottom:230.337950px;}
.y1bb{bottom:232.195767px;}
.y67{bottom:234.236182px;}
.y13c{bottom:235.185261px;}
.y4a{bottom:238.132291px;}
.y1cc{bottom:240.287359px;}
.y107{bottom:245.639996px;}
.y1a6{bottom:246.988004px;}
.y167{bottom:246.991152px;}
.yba{bottom:247.132620px;}
.y19d{bottom:247.640070px;}
.ye7{bottom:248.215462px;}
.y23{bottom:253.117977px;}
.y127{bottom:253.808024px;}
.yc7{bottom:255.404685px;}
.y1e7{bottom:255.721045px;}
.y90{bottom:255.791111px;}
.y1ba{bottom:257.580986px;}
.y186{bottom:261.144335px;}
.y147{bottom:261.538668px;}
.y49{bottom:263.515386px;}
.y1cb{bottom:265.670454px;}
.yb9{bottom:270.400988px;}
.y106{bottom:271.023092px;}
.y66{bottom:272.311886px;}
.y1a2{bottom:272.679416px;}
.y19c{bottom:273.023165px;}
.y13b{bottom:273.260965px;}
.y8f{bottom:273.880946px;}
.y126{bottom:279.191119px;}
.y1e6{bottom:281.106263px;}
.y8d{bottom:281.174206px;}
.y1b9{bottom:282.964081px;}
.ye6{bottom:286.291167px;}
.y146{bottom:286.921763px;}
.yb8{bottom:287.216890px;}
.y48{bottom:288.900604px;}
.y8e{bottom:289.503598px;}
.y1ca{bottom:291.055672px;}
.y160{bottom:294.595080px;}
.y105{bottom:296.406187px;}
.y183{bottom:296.624878px;}
.y65{bottom:297.694981px;}
.y19b{bottom:298.406260px;}
.y13a{bottom:298.644061px;}
.y8c{bottom:306.557301px;}
.y1b8{bottom:308.347176px;}
.yb7{bottom:310.485258px;}
.ye5{bottom:311.674262px;}
.y145{bottom:312.304858px;}
.y47{bottom:314.283699px;}
.y1c9{bottom:316.438767px;}
.y125{bottom:317.266823px;}
.y1e5{bottom:319.179844px;}
.y15f{bottom:319.978175px;}
.y104{bottom:321.789282px;}
.y182{bottom:322.007973px;}
.y168{bottom:322.426517px;}
.y64{bottom:323.078076px;}
.y19a{bottom:323.791478px;}
.y139{bottom:324.027156px;}
.y8b{bottom:331.942520px;}
.y1b7{bottom:333.730271px;}
.yb6{bottom:333.753626px;}
.y1a7{bottom:334.079672px;}
.y1a3{bottom:335.136044px;}
.y22{bottom:337.603024px;}
.y144{bottom:337.687953px;}
.y46{bottom:339.666794px;}
.y1c8{bottom:341.821862px;}
.y124{bottom:342.649918px;}
.y1e4{bottom:344.565063px;}
.y15e{bottom:345.361270px;}
.y187{bottom:346.214570px;}
.y103{bottom:347.174500px;}
.y181{bottom:347.391069px;}
.y63{bottom:348.461171px;}
.y199{bottom:349.174573px;}
.y138{bottom:349.410251px;}
.ye4{bottom:349.749966px;}
.yb5{bottom:357.021994px;}
.y8a{bottom:357.325615px;}
.y1b6{bottom:359.113366px;}
.y21{bottom:362.986119px;}
.y45{bottom:365.049889px;}
.y1c7{bottom:367.204958px;}
.y123{bottom:368.033013px;}
.y1e3{bottom:369.948158px;}
.y15d{bottom:370.744365px;}
.y102{bottom:372.557595px;}
.y180{bottom:372.774164px;}
.y198{bottom:374.557668px;}
.y137{bottom:374.795469px;}
.ye3{bottom:375.133061px;}
.y143{bottom:375.763657px;}
.y1f3{bottom:377.742498px;}
.yb4{bottom:380.290362px;}
.y89{bottom:382.708710px;}
.y1b5{bottom:384.496461px;}
.yc6{bottom:386.536876px;}
.y20{bottom:388.369215px;}
.y44{bottom:390.432984px;}
.y1c6{bottom:392.588053px;}
.y122{bottom:393.416108px;}
.y15c{bottom:396.127460px;}
.y1a4{bottom:397.592672px;}
.y169{bottom:397.861882px;}
.y101{bottom:397.940690px;}
.y17f{bottom:398.159382px;}
.y197{bottom:399.940764px;}
.y136{bottom:400.178564px;}
.y142{bottom:401.146752px;}
.y1f2{bottom:403.125594px;}
.yb3{bottom:403.558730px;}
.y1e2{bottom:408.021739px;}
.y88{bottom:408.091805px;}
.y1b4{bottom:409.881680px;}
.y62{bottom:411.919971px;}
.ye2{bottom:413.208765px;}
.y1f{bottom:413.752310px;}
.y43{bottom:415.816079px;}
.y121{bottom:418.799204px;}
.y1a8{bottom:421.171340px;}
.y15b{bottom:421.510555px;}
.y100{bottom:423.323785px;}
.y17e{bottom:423.542477px;}
.yc5{bottom:424.612580px;}
.y196{bottom:425.323859px;}
.y141{bottom:426.529848px;}
.yb2{bottom:426.827098px;}
.y1f1{bottom:428.508689px;}
.y6e{bottom:432.153748px;}
.y175{bottom:433.270029px;}
.y1e1{bottom:433.406957px;}
.y87{bottom:433.474900px;}
.y1b3{bottom:435.264775px;}
.y61{bottom:437.303066px;}
.ye1{bottom:438.591860px;}
.y1e{bottom:439.135405px;}
.y42{bottom:441.201298px;}
.y15a{bottom:446.895774px;}
.y210{bottom:448.654500px;}
.yff{bottom:448.706880px;}
.y17d{bottom:448.925572px;}
.yc4{bottom:449.995675px;}
.yb1{bottom:450.095466px;}
.y1c5{bottom:451.611445px;}
.y135{bottom:451.915066px;}
.y1e0{bottom:458.790052px;}
.y86{bottom:458.857995px;}
.y1b2{bottom:460.647870px;}
.y6d{bottom:460.673344px;}
.y195{bottom:461.325177px;}
.y60{bottom:462.686161px;}
.y1d{bottom:464.518500px;}
.y1f0{bottom:466.584393px;}
.y120{bottom:470.535705px;}
.y159{bottom:472.278869px;}
.yb0{bottom:473.363834px;}
.yfe{bottom:474.089976px;}
.y17c{bottom:474.308667px;}
.ye0{bottom:476.667565px;}
.y41{bottom:479.274879px;}
.y85{bottom:484.243214px;}
.y20f{bottom:484.519500px;}
.y1b1{bottom:486.030965px;}
.y5f{bottom:488.069256px;}
.y6c{bottom:489.053343px;}
.y1c{bottom:489.903718px;}
.y1ef{bottom:491.967488px;}
.yaf{bottom:496.630079px;}
.y1df{bottom:496.865757px;}
.yfd{bottom:499.475194px;}
.ydf{bottom:502.050660px;}
.y20e{bottom:502.452000px;}
.y40{bottom:504.660097px;}
.y84{bottom:509.626309px;}
.y158{bottom:510.352450px;}
.y1b0{bottom:511.414060px;}
.y17b{bottom:512.384371px;}
.y5e{bottom:513.454474px;}
.y194{bottom:514.838814px;}
.y1b{bottom:515.286813px;}
.yae{bottom:519.898447px;}
.y20d{bottom:520.384500px;}
.y1de{bottom:522.248852px;}
.y134{bottom:522.352889px;}
.yfc{bottom:524.858289px;}
.yc3{bottom:526.144960px;}
.yde{bottom:527.433755px;}
.y131{bottom:527.661843px;}
.y3f{bottom:530.043192px;}
.y157{bottom:535.737668px;}
.y1c4{bottom:536.094369px;}
.y1af{bottom:536.797155px;}
.y17a{bottom:537.767467px;}
.y193{bottom:538.105059px;}
.y11f{bottom:538.209096px;}
.y20c{bottom:538.318500px;}
.y5d{bottom:538.837569px;}
.y1a{bottom:540.669908px;}
.yad{bottom:543.166815px;}
.y130{bottom:544.664555px;}
.y133{bottom:545.621257px;}
.y12f{bottom:546.038940px;}
.y1dd{bottom:547.631947px;}
.y83{bottom:547.699890px;}
.yfb{bottom:550.241384px;}
.yc2{bottom:551.528055px;}
.ydd{bottom:552.816850px;}
.y3e{bottom:555.426287px;}
.y20b{bottom:556.251000px;}
.y156{bottom:561.120763px;}
.y192{bottom:561.373427px;}
.y1c3{bottom:561.477464px;}
.y179{bottom:563.150562px;}
.y11e{bottom:563.594315px;}
.y5c{bottom:564.220665px;}
.y19{bottom:566.053003px;}
.y132{bottom:568.889625px;}
.yac{bottom:570.138079px;}
.y82{bottom:573.085108px;}
.y20a{bottom:574.183500px;}
.yfa{bottom:575.624479px;}
.yc1{bottom:576.913274px;}
.y3d{bottom:580.809382px;}
.y191{bottom:584.641795px;}
.y155{bottom:586.503858px;}
.y1c2{bottom:586.860559px;}
.y178{bottom:588.533657px;}
.y11d{bottom:588.977410px;}
.ydc{bottom:590.892554px;}
.y18{bottom:591.436099px;}
.y209{bottom:592.116000px;}
.yab{bottom:593.406447px;}
.y1ee{bottom:593.501992px;}
.y81{bottom:598.468203px;}
.y5b{bottom:602.296369px;}
.y3c{bottom:606.192478px;}
.y12a{bottom:606.330487px;}
.y1dc{bottom:606.653216px;}
.y208{bottom:610.048500px;}
.y154{bottom:611.886954px;}
.y1c1{bottom:612.245778px;}
.yf9{bottom:613.700183px;}
.y11c{bottom:614.360505px;}
.ydb{bottom:616.275649px;}
.yaa{bottom:616.672691px;}
.y17{bottom:616.819194px;}
.y1ed{bottom:618.885087px;}
.y80{bottom:623.851298px;}
.y5a{bottom:627.679464px;}
.y3b{bottom:631.575573px;}
.y1c0{bottom:637.628873px;}
.yf8{bottom:639.083279px;}
.y11b{bottom:639.743600px;}
.yda{bottom:641.658744px;}
.y16{bottom:642.204412px;}
.y207{bottom:645.915000px;}
.y7f{bottom:649.234393px;}
.y59{bottom:653.062559px;}
.y3a{bottom:656.960791px;}
.y177{bottom:658.973604px;}
.y1bf{bottom:663.011968px;}
.ya9{bottom:663.209427px;}
.y153{bottom:663.623455px;}
.yf7{bottom:664.466374px;}
.yd9{bottom:667.041840px;}
.y15{bottom:667.587507px;}
.y58{bottom:678.445654px;}
.y176{bottom:682.241971px;}
.y39{bottom:682.343886px;}
.ya8{bottom:686.477795px;}
.yf6{bottom:689.849469px;}
.y1db{bottom:691.138263px;}
.y14{bottom:692.970602px;}
.y206{bottom:699.712500px;}
.y57{bottom:703.828749px;}
.yd8{bottom:705.117544px;}
.y38{bottom:707.726981px;}
.ya7{bottom:709.746163px;}
.yf5{bottom:715.234687px;}
.y1da{bottom:716.521358px;}
.y205{bottom:717.645000px;}
.y7e{bottom:719.674340px;}
.y164{bottom:719.682833px;}
.y56{bottom:729.213968px;}
.yd7{bottom:730.500639px;}
.ya6{bottom:733.014531px;}
.y37{bottom:733.110076px;}
.y204{bottom:735.577500px;}
.y11a{bottom:737.303436px;}
.y211{bottom:740.626500px;}
.y1d9{bottom:741.904453px;}
.y1ec{bottom:745.802685px;}
.y13{bottom:751.991872px;}
.yf4{bottom:753.308268px;}
.y203{bottom:753.511500px;}
.y55{bottom:754.597063px;}
.yd6{bottom:755.883734px;}
.ya5{bottom:756.282899px;}
.y6b{bottom:757.114190px;}
.y152{bottom:760.571804px;}
.y119{bottom:762.688654px;}
.y1d8{bottom:767.287549px;}
.y36{bottom:771.185781px;}
.y202{bottom:771.444000px;}
.yf3{bottom:778.691363px;}
.ya4{bottom:779.551267px;}
.y54{bottom:779.980158px;}
.yd5{bottom:781.268952px;}
.y151{bottom:785.954899px;}
.y118{bottom:788.071749px;}
.yc0{bottom:788.235237px;}
.y201{bottom:789.376500px;}
.y1d7{bottom:792.670644px;}
.y35{bottom:796.568876px;}
.ya3{bottom:802.819635px;}
.yf2{bottom:804.076582px;}
.y53{bottom:805.363253px;}
.yd4{bottom:806.652047px;}
.y200{bottom:807.309000px;}
.y1eb{bottom:809.261485px;}
.y150{bottom:811.340117px;}
.y117{bottom:813.454844px;}
.y8{bottom:818.490000px;}
.y34{bottom:821.951971px;}
.y1ff{bottom:825.241500px;}
.yf1{bottom:829.459677px;}
.y52{bottom:830.746348px;}
.yd3{bottom:832.035142px;}
.ya2{bottom:834.115898px;}
.y1ea{bottom:834.644580px;}
.y14f{bottom:836.723212px;}
.y116{bottom:838.837939px;}
.y7{bottom:839.412000px;}
.y1fe{bottom:843.175500px;}
.y33{bottom:847.335066px;}
.y12{bottom:848.388183px;}
.y1d6{bottom:851.694036px;}
.yf0{bottom:854.842772px;}
.y51{bottom:856.129443px;}
.y1e9{bottom:860.027675px;}
.y6{bottom:860.332500px;}
.y1fd{bottom:861.108000px;}
.y14e{bottom:862.106307px;}
.y115{bottom:864.221034px;}
.yd2{bottom:870.110847px;}
.y32{bottom:872.718161px;}
.y11{bottom:873.771278px;}
.yef{bottom:880.225867px;}
.y50{bottom:881.514661px;}
.y14d{bottom:887.489402px;}
.y114{bottom:889.604130px;}
.yd1{bottom:895.493942px;}
.y1fc{bottom:896.973000px;}
.y31{bottom:898.103379px;}
.y10{bottom:899.154373px;}
.yee{bottom:905.608962px;}
.y4f{bottom:906.897756px;}
.y14c{bottom:912.872498px;}
.ya1{bottom:913.341729px;}
.y113{bottom:914.989348px;}
.yd0{bottom:920.877037px;}
.y30{bottom:923.486474px;}
.yf{bottom:924.537468px;}
.yed{bottom:930.992057px;}
.y4e{bottom:932.280852px;}
.y1fb{bottom:932.838000px;}
.y5{bottom:935.967000px;}
.y1d5{bottom:936.176960px;}
.ya0{bottom:936.610097px;}
.y14b{bottom:938.255593px;}
.y112{bottom:940.372443px;}
.y2f{bottom:948.869569px;}
.y1fa{bottom:950.772000px;}
.yec{bottom:956.377275px;}
.ycf{bottom:958.952741px;}
.y9f{bottom:959.878465px;}
.y1d4{bottom:961.562179px;}
.y14a{bottom:963.640811px;}
.y111{bottom:965.755538px;}
.y4{bottom:973.327500px;}
.y2e{bottom:974.252665px;}
.ye{bottom:975.399203px;}
.y9e{bottom:983.144710px;}
.yce{bottom:984.335836px;}
.y1f9{bottom:986.637000px;}
.y1d3{bottom:986.945274px;}
.y149{bottom:989.023906px;}
.y4d{bottom:991.302121px;}
.y2d{bottom:999.635760px;}
.yd{bottom:1000.877843px;}
.y110{bottom:1001.756856px;}
.y9d{bottom:1006.413078px;}
.yeb{bottom:1008.111654px;}
.ycd{bottom:1009.718931px;}
.y3{bottom:1010.686500px;}
.y1d2{bottom:1012.328369px;}
.y1f8{bottom:1022.502000px;}
.y2c{bottom:1025.018855px;}
.y148{bottom:1025.025224px;}
.yc{bottom:1026.356483px;}
.y9c{bottom:1029.681446px;}
.y1d1{bottom:1037.711464px;}
.y1f7{bottom:1040.434500px;}
.ycc{bottom:1047.900797px;}
.y2b{bottom:1050.404073px;}
.y9b{bottom:1052.949814px;}
.y10f{bottom:1055.268370px;}
.y1f6{bottom:1058.368500px;}
.yca{bottom:1062.410882px;}
.y1d0{bottom:1063.094559px;}
.ycb{bottom:1070.659592px;}
.y2a{bottom:1075.787168px;}
.y1f5{bottom:1076.301000px;}
.y10e{bottom:1078.536738px;}
.yb{bottom:1080.498593px;}
.y7b{bottom:1088.040192px;}
.y76{bottom:1094.432041px;}
.y2{bottom:1098.486000px;}
.y9a{bottom:1099.486550px;}
.y29{bottom:1101.170263px;}
.y10d{bottom:1101.805106px;}
.y1f4{bottom:1112.166000px;}
.ya{bottom:1112.346893px;}
.y1{bottom:1116.418500px;}
.y10c{bottom:1125.073474px;}
.y28{bottom:1126.553358px;}
.y99{bottom:1130.784936px;}
.y9{bottom:1144.195193px;}
.ybf{bottom:1144.643193px;}
.y7a{bottom:1148.045279px;}
.y10b{bottom:1148.341842px;}
.y72{bottom:1149.770139px;}
.y27{bottom:1151.936453px;}
.y98{bottom:1154.053304px;}
.ybe{bottom:1160.265846px;}
.y70{bottom:1164.685571px;}
.y78{bottom:1165.747753px;}
.y7d{bottom:1212.937501px;}
.h17{height:-39.843239px;}
.h14{height:7.346508px;}
.he{height:8.408691px;}
.h12{height:10.783114px;}
.h11{height:15.840964px;}
.h10{height:21.394705px;}
.h25{height:27.507642px;}
.h13{height:31.105776px;}
.h15{height:33.533544px;}
.h18{height:37.017279px;}
.hd{height:37.216686px;}
.hf{height:37.952840px;}
.h26{height:41.261464px;}
.h19{height:44.420735px;}
.h2{height:46.028379px;}
.h1b{height:47.653128px;}
.h16{height:48.266112px;}
.h1e{height:49.650165px;}
.h1a{height:53.305391px;}
.h1c{height:53.686144px;}
.h1d{height:54.523800px;}
.h29{height:55.013461px;}
.h28{height:55.015285px;}
.h4{height:55.234425px;}
.h2b{height:56.786820px;}
.h9{height:57.112919px;}
.ha{height:58.720149px;}
.h23{height:58.973983px;}
.hb{height:59.650872px;}
.h1f{height:60.581595px;}
.h7{height:63.458375px;}
.h2a{height:64.184499px;}
.h6{height:72.868910px;}
.h8{height:72.970825px;}
.h5{height:85.132629px;}
.h21{height:94.248462px;}
.h3{height:95.463171px;}
.h22{height:121.498717px;}
.h20{height:143.661346px;}
.hc{height:415.980071px;}
.h27{height:453.405648px;}
.h24{height:566.757060px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:66.762352px;}
.w4{width:66.763616px;}
.w5{width:89.373469px;}
.w6{width:99.841953px;}
.w8{width:227.451510px;}
.w3{width:610.344639px;}
.w9{width:680.108472px;}
.w2{width:890.750240px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:1.081500px;}
.x2d{left:9.104145px;}
.xa6{left:10.201627px;}
.xb0{left:19.600348px;}
.xa9{left:23.049695px;}
.x2f{left:24.884612px;}
.xa5{left:32.871909px;}
.xb2{left:39.255798px;}
.x30{left:43.851587px;}
.x36{left:48.100104px;}
.x34{left:53.714378px;}
.x31{left:55.231749px;}
.xa4{left:65.106217px;}
.xbe{left:79.849772px;}
.xc3{left:86.493613px;}
.x18{left:89.200719px;}
.xd{left:90.279314px;}
.xa3{left:91.360814px;}
.x5b{left:92.816562px;}
.xb1{left:112.973574px;}
.x1{left:115.143000px;}
.x21{left:118.749571px;}
.xb{left:120.371711px;}
.x5a{left:122.127614px;}
.xaa{left:124.441580px;}
.x2a{left:127.121380px;}
.x4f{left:128.580080px;}
.x14{left:130.531319px;}
.xc4{left:133.758614px;}
.xb8{left:135.226660px;}
.x4{left:139.782189px;}
.x15{left:141.107078px;}
.x7e{left:143.160232px;}
.xc5{left:145.374000px;}
.xc{left:147.990557px;}
.x70{left:152.634039px;}
.x61{left:153.634076px;}
.x6{left:156.014206px;}
.x23{left:160.727754px;}
.x53{left:162.273458px;}
.x50{left:163.895598px;}
.x24{left:166.598457px;}
.x9e{left:168.893658px;}
.x51{left:172.235606px;}
.x3{left:173.581728px;}
.xb9{left:175.057087px;}
.x38{left:179.047889px;}
.x62{left:182.983346px;}
.x25{left:187.752098px;}
.x52{left:189.790389px;}
.xab{left:191.579637px;}
.x9d{left:195.926495px;}
.x73{left:200.722849px;}
.xa8{left:203.145443px;}
.x7c{left:207.081893px;}
.xe{left:208.491711px;}
.x6c{left:212.332616px;}
.x74{left:214.629940px;}
.x7{left:217.937917px;}
.x35{left:222.454180px;}
.x80{left:225.277888px;}
.xf{left:229.643229px;}
.x8f{left:239.034231px;}
.x76{left:241.728597px;}
.x75{left:243.843324px;}
.x43{left:246.975074px;}
.x1d{left:250.026141px;}
.x3b{left:252.295863px;}
.x77{left:261.130581px;}
.x68{left:263.192228px;}
.x3c{left:265.515031px;}
.x44{left:268.589453px;}
.x1e{left:271.179782px;}
.x3d{left:273.576897px;}
.xbd{left:275.105451px;}
.xb7{left:277.734574px;}
.x69{left:279.271373px;}
.x3e{left:280.305381px;}
.xa{left:283.617604px;}
.x97{left:289.087019px;}
.x45{left:293.728378px;}
.x46{left:294.741154px;}
.xbf{left:309.673760px;}
.x98{left:311.448772px;}
.x47{left:312.625036px;}
.x8d{left:315.489260px;}
.x71{left:316.552993px;}
.xb3{left:322.809227px;}
.xac{left:325.655379px;}
.x8b{left:330.513165px;}
.x8{left:332.464404px;}
.x72{left:339.379731px;}
.x9{left:342.377718px;}
.x37{left:344.254871px;}
.x5{left:350.229385px;}
.x48{left:351.923715px;}
.x90{left:358.628844px;}
.xb4{left:361.561218px;}
.x49{left:364.552628px;}
.x28{left:366.357365px;}
.x63{left:369.998687px;}
.x22{left:375.043458px;}
.x78{left:377.854601px;}
.x88{left:385.277378px;}
.x29{left:387.508882px;}
.x92{left:388.638435px;}
.x4b{left:389.691552px;}
.x4a{left:391.804156px;}
.xba{left:396.659294px;}
.x7d{left:403.367212px;}
.x9f{left:407.303662px;}
.x89{left:409.626465px;}
.x4c{left:414.993965px;}
.x95{left:416.195708px;}
.xb5{left:420.390506px;}
.xad{left:422.194722px;}
.x8a{left:424.310654px;}
.x8c{left:430.459500px;}
.x96{left:431.710076px;}
.xc0{left:433.867268px;}
.x64{left:437.971452px;}
.x3f{left:452.859471px;}
.xc1{left:455.475278px;}
.x12{left:458.048620px;}
.xbb{left:462.688625px;}
.x40{left:463.709125px;}
.x33{left:465.188039px;}
.x13{left:468.624379px;}
.x81{left:474.781717px;}
.x16{left:486.009304px;}
.xae{left:487.128685px;}
.x39{left:491.758984px;}
.x5c{left:493.703854px;}
.x6d{left:495.342980px;}
.x17{left:496.587186px;}
.xc2{left:498.672189px;}
.x7f{left:503.899556px;}
.x5d{left:507.492044px;}
.x1f{left:508.540915px;}
.x6e{left:510.959263px;}
.x3a{left:512.910502px;}
.x10{left:517.513643px;}
.x20{left:519.116674px;}
.x82{left:521.125240px;}
.xa7{left:523.670928px;}
.x79{left:526.257063px;}
.x11{left:528.089402px;}
.x5f{left:534.166057px;}
.xbc{left:535.330239px;}
.x83{left:542.278881px;}
.x7a{left:544.168547px;}
.x42{left:551.181542px;}
.xb6{left:552.876628px;}
.x65{left:554.190145px;}
.x26{left:555.608456px;}
.x6f{left:556.827184px;}
.x2c{left:560.933136px;}
.x2e{left:569.990744px;}
.xa0{left:574.307655px;}
.x66{left:576.942571px;}
.x5e{left:578.518000px;}
.x54{left:584.968342px;}
.x27{left:588.923901px;}
.xaf{left:596.879237px;}
.x7b{left:601.501856px;}
.x55{left:607.659194px;}
.x84{left:610.221921px;}
.xa1{left:615.498123px;}
.x67{left:630.207791px;}
.x85{left:631.373439px;}
.x32{left:633.159263px;}
.x60{left:635.866172px;}
.xa2{left:638.252671px;}
.x2b{left:639.254942px;}
.x1b{left:655.994298px;}
.x99{left:658.922218px;}
.x4d{left:661.041192px;}
.x91{left:665.374684px;}
.x57{left:673.215735px;}
.x56{left:676.419674px;}
.x4e{left:679.638476px;}
.x9a{left:682.710775px;}
.x93{left:694.462798px;}
.x19{left:698.775057px;}
.x1a{left:709.350816px;}
.x94{left:712.327571px;}
.x1c{left:715.344666px;}
.x9b{left:729.141350px;}
.x6a{left:735.844355px;}
.x9c{left:738.542968px;}
.x58{left:739.971895px;}
.x6b{left:750.379920px;}
.x59{left:753.679403px;}
.x41{left:759.528874px;}
.x86{left:783.901317px;}
.x87{left:794.477076px;}
.x8e{left:798.816937px;}
@media print{
.v3{vertical-align:-16.389371pt;}
.v1{vertical-align:-11.286094pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:11.278545pt;}
.v5{vertical-align:22.564639pt;}
.v7{vertical-align:44.291313pt;}
.v8{vertical-align:51.591415pt;}
.v4{vertical-align:89.707460pt;}
.v2{vertical-align:124.690577pt;}
.ls9{letter-spacing:-0.496344pt;}
.ls7{letter-spacing:-0.297806pt;}
.ls8{letter-spacing:-0.148903pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000523pt;}
.ls21{letter-spacing:0.000614pt;}
.ls1d{letter-spacing:0.002942pt;}
.ls16{letter-spacing:0.003619pt;}
.ls1e{letter-spacing:0.003812pt;}
.ls17{letter-spacing:0.004113pt;}
.ls1f{letter-spacing:0.005284pt;}
.ls4{letter-spacing:0.063122pt;}
.ls3{letter-spacing:0.112030pt;}
.lsa{letter-spacing:0.248172pt;}
.ls15{letter-spacing:9.024346pt;}
.ls19{letter-spacing:16.714665pt;}
.ls18{letter-spacing:20.015980pt;}
.lsc{letter-spacing:23.182407pt;}
.lsd{letter-spacing:23.187579pt;}
.lsb{letter-spacing:23.191925pt;}
.lse{letter-spacing:23.193186pt;}
.ls14{letter-spacing:24.471372pt;}
.ls6{letter-spacing:24.622856pt;}
.ls11{letter-spacing:25.013228pt;}
.ls2{letter-spacing:25.245914pt;}
.lsf{letter-spacing:25.611260pt;}
.ls10{letter-spacing:27.073153pt;}
.ls12{letter-spacing:34.781809pt;}
.ls1c{letter-spacing:37.600433pt;}
.ls1b{letter-spacing:37.607982pt;}
.ls13{letter-spacing:46.376160pt;}
.ls1{letter-spacing:278.665865pt;}
.ls20{letter-spacing:638.026704pt;}
.ls1a{letter-spacing:743.768288pt;}
.ws2{word-spacing:-101.384000pt;}
.ws3{word-spacing:-92.457800pt;}
.ws1{word-spacing:-72.842200pt;}
.ws87{word-spacing:-69.571151pt;}
.ws120{word-spacing:-58.660181pt;}
.ws123{word-spacing:-53.495535pt;}
.ws4{word-spacing:-42.146065pt;}
.ws38{word-spacing:-37.604963pt;}
.ws0{word-spacing:-35.121486pt;}
.ws5c{word-spacing:-34.785575pt;}
.ws121{word-spacing:-33.208667pt;}
.ws122{word-spacing:-31.827186pt;}
.ws27{word-spacing:-20.457100pt;}
.ws106{word-spacing:-20.231470pt;}
.ws2c{word-spacing:-20.005840pt;}
.wsbd{word-spacing:-19.930630pt;}
.wsb{word-spacing:-19.479371pt;}
.wsf{word-spacing:-19.404161pt;}
.ws6{word-spacing:-19.341119pt;}
.wsfb{word-spacing:-19.328951pt;}
.wsb4{word-spacing:-19.253741pt;}
.ws24{word-spacing:-18.877691pt;}
.wsfc{word-spacing:-18.672976pt;}
.wsba{word-spacing:-18.652062pt;}
.wsc8{word-spacing:-18.426432pt;}
.ws113{word-spacing:-18.351222pt;}
.ws2f{word-spacing:-18.200802pt;}
.wsf2{word-spacing:-18.050382pt;}
.ws25{word-spacing:-17.749542pt;}
.ws10d{word-spacing:-17.523913pt;}
.wsb6{word-spacing:-17.373493pt;}
.ws107{word-spacing:-17.223073pt;}
.wsa{word-spacing:-17.072653pt;}
.wsf9{word-spacing:-16.922233pt;}
.wsb5{word-spacing:-16.847023pt;}
.ws20{word-spacing:-16.771813pt;}
.ws18{word-spacing:-16.696603pt;}
.ws35{word-spacing:-16.668692pt;}
.wse7{word-spacing:-16.546184pt;}
.wsfa{word-spacing:-16.395764pt;}
.wsea{word-spacing:-16.320554pt;}
.ws57{word-spacing:-16.170134pt;}
.ws97{word-spacing:-16.094924pt;}
.ws98{word-spacing:-16.019714pt;}
.wsd5{word-spacing:-15.944504pt;}
.ws29{word-spacing:-15.418035pt;}
.ws1c{word-spacing:-15.192405pt;}
.wsdd{word-spacing:-15.117195pt;}
.ws92{word-spacing:-15.041985pt;}
.wsfd{word-spacing:-14.966775pt;}
.ws7{word-spacing:-14.820642pt;}
.wsd9{word-spacing:-14.816355pt;}
.ws8{word-spacing:-14.730051pt;}
.wsdc{word-spacing:-14.590726pt;}
.ws1a{word-spacing:-14.440306pt;}
.ws15{word-spacing:-14.365096pt;}
.ws1f{word-spacing:-14.289886pt;}
.ws1b{word-spacing:-14.139466pt;}
.ws53{word-spacing:-14.064256pt;}
.wsed{word-spacing:-14.005197pt;}
.ws3e{word-spacing:-13.838626pt;}
.wsa5{word-spacing:-13.763416pt;}
.wsc{word-spacing:-13.537787pt;}
.ws51{word-spacing:-13.510253pt;}
.ws52{word-spacing:-13.462577pt;}
.ws95{word-spacing:-13.393919pt;}
.ws93{word-spacing:-13.387367pt;}
.ws10a{word-spacing:-13.312157pt;}
.ws3a{word-spacing:-13.086527pt;}
.ws10{word-spacing:-13.011317pt;}
.ws13{word-spacing:-12.936107pt;}
.ws55{word-spacing:-12.908563pt;}
.ws1e{word-spacing:-12.860897pt;}
.ws21{word-spacing:-12.785687pt;}
.ws39{word-spacing:-12.710477pt;}
.ws3d{word-spacing:-12.635267pt;}
.wsa3{word-spacing:-12.632882pt;}
.wsa1{word-spacing:-12.632154pt;}
.ws99{word-spacing:-12.628205pt;}
.ws9f{word-spacing:-12.564787pt;}
.ws9{word-spacing:-12.560058pt;}
.wsc0{word-spacing:-12.540443pt;}
.ws17{word-spacing:-12.484848pt;}
.ws36{word-spacing:-12.409638pt;}
.ws47{word-spacing:-12.392351pt;}
.wsd{word-spacing:-12.334428pt;}
.ws16{word-spacing:-12.259218pt;}
.ws11{word-spacing:-12.184008pt;}
.wsf3{word-spacing:-12.109631pt;}
.ws2b{word-spacing:-12.108798pt;}
.ws81{word-spacing:-12.041942pt;}
.ws26{word-spacing:-12.033588pt;}
.ws7f{word-spacing:-11.974252pt;}
.ws117{word-spacing:-11.958378pt;}
.ws11a{word-spacing:-11.807958pt;}
.wse8{word-spacing:-11.732748pt;}
.ws88{word-spacing:-11.703495pt;}
.ws33{word-spacing:-11.657538pt;}
.ws5e{word-spacing:-11.635805pt;}
.ws80{word-spacing:-11.628259pt;}
.ws71{word-spacing:-11.603509pt;}
.ws66{word-spacing:-11.600477pt;}
.ws74{word-spacing:-11.600207pt;}
.ws78{word-spacing:-11.599799pt;}
.ws6a{word-spacing:-11.597837pt;}
.ws76{word-spacing:-11.592249pt;}
.ws6f{word-spacing:-11.590288pt;}
.wsb8{word-spacing:-11.582329pt;}
.ws65{word-spacing:-11.571761pt;}
.ws50{word-spacing:-11.568116pt;}
.ws61{word-spacing:-11.567167pt;}
.ws7d{word-spacing:-11.500427pt;}
.ws85{word-spacing:-11.479515pt;}
.ws4f{word-spacing:-11.465538pt;}
.ws7a{word-spacing:-11.464997pt;}
.ws3f{word-spacing:-11.356699pt;}
.ws102{word-spacing:-11.297359pt;}
.ws105{word-spacing:-11.229669pt;}
.wse6{word-spacing:-11.206279pt;}
.ws11d{word-spacing:-11.131069pt;}
.ws4d{word-spacing:-11.068463pt;}
.ws56{word-spacing:-10.980649pt;}
.ws4c{word-spacing:-10.919560pt;}
.ws4e{word-spacing:-10.721023pt;}
.wsc9{word-spacing:-10.679809pt;}
.wsee{word-spacing:-10.604600pt;}
.wsc7{word-spacing:-10.529390pt;}
.ws3b{word-spacing:-10.454180pt;}
.ws23{word-spacing:-10.378970pt;}
.ws22{word-spacing:-10.303760pt;}
.wsb7{word-spacing:-9.777290pt;}
.wsdf{word-spacing:-9.702080pt;}
.wsdb{word-spacing:-9.401241pt;}
.ws30{word-spacing:-9.326031pt;}
.ws42{word-spacing:-9.175611pt;}
.ws40{word-spacing:-9.100401pt;}
.ws11c{word-spacing:-8.949981pt;}
.ws1d{word-spacing:-8.799561pt;}
.ws108{word-spacing:-8.724351pt;}
.ws32{word-spacing:-8.649141pt;}
.ws9d{word-spacing:-8.498722pt;}
.wscb{word-spacing:-8.423512pt;}
.ws34{word-spacing:-8.273092pt;}
.ws9b{word-spacing:-8.197882pt;}
.ws45{word-spacing:-8.047462pt;}
.wse{word-spacing:-7.897042pt;}
.wscc{word-spacing:-7.746622pt;}
.wsce{word-spacing:-7.671412pt;}
.ws11f{word-spacing:-7.596202pt;}
.ws43{word-spacing:-7.520993pt;}
.ws31{word-spacing:-7.445783pt;}
.ws10f{word-spacing:-7.370573pt;}
.ws112{word-spacing:-7.144943pt;}
.ws8e{word-spacing:-7.091834pt;}
.ws8c{word-spacing:-7.090660pt;}
.ws90{word-spacing:-7.083898pt;}
.ws91{word-spacing:-7.069733pt;}
.wsb0{word-spacing:-6.994523pt;}
.wsd2{word-spacing:-6.919313pt;}
.wsd1{word-spacing:-6.906772pt;}
.wsd7{word-spacing:-6.768893pt;}
.wsaa{word-spacing:-6.693683pt;}
.wsa9{word-spacing:-6.618473pt;}
.wsda{word-spacing:-6.468054pt;}
.ws2e{word-spacing:-6.317634pt;}
.wsaf{word-spacing:-6.242424pt;}
.wsc4{word-spacing:-6.167214pt;}
.wsc2{word-spacing:-6.092004pt;}
.wsbf{word-spacing:-6.016794pt;}
.ws119{word-spacing:-5.715954pt;}
.ws3c{word-spacing:-5.565534pt;}
.wsff{word-spacing:-5.189485pt;}
.ws14{word-spacing:-5.114275pt;}
.ws101{word-spacing:-4.888645pt;}
.ws110{word-spacing:-4.738225pt;}
.ws2a{word-spacing:-4.663015pt;}
.ws111{word-spacing:-4.587805pt;}
.ws116{word-spacing:-4.512596pt;}
.ws11e{word-spacing:-4.286966pt;}
.ws10b{word-spacing:-4.211756pt;}
.ws11b{word-spacing:-4.136546pt;}
.ws118{word-spacing:-3.986126pt;}
.wsd6{word-spacing:-3.835706pt;}
.ws10c{word-spacing:-3.685286pt;}
.wse9{word-spacing:-3.610076pt;}
.wsb1{word-spacing:-3.534867pt;}
.wsb2{word-spacing:-3.459657pt;}
.ws10e{word-spacing:-3.309237pt;}
.ws28{word-spacing:-2.933187pt;}
.wsae{word-spacing:-2.857977pt;}
.ws100{word-spacing:-2.707557pt;}
.wsf8{word-spacing:-2.632347pt;}
.wsac{word-spacing:-2.557137pt;}
.wsfe{word-spacing:-2.256298pt;}
.ws12{word-spacing:-2.030668pt;}
.wsd8{word-spacing:-1.579408pt;}
.wsa6{word-spacing:-1.504199pt;}
.ws5b{word-spacing:-0.315610pt;}
.ws2d{word-spacing:-0.075210pt;}
.ws62{word-spacing:-0.067689pt;}
.ws59{word-spacing:-0.052647pt;}
.ws5{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.099269pt;}
.ws63{word-spacing:9.611893pt;}
.wsa7{word-spacing:12.484848pt;}
.ws79{word-spacing:13.944014pt;}
.wsd3{word-spacing:15.192405pt;}
.ws89{word-spacing:15.928692pt;}
.wsbc{word-spacing:19.855420pt;}
.wsb3{word-spacing:20.607520pt;}
.wsa8{word-spacing:20.798642pt;}
.ws58{word-spacing:20.833149pt;}
.ws109{word-spacing:21.058779pt;}
.ws19{word-spacing:21.239336pt;}
.wsb9{word-spacing:21.284409pt;}
.ws114{word-spacing:21.510039pt;}
.ws72{word-spacing:23.114710pt;}
.ws68{word-spacing:23.115208pt;}
.ws6d{word-spacing:23.117503pt;}
.ws60{word-spacing:23.119433pt;}
.ws75{word-spacing:23.122392pt;}
.ws77{word-spacing:23.126301pt;}
.ws6b{word-spacing:23.134611pt;}
.ws6c{word-spacing:23.136109pt;}
.ws86{word-spacing:23.145315pt;}
.wsca{word-spacing:24.368016pt;}
.ws7c{word-spacing:24.774315pt;}
.wsc3{word-spacing:25.001170pt;}
.ws64{word-spacing:25.576389pt;}
.ws94{word-spacing:26.097844pt;}
.ws9c{word-spacing:26.473894pt;}
.wsde{word-spacing:26.549104pt;}
.ws82{word-spacing:26.605368pt;}
.ws9a{word-spacing:26.699524pt;}
.ws115{word-spacing:26.774734pt;}
.ws4b{word-spacing:26.849943pt;}
.ws37{word-spacing:26.925153pt;}
.ws46{word-spacing:27.000363pt;}
.ws7b{word-spacing:27.260244pt;}
.ws6e{word-spacing:27.551650pt;}
.wsa2{word-spacing:27.593877pt;}
.wsc1{word-spacing:27.677253pt;}
.wsa0{word-spacing:27.831044pt;}
.ws9e{word-spacing:27.990996pt;}
.wsd4{word-spacing:28.053302pt;}
.ws69{word-spacing:28.138550pt;}
.ws70{word-spacing:28.146157pt;}
.ws8a{word-spacing:28.153707pt;}
.ws84{word-spacing:28.328317pt;}
.wsbe{word-spacing:28.730192pt;}
.wsad{word-spacing:28.805402pt;}
.wsc6{word-spacing:29.626052pt;}
.ws49{word-spacing:29.718735pt;}
.ws41{word-spacing:29.933550pt;}
.ws4a{word-spacing:30.114326pt;}
.ws96{word-spacing:30.180353pt;}
.ws54{word-spacing:30.363673pt;}
.wsd0{word-spacing:30.535230pt;}
.wsa4{word-spacing:30.668152pt;}
.ws48{word-spacing:31.152457pt;}
.wsc5{word-spacing:32.641108pt;}
.wsab{word-spacing:34.295726pt;}
.ws5d{word-spacing:34.712871pt;}
.ws67{word-spacing:34.713883pt;}
.ws5f{word-spacing:34.722964pt;}
.wscd{word-spacing:35.483668pt;}
.ws44{word-spacing:35.661297pt;}
.ws8d{word-spacing:36.097968pt;}
.ws8f{word-spacing:36.275923pt;}
.wscf{word-spacing:36.416545pt;}
.wsbb{word-spacing:36.702444pt;}
.ws8b{word-spacing:111.300974pt;}
.ws73{word-spacing:139.075925pt;}
.wsef{word-spacing:209.094714pt;}
.wsec{word-spacing:221.362713pt;}
.ws83{word-spacing:243.425004pt;}
.ws7e{word-spacing:243.428885pt;}
.wsf1{word-spacing:309.155481pt;}
.wseb{word-spacing:407.023929pt;}
.wsf0{word-spacing:477.251426pt;}
.wse5{word-spacing:562.720663pt;}
.wse2{word-spacing:600.325626pt;}
.wse4{word-spacing:600.352609pt;}
.ws103{word-spacing:615.386063pt;}
.wsf4{word-spacing:615.393612pt;}
.wse1{word-spacing:637.930589pt;}
.wse0{word-spacing:658.635583pt;}
.wsf5{word-spacing:675.535552pt;}
.wsf7{word-spacing:675.558005pt;}
.ws104{word-spacing:783.229169pt;}
.wsf6{word-spacing:820.831867pt;}
.wse3{word-spacing:858.442115pt;}
._51{margin-left:-11.356699pt;}
._4f{margin-left:-10.454180pt;}
._29{margin-left:-8.988341pt;}
._19{margin-left:-7.825233pt;}
._52{margin-left:-6.886441pt;}
._d{margin-left:-5.866374pt;}
._b{margin-left:-4.211756pt;}
._2{margin-left:-3.276364pt;}
._8{margin-left:-2.256298pt;}
._1{margin-left:-1.275221pt;}
._6{width:1.729251pt;}
._3{width:3.276364pt;}
._15{width:4.244628pt;}
._1d{width:6.173926pt;}
._23{width:8.799561pt;}
._54{width:13.761671pt;}
._53{width:17.144304pt;}
._13{width:18.727271pt;}
._3f{width:19.780210pt;}
._7{width:21.474396pt;}
._11{width:22.448201pt;}
._10{width:23.691127pt;}
._a{width:24.969695pt;}
._1c{width:26.365812pt;}
._37{width:27.301780pt;}
._e{width:28.475131pt;}
._17{width:29.858340pt;}
._9{width:31.437749pt;}
._12{width:32.533025pt;}
._5{width:33.543627pt;}
._4b{width:34.446723pt;}
._0{width:35.374200pt;}
._18{width:36.702444pt;}
._c{width:38.281852pt;}
._1a{width:40.689147pt;}
._24{width:42.267978pt;}
._2a{width:43.393934pt;}
._1b{width:44.495443pt;}
._50{width:45.503159pt;}
._22{width:46.404524pt;}
._16{width:49.488131pt;}
._4e{width:50.380099pt;}
._4{width:51.682006pt;}
._26{width:53.171224pt;}
._27{width:54.151723pt;}
._4d{width:58.212482pt;}
._28{width:60.318937pt;}
._25{width:61.446509pt;}
._14{width:63.176337pt;}
._40{width:65.282215pt;}
._2c{width:90.251911pt;}
._3e{width:136.595104pt;}
._46{width:174.205352pt;}
._35{width:195.095124pt;}
._3a{width:244.348403pt;}
._49{width:254.180567pt;}
._3b{width:268.159827pt;}
._f{width:279.135240pt;}
._45{width:288.844708pt;}
._2f{width:291.783265pt;}
._31{width:305.770074pt;}
._43{width:329.393512pt;}
._2b{width:371.988869pt;}
._4a{width:382.413490pt;}
._3c{width:410.411880pt;}
._30{width:420.016188pt;}
._38{width:435.034323pt;}
._3d{width:443.331443pt;}
._32{width:448.022128pt;}
._47{width:453.147848pt;}
._44{width:457.626435pt;}
._33{width:464.016324pt;}
._34{width:480.257102pt;}
._2d{width:490.750546pt;}
._39{width:505.261820pt;}
._4c{width:507.265844pt;}
._41{width:528.360793pt;}
._48{width:581.832031pt;}
._2e{width:619.434729pt;}
._42{width:657.044976pt;}
._36{width:696.519121pt;}
._1f{width:795.214907pt;}
._21{width:1163.309788pt;}
._20{width:1196.951412pt;}
._1e{width:1258.548754pt;}
.fsb{font-size:33.585604pt;}
.fs8{font-size:49.634365pt;}
.fsc{font-size:50.378405pt;}
.fsa{font-size:52.646797pt;}
.fs0{font-size:53.133867pt;}
.fs6{font-size:60.168091pt;}
.fs9{font-size:63.121965pt;}
.fs2{font-size:63.761067pt;}
.fse{font-size:67.168980pt;}
.fsd{font-size:67.171207pt;}
.fs7{font-size:67.689386pt;}
.fs5{font-size:75.209926pt;}
.fsf{font-size:78.366408pt;}
.fs4{font-size:90.590720pt;}
.fs3{font-size:105.689173pt;}
.fs1{font-size:110.200000pt;}
.y75{bottom:-2.149217pt;}
.y0{bottom:0.000000pt;}
.y74{bottom:2.346649pt;}
.y173{bottom:5.366700pt;}
.y79{bottom:7.418152pt;}
.y73{bottom:7.418186pt;}
.y71{bottom:7.418221pt;}
.y6f{bottom:10.662888pt;}
.y12d{bottom:13.098385pt;}
.y7c{bottom:14.971244pt;}
.y77{bottom:15.915406pt;}
.y16a{bottom:20.494215pt;}
.y190{bottom:27.582940pt;}
.y172{bottom:27.642309pt;}
.y12b{bottom:33.249747pt;}
.y18d{bottom:33.698003pt;}
.y16f{bottom:33.757373pt;}
.y1ac{bottom:35.657199pt;}
.y18c{bottom:35.669072pt;}
.y1aa{bottom:35.680946pt;}
.y18a{bottom:35.692820pt;}
.y16d{bottom:35.716568pt;}
.y1ad{bottom:37.592646pt;}
.y18e{bottom:37.604520pt;}
.y170{bottom:37.663889pt;}
.y188{bottom:38.020107pt;}
.y16b{bottom:38.031981pt;}
.y1ae{bottom:42.924032pt;}
.y18f{bottom:42.935906pt;}
.y171{bottom:42.995275pt;}
.y1a9{bottom:43.897692pt;}
.y189{bottom:43.909566pt;}
.y16c{bottom:43.921440pt;}
.y1ab{bottom:55.474755pt;}
.y18b{bottom:55.486629pt;}
.y16e{bottom:55.522250pt;}
.y26{bottom:58.759786pt;}
.y140{bottom:66.387543pt;}
.y12c{bottom:69.984001pt;}
.y184{bottom:80.892326pt;}
.y165{bottom:85.440376pt;}
.y174{bottom:109.587026pt;}
.y1a0{bottom:131.347698pt;}
.y163{bottom:133.272541pt;}
.y1cf{bottom:134.618191pt;}
.y1be{bottom:138.707984pt;}
.y10a{bottom:139.376091pt;}
.y6a{bottom:140.519799pt;}
.y13f{bottom:141.365312pt;}
.y96{bottom:141.914518pt;}
.y1a5{bottom:142.130076pt;}
.y97{bottom:148.399304pt;}
.y25{bottom:149.967656pt;}
.y166{bottom:152.494033pt;}
.yea{bottom:152.947713pt;}
.ybd{bottom:154.334883pt;}
.y95{bottom:155.803208pt;}
.y162{bottom:155.835292pt;}
.y185{bottom:156.510312pt;}
.y1ce{bottom:157.180942pt;}
.yc9{bottom:158.475634pt;}
.y1bd{bottom:161.270735pt;}
.y109{bottom:161.938842pt;}
.y69{bottom:163.082550pt;}
.y13e{bottom:163.928063pt;}
.y94{bottom:164.479157pt;}
.y4c{bottom:166.547645pt;}
.y92{bottom:170.962055pt;}
.y24{bottom:172.530407pt;}
.y19f{bottom:174.999004pt;}
.ybc{bottom:175.017877pt;}
.ye9{bottom:175.510464pt;}
.y93{bottom:178.365959pt;}
.y1cd{bottom:179.743693pt;}
.y129{bottom:180.479743pt;}
.yc8{bottom:181.038385pt;}
.y1bc{bottom:183.833487pt;}
.y108{bottom:184.501593pt;}
.y68{bottom:185.647188pt;}
.y13d{bottom:186.490814pt;}
.y1a1{bottom:186.864700pt;}
.y4b{bottom:189.110396pt;}
.y91{bottom:193.524806pt;}
.y19e{bottom:197.561755pt;}
.ye8{bottom:198.073215pt;}
.ybb{bottom:198.990446pt;}
.y12e{bottom:200.897885pt;}
.y161{bottom:201.823294pt;}
.y128{bottom:203.042494pt;}
.y1e8{bottom:204.744844pt;}
.y1bb{bottom:206.396238pt;}
.y67{bottom:208.209939pt;}
.y13c{bottom:209.053565pt;}
.y4a{bottom:211.673147pt;}
.y1cc{bottom:213.588763pt;}
.y107{bottom:218.346664pt;}
.y1a6{bottom:219.544892pt;}
.y167{bottom:219.547691pt;}
.yba{bottom:219.673440pt;}
.y19d{bottom:220.124506pt;}
.ye7{bottom:220.635967pt;}
.y23{bottom:224.993758pt;}
.y127{bottom:225.607132pt;}
.yc7{bottom:227.026387pt;}
.y1e7{bottom:227.307596pt;}
.y90{bottom:227.369877pt;}
.y1ba{bottom:228.960876pt;}
.y186{bottom:232.128298pt;}
.y147{bottom:232.478816pt;}
.y49{bottom:234.235898pt;}
.y1cb{bottom:236.151515pt;}
.yb9{bottom:240.356434pt;}
.y106{bottom:240.909415pt;}
.y66{bottom:242.055010pt;}
.y1a2{bottom:242.381703pt;}
.y19c{bottom:242.687258pt;}
.y13b{bottom:242.898636pt;}
.y8f{bottom:243.449729pt;}
.y126{bottom:248.169883pt;}
.y1e6{bottom:249.872234pt;}
.y8d{bottom:249.932628pt;}
.y1b9{bottom:251.523627pt;}
.ye6{bottom:254.481037pt;}
.y146{bottom:255.041567pt;}
.yb8{bottom:255.303903pt;}
.y48{bottom:256.800537pt;}
.y8e{bottom:257.336532pt;}
.y1ca{bottom:258.716153pt;}
.y160{bottom:261.862293pt;}
.y105{bottom:263.472166pt;}
.y183{bottom:263.666559pt;}
.y65{bottom:264.617761pt;}
.y19b{bottom:265.250009pt;}
.y13a{bottom:265.461387pt;}
.y8c{bottom:272.495379pt;}
.y1b8{bottom:274.086379pt;}
.yb7{bottom:275.986896pt;}
.ye5{bottom:277.043788pt;}
.y145{bottom:277.604318pt;}
.y47{bottom:279.363288pt;}
.y1c9{bottom:281.278904pt;}
.y125{bottom:282.014954pt;}
.y1e5{bottom:283.715417pt;}
.y15f{bottom:284.425045pt;}
.y104{bottom:286.034917pt;}
.y182{bottom:286.229310pt;}
.y168{bottom:286.601348pt;}
.y64{bottom:287.180512pt;}
.y19a{bottom:287.814647pt;}
.y139{bottom:288.024138pt;}
.y8b{bottom:295.060018pt;}
.y1b7{bottom:296.649130pt;}
.yb6{bottom:296.669890pt;}
.y1a7{bottom:296.959708pt;}
.y1a3{bottom:297.898706pt;}
.y22{bottom:300.091577pt;}
.y144{bottom:300.167069pt;}
.y46{bottom:301.926039pt;}
.y1c8{bottom:303.841656pt;}
.y124{bottom:304.577705pt;}
.y1e4{bottom:306.280056pt;}
.y15e{bottom:306.987796pt;}
.y187{bottom:307.746285pt;}
.y103{bottom:308.599556pt;}
.y181{bottom:308.792061pt;}
.y63{bottom:309.743263pt;}
.y199{bottom:310.377399pt;}
.y138{bottom:310.586890pt;}
.ye4{bottom:310.888859pt;}
.yb5{bottom:317.352884pt;}
.y8a{bottom:317.622769pt;}
.y1b6{bottom:319.211881pt;}
.y21{bottom:322.654328pt;}
.y45{bottom:324.488790pt;}
.y1c7{bottom:326.404407pt;}
.y123{bottom:327.140456pt;}
.y1e3{bottom:328.842807pt;}
.y15d{bottom:329.550547pt;}
.y102{bottom:331.162307pt;}
.y180{bottom:331.354812pt;}
.y198{bottom:332.940150pt;}
.y137{bottom:333.151528pt;}
.ye3{bottom:333.451610pt;}
.y143{bottom:334.012140pt;}
.y1f3{bottom:335.771110pt;}
.yb4{bottom:338.035878pt;}
.y89{bottom:340.185520pt;}
.y1b5{bottom:341.774632pt;}
.yc6{bottom:343.588334pt;}
.y20{bottom:345.217080pt;}
.y44{bottom:347.051542pt;}
.y1c6{bottom:348.967158pt;}
.y122{bottom:349.703208pt;}
.y15c{bottom:352.113298pt;}
.y1a4{bottom:353.415708pt;}
.y169{bottom:353.655006pt;}
.y101{bottom:353.725058pt;}
.y17f{bottom:353.919451pt;}
.y197{bottom:355.502901pt;}
.y136{bottom:355.714279pt;}
.y142{bottom:356.574891pt;}
.y1f2{bottom:358.333861pt;}
.yb3{bottom:358.718871pt;}
.y1e2{bottom:362.685990pt;}
.y88{bottom:362.748271pt;}
.y1b4{bottom:364.339271pt;}
.y62{bottom:366.151085pt;}
.ye2{bottom:367.296680pt;}
.y1f{bottom:367.779831pt;}
.y43{bottom:369.614293pt;}
.y121{bottom:372.265959pt;}
.y1a8{bottom:374.374524pt;}
.y15b{bottom:374.676049pt;}
.y100{bottom:376.287809pt;}
.y17e{bottom:376.482202pt;}
.yc5{bottom:377.433404pt;}
.y196{bottom:378.065652pt;}
.y141{bottom:379.137642pt;}
.yb2{bottom:379.401865pt;}
.y1f1{bottom:380.896612pt;}
.y6e{bottom:384.136665pt;}
.y175{bottom:385.128915pt;}
.y1e1{bottom:385.250629pt;}
.y87{bottom:385.311022pt;}
.y1b3{bottom:386.902022pt;}
.y61{bottom:388.713836pt;}
.ye1{bottom:389.859431pt;}
.y1e{bottom:390.342582pt;}
.y42{bottom:392.178931pt;}
.y15a{bottom:397.240688pt;}
.y210{bottom:398.804000pt;}
.yff{bottom:398.850560pt;}
.y17d{bottom:399.044953pt;}
.yc4{bottom:399.996156pt;}
.yb1{bottom:400.084859pt;}
.y1c5{bottom:401.432396pt;}
.y135{bottom:401.702281pt;}
.y1e0{bottom:407.813380pt;}
.y86{bottom:407.873774pt;}
.y1b2{bottom:409.464773pt;}
.y6d{bottom:409.487417pt;}
.y195{bottom:410.066824pt;}
.y60{bottom:411.276588pt;}
.y1d{bottom:412.905333pt;}
.y1f0{bottom:414.741683pt;}
.y120{bottom:418.253960pt;}
.y159{bottom:419.803439pt;}
.yb0{bottom:420.767853pt;}
.yfe{bottom:421.413312pt;}
.y17c{bottom:421.607704pt;}
.ye0{bottom:423.704502pt;}
.y41{bottom:426.022115pt;}
.y85{bottom:430.438412pt;}
.y20f{bottom:430.684000pt;}
.y1b1{bottom:432.027524pt;}
.y5f{bottom:433.839339pt;}
.y6c{bottom:434.714083pt;}
.y1c{bottom:435.469972pt;}
.y1ef{bottom:437.304434pt;}
.yaf{bottom:441.448959pt;}
.y1df{bottom:441.658450pt;}
.yfd{bottom:443.977950pt;}
.ydf{bottom:446.267253pt;}
.y20e{bottom:446.624000pt;}
.y40{bottom:448.586753pt;}
.y84{bottom:453.001163pt;}
.y158{bottom:453.646622pt;}
.y1b0{bottom:454.590276pt;}
.y17b{bottom:455.452775pt;}
.y5e{bottom:456.403977pt;}
.y194{bottom:457.634501pt;}
.y1b{bottom:458.032723pt;}
.yae{bottom:462.131953pt;}
.y20d{bottom:462.564000pt;}
.y1de{bottom:464.221201pt;}
.y134{bottom:464.313679pt;}
.yfc{bottom:466.540701pt;}
.yc3{bottom:467.684409pt;}
.yde{bottom:468.830004pt;}
.y131{bottom:469.032749pt;}
.y3f{bottom:471.149504pt;}
.y157{bottom:476.211261pt;}
.y1c4{bottom:476.528328pt;}
.y1af{bottom:477.153027pt;}
.y17a{bottom:478.015526pt;}
.y193{bottom:478.315608pt;}
.y11f{bottom:478.408086pt;}
.y20c{bottom:478.505333pt;}
.y5d{bottom:478.966728pt;}
.y1a{bottom:480.595474pt;}
.yad{bottom:482.814947pt;}
.y130{bottom:484.146271pt;}
.y133{bottom:484.996673pt;}
.y12f{bottom:485.367947pt;}
.y1dd{bottom:486.783953pt;}
.y83{bottom:486.844346pt;}
.yfb{bottom:489.103453pt;}
.yc2{bottom:490.247160pt;}
.ydd{bottom:491.392756pt;}
.y3e{bottom:493.712255pt;}
.y20b{bottom:494.445333pt;}
.y156{bottom:498.774012pt;}
.y192{bottom:498.998601pt;}
.y1c3{bottom:499.091079pt;}
.y179{bottom:500.578277pt;}
.y11e{bottom:500.972724pt;}
.y5c{bottom:501.529480pt;}
.y19{bottom:503.158225pt;}
.y132{bottom:505.679667pt;}
.yac{bottom:506.789403pt;}
.y82{bottom:509.408985pt;}
.y20a{bottom:510.385333pt;}
.yfa{bottom:511.666204pt;}
.yc1{bottom:512.811799pt;}
.y3d{bottom:516.275007pt;}
.y191{bottom:519.681595pt;}
.y155{bottom:521.336763pt;}
.y1c2{bottom:521.653831pt;}
.y178{bottom:523.141028pt;}
.y11d{bottom:523.535475pt;}
.ydc{bottom:525.237826pt;}
.y18{bottom:525.720976pt;}
.y209{bottom:526.325333pt;}
.yab{bottom:527.472397pt;}
.y1ee{bottom:527.557326pt;}
.y81{bottom:531.971736pt;}
.y5b{bottom:535.374550pt;}
.y3c{bottom:538.837758pt;}
.y12a{bottom:538.960433pt;}
.y1dc{bottom:539.247303pt;}
.y208{bottom:542.265333pt;}
.y154{bottom:543.899514pt;}
.y1c1{bottom:544.218469pt;}
.yf9{bottom:545.511274pt;}
.y11c{bottom:546.098227pt;}
.ydb{bottom:547.800577pt;}
.yaa{bottom:548.153504pt;}
.y17{bottom:548.283728pt;}
.y1ed{bottom:550.120077pt;}
.y80{bottom:554.534487pt;}
.y5a{bottom:557.937301pt;}
.y3b{bottom:561.400509pt;}
.y1c0{bottom:566.781220pt;}
.yf8{bottom:568.074025pt;}
.y11b{bottom:568.660978pt;}
.yda{bottom:570.363328pt;}
.y16{bottom:570.848366pt;}
.y207{bottom:574.146667pt;}
.y7f{bottom:577.097239pt;}
.y59{bottom:580.500052pt;}
.y3a{bottom:583.965148pt;}
.y177{bottom:585.754314pt;}
.y1bf{bottom:589.343972pt;}
.ya9{bottom:589.519491pt;}
.y153{bottom:589.887516pt;}
.yf7{bottom:590.636777pt;}
.yd9{bottom:592.926080pt;}
.y15{bottom:593.411117pt;}
.y58{bottom:603.062804pt;}
.y176{bottom:606.437308pt;}
.y39{bottom:606.527899pt;}
.ya8{bottom:610.202485pt;}
.yf6{bottom:613.199528pt;}
.y1db{bottom:614.345123pt;}
.y14{bottom:615.973869pt;}
.y206{bottom:621.966667pt;}
.y57{bottom:625.625555pt;}
.yd8{bottom:626.771150pt;}
.y38{bottom:629.090650pt;}
.ya7{bottom:630.885479pt;}
.yf5{bottom:635.764166pt;}
.y1da{bottom:636.907874pt;}
.y205{bottom:637.906667pt;}
.y7e{bottom:639.710525pt;}
.y164{bottom:639.718074pt;}
.y56{bottom:648.190193pt;}
.yd7{bottom:649.333901pt;}
.ya6{bottom:651.568472pt;}
.y37{bottom:651.653401pt;}
.y204{bottom:653.846667pt;}
.y11a{bottom:655.380832pt;}
.y211{bottom:658.334667pt;}
.y1d9{bottom:659.470625pt;}
.y1ec{bottom:662.935720pt;}
.y13{bottom:668.437219pt;}
.yf4{bottom:669.607349pt;}
.y203{bottom:669.788000pt;}
.y55{bottom:670.752945pt;}
.yd6{bottom:671.896652pt;}
.ya5{bottom:672.251466pt;}
.y6b{bottom:672.990391pt;}
.y152{bottom:676.063826pt;}
.y119{bottom:677.945470pt;}
.y1d8{bottom:682.033377pt;}
.y36{bottom:685.498472pt;}
.y202{bottom:685.728000pt;}
.yf3{bottom:692.170101pt;}
.ya4{bottom:692.934460pt;}
.y54{bottom:693.315696pt;}
.yd5{bottom:694.461291pt;}
.y151{bottom:698.626577pt;}
.y118{bottom:700.508221pt;}
.yc0{bottom:700.653544pt;}
.y201{bottom:701.668000pt;}
.y1d7{bottom:704.596128pt;}
.y35{bottom:708.061223pt;}
.ya3{bottom:713.617454pt;}
.yf2{bottom:714.734739pt;}
.y53{bottom:715.878447pt;}
.yd4{bottom:717.024042pt;}
.y200{bottom:717.608000pt;}
.y1eb{bottom:719.343542pt;}
.y150{bottom:721.191215pt;}
.y117{bottom:723.070973pt;}
.y8{bottom:727.546667pt;}
.y34{bottom:730.623974pt;}
.y1ff{bottom:733.548000pt;}
.yf1{bottom:737.297490pt;}
.y52{bottom:738.441198pt;}
.yd3{bottom:739.586793pt;}
.ya2{bottom:741.436354pt;}
.y1ea{bottom:741.906293pt;}
.y14f{bottom:743.753966pt;}
.y116{bottom:745.633724pt;}
.y7{bottom:746.144000pt;}
.y1fe{bottom:749.489333pt;}
.y33{bottom:753.186725pt;}
.y12{bottom:754.122829pt;}
.y1d6{bottom:757.061366pt;}
.yf0{bottom:759.860242pt;}
.y51{bottom:761.003949pt;}
.y1e9{bottom:764.469044pt;}
.y6{bottom:764.740000pt;}
.y1fd{bottom:765.429333pt;}
.y14e{bottom:766.316718pt;}
.y115{bottom:768.196475pt;}
.yd2{bottom:773.431864pt;}
.y32{bottom:775.749476pt;}
.y11{bottom:776.685580pt;}
.yef{bottom:782.422993pt;}
.y50{bottom:783.568588pt;}
.y14d{bottom:788.879469pt;}
.y114{bottom:790.759226pt;}
.yd1{bottom:795.994615pt;}
.y1fc{bottom:797.309333pt;}
.y31{bottom:798.314115pt;}
.y10{bottom:799.248332pt;}
.yee{bottom:804.985744pt;}
.y4f{bottom:806.131339pt;}
.y14c{bottom:811.442220pt;}
.ya1{bottom:811.859315pt;}
.y113{bottom:813.323865pt;}
.yd0{bottom:818.557366pt;}
.y30{bottom:820.876866pt;}
.yf{bottom:821.811083pt;}
.yed{bottom:827.548495pt;}
.y4e{bottom:828.694090pt;}
.y1fb{bottom:829.189333pt;}
.y5{bottom:831.970667pt;}
.y1d5{bottom:832.157298pt;}
.ya0{bottom:832.542309pt;}
.y14b{bottom:834.004971pt;}
.y112{bottom:835.886616pt;}
.y2f{bottom:843.439617pt;}
.y1fa{bottom:845.130667pt;}
.yec{bottom:850.113134pt;}
.ycf{bottom:852.402437pt;}
.y9f{bottom:853.225302pt;}
.y1d4{bottom:854.721937pt;}
.y14a{bottom:856.569610pt;}
.y111{bottom:858.449367pt;}
.y4{bottom:865.180000pt;}
.y2e{bottom:866.002368pt;}
.ye{bottom:867.021514pt;}
.y9e{bottom:873.906409pt;}
.yce{bottom:874.965188pt;}
.y1f9{bottom:877.010667pt;}
.y1d3{bottom:877.284688pt;}
.y149{bottom:879.132361pt;}
.y4d{bottom:881.157441pt;}
.y2d{bottom:888.565120pt;}
.yd{bottom:889.669194pt;}
.y110{bottom:890.450539pt;}
.y9d{bottom:894.589403pt;}
.yeb{bottom:896.099248pt;}
.ycd{bottom:897.527939pt;}
.y3{bottom:898.388000pt;}
.y1d2{bottom:899.847439pt;}
.y1f8{bottom:908.890667pt;}
.y2c{bottom:911.127871pt;}
.y148{bottom:911.133533pt;}
.yc{bottom:912.316874pt;}
.y9c{bottom:915.272396pt;}
.y1d1{bottom:922.410190pt;}
.y1f7{bottom:924.830667pt;}
.ycc{bottom:931.467375pt;}
.y2b{bottom:933.692509pt;}
.y9b{bottom:935.955390pt;}
.y10f{bottom:938.016329pt;}
.y1f6{bottom:940.772000pt;}
.yca{bottom:944.365229pt;}
.y1d0{bottom:944.972941pt;}
.ycb{bottom:951.697415pt;}
.y2a{bottom:956.255261pt;}
.y1f5{bottom:956.712000pt;}
.y10e{bottom:958.699323pt;}
.yb{bottom:960.443194pt;}
.y7b{bottom:967.146838pt;}
.y76{bottom:972.828481pt;}
.y2{bottom:976.432000pt;}
.y9a{bottom:977.321378pt;}
.y29{bottom:978.818012pt;}
.y10d{bottom:979.382316pt;}
.y1f4{bottom:988.592000pt;}
.ya{bottom:988.752794pt;}
.y1{bottom:992.372000pt;}
.y10c{bottom:1000.065310pt;}
.y28{bottom:1001.380763pt;}
.y99{bottom:1005.142165pt;}
.y9{bottom:1017.062394pt;}
.ybf{bottom:1017.460616pt;}
.y7a{bottom:1020.484692pt;}
.y10b{bottom:1020.748304pt;}
.y72{bottom:1022.017901pt;}
.y27{bottom:1023.943514pt;}
.y98{bottom:1025.825159pt;}
.ybe{bottom:1031.347418pt;}
.y70{bottom:1035.276063pt;}
.y78{bottom:1036.220225pt;}
.y7d{bottom:1078.166667pt;}
.h17{height:-35.416213pt;}
.h14{height:6.530230pt;}
.he{height:7.474392pt;}
.h12{height:9.584990pt;}
.h11{height:14.080857pt;}
.h10{height:19.017515pt;}
.h25{height:24.451238pt;}
.h13{height:27.649579pt;}
.h15{height:29.807595pt;}
.h18{height:32.904248pt;}
.hd{height:33.081498pt;}
.hf{height:33.735858pt;}
.h26{height:36.676857pt;}
.h19{height:39.485098pt;}
.h2{height:40.914115pt;}
.h1b{height:42.358336pt;}
.h16{height:42.903210pt;}
.h1e{height:44.133480pt;}
.h1a{height:47.382570pt;}
.h1c{height:47.721017pt;}
.h1d{height:48.465600pt;}
.h29{height:48.900854pt;}
.h28{height:48.902475pt;}
.h4{height:49.097267pt;}
.h2b{height:50.477173pt;}
.h9{height:50.767039pt;}
.ha{height:52.195688pt;}
.h23{height:52.421318pt;}
.hb{height:53.022998pt;}
.h1f{height:53.850307pt;}
.h7{height:56.407444pt;}
.h2a{height:57.052888pt;}
.h6{height:64.772365pt;}
.h8{height:64.862956pt;}
.h5{height:75.673448pt;}
.h21{height:83.776411pt;}
.h3{height:84.856152pt;}
.h22{height:107.998859pt;}
.h20{height:127.698974pt;}
.hc{height:369.760063pt;}
.h27{height:403.027242pt;}
.h24{height:503.784053pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:59.344313pt;}
.w4{width:59.345436pt;}
.w5{width:79.443084pt;}
.w6{width:88.748403pt;}
.w8{width:202.179120pt;}
.w3{width:542.528568pt;}
.w9{width:604.540864pt;}
.w2{width:791.777991pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:0.961333pt;}
.x2d{left:8.092573pt;}
.xa6{left:9.068113pt;}
.xb0{left:17.422532pt;}
.xa9{left:20.488618pt;}
.x2f{left:22.119655pt;}
.xa5{left:29.219475pt;}
.xb2{left:34.894043pt;}
.x30{left:38.979188pt;}
.x36{left:42.755648pt;}
.x34{left:47.746114pt;}
.x31{left:49.094888pt;}
.xa4{left:57.872193pt;}
.xbe{left:70.977575pt;}
.xc3{left:76.883212pt;}
.x18{left:79.289528pt;}
.xd{left:80.248279pt;}
.xa3{left:81.209613pt;}
.x5b{left:82.503611pt;}
.xb1{left:100.420955pt;}
.x1{left:102.349333pt;}
.x21{left:105.555175pt;}
.xb{left:106.997077pt;}
.x5a{left:108.557879pt;}
.xaa{left:110.614738pt;}
.x2a{left:112.996782pt;}
.x4f{left:114.293404pt;}
.x14{left:116.027839pt;}
.xc4{left:118.896545pt;}
.xb8{left:120.201476pt;}
.x4{left:124.250834pt;}
.x15{left:125.428514pt;}
.x7e{left:127.253539pt;}
.xc5{left:129.221333pt;}
.xc{left:131.547162pt;}
.x70{left:135.674702pt;}
.x61{left:136.563623pt;}
.x6{left:138.679294pt;}
.x23{left:142.869115pt;}
.x53{left:144.243074pt;}
.x50{left:145.684976pt;}
.x24{left:148.087518pt;}
.x9e{left:150.127696pt;}
.x51{left:153.098317pt;}
.x3{left:154.294869pt;}
.xb9{left:155.606299pt;}
.x38{left:159.153679pt;}
.x62{left:162.651863pt;}
.x25{left:166.890754pt;}
.x52{left:168.702568pt;}
.xab{left:170.293011pt;}
.x9d{left:174.156885pt;}
.x73{left:178.420310pt;}
.xa8{left:180.573727pt;}
.x7c{left:184.072794pt;}
.xe{left:185.325965pt;}
.x6c{left:188.740103pt;}
.x74{left:190.782169pt;}
.x7{left:193.722593pt;}
.x35{left:197.737049pt;}
.x80{left:200.247012pt;}
.xf{left:204.127314pt;}
.x8f{left:212.474872pt;}
.x76{left:214.869864pt;}
.x75{left:216.749621pt;}
.x43{left:219.533399pt;}
.x1d{left:222.245458pt;}
.x3b{left:224.262989pt;}
.x77{left:232.116072pt;}
.x68{left:233.948647pt;}
.x3c{left:236.013361pt;}
.x44{left:238.746181pt;}
.x1e{left:241.048695pt;}
.x3d{left:243.179464pt;}
.xbd{left:244.538179pt;}
.xb7{left:246.875177pt;}
.x69{left:248.241220pt;}
.x3e{left:249.160339pt;}
.xa{left:252.104537pt;}
.x97{left:256.966239pt;}
.x45{left:261.091892pt;}
.x46{left:261.992137pt;}
.xbf{left:275.265565pt;}
.x98{left:276.843353pt;}
.x47{left:277.888921pt;}
.x8d{left:280.434898pt;}
.x71{left:281.380438pt;}
.xb3{left:286.941536pt;}
.xac{left:289.471448pt;}
.x8b{left:293.789480pt;}
.x8{left:295.523914pt;}
.x72{left:301.670872pt;}
.x9{left:304.335749pt;}
.x37{left:306.004330pt;}
.x5{left:311.315009pt;}
.x48{left:312.821080pt;}
.x90{left:318.781194pt;}
.xb4{left:321.387749pt;}
.x49{left:324.046780pt;}
.x28{left:325.650991pt;}
.x63{left:328.887722pt;}
.x22{left:333.371962pt;}
.x78{left:335.870756pt;}
.x88{left:342.468780pt;}
.x29{left:344.452340pt;}
.x92{left:345.456387pt;}
.x4b{left:346.392491pt;}
.x4a{left:348.270361pt;}
.xba{left:352.586039pt;}
.x7d{left:358.548633pt;}
.x9f{left:362.047700pt;}
.x89{left:364.112413pt;}
.x4c{left:368.883525pt;}
.x95{left:369.951740pt;}
.xb5{left:373.680450pt;}
.xad{left:375.284197pt;}
.x8a{left:377.165026pt;}
.x8c{left:382.630666pt;}
.x96{left:383.742290pt;}
.xc0{left:385.659793pt;}
.x64{left:389.307957pt;}
.x3f{left:402.541752pt;}
.xc1{left:404.866913pt;}
.x12{left:407.154329pt;}
.xbb{left:411.278777pt;}
.x40{left:412.185889pt;}
.x33{left:413.500479pt;}
.x13{left:416.555004pt;}
.x81{left:422.028193pt;}
.x16{left:432.008271pt;}
.xae{left:433.003275pt;}
.x39{left:437.119097pt;}
.x5c{left:438.847870pt;}
.x6d{left:440.304871pt;}
.x17{left:441.410832pt;}
.xc2{left:443.264168pt;}
.x7f{left:447.910717pt;}
.x5d{left:451.104039pt;}
.x1f{left:452.036369pt;}
.x6e{left:454.186011pt;}
.x3a{left:455.920446pt;}
.x10{left:460.012127pt;}
.x20{left:461.437043pt;}
.x82{left:463.222436pt;}
.xa7{left:465.485270pt;}
.x79{left:467.784056pt;}
.x11{left:469.412801pt;}
.x5f{left:474.814273pt;}
.xbc{left:475.849101pt;}
.x83{left:482.025672pt;}
.x7a{left:483.705375pt;}
.x42{left:489.939149pt;}
.xb6{left:491.445892pt;}
.x65{left:492.613462pt;}
.x26{left:493.874183pt;}
.x6f{left:494.957497pt;}
.x2c{left:498.607232pt;}
.x2e{left:506.658439pt;}
.xa0{left:510.495693pt;}
.x66{left:512.837841pt;}
.x5e{left:514.238222pt;}
.x54{left:519.971860pt;}
.x27{left:523.487912pt;}
.xaf{left:530.559322pt;}
.x7b{left:534.668317pt;}
.x55{left:540.141506pt;}
.x84{left:542.419485pt;}
.xa1{left:547.109442pt;}
.x67{left:560.184703pt;}
.x85{left:561.220834pt;}
.x32{left:562.808234pt;}
.x60{left:565.214375pt;}
.xa2{left:567.335708pt;}
.x2b{left:568.226615pt;}
.x1b{left:583.106042pt;}
.x99{left:585.708638pt;}
.x4d{left:587.592170pt;}
.x91{left:591.444163pt;}
.x57{left:598.413987pt;}
.x56{left:601.261932pt;}
.x4e{left:604.123089pt;}
.x9a{left:606.854022pt;}
.x93{left:617.300265pt;}
.x19{left:621.133384pt;}
.x1a{left:630.534059pt;}
.x94{left:633.180063pt;}
.x1c{left:635.861926pt;}
.x9b{left:648.125644pt;}
.x6a{left:654.083871pt;}
.x9c{left:656.482638pt;}
.x58{left:657.752796pt;}
.x6b{left:667.004373pt;}
.x59{left:669.937247pt;}
.x41{left:675.136777pt;}
.x86{left:696.801171pt;}
.x87{left:706.201845pt;}
.x8e{left:710.059500pt;}
}




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