
    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_3301a57aa708f0bcea7bc52b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;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_6598e14a7ad3877fdb7673db.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1359e558a67962ddc9634ace.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_9e38b35308f81647cf75010b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_228d7c1ec16d201c130c808a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_63e8ce8d1df46a81d55d89d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_68574e2212b19334e6a755e8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_9208cd42969f7e7d35eed6f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_a1b94123667bbb73d8532980.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_2fd316e4a925171137068f48.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_ceff89bac42e6c27e1f992b7.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_1d8244c86bfc0ddb81a326f0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2eb6963ff7498e5f0c519b94.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;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_d39d1a66e0f5a2838a742fc9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_f6d23803f6ce093b0832926b.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_68574e2212b19334e6a755e8.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;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_ff6f7c5467e0943e02218a56.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;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_6137ad752cce38468af4b2cd.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.284180;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_3de7e5bd332f2c380a85e205.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_39239ee28b263069e16caafe.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.432129;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_94ec6dffa2c36f88a3b617d5.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8d24bfb88d6bba703014bcd4.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_3d52b30f8bf552e6e1271159.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.284180;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_1bbafd21bb51fe20c9a2b27a.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;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_8d96b4e9a537c826e02aa77e.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.311035;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_7dc17ff2db1a6a1f7ddadacb.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;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_8b0477b63d75df67c186d9fb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;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_ceff89bac42e6c27e1f992b7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;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_a65613e318c60c5f81e720ca.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_8d3d0c6018af74bfe77918a9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284180;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_f8f6357473f47eb7d593d33f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.281250;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_56c3f1d9ad05689099387cb9.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.284180;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_dd6925709e95f370354cdd4c.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;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_88cfd29bf50ded9f03f06a64.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_8818356021aa7e3b3b6f72e0.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.284180;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_110313fa9ce0e2a8a347b16d.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_ab0ab79e7ca65ba3e81786db.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.281250;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_541cdf04c927629ff845bd2e.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;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_17a6428dd73f4c05e9521506.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_fa69d154cf018b1188e79a71.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.281250;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:ff29;src:url('chunks/assets/font_67ad98da03521211488076e7.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.284180;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:ff2a;src:url('chunks/assets/font_57573f045c15daa4db50eb18.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;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:ff2b;src:url('chunks/assets/font_e3663fcb6867026ff75f470d.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_ceff89bac42e6c27e1f992b7.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;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:ff2d;src:url('chunks/assets/font_2ba5ee0c79dc294ae57fd1ce.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;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:ff2e;src:url('chunks/assets/font_1da02aba5ca38988ef0fb869.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_26659137edc1a2bcede77eb7.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.284180;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:ff30;src:url('chunks/assets/font_dde075250e894ff7c56d704e.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_ceff89bac42e6c27e1f992b7.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.432129;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:ff32;src:url('chunks/assets/font_ec11de051c2fcd855ba25a73.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.281250;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:ff33;src:url('chunks/assets/font_1da02aba5ca38988ef0fb869.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_e03d16fd11289a72a4d7cccd.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.281250;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:ff35;src:url('chunks/assets/font_884309775893ccf84fe2d3ae.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.284180;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:ff36;src:url('chunks/assets/font_9208cd42969f7e7d35eed6f5.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.432129;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:ff37;src:url('chunks/assets/font_f7683904263243f05a876b7f.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_92a41222de3305e7733aa5d5.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.284180;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:ff39;src:url('chunks/assets/font_fa979c5e9c4dff134be14471.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_b7844a6828a083ddb8ca322c.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.432129;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:ff3b;src:url('chunks/assets/font_9e38b35308f81647cf75010b.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.432129;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:ff3c;src:url('chunks/assets/font_c48cfa3e2dc345e1dfaa5404.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.281250;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:ff3d;src:url('chunks/assets/font_109fba362ef2bd3856df10c6.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.284180;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:ff3e;src:url('chunks/assets/font_9208cd42969f7e7d35eed6f5.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.432129;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:ff3f;src:url('chunks/assets/font_f2a388d14cad6d072a44d533.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_68e2669e42b433fb5ed4be1f.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.284180;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:ff41;src:url('chunks/assets/font_65db03475a34c676f089a085.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.311035;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:ff42;src:url('chunks/assets/font_ef9c5afbf680a2e629ee9e34.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.284180;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:ff43;src:url('chunks/assets/font_3d1c852d4c831053d2e1305f.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.281250;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:ff44;src:url('chunks/assets/font_211a9089ec472689ef56127c.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_6b05f56f44affa6d70b88108.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.311035;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:ff46;src:url('chunks/assets/font_4dbca9089a68dfc461173ae9.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_3d368a5d0237bfacb87061a2.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.284180;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:ff48;src:url('chunks/assets/font_ed2c6bf2c3b9ebdee19e4b72.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.432129;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:ff49;src:url('chunks/assets/font_d6636a5df85c177dea73de10.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.311035;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:ff4a;src:url('chunks/assets/font_fc60c53f8514ce2182dba07b.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.432129;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:ff4b;src:url('chunks/assets/font_7dc66e95bc9970f5f1b032c9.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:1.284180;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:ff4c;src:url('chunks/assets/font_37f5066d052f60b9c12f1076.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:1.432129;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:ff4d;src:url('chunks/assets/font_59486ce97776afcb559d9660.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-20.160000px;}
.v2{vertical-align:-17.280000px;}
.v1{vertical-align:-14.400000px;}
.v4{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls20{letter-spacing:6.156000px;}
.ls26{letter-spacing:9.132000px;}
.ls29{letter-spacing:12.011940px;}
.lsd{letter-spacing:16.320000px;}
.lse{letter-spacing:16.458000px;}
.ls6{letter-spacing:16.458060px;}
.ls11{letter-spacing:16.680000px;}
.lsb{letter-spacing:16.798620px;}
.ls2a{letter-spacing:18.216060px;}
.ls1{letter-spacing:19.199520px;}
.lsf{letter-spacing:19.560000px;}
.ls24{letter-spacing:19.560060px;}
.ls1a{letter-spacing:19.679940px;}
.ls15{letter-spacing:20.459880px;}
.ls21{letter-spacing:20.460000px;}
.ls3{letter-spacing:20.460060px;}
.ls27{letter-spacing:21.096000px;}
.ls1c{letter-spacing:21.216000px;}
.ls7{letter-spacing:21.960720px;}
.ls25{letter-spacing:22.080480px;}
.ls12{letter-spacing:22.320000px;}
.ls22{letter-spacing:22.440000px;}
.ls19{letter-spacing:22.440060px;}
.ls1d{letter-spacing:22.536000px;}
.ls4{letter-spacing:22.559940px;}
.ls9{letter-spacing:24.096000px;}
.ls17{letter-spacing:24.720000px;}
.ls14{letter-spacing:24.840000px;}
.ls10{letter-spacing:24.960000px;}
.ls8{letter-spacing:25.200000px;}
.lsc{letter-spacing:25.320000px;}
.ls0{letter-spacing:25.775940px;}
.lsa{letter-spacing:26.976000px;}
.ls1b{letter-spacing:27.360000px;}
.ls16{letter-spacing:27.600600px;}
.ls5{letter-spacing:27.719940px;}
.ls13{letter-spacing:28.079940px;}
.ls28{letter-spacing:28.200060px;}
.ls1e{letter-spacing:28.296000px;}
.ls1f{letter-spacing:29.855580px;}
.ls18{letter-spacing:31.176000px;}
.ls23{letter-spacing:33.600000px;}
.ls2b{letter-spacing:36.936060px;}
.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;}
}
.wsf5{word-spacing:-28.356000px;}
.wsbe{word-spacing:-23.352000px;}
.ws57{word-spacing:-13.500000px;}
.ws62{word-spacing:-12.000000px;}
.ws8d{word-spacing:-3.360000px;}
.wsc9{word-spacing:-3.060180px;}
.ws1b{word-spacing:-1.344000px;}
.ws85{word-spacing:-1.127940px;}
.ws116{word-spacing:-0.768480px;}
.ws10a{word-spacing:-0.648060px;}
.ws59{word-spacing:-0.647460px;}
.ws117{word-spacing:-0.216000px;}
.ws1e{word-spacing:0.000000px;}
.ws108{word-spacing:0.288000px;}
.ws173{word-spacing:0.720360px;}
.wsa8{word-spacing:0.912000px;}
.ws60{word-spacing:1.104000px;}
.ws1a{word-spacing:1.440000px;}
.ws61{word-spacing:1.967520px;}
.wsa7{word-spacing:1.968060px;}
.ws111{word-spacing:2.009220px;}
.wsab{word-spacing:2.040000px;}
.ws65{word-spacing:2.142180px;}
.ws96{word-spacing:2.232360px;}
.wsce{word-spacing:2.297820px;}
.wsc4{word-spacing:2.700000px;}
.ws93{word-spacing:3.167520px;}
.ws142{word-spacing:3.240000px;}
.wsd2{word-spacing:3.241740px;}
.ws7{word-spacing:3.360480px;}
.wse6{word-spacing:3.600000px;}
.wsf6{word-spacing:3.600180px;}
.ws1c{word-spacing:3.696000px;}
.ws139{word-spacing:3.798360px;}
.wsda{word-spacing:3.942540px;}
.ws11c{word-spacing:3.978720px;}
.wsc6{word-spacing:4.044480px;}
.wsec{word-spacing:4.248180px;}
.wsa5{word-spacing:4.266000px;}
.ws28{word-spacing:4.410180px;}
.wse3{word-spacing:4.716360px;}
.ws51{word-spacing:4.733100px;}
.ws33{word-spacing:4.734180px;}
.ws147{word-spacing:4.751460px;}
.ws109{word-spacing:4.846980px;}
.ws6c{word-spacing:4.877280px;}
.ws9f{word-spacing:4.878360px;}
.wsc5{word-spacing:4.992000px;}
.ws6e{word-spacing:5.022000px;}
.wsf{word-spacing:5.112180px;}
.ws4d{word-spacing:5.129520px;}
.ws129{word-spacing:5.136000px;}
.ws13b{word-spacing:5.183940px;}
.ws8{word-spacing:5.184000px;}
.ws16{word-spacing:5.202360px;}
.ws90{word-spacing:5.255880px;}
.ws75{word-spacing:5.376000px;}
.wsba{word-spacing:5.495820px;}
.wse{word-spacing:5.579820px;}
.ws11{word-spacing:5.724000px;}
.ws8e{word-spacing:5.784660px;}
.ws104{word-spacing:5.807520px;}
.wsd9{word-spacing:6.018540px;}
.wscc{word-spacing:6.042540px;}
.ws8c{word-spacing:6.048480px;}
.wsd5{word-spacing:6.122160px;}
.ws2{word-spacing:6.335160px;}
.ws133{word-spacing:6.335280px;}
.ws164{word-spacing:6.461400px;}
.ws14c{word-spacing:6.678180px;}
.ws3d{word-spacing:6.725460px;}
.ws69{word-spacing:6.822360px;}
.ws74{word-spacing:6.864000px;}
.ws87{word-spacing:6.912540px;}
.ws40{word-spacing:7.002720px;}
.wsb5{word-spacing:7.055400px;}
.ws45{word-spacing:7.145820px;}
.ws3b{word-spacing:7.199520px;}
.wsbf{word-spacing:7.218180px;}
.ws17{word-spacing:7.290000px;}
.wseb{word-spacing:7.380180px;}
.ws1d{word-spacing:7.451220px;}
.wsbd{word-spacing:7.488540px;}
.wsc3{word-spacing:7.523820px;}
.wse8{word-spacing:7.524360px;}
.ws9a{word-spacing:7.596600px;}
.ws98{word-spacing:7.614000px;}
.ws6f{word-spacing:7.757100px;}
.ws38{word-spacing:7.758180px;}
.wsff{word-spacing:7.776000px;}
.ws82{word-spacing:7.800000px;}
.ws76{word-spacing:7.847280px;}
.ws103{word-spacing:7.968000px;}
.ws2a{word-spacing:7.992000px;}
.ws118{word-spacing:7.993620px;}
.ws13a{word-spacing:8.016000px;}
.ws13f{word-spacing:8.016060px;}
.ws39{word-spacing:8.064000px;}
.ws37{word-spacing:8.189640px;}
.wsc8{word-spacing:8.256000px;}
.ws13e{word-spacing:8.298180px;}
.ws43{word-spacing:8.459640px;}
.wsed{word-spacing:8.460660px;}
.ws48{word-spacing:8.460720px;}
.wse2{word-spacing:8.478540px;}
.ws24{word-spacing:8.603820px;}
.ws34{word-spacing:8.657820px;}
.wsa1{word-spacing:8.694000px;}
.wsfc{word-spacing:8.784480px;}
.wse7{word-spacing:8.801100px;}
.wscd{word-spacing:8.813640px;}
.ws11f{word-spacing:8.856120px;}
.ws73{word-spacing:8.860320px;}
.wse9{word-spacing:8.892180px;}
.ws19{word-spacing:8.928000px;}
.ws140{word-spacing:8.981820px;}
.ws122{word-spacing:8.982060px;}
.ws3e{word-spacing:9.066120px;}
.ws172{word-spacing:9.168000px;}
.ws165{word-spacing:9.287940px;}
.wsac{word-spacing:9.323100px;}
.ws167{word-spacing:9.341640px;}
.ws36{word-spacing:9.359280px;}
.wsf2{word-spacing:9.359940px;}
.wsb6{word-spacing:9.413280px;}
.ws101{word-spacing:9.456000px;}
.ws12a{word-spacing:9.594180px;}
.wscb{word-spacing:9.605820px;}
.ws4c{word-spacing:9.659760px;}
.ws169{word-spacing:9.702180px;}
.ws9e{word-spacing:9.791880px;}
.wsb1{word-spacing:9.792360px;}
.ws155{word-spacing:9.876000px;}
.ws44{word-spacing:9.882540px;}
.ws97{word-spacing:9.936540px;}
.wsaf{word-spacing:9.983520px;}
.ws113{word-spacing:10.025640px;}
.ws47{word-spacing:10.026720px;}
.wsc0{word-spacing:10.098000px;}
.ws115{word-spacing:10.115820px;}
.ws2c{word-spacing:10.169820px;}
.wsa3{word-spacing:10.260000px;}
.wsd6{word-spacing:10.272000px;}
.wsd3{word-spacing:10.272480px;}
.ws22{word-spacing:10.332000px;}
.ws15{word-spacing:10.403640px;}
.ws5a{word-spacing:10.404180px;}
.ws10f{word-spacing:10.476840px;}
.ws4e{word-spacing:10.494360px;}
.wsd0{word-spacing:10.547820px;}
.ws1{word-spacing:10.584600px;}
.ws10{word-spacing:10.638000px;}
.wsb7{word-spacing:10.800000px;}
.ws25{word-spacing:10.871280px;}
.ws2e{word-spacing:10.872360px;}
.ws136{word-spacing:10.895940px;}
.ws13d{word-spacing:10.896060px;}
.ws105{word-spacing:11.040000px;}
.ws7a{word-spacing:11.135520px;}
.ws4f{word-spacing:11.196360px;}
.ws4b{word-spacing:11.340540px;}
.ws16d{word-spacing:11.394060px;}
.ws95{word-spacing:11.483640px;}
.ws13{word-spacing:11.484720px;}
.ws8b{word-spacing:11.520480px;}
.ws146{word-spacing:11.772000px;}
.ws18{word-spacing:11.808000px;}
.ws159{word-spacing:11.862180px;}
.ws119{word-spacing:12.000000px;}
.ws157{word-spacing:12.047940px;}
.ws158{word-spacing:12.048000px;}
.ws30{word-spacing:12.204000px;}
.ws16f{word-spacing:12.240180px;}
.ws79{word-spacing:12.432000px;}
.ws84{word-spacing:12.437280px;}
.wsad{word-spacing:12.479400px;}
.wscf{word-spacing:12.581460px;}
.ws46{word-spacing:12.618180px;}
.ws41{word-spacing:12.672180px;}
.ws49{word-spacing:12.762360px;}
.ws8f{word-spacing:12.822300px;}
.ws66{word-spacing:12.906540px;}
.ws89{word-spacing:12.960000px;}
.ws16a{word-spacing:13.049640px;}
.wsa2{word-spacing:13.050720px;}
.wsa4{word-spacing:13.139820px;}
.ws5{word-spacing:13.200000px;}
.wse0{word-spacing:13.212360px;}
.ws23{word-spacing:13.284000px;}
.ws143{word-spacing:13.319640px;}
.ws2b{word-spacing:13.374180px;}
.wsfd{word-spacing:13.487940px;}
.ws72{word-spacing:13.517820px;}
.ws9b{word-spacing:13.518360px;}
.wsf7{word-spacing:13.607340px;}
.ws160{word-spacing:13.608000px;}
.ws29{word-spacing:13.751100px;}
.wsd{word-spacing:13.752180px;}
.ws151{word-spacing:13.860180px;}
.wsc1{word-spacing:13.860960px;}
.ws4a{word-spacing:13.979400px;}
.wsb4{word-spacing:14.100240px;}
.ws150{word-spacing:14.160000px;}
.wsbb{word-spacing:14.220360px;}
.wse5{word-spacing:14.256000px;}
.ws123{word-spacing:14.274360px;}
.ws15c{word-spacing:14.364540px;}
.ws56{word-spacing:14.507640px;}
.wsf1{word-spacing:14.634000px;}
.ws125{word-spacing:14.652360px;}
.ws126{word-spacing:14.652900px;}
.ws9{word-spacing:14.688000px;}
.wsd8{word-spacing:14.880000px;}
.ws15f{word-spacing:14.928060px;}
.ws14{word-spacing:14.940180px;}
.ws145{word-spacing:14.975820px;}
.ws15a{word-spacing:14.976360px;}
.ws27{word-spacing:15.083820px;}
.ws71{word-spacing:15.120000px;}
.wsdb{word-spacing:15.264000px;}
.ws7b{word-spacing:15.360480px;}
.ws92{word-spacing:15.522360px;}
.ws11b{word-spacing:15.551460px;}
.wsea{word-spacing:15.605460px;}
.ws42{word-spacing:15.642180px;}
.ws12{word-spacing:15.786360px;}
.ws121{word-spacing:15.900600px;}
.wsca{word-spacing:15.947820px;}
.ws171{word-spacing:15.965820px;}
.wsf3{word-spacing:16.019640px;}
.wsf4{word-spacing:16.020720px;}
.ws7f{word-spacing:16.074720px;}
.ws2f{word-spacing:16.163820px;}
.ws68{word-spacing:16.164900px;}
.wsf9{word-spacing:16.176000px;}
.ws94{word-spacing:16.254000px;}
.ws99{word-spacing:16.439280px;}
.ws20{word-spacing:16.451820px;}
.wsde{word-spacing:16.452240px;}
.ws11d{word-spacing:16.487820px;}
.wsa0{word-spacing:16.632000px;}
.ws64{word-spacing:16.776180px;}
.wsb0{word-spacing:16.853760px;}
.wsee{word-spacing:16.895940px;}
.ws12c{word-spacing:16.919280px;}
.ws4{word-spacing:16.978860px;}
.ws152{word-spacing:17.009460px;}
.ws83{word-spacing:17.063460px;}
.wsdc{word-spacing:17.100180px;}
.ws14f{word-spacing:17.154180px;}
.ws174{word-spacing:17.328000px;}
.ws0{word-spacing:17.382300px;}
.ws12f{word-spacing:17.531220px;}
.ws132{word-spacing:17.531760px;}
.ws6b{word-spacing:17.568000px;}
.ws168{word-spacing:17.808000px;}
.ws161{word-spacing:17.808060px;}
.ws130{word-spacing:17.856180px;}
.ws6d{word-spacing:17.963640px;}
.ws5d{word-spacing:17.964180px;}
.ws16e{word-spacing:18.000480px;}
.ws3{word-spacing:18.120000px;}
.ws5b{word-spacing:18.558180px;}
.wsae{word-spacing:18.624000px;}
.ws3a{word-spacing:18.720000px;}
.ws128{word-spacing:18.828540px;}
.ws15d{word-spacing:18.863940px;}
.ws35{word-spacing:18.900540px;}
.ws106{word-spacing:18.960060px;}
.ws63{word-spacing:19.043640px;}
.ws2d{word-spacing:19.044720px;}
.ws53{word-spacing:19.073880px;}
.ws78{word-spacing:19.152720px;}
.ws7d{word-spacing:19.331760px;}
.ws32{word-spacing:19.476180px;}
.ws148{word-spacing:19.680000px;}
.ws3f{word-spacing:19.734120px;}
.ws141{word-spacing:19.800180px;}
.ws107{word-spacing:19.859700px;}
.wsb{word-spacing:19.920000px;}
.wsc2{word-spacing:19.980000px;}
.ws12d{word-spacing:20.033460px;}
.ws77{word-spacing:20.207940px;}
.wsbc{word-spacing:20.231640px;}
.ws127{word-spacing:20.429820px;}
.ws8a{word-spacing:20.448000px;}
.ws163{word-spacing:20.520000px;}
.ws170{word-spacing:20.736000px;}
.wsb9{word-spacing:20.802240px;}
.ws7e{word-spacing:20.803020px;}
.ws31{word-spacing:20.844000px;}
.ws88{word-spacing:21.077820px;}
.ws10c{word-spacing:21.311100px;}
.ws55{word-spacing:21.312180px;}
.wsa9{word-spacing:21.360000px;}
.ws124{word-spacing:21.707460px;}
.ws153{word-spacing:21.744000px;}
.ws80{word-spacing:21.924540px;}
.ws5f{word-spacing:22.175640px;}
.ws114{word-spacing:22.199760px;}
.ws15b{word-spacing:22.320000px;}
.wsef{word-spacing:22.410000px;}
.ws16c{word-spacing:22.680000px;}
.ws91{word-spacing:22.842120px;}
.ws138{word-spacing:22.913280px;}
.ws10b{word-spacing:23.273460px;}
.ws149{word-spacing:23.520480px;}
.ws54{word-spacing:23.681820px;}
.wsdf{word-spacing:23.682240px;}
.ws21{word-spacing:23.682540px;}
.ws26{word-spacing:23.723820px;}
.ws134{word-spacing:23.868000px;}
.ws154{word-spacing:24.030000px;}
.ws9d{word-spacing:24.192000px;}
.wsfa{word-spacing:24.479520px;}
.ws12e{word-spacing:24.588360px;}
.ws110{word-spacing:24.857820px;}
.ws102{word-spacing:24.935940px;}
.wsb3{word-spacing:24.959040px;}
.ws86{word-spacing:25.283940px;}
.wsc{word-spacing:25.320000px;}
.ws9c{word-spacing:25.758000px;}
.wsd7{word-spacing:25.974000px;}
.ws162{word-spacing:26.736060px;}
.ws14e{word-spacing:27.126360px;}
.wse1{word-spacing:27.684180px;}
.ws14d{word-spacing:27.720360px;}
.ws70{word-spacing:28.320000px;}
.wsfb{word-spacing:28.416000px;}
.ws6a{word-spacing:28.421820px;}
.ws144{word-spacing:29.159460px;}
.ws156{word-spacing:29.286360px;}
.ws13c{word-spacing:29.286660px;}
.wsb2{word-spacing:29.640000px;}
.ws14a{word-spacing:29.952000px;}
.ws5e{word-spacing:30.095820px;}
.ws58{word-spacing:30.240000px;}
.wsf8{word-spacing:30.959880px;}
.ws100{word-spacing:31.482000px;}
.ws5c{word-spacing:31.680180px;}
.wsfe{word-spacing:31.895940px;}
.ws6{word-spacing:32.022000px;}
.ws16b{word-spacing:32.640060px;}
.ws135{word-spacing:32.724000px;}
.ws112{word-spacing:32.994000px;}
.ws166{word-spacing:33.227820px;}
.ws137{word-spacing:33.516060px;}
.ws12b{word-spacing:33.601380px;}
.ws120{word-spacing:33.660360px;}
.wsd4{word-spacing:34.614000px;}
.ws50{word-spacing:35.483940px;}
.ws67{word-spacing:37.152000px;}
.ws11a{word-spacing:38.448540px;}
.ws131{word-spacing:38.664000px;}
.wsaa{word-spacing:38.760000px;}
.ws10e{word-spacing:39.479880px;}
.ws14b{word-spacing:40.895940px;}
.wsd1{word-spacing:41.112360px;}
.ws15e{word-spacing:42.876000px;}
.wsc7{word-spacing:43.992180px;}
.wsa{word-spacing:45.882000px;}
.wse4{word-spacing:46.638180px;}
.wsf0{word-spacing:48.768060px;}
.ws81{word-spacing:49.129020px;}
.ws3c{word-spacing:56.543520px;}
.ws10d{word-spacing:67.679820px;}
.wsb8{word-spacing:470.160000px;}
.wsdd{word-spacing:475.919940px;}
.wsa6{word-spacing:475.920000px;}
.ws1f{word-spacing:492.360120px;}
.ws11e{word-spacing:495.240000px;}
.ws52{word-spacing:496.980000px;}
.ws7c{word-spacing:505.620060px;}
._3a{margin-left:-12.395940px;}
._32{margin-left:-2.906280px;}
._39{margin-left:-1.755900px;}
._30{width:2.472780px;}
._3d{width:3.640140px;}
._2f{width:4.680180px;}
._2a{width:6.396420px;}
._31{width:8.352000px;}
._3c{width:9.474540px;}
._b{width:11.099400px;}
._35{width:12.893940px;}
._38{width:14.112480px;}
._24{width:16.064760px;}
._1d{width:17.627760px;}
._13{width:18.864000px;}
._26{width:19.926720px;}
._f{width:20.928000px;}
._29{width:22.145820px;}
._10{width:23.279520px;}
._17{width:24.720180px;}
._12{width:25.752120px;}
._e{width:26.976000px;}
._11{width:28.859040px;}
._15{width:30.516240px;}
._d{width:31.668480px;}
._2{width:32.777940px;}
._6{width:34.752120px;}
._14{width:36.071400px;}
._1f{width:37.174560px;}
._1{width:38.537460px;}
._18{width:39.943440px;}
._c{width:41.160000px;}
._7{width:42.540600px;}
._a{width:44.520000px;}
._2b{width:45.551700px;}
._4{width:46.679880px;}
._19{width:48.186720px;}
._9{width:49.320600px;}
._1a{width:50.526720px;}
._8{width:52.020000px;}
._1b{width:53.202720px;}
._16{width:54.994260px;}
._2d{width:56.364540px;}
._3{width:57.401760px;}
._41{width:58.445520px;}
._5{width:59.465640px;}
._0{width:61.493640px;}
._1e{width:63.132000px;}
._25{width:64.152000px;}
._1c{width:65.891640px;}
._22{width:67.846440px;}
._21{width:69.850680px;}
._3b{width:71.052780px;}
._27{width:72.935640px;}
._23{width:75.859500px;}
._33{width:77.418120px;}
._2e{width:78.706860px;}
._28{width:81.168000px;}
._34{width:82.310160px;}
._20{width:85.457940px;}
._37{width:87.305760px;}
._3e{width:89.814840px;}
._40{width:91.350540px;}
._2c{width:97.715580px;}
._42{width:99.523800px;}
._3f{width:107.520480px;}
._36{width:113.301840px;}
.fc0{color:transparent;}
.fs6{font-size:24.000000px;}
.fs8{font-size:30.000000px;}
.fsa{font-size:36.000000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:78.000000px;}
.fs9{font-size:84.000000px;}
.fsb{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y204{bottom:27.420450px;}
.y1bc{bottom:31.020540px;}
.y203{bottom:43.980225px;}
.y1bb{bottom:47.580585px;}
.y113{bottom:54.780825px;}
.y232{bottom:58.381695px;}
.y202{bottom:59.820315px;}
.ybe{bottom:61.260120px;}
.y1ba{bottom:64.140360px;}
.y77{bottom:64.860090px;}
.y4d{bottom:65.579895px;}
.y1e6{bottom:67.740000px;}
.y112{bottom:71.340870px;}
.y1f{bottom:74.220000px;}
.y25e{bottom:74.220165px;}
.y15d{bottom:74.940015px;}
.y231{bottom:74.941740px;}
.ybd{bottom:75.660120px;}
.y201{bottom:76.380090px;}
.y4c{bottom:79.259895px;}
.ye9{bottom:79.260105px;}
.y180{bottom:79.980180px;}
.y76{bottom:80.700180px;}
.y1b9{bottom:80.700405px;}
.y1e5{bottom:82.140135px;}
.y111{bottom:87.180690px;}
.y1e{bottom:88.620225px;}
.ye8{bottom:90.060000px;}
.ybc{bottom:90.780000px;}
.y139{bottom:91.500000px;}
.y200{bottom:92.220180px;}
.y230{bottom:92.221740px;}
.y4b{bottom:95.100015px;}
.y17f{bottom:95.820000px;}
.y1e4{bottom:95.820135px;}
.y75{bottom:97.259955px;}
.y1b8{bottom:97.260450px;}
.y1d{bottom:102.300225px;}
.y110{bottom:103.740735px;}
.ye7{bottom:105.180000px;}
.y25d{bottom:107.339670px;}
.y22f{bottom:108.061560px;}
.y1ff{bottom:108.779955px;}
.y4a{bottom:109.500015px;}
.y1e3{bottom:110.940015px;}
.y1b7{bottom:112.380450px;}
.y74{bottom:113.820000px;}
.y15c{bottom:115.980090px;}
.y1c{bottom:116.700225px;}
.ye6{bottom:118.139985px;}
.y10f{bottom:120.300510px;}
.y94{bottom:121.021380px;}
.y49{bottom:123.180015px;}
.y25c{bottom:124.619670px;}
.y22e{bottom:124.621605px;}
.y1fe{bottom:125.340000px;}
.y1b6{bottom:128.940225px;}
.y17e{bottom:129.659820px;}
.y1e2{bottom:129.660000px;}
.ybb{bottom:129.660180px;}
.y73{bottom:130.380435px;}
.y15b{bottom:131.820180px;}
.y1b{bottom:134.700225px;}
.y48{bottom:136.860015px;}
.ye5{bottom:136.860135px;}
.y10e{bottom:136.860555px;}
.y93{bottom:136.861200px;}
.y1e1{bottom:140.459880px;}
.y22d{bottom:140.461425px;}
.y138{bottom:141.900105px;}
.y25b{bottom:145.499850px;}
.y1a{bottom:145.500105px;}
.y1b5{bottom:145.500270px;}
.yba{bottom:146.219955px;}
.y72{bottom:146.220255px;}
.y15a{bottom:147.660000px;}
.ye4{bottom:147.660015px;}
.y10d{bottom:151.980555px;}
.y92{bottom:153.421245px;}
.y1e0{bottom:156.300000px;}
.y22c{bottom:156.301515px;}
.y25a{bottom:158.459985px;}
.y1fd{bottom:158.460000px;}
.y137{bottom:158.460150px;}
.y19{bottom:159.900105px;}
.y1b4{bottom:161.340090px;}
.ye3{bottom:162.060015px;}
.yb9{bottom:162.060045px;}
.y71{bottom:162.780300px;}
.y10c{bottom:169.260555px;}
.y22b{bottom:172.861290px;}
.y136{bottom:174.299970px;}
.y18{bottom:175.019985px;}
.y259{bottom:175.739985px;}
.y17d{bottom:175.740045px;}
.ye2{bottom:176.460015px;}
.yb8{bottom:177.180045px;}
.y47{bottom:177.900675px;}
.y1b3{bottom:178.620090px;}
.y70{bottom:178.620120px;}
.y159{bottom:180.780000px;}
.y10b{bottom:185.100375px;}
.y91{bottom:188.701200px;}
.y17c{bottom:189.420135px;}
.y22a{bottom:189.421335px;}
.y135{bottom:190.859880px;}
.ye1{bottom:190.860015px;}
.y258{bottom:193.020000px;}
.y46{bottom:193.740495px;}
.y1b2{bottom:194.460180px;}
.yb7{bottom:195.180105px;}
.y6f{bottom:195.180165px;}
.y10a{bottom:200.940465px;}
.y19d{bottom:203.100135px;}
.y17b{bottom:205.980180px;}
.y1fc{bottom:205.980810px;}
.y229{bottom:205.981380px;}
.y134{bottom:206.700000px;}
.y257{bottom:209.580060px;}
.y1b1{bottom:210.300000px;}
.y1df{bottom:210.300405px;}
.y45{bottom:210.300540px;}
.y6e{bottom:211.019985px;}
.yb6{bottom:211.020195px;}
.y17{bottom:212.460540px;}
.y109{bottom:217.500240px;}
.y19c{bottom:218.939955px;}
.y17a{bottom:221.820000px;}
.y1fb{bottom:221.820630px;}
.y228{bottom:221.821200px;}
.y133{bottom:223.260225px;}
.yb5{bottom:226.860015px;}
.y256{bottom:226.860060px;}
.y158{bottom:226.860270px;}
.y16{bottom:229.020585px;}
.y44{bottom:230.460495px;}
.y108{bottom:233.340330px;}
.y90{bottom:233.341245px;}
.y19b{bottom:235.500000px;}
.y227{bottom:237.661020px;}
.ye0{bottom:238.380540px;}
.y1fa{bottom:238.380675px;}
.y132{bottom:239.100315px;}
.y157{bottom:242.700090px;}
.y1de{bottom:242.700270px;}
.y43{bottom:242.700675px;}
.y6d{bottom:243.420000px;}
.yb4{bottom:243.420015px;}
.y1b0{bottom:244.139985px;}
.y255{bottom:244.860060px;}
.y15{bottom:245.580360px;}
.y8f{bottom:249.181065px;}
.y107{bottom:249.900105px;}
.y19a{bottom:251.339820px;}
.y179{bottom:253.500000px;}
.y1f9{bottom:254.220495px;}
.y226{bottom:254.221065px;}
.y131{bottom:255.660090px;}
.ydf{bottom:256.380495px;}
.y156{bottom:259.260135px;}
.y42{bottom:259.260720px;}
.yb3{bottom:259.980450px;}
.y14{bottom:262.140405px;}
.y254{bottom:263.579970px;}
.y106{bottom:265.740195px;}
.yde{bottom:270.060585px;}
.y225{bottom:270.060885px;}
.y199{bottom:270.779820px;}
.y130{bottom:271.500180px;}
.yb2{bottom:275.820270px;}
.y41{bottom:275.820495px;}
.y253{bottom:277.979955px;}
.y13{bottom:277.980225px;}
.y105{bottom:282.299970px;}
.y178{bottom:283.019850px;}
.y198{bottom:283.739955px;}
.y8e{bottom:284.461020px;}
.ydd{bottom:285.900405px;}
.y1f8{bottom:286.620360px;}
.y224{bottom:286.620930px;}
.y12f{bottom:287.340000px;}
.y1dd{bottom:287.340315px;}
.y1af{bottom:290.940135px;}
.y155{bottom:291.660000px;}
.y40{bottom:291.660585px;}
.yb1{bottom:292.380315px;}
.y12{bottom:293.820315px;}
.y6c{bottom:295.980000px;}
.y252{bottom:297.419955px;}
.y104{bottom:298.859880px;}
.y177{bottom:298.860015px;}
.y197{bottom:300.300165px;}
.ydc{bottom:302.460450px;}
.y223{bottom:302.460750px;}
.y1dc{bottom:303.900090px;}
.y1ae{bottom:307.500180px;}
.yb0{bottom:308.220135px;}
.y3f{bottom:308.220360px;}
.y6b{bottom:308.940135px;}
.y11{bottom:309.660135px;}
.y251{bottom:311.820060px;}
.y103{bottom:314.700360px;}
.y196{bottom:316.139985px;}
.ydb{bottom:319.020225px;}
.y222{bottom:319.020795px;}
.y1db{bottom:319.740180px;}
.y1ad{bottom:323.340000px;}
.y3e{bottom:323.340360px;}
.yaf{bottom:324.059955px;}
.y12e{bottom:324.059985px;}
.y6a{bottom:324.779955px;}
.y10{bottom:325.499955px;}
.y8d{bottom:328.381110px;}
.y250{bottom:329.820015px;}
.y102{bottom:331.260405px;}
.yda{bottom:334.860315px;}
.y221{bottom:334.860615px;}
.y1f7{bottom:335.580270px;}
.y1da{bottom:335.580420px;}
.y154{bottom:339.900900px;}
.yae{bottom:340.620000px;}
.y3d{bottom:340.620360px;}
.y69{bottom:341.340000px;}
.yf{bottom:342.779955px;}
.y27d{bottom:342.780000px;}
.y8c{bottom:344.220930px;}
.y24f{bottom:344.939955px;}
.y176{bottom:347.820000px;}
.y195{bottom:348.539955px;}
.yd9{bottom:351.420090px;}
.y220{bottom:351.420660px;}
.y12d{bottom:355.019985px;}
.y3c{bottom:355.020405px;}
.y153{bottom:355.740990px;}
.yad{bottom:357.180600px;}
.ye{bottom:357.899955px;}
.y27c{bottom:359.340000px;}
.y8b{bottom:360.780975px;}
.y24e{bottom:363.660000px;}
.y101{bottom:363.660270px;}
.y1d9{bottom:364.380375px;}
.y175{bottom:365.100195px;}
.yd8{bottom:367.980135px;}
.y21f{bottom:367.980705px;}
.y3b{bottom:372.300405px;}
.y152{bottom:372.300765px;}
.yac{bottom:373.020420px;}
.y68{bottom:373.740000px;}
.yd{bottom:374.460000px;}
.y27b{bottom:376.619730px;}
.y1ac{bottom:377.340000px;}
.y8a{bottom:377.340750px;}
.y24d{bottom:378.780000px;}
.y174{bottom:378.780285px;}
.y194{bottom:380.940015px;}
.y1d8{bottom:380.940420px;}
.yd7{bottom:383.819955px;}
.y21e{bottom:383.820525px;}
.y1f6{bottom:384.540180px;}
.yab{bottom:388.860240px;}
.y3a{bottom:388.860450px;}
.y173{bottom:394.620105px;}
.y24c{bottom:396.779955px;}
.y1d7{bottom:396.780240px;}
.y27a{bottom:397.499910px;}
.y1f5{bottom:400.379970px;}
.yd6{bottom:400.380000px;}
.y21d{bottom:400.380570px;}
.y12c{bottom:401.100105px;}
.y39{bottom:403.980450px;}
.y151{bottom:404.700630px;}
.yaa{bottom:405.420285px;}
.yc{bottom:410.460000px;}
.y279{bottom:411.179955px;}
.y172{bottom:411.900105px;}
.y100{bottom:411.900225px;}
.y89{bottom:411.900750px;}
.y24b{bottom:413.340000px;}
.y1d6{bottom:413.340285px;}
.y12b{bottom:415.500150px;}
.y21c{bottom:416.220390px;}
.y193{bottom:416.940015px;}
.y1ab{bottom:421.980015px;}
.y67{bottom:421.980270px;}
.ya9{bottom:421.980330px;}
.y171{bottom:427.020105px;}
.y278{bottom:427.740000px;}
.yff{bottom:428.460270px;}
.y24a{bottom:430.620000px;}
.y12a{bottom:432.060195px;}
.y21b{bottom:432.060210px;}
.y1d5{bottom:432.780285px;}
.yd5{bottom:436.379970px;}
.ya8{bottom:438.540105px;}
.y66{bottom:438.540315px;}
.y38{bottom:439.260405px;}
.y170{bottom:443.580150px;}
.y277{bottom:445.019955px;}
.yfe{bottom:445.020315px;}
.y249{bottom:447.180000px;}
.y129{bottom:447.900015px;}
.yd4{bottom:448.620000px;}
.y1f4{bottom:449.340000px;}
.y21a{bottom:449.340210px;}
.y1d4{bottom:449.340330px;}
.y150{bottom:452.220630px;}
.ya7{bottom:452.940150px;}
.yb{bottom:454.380000px;}
.y65{bottom:454.380135px;}
.y1aa{bottom:455.099985px;}
.y88{bottom:455.820840px;}
.y16f{bottom:460.140195px;}
.yfd{bottom:460.860135px;}
.y276{bottom:461.579940px;}
.y219{bottom:464.460210px;}
.y192{bottom:465.180090px;}
.y1d3{bottom:465.900105px;}
.y248{bottom:466.620120px;}
.y14f{bottom:468.060720px;}
.y64{bottom:470.219955px;}
.ya6{bottom:470.940105px;}
.y87{bottom:472.380615px;}
.y16e{bottom:475.980015px;}
.yfc{bottom:475.980135px;}
.y275{bottom:478.140045px;}
.y191{bottom:478.860180px;}
.y218{bottom:481.020255px;}
.y247{bottom:481.739985px;}
.y128{bottom:481.740000px;}
.y1d2{bottom:481.740195px;}
.ya{bottom:483.180105px;}
.y14e{bottom:484.620495px;}
.y37{bottom:486.780405px;}
.y63{bottom:487.499955px;}
.ya5{bottom:487.500150px;}
.yfb{bottom:493.260135px;}
.y190{bottom:494.700000px;}
.y9{bottom:497.580105px;}
.y217{bottom:497.580300px;}
.y1d1{bottom:498.299970px;}
.y274{bottom:498.300000px;}
.y246{bottom:499.020000px;}
.yd3{bottom:499.020435px;}
.y14d{bottom:500.460585px;}
.y62{bottom:502.619955px;}
.y1f3{bottom:502.620000px;}
.ya4{bottom:503.339970px;}
.y1a9{bottom:503.340180px;}
.y36{bottom:503.340450px;}
.y86{bottom:504.780480px;}
.y16d{bottom:509.099985px;}
.y8{bottom:511.980105px;}
.y216{bottom:513.420120px;}
.y273{bottom:513.420180px;}
.yd2{bottom:514.140435px;}
.y1d0{bottom:514.860015px;}
.y245{bottom:515.579955px;}
.y14c{bottom:517.020360px;}
.y61{bottom:519.180000px;}
.y35{bottom:519.180270px;}
.ya3{bottom:519.900015px;}
.y1cf{bottom:526.379970px;}
.y7{bottom:527.099985px;}
.y272{bottom:529.979955px;}
.yfa{bottom:529.980135px;}
.y215{bottom:529.980165px;}
.y127{bottom:529.980405px;}
.yd1{bottom:530.700210px;}
.y18f{bottom:531.419910px;}
.y1f2{bottom:531.420000px;}
.y14b{bottom:532.860450px;}
.y244{bottom:534.300000px;}
.y1a8{bottom:535.740045px;}
.y34{bottom:535.740315px;}
.y1ce{bottom:542.939955px;}
.y214{bottom:545.819985px;}
.y271{bottom:546.539955px;}
.yd0{bottom:546.540300px;}
.y126{bottom:546.540450px;}
.y14a{bottom:549.420225px;}
.y1a7{bottom:552.299820px;}
.y33{bottom:552.300090px;}
.y85{bottom:552.300480px;}
.ya2{bottom:555.900015px;}
.y60{bottom:556.620000px;}
.y16c{bottom:557.340075px;}
.y1cd{bottom:559.500495px;}
.y125{bottom:562.380270px;}
.y213{bottom:563.099985px;}
.ycf{bottom:563.100075px;}
.y270{bottom:563.819955px;}
.y149{bottom:565.980270px;}
.y32{bottom:568.140180px;}
.y84{bottom:568.140570px;}
.y1a6{bottom:571.019865px;}
.y16b{bottom:571.020165px;}
.y243{bottom:571.740000px;}
.yf9{bottom:574.620180px;}
.y1cc{bottom:575.340585px;}
.y124{bottom:578.220090px;}
.yce{bottom:578.940165px;}
.y18e{bottom:579.659865px;}
.y1f1{bottom:579.660225px;}
.y26f{bottom:580.380045px;}
.y148{bottom:582.540315px;}
.y31{bottom:584.699955px;}
.y83{bottom:584.700345px;}
.y16a{bottom:587.579940px;}
.yf8{bottom:590.460000px;}
.y18d{bottom:592.620000px;}
.y1cb{bottom:595.500540px;}
.y1f0{bottom:596.220270px;}
.y26e{bottom:597.660045px;}
.y123{bottom:597.660090px;}
.y147{bottom:598.380135px;}
.ya1{bottom:599.100285px;}
.y212{bottom:599.820000px;}
.y30{bottom:600.540045px;}
.y1a5{bottom:601.260000px;}
.y169{bottom:604.139985px;}
.y6{bottom:604.140150px;}
.y5f{bottom:604.860585px;}
.yf7{bottom:607.740000px;}
.y1ca{bottom:608.460675px;}
.y18c{bottom:609.180315px;}
.y122{bottom:611.340180px;}
.ycd{bottom:612.060285px;}
.ya0{bottom:614.940105px;}
.y146{bottom:614.940180px;}
.y2f{bottom:615.660045px;}
.y26d{bottom:615.660120px;}
.y5e{bottom:616.380540px;}
.y82{bottom:617.100210px;}
.y5{bottom:621.420000px;}
.y1c9{bottom:623.580675px;}
.y121{bottom:627.899955px;}
.y242{bottom:629.340450px;}
.y145{bottom:630.780000px;}
.y26c{bottom:631.499940px;}
.y9f{bottom:631.500150px;}
.y2e{bottom:633.660000px;}
.y5d{bottom:633.660540px;}
.yf6{bottom:639.420000px;}
.y1c8{bottom:640.140720px;}
.y168{bottom:640.860015px;}
.y18b{bottom:643.020090px;}
.y120{bottom:644.460000px;}
.y241{bottom:645.900225px;}
.y9e{bottom:647.339970px;}
.y211{bottom:647.340090px;}
.y144{bottom:647.340300px;}
.y26b{bottom:648.060000px;}
.y1ef{bottom:648.060270px;}
.y5c{bottom:650.220585px;}
.y2d{bottom:653.100525px;}
.y1c7{bottom:656.700495px;}
.y240{bottom:658.140405px;}
.y210{bottom:659.580270px;}
.ycc{bottom:660.300240px;}
.y1ee{bottom:660.300450px;}
.y4{bottom:661.740000px;}
.y143{bottom:663.180120px;}
.y9d{bottom:663.900015px;}
.y81{bottom:663.900255px;}
.y2c{bottom:665.340705px;}
.y5b{bottom:666.060405px;}
.y26a{bottom:667.499970px;}
.y23f{bottom:674.700450px;}
.y20f{bottom:676.140315px;}
.y11f{bottom:676.860015px;}
.ycb{bottom:676.860285px;}
.y142{bottom:679.740165px;}
.y80{bottom:680.460300px;}
.y2b{bottom:681.180525px;}
.y269{bottom:681.900000px;}
.y5a{bottom:682.620450px;}
.y167{bottom:683.339955px;}
.y1a4{bottom:686.220000px;}
.yf5{bottom:688.380585px;}
.y1c6{bottom:689.100360px;}
.yca{bottom:691.980285px;}
.y20e{bottom:692.700090px;}
.y23e{bottom:692.700405px;}
.y18a{bottom:693.420180px;}
.y1ed{bottom:693.420270px;}
.y1a3{bottom:697.739955px;}
.y166{bottom:698.459955px;}
.y59{bottom:698.460270px;}
.y2a{bottom:698.460525px;}
.y9c{bottom:700.620000px;}
.y268{bottom:701.340180px;}
.yf4{bottom:704.220405px;}
.y23d{bottom:707.100450px;}
.y20d{bottom:708.540180px;}
.y189{bottom:709.260015px;}
.yc9{bottom:709.260285px;}
.y141{bottom:711.420075px;}
.y7f{bottom:712.860165px;}
.y3{bottom:713.580045px;}
.y58{bottom:714.300090px;}
.y29{bottom:714.300345px;}
.y165{bottom:715.020000px;}
.y267{bottom:717.180000px;}
.yf3{bottom:720.780450px;}
.y188{bottom:722.940030px;}
.y23c{bottom:723.660225px;}
.y20c{bottom:725.099955px;}
.yc8{bottom:725.100105px;}
.y11e{bottom:725.100540px;}
.y57{bottom:730.860135px;}
.y28{bottom:730.860390px;}
.y164{bottom:732.300000px;}
.y266{bottom:733.740000px;}
.y1c5{bottom:733.740405px;}
.y1a2{bottom:734.459955px;}
.yf2{bottom:736.620270px;}
.y2{bottom:737.340015px;}
.y23b{bottom:739.500315px;}
.y11d{bottom:740.940360px;}
.y20b{bottom:741.660000px;}
.yc7{bottom:741.660150px;}
.y1ec{bottom:742.380180px;}
.y140{bottom:743.099985px;}
.y9b{bottom:743.100180px;}
.y56{bottom:746.699955px;}
.y27{bottom:746.700210px;}
.y1c4{bottom:749.580225px;}
.y265{bottom:753.180000px;}
.yf1{bottom:753.180315px;}
.y187{bottom:756.059850px;}
.y23a{bottom:756.060090px;}
.yc6{bottom:756.060195px;}
.y11c{bottom:756.780450px;}
.y1eb{bottom:757.500180px;}
.y7e{bottom:758.940120px;}
.y9a{bottom:759.659955px;}
.y1{bottom:761.099985px;}
.y1a1{bottom:763.260180px;}
.y26{bottom:763.260255px;}
.y55{bottom:763.979955px;}
.y163{bottom:764.700000px;}
.y1c3{bottom:766.140270px;}
.y264{bottom:767.580045px;}
.yf0{bottom:769.740090px;}
.y239{bottom:770.460135px;}
.y20a{bottom:772.620180px;}
.y11b{bottom:773.340225px;}
.y1ea{bottom:774.059955px;}
.yc5{bottom:774.060150px;}
.y7d{bottom:775.500165px;}
.y99{bottom:776.220000px;}
.y25{bottom:779.100075px;}
.y54{bottom:779.820045px;}
.y1c2{bottom:782.700315px;}
.y263{bottom:785.579940px;}
.yef{bottom:785.580180px;}
.y238{bottom:788.460090px;}
.y209{bottom:789.179955px;}
.y11a{bottom:789.180315px;}
.y13f{bottom:790.619970px;}
.y1e9{bottom:790.620000px;}
.y7c{bottom:792.059940px;}
.yc4{bottom:792.060105px;}
.y24{bottom:795.660120px;}
.y1a0{bottom:796.380000px;}
.y1c1{bottom:798.540135px;}
.y53{bottom:799.260045px;}
.yee{bottom:802.139955px;}
.y262{bottom:802.139985px;}
.y237{bottom:804.300180px;}
.yc3{bottom:805.740195px;}
.y186{bottom:806.459940px;}
.y208{bottom:806.459955px;}
.y119{bottom:806.460315px;}
.y13e{bottom:807.180015px;}
.y97{bottom:810.060000px;}
.y162{bottom:810.060180px;}
.y23{bottom:812.220165px;}
.y52{bottom:812.220180px;}
.y1c0{bottom:815.100180px;}
.yed{bottom:818.700000px;}
.y236{bottom:820.859955px;}
.y185{bottom:821.579940px;}
.yc2{bottom:822.299970px;}
.y118{bottom:822.300135px;}
.y96{bottom:825.180000px;}
.y7b{bottom:826.619940px;}
.y161{bottom:826.619955px;}
.y22{bottom:828.059985px;}
.y51{bottom:828.779955px;}
.y1bf{bottom:831.659955px;}
.y1e8{bottom:832.380120px;}
.y19f{bottom:836.699970px;}
.y235{bottom:837.420000px;}
.y117{bottom:838.139955px;}
.y184{bottom:838.139985px;}
.yc1{bottom:838.860015px;}
.y7a{bottom:841.019985px;}
.y160{bottom:843.180000px;}
.y260{bottom:843.899985px;}
.y13c{bottom:843.900015px;}
.y206{bottom:848.220120px;}
.y1e7{bottom:850.380000px;}
.y116{bottom:854.700000px;}
.y19e{bottom:855.420000px;}
.y25f{bottom:859.019985px;}
.yeb{bottom:860.460015px;}
.y261{bottom:861.900015px;}
.y205{bottom:863.340000px;}
.y207{bottom:866.220000px;}
.y95{bottom:866.220120px;}
.y21{bottom:869.100000px;}
.y4f{bottom:870.540000px;}
.y1bd{bottom:872.700000px;}
.yea{bottom:874.860015px;}
.y182{bottom:877.739970px;}
.y234{bottom:878.460000px;}
.yec{bottom:879.180000px;}
.yc0{bottom:879.899985px;}
.y13b{bottom:880.619970px;}
.y79{bottom:881.340000px;}
.y15f{bottom:884.219985px;}
.y98{bottom:884.220000px;}
.y4e{bottom:884.940015px;}
.y20{bottom:887.820000px;}
.y50{bottom:888.540000px;}
.y1be{bottom:891.420000px;}
.y181{bottom:892.139985px;}
.y13a{bottom:894.300000px;}
.y183{bottom:896.460000px;}
.y115{bottom:896.460120px;}
.y233{bottom:897.180000px;}
.y13d{bottom:897.900015px;}
.ybf{bottom:899.340000px;}
.y78{bottom:900.780000px;}
.y15e{bottom:903.660000px;}
.y114{bottom:915.900015px;}
.h12{height:41.200195px;}
.h3{height:41.220703px;}
.ha{height:47.085938px;}
.h7{height:47.109375px;}
.h9{height:50.062500px;}
.h24{height:52.971680px;}
.h40{height:52.997567px;}
.h30{height:52.997987px;}
.h8{height:52.998047px;}
.h3f{height:52.998107px;}
.h3b{height:52.998167px;}
.h48{height:52.998227px;}
.h37{height:52.998287px;}
.h21{height:52.998587px;}
.h49{height:52.999127px;}
.h6{height:54.421875px;}
.h11{height:56.320312px;}
.h1e{height:58.857362px;}
.h18{height:58.857422px;}
.hd{height:58.886719px;}
.h41{height:58.886899px;}
.h1c{height:60.467550px;}
.h4{height:60.468750px;}
.h25{height:62.577645px;}
.he{height:62.578065px;}
.h1d{height:62.578125px;}
.h35{height:62.578245px;}
.h31{height:64.741904px;}
.h2f{height:64.743104px;}
.h14{height:64.743164px;}
.h26{height:64.743704px;}
.h43{height:64.775151px;}
.h32{height:64.775391px;}
.h13{height:66.515625px;}
.h47{height:68.835217px;}
.h42{height:68.835757px;}
.h17{height:68.835938px;}
.h2a{height:68.835997px;}
.h1b{height:68.836057px;}
.h36{height:70.664062px;}
.h5{height:75.093090px;}
.h2b{height:75.093750px;}
.h3e{height:75.093930px;}
.h44{height:75.095070px;}
.h2{height:78.609375px;}
.h2c{height:87.609375px;}
.h38{height:106.381133px;}
.h39{height:938.160000px;}
.h3a{height:938.250000px;}
.h3d{height:946.500000px;}
.h3c{height:946.800000px;}
.h34{height:948.750000px;}
.h33{height:948.960000px;}
.h45{height:954.720000px;}
.h46{height:954.750000px;}
.h20{height:965.250000px;}
.h1f{height:965.520000px;}
.hf{height:974.880000px;}
.h10{height:975.000000px;}
.h19{height:979.200000px;}
.h1a{height:979.500000px;}
.h15{height:979.920000px;}
.h16{height:980.250000px;}
.h2e{height:981.000000px;}
.h2d{height:981.360000px;}
.hc{height:982.500000px;}
.hb{height:982.800000px;}
.h1{height:984.750000px;}
.h0{height:984.960000px;}
.h27{height:990.000000px;}
.h22{height:991.440000px;}
.h23{height:991.500000px;}
.h28{height:997.200000px;}
.h29{height:997.500000px;}
.w1a{width:637.920000px;}
.w1b{width:638.250000px;}
.w9{width:645.000000px;}
.w8{width:645.120000px;}
.w4{width:656.640000px;}
.w5{width:657.000000px;}
.w1{width:659.250000px;}
.w0{width:659.520000px;}
.w19{width:662.250000px;}
.w18{width:662.400000px;}
.wd{width:663.000000px;}
.wc{width:663.120000px;}
.w3{width:665.250000px;}
.w2{width:665.280000px;}
.we{width:668.160000px;}
.wf{width:668.250000px;}
.w16{width:669.600000px;}
.w17{width:669.750000px;}
.w1e{width:671.040000px;}
.w1f{width:671.250000px;}
.w14{width:672.480000px;}
.w15{width:672.750000px;}
.w10{width:673.200000px;}
.w11{width:673.500000px;}
.w1c{width:673.920000px;}
.w1d{width:674.250000px;}
.w13{width:681.000000px;}
.w12{width:681.120000px;}
.w6{width:685.440000px;}
.w7{width:685.500000px;}
.wb{width:693.750000px;}
.wa{width:694.080000px;}
.x0{left:0.000000px;}
.x3b{left:37.440015px;}
.x3d{left:38.880090px;}
.x7{left:43.920000px;}
.x8{left:45.358875px;}
.x46{left:47.519505px;}
.x42{left:48.959985px;}
.x22{left:50.399640px;}
.x20{left:51.840150px;}
.x2c{left:56.160600px;}
.x2a{left:57.599985px;}
.x14{left:60.480000px;}
.x15{left:61.920720px;}
.x2{left:63.359790px;}
.x9{left:66.960000px;}
.x3c{left:70.559985px;}
.x21{left:72.000000px;}
.x6{left:79.200300px;}
.x44{left:82.080300px;}
.x43{left:83.519985px;}
.x1d{left:85.680000px;}
.xc{left:87.120315px;}
.xa{left:88.559985px;}
.x2b{left:90.720000px;}
.x13{left:94.320000px;}
.x1a{left:96.480495px;}
.x16{left:97.920000px;}
.x39{left:99.360015px;}
.x2d{left:103.680000px;}
.x5{left:105.840000px;}
.xe{left:108.000000px;}
.x23{left:110.160000px;}
.x40{left:111.599985px;}
.x32{left:113.760000px;}
.x12{left:115.200000px;}
.x27{left:119.519985px;}
.xd{left:121.680000px;}
.xf{left:123.120000px;}
.x31{left:124.559985px;}
.x1b{left:128.882385px;}
.x18{left:130.320000px;}
.x3{left:136.079970px;}
.x2f{left:137.519985px;}
.x30{left:138.960000px;}
.x3f{left:141.120000px;}
.x1e{left:142.559955px;}
.x25{left:144.002745px;}
.x48{left:146.160450px;}
.x1{left:147.599985px;}
.x37{left:151.920000px;}
.x35{left:153.360015px;}
.x36{left:154.800000px;}
.x26{left:186.479685px;}
.x19{left:187.920180px;}
.x38{left:196.559925px;}
.xb{left:210.239910px;}
.x17{left:218.880105px;}
.x2e{left:226.800000px;}
.x45{left:228.960120px;}
.x3e{left:230.399985px;}
.x24{left:233.279805px;}
.x47{left:234.720000px;}
.x34{left:243.359985px;}
.x1c{left:246.959640px;}
.x28{left:252.719880px;}
.x10{left:256.320045px;}
.x4{left:291.599985px;}
.x3a{left:532.080000px;}
.x41{left:543.599985px;}
.x33{left:547.200135px;}
.x1f{left:548.639985px;}
.x29{left:552.240000px;}
.x11{left:558.000000px;}
@media print{
.v3{vertical-align:-17.920000pt;}
.v2{vertical-align:-15.360000pt;}
.v1{vertical-align:-12.800000pt;}
.v4{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls20{letter-spacing:5.472000pt;}
.ls26{letter-spacing:8.117333pt;}
.ls29{letter-spacing:10.677280pt;}
.lsd{letter-spacing:14.506667pt;}
.lse{letter-spacing:14.629333pt;}
.ls6{letter-spacing:14.629387pt;}
.ls11{letter-spacing:14.826667pt;}
.lsb{letter-spacing:14.932107pt;}
.ls2a{letter-spacing:16.192053pt;}
.ls1{letter-spacing:17.066240pt;}
.lsf{letter-spacing:17.386667pt;}
.ls24{letter-spacing:17.386720pt;}
.ls1a{letter-spacing:17.493280pt;}
.ls15{letter-spacing:18.186560pt;}
.ls21{letter-spacing:18.186667pt;}
.ls3{letter-spacing:18.186720pt;}
.ls27{letter-spacing:18.752000pt;}
.ls1c{letter-spacing:18.858667pt;}
.ls7{letter-spacing:19.520640pt;}
.ls25{letter-spacing:19.627093pt;}
.ls12{letter-spacing:19.840000pt;}
.ls22{letter-spacing:19.946667pt;}
.ls19{letter-spacing:19.946720pt;}
.ls1d{letter-spacing:20.032000pt;}
.ls4{letter-spacing:20.053280pt;}
.ls9{letter-spacing:21.418667pt;}
.ls17{letter-spacing:21.973333pt;}
.ls14{letter-spacing:22.080000pt;}
.ls10{letter-spacing:22.186667pt;}
.ls8{letter-spacing:22.400000pt;}
.lsc{letter-spacing:22.506667pt;}
.ls0{letter-spacing:22.911947pt;}
.lsa{letter-spacing:23.978667pt;}
.ls1b{letter-spacing:24.320000pt;}
.ls16{letter-spacing:24.533867pt;}
.ls5{letter-spacing:24.639947pt;}
.ls13{letter-spacing:24.959947pt;}
.ls28{letter-spacing:25.066720pt;}
.ls1e{letter-spacing:25.152000pt;}
.ls1f{letter-spacing:26.538293pt;}
.ls18{letter-spacing:27.712000pt;}
.ls23{letter-spacing:29.866667pt;}
.ls2b{letter-spacing:32.832053pt;}
.wsf5{word-spacing:-25.205333pt;}
.wsbe{word-spacing:-20.757333pt;}
.ws57{word-spacing:-12.000000pt;}
.ws62{word-spacing:-10.666667pt;}
.ws8d{word-spacing:-2.986667pt;}
.wsc9{word-spacing:-2.720160pt;}
.ws1b{word-spacing:-1.194667pt;}
.ws85{word-spacing:-1.002613pt;}
.ws116{word-spacing:-0.683093pt;}
.ws10a{word-spacing:-0.576053pt;}
.ws59{word-spacing:-0.575520pt;}
.ws117{word-spacing:-0.192000pt;}
.ws1e{word-spacing:0.000000pt;}
.ws108{word-spacing:0.256000pt;}
.ws173{word-spacing:0.640320pt;}
.wsa8{word-spacing:0.810667pt;}
.ws60{word-spacing:0.981333pt;}
.ws1a{word-spacing:1.280000pt;}
.ws61{word-spacing:1.748907pt;}
.wsa7{word-spacing:1.749387pt;}
.ws111{word-spacing:1.785973pt;}
.wsab{word-spacing:1.813333pt;}
.ws65{word-spacing:1.904160pt;}
.ws96{word-spacing:1.984320pt;}
.wsce{word-spacing:2.042507pt;}
.wsc4{word-spacing:2.400000pt;}
.ws93{word-spacing:2.815573pt;}
.ws142{word-spacing:2.880000pt;}
.wsd2{word-spacing:2.881547pt;}
.ws7{word-spacing:2.987093pt;}
.wse6{word-spacing:3.200000pt;}
.wsf6{word-spacing:3.200160pt;}
.ws1c{word-spacing:3.285333pt;}
.ws139{word-spacing:3.376320pt;}
.wsda{word-spacing:3.504480pt;}
.ws11c{word-spacing:3.536640pt;}
.wsc6{word-spacing:3.595093pt;}
.wsec{word-spacing:3.776160pt;}
.wsa5{word-spacing:3.792000pt;}
.ws28{word-spacing:3.920160pt;}
.wse3{word-spacing:4.192320pt;}
.ws51{word-spacing:4.207200pt;}
.ws33{word-spacing:4.208160pt;}
.ws147{word-spacing:4.223520pt;}
.ws109{word-spacing:4.308427pt;}
.ws6c{word-spacing:4.335360pt;}
.ws9f{word-spacing:4.336320pt;}
.wsc5{word-spacing:4.437333pt;}
.ws6e{word-spacing:4.464000pt;}
.wsf{word-spacing:4.544160pt;}
.ws4d{word-spacing:4.559573pt;}
.ws129{word-spacing:4.565333pt;}
.ws13b{word-spacing:4.607947pt;}
.ws8{word-spacing:4.608000pt;}
.ws16{word-spacing:4.624320pt;}
.ws90{word-spacing:4.671893pt;}
.ws75{word-spacing:4.778667pt;}
.wsba{word-spacing:4.885173pt;}
.wse{word-spacing:4.959840pt;}
.ws11{word-spacing:5.088000pt;}
.ws8e{word-spacing:5.141920pt;}
.ws104{word-spacing:5.162240pt;}
.wsd9{word-spacing:5.349813pt;}
.wscc{word-spacing:5.371147pt;}
.ws8c{word-spacing:5.376427pt;}
.wsd5{word-spacing:5.441920pt;}
.ws2{word-spacing:5.631253pt;}
.ws133{word-spacing:5.631360pt;}
.ws164{word-spacing:5.743467pt;}
.ws14c{word-spacing:5.936160pt;}
.ws3d{word-spacing:5.978187pt;}
.ws69{word-spacing:6.064320pt;}
.ws74{word-spacing:6.101333pt;}
.ws87{word-spacing:6.144480pt;}
.ws40{word-spacing:6.224640pt;}
.wsb5{word-spacing:6.271467pt;}
.ws45{word-spacing:6.351840pt;}
.ws3b{word-spacing:6.399573pt;}
.wsbf{word-spacing:6.416160pt;}
.ws17{word-spacing:6.480000pt;}
.wseb{word-spacing:6.560160pt;}
.ws1d{word-spacing:6.623307pt;}
.wsbd{word-spacing:6.656480pt;}
.wsc3{word-spacing:6.687840pt;}
.wse8{word-spacing:6.688320pt;}
.ws9a{word-spacing:6.752533pt;}
.ws98{word-spacing:6.768000pt;}
.ws6f{word-spacing:6.895200pt;}
.ws38{word-spacing:6.896160pt;}
.wsff{word-spacing:6.912000pt;}
.ws82{word-spacing:6.933333pt;}
.ws76{word-spacing:6.975360pt;}
.ws103{word-spacing:7.082667pt;}
.ws2a{word-spacing:7.104000pt;}
.ws118{word-spacing:7.105440pt;}
.ws13a{word-spacing:7.125333pt;}
.ws13f{word-spacing:7.125387pt;}
.ws39{word-spacing:7.168000pt;}
.ws37{word-spacing:7.279680pt;}
.wsc8{word-spacing:7.338667pt;}
.ws13e{word-spacing:7.376160pt;}
.ws43{word-spacing:7.519680pt;}
.wsed{word-spacing:7.520587pt;}
.ws48{word-spacing:7.520640pt;}
.wse2{word-spacing:7.536480pt;}
.ws24{word-spacing:7.647840pt;}
.ws34{word-spacing:7.695840pt;}
.wsa1{word-spacing:7.728000pt;}
.wsfc{word-spacing:7.808427pt;}
.wse7{word-spacing:7.823200pt;}
.wscd{word-spacing:7.834347pt;}
.ws11f{word-spacing:7.872107pt;}
.ws73{word-spacing:7.875840pt;}
.wse9{word-spacing:7.904160pt;}
.ws19{word-spacing:7.936000pt;}
.ws140{word-spacing:7.983840pt;}
.ws122{word-spacing:7.984053pt;}
.ws3e{word-spacing:8.058773pt;}
.ws172{word-spacing:8.149333pt;}
.ws165{word-spacing:8.255947pt;}
.wsac{word-spacing:8.287200pt;}
.ws167{word-spacing:8.303680pt;}
.ws36{word-spacing:8.319360pt;}
.wsf2{word-spacing:8.319947pt;}
.wsb6{word-spacing:8.367360pt;}
.ws101{word-spacing:8.405333pt;}
.ws12a{word-spacing:8.528160pt;}
.wscb{word-spacing:8.538507pt;}
.ws4c{word-spacing:8.586453pt;}
.ws169{word-spacing:8.624160pt;}
.ws9e{word-spacing:8.703893pt;}
.wsb1{word-spacing:8.704320pt;}
.ws155{word-spacing:8.778667pt;}
.ws44{word-spacing:8.784480pt;}
.ws97{word-spacing:8.832480pt;}
.wsaf{word-spacing:8.874240pt;}
.ws113{word-spacing:8.911680pt;}
.ws47{word-spacing:8.912640pt;}
.wsc0{word-spacing:8.976000pt;}
.ws115{word-spacing:8.991840pt;}
.ws2c{word-spacing:9.039840pt;}
.wsa3{word-spacing:9.120000pt;}
.wsd6{word-spacing:9.130667pt;}
.wsd3{word-spacing:9.131093pt;}
.ws22{word-spacing:9.184000pt;}
.ws15{word-spacing:9.247680pt;}
.ws5a{word-spacing:9.248160pt;}
.ws10f{word-spacing:9.312747pt;}
.ws4e{word-spacing:9.328320pt;}
.wsd0{word-spacing:9.375840pt;}
.ws1{word-spacing:9.408533pt;}
.ws10{word-spacing:9.456000pt;}
.wsb7{word-spacing:9.600000pt;}
.ws25{word-spacing:9.663360pt;}
.ws2e{word-spacing:9.664320pt;}
.ws136{word-spacing:9.685280pt;}
.ws13d{word-spacing:9.685387pt;}
.ws105{word-spacing:9.813333pt;}
.ws7a{word-spacing:9.898240pt;}
.ws4f{word-spacing:9.952320pt;}
.ws4b{word-spacing:10.080480pt;}
.ws16d{word-spacing:10.128053pt;}
.ws95{word-spacing:10.207680pt;}
.ws13{word-spacing:10.208640pt;}
.ws8b{word-spacing:10.240427pt;}
.ws146{word-spacing:10.464000pt;}
.ws18{word-spacing:10.496000pt;}
.ws159{word-spacing:10.544160pt;}
.ws119{word-spacing:10.666667pt;}
.ws157{word-spacing:10.709280pt;}
.ws158{word-spacing:10.709333pt;}
.ws30{word-spacing:10.848000pt;}
.ws16f{word-spacing:10.880160pt;}
.ws79{word-spacing:11.050667pt;}
.ws84{word-spacing:11.055360pt;}
.wsad{word-spacing:11.092800pt;}
.wscf{word-spacing:11.183520pt;}
.ws46{word-spacing:11.216160pt;}
.ws41{word-spacing:11.264160pt;}
.ws49{word-spacing:11.344320pt;}
.ws8f{word-spacing:11.397600pt;}
.ws66{word-spacing:11.472480pt;}
.ws89{word-spacing:11.520000pt;}
.ws16a{word-spacing:11.599680pt;}
.wsa2{word-spacing:11.600640pt;}
.wsa4{word-spacing:11.679840pt;}
.ws5{word-spacing:11.733333pt;}
.wse0{word-spacing:11.744320pt;}
.ws23{word-spacing:11.808000pt;}
.ws143{word-spacing:11.839680pt;}
.ws2b{word-spacing:11.888160pt;}
.wsfd{word-spacing:11.989280pt;}
.ws72{word-spacing:12.015840pt;}
.ws9b{word-spacing:12.016320pt;}
.wsf7{word-spacing:12.095413pt;}
.ws160{word-spacing:12.096000pt;}
.ws29{word-spacing:12.223200pt;}
.wsd{word-spacing:12.224160pt;}
.ws151{word-spacing:12.320160pt;}
.wsc1{word-spacing:12.320853pt;}
.ws4a{word-spacing:12.426133pt;}
.wsb4{word-spacing:12.533547pt;}
.ws150{word-spacing:12.586667pt;}
.wsbb{word-spacing:12.640320pt;}
.wse5{word-spacing:12.672000pt;}
.ws123{word-spacing:12.688320pt;}
.ws15c{word-spacing:12.768480pt;}
.ws56{word-spacing:12.895680pt;}
.wsf1{word-spacing:13.008000pt;}
.ws125{word-spacing:13.024320pt;}
.ws126{word-spacing:13.024800pt;}
.ws9{word-spacing:13.056000pt;}
.wsd8{word-spacing:13.226667pt;}
.ws15f{word-spacing:13.269387pt;}
.ws14{word-spacing:13.280160pt;}
.ws145{word-spacing:13.311840pt;}
.ws15a{word-spacing:13.312320pt;}
.ws27{word-spacing:13.407840pt;}
.ws71{word-spacing:13.440000pt;}
.wsdb{word-spacing:13.568000pt;}
.ws7b{word-spacing:13.653760pt;}
.ws92{word-spacing:13.797653pt;}
.ws11b{word-spacing:13.823520pt;}
.wsea{word-spacing:13.871520pt;}
.ws42{word-spacing:13.904160pt;}
.ws12{word-spacing:14.032320pt;}
.ws121{word-spacing:14.133867pt;}
.wsca{word-spacing:14.175840pt;}
.ws171{word-spacing:14.191840pt;}
.wsf3{word-spacing:14.239680pt;}
.wsf4{word-spacing:14.240640pt;}
.ws7f{word-spacing:14.288640pt;}
.ws2f{word-spacing:14.367840pt;}
.ws68{word-spacing:14.368800pt;}
.wsf9{word-spacing:14.378667pt;}
.ws94{word-spacing:14.448000pt;}
.ws99{word-spacing:14.612693pt;}
.ws20{word-spacing:14.623840pt;}
.wsde{word-spacing:14.624213pt;}
.ws11d{word-spacing:14.655840pt;}
.wsa0{word-spacing:14.784000pt;}
.ws64{word-spacing:14.912160pt;}
.wsb0{word-spacing:14.981120pt;}
.wsee{word-spacing:15.018613pt;}
.ws12c{word-spacing:15.039360pt;}
.ws4{word-spacing:15.092320pt;}
.ws152{word-spacing:15.119520pt;}
.ws83{word-spacing:15.167520pt;}
.wsdc{word-spacing:15.200160pt;}
.ws14f{word-spacing:15.248160pt;}
.ws174{word-spacing:15.402667pt;}
.ws0{word-spacing:15.450933pt;}
.ws12f{word-spacing:15.583307pt;}
.ws132{word-spacing:15.583787pt;}
.ws6b{word-spacing:15.616000pt;}
.ws168{word-spacing:15.829333pt;}
.ws161{word-spacing:15.829387pt;}
.ws130{word-spacing:15.872160pt;}
.ws6d{word-spacing:15.967680pt;}
.ws5d{word-spacing:15.968160pt;}
.ws16e{word-spacing:16.000427pt;}
.ws3{word-spacing:16.106667pt;}
.ws5b{word-spacing:16.496160pt;}
.wsae{word-spacing:16.554667pt;}
.ws3a{word-spacing:16.640000pt;}
.ws128{word-spacing:16.736480pt;}
.ws15d{word-spacing:16.767947pt;}
.ws35{word-spacing:16.800480pt;}
.ws106{word-spacing:16.853387pt;}
.ws63{word-spacing:16.927680pt;}
.ws2d{word-spacing:16.928640pt;}
.ws53{word-spacing:16.954560pt;}
.ws78{word-spacing:17.024640pt;}
.ws7d{word-spacing:17.183787pt;}
.ws32{word-spacing:17.312160pt;}
.ws148{word-spacing:17.493333pt;}
.ws3f{word-spacing:17.541440pt;}
.ws141{word-spacing:17.600160pt;}
.ws107{word-spacing:17.653067pt;}
.wsb{word-spacing:17.706667pt;}
.wsc2{word-spacing:17.760000pt;}
.ws12d{word-spacing:17.807520pt;}
.ws77{word-spacing:17.962613pt;}
.wsbc{word-spacing:17.983680pt;}
.ws127{word-spacing:18.159840pt;}
.ws8a{word-spacing:18.176000pt;}
.ws163{word-spacing:18.240000pt;}
.ws170{word-spacing:18.432000pt;}
.wsb9{word-spacing:18.490880pt;}
.ws7e{word-spacing:18.491573pt;}
.ws31{word-spacing:18.528000pt;}
.ws88{word-spacing:18.735840pt;}
.ws10c{word-spacing:18.943200pt;}
.ws55{word-spacing:18.944160pt;}
.wsa9{word-spacing:18.986667pt;}
.ws124{word-spacing:19.295520pt;}
.ws153{word-spacing:19.328000pt;}
.ws80{word-spacing:19.488480pt;}
.ws5f{word-spacing:19.711680pt;}
.ws114{word-spacing:19.733120pt;}
.ws15b{word-spacing:19.840000pt;}
.wsef{word-spacing:19.920000pt;}
.ws16c{word-spacing:20.160000pt;}
.ws91{word-spacing:20.304107pt;}
.ws138{word-spacing:20.367360pt;}
.ws10b{word-spacing:20.687520pt;}
.ws149{word-spacing:20.907093pt;}
.ws54{word-spacing:21.050507pt;}
.wsdf{word-spacing:21.050880pt;}
.ws21{word-spacing:21.051147pt;}
.ws26{word-spacing:21.087840pt;}
.ws134{word-spacing:21.216000pt;}
.ws154{word-spacing:21.360000pt;}
.ws9d{word-spacing:21.504000pt;}
.wsfa{word-spacing:21.759573pt;}
.ws12e{word-spacing:21.856320pt;}
.ws110{word-spacing:22.095840pt;}
.ws102{word-spacing:22.165280pt;}
.wsb3{word-spacing:22.185813pt;}
.ws86{word-spacing:22.474613pt;}
.wsc{word-spacing:22.506667pt;}
.ws9c{word-spacing:22.896000pt;}
.wsd7{word-spacing:23.088000pt;}
.ws162{word-spacing:23.765387pt;}
.ws14e{word-spacing:24.112320pt;}
.wse1{word-spacing:24.608160pt;}
.ws14d{word-spacing:24.640320pt;}
.ws70{word-spacing:25.173333pt;}
.wsfb{word-spacing:25.258667pt;}
.ws6a{word-spacing:25.263840pt;}
.ws144{word-spacing:25.919520pt;}
.ws156{word-spacing:26.032320pt;}
.ws13c{word-spacing:26.032587pt;}
.wsb2{word-spacing:26.346667pt;}
.ws14a{word-spacing:26.624000pt;}
.ws5e{word-spacing:26.751840pt;}
.ws58{word-spacing:26.880000pt;}
.wsf8{word-spacing:27.519893pt;}
.ws100{word-spacing:27.984000pt;}
.ws5c{word-spacing:28.160160pt;}
.wsfe{word-spacing:28.351947pt;}
.ws6{word-spacing:28.464000pt;}
.ws16b{word-spacing:29.013387pt;}
.ws135{word-spacing:29.088000pt;}
.ws112{word-spacing:29.328000pt;}
.ws166{word-spacing:29.535840pt;}
.ws137{word-spacing:29.792053pt;}
.ws12b{word-spacing:29.867893pt;}
.ws120{word-spacing:29.920320pt;}
.wsd4{word-spacing:30.768000pt;}
.ws50{word-spacing:31.541280pt;}
.ws67{word-spacing:33.024000pt;}
.ws11a{word-spacing:34.176480pt;}
.ws131{word-spacing:34.368000pt;}
.wsaa{word-spacing:34.453333pt;}
.ws10e{word-spacing:35.093227pt;}
.ws14b{word-spacing:36.351947pt;}
.wsd1{word-spacing:36.544320pt;}
.ws15e{word-spacing:38.112000pt;}
.wsc7{word-spacing:39.104160pt;}
.wsa{word-spacing:40.784000pt;}
.wse4{word-spacing:41.456160pt;}
.wsf0{word-spacing:43.349387pt;}
.ws81{word-spacing:43.670240pt;}
.ws3c{word-spacing:50.260907pt;}
.ws10d{word-spacing:60.159840pt;}
.wsb8{word-spacing:417.920000pt;}
.wsdd{word-spacing:423.039947pt;}
.wsa6{word-spacing:423.040000pt;}
.ws1f{word-spacing:437.653440pt;}
.ws11e{word-spacing:440.213333pt;}
.ws52{word-spacing:441.760000pt;}
.ws7c{word-spacing:449.440053pt;}
._3a{margin-left:-11.018613pt;}
._32{margin-left:-2.583360pt;}
._39{margin-left:-1.560800pt;}
._30{width:2.198027pt;}
._3d{width:3.235680pt;}
._2f{width:4.160160pt;}
._2a{width:5.685707pt;}
._31{width:7.424000pt;}
._3c{width:8.421813pt;}
._b{width:9.866133pt;}
._35{width:11.461280pt;}
._38{width:12.544427pt;}
._24{width:14.279787pt;}
._1d{width:15.669120pt;}
._13{width:16.768000pt;}
._26{width:17.712640pt;}
._f{width:18.602667pt;}
._29{width:19.685173pt;}
._10{width:20.692907pt;}
._17{width:21.973493pt;}
._12{width:22.890773pt;}
._e{width:23.978667pt;}
._11{width:25.652480pt;}
._15{width:27.125547pt;}
._d{width:28.149760pt;}
._2{width:29.135947pt;}
._6{width:30.890773pt;}
._14{width:32.063467pt;}
._1f{width:33.044053pt;}
._1{width:34.255520pt;}
._18{width:35.505280pt;}
._c{width:36.586667pt;}
._7{width:37.813867pt;}
._a{width:39.573333pt;}
._2b{width:40.490400pt;}
._4{width:41.493227pt;}
._19{width:42.832640pt;}
._9{width:43.840533pt;}
._1a{width:44.912640pt;}
._8{width:46.240000pt;}
._1b{width:47.291307pt;}
._16{width:48.883787pt;}
._2d{width:50.101813pt;}
._3{width:51.023787pt;}
._41{width:51.951573pt;}
._5{width:52.858347pt;}
._0{width:54.661013pt;}
._1e{width:56.117333pt;}
._25{width:57.024000pt;}
._1c{width:58.570347pt;}
._22{width:60.307947pt;}
._21{width:62.089493pt;}
._3b{width:63.158027pt;}
._27{width:64.831680pt;}
._23{width:67.430667pt;}
._33{width:68.816107pt;}
._2e{width:69.961653pt;}
._28{width:72.149333pt;}
._34{width:73.164587pt;}
._20{width:75.962613pt;}
._37{width:77.605120pt;}
._3e{width:79.835413pt;}
._40{width:81.200480pt;}
._2c{width:86.858293pt;}
._42{width:88.465600pt;}
._3f{width:95.573760pt;}
._36{width:100.712747pt;}
.fs6{font-size:21.333333pt;}
.fs8{font-size:26.666667pt;}
.fsa{font-size:32.000000pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.333333pt;}
.fs9{font-size:74.666667pt;}
.fsb{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y204{bottom:24.373733pt;}
.y1bc{bottom:27.573813pt;}
.y203{bottom:39.093533pt;}
.y1bb{bottom:42.293853pt;}
.y113{bottom:48.694067pt;}
.y232{bottom:51.894840pt;}
.y202{bottom:53.173613pt;}
.ybe{bottom:54.453440pt;}
.y1ba{bottom:57.013653pt;}
.y77{bottom:57.653413pt;}
.y4d{bottom:58.293240pt;}
.y1e6{bottom:60.213333pt;}
.y112{bottom:63.414107pt;}
.y1f{bottom:65.973333pt;}
.y25e{bottom:65.973480pt;}
.y15d{bottom:66.613347pt;}
.y231{bottom:66.614880pt;}
.ybd{bottom:67.253440pt;}
.y201{bottom:67.893413pt;}
.y4c{bottom:70.453240pt;}
.ye9{bottom:70.453427pt;}
.y180{bottom:71.093493pt;}
.y76{bottom:71.733493pt;}
.y1b9{bottom:71.733693pt;}
.y1e5{bottom:73.013453pt;}
.y111{bottom:77.493947pt;}
.y1e{bottom:78.773533pt;}
.ye8{bottom:80.053333pt;}
.ybc{bottom:80.693333pt;}
.y139{bottom:81.333333pt;}
.y200{bottom:81.973493pt;}
.y230{bottom:81.974880pt;}
.y4b{bottom:84.533347pt;}
.y17f{bottom:85.173333pt;}
.y1e4{bottom:85.173453pt;}
.y75{bottom:86.453293pt;}
.y1b8{bottom:86.453733pt;}
.y1d{bottom:90.933533pt;}
.y110{bottom:92.213987pt;}
.ye7{bottom:93.493333pt;}
.y25d{bottom:95.413040pt;}
.y22f{bottom:96.054720pt;}
.y1ff{bottom:96.693293pt;}
.y4a{bottom:97.333347pt;}
.y1e3{bottom:98.613347pt;}
.y1b7{bottom:99.893733pt;}
.y74{bottom:101.173333pt;}
.y15c{bottom:103.093413pt;}
.y1c{bottom:103.733533pt;}
.ye6{bottom:105.013320pt;}
.y10f{bottom:106.933787pt;}
.y94{bottom:107.574560pt;}
.y49{bottom:109.493347pt;}
.y25c{bottom:110.773040pt;}
.y22e{bottom:110.774760pt;}
.y1fe{bottom:111.413333pt;}
.y1b6{bottom:114.613533pt;}
.y17e{bottom:115.253173pt;}
.y1e2{bottom:115.253333pt;}
.ybb{bottom:115.253493pt;}
.y73{bottom:115.893720pt;}
.y15b{bottom:117.173493pt;}
.y1b{bottom:119.733533pt;}
.y48{bottom:121.653347pt;}
.ye5{bottom:121.653453pt;}
.y10e{bottom:121.653827pt;}
.y93{bottom:121.654400pt;}
.y1e1{bottom:124.853227pt;}
.y22d{bottom:124.854600pt;}
.y138{bottom:126.133427pt;}
.y25b{bottom:129.333200pt;}
.y1a{bottom:129.333427pt;}
.y1b5{bottom:129.333573pt;}
.yba{bottom:129.973293pt;}
.y72{bottom:129.973560pt;}
.y15a{bottom:131.253333pt;}
.ye4{bottom:131.253347pt;}
.y10d{bottom:135.093827pt;}
.y92{bottom:136.374440pt;}
.y1e0{bottom:138.933333pt;}
.y22c{bottom:138.934680pt;}
.y25a{bottom:140.853320pt;}
.y1fd{bottom:140.853333pt;}
.y137{bottom:140.853467pt;}
.y19{bottom:142.133427pt;}
.y1b4{bottom:143.413413pt;}
.ye3{bottom:144.053347pt;}
.yb9{bottom:144.053373pt;}
.y71{bottom:144.693600pt;}
.y10c{bottom:150.453827pt;}
.y22b{bottom:153.654480pt;}
.y136{bottom:154.933307pt;}
.y18{bottom:155.573320pt;}
.y259{bottom:156.213320pt;}
.y17d{bottom:156.213373pt;}
.ye2{bottom:156.853347pt;}
.yb8{bottom:157.493373pt;}
.y47{bottom:158.133933pt;}
.y1b3{bottom:158.773413pt;}
.y70{bottom:158.773440pt;}
.y159{bottom:160.693333pt;}
.y10b{bottom:164.533667pt;}
.y91{bottom:167.734400pt;}
.y17c{bottom:168.373453pt;}
.y22a{bottom:168.374520pt;}
.y135{bottom:169.653227pt;}
.ye1{bottom:169.653347pt;}
.y258{bottom:171.573333pt;}
.y46{bottom:172.213773pt;}
.y1b2{bottom:172.853493pt;}
.yb7{bottom:173.493427pt;}
.y6f{bottom:173.493480pt;}
.y10a{bottom:178.613747pt;}
.y19d{bottom:180.533453pt;}
.y17b{bottom:183.093493pt;}
.y1fc{bottom:183.094053pt;}
.y229{bottom:183.094560pt;}
.y134{bottom:183.733333pt;}
.y257{bottom:186.293387pt;}
.y1b1{bottom:186.933333pt;}
.y1df{bottom:186.933693pt;}
.y45{bottom:186.933813pt;}
.y6e{bottom:187.573320pt;}
.yb6{bottom:187.573507pt;}
.y17{bottom:188.853813pt;}
.y109{bottom:193.333547pt;}
.y19c{bottom:194.613293pt;}
.y17a{bottom:197.173333pt;}
.y1fb{bottom:197.173893pt;}
.y228{bottom:197.174400pt;}
.y133{bottom:198.453533pt;}
.yb5{bottom:201.653347pt;}
.y256{bottom:201.653387pt;}
.y158{bottom:201.653573pt;}
.y16{bottom:203.573853pt;}
.y44{bottom:204.853773pt;}
.y108{bottom:207.413627pt;}
.y90{bottom:207.414440pt;}
.y19b{bottom:209.333333pt;}
.y227{bottom:211.254240pt;}
.ye0{bottom:211.893813pt;}
.y1fa{bottom:211.893933pt;}
.y132{bottom:212.533613pt;}
.y157{bottom:215.733413pt;}
.y1de{bottom:215.733573pt;}
.y43{bottom:215.733933pt;}
.y6d{bottom:216.373333pt;}
.yb4{bottom:216.373347pt;}
.y1b0{bottom:217.013320pt;}
.y255{bottom:217.653387pt;}
.y15{bottom:218.293653pt;}
.y8f{bottom:221.494280pt;}
.y107{bottom:222.133427pt;}
.y19a{bottom:223.413173pt;}
.y179{bottom:225.333333pt;}
.y1f9{bottom:225.973773pt;}
.y226{bottom:225.974280pt;}
.y131{bottom:227.253413pt;}
.ydf{bottom:227.893773pt;}
.y156{bottom:230.453453pt;}
.y42{bottom:230.453973pt;}
.yb3{bottom:231.093733pt;}
.y14{bottom:233.013693pt;}
.y254{bottom:234.293307pt;}
.y106{bottom:236.213507pt;}
.yde{bottom:240.053853pt;}
.y225{bottom:240.054120pt;}
.y199{bottom:240.693173pt;}
.y130{bottom:241.333493pt;}
.yb2{bottom:245.173573pt;}
.y41{bottom:245.173773pt;}
.y253{bottom:247.093293pt;}
.y13{bottom:247.093533pt;}
.y105{bottom:250.933307pt;}
.y178{bottom:251.573200pt;}
.y198{bottom:252.213293pt;}
.y8e{bottom:252.854240pt;}
.ydd{bottom:254.133693pt;}
.y1f8{bottom:254.773653pt;}
.y224{bottom:254.774160pt;}
.y12f{bottom:255.413333pt;}
.y1dd{bottom:255.413613pt;}
.y1af{bottom:258.613453pt;}
.y155{bottom:259.253333pt;}
.y40{bottom:259.253853pt;}
.yb1{bottom:259.893613pt;}
.y12{bottom:261.173613pt;}
.y6c{bottom:263.093333pt;}
.y252{bottom:264.373293pt;}
.y104{bottom:265.653227pt;}
.y177{bottom:265.653347pt;}
.y197{bottom:266.933480pt;}
.ydc{bottom:268.853733pt;}
.y223{bottom:268.854000pt;}
.y1dc{bottom:270.133413pt;}
.y1ae{bottom:273.333493pt;}
.yb0{bottom:273.973453pt;}
.y3f{bottom:273.973653pt;}
.y6b{bottom:274.613453pt;}
.y11{bottom:275.253453pt;}
.y251{bottom:277.173387pt;}
.y103{bottom:279.733653pt;}
.y196{bottom:281.013320pt;}
.ydb{bottom:283.573533pt;}
.y222{bottom:283.574040pt;}
.y1db{bottom:284.213493pt;}
.y1ad{bottom:287.413333pt;}
.y3e{bottom:287.413653pt;}
.yaf{bottom:288.053293pt;}
.y12e{bottom:288.053320pt;}
.y6a{bottom:288.693293pt;}
.y10{bottom:289.333293pt;}
.y8d{bottom:291.894320pt;}
.y250{bottom:293.173347pt;}
.y102{bottom:294.453693pt;}
.yda{bottom:297.653613pt;}
.y221{bottom:297.653880pt;}
.y1f7{bottom:298.293573pt;}
.y1da{bottom:298.293707pt;}
.y154{bottom:302.134133pt;}
.yae{bottom:302.773333pt;}
.y3d{bottom:302.773653pt;}
.y69{bottom:303.413333pt;}
.yf{bottom:304.693293pt;}
.y27d{bottom:304.693333pt;}
.y8c{bottom:305.974160pt;}
.y24f{bottom:306.613293pt;}
.y176{bottom:309.173333pt;}
.y195{bottom:309.813293pt;}
.yd9{bottom:312.373413pt;}
.y220{bottom:312.373920pt;}
.y12d{bottom:315.573320pt;}
.y3c{bottom:315.573693pt;}
.y153{bottom:316.214213pt;}
.yad{bottom:317.493867pt;}
.ye{bottom:318.133293pt;}
.y27c{bottom:319.413333pt;}
.y8b{bottom:320.694200pt;}
.y24e{bottom:323.253333pt;}
.y101{bottom:323.253573pt;}
.y1d9{bottom:323.893667pt;}
.y175{bottom:324.533507pt;}
.yd8{bottom:327.093453pt;}
.y21f{bottom:327.093960pt;}
.y3b{bottom:330.933693pt;}
.y152{bottom:330.934013pt;}
.yac{bottom:331.573707pt;}
.y68{bottom:332.213333pt;}
.yd{bottom:332.853333pt;}
.y27b{bottom:334.773093pt;}
.y1ac{bottom:335.413333pt;}
.y8a{bottom:335.414000pt;}
.y24d{bottom:336.693333pt;}
.y174{bottom:336.693587pt;}
.y194{bottom:338.613347pt;}
.y1d8{bottom:338.613707pt;}
.yd7{bottom:341.173293pt;}
.y21e{bottom:341.173800pt;}
.y1f6{bottom:341.813493pt;}
.yab{bottom:345.653547pt;}
.y3a{bottom:345.653733pt;}
.y173{bottom:350.773427pt;}
.y24c{bottom:352.693293pt;}
.y1d7{bottom:352.693547pt;}
.y27a{bottom:353.333253pt;}
.y1f5{bottom:355.893307pt;}
.yd6{bottom:355.893333pt;}
.y21d{bottom:355.893840pt;}
.y12c{bottom:356.533427pt;}
.y39{bottom:359.093733pt;}
.y151{bottom:359.733893pt;}
.yaa{bottom:360.373587pt;}
.yc{bottom:364.853333pt;}
.y279{bottom:365.493293pt;}
.y172{bottom:366.133427pt;}
.y100{bottom:366.133533pt;}
.y89{bottom:366.134000pt;}
.y24b{bottom:367.413333pt;}
.y1d6{bottom:367.413587pt;}
.y12b{bottom:369.333467pt;}
.y21c{bottom:369.973680pt;}
.y193{bottom:370.613347pt;}
.y1ab{bottom:375.093347pt;}
.y67{bottom:375.093573pt;}
.ya9{bottom:375.093627pt;}
.y171{bottom:379.573427pt;}
.y278{bottom:380.213333pt;}
.yff{bottom:380.853573pt;}
.y24a{bottom:382.773333pt;}
.y12a{bottom:384.053507pt;}
.y21b{bottom:384.053520pt;}
.y1d5{bottom:384.693587pt;}
.yd5{bottom:387.893307pt;}
.ya8{bottom:389.813427pt;}
.y66{bottom:389.813613pt;}
.y38{bottom:390.453693pt;}
.y170{bottom:394.293467pt;}
.y277{bottom:395.573293pt;}
.yfe{bottom:395.573613pt;}
.y249{bottom:397.493333pt;}
.y129{bottom:398.133347pt;}
.yd4{bottom:398.773333pt;}
.y1f4{bottom:399.413333pt;}
.y21a{bottom:399.413520pt;}
.y1d4{bottom:399.413627pt;}
.y150{bottom:401.973893pt;}
.ya7{bottom:402.613467pt;}
.yb{bottom:403.893333pt;}
.y65{bottom:403.893453pt;}
.y1aa{bottom:404.533320pt;}
.y88{bottom:405.174080pt;}
.y16f{bottom:409.013507pt;}
.yfd{bottom:409.653453pt;}
.y276{bottom:410.293280pt;}
.y219{bottom:412.853520pt;}
.y192{bottom:413.493413pt;}
.y1d3{bottom:414.133427pt;}
.y248{bottom:414.773440pt;}
.y14f{bottom:416.053973pt;}
.y64{bottom:417.973293pt;}
.ya6{bottom:418.613427pt;}
.y87{bottom:419.893880pt;}
.y16e{bottom:423.093347pt;}
.yfc{bottom:423.093453pt;}
.y275{bottom:425.013373pt;}
.y191{bottom:425.653493pt;}
.y218{bottom:427.573560pt;}
.y247{bottom:428.213320pt;}
.y128{bottom:428.213333pt;}
.y1d2{bottom:428.213507pt;}
.ya{bottom:429.493427pt;}
.y14e{bottom:430.773773pt;}
.y37{bottom:432.693693pt;}
.y63{bottom:433.333293pt;}
.ya5{bottom:433.333467pt;}
.yfb{bottom:438.453453pt;}
.y190{bottom:439.733333pt;}
.y9{bottom:442.293427pt;}
.y217{bottom:442.293600pt;}
.y1d1{bottom:442.933307pt;}
.y274{bottom:442.933333pt;}
.y246{bottom:443.573333pt;}
.yd3{bottom:443.573720pt;}
.y14d{bottom:444.853853pt;}
.y62{bottom:446.773293pt;}
.y1f3{bottom:446.773333pt;}
.ya4{bottom:447.413307pt;}
.y1a9{bottom:447.413493pt;}
.y36{bottom:447.413733pt;}
.y86{bottom:448.693760pt;}
.y16d{bottom:452.533320pt;}
.y8{bottom:455.093427pt;}
.y216{bottom:456.373440pt;}
.y273{bottom:456.373493pt;}
.yd2{bottom:457.013720pt;}
.y1d0{bottom:457.653347pt;}
.y245{bottom:458.293293pt;}
.y14c{bottom:459.573653pt;}
.y61{bottom:461.493333pt;}
.y35{bottom:461.493573pt;}
.ya3{bottom:462.133347pt;}
.y1cf{bottom:467.893307pt;}
.y7{bottom:468.533320pt;}
.y272{bottom:471.093293pt;}
.yfa{bottom:471.093453pt;}
.y215{bottom:471.093480pt;}
.y127{bottom:471.093693pt;}
.yd1{bottom:471.733520pt;}
.y18f{bottom:472.373253pt;}
.y1f2{bottom:472.373333pt;}
.y14b{bottom:473.653733pt;}
.y244{bottom:474.933333pt;}
.y1a8{bottom:476.213373pt;}
.y34{bottom:476.213613pt;}
.y1ce{bottom:482.613293pt;}
.y214{bottom:485.173320pt;}
.y271{bottom:485.813293pt;}
.yd0{bottom:485.813600pt;}
.y126{bottom:485.813733pt;}
.y14a{bottom:488.373533pt;}
.y1a7{bottom:490.933173pt;}
.y33{bottom:490.933413pt;}
.y85{bottom:490.933760pt;}
.ya2{bottom:494.133347pt;}
.y60{bottom:494.773333pt;}
.y16c{bottom:495.413400pt;}
.y1cd{bottom:497.333773pt;}
.y125{bottom:499.893573pt;}
.y213{bottom:500.533320pt;}
.ycf{bottom:500.533400pt;}
.y270{bottom:501.173293pt;}
.y149{bottom:503.093573pt;}
.y32{bottom:505.013493pt;}
.y84{bottom:505.013840pt;}
.y1a6{bottom:507.573213pt;}
.y16b{bottom:507.573480pt;}
.y243{bottom:508.213333pt;}
.yf9{bottom:510.773493pt;}
.y1cc{bottom:511.413853pt;}
.y124{bottom:513.973413pt;}
.yce{bottom:514.613480pt;}
.y18e{bottom:515.253213pt;}
.y1f1{bottom:515.253533pt;}
.y26f{bottom:515.893373pt;}
.y148{bottom:517.813613pt;}
.y31{bottom:519.733293pt;}
.y83{bottom:519.733640pt;}
.y16a{bottom:522.293280pt;}
.yf8{bottom:524.853333pt;}
.y18d{bottom:526.773333pt;}
.y1cb{bottom:529.333813pt;}
.y1f0{bottom:529.973573pt;}
.y26e{bottom:531.253373pt;}
.y123{bottom:531.253413pt;}
.y147{bottom:531.893453pt;}
.ya1{bottom:532.533587pt;}
.y212{bottom:533.173333pt;}
.y30{bottom:533.813373pt;}
.y1a5{bottom:534.453333pt;}
.y169{bottom:537.013320pt;}
.y6{bottom:537.013467pt;}
.y5f{bottom:537.653853pt;}
.yf7{bottom:540.213333pt;}
.y1ca{bottom:540.853933pt;}
.y18c{bottom:541.493613pt;}
.y122{bottom:543.413493pt;}
.ycd{bottom:544.053587pt;}
.ya0{bottom:546.613427pt;}
.y146{bottom:546.613493pt;}
.y2f{bottom:547.253373pt;}
.y26d{bottom:547.253440pt;}
.y5e{bottom:547.893813pt;}
.y82{bottom:548.533520pt;}
.y5{bottom:552.373333pt;}
.y1c9{bottom:554.293933pt;}
.y121{bottom:558.133293pt;}
.y242{bottom:559.413733pt;}
.y145{bottom:560.693333pt;}
.y26c{bottom:561.333280pt;}
.y9f{bottom:561.333467pt;}
.y2e{bottom:563.253333pt;}
.y5d{bottom:563.253813pt;}
.yf6{bottom:568.373333pt;}
.y1c8{bottom:569.013973pt;}
.y168{bottom:569.653347pt;}
.y18b{bottom:571.573413pt;}
.y120{bottom:572.853333pt;}
.y241{bottom:574.133533pt;}
.y9e{bottom:575.413307pt;}
.y211{bottom:575.413413pt;}
.y144{bottom:575.413600pt;}
.y26b{bottom:576.053333pt;}
.y1ef{bottom:576.053573pt;}
.y5c{bottom:577.973853pt;}
.y2d{bottom:580.533800pt;}
.y1c7{bottom:583.733773pt;}
.y240{bottom:585.013693pt;}
.y210{bottom:586.293573pt;}
.ycc{bottom:586.933547pt;}
.y1ee{bottom:586.933733pt;}
.y4{bottom:588.213333pt;}
.y143{bottom:589.493440pt;}
.y9d{bottom:590.133347pt;}
.y81{bottom:590.133560pt;}
.y2c{bottom:591.413960pt;}
.y5b{bottom:592.053693pt;}
.y26a{bottom:593.333307pt;}
.y23f{bottom:599.733733pt;}
.y20f{bottom:601.013613pt;}
.y11f{bottom:601.653347pt;}
.ycb{bottom:601.653587pt;}
.y142{bottom:604.213480pt;}
.y80{bottom:604.853600pt;}
.y2b{bottom:605.493800pt;}
.y269{bottom:606.133333pt;}
.y5a{bottom:606.773733pt;}
.y167{bottom:607.413293pt;}
.y1a4{bottom:609.973333pt;}
.yf5{bottom:611.893853pt;}
.y1c6{bottom:612.533653pt;}
.yca{bottom:615.093587pt;}
.y20e{bottom:615.733413pt;}
.y23e{bottom:615.733693pt;}
.y18a{bottom:616.373493pt;}
.y1ed{bottom:616.373573pt;}
.y1a3{bottom:620.213293pt;}
.y166{bottom:620.853293pt;}
.y59{bottom:620.853573pt;}
.y2a{bottom:620.853800pt;}
.y9c{bottom:622.773333pt;}
.y268{bottom:623.413493pt;}
.yf4{bottom:625.973693pt;}
.y23d{bottom:628.533733pt;}
.y20d{bottom:629.813493pt;}
.y189{bottom:630.453347pt;}
.yc9{bottom:630.453587pt;}
.y141{bottom:632.373400pt;}
.y7f{bottom:633.653480pt;}
.y3{bottom:634.293373pt;}
.y58{bottom:634.933413pt;}
.y29{bottom:634.933640pt;}
.y165{bottom:635.573333pt;}
.y267{bottom:637.493333pt;}
.yf3{bottom:640.693733pt;}
.y188{bottom:642.613360pt;}
.y23c{bottom:643.253533pt;}
.y20c{bottom:644.533293pt;}
.yc8{bottom:644.533427pt;}
.y11e{bottom:644.533813pt;}
.y57{bottom:649.653453pt;}
.y28{bottom:649.653680pt;}
.y164{bottom:650.933333pt;}
.y266{bottom:652.213333pt;}
.y1c5{bottom:652.213693pt;}
.y1a2{bottom:652.853293pt;}
.yf2{bottom:654.773573pt;}
.y2{bottom:655.413347pt;}
.y23b{bottom:657.333613pt;}
.y11d{bottom:658.613653pt;}
.y20b{bottom:659.253333pt;}
.yc7{bottom:659.253467pt;}
.y1ec{bottom:659.893493pt;}
.y140{bottom:660.533320pt;}
.y9b{bottom:660.533493pt;}
.y56{bottom:663.733293pt;}
.y27{bottom:663.733520pt;}
.y1c4{bottom:666.293533pt;}
.y265{bottom:669.493333pt;}
.yf1{bottom:669.493613pt;}
.y187{bottom:672.053200pt;}
.y23a{bottom:672.053413pt;}
.yc6{bottom:672.053507pt;}
.y11c{bottom:672.693733pt;}
.y1eb{bottom:673.333493pt;}
.y7e{bottom:674.613440pt;}
.y9a{bottom:675.253293pt;}
.y1{bottom:676.533320pt;}
.y1a1{bottom:678.453493pt;}
.y26{bottom:678.453560pt;}
.y55{bottom:679.093293pt;}
.y163{bottom:679.733333pt;}
.y1c3{bottom:681.013573pt;}
.y264{bottom:682.293373pt;}
.yf0{bottom:684.213413pt;}
.y239{bottom:684.853453pt;}
.y20a{bottom:686.773493pt;}
.y11b{bottom:687.413533pt;}
.y1ea{bottom:688.053293pt;}
.yc5{bottom:688.053467pt;}
.y7d{bottom:689.333480pt;}
.y99{bottom:689.973333pt;}
.y25{bottom:692.533400pt;}
.y54{bottom:693.173373pt;}
.y1c2{bottom:695.733613pt;}
.y263{bottom:698.293280pt;}
.yef{bottom:698.293493pt;}
.y238{bottom:700.853413pt;}
.y209{bottom:701.493293pt;}
.y11a{bottom:701.493613pt;}
.y13f{bottom:702.773307pt;}
.y1e9{bottom:702.773333pt;}
.y7c{bottom:704.053280pt;}
.yc4{bottom:704.053427pt;}
.y24{bottom:707.253440pt;}
.y1a0{bottom:707.893333pt;}
.y1c1{bottom:709.813453pt;}
.y53{bottom:710.453373pt;}
.yee{bottom:713.013293pt;}
.y262{bottom:713.013320pt;}
.y237{bottom:714.933493pt;}
.yc3{bottom:716.213507pt;}
.y186{bottom:716.853280pt;}
.y208{bottom:716.853293pt;}
.y119{bottom:716.853613pt;}
.y13e{bottom:717.493347pt;}
.y97{bottom:720.053333pt;}
.y162{bottom:720.053493pt;}
.y23{bottom:721.973480pt;}
.y52{bottom:721.973493pt;}
.y1c0{bottom:724.533493pt;}
.yed{bottom:727.733333pt;}
.y236{bottom:729.653293pt;}
.y185{bottom:730.293280pt;}
.yc2{bottom:730.933307pt;}
.y118{bottom:730.933453pt;}
.y96{bottom:733.493333pt;}
.y7b{bottom:734.773280pt;}
.y161{bottom:734.773293pt;}
.y22{bottom:736.053320pt;}
.y51{bottom:736.693293pt;}
.y1bf{bottom:739.253293pt;}
.y1e8{bottom:739.893440pt;}
.y19f{bottom:743.733307pt;}
.y235{bottom:744.373333pt;}
.y117{bottom:745.013293pt;}
.y184{bottom:745.013320pt;}
.yc1{bottom:745.653347pt;}
.y7a{bottom:747.573320pt;}
.y160{bottom:749.493333pt;}
.y260{bottom:750.133320pt;}
.y13c{bottom:750.133347pt;}
.y206{bottom:753.973440pt;}
.y1e7{bottom:755.893333pt;}
.y116{bottom:759.733333pt;}
.y19e{bottom:760.373333pt;}
.y25f{bottom:763.573320pt;}
.yeb{bottom:764.853347pt;}
.y261{bottom:766.133347pt;}
.y205{bottom:767.413333pt;}
.y207{bottom:769.973333pt;}
.y95{bottom:769.973440pt;}
.y21{bottom:772.533333pt;}
.y4f{bottom:773.813333pt;}
.y1bd{bottom:775.733333pt;}
.yea{bottom:777.653347pt;}
.y182{bottom:780.213307pt;}
.y234{bottom:780.853333pt;}
.yec{bottom:781.493333pt;}
.yc0{bottom:782.133320pt;}
.y13b{bottom:782.773307pt;}
.y79{bottom:783.413333pt;}
.y15f{bottom:785.973320pt;}
.y98{bottom:785.973333pt;}
.y4e{bottom:786.613347pt;}
.y20{bottom:789.173333pt;}
.y50{bottom:789.813333pt;}
.y1be{bottom:792.373333pt;}
.y181{bottom:793.013320pt;}
.y13a{bottom:794.933333pt;}
.y183{bottom:796.853333pt;}
.y115{bottom:796.853440pt;}
.y233{bottom:797.493333pt;}
.y13d{bottom:798.133347pt;}
.ybf{bottom:799.413333pt;}
.y78{bottom:800.693333pt;}
.y15e{bottom:803.253333pt;}
.y114{bottom:814.133347pt;}
.h12{height:36.622396pt;}
.h3{height:36.640625pt;}
.ha{height:41.854167pt;}
.h7{height:41.875000pt;}
.h9{height:44.500000pt;}
.h24{height:47.085938pt;}
.h40{height:47.108948pt;}
.h30{height:47.109322pt;}
.h8{height:47.109375pt;}
.h3f{height:47.109428pt;}
.h3b{height:47.109482pt;}
.h48{height:47.109535pt;}
.h37{height:47.109588pt;}
.h21{height:47.109855pt;}
.h49{height:47.110335pt;}
.h6{height:48.375000pt;}
.h11{height:50.062500pt;}
.h1e{height:52.317655pt;}
.h18{height:52.317708pt;}
.hd{height:52.343750pt;}
.h41{height:52.343910pt;}
.h1c{height:53.748933pt;}
.h4{height:53.750000pt;}
.h25{height:55.624573pt;}
.he{height:55.624947pt;}
.h1d{height:55.625000pt;}
.h35{height:55.625107pt;}
.h31{height:57.548359pt;}
.h2f{height:57.549426pt;}
.h14{height:57.549479pt;}
.h26{height:57.549959pt;}
.h43{height:57.577912pt;}
.h32{height:57.578125pt;}
.h13{height:59.125000pt;}
.h47{height:61.186860pt;}
.h42{height:61.187340pt;}
.h17{height:61.187500pt;}
.h2a{height:61.187553pt;}
.h1b{height:61.187607pt;}
.h36{height:62.812500pt;}
.h5{height:66.749413pt;}
.h2b{height:66.750000pt;}
.h3e{height:66.750160pt;}
.h44{height:66.751173pt;}
.h2{height:69.875000pt;}
.h2c{height:77.875000pt;}
.h38{height:94.561007pt;}
.h39{height:833.920000pt;}
.h3a{height:834.000000pt;}
.h3d{height:841.333333pt;}
.h3c{height:841.600000pt;}
.h34{height:843.333333pt;}
.h33{height:843.520000pt;}
.h45{height:848.640000pt;}
.h46{height:848.666667pt;}
.h20{height:858.000000pt;}
.h1f{height:858.240000pt;}
.hf{height:866.560000pt;}
.h10{height:866.666667pt;}
.h19{height:870.400000pt;}
.h1a{height:870.666667pt;}
.h15{height:871.040000pt;}
.h16{height:871.333333pt;}
.h2e{height:872.000000pt;}
.h2d{height:872.320000pt;}
.hc{height:873.333333pt;}
.hb{height:873.600000pt;}
.h1{height:875.333333pt;}
.h0{height:875.520000pt;}
.h27{height:880.000000pt;}
.h22{height:881.280000pt;}
.h23{height:881.333333pt;}
.h28{height:886.400000pt;}
.h29{height:886.666667pt;}
.w1a{width:567.040000pt;}
.w1b{width:567.333333pt;}
.w9{width:573.333333pt;}
.w8{width:573.440000pt;}
.w4{width:583.680000pt;}
.w5{width:584.000000pt;}
.w1{width:586.000000pt;}
.w0{width:586.240000pt;}
.w19{width:588.666667pt;}
.w18{width:588.800000pt;}
.wd{width:589.333333pt;}
.wc{width:589.440000pt;}
.w3{width:591.333333pt;}
.w2{width:591.360000pt;}
.we{width:593.920000pt;}
.wf{width:594.000000pt;}
.w16{width:595.200000pt;}
.w17{width:595.333333pt;}
.w1e{width:596.480000pt;}
.w1f{width:596.666667pt;}
.w14{width:597.760000pt;}
.w15{width:598.000000pt;}
.w10{width:598.400000pt;}
.w11{width:598.666667pt;}
.w1c{width:599.040000pt;}
.w1d{width:599.333333pt;}
.w13{width:605.333333pt;}
.w12{width:605.440000pt;}
.w6{width:609.280000pt;}
.w7{width:609.333333pt;}
.wb{width:616.666667pt;}
.wa{width:616.960000pt;}
.x0{left:0.000000pt;}
.x3b{left:33.280013pt;}
.x3d{left:34.560080pt;}
.x7{left:39.040000pt;}
.x8{left:40.319000pt;}
.x46{left:42.239560pt;}
.x42{left:43.519987pt;}
.x22{left:44.799680pt;}
.x20{left:46.080133pt;}
.x2c{left:49.920533pt;}
.x2a{left:51.199987pt;}
.x14{left:53.760000pt;}
.x15{left:55.040640pt;}
.x2{left:56.319813pt;}
.x9{left:59.520000pt;}
.x3c{left:62.719987pt;}
.x21{left:64.000000pt;}
.x6{left:70.400267pt;}
.x44{left:72.960267pt;}
.x43{left:74.239987pt;}
.x1d{left:76.160000pt;}
.xc{left:77.440280pt;}
.xa{left:78.719987pt;}
.x2b{left:80.640000pt;}
.x13{left:83.840000pt;}
.x1a{left:85.760440pt;}
.x16{left:87.040000pt;}
.x39{left:88.320013pt;}
.x2d{left:92.160000pt;}
.x5{left:94.080000pt;}
.xe{left:96.000000pt;}
.x23{left:97.920000pt;}
.x40{left:99.199987pt;}
.x32{left:101.120000pt;}
.x12{left:102.400000pt;}
.x27{left:106.239987pt;}
.xd{left:108.160000pt;}
.xf{left:109.440000pt;}
.x31{left:110.719987pt;}
.x1b{left:114.562120pt;}
.x18{left:115.840000pt;}
.x3{left:120.959973pt;}
.x2f{left:122.239987pt;}
.x30{left:123.520000pt;}
.x3f{left:125.440000pt;}
.x1e{left:126.719960pt;}
.x25{left:128.002440pt;}
.x48{left:129.920400pt;}
.x1{left:131.199987pt;}
.x37{left:135.040000pt;}
.x35{left:136.320013pt;}
.x36{left:137.600000pt;}
.x26{left:165.759720pt;}
.x19{left:167.040160pt;}
.x38{left:174.719933pt;}
.xb{left:186.879920pt;}
.x17{left:194.560093pt;}
.x2e{left:201.600000pt;}
.x45{left:203.520107pt;}
.x3e{left:204.799987pt;}
.x24{left:207.359827pt;}
.x47{left:208.640000pt;}
.x34{left:216.319987pt;}
.x1c{left:219.519680pt;}
.x28{left:224.639893pt;}
.x10{left:227.840040pt;}
.x4{left:259.199987pt;}
.x3a{left:472.960000pt;}
.x41{left:483.199987pt;}
.x33{left:486.400120pt;}
.x1f{left:487.679987pt;}
.x29{left:490.880000pt;}
.x11{left:496.000000pt;}
}




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