
    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_4dfa1d26b3261fbe56dcfba7.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_482220675f344b8637113a07.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e8e613952d45605fca68b85c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.063477;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_3dc6f328317a469b10f60778.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6f88fb3f8e0c9eac524258a6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9e24239997484d0b2ab9fe3e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6540f8439b45965043c02722.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.013000;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_cae532f2342a7e886eaa15b7.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_702f312f080dd7f641e12065.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.903320;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_639aec678009a165fbe36410.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_299d6e3605b297119b764e67.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_8f4c1b8b94fd0681d25df092.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.013000;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_c61fbc397c61b8d35754898d.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b9064f00c6040af1ed422f0d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_92f9affa82b4f3f032d284e6.woff2')format("woff");}.fff{font-family:fff;line-height:0.903320;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_595cbfd2398bbcbe4b76569a.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_fdba19d0f6e27a96ebaf303e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_deb396f92aedb6cc78b8a98c.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.063477;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_16cbe794fb5e29cd4ff24d5f.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_ab5738f08496b04e0e1916c2.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_0982f81e9d4feb333559f315.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.888184;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_92791422cd164e3b6ed63a14.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_99a4ddbda14696091160db78.woff2')format("woff");}.ff17{font-family:ff17;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;}
.m2b{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3f{transform:matrix(0.000000,-0.250103,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250103,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250103,0.250000,0.000000,0,0);}
.m44{transform:matrix(0.000000,-0.250558,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250558,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250558,0.250000,0.000000,0,0);}
.m32{transform:matrix(0.000000,-0.250775,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250775,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250775,0.250000,0.000000,0,0);}
.m3a{transform:matrix(0.000000,-0.251439,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251439,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251439,0.250000,0.000000,0,0);}
.m37{transform:matrix(0.000000,-0.251480,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251480,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251480,0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,-0.254519,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.254519,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.254519,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.210507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210507,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.211534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211534,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.239556,0.000000,-0.079852,0.236904,0,0);-ms-transform:matrix(0.239556,0.000000,-0.079852,0.236904,0,0);-webkit-transform:matrix(0.239556,0.000000,-0.079852,0.236904,0,0);}
.m12{transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243480,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245561,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245563,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248053,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248529,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249228,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249444,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249769,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249771,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249833,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249862,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249924,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250190,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250474,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251762,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251764,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252122,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252127,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252160,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252387,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253073,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253497,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253791,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.254076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254076,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254167,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254237,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.254552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254552,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254582,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254685,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.256103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256103,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.256751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256751,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.339363,0.000000,-0.113122,0.222943,0,0);-ms-transform:matrix(0.339363,0.000000,-0.113122,0.222943,0,0);-webkit-transform:matrix(0.339363,0.000000,-0.113122,0.222943,0,0);}
.m4{transform:matrix(0.341993,0.000000,-0.113997,0.222496,0,0);-ms-transform:matrix(0.341993,0.000000,-0.113997,0.222496,0,0);-webkit-transform:matrix(0.341993,0.000000,-0.113997,0.222496,0,0);}
.me{transform:matrix(0.377682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377682,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.378087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378087,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.379932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379932,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.380964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380964,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.381371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381371,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.381782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381782,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.383644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383644,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.384688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384688,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-139.603800px;}
.v3{vertical-align:-83.229424px;}
.vf{vertical-align:-71.020800px;}
.v6{vertical-align:-51.621000px;}
.vb{vertical-align:-45.756000px;}
.v7{vertical-align:-36.010200px;}
.v4{vertical-align:-32.431200px;}
.vc{vertical-align:-28.076400px;}
.v1{vertical-align:-23.760000px;}
.va{vertical-align:-21.977400px;}
.v5{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:11.329272px;}
.v9{vertical-align:29.086200px;}
.vd{vertical-align:32.100000px;}
.v2{vertical-align:68.561053px;}
.ls43{letter-spacing:-5.431482px;}
.ls53{letter-spacing:-3.505621px;}
.ls57{letter-spacing:-3.043129px;}
.ls4a{letter-spacing:-1.993937px;}
.ls4c{letter-spacing:-1.958744px;}
.ls44{letter-spacing:-1.689794px;}
.ls15{letter-spacing:-1.512324px;}
.ls45{letter-spacing:-1.206996px;}
.ls52{letter-spacing:-1.182619px;}
.ls56{letter-spacing:-1.026598px;}
.ls14{letter-spacing:-1.008216px;}
.ls75{letter-spacing:-0.835920px;}
.ls6a{letter-spacing:-0.755285px;}
.ls19{letter-spacing:-0.488947px;}
.ls42{letter-spacing:-0.362099px;}
.ls1b{letter-spacing:-0.360720px;}
.ls40{letter-spacing:-0.358226px;}
.lsb{letter-spacing:-0.336000px;}
.ls6{letter-spacing:-0.335520px;}
.lsd{letter-spacing:-0.288000px;}
.ls5a{letter-spacing:-0.264000px;}
.ls5b{letter-spacing:-0.263520px;}
.ls68{letter-spacing:-0.253020px;}
.ls11{letter-spacing:-0.252000px;}
.ls27{letter-spacing:-0.239040px;}
.ls8{letter-spacing:-0.168000px;}
.ls4{letter-spacing:-0.167760px;}
.ls59{letter-spacing:-0.132000px;}
.ls3e{letter-spacing:-0.131760px;}
.ls26{letter-spacing:-0.119520px;}
.ls73{letter-spacing:-0.117684px;}
.ls18{letter-spacing:-0.110158px;}
.ls2e{letter-spacing:-0.109120px;}
.ls6e{letter-spacing:-0.100872px;}
.ls69{letter-spacing:-0.094411px;}
.ls6f{letter-spacing:-0.084060px;}
.ls6b{letter-spacing:-0.084000px;}
.ls3a{letter-spacing:-0.067248px;}
.ls6c{letter-spacing:-0.066000px;}
.ls77{letter-spacing:-0.060567px;}
.ls72{letter-spacing:-0.054000px;}
.ls6d{letter-spacing:-0.050436px;}
.ls7c{letter-spacing:-0.021600px;}
.ls3{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.004595px;}
.ls39{letter-spacing:0.010444px;}
.ls79{letter-spacing:0.028800px;}
.ls7a{letter-spacing:0.057600px;}
.ls3b{letter-spacing:0.064329px;}
.ls7b{letter-spacing:0.086400px;}
.ls48{letter-spacing:0.115673px;}
.ls51{letter-spacing:0.119009px;}
.ls1a{letter-spacing:0.120240px;}
.ls58{letter-spacing:0.131520px;}
.ls1d{letter-spacing:0.131760px;}
.ls60{letter-spacing:0.132000px;}
.ls55{letter-spacing:0.143982px;}
.ls41{letter-spacing:0.153088px;}
.ls5e{letter-spacing:0.153487px;}
.lsf{letter-spacing:0.167760px;}
.lsc{letter-spacing:0.168000px;}
.ls3d{letter-spacing:0.171288px;}
.ls3c{letter-spacing:0.172325px;}
.ls67{letter-spacing:0.188821px;}
.ls2b{letter-spacing:0.201312px;}
.lse{letter-spacing:0.216000px;}
.ls4d{letter-spacing:0.218088px;}
.ls2a{letter-spacing:0.234864px;}
.ls16{letter-spacing:0.240480px;}
.ls24{letter-spacing:0.249840px;}
.ls32{letter-spacing:0.250618px;}
.ls31{letter-spacing:0.253828px;}
.ls36{letter-spacing:0.283212px;}
.ls47{letter-spacing:0.285192px;}
.ls23{letter-spacing:0.288000px;}
.ls5c{letter-spacing:0.299301px;}
.ls12{letter-spacing:0.306437px;}
.ls10{letter-spacing:0.335400px;}
.ls0{letter-spacing:0.335520px;}
.ls22{letter-spacing:0.360000px;}
.ls2f{letter-spacing:0.361440px;}
.ls30{letter-spacing:0.374400px;}
.ls1e{letter-spacing:0.395280px;}
.ls74{letter-spacing:0.459360px;}
.ls33{letter-spacing:0.481175px;}
.ls2{letter-spacing:0.503280px;}
.ls7{letter-spacing:0.504000px;}
.ls34{letter-spacing:0.520056px;}
.ls1{letter-spacing:0.553608px;}
.ls9{letter-spacing:0.570384px;}
.ls35{letter-spacing:0.585840px;}
.ls66{letter-spacing:0.586007px;}
.ls37{letter-spacing:0.635314px;}
.ls65{letter-spacing:0.644640px;}
.ls25{letter-spacing:0.654264px;}
.ls3f{letter-spacing:0.658800px;}
.ls4b{letter-spacing:0.750157px;}
.ls49{letter-spacing:0.763636px;}
.ls29{letter-spacing:0.777360px;}
.ls5{letter-spacing:0.807480px;}
.ls1c{letter-spacing:0.815760px;}
.ls5d{letter-spacing:0.844180px;}
.ls28{letter-spacing:0.929178px;}
.lsa{letter-spacing:1.006560px;}
.ls13{letter-spacing:1.378966px;}
.ls46{letter-spacing:3.790282px;}
.ls70{letter-spacing:5.379840px;}
.ls63{letter-spacing:6.127219px;}
.ls62{letter-spacing:8.700000px;}
.ls5f{letter-spacing:13.602000px;}
.ls71{letter-spacing:20.016000px;}
.ls64{letter-spacing:113.313600px;}
.ls50{letter-spacing:140.788900px;}
.ls61{letter-spacing:179.460000px;}
.ls17{letter-spacing:221.112111px;}
.ls1f{letter-spacing:256.645791px;}
.ls76{letter-spacing:310.031391px;}
.ls20{letter-spacing:384.705882px;}
.ls4f{letter-spacing:494.261066px;}
.ls78{letter-spacing:821.972304px;}
.ls21{letter-spacing:874.494593px;}
.ls2d{letter-spacing:1040.721565px;}
.ls54{letter-spacing:1277.570582px;}
.ls2c{letter-spacing:1556.855017px;}
.ls4e{letter-spacing:1618.295293px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,0,255),0 0.015em rgb(0,0,255),0.015em 0 rgb(0,0,255),0 -0.015em  rgb(0,0,255);}
.sc3{text-shadow:-0.015em 0 rgb(31,73,125),0 0.015em rgb(31,73,125),0.015em 0 rgb(31,73,125),0 -0.015em  rgb(31,73,125);}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(255,0,0),0 0.015em rgb(255,0,0),0.015em 0 rgb(255,0,0),0 -0.015em  rgb(255,0,0);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,0,255);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(31,73,125);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws69{word-spacing:-126.913800px;}
.ws6b{word-spacing:-125.308800px;}
.ws1b{word-spacing:-95.455200px;}
.ws89{word-spacing:-76.543800px;}
.wsad{word-spacing:-71.991000px;}
.wsa2{word-spacing:-59.504400px;}
.ws97{word-spacing:-57.836400px;}
.ws16{word-spacing:-42.946560px;}
.wse{word-spacing:-42.444000px;}
.ws4{word-spacing:-42.443280px;}
.ws41{word-spacing:-42.275520px;}
.ws17{word-spacing:-42.108000px;}
.ws33{word-spacing:-42.107760px;}
.ws19{word-spacing:-41.940000px;}
.ws10f{word-spacing:-41.912316px;}
.ws0{word-spacing:-41.772240px;}
.ws18{word-spacing:-41.772000px;}
.ws6{word-spacing:-41.604480px;}
.ws1a{word-spacing:-41.604000px;}
.ws37{word-spacing:-41.000784px;}
.ws38{word-spacing:-40.496676px;}
.ws3a{word-spacing:-39.683566px;}
.ws39{word-spacing:-38.611037px;}
.ws35{word-spacing:-36.000000px;}
.ws117{word-spacing:-35.712000px;}
.ws85{word-spacing:-33.598800px;}
.ws52{word-spacing:-33.335280px;}
.wse1{word-spacing:-33.072000px;}
.wsc7{word-spacing:-33.071760px;}
.ws51{word-spacing:-32.940000px;}
.ws84{word-spacing:-32.808240px;}
.wsc8{word-spacing:-32.808000px;}
.ws68{word-spacing:-30.335249px;}
.ws67{word-spacing:-30.226129px;}
.ws53{word-spacing:-27.047287px;}
.ws42{word-spacing:-27.000000px;}
.ws113{word-spacing:-26.988740px;}
.wsff{word-spacing:-26.434968px;}
.wsfe{word-spacing:-26.246147px;}
.ws86{word-spacing:-24.896735px;}
.ws88{word-spacing:-24.538508px;}
.wsac{word-spacing:-23.415718px;}
.ws54{word-spacing:-23.220000px;}
.ws115{word-spacing:-19.356640px;}
.wsa3{word-spacing:-19.354304px;}
.ws8f{word-spacing:-18.831082px;}
.ws96{word-spacing:-18.811871px;}
.wsfd{word-spacing:-17.584890px;}
.wsb5{word-spacing:-16.940437px;}
.ws116{word-spacing:-16.777059px;}
.ws87{word-spacing:-16.597768px;}
.ws8d{word-spacing:-15.087450px;}
.ws5b{word-spacing:-14.820480px;}
.ws4b{word-spacing:-14.790653px;}
.ws8c{word-spacing:-14.725351px;}
.ws5c{word-spacing:-14.700960px;}
.ws5f{word-spacing:-11.912550px;}
.ws99{word-spacing:-11.369686px;}
.ws8b{word-spacing:-11.315550px;}
.ws9d{word-spacing:-11.169007px;}
.wsa6{word-spacing:-10.559100px;}
.ws7f{word-spacing:-9.791400px;}
.ws9b{word-spacing:-9.790200px;}
.ws8e{word-spacing:-9.655968px;}
.ws9f{word-spacing:-9.617400px;}
.wsa7{word-spacing:-9.376481px;}
.wsaf{word-spacing:-9.166050px;}
.ws7d{word-spacing:-8.615400px;}
.ws9a{word-spacing:-8.612113px;}
.ws9e{word-spacing:-8.460106px;}
.wsb0{word-spacing:-8.139452px;}
.wsa8{word-spacing:-7.053479px;}
.wsb1{word-spacing:-6.122921px;}
.ws61{word-spacing:-1.909977px;}
.wsa1{word-spacing:-1.569695px;}
.ws23{word-spacing:-1.476000px;}
.ws65{word-spacing:-1.374000px;}
.ws70{word-spacing:-1.356000px;}
.wsa{word-spacing:-1.344000px;}
.wsf9{word-spacing:-1.338000px;}
.ws8{word-spacing:-1.326000px;}
.ws77{word-spacing:-0.870000px;}
.ws2e{word-spacing:-0.858000px;}
.wsc1{word-spacing:-0.844180px;}
.ws24{word-spacing:-0.840000px;}
.ws66{word-spacing:-0.804000px;}
.ws64{word-spacing:-0.798000px;}
.ws108{word-spacing:-0.792000px;}
.ws78{word-spacing:-0.774000px;}
.ws9{word-spacing:-0.756000px;}
.ws73{word-spacing:-0.690000px;}
.ws7{word-spacing:-0.672000px;}
.ws5{word-spacing:-0.671040px;}
.ws106{word-spacing:-0.654000px;}
.ws26{word-spacing:-0.648000px;}
.ws13{word-spacing:-0.636000px;}
.ws63{word-spacing:-0.618000px;}
.ws4f{word-spacing:-0.601200px;}
.ws91{word-spacing:-0.527040px;}
.ws2c{word-spacing:-0.504000px;}
.ws62{word-spacing:-0.503280px;}
.ws4c{word-spacing:-0.335520px;}
.wsee{word-spacing:-0.318000px;}
.ws55{word-spacing:-0.288000px;}
.ws71{word-spacing:-0.250618px;}
.ws107{word-spacing:-0.234000px;}
.ws34{word-spacing:-0.216000px;}
.ws6f{word-spacing:-0.204000px;}
.ws10e{word-spacing:-0.168120px;}
.ws2f{word-spacing:-0.168000px;}
.ws4d{word-spacing:-0.167760px;}
.wsc2{word-spacing:-0.153487px;}
.ws92{word-spacing:-0.153088px;}
.ws14{word-spacing:-0.150000px;}
.wsb2{word-spacing:-0.143982px;}
.ws12{word-spacing:-0.138000px;}
.ws25{word-spacing:-0.132000px;}
.wsa9{word-spacing:-0.119009px;}
.wsa0{word-spacing:-0.115673px;}
.ws120{word-spacing:-0.086400px;}
.ws11f{word-spacing:-0.057600px;}
.ws105{word-spacing:-0.036000px;}
.ws11e{word-spacing:-0.028800px;}
.ws30{word-spacing:-0.018000px;}
.ws80{word-spacing:-0.016812px;}
.ws83{word-spacing:-0.010444px;}
.ws82{word-spacing:-0.004595px;}
.ws1{word-spacing:0.000000px;}
.ws10d{word-spacing:0.016812px;}
.ws76{word-spacing:0.030000px;}
.ws11b{word-spacing:0.033624px;}
.ws6d{word-spacing:0.036000px;}
.ws6c{word-spacing:0.048000px;}
.ws81{word-spacing:0.050436px;}
.ws111{word-spacing:0.054000px;}
.ws15{word-spacing:0.066000px;}
.ws112{word-spacing:0.067248px;}
.ws10b{word-spacing:0.084060px;}
.ws10a{word-spacing:0.100872px;}
.ws11d{word-spacing:0.117684px;}
.wsd2{word-spacing:0.120000px;}
.ws4e{word-spacing:0.120240px;}
.ws121{word-spacing:0.129600px;}
.wsbf{word-spacing:0.131760px;}
.wsb7{word-spacing:0.132000px;}
.ws109{word-spacing:0.150000px;}
.ws10c{word-spacing:0.151308px;}
.ws110{word-spacing:0.162000px;}
.ws2{word-spacing:0.167760px;}
.ws20{word-spacing:0.168000px;}
.ws11c{word-spacing:0.168120px;}
.ws1e{word-spacing:0.174000px;}
.ws3b{word-spacing:0.179280px;}
.ws101{word-spacing:0.188821px;}
.ws32{word-spacing:0.192240px;}
.wsef{word-spacing:0.222000px;}
.wsed{word-spacing:0.240000px;}
.ws90{word-spacing:0.263520px;}
.wsb6{word-spacing:0.264000px;}
.ws102{word-spacing:0.283232px;}
.ws2d{word-spacing:0.288000px;}
.ws75{word-spacing:0.335520px;}
.ws1c{word-spacing:0.336000px;}
.wsb8{word-spacing:0.342000px;}
.wsd7{word-spacing:0.354000px;}
.ws50{word-spacing:0.360720px;}
.ws36{word-spacing:0.378000px;}
.wsc0{word-spacing:0.395280px;}
.ws40{word-spacing:0.420000px;}
.ws72{word-spacing:0.432000px;}
.wsc6{word-spacing:0.468000px;}
.wsc{word-spacing:0.486000px;}
.ws6e{word-spacing:0.504000px;}
.ws1f{word-spacing:0.534000px;}
.ws79{word-spacing:0.552000px;}
.ws74{word-spacing:0.558000px;}
.wsbe{word-spacing:0.564000px;}
.wsc5{word-spacing:0.570000px;}
.wsbd{word-spacing:0.582000px;}
.ws2a{word-spacing:0.588000px;}
.ws27{word-spacing:0.600000px;}
.ws7a{word-spacing:0.606000px;}
.ws100{word-spacing:0.632550px;}
.wsbc{word-spacing:0.648000px;}
.ws2b{word-spacing:0.660000px;}
.wsfa{word-spacing:0.666000px;}
.ws3{word-spacing:0.671040px;}
.wsb{word-spacing:0.672000px;}
.wsfc{word-spacing:0.678000px;}
.ws29{word-spacing:0.690000px;}
.wsfb{word-spacing:0.696000px;}
.ws28{word-spacing:0.702000px;}
.ws57{word-spacing:0.714000px;}
.wsc4{word-spacing:0.720000px;}
.ws3c{word-spacing:0.732000px;}
.ws3d{word-spacing:0.738000px;}
.wsf8{word-spacing:0.750000px;}
.ws103{word-spacing:0.755285px;}
.wsdd{word-spacing:0.792000px;}
.wsc3{word-spacing:0.822000px;}
.ws114{word-spacing:0.835920px;}
.ws60{word-spacing:0.838800px;}
.ws59{word-spacing:0.858000px;}
.ws56{word-spacing:0.864000px;}
.ws22{word-spacing:0.870000px;}
.wsd3{word-spacing:0.894000px;}
.ws5a{word-spacing:0.900000px;}
.ws119{word-spacing:0.996000px;}
.ws1d{word-spacing:1.008000px;}
.ws21{word-spacing:1.026000px;}
.wsb4{word-spacing:1.026598px;}
.wsd5{word-spacing:1.038000px;}
.wsd9{word-spacing:1.054080px;}
.wsba{word-spacing:1.056000px;}
.wsd8{word-spacing:1.098000px;}
.wsd6{word-spacing:1.116000px;}
.wsd4{word-spacing:1.134000px;}
.ws11{word-spacing:1.140000px;}
.wsd{word-spacing:1.158000px;}
.wsf{word-spacing:1.176000px;}
.wsab{word-spacing:1.182619px;}
.ws104{word-spacing:1.194000px;}
.ws11a{word-spacing:1.200000px;}
.ws3f{word-spacing:1.206000px;}
.ws3e{word-spacing:1.254000px;}
.ws118{word-spacing:1.260000px;}
.ws10{word-spacing:1.272000px;}
.wsbb{word-spacing:1.368000px;}
.ws31{word-spacing:1.410000px;}
.wsdc{word-spacing:1.452000px;}
.wsb9{word-spacing:1.536000px;}
.ws58{word-spacing:1.584000px;}
.wsca{word-spacing:2.898000px;}
.wsb3{word-spacing:3.043129px;}
.wscb{word-spacing:3.162000px;}
.wsaa{word-spacing:3.505621px;}
.wse2{word-spacing:3.690000px;}
.ws95{word-spacing:5.009033px;}
.wsda{word-spacing:5.136000px;}
.ws94{word-spacing:5.491832px;}
.wse3{word-spacing:5.796000px;}
.wse4{word-spacing:6.060000px;}
.wsce{word-spacing:7.248000px;}
.wscc{word-spacing:8.040000px;}
.ws93{word-spacing:9.233519px;}
.wsd1{word-spacing:10.806000px;}
.wsd0{word-spacing:11.070000px;}
.wsec{word-spacing:11.940000px;}
.wseb{word-spacing:11.952000px;}
.wscf{word-spacing:12.252000px;}
.wse8{word-spacing:12.480000px;}
.wsea{word-spacing:12.492000px;}
.wse9{word-spacing:12.738000px;}
.wsdb{word-spacing:15.414000px;}
.wsc9{word-spacing:16.602000px;}
.wsde{word-spacing:19.764000px;}
.wscd{word-spacing:27.012000px;}
.wsdf{word-spacing:29.118960px;}
.ws48{word-spacing:32.846286px;}
.ws45{word-spacing:33.488093px;}
.wsf1{word-spacing:34.914000px;}
.wsf3{word-spacing:35.142000px;}
.wsf7{word-spacing:35.220000px;}
.wsf0{word-spacing:35.406000px;}
.wsf6{word-spacing:35.418000px;}
.wsf4{word-spacing:35.586000px;}
.wsf5{word-spacing:35.640000px;}
.wsf2{word-spacing:36.078000px;}
.ws4a{word-spacing:53.784027px;}
.ws46{word-spacing:54.528309px;}
.wse0{word-spacing:57.710880px;}
.wse6{word-spacing:62.718000px;}
.wse5{word-spacing:62.982000px;}
.ws49{word-spacing:124.224804px;}
.ws5e{word-spacing:146.924911px;}
.ws47{word-spacing:173.676756px;}
.ws43{word-spacing:174.025263px;}
.wse7{word-spacing:179.460000px;}
.ws7e{word-spacing:193.105800px;}
.ws7c{word-spacing:208.873800px;}
.ws5d{word-spacing:210.456628px;}
.ws44{word-spacing:219.343046px;}
.ws9c{word-spacing:262.862777px;}
.ws98{word-spacing:267.585746px;}
.ws8a{word-spacing:275.345652px;}
.wsae{word-spacing:351.363045px;}
.wsa5{word-spacing:496.279801px;}
.wsa4{word-spacing:496.280401px;}
.ws6a{word-spacing:524.915459px;}
.ws7b{word-spacing:699.117799px;}
._8{margin-left:-1079.956681px;}
._1a{margin-left:-125.949647px;}
._1c{margin-left:-109.357287px;}
._17{margin-left:-91.362146px;}
._11{margin-left:-82.965613px;}
._19{margin-left:-77.419321px;}
._d{margin-left:-71.908042px;}
._1b{margin-left:-67.205479px;}
._a{margin-left:-63.271498px;}
._e{margin-left:-52.325242px;}
._b{margin-left:-45.661620px;}
._12{margin-left:-4.884628px;}
._6{margin-left:-3.592822px;}
._0{margin-left:-1.677600px;}
._1{width:1.191096px;}
._7{width:2.298312px;}
._10{width:3.770341px;}
._13{width:5.239687px;}
._14{width:6.276379px;}
._15{width:8.061801px;}
._21{width:9.338161px;}
._22{width:11.958011px;}
._1d{width:13.608041px;}
._23{width:15.996059px;}
._1f{width:37.000560px;}
._20{width:38.011330px;}
._1e{width:62.532720px;}
._24{width:136.176327px;}
._f{width:169.253064px;}
._c{width:206.643000px;}
._9{width:220.803000px;}
._2{width:224.121843px;}
._4{width:226.341504px;}
._3{width:238.253138px;}
._5{width:246.195805px;}
._18{width:275.711623px;}
._16{width:280.665454px;}
.fca{color:rgb(0,255,0);}
.fcb{color:rgb(31,73,124);}
.fc9{color:rgb(31,73,124);}
.fc8{color:rgb(255,85,0);}
.fc4{color:rgb(77,77,191);}
.fc3{color:rgb(0,0,0);}
.fc7{color:rgb(75,172,198);}
.fc5{color:rgb(49,132,155);}
.fc2{color:rgb(0,0,255);}
.fc6{color:rgb(31,73,125);}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(255,0,0);}
.fs2e{font-size:34.461600px;}
.fs4d{font-size:36.582600px;}
.fs4c{font-size:36.664200px;}
.fs41{font-size:38.249400px;}
.fs3f{font-size:38.469600px;}
.fs3b{font-size:38.750400px;}
.fs3e{font-size:38.930400px;}
.fs3c{font-size:39.160800px;}
.fs30{font-size:39.165600px;}
.fs45{font-size:39.867600px;}
.fs40{font-size:41.675400px;}
.fs47{font-size:42.219000px;}
.fs46{font-size:42.236400px;}
.fs3d{font-size:42.424200px;}
.fs39{font-size:45.112200px;}
.fs35{font-size:45.262200px;}
.fs2f{font-size:45.949200px;}
.fs43{font-size:46.413000px;}
.fs58{font-size:46.419000px;}
.fs1c{font-size:46.804200px;}
.fs1a{font-size:47.650200px;}
.fs4b{font-size:48.234000px;}
.fs2b{font-size:51.283200px;}
.fs34{font-size:51.284400px;}
.fs51{font-size:51.418200px;}
.fs1b{font-size:51.621000px;}
.fs31{font-size:52.219800px;}
.fsc{font-size:52.324200px;}
.fs49{font-size:56.152800px;}
.fs3a{font-size:57.836400px;}
.fs44{font-size:59.504400px;}
.fs2d{font-size:59.703600px;}
.fs33{font-size:59.704200px;}
.fs6{font-size:59.760000px;}
.fs4f{font-size:59.860200px;}
.fs37{font-size:60.163200px;}
.fs36{font-size:60.349800px;}
.fs59{font-size:60.567000px;}
.fs12{font-size:61.118400px;}
.fs53{font-size:63.255000px;}
.fs17{font-size:63.818400px;}
.fs56{font-size:64.721400px;}
.fs15{font-size:64.861800px;}
.fs21{font-size:64.919400px;}
.fs38{font-size:67.668600px;}
.fs42{font-size:69.619800px;}
.fs57{font-size:69.628200px;}
.fs4a{font-size:71.991000px;}
.fs1f{font-size:73.110000px;}
.fs2a{font-size:76.543800px;}
.fs54{font-size:76.552200px;}
.fs50{font-size:76.743600px;}
.fs26{font-size:83.956800px;}
.fs48{font-size:84.229200px;}
.fs23{font-size:85.032000px;}
.fs2c{font-size:89.556000px;}
.fs32{font-size:89.556600px;}
.fs4e{font-size:89.790000px;}
.fs8{font-size:91.102800px;}
.fs18{font-size:92.880000px;}
.fsd{font-size:93.021000px;}
.fs52{font-size:94.410600px;}
.fs16{font-size:95.727000px;}
.fs20{font-size:96.895200px;}
.fs19{font-size:96.971400px;}
.fs55{font-size:97.081800px;}
.fs14{font-size:97.292400px;}
.fs5b{font-size:97.774800px;}
.fsf{font-size:104.310364px;}
.fsb{font-size:104.519677px;}
.fsa{font-size:108.000000px;}
.fs10{font-size:108.654600px;}
.fs1e{font-size:109.119600px;}
.fse{font-size:110.158200px;}
.fs29{font-size:113.047200px;}
.fs11{font-size:114.660785px;}
.fs1d{font-size:119.794200px;}
.fs9{font-size:120.240000px;}
.fs25{font-size:125.308800px;}
.fs4{font-size:126.000000px;}
.fs22{font-size:126.913800px;}
.fs13{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.fs27{font-size:146.611200px;}
.fs5a{font-size:146.662800px;}
.fs24{font-size:148.488600px;}
.fs7{font-size:153.218400px;}
.fs0{font-size:167.760000px;}
.fs5{font-size:168.036000px;}
.fs28{font-size:168.120000px;}
.fs2{font-size:192.240000px;}
.fs3{font-size:216.000000px;}
.fs5c{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:2.160000px;}
.y7f{bottom:4.669050px;}
.y61{bottom:6.660000px;}
.y23a{bottom:9.042750px;}
.y200{bottom:9.677850px;}
.y202{bottom:9.678150px;}
.yc2{bottom:9.928200px;}
.y22a{bottom:11.440800px;}
.y7e{bottom:11.459850px;}
.y82{bottom:11.473045px;}
.y7c{bottom:11.476708px;}
.y57{bottom:14.371650px;}
.y163{bottom:15.281100px;}
.y155{bottom:15.437400px;}
.y1ff{bottom:17.702700px;}
.y201{bottom:17.703000px;}
.y12{bottom:24.120000px;}
.y162{bottom:27.302850px;}
.y181{bottom:27.644745px;}
.y154{bottom:27.675150px;}
.y13a{bottom:29.474081px;}
.y19f{bottom:31.140300px;}
.y7b{bottom:32.256900px;}
.y7d{bottom:32.257050px;}
.ydd{bottom:35.504400px;}
.yba{bottom:36.731250px;}
.y165{bottom:39.324750px;}
.y157{bottom:39.912900px;}
.y95{bottom:40.740450px;}
.y80{bottom:42.608297px;}
.y19e{bottom:43.361550px;}
.ydc{bottom:43.740450px;}
.ybb{bottom:45.665663px;}
.y1b2{bottom:46.621950px;}
.y81{bottom:49.393500px;}
.yd9{bottom:50.193900px;}
.yd8{bottom:50.194800px;}
.y178{bottom:51.397950px;}
.y15b{bottom:52.949400px;}
.y16b{bottom:53.553900px;}
.y14c{bottom:53.782200px;}
.y1b1{bottom:54.104550px;}
.yb6{bottom:54.908850px;}
.y19d{bottom:55.582950px;}
.y5e{bottom:59.010000px;}
.y179{bottom:59.317125px;}
.y16a{bottom:59.355450px;}
.y175{bottom:59.358300px;}
.y176{bottom:59.359350px;}
.y130{bottom:59.649000px;}
.y15c{bottom:60.162450px;}
.y14d{bottom:61.125000px;}
.ya6{bottom:63.900000px;}
.y1bb{bottom:64.080000px;}
.yd0{bottom:64.489500px;}
.y18{bottom:65.700000px;}
.y232{bottom:66.056040px;}
.y1c6{bottom:66.600000px;}
.y5d{bottom:67.292100px;}
.y19c{bottom:67.804350px;}
.ycb{bottom:67.832400px;}
.y91{bottom:67.839300px;}
.y131{bottom:68.135663px;}
.y11f{bottom:69.846450px;}
.y12f{bottom:70.200000px;}
.y9a{bottom:70.568250px;}
.y23c{bottom:70.666500px;}
.yed{bottom:71.623800px;}
.y18a{bottom:71.809650px;}
.y193{bottom:71.811150px;}
.y194{bottom:71.811750px;}
.y14{bottom:72.883800px;}
.y248{bottom:73.068000px;}
.y140{bottom:74.753400px;}
.y143{bottom:74.753700px;}
.y149{bottom:74.753850px;}
.y14a{bottom:74.754000px;}
.ya0{bottom:75.477300px;}
.ydb{bottom:77.220000px;}
.yeb{bottom:77.378250px;}
.y99{bottom:78.545550px;}
.y26{bottom:78.858000px;}
.y220{bottom:80.379630px;}
.y177{bottom:83.265000px;}
.y9f{bottom:83.454600px;}
.y1a0{bottom:84.605870px;}
.y195{bottom:84.841500px;}
.y14b{bottom:84.960000px;}
.y15a{bottom:87.541500px;}
.y139{bottom:87.937950px;}
.yb1{bottom:90.354600px;}
.y12e{bottom:91.653900px;}
.y122{bottom:91.660350px;}
.yb8{bottom:93.969000px;}
.y22b{bottom:94.365971px;}
.y9c{bottom:94.704600px;}
.y14e{bottom:97.022400px;}
.y12d{bottom:98.925600px;}
.y12c{bottom:98.925900px;}
.y121{bottom:98.932050px;}
.y120{bottom:98.932350px;}
.y15d{bottom:102.642506px;}
.y9b{bottom:102.681900px;}
.y196{bottom:105.232200px;}
.ya5{bottom:105.300000px;}
.y138{bottom:106.797300px;}
.y1c0{bottom:107.652000px;}
.ybc{bottom:109.199100px;}
.y197{bottom:112.106738px;}
.y58{bottom:112.320000px;}
.ycf{bottom:112.720500px;}
.y20c{bottom:113.410800px;}
.y56{bottom:114.390000px;}
.y1c5{bottom:114.480000px;}
.y1b6{bottom:114.540300px;}
.y23b{bottom:116.070150px;}
.y90{bottom:116.280000px;}
.y5c{bottom:120.107989px;}
.y1ba{bottom:120.240000px;}
.y11{bottom:121.140000px;}
.y247{bottom:121.299000px;}
.y1b5{bottom:122.022750px;}
.y231{bottom:123.304200px;}
.y17a{bottom:124.432050px;}
.y239{bottom:125.341500px;}
.y137{bottom:125.656500px;}
.y1d5{bottom:126.136800px;}
.yde{bottom:126.343500px;}
.y25{bottom:127.089000px;}
.yec{bottom:128.871900px;}
.y1c4{bottom:132.300000px;}
.y14f{bottom:132.919800px;}
.y132{bottom:134.143200px;}
.y21f{bottom:137.624490px;}
.y83{bottom:138.240000px;}
.y3f{bottom:138.258000px;}
.yb0{bottom:138.585600px;}
.y118{bottom:140.705124px;}
.yb7{bottom:142.200000px;}
.y9e{bottom:142.977300px;}
.y12b{bottom:144.280950px;}
.y136{bottom:144.515850px;}
.y15e{bottom:145.122562px;}
.y13{bottom:145.440000px;}
.y5a{bottom:146.790000px;}
.ya2{bottom:147.886350px;}
.y78{bottom:150.477744px;}
.y9d{bottom:150.954600px;}
.y4a{bottom:151.380900px;}
.y1c3{bottom:154.080000px;}
.y25c{bottom:154.560000px;}
.ya1{bottom:155.863650px;}
.y76{bottom:156.284101px;}
.y184{bottom:157.870425px;}
.yf7{bottom:158.578560px;}
.y1b0{bottom:160.010850px;}
.y1bf{bottom:160.476000px;}
.y1b9{bottom:161.640000px;}
.y20b{bottom:161.641800px;}
.y70{bottom:162.286794px;}
.y1f7{bottom:162.840000px;}
.y94{bottom:163.395450px;}
.y1d4{bottom:164.116500px;}
.y254{bottom:165.709785px;}
.y166{bottom:165.954300px;}
.yc6{bottom:166.316700px;}
.y142{bottom:166.423800px;}
.y238{bottom:166.759800px;}
.y10e{bottom:166.800000px;}
.y1af{bottom:167.301600px;}
.y6e{bottom:168.093301px;}
.y145{bottom:168.159150px;}
.y147{bottom:168.159300px;}
.y74{bottom:168.282750px;}
.y1e2{bottom:168.310800px;}
.y198{bottom:168.630750px;}
.y150{bottom:168.817200px;}
.y72{bottom:169.917000px;}
.y71{bottom:169.917150px;}
.yce{bottom:171.068400px;}
.y141{bottom:171.195300px;}
.y16d{bottom:171.223500px;}
.y174{bottom:171.224850px;}
.ybd{bottom:172.732650px;}
.yc3{bottom:172.732800px;}
.y158{bottom:172.896600px;}
.y144{bottom:172.930650px;}
.y148{bottom:172.930800px;}
.y146{bottom:172.930950px;}
.y16f{bottom:173.009100px;}
.y171{bottom:173.009550px;}
.y10f{bottom:174.094593px;}
.y73{bottom:174.096450px;}
.y79{bottom:174.096750px;}
.y1ee{bottom:174.376800px;}
.y24{bottom:175.320000px;}
.yea{bottom:175.745550px;}
.y204{bottom:176.076900px;}
.y206{bottom:176.077500px;}
.y16c{bottom:176.132700px;}
.y173{bottom:176.133900px;}
.y208{bottom:177.022417px;}
.y16e{bottom:177.918150px;}
.y170{bottom:177.918600px;}
.y172{bottom:177.918750px;}
.ye6{bottom:177.996600px;}
.y237{bottom:179.940000px;}
.y6c{bottom:180.091950px;}
.y203{bottom:184.101750px;}
.y205{bottom:184.102350px;}
.y77{bottom:185.678850px;}
.y6b{bottom:185.905650px;}
.ye9{bottom:186.083400px;}
.y3e{bottom:186.489000px;}
.yaf{bottom:187.026300px;}
.y15f{bottom:187.602617px;}
.y97{bottom:187.926150px;}
.y96{bottom:187.926300px;}
.ye5{bottom:188.466900px;}
.ye7{bottom:188.467050px;}
.y22d{bottom:188.546250px;}
.y182{bottom:188.666850px;}
.y17b{bottom:189.547050px;}
.yb{bottom:189.900900px;}
.y117{bottom:191.280000px;}
.y75{bottom:191.492550px;}
.y21e{bottom:194.953410px;}
.y13b{bottom:196.378950px;}
.ya4{bottom:197.100000px;}
.y6f{bottom:197.487900px;}
.y240{bottom:197.993250px;}
.y159{bottom:198.187950px;}
.y49{bottom:199.611900px;}
.y133{bottom:200.150850px;}
.y6d{bottom:203.301750px;}
.y151{bottom:204.714750px;}
.y18c{bottom:207.152850px;}
.y1e1{bottom:207.180000px;}
.y116{bottom:207.570000px;}
.yf6{bottom:207.900000px;}
.y18f{bottom:209.312850px;}
.y192{bottom:209.313150px;}
.y20a{bottom:209.872800px;}
.y23f{bottom:210.215100px;}
.y1f6{bottom:211.176000px;}
.y1ed{bottom:212.356650px;}
.y18b{bottom:213.092100px;}
.y18d{bottom:213.092250px;}
.y1be{bottom:213.300000px;}
.y22{bottom:214.011900px;}
.y253{bottom:214.040082px;}
.y25b{bottom:214.050000px;}
.y18e{bottom:215.252100px;}
.y190{bottom:215.252250px;}
.y191{bottom:215.252400px;}
.ycd{bottom:219.300000px;}
.y53{bottom:222.138000px;}
.y128{bottom:222.548700px;}
.y124{bottom:222.550200px;}
.y6a{bottom:223.290000px;}
.y115{bottom:223.860000px;}
.y1a1{bottom:224.391150px;}
.y199{bottom:225.154800px;}
.y1a2{bottom:225.918900px;}
.yb5{bottom:227.265000px;}
.y1ae{bottom:228.165000px;}
.y12a{bottom:228.863100px;}
.y129{bottom:228.863400px;}
.y127{bottom:228.863700px;}
.y126{bottom:228.864750px;}
.y125{bottom:228.865050px;}
.y123{bottom:228.865200px;}
.y160{bottom:230.082673px;}
.y110{bottom:232.860000px;}
.yae{bottom:235.257300px;}
.ybe{bottom:236.266200px;}
.y230{bottom:236.880000px;}
.y1b4{bottom:237.138300px;}
.y8a{bottom:238.122900px;}
.ya{bottom:238.131900px;}
.ya3{bottom:238.500000px;}
.y1d3{bottom:239.911200px;}
.y114{bottom:240.240000px;}
.y152{bottom:240.612150px;}
.y36{bottom:241.740000px;}
.y1b3{bottom:244.620900px;}
.y48{bottom:247.842900px;}
.y21d{bottom:252.282330px;}
.y214{bottom:253.416600px;}
.yda{bottom:254.340000px;}
.y17c{bottom:254.661900px;}
.yb4{bottom:255.427200px;}
.y209{bottom:258.313500px;}
.y1f5{bottom:259.512000px;}
.y252{bottom:262.282116px;}
.y21{bottom:262.452600px;}
.y180{bottom:266.100900px;}
.y134{bottom:266.158350px;}
.ycc{bottom:267.531000px;}
.y25a{bottom:268.863600px;}
.y52{bottom:270.369000px;}
.yc0{bottom:271.011150px;}
.y161{bottom:272.562729px;}
.y60{bottom:273.308850px;}
.y23e{bottom:275.968650px;}
.y153{bottom:276.512813px;}
.y1d2{bottom:277.858200px;}
.y2e{bottom:279.012600px;}
.yb9{bottom:279.244500px;}
.y17f{bottom:280.179900px;}
.y5f{bottom:280.555650px;}
.y19a{bottom:281.678850px;}
.y164{bottom:282.159943px;}
.y1e0{bottom:283.996260px;}
.y3d{bottom:284.580000px;}
.y1c2{bottom:286.380000px;}
.y89{bottom:286.563600px;}
.y9{bottom:286.572600px;}
.y156{bottom:287.115600px;}
.y22f{bottom:287.280000px;}
.y1ec{bottom:288.151350px;}
.y23d{bottom:288.190650px;}
.y119{bottom:288.390000px;}
.y35{bottom:288.900000px;}
.y22e{bottom:289.673100px;}
.y5b{bottom:290.908200px;}
.y1b8{bottom:291.242700px;}
.y111{bottom:291.630000px;}
.y17e{bottom:294.258750px;}
.y186{bottom:296.015130px;}
.y47{bottom:296.283600px;}
.y1b7{bottom:297.574050px;}
.ybf{bottom:299.799750px;}
.y226{bottom:300.541080px;}
.y213{bottom:301.718100px;}
.y98{bottom:305.190000px;}
.y251{bottom:310.612413px;}
.y20{bottom:310.683600px;}
.y185{bottom:313.617150px;}
.yc1{bottom:315.683100px;}
.y1d1{bottom:315.805200px;}
.y1a5{bottom:317.570234px;}
.y1a7{bottom:317.576495px;}
.y51{bottom:318.600000px;}
.y183{bottom:318.896700px;}
.y17d{bottom:319.776750px;}
.y1fc{bottom:321.703200px;}
.y1fe{bottom:321.703650px;}
.y1df{bottom:321.811380px;}
.yf5{bottom:322.378350px;}
.y1eb{bottom:326.131500px;}
.y1fb{bottom:329.728050px;}
.y1fd{bottom:329.728500px;}
.y22c{bottom:329.760000px;}
.y1fa{bottom:330.541500px;}
.y34{bottom:331.374600px;}
.yad{bottom:331.929000px;}
.y135{bottom:332.166000px;}
.y1a4{bottom:332.850039px;}
.y1a6{bottom:332.856300px;}
.y88{bottom:334.794600px;}
.y8{bottom:334.803600px;}
.y1a3{bottom:336.672282px;}
.ye4{bottom:337.590000px;}
.y19b{bottom:338.202750px;}
.ye8{bottom:338.865000px;}
.y229{bottom:340.666500px;}
.y207{bottom:343.421100px;}
.y212{bottom:350.019000px;}
.y112{bottom:350.400000px;}
.y259{bottom:351.663600px;}
.y7a{bottom:352.140000px;}
.y1d0{bottom:353.752200px;}
.y225{bottom:357.870000px;}
.y1f{bottom:358.914600px;}
.y250{bottom:358.942710px;}
.y1de{bottom:359.791200px;}
.y21c{bottom:359.921160px;}
.yd7{bottom:360.090000px;}
.yca{bottom:370.890000px;}
.y1f4{bottom:374.007000px;}
.y2d{bottom:375.474600px;}
.yf4{bottom:379.794300px;}
.y7{bottom:383.034600px;}
.y3c{bottom:386.643600px;}
.y1cf{bottom:391.699200px;}
.y46{bottom:392.745600px;}
.y211{bottom:398.320500px;}
.y50{bottom:401.040000px;}
.y1ea{bottom:402.091500px;}
.y11a{bottom:402.600000px;}
.y24f{bottom:407.184744px;}
.y1e{bottom:407.355300px;}
.y21b{bottom:408.255660px;}
.y113{bottom:409.080000px;}
.y2c{bottom:423.915300px;}
.y11e{bottom:425.940000px;}
.y1f3{bottom:426.852000px;}
.yf3{bottom:428.025300px;}
.y33{bottom:428.046000px;}
.y1ce{bottom:429.646500px;}
.y13f{bottom:430.290000px;}
.y87{bottom:431.466300px;}
.y6{bottom:431.475300px;}
.y258{bottom:434.370000px;}
.y1dd{bottom:434.943000px;}
.y4f{bottom:439.408500px;}
.y1e9{bottom:440.071500px;}
.y45{bottom:440.976600px;}
.y10c{bottom:444.904149px;}
.yac{bottom:452.161800px;}
.y24e{bottom:455.515041px;}
.y1d{bottom:455.586300px;}
.y21a{bottom:465.500520px;}
.y224{bottom:465.510000px;}
.y103{bottom:467.850000px;}
.y2b{bottom:472.146300px;}
.y1dc{bottom:472.890000px;}
.y104{bottom:474.328781px;}
.y189{bottom:475.666500px;}
.yf2{bottom:476.256300px;}
.y32{bottom:476.329500px;}
.y1f2{bottom:479.697000px;}
.y86{bottom:479.697300px;}
.y5{bottom:479.706300px;}
.y3b{bottom:482.633850px;}
.y169{bottom:485.340000px;}
.y10b{bottom:489.360000px;}
.y44{bottom:489.417300px;}
.y24d{bottom:503.757075px;}
.y10a{bottom:503.760000px;}
.y1c{bottom:503.817300px;}
.y1cd{bottom:505.602000px;}
.yd6{bottom:508.145940px;}
.y1db{bottom:510.837000px;}
.y210{bottom:512.817300px;}
.y246{bottom:513.180000px;}
.y219{bottom:513.835020px;}
.y223{bottom:513.837600px;}
.y1e8{bottom:515.865000px;}
.y257{bottom:517.170000px;}
.y109{bottom:518.070000px;}
.y2a{bottom:520.377300px;}
.y105{bottom:524.550000px;}
.y31{bottom:524.613000px;}
.y85{bottom:527.928300px;}
.y4{bottom:527.937300px;}
.yf9{bottom:528.330000px;}
.yfe{bottom:530.040000px;}
.y3a{bottom:530.935350px;}
.yab{bottom:531.009000px;}
.y108{bottom:532.470000px;}
.yf1{bottom:533.672100px;}
.y4e{bottom:534.780000px;}
.yfd{bottom:537.330000px;}
.y102{bottom:539.220000px;}
.y1cc{bottom:543.541500px;}
.y101{bottom:546.690000px;}
.y1da{bottom:548.784000px;}
.y24c{bottom:552.087372px;}
.y1b{bottom:552.258000px;}
.y1e7{bottom:553.845000px;}
.y20f{bottom:561.258000px;}
.y222{bottom:561.686850px;}
.y245{bottom:563.580000px;}
.yd5{bottom:565.394040px;}
.y93{bottom:567.840000px;}
.y1ad{bottom:567.900000px;}
.y29{bottom:568.818000px;}
.y218{bottom:571.163940px;}
.y10d{bottom:571.980000px;}
.y30{bottom:572.896500px;}
.y8f{bottom:574.200000px;}
.y106{bottom:574.860000px;}
.y3{bottom:576.378000px;}
.y4d{bottom:577.467000px;}
.y39{bottom:579.237000px;}
.yaa{bottom:579.240000px;}
.y1cb{bottom:581.481000px;}
.y43{bottom:585.879300px;}
.y1d9{bottom:586.731000px;}
.y236{bottom:587.340000px;}
.ye3{bottom:588.060000px;}
.y1e6{bottom:591.825000px;}
.y1f1{bottom:594.360900px;}
.y256{bottom:599.970000px;}
.y24b{bottom:600.417669px;}
.y1a{bottom:600.489000px;}
.y66{bottom:601.206000px;}
.yfa{bottom:604.099886px;}
.y244{bottom:604.980000px;}
.y10{bottom:606.606300px;}
.y20e{bottom:609.489000px;}
.y221{bottom:609.928350px;}
.yd4{bottom:613.625100px;}
.y1ac{bottom:615.420000px;}
.y8e{bottom:615.600000px;}
.y28{bottom:617.049000px;}
.y1ca{bottom:619.420500px;}
.y2f{bottom:621.180000px;}
.y84{bottom:624.600000px;}
.y2{bottom:624.609000px;}
.y1d8{bottom:624.678000px;}
.y107{bottom:625.080000px;}
.y4c{bottom:625.698000px;}
.y38{bottom:627.538500px;}
.y217{bottom:628.408800px;}
.y1c1{bottom:628.740000px;}
.y1e5{bottom:629.805000px;}
.y69{bottom:632.319300px;}
.y42{bottom:634.320000px;}
.y235{bottom:637.740000px;}
.y1f0{bottom:642.591900px;}
.ye2{bottom:646.375500px;}
.y243{bottom:646.380000px;}
.yf0{bottom:648.168000px;}
.y24a{bottom:648.659703px;}
.y19{bottom:648.720000px;}
.y17{bottom:648.931950px;}
.y65{bottom:649.489500px;}
.yf{bottom:654.837300px;}
.y1c9{bottom:657.360000px;}
.y20d{bottom:657.720000px;}
.y100{bottom:658.650000px;}
.yfc{bottom:660.990000px;}
.yff{bottom:664.950000px;}
.y27{bottom:665.280000px;}
.y1ab{bottom:666.900000px;}
.yfb{bottom:667.290000px;}
.y1e4{bottom:667.785000px;}
.yc9{bottom:668.717640px;}
.yd3{bottom:670.206150px;}
.y13e{bottom:671.371200px;}
.y1{bottom:672.840000px;}
.ya9{bottom:675.909000px;}
.y68{bottom:680.760000px;}
.y255{bottom:682.770000px;}
.y41{bottom:685.440000px;}
.y11d{bottom:689.760000px;}
.ye1{bottom:694.677000px;}
.yef{bottom:696.504000px;}
.y249{bottom:696.990000px;}
.y16{bottom:697.162500px;}
.y64{bottom:697.773000px;}
.y1bd{bottom:697.851900px;}
.y1ef{bottom:699.840000px;}
.y1d7{bottom:701.444880px;}
.yb3{bottom:702.531900px;}
.yc5{bottom:702.544140px;}
.ye{bottom:703.068300px;}
.y8d{bottom:704.700000px;}
.yc8{bottom:716.948640px;}
.yd2{bottom:718.437150px;}
.y13d{bottom:719.811900px;}
.y1f9{bottom:721.084140px;}
.y4b{bottom:722.160000px;}
.y1aa{bottom:722.527800px;}
.ya8{bottom:724.140000px;}
.y37{bottom:724.680000px;}
.y67{bottom:727.920000px;}
.y168{bottom:728.284140px;}
.y1c8{bottom:733.320000px;}
.y188{bottom:733.510800px;}
.y216{bottom:734.068500px;}
.y11c{bottom:736.387560px;}
.y234{bottom:738.540000px;}
.y1d6{bottom:739.260000px;}
.y228{bottom:739.444140px;}
.y55{bottom:741.399300px;}
.ye0{bottom:742.978500px;}
.y1e3{bottom:743.580000px;}
.y8c{bottom:744.300000px;}
.yee{bottom:744.840000px;}
.y63{bottom:746.056500px;}
.yd{bottom:751.509000px;}
.y242{bottom:754.020000px;}
.y1bc{bottom:755.100000px;}
.yb2{bottom:759.780000px;}
.yc4{bottom:759.960000px;}
.yf8{bottom:768.630000px;}
.y1a9{bottom:769.500000px;}
.ya7{bottom:772.380000px;}
.yd1{bottom:776.520000px;}
.y13c{bottom:777.060000px;}
.y1f8{bottom:778.500000px;}
.y215{bottom:782.310000px;}
.y187{bottom:783.000000px;}
.y11b{bottom:783.360000px;}
.y23{bottom:784.080000px;}
.y167{bottom:785.700000px;}
.y233{bottom:788.940000px;}
.y54{bottom:789.840000px;}
.ydf{bottom:791.280000px;}
.y40{bottom:792.900000px;}
.y1c7{bottom:793.620000px;}
.y8b{bottom:793.980000px;}
.y62{bottom:794.340000px;}
.y241{bottom:795.420000px;}
.y227{bottom:796.860000px;}
.y15{bottom:797.220000px;}
.yc7{bottom:798.480000px;}
.yc{bottom:799.740000px;}
.y92{bottom:803.520000px;}
.y1a8{bottom:807.480000px;}
.h49{height:33.822176px;}
.h75{height:35.903821px;}
.h74{height:35.983907px;}
.h62{height:37.539694px;}
.h60{height:37.755809px;}
.h5e{height:38.208059px;}
.h5c{height:38.434184px;}
.h4b{height:38.438895px;}
.h59{height:39.053137px;}
.h67{height:40.179066px;}
.h61{height:40.902126px;}
.h6c{height:41.435640px;}
.h6b{height:41.452717px;}
.h5d{height:41.637032px;}
.h53{height:44.422374px;}
.h4a{height:45.096627px;}
.h2d{height:45.935763px;}
.h58{height:46.269120px;}
.h2b{height:46.766065px;}
.h66{height:47.603520px;}
.h65{height:48.407309px;}
.h70{height:48.610828px;}
.h2c{height:50.663188px;}
.h4c{height:51.250878px;}
.h15{height:51.327792px;}
.h13{height:51.353341px;}
.h45{height:51.683850px;}
.h51{height:51.685059px;}
.h7a{height:51.819905px;}
.h9{height:55.276500px;}
.h6f{height:57.592800px;}
.h5a{height:58.288247px;}
.hc{height:58.651172px;}
.h55{height:59.046891px;}
.h54{height:59.230028px;}
.h68{height:59.969278px;}
.h20{height:59.984367px;}
.h27{height:60.226875px;}
.h44{height:61.235040px;}
.h79{height:61.394880px;}
.h48{height:62.268989px;}
.h50{height:62.269615px;}
.h78{height:62.432318px;}
.h8f{height:63.169488px;}
.h81{height:65.972988px;}
.h26{height:66.560597px;}
.h35{height:67.708905px;}
.h57{height:70.576235px;}
.h4f{height:71.645280px;}
.h19{height:72.426434px;}
.h71{height:72.553430px;}
.h12{height:72.571768px;}
.h64{height:72.611276px;}
.h8d{height:72.620037px;}
.h69{height:72.620276px;}
.h1a{height:74.700000px;}
.h1e{height:75.442794px;}
.h7f{height:75.528480px;}
.h46{height:77.141798px;}
.h7b{height:77.343159px;}
.h1f{height:79.613103px;}
.h89{height:79.841552px;}
.h3c{height:84.612713px;}
.h38{height:85.696313px;}
.h6e{height:87.848423px;}
.h72{height:87.850223px;}
.h14{height:91.249604px;}
.h16{height:91.295024px;}
.hf{height:91.814541px;}
.h47{height:93.404109px;}
.h4e{height:93.404735px;}
.h77{height:93.648164px;}
.h85{height:98.467305px;}
.h25{height:99.840270px;}
.h3b{height:100.247040px;}
.h34{height:101.058666px;}
.h29{height:101.138140px;}
.h8b{height:101.253284px;}
.h23{height:101.472933px;}
.h37{height:101.531040px;}
.h92{height:101.976061px;}
.h1c{height:106.585494px;}
.h1d{height:106.638548px;}
.h17{height:108.060461px;}
.h18{height:108.114249px;}
.h84{height:109.796577px;}
.h32{height:113.808333px;}
.h43{height:117.904697px;}
.h10{height:121.179375px;}
.h30{height:124.941607px;}
.h3d{height:126.287775px;}
.h8{height:126.984375px;}
.h39{height:127.905314px;}
.h31{height:130.125000px;}
.h82{height:130.567905px;}
.h80{height:130.568505px;}
.h83{height:130.569105px;}
.h21{height:132.789375px;}
.h7d{height:132.790575px;}
.h28{height:134.475000px;}
.h5{height:145.125000px;}
.h3e{height:152.910900px;}
.h91{height:152.964717px;}
.he{height:154.415419px;}
.h33{height:159.045000px;}
.h2f{height:166.125000px;}
.h2{height:169.070625px;}
.h2e{height:169.070865px;}
.h4{height:169.072425px;}
.h86{height:169.073025px;}
.h3f{height:169.076385px;}
.ha{height:169.348781px;}
.h42{height:169.433437px;}
.h1b{height:175.146546px;}
.h87{height:175.343906px;}
.h56{height:192.450000px;}
.h6{height:193.741875px;}
.h63{height:198.000000px;}
.h7{height:217.687500px;}
.h22{height:218.700000px;}
.h3a{height:228.375000px;}
.h24{height:229.500000px;}
.h36{height:231.300000px;}
.h6d{height:239.550000px;}
.h4d{height:254.700000px;}
.h8c{height:280.950000px;}
.h93{height:290.250000px;}
.h5f{height:300.598500px;}
.h5b{height:305.880000px;}
.h76{height:323.475000px;}
.h7c{height:329.940000px;}
.h11{height:332.250000px;}
.h2a{height:340.501500px;}
.h6a{height:341.775000px;}
.h52{height:355.680000px;}
.h73{height:357.298500px;}
.h88{height:369.675000px;}
.h7e{height:372.448500px;}
.h8e{height:390.450000px;}
.h8a{height:391.603500px;}
.h3{height:476.280000px;}
.h90{height:499.873500px;}
.hd{height:537.300000px;}
.hb{height:571.860000px;}
.h41{height:892.500000px;}
.h40{height:892.830000px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w5{width:109.275000px;}
.w3{width:109.276500px;}
.wc{width:167.550000px;}
.w9{width:184.125000px;}
.we{width:198.000000px;}
.w1d{width:234.540000px;}
.w21{width:280.950000px;}
.w23{width:326.700000px;}
.w22{width:353.398500px;}
.w1f{width:375.150000px;}
.w17{width:383.400000px;}
.w16{width:390.225000px;}
.w20{width:391.650000px;}
.w12{width:397.500000px;}
.w11{width:399.975000px;}
.wd{width:420.264000px;}
.w10{width:427.876500px;}
.w14{width:441.600000px;}
.w8{width:442.950000px;}
.w1b{width:484.950000px;}
.w15{width:490.125000px;}
.w1e{width:495.750000px;}
.w13{width:507.975000px;}
.w4{width:509.040000px;}
.w19{width:560.550000px;}
.w1a{width:606.450000px;}
.wb{width:616.350000px;}
.w6{width:638.625000px;}
.w18{width:640.948500px;}
.w7{width:654.838500px;}
.w2{width:737.280000px;}
.wa{width:746.250000px;}
.w1c{width:786.598500px;}
.wf{width:797.398500px;}
.w0{width:1262.880000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x61{left:1.689000px;}
.x116{left:7.911900px;}
.xcf{left:12.165600px;}
.x4b{left:14.514150px;}
.x63{left:15.625050px;}
.xd9{left:16.652250px;}
.xc2{left:17.779950px;}
.x8b{left:19.503150px;}
.x113{left:20.920476px;}
.x7a{left:22.926300px;}
.x106{left:24.067800px;}
.x5a{left:26.585100px;}
.xd0{left:27.883625px;}
.xf4{left:30.534600px;}
.xce{left:33.249506px;}
.xe6{left:35.053589px;}
.x7b{left:37.459950px;}
.x107{left:38.697300px;}
.x97{left:40.290900px;}
.xcd{left:41.363400px;}
.x51{left:44.100000px;}
.xc{left:45.900000px;}
.x89{left:50.704350px;}
.xdb{left:51.894450px;}
.xf{left:54.001440px;}
.xa5{left:55.458000px;}
.x41{left:56.520000px;}
.x10f{left:58.812630px;}
.x28{left:60.352500px;}
.xc8{left:62.983500px;}
.x9c{left:67.359000px;}
.x32{left:68.940000px;}
.xa{left:70.200720px;}
.x9{left:71.291160px;}
.x9b{left:74.467500px;}
.x3d{left:75.774420px;}
.x43{left:77.580000px;}
.x102{left:79.606500px;}
.x26{left:81.853500px;}
.x56{left:84.240000px;}
.xdc{left:86.197200px;}
.xa8{left:87.669000px;}
.x3{left:89.451720px;}
.x84{left:91.080000px;}
.x92{left:93.264600px;}
.x2a{left:94.860000px;}
.x94{left:97.016580px;}
.x64{left:98.027250px;}
.x115{left:99.720000px;}
.x69{left:101.700000px;}
.x101{left:102.776220px;}
.x1e{left:105.660000px;}
.x2d{left:107.184000px;}
.x25{left:109.800000px;}
.x68{left:113.123649px;}
.xc1{left:115.440000px;}
.x31{left:116.627100px;}
.x39{left:118.050000px;}
.x6e{left:119.664180px;}
.xe1{left:122.514900px;}
.x86{left:123.904350px;}
.x67{left:125.107500px;}
.x3c{left:127.234800px;}
.x9a{left:128.340000px;}
.x119{left:130.669458px;}
.x20{left:132.459660px;}
.xa7{left:133.833000px;}
.x9f{left:135.465000px;}
.x103{left:136.573500px;}
.x44{left:138.225240px;}
.xa0{left:139.880400px;}
.x1{left:142.380000px;}
.x2e{left:143.398500px;}
.x90{left:145.337550px;}
.x10d{left:146.571270px;}
.x21{left:148.103280px;}
.x62{left:150.173618px;}
.x65{left:152.828248px;}
.xd8{left:157.152750px;}
.x46{left:159.480000px;}
.xeb{left:161.100000px;}
.x66{left:163.129537px;}
.x6b{left:164.498040px;}
.x118{left:166.320000px;}
.xde{left:167.400000px;}
.x1c{left:169.779000px;}
.x3b{left:172.613850px;}
.x48{left:174.315000px;}
.xcc{left:175.590000px;}
.x27{left:177.771000px;}
.xff{left:179.460000px;}
.x33{left:182.521050px;}
.xc9{left:184.257470px;}
.x1d{left:186.825000px;}
.x99{left:189.792750px;}
.xe9{left:191.088000px;}
.x8a{left:193.069800px;}
.xc3{left:195.580650px;}
.x6{left:197.656920px;}
.x105{left:199.984860px;}
.x5b{left:204.362400px;}
.x8f{left:209.004300px;}
.xe7{left:213.400688px;}
.x111{left:215.265750px;}
.x73{left:216.720000px;}
.xdd{left:219.892688px;}
.x108{left:221.566050px;}
.x5c{left:222.618450px;}
.x6a{left:224.640000px;}
.x95{left:226.365000px;}
.xa6{left:227.580000px;}
.x54{left:228.618000px;}
.x87{left:230.959080px;}
.xec{left:232.200000px;}
.xf5{left:234.290100px;}
.xa2{left:236.240550px;}
.x49{left:237.600000px;}
.x13{left:241.560000px;}
.xf6{left:243.892200px;}
.xa3{left:246.907500px;}
.xd2{left:250.076100px;}
.x74{left:251.940000px;}
.x7c{left:253.622550px;}
.x78{left:255.055350px;}
.x10c{left:256.134240px;}
.x83{left:259.042500px;}
.x11{left:261.141000px;}
.xd3{left:264.349050px;}
.x85{left:266.760000px;}
.x58{left:268.408440px;}
.x79{left:269.589150px;}
.x2b{left:270.720000px;}
.x53{left:273.079500px;}
.x52{left:278.280000px;}
.xd4{left:280.703700px;}
.x75{left:282.172800px;}
.x72{left:283.667040px;}
.xe8{left:285.803550px;}
.xdf{left:289.431720px;}
.x91{left:291.198600px;}
.x1f{left:292.293000px;}
.x4c{left:295.454734px;}
.xd1{left:297.504300px;}
.xf9{left:300.060000px;}
.x55{left:301.179000px;}
.xe2{left:303.044400px;}
.x15{left:306.362340px;}
.x12{left:308.598750px;}
.x36{left:310.500000px;}
.xef{left:311.682450px;}
.x4d{left:314.128800px;}
.x47{left:316.796940px;}
.x24{left:320.938050px;}
.x109{left:323.736750px;}
.x5d{left:325.528350px;}
.x8e{left:330.840000px;}
.x3f{left:334.980000px;}
.x45{left:336.056220px;}
.x4{left:337.862340px;}
.xe3{left:340.159200px;}
.xfb{left:342.557640px;}
.xda{left:347.640000px;}
.x5e{left:349.339050px;}
.x112{left:351.148740px;}
.x10a{left:353.231850px;}
.xc4{left:357.895500px;}
.x7e{left:360.066300px;}
.x34{left:361.101600px;}
.x3e{left:362.308500px;}
.x98{left:366.961200px;}
.x5f{left:367.979550px;}
.xc5{left:369.748800px;}
.x6f{left:370.980000px;}
.xc0{left:374.737860px;}
.x7d{left:375.828150px;}
.x30{left:377.602650px;}
.x70{left:381.600000px;}
.x8d{left:383.939640px;}
.xe5{left:385.440000px;}
.x35{left:386.820000px;}
.xfa{left:388.440000px;}
.x77{left:390.111300px;}
.x2c{left:392.760000px;}
.x42{left:397.422750px;}
.x100{left:400.484880px;}
.x37{left:403.200000px;}
.xca{left:405.817050px;}
.x96{left:411.013500px;}
.xd5{left:414.365250px;}
.x9e{left:415.980000px;}
.x11a{left:418.759350px;}
.x40{left:420.663450px;}
.x8{left:423.000000px;}
.x93{left:425.364840px;}
.x6d{left:426.371400px;}
.xcb{left:428.095650px;}
.xed{left:429.787650px;}
.x9d{left:431.607000px;}
.x2f{left:432.894150px;}
.xc7{left:434.040000px;}
.xb4{left:435.945750px;}
.xc6{left:440.868750px;}
.xee{left:443.422500px;}
.xf0{left:444.574800px;}
.x110{left:446.071950px;}
.x57{left:447.840000px;}
.x10b{left:454.459050px;}
.x8c{left:459.180000px;}
.x1a{left:462.043620px;}
.x38{left:464.390460px;}
.x10{left:465.660000px;}
.xe4{left:476.186850px;}
.x59{left:481.590000px;}
.x7{left:484.945920px;}
.x5{left:487.252620px;}
.x14{left:488.340000px;}
.x82{left:489.600000px;}
.xb{left:491.236380px;}
.x23{left:492.472620px;}
.x1b{left:496.980000px;}
.x29{left:498.793500px;}
.x71{left:500.760000px;}
.xa9{left:502.187580px;}
.xf7{left:503.531700px;}
.xea{left:509.045100px;}
.x3a{left:512.244000px;}
.xa4{left:514.602000px;}
.x6c{left:519.268500px;}
.xd6{left:522.602550px;}
.x10e{left:525.093450px;}
.xe0{left:526.995150px;}
.x80{left:528.738600px;}
.x18{left:530.280000px;}
.xd7{left:531.820650px;}
.xaa{left:536.115750px;}
.x7f{left:544.705200px;}
.x81{left:545.933400px;}
.xab{left:547.995750px;}
.x17{left:551.333880px;}
.x22{left:553.117860px;}
.x50{left:554.940000px;}
.x104{left:557.908500px;}
.x19{left:561.944700px;}
.x4a{left:563.115000px;}
.x4e{left:565.017150px;}
.xf8{left:572.666550px;}
.xac{left:575.625750px;}
.x16{left:582.285600px;}
.x4f{left:586.788300px;}
.xad{left:604.875750px;}
.xf1{left:606.657300px;}
.xae{left:620.985750px;}
.x2{left:627.835500px;}
.x76{left:634.372650px;}
.xa1{left:715.740000px;}
.x114{left:718.665000px;}
.xaf{left:727.095750px;}
.xd{left:729.000000px;}
.xb0{left:733.575750px;}
.xf2{left:737.245200px;}
.xbe{left:752.295750px;}
.xf3{left:753.376800px;}
.xb1{left:754.635750px;}
.xbb{left:776.057603px;}
.xbc{left:781.005750px;}
.xb2{left:785.865750px;}
.x88{left:788.334000px;}
.xb3{left:801.975750px;}
.x117{left:869.340000px;}
.xbd{left:898.815527px;}
.xb9{left:902.775750px;}
.xb6{left:923.568483px;}
.xb5{left:932.835750px;}
.x60{left:965.790000px;}
.xfe{left:975.240000px;}
.xfd{left:983.340000px;}
.xfc{left:1008.180000px;}
.xb8{left:1025.265173px;}
.xb7{left:1075.395750px;}
.xbf{left:1078.815750px;}
.xba{left:1177.005750px;}
.xe{left:1179.000000px;}
@media print{
.v8{vertical-align:-124.092267pt;}
.v3{vertical-align:-73.981710pt;}
.vf{vertical-align:-63.129600pt;}
.v6{vertical-align:-45.885333pt;}
.vb{vertical-align:-40.672000pt;}
.v7{vertical-align:-32.009067pt;}
.v4{vertical-align:-28.827733pt;}
.vc{vertical-align:-24.956800pt;}
.v1{vertical-align:-21.120000pt;}
.va{vertical-align:-19.535467pt;}
.v5{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:10.070464pt;}
.v9{vertical-align:25.854400pt;}
.vd{vertical-align:28.533333pt;}
.v2{vertical-align:60.943158pt;}
.ls43{letter-spacing:-4.827984pt;}
.ls53{letter-spacing:-3.116108pt;}
.ls57{letter-spacing:-2.705003pt;}
.ls4a{letter-spacing:-1.772389pt;}
.ls4c{letter-spacing:-1.741106pt;}
.ls44{letter-spacing:-1.502039pt;}
.ls15{letter-spacing:-1.344288pt;}
.ls45{letter-spacing:-1.072885pt;}
.ls52{letter-spacing:-1.051217pt;}
.ls56{letter-spacing:-0.912531pt;}
.ls14{letter-spacing:-0.896192pt;}
.ls75{letter-spacing:-0.743040pt;}
.ls6a{letter-spacing:-0.671364pt;}
.ls19{letter-spacing:-0.434620pt;}
.ls42{letter-spacing:-0.321866pt;}
.ls1b{letter-spacing:-0.320640pt;}
.ls40{letter-spacing:-0.318423pt;}
.lsb{letter-spacing:-0.298667pt;}
.ls6{letter-spacing:-0.298240pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls5a{letter-spacing:-0.234667pt;}
.ls5b{letter-spacing:-0.234240pt;}
.ls68{letter-spacing:-0.224907pt;}
.ls11{letter-spacing:-0.224000pt;}
.ls27{letter-spacing:-0.212480pt;}
.ls8{letter-spacing:-0.149333pt;}
.ls4{letter-spacing:-0.149120pt;}
.ls59{letter-spacing:-0.117333pt;}
.ls3e{letter-spacing:-0.117120pt;}
.ls26{letter-spacing:-0.106240pt;}
.ls73{letter-spacing:-0.104608pt;}
.ls18{letter-spacing:-0.097918pt;}
.ls2e{letter-spacing:-0.096995pt;}
.ls6e{letter-spacing:-0.089664pt;}
.ls69{letter-spacing:-0.083921pt;}
.ls6f{letter-spacing:-0.074720pt;}
.ls6b{letter-spacing:-0.074667pt;}
.ls3a{letter-spacing:-0.059776pt;}
.ls6c{letter-spacing:-0.058667pt;}
.ls77{letter-spacing:-0.053837pt;}
.ls72{letter-spacing:-0.048000pt;}
.ls6d{letter-spacing:-0.044832pt;}
.ls7c{letter-spacing:-0.019200pt;}
.ls3{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.004084pt;}
.ls39{letter-spacing:0.009284pt;}
.ls79{letter-spacing:0.025600pt;}
.ls7a{letter-spacing:0.051200pt;}
.ls3b{letter-spacing:0.057181pt;}
.ls7b{letter-spacing:0.076800pt;}
.ls48{letter-spacing:0.102820pt;}
.ls51{letter-spacing:0.105786pt;}
.ls1a{letter-spacing:0.106880pt;}
.ls58{letter-spacing:0.116907pt;}
.ls1d{letter-spacing:0.117120pt;}
.ls60{letter-spacing:0.117333pt;}
.ls55{letter-spacing:0.127984pt;}
.ls41{letter-spacing:0.136078pt;}
.ls5e{letter-spacing:0.136433pt;}
.lsf{letter-spacing:0.149120pt;}
.lsc{letter-spacing:0.149333pt;}
.ls3d{letter-spacing:0.152256pt;}
.ls3c{letter-spacing:0.153178pt;}
.ls67{letter-spacing:0.167841pt;}
.ls2b{letter-spacing:0.178944pt;}
.lse{letter-spacing:0.192000pt;}
.ls4d{letter-spacing:0.193856pt;}
.ls2a{letter-spacing:0.208768pt;}
.ls16{letter-spacing:0.213760pt;}
.ls24{letter-spacing:0.222080pt;}
.ls32{letter-spacing:0.222771pt;}
.ls31{letter-spacing:0.225625pt;}
.ls36{letter-spacing:0.251744pt;}
.ls47{letter-spacing:0.253504pt;}
.ls23{letter-spacing:0.256000pt;}
.ls5c{letter-spacing:0.266045pt;}
.ls12{letter-spacing:0.272388pt;}
.ls10{letter-spacing:0.298133pt;}
.ls0{letter-spacing:0.298240pt;}
.ls22{letter-spacing:0.320000pt;}
.ls2f{letter-spacing:0.321280pt;}
.ls30{letter-spacing:0.332800pt;}
.ls1e{letter-spacing:0.351360pt;}
.ls74{letter-spacing:0.408320pt;}
.ls33{letter-spacing:0.427711pt;}
.ls2{letter-spacing:0.447360pt;}
.ls7{letter-spacing:0.448000pt;}
.ls34{letter-spacing:0.462272pt;}
.ls1{letter-spacing:0.492096pt;}
.ls9{letter-spacing:0.507008pt;}
.ls35{letter-spacing:0.520747pt;}
.ls66{letter-spacing:0.520895pt;}
.ls37{letter-spacing:0.564723pt;}
.ls65{letter-spacing:0.573013pt;}
.ls25{letter-spacing:0.581568pt;}
.ls3f{letter-spacing:0.585600pt;}
.ls4b{letter-spacing:0.666806pt;}
.ls49{letter-spacing:0.678787pt;}
.ls29{letter-spacing:0.690987pt;}
.ls5{letter-spacing:0.717760pt;}
.ls1c{letter-spacing:0.725120pt;}
.ls5d{letter-spacing:0.750382pt;}
.ls28{letter-spacing:0.825936pt;}
.lsa{letter-spacing:0.894720pt;}
.ls13{letter-spacing:1.225747pt;}
.ls46{letter-spacing:3.369139pt;}
.ls70{letter-spacing:4.782080pt;}
.ls63{letter-spacing:5.446417pt;}
.ls62{letter-spacing:7.733333pt;}
.ls5f{letter-spacing:12.090667pt;}
.ls71{letter-spacing:17.792000pt;}
.ls64{letter-spacing:100.723200pt;}
.ls50{letter-spacing:125.145689pt;}
.ls61{letter-spacing:159.520000pt;}
.ls17{letter-spacing:196.544099pt;}
.ls1f{letter-spacing:228.129592pt;}
.ls76{letter-spacing:275.583459pt;}
.ls20{letter-spacing:341.960784pt;}
.ls4f{letter-spacing:439.343170pt;}
.ls78{letter-spacing:730.642048pt;}
.ls21{letter-spacing:777.328527pt;}
.ls2d{letter-spacing:925.085836pt;}
.ls54{letter-spacing:1135.618295pt;}
.ls2c{letter-spacing:1383.871126pt;}
.ls4e{letter-spacing:1438.484705pt;}
.ws69{word-spacing:-112.812267pt;}
.ws6b{word-spacing:-111.385600pt;}
.ws1b{word-spacing:-84.849067pt;}
.ws89{word-spacing:-68.038933pt;}
.wsad{word-spacing:-63.992000pt;}
.wsa2{word-spacing:-52.892800pt;}
.ws97{word-spacing:-51.410133pt;}
.ws16{word-spacing:-38.174720pt;}
.wse{word-spacing:-37.728000pt;}
.ws4{word-spacing:-37.727360pt;}
.ws41{word-spacing:-37.578240pt;}
.ws17{word-spacing:-37.429333pt;}
.ws33{word-spacing:-37.429120pt;}
.ws19{word-spacing:-37.280000pt;}
.ws10f{word-spacing:-37.255392pt;}
.ws0{word-spacing:-37.130880pt;}
.ws18{word-spacing:-37.130667pt;}
.ws6{word-spacing:-36.981760pt;}
.ws1a{word-spacing:-36.981333pt;}
.ws37{word-spacing:-36.445141pt;}
.ws38{word-spacing:-35.997045pt;}
.ws3a{word-spacing:-35.274281pt;}
.ws39{word-spacing:-34.320922pt;}
.ws35{word-spacing:-32.000000pt;}
.ws117{word-spacing:-31.744000pt;}
.ws85{word-spacing:-29.865600pt;}
.ws52{word-spacing:-29.631360pt;}
.wse1{word-spacing:-29.397333pt;}
.wsc7{word-spacing:-29.397120pt;}
.ws51{word-spacing:-29.280000pt;}
.ws84{word-spacing:-29.162880pt;}
.wsc8{word-spacing:-29.162667pt;}
.ws68{word-spacing:-26.964666pt;}
.ws67{word-spacing:-26.867670pt;}
.ws53{word-spacing:-24.042033pt;}
.ws42{word-spacing:-24.000000pt;}
.ws113{word-spacing:-23.989991pt;}
.wsff{word-spacing:-23.497749pt;}
.wsfe{word-spacing:-23.329908pt;}
.ws86{word-spacing:-22.130431pt;}
.ws88{word-spacing:-21.812007pt;}
.wsac{word-spacing:-20.813971pt;}
.ws54{word-spacing:-20.640000pt;}
.ws115{word-spacing:-17.205902pt;}
.wsa3{word-spacing:-17.203826pt;}
.ws8f{word-spacing:-16.738739pt;}
.ws96{word-spacing:-16.721663pt;}
.wsfd{word-spacing:-15.631013pt;}
.wsb5{word-spacing:-15.058166pt;}
.ws116{word-spacing:-14.912941pt;}
.ws87{word-spacing:-14.753571pt;}
.ws8d{word-spacing:-13.411067pt;}
.ws5b{word-spacing:-13.173760pt;}
.ws4b{word-spacing:-13.147247pt;}
.ws8c{word-spacing:-13.089201pt;}
.ws5c{word-spacing:-13.067520pt;}
.ws5f{word-spacing:-10.588933pt;}
.ws99{word-spacing:-10.106387pt;}
.ws8b{word-spacing:-10.058267pt;}
.ws9d{word-spacing:-9.928006pt;}
.wsa6{word-spacing:-9.385867pt;}
.ws7f{word-spacing:-8.703467pt;}
.ws9b{word-spacing:-8.702400pt;}
.ws8e{word-spacing:-8.583083pt;}
.ws9f{word-spacing:-8.548800pt;}
.wsa7{word-spacing:-8.334650pt;}
.wsaf{word-spacing:-8.147600pt;}
.ws7d{word-spacing:-7.658133pt;}
.ws9a{word-spacing:-7.655211pt;}
.ws9e{word-spacing:-7.520094pt;}
.wsb0{word-spacing:-7.235069pt;}
.wsa8{word-spacing:-6.269759pt;}
.wsb1{word-spacing:-5.442597pt;}
.ws61{word-spacing:-1.697757pt;}
.wsa1{word-spacing:-1.395285pt;}
.ws23{word-spacing:-1.312000pt;}
.ws65{word-spacing:-1.221333pt;}
.ws70{word-spacing:-1.205333pt;}
.wsa{word-spacing:-1.194667pt;}
.wsf9{word-spacing:-1.189333pt;}
.ws8{word-spacing:-1.178667pt;}
.ws77{word-spacing:-0.773333pt;}
.ws2e{word-spacing:-0.762667pt;}
.wsc1{word-spacing:-0.750382pt;}
.ws24{word-spacing:-0.746667pt;}
.ws66{word-spacing:-0.714667pt;}
.ws64{word-spacing:-0.709333pt;}
.ws108{word-spacing:-0.704000pt;}
.ws78{word-spacing:-0.688000pt;}
.ws9{word-spacing:-0.672000pt;}
.ws73{word-spacing:-0.613333pt;}
.ws7{word-spacing:-0.597333pt;}
.ws5{word-spacing:-0.596480pt;}
.ws106{word-spacing:-0.581333pt;}
.ws26{word-spacing:-0.576000pt;}
.ws13{word-spacing:-0.565333pt;}
.ws63{word-spacing:-0.549333pt;}
.ws4f{word-spacing:-0.534400pt;}
.ws91{word-spacing:-0.468480pt;}
.ws2c{word-spacing:-0.448000pt;}
.ws62{word-spacing:-0.447360pt;}
.ws4c{word-spacing:-0.298240pt;}
.wsee{word-spacing:-0.282667pt;}
.ws55{word-spacing:-0.256000pt;}
.ws71{word-spacing:-0.222771pt;}
.ws107{word-spacing:-0.208000pt;}
.ws34{word-spacing:-0.192000pt;}
.ws6f{word-spacing:-0.181333pt;}
.ws10e{word-spacing:-0.149440pt;}
.ws2f{word-spacing:-0.149333pt;}
.ws4d{word-spacing:-0.149120pt;}
.wsc2{word-spacing:-0.136433pt;}
.ws92{word-spacing:-0.136078pt;}
.ws14{word-spacing:-0.133333pt;}
.wsb2{word-spacing:-0.127984pt;}
.ws12{word-spacing:-0.122667pt;}
.ws25{word-spacing:-0.117333pt;}
.wsa9{word-spacing:-0.105786pt;}
.wsa0{word-spacing:-0.102820pt;}
.ws120{word-spacing:-0.076800pt;}
.ws11f{word-spacing:-0.051200pt;}
.ws105{word-spacing:-0.032000pt;}
.ws11e{word-spacing:-0.025600pt;}
.ws30{word-spacing:-0.016000pt;}
.ws80{word-spacing:-0.014944pt;}
.ws83{word-spacing:-0.009284pt;}
.ws82{word-spacing:-0.004084pt;}
.ws1{word-spacing:0.000000pt;}
.ws10d{word-spacing:0.014944pt;}
.ws76{word-spacing:0.026667pt;}
.ws11b{word-spacing:0.029888pt;}
.ws6d{word-spacing:0.032000pt;}
.ws6c{word-spacing:0.042667pt;}
.ws81{word-spacing:0.044832pt;}
.ws111{word-spacing:0.048000pt;}
.ws15{word-spacing:0.058667pt;}
.ws112{word-spacing:0.059776pt;}
.ws10b{word-spacing:0.074720pt;}
.ws10a{word-spacing:0.089664pt;}
.ws11d{word-spacing:0.104608pt;}
.wsd2{word-spacing:0.106667pt;}
.ws4e{word-spacing:0.106880pt;}
.ws121{word-spacing:0.115200pt;}
.wsbf{word-spacing:0.117120pt;}
.wsb7{word-spacing:0.117333pt;}
.ws109{word-spacing:0.133333pt;}
.ws10c{word-spacing:0.134496pt;}
.ws110{word-spacing:0.144000pt;}
.ws2{word-spacing:0.149120pt;}
.ws20{word-spacing:0.149333pt;}
.ws11c{word-spacing:0.149440pt;}
.ws1e{word-spacing:0.154667pt;}
.ws3b{word-spacing:0.159360pt;}
.ws101{word-spacing:0.167841pt;}
.ws32{word-spacing:0.170880pt;}
.wsef{word-spacing:0.197333pt;}
.wsed{word-spacing:0.213333pt;}
.ws90{word-spacing:0.234240pt;}
.wsb6{word-spacing:0.234667pt;}
.ws102{word-spacing:0.251762pt;}
.ws2d{word-spacing:0.256000pt;}
.ws75{word-spacing:0.298240pt;}
.ws1c{word-spacing:0.298667pt;}
.wsb8{word-spacing:0.304000pt;}
.wsd7{word-spacing:0.314667pt;}
.ws50{word-spacing:0.320640pt;}
.ws36{word-spacing:0.336000pt;}
.wsc0{word-spacing:0.351360pt;}
.ws40{word-spacing:0.373333pt;}
.ws72{word-spacing:0.384000pt;}
.wsc6{word-spacing:0.416000pt;}
.wsc{word-spacing:0.432000pt;}
.ws6e{word-spacing:0.448000pt;}
.ws1f{word-spacing:0.474667pt;}
.ws79{word-spacing:0.490667pt;}
.ws74{word-spacing:0.496000pt;}
.wsbe{word-spacing:0.501333pt;}
.wsc5{word-spacing:0.506667pt;}
.wsbd{word-spacing:0.517333pt;}
.ws2a{word-spacing:0.522667pt;}
.ws27{word-spacing:0.533333pt;}
.ws7a{word-spacing:0.538667pt;}
.ws100{word-spacing:0.562267pt;}
.wsbc{word-spacing:0.576000pt;}
.ws2b{word-spacing:0.586667pt;}
.wsfa{word-spacing:0.592000pt;}
.ws3{word-spacing:0.596480pt;}
.wsb{word-spacing:0.597333pt;}
.wsfc{word-spacing:0.602667pt;}
.ws29{word-spacing:0.613333pt;}
.wsfb{word-spacing:0.618667pt;}
.ws28{word-spacing:0.624000pt;}
.ws57{word-spacing:0.634667pt;}
.wsc4{word-spacing:0.640000pt;}
.ws3c{word-spacing:0.650667pt;}
.ws3d{word-spacing:0.656000pt;}
.wsf8{word-spacing:0.666667pt;}
.ws103{word-spacing:0.671364pt;}
.wsdd{word-spacing:0.704000pt;}
.wsc3{word-spacing:0.730667pt;}
.ws114{word-spacing:0.743040pt;}
.ws60{word-spacing:0.745600pt;}
.ws59{word-spacing:0.762667pt;}
.ws56{word-spacing:0.768000pt;}
.ws22{word-spacing:0.773333pt;}
.wsd3{word-spacing:0.794667pt;}
.ws5a{word-spacing:0.800000pt;}
.ws119{word-spacing:0.885333pt;}
.ws1d{word-spacing:0.896000pt;}
.ws21{word-spacing:0.912000pt;}
.wsb4{word-spacing:0.912531pt;}
.wsd5{word-spacing:0.922667pt;}
.wsd9{word-spacing:0.936960pt;}
.wsba{word-spacing:0.938667pt;}
.wsd8{word-spacing:0.976000pt;}
.wsd6{word-spacing:0.992000pt;}
.wsd4{word-spacing:1.008000pt;}
.ws11{word-spacing:1.013333pt;}
.wsd{word-spacing:1.029333pt;}
.wsf{word-spacing:1.045333pt;}
.wsab{word-spacing:1.051217pt;}
.ws104{word-spacing:1.061333pt;}
.ws11a{word-spacing:1.066667pt;}
.ws3f{word-spacing:1.072000pt;}
.ws3e{word-spacing:1.114667pt;}
.ws118{word-spacing:1.120000pt;}
.ws10{word-spacing:1.130667pt;}
.wsbb{word-spacing:1.216000pt;}
.ws31{word-spacing:1.253333pt;}
.wsdc{word-spacing:1.290667pt;}
.wsb9{word-spacing:1.365333pt;}
.ws58{word-spacing:1.408000pt;}
.wsca{word-spacing:2.576000pt;}
.wsb3{word-spacing:2.705003pt;}
.wscb{word-spacing:2.810667pt;}
.wsaa{word-spacing:3.116108pt;}
.wse2{word-spacing:3.280000pt;}
.ws95{word-spacing:4.452474pt;}
.wsda{word-spacing:4.565333pt;}
.ws94{word-spacing:4.881628pt;}
.wse3{word-spacing:5.152000pt;}
.wse4{word-spacing:5.386667pt;}
.wsce{word-spacing:6.442667pt;}
.wscc{word-spacing:7.146667pt;}
.ws93{word-spacing:8.207573pt;}
.wsd1{word-spacing:9.605333pt;}
.wsd0{word-spacing:9.840000pt;}
.wsec{word-spacing:10.613333pt;}
.wseb{word-spacing:10.624000pt;}
.wscf{word-spacing:10.890667pt;}
.wse8{word-spacing:11.093333pt;}
.wsea{word-spacing:11.104000pt;}
.wse9{word-spacing:11.322667pt;}
.wsdb{word-spacing:13.701333pt;}
.wsc9{word-spacing:14.757333pt;}
.wsde{word-spacing:17.568000pt;}
.wscd{word-spacing:24.010667pt;}
.wsdf{word-spacing:25.883520pt;}
.ws48{word-spacing:29.196698pt;}
.ws45{word-spacing:29.767194pt;}
.wsf1{word-spacing:31.034667pt;}
.wsf3{word-spacing:31.237333pt;}
.wsf7{word-spacing:31.306667pt;}
.wsf0{word-spacing:31.472000pt;}
.wsf6{word-spacing:31.482667pt;}
.wsf4{word-spacing:31.632000pt;}
.wsf5{word-spacing:31.680000pt;}
.wsf2{word-spacing:32.069333pt;}
.ws4a{word-spacing:47.808024pt;}
.ws46{word-spacing:48.469608pt;}
.wse0{word-spacing:51.298560pt;}
.wse6{word-spacing:55.749333pt;}
.wse5{word-spacing:55.984000pt;}
.ws49{word-spacing:110.422048pt;}
.ws5e{word-spacing:130.599921pt;}
.ws47{word-spacing:154.379339pt;}
.ws43{word-spacing:154.689123pt;}
.wse7{word-spacing:159.520000pt;}
.ws7e{word-spacing:171.649600pt;}
.ws7c{word-spacing:185.665600pt;}
.ws5d{word-spacing:187.072558pt;}
.ws44{word-spacing:194.971597pt;}
.ws9c{word-spacing:233.655802pt;}
.ws98{word-spacing:237.853997pt;}
.ws8a{word-spacing:244.751691pt;}
.wsae{word-spacing:312.322707pt;}
.wsa5{word-spacing:441.137601pt;}
.wsa4{word-spacing:441.138134pt;}
.ws6a{word-spacing:466.591519pt;}
.ws7b{word-spacing:621.438044pt;}
._8{margin-left:-959.961494pt;}
._1a{margin-left:-111.955242pt;}
._1c{margin-left:-97.206477pt;}
._17{margin-left:-81.210797pt;}
._11{margin-left:-73.747211pt;}
._19{margin-left:-68.817174pt;}
._d{margin-left:-63.918259pt;}
._1b{margin-left:-59.738203pt;}
._a{margin-left:-56.241331pt;}
._e{margin-left:-46.511326pt;}
._b{margin-left:-40.588107pt;}
._12{margin-left:-4.341892pt;}
._6{margin-left:-3.193619pt;}
._0{margin-left:-1.491200pt;}
._1{width:1.058752pt;}
._7{width:2.042944pt;}
._10{width:3.351414pt;}
._13{width:4.657500pt;}
._14{width:5.579004pt;}
._15{width:7.166046pt;}
._21{width:8.300587pt;}
._22{width:10.629343pt;}
._1d{width:12.096036pt;}
._23{width:14.218719pt;}
._1f{width:32.889387pt;}
._20{width:33.787849pt;}
._1e{width:55.584640pt;}
._24{width:121.045624pt;}
._f{width:150.447168pt;}
._c{width:183.682667pt;}
._9{width:196.269333pt;}
._2{width:199.219416pt;}
._4{width:201.192448pt;}
._3{width:211.780567pt;}
._5{width:218.840716pt;}
._18{width:245.076998pt;}
._16{width:249.480403pt;}
.fs2e{font-size:30.632533pt;}
.fs4d{font-size:32.517867pt;}
.fs4c{font-size:32.590400pt;}
.fs41{font-size:33.999467pt;}
.fs3f{font-size:34.195200pt;}
.fs3b{font-size:34.444800pt;}
.fs3e{font-size:34.604800pt;}
.fs3c{font-size:34.809600pt;}
.fs30{font-size:34.813867pt;}
.fs45{font-size:35.437867pt;}
.fs40{font-size:37.044800pt;}
.fs47{font-size:37.528000pt;}
.fs46{font-size:37.543467pt;}
.fs3d{font-size:37.710400pt;}
.fs39{font-size:40.099733pt;}
.fs35{font-size:40.233067pt;}
.fs2f{font-size:40.843733pt;}
.fs43{font-size:41.256000pt;}
.fs58{font-size:41.261333pt;}
.fs1c{font-size:41.603733pt;}
.fs1a{font-size:42.355733pt;}
.fs4b{font-size:42.874667pt;}
.fs2b{font-size:45.585067pt;}
.fs34{font-size:45.586133pt;}
.fs51{font-size:45.705067pt;}
.fs1b{font-size:45.885333pt;}
.fs31{font-size:46.417600pt;}
.fsc{font-size:46.510400pt;}
.fs49{font-size:49.913600pt;}
.fs3a{font-size:51.410133pt;}
.fs44{font-size:52.892800pt;}
.fs2d{font-size:53.069867pt;}
.fs33{font-size:53.070400pt;}
.fs6{font-size:53.120000pt;}
.fs4f{font-size:53.209067pt;}
.fs37{font-size:53.478400pt;}
.fs36{font-size:53.644267pt;}
.fs59{font-size:53.837333pt;}
.fs12{font-size:54.327467pt;}
.fs53{font-size:56.226667pt;}
.fs17{font-size:56.727467pt;}
.fs56{font-size:57.530133pt;}
.fs15{font-size:57.654933pt;}
.fs21{font-size:57.706133pt;}
.fs38{font-size:60.149867pt;}
.fs42{font-size:61.884267pt;}
.fs57{font-size:61.891733pt;}
.fs4a{font-size:63.992000pt;}
.fs1f{font-size:64.986667pt;}
.fs2a{font-size:68.038933pt;}
.fs54{font-size:68.046400pt;}
.fs50{font-size:68.216533pt;}
.fs26{font-size:74.628267pt;}
.fs48{font-size:74.870400pt;}
.fs23{font-size:75.584000pt;}
.fs2c{font-size:79.605333pt;}
.fs32{font-size:79.605867pt;}
.fs4e{font-size:79.813333pt;}
.fs8{font-size:80.980267pt;}
.fs18{font-size:82.560000pt;}
.fsd{font-size:82.685333pt;}
.fs52{font-size:83.920533pt;}
.fs16{font-size:85.090667pt;}
.fs20{font-size:86.129067pt;}
.fs19{font-size:86.196800pt;}
.fs55{font-size:86.294933pt;}
.fs14{font-size:86.482133pt;}
.fs5b{font-size:86.910933pt;}
.fsf{font-size:92.720324pt;}
.fsb{font-size:92.906380pt;}
.fsa{font-size:96.000000pt;}
.fs10{font-size:96.581867pt;}
.fs1e{font-size:96.995200pt;}
.fse{font-size:97.918400pt;}
.fs29{font-size:100.486400pt;}
.fs11{font-size:101.920697pt;}
.fs1d{font-size:106.483733pt;}
.fs9{font-size:106.880000pt;}
.fs25{font-size:111.385600pt;}
.fs4{font-size:112.000000pt;}
.fs22{font-size:112.812267pt;}
.fs13{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.fs27{font-size:130.321067pt;}
.fs5a{font-size:130.366933pt;}
.fs24{font-size:131.989867pt;}
.fs7{font-size:136.194133pt;}
.fs0{font-size:149.120000pt;}
.fs5{font-size:149.365333pt;}
.fs28{font-size:149.440000pt;}
.fs2{font-size:170.880000pt;}
.fs3{font-size:192.000000pt;}
.fs5c{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:1.920000pt;}
.y7f{bottom:4.150267pt;}
.y61{bottom:5.920000pt;}
.y23a{bottom:8.038000pt;}
.y200{bottom:8.602533pt;}
.y202{bottom:8.602800pt;}
.yc2{bottom:8.825067pt;}
.y22a{bottom:10.169600pt;}
.y7e{bottom:10.186533pt;}
.y82{bottom:10.198262pt;}
.y7c{bottom:10.201518pt;}
.y57{bottom:12.774800pt;}
.y163{bottom:13.583200pt;}
.y155{bottom:13.722133pt;}
.y1ff{bottom:15.735733pt;}
.y201{bottom:15.736000pt;}
.y12{bottom:21.440000pt;}
.y162{bottom:24.269200pt;}
.y181{bottom:24.573106pt;}
.y154{bottom:24.600133pt;}
.y13a{bottom:26.199183pt;}
.y19f{bottom:27.680267pt;}
.y7b{bottom:28.672800pt;}
.y7d{bottom:28.672933pt;}
.ydd{bottom:31.559467pt;}
.yba{bottom:32.650000pt;}
.y165{bottom:34.955333pt;}
.y157{bottom:35.478133pt;}
.y95{bottom:36.213733pt;}
.y80{bottom:37.874042pt;}
.y19e{bottom:38.543600pt;}
.ydc{bottom:38.880400pt;}
.ybb{bottom:40.591700pt;}
.y1b2{bottom:41.441733pt;}
.y81{bottom:43.905333pt;}
.yd9{bottom:44.616800pt;}
.yd8{bottom:44.617600pt;}
.y178{bottom:45.687067pt;}
.y15b{bottom:47.066133pt;}
.y16b{bottom:47.603467pt;}
.y14c{bottom:47.806400pt;}
.y1b1{bottom:48.092933pt;}
.yb6{bottom:48.807867pt;}
.y19d{bottom:49.407067pt;}
.y5e{bottom:52.453333pt;}
.y179{bottom:52.726333pt;}
.y16a{bottom:52.760400pt;}
.y175{bottom:52.762933pt;}
.y176{bottom:52.763867pt;}
.y130{bottom:53.021333pt;}
.y15c{bottom:53.477733pt;}
.y14d{bottom:54.333333pt;}
.ya6{bottom:56.800000pt;}
.y1bb{bottom:56.960000pt;}
.yd0{bottom:57.324000pt;}
.y18{bottom:58.400000pt;}
.y232{bottom:58.716480pt;}
.y1c6{bottom:59.200000pt;}
.y5d{bottom:59.815200pt;}
.y19c{bottom:60.270533pt;}
.ycb{bottom:60.295467pt;}
.y91{bottom:60.301600pt;}
.y131{bottom:60.565033pt;}
.y11f{bottom:62.085733pt;}
.y12f{bottom:62.400000pt;}
.y9a{bottom:62.727333pt;}
.y23c{bottom:62.814667pt;}
.yed{bottom:63.665600pt;}
.y18a{bottom:63.830800pt;}
.y193{bottom:63.832133pt;}
.y194{bottom:63.832667pt;}
.y14{bottom:64.785600pt;}
.y248{bottom:64.949333pt;}
.y140{bottom:66.447467pt;}
.y143{bottom:66.447733pt;}
.y149{bottom:66.447867pt;}
.y14a{bottom:66.448000pt;}
.ya0{bottom:67.090933pt;}
.ydb{bottom:68.640000pt;}
.yeb{bottom:68.780667pt;}
.y99{bottom:69.818267pt;}
.y26{bottom:70.096000pt;}
.y220{bottom:71.448560pt;}
.y177{bottom:74.013333pt;}
.y9f{bottom:74.181867pt;}
.y1a0{bottom:75.205217pt;}
.y195{bottom:75.414667pt;}
.y14b{bottom:75.520000pt;}
.y15a{bottom:77.814667pt;}
.y139{bottom:78.167067pt;}
.yb1{bottom:80.315200pt;}
.y12e{bottom:81.470133pt;}
.y122{bottom:81.475867pt;}
.yb8{bottom:83.528000pt;}
.y22b{bottom:83.880863pt;}
.y9c{bottom:84.181867pt;}
.y14e{bottom:86.242133pt;}
.y12d{bottom:87.933867pt;}
.y12c{bottom:87.934133pt;}
.y121{bottom:87.939600pt;}
.y120{bottom:87.939867pt;}
.y15d{bottom:91.237783pt;}
.y9b{bottom:91.272800pt;}
.y196{bottom:93.539733pt;}
.ya5{bottom:93.600000pt;}
.y138{bottom:94.930933pt;}
.y1c0{bottom:95.690667pt;}
.ybc{bottom:97.065867pt;}
.y197{bottom:99.650433pt;}
.y58{bottom:99.840000pt;}
.ycf{bottom:100.196000pt;}
.y20c{bottom:100.809600pt;}
.y56{bottom:101.680000pt;}
.y1c5{bottom:101.760000pt;}
.y1b6{bottom:101.813600pt;}
.y23b{bottom:103.173467pt;}
.y90{bottom:103.360000pt;}
.y5c{bottom:106.762657pt;}
.y1ba{bottom:106.880000pt;}
.y11{bottom:107.680000pt;}
.y247{bottom:107.821333pt;}
.y1b5{bottom:108.464667pt;}
.y231{bottom:109.603733pt;}
.y17a{bottom:110.606267pt;}
.y239{bottom:111.414667pt;}
.y137{bottom:111.694667pt;}
.y1d5{bottom:112.121600pt;}
.yde{bottom:112.305333pt;}
.y25{bottom:112.968000pt;}
.yec{bottom:114.552800pt;}
.y1c4{bottom:117.600000pt;}
.y14f{bottom:118.150933pt;}
.y132{bottom:119.238400pt;}
.y21f{bottom:122.332880pt;}
.y83{bottom:122.880000pt;}
.y3f{bottom:122.896000pt;}
.yb0{bottom:123.187200pt;}
.y118{bottom:125.071221pt;}
.yb7{bottom:126.400000pt;}
.y9e{bottom:127.090933pt;}
.y12b{bottom:128.249733pt;}
.y136{bottom:128.458533pt;}
.y15e{bottom:128.997833pt;}
.y13{bottom:129.280000pt;}
.y5a{bottom:130.480000pt;}
.ya2{bottom:131.454533pt;}
.y78{bottom:133.757995pt;}
.y9d{bottom:134.181867pt;}
.y4a{bottom:134.560800pt;}
.y1c3{bottom:136.960000pt;}
.y25c{bottom:137.386667pt;}
.ya1{bottom:138.545467pt;}
.y76{bottom:138.919201pt;}
.y184{bottom:140.329267pt;}
.yf7{bottom:140.958720pt;}
.y1b0{bottom:142.231867pt;}
.y1bf{bottom:142.645333pt;}
.y1b9{bottom:143.680000pt;}
.y20b{bottom:143.681600pt;}
.y70{bottom:144.254928pt;}
.y1f7{bottom:144.746667pt;}
.y94{bottom:145.240400pt;}
.y1d4{bottom:145.881333pt;}
.y254{bottom:147.297587pt;}
.y166{bottom:147.514933pt;}
.yc6{bottom:147.837067pt;}
.y142{bottom:147.932267pt;}
.y238{bottom:148.230933pt;}
.y10e{bottom:148.266667pt;}
.y1af{bottom:148.712533pt;}
.y6e{bottom:149.416268pt;}
.y145{bottom:149.474800pt;}
.y147{bottom:149.474933pt;}
.y74{bottom:149.584667pt;}
.y1e2{bottom:149.609600pt;}
.y198{bottom:149.894000pt;}
.y150{bottom:150.059733pt;}
.y72{bottom:151.037333pt;}
.y71{bottom:151.037467pt;}
.yce{bottom:152.060800pt;}
.y141{bottom:152.173600pt;}
.y16d{bottom:152.198667pt;}
.y174{bottom:152.199867pt;}
.ybd{bottom:153.540133pt;}
.yc3{bottom:153.540267pt;}
.y158{bottom:153.685867pt;}
.y144{bottom:153.716133pt;}
.y148{bottom:153.716267pt;}
.y146{bottom:153.716400pt;}
.y16f{bottom:153.785867pt;}
.y171{bottom:153.786267pt;}
.y10f{bottom:154.750749pt;}
.y73{bottom:154.752400pt;}
.y79{bottom:154.752667pt;}
.y1ee{bottom:155.001600pt;}
.y24{bottom:155.840000pt;}
.yea{bottom:156.218267pt;}
.y204{bottom:156.512800pt;}
.y206{bottom:156.513333pt;}
.y16c{bottom:156.562400pt;}
.y173{bottom:156.563467pt;}
.y208{bottom:157.353260pt;}
.y16e{bottom:158.149467pt;}
.y170{bottom:158.149867pt;}
.y172{bottom:158.150000pt;}
.ye6{bottom:158.219200pt;}
.y237{bottom:159.946667pt;}
.y6c{bottom:160.081733pt;}
.y203{bottom:163.646000pt;}
.y205{bottom:163.646533pt;}
.y77{bottom:165.047867pt;}
.y6b{bottom:165.249467pt;}
.ye9{bottom:165.407467pt;}
.y3e{bottom:165.768000pt;}
.yaf{bottom:166.245600pt;}
.y15f{bottom:166.757882pt;}
.y97{bottom:167.045467pt;}
.y96{bottom:167.045600pt;}
.ye5{bottom:167.526133pt;}
.ye7{bottom:167.526267pt;}
.y22d{bottom:167.596667pt;}
.y182{bottom:167.703867pt;}
.y17b{bottom:168.486267pt;}
.yb{bottom:168.800800pt;}
.y117{bottom:170.026667pt;}
.y75{bottom:170.215600pt;}
.y21e{bottom:173.291920pt;}
.y13b{bottom:174.559067pt;}
.ya4{bottom:175.200000pt;}
.y6f{bottom:175.544800pt;}
.y240{bottom:175.994000pt;}
.y159{bottom:176.167067pt;}
.y49{bottom:177.432800pt;}
.y133{bottom:177.911867pt;}
.y6d{bottom:180.712667pt;}
.y151{bottom:181.968667pt;}
.y18c{bottom:184.135867pt;}
.y1e1{bottom:184.160000pt;}
.y116{bottom:184.506667pt;}
.yf6{bottom:184.800000pt;}
.y18f{bottom:186.055867pt;}
.y192{bottom:186.056133pt;}
.y20a{bottom:186.553600pt;}
.y23f{bottom:186.857867pt;}
.y1f6{bottom:187.712000pt;}
.y1ed{bottom:188.761467pt;}
.y18b{bottom:189.415200pt;}
.y18d{bottom:189.415333pt;}
.y1be{bottom:189.600000pt;}
.y22{bottom:190.232800pt;}
.y253{bottom:190.257851pt;}
.y25b{bottom:190.266667pt;}
.y18e{bottom:191.335200pt;}
.y190{bottom:191.335333pt;}
.y191{bottom:191.335467pt;}
.ycd{bottom:194.933333pt;}
.y53{bottom:197.456000pt;}
.y128{bottom:197.821067pt;}
.y124{bottom:197.822400pt;}
.y6a{bottom:198.480000pt;}
.y115{bottom:198.986667pt;}
.y1a1{bottom:199.458800pt;}
.y199{bottom:200.137600pt;}
.y1a2{bottom:200.816800pt;}
.yb5{bottom:202.013333pt;}
.y1ae{bottom:202.813333pt;}
.y12a{bottom:203.433867pt;}
.y129{bottom:203.434133pt;}
.y127{bottom:203.434400pt;}
.y126{bottom:203.435333pt;}
.y125{bottom:203.435600pt;}
.y123{bottom:203.435733pt;}
.y160{bottom:204.517932pt;}
.y110{bottom:206.986667pt;}
.yae{bottom:209.117600pt;}
.ybe{bottom:210.014400pt;}
.y230{bottom:210.560000pt;}
.y1b4{bottom:210.789600pt;}
.y8a{bottom:211.664800pt;}
.ya{bottom:211.672800pt;}
.ya3{bottom:212.000000pt;}
.y1d3{bottom:213.254400pt;}
.y114{bottom:213.546667pt;}
.y152{bottom:213.877467pt;}
.y36{bottom:214.880000pt;}
.y1b3{bottom:217.440800pt;}
.y48{bottom:220.304800pt;}
.y21d{bottom:224.250960pt;}
.y214{bottom:225.259200pt;}
.yda{bottom:226.080000pt;}
.y17c{bottom:226.366133pt;}
.yb4{bottom:227.046400pt;}
.y209{bottom:229.612000pt;}
.y1f5{bottom:230.677333pt;}
.y252{bottom:233.139659pt;}
.y21{bottom:233.291200pt;}
.y180{bottom:236.534133pt;}
.y134{bottom:236.585200pt;}
.ycc{bottom:237.805333pt;}
.y25a{bottom:238.989867pt;}
.y52{bottom:240.328000pt;}
.yc0{bottom:240.898800pt;}
.y161{bottom:242.277981pt;}
.y60{bottom:242.941200pt;}
.y23e{bottom:245.305467pt;}
.y153{bottom:245.789167pt;}
.y1d2{bottom:246.985067pt;}
.y2e{bottom:248.011200pt;}
.yb9{bottom:248.217333pt;}
.y17f{bottom:249.048800pt;}
.y5f{bottom:249.382800pt;}
.y19a{bottom:250.381200pt;}
.y164{bottom:250.808838pt;}
.y1e0{bottom:252.441120pt;}
.y3d{bottom:252.960000pt;}
.y1c2{bottom:254.560000pt;}
.y89{bottom:254.723200pt;}
.y9{bottom:254.731200pt;}
.y156{bottom:255.213867pt;}
.y22f{bottom:255.360000pt;}
.y1ec{bottom:256.134533pt;}
.y23d{bottom:256.169467pt;}
.y119{bottom:256.346667pt;}
.y35{bottom:256.800000pt;}
.y22e{bottom:257.487200pt;}
.y5b{bottom:258.585067pt;}
.y1b8{bottom:258.882400pt;}
.y111{bottom:259.226667pt;}
.y17e{bottom:261.563333pt;}
.y186{bottom:263.124560pt;}
.y47{bottom:263.363200pt;}
.y1b7{bottom:264.510267pt;}
.ybf{bottom:266.488667pt;}
.y226{bottom:267.147627pt;}
.y213{bottom:268.193867pt;}
.y98{bottom:271.280000pt;}
.y251{bottom:276.099923pt;}
.y20{bottom:276.163200pt;}
.y185{bottom:278.770800pt;}
.yc1{bottom:280.607200pt;}
.y1d1{bottom:280.715733pt;}
.y1a5{bottom:282.284652pt;}
.y1a7{bottom:282.290217pt;}
.y51{bottom:283.200000pt;}
.y183{bottom:283.463733pt;}
.y17d{bottom:284.246000pt;}
.y1fc{bottom:285.958400pt;}
.y1fe{bottom:285.958800pt;}
.y1df{bottom:286.054560pt;}
.yf5{bottom:286.558533pt;}
.y1eb{bottom:289.894667pt;}
.y1fb{bottom:293.091600pt;}
.y1fd{bottom:293.092000pt;}
.y22c{bottom:293.120000pt;}
.y1fa{bottom:293.814667pt;}
.y34{bottom:294.555200pt;}
.yad{bottom:295.048000pt;}
.y135{bottom:295.258667pt;}
.y1a4{bottom:295.866702pt;}
.y1a6{bottom:295.872267pt;}
.y88{bottom:297.595200pt;}
.y8{bottom:297.603200pt;}
.y1a3{bottom:299.264251pt;}
.ye4{bottom:300.080000pt;}
.y19b{bottom:300.624667pt;}
.ye8{bottom:301.213333pt;}
.y229{bottom:302.814667pt;}
.y207{bottom:305.263200pt;}
.y212{bottom:311.128000pt;}
.y112{bottom:311.466667pt;}
.y259{bottom:312.589867pt;}
.y7a{bottom:313.013333pt;}
.y1d0{bottom:314.446400pt;}
.y225{bottom:318.106667pt;}
.y1f{bottom:319.035200pt;}
.y250{bottom:319.060187pt;}
.y1de{bottom:319.814400pt;}
.y21c{bottom:319.929920pt;}
.yd7{bottom:320.080000pt;}
.yca{bottom:329.680000pt;}
.y1f4{bottom:332.450667pt;}
.y2d{bottom:333.755200pt;}
.yf4{bottom:337.594933pt;}
.y7{bottom:340.475200pt;}
.y3c{bottom:343.683200pt;}
.y1cf{bottom:348.177067pt;}
.y46{bottom:349.107200pt;}
.y211{bottom:354.062667pt;}
.y50{bottom:356.480000pt;}
.y1ea{bottom:357.414667pt;}
.y11a{bottom:357.866667pt;}
.y24f{bottom:361.941995pt;}
.y1e{bottom:362.093600pt;}
.y21b{bottom:362.893920pt;}
.y113{bottom:363.626667pt;}
.y2c{bottom:376.813600pt;}
.y11e{bottom:378.613333pt;}
.y1f3{bottom:379.424000pt;}
.yf3{bottom:380.466933pt;}
.y33{bottom:380.485333pt;}
.y1ce{bottom:381.908000pt;}
.y13f{bottom:382.480000pt;}
.y87{bottom:383.525600pt;}
.y6{bottom:383.533600pt;}
.y258{bottom:386.106667pt;}
.y1dd{bottom:386.616000pt;}
.y4f{bottom:390.585333pt;}
.y1e9{bottom:391.174667pt;}
.y45{bottom:391.979200pt;}
.y10c{bottom:395.470355pt;}
.yac{bottom:401.921600pt;}
.y24e{bottom:404.902259pt;}
.y1d{bottom:404.965600pt;}
.y21a{bottom:413.778240pt;}
.y224{bottom:413.786667pt;}
.y103{bottom:415.866667pt;}
.y2b{bottom:419.685600pt;}
.y1dc{bottom:420.346667pt;}
.y104{bottom:421.625583pt;}
.y189{bottom:422.814667pt;}
.yf2{bottom:423.338933pt;}
.y32{bottom:423.404000pt;}
.y1f2{bottom:426.397333pt;}
.y86{bottom:426.397600pt;}
.y5{bottom:426.405600pt;}
.y3b{bottom:429.007867pt;}
.y169{bottom:431.413333pt;}
.y10b{bottom:434.986667pt;}
.y44{bottom:435.037600pt;}
.y24d{bottom:447.784067pt;}
.y10a{bottom:447.786667pt;}
.y1c{bottom:447.837600pt;}
.y1cd{bottom:449.424000pt;}
.yd6{bottom:451.685280pt;}
.y1db{bottom:454.077333pt;}
.y210{bottom:455.837600pt;}
.y246{bottom:456.160000pt;}
.y219{bottom:456.742240pt;}
.y223{bottom:456.744533pt;}
.y1e8{bottom:458.546667pt;}
.y257{bottom:459.706667pt;}
.y109{bottom:460.506667pt;}
.y2a{bottom:462.557600pt;}
.y105{bottom:466.266667pt;}
.y31{bottom:466.322667pt;}
.y85{bottom:469.269600pt;}
.y4{bottom:469.277600pt;}
.yf9{bottom:469.626667pt;}
.yfe{bottom:471.146667pt;}
.y3a{bottom:471.942533pt;}
.yab{bottom:472.008000pt;}
.y108{bottom:473.306667pt;}
.yf1{bottom:474.375200pt;}
.y4e{bottom:475.360000pt;}
.yfd{bottom:477.626667pt;}
.y102{bottom:479.306667pt;}
.y1cc{bottom:483.148000pt;}
.y101{bottom:485.946667pt;}
.y1da{bottom:487.808000pt;}
.y24c{bottom:490.744331pt;}
.y1b{bottom:490.896000pt;}
.y1e7{bottom:492.306667pt;}
.y20f{bottom:498.896000pt;}
.y222{bottom:499.277200pt;}
.y245{bottom:500.960000pt;}
.yd5{bottom:502.572480pt;}
.y93{bottom:504.746667pt;}
.y1ad{bottom:504.800000pt;}
.y29{bottom:505.616000pt;}
.y218{bottom:507.701280pt;}
.y10d{bottom:508.426667pt;}
.y30{bottom:509.241333pt;}
.y8f{bottom:510.400000pt;}
.y106{bottom:510.986667pt;}
.y3{bottom:512.336000pt;}
.y4d{bottom:513.304000pt;}
.y39{bottom:514.877333pt;}
.yaa{bottom:514.880000pt;}
.y1cb{bottom:516.872000pt;}
.y43{bottom:520.781600pt;}
.y1d9{bottom:521.538667pt;}
.y236{bottom:522.080000pt;}
.ye3{bottom:522.720000pt;}
.y1e6{bottom:526.066667pt;}
.y1f1{bottom:528.320800pt;}
.y256{bottom:533.306667pt;}
.y24b{bottom:533.704595pt;}
.y1a{bottom:533.768000pt;}
.y66{bottom:534.405333pt;}
.yfa{bottom:536.977676pt;}
.y244{bottom:537.760000pt;}
.y10{bottom:539.205600pt;}
.y20e{bottom:541.768000pt;}
.y221{bottom:542.158533pt;}
.yd4{bottom:545.444533pt;}
.y1ac{bottom:547.040000pt;}
.y8e{bottom:547.200000pt;}
.y28{bottom:548.488000pt;}
.y1ca{bottom:550.596000pt;}
.y2f{bottom:552.160000pt;}
.y84{bottom:555.200000pt;}
.y2{bottom:555.208000pt;}
.y1d8{bottom:555.269333pt;}
.y107{bottom:555.626667pt;}
.y4c{bottom:556.176000pt;}
.y38{bottom:557.812000pt;}
.y217{bottom:558.585600pt;}
.y1c1{bottom:558.880000pt;}
.y1e5{bottom:559.826667pt;}
.y69{bottom:562.061600pt;}
.y42{bottom:563.840000pt;}
.y235{bottom:566.880000pt;}
.y1f0{bottom:571.192800pt;}
.ye2{bottom:574.556000pt;}
.y243{bottom:574.560000pt;}
.yf0{bottom:576.149333pt;}
.y24a{bottom:576.586403pt;}
.y19{bottom:576.640000pt;}
.y17{bottom:576.828400pt;}
.y65{bottom:577.324000pt;}
.yf{bottom:582.077600pt;}
.y1c9{bottom:584.320000pt;}
.y20d{bottom:584.640000pt;}
.y100{bottom:585.466667pt;}
.yfc{bottom:587.546667pt;}
.yff{bottom:591.066667pt;}
.y27{bottom:591.360000pt;}
.y1ab{bottom:592.800000pt;}
.yfb{bottom:593.146667pt;}
.y1e4{bottom:593.586667pt;}
.yc9{bottom:594.415680pt;}
.yd3{bottom:595.738800pt;}
.y13e{bottom:596.774400pt;}
.y1{bottom:598.080000pt;}
.ya9{bottom:600.808000pt;}
.y68{bottom:605.120000pt;}
.y255{bottom:606.906667pt;}
.y41{bottom:609.280000pt;}
.y11d{bottom:613.120000pt;}
.ye1{bottom:617.490667pt;}
.yef{bottom:619.114667pt;}
.y249{bottom:619.546667pt;}
.y16{bottom:619.700000pt;}
.y64{bottom:620.242667pt;}
.y1bd{bottom:620.312800pt;}
.y1ef{bottom:622.080000pt;}
.y1d7{bottom:623.506560pt;}
.yb3{bottom:624.472800pt;}
.yc5{bottom:624.483680pt;}
.ye{bottom:624.949600pt;}
.y8d{bottom:626.400000pt;}
.yc8{bottom:637.287680pt;}
.yd2{bottom:638.610800pt;}
.y13d{bottom:639.832800pt;}
.y1f9{bottom:640.963680pt;}
.y4b{bottom:641.920000pt;}
.y1aa{bottom:642.246933pt;}
.ya8{bottom:643.680000pt;}
.y37{bottom:644.160000pt;}
.y67{bottom:647.040000pt;}
.y168{bottom:647.363680pt;}
.y1c8{bottom:651.840000pt;}
.y188{bottom:652.009600pt;}
.y216{bottom:652.505333pt;}
.y11c{bottom:654.566720pt;}
.y234{bottom:656.480000pt;}
.y1d6{bottom:657.120000pt;}
.y228{bottom:657.283680pt;}
.y55{bottom:659.021600pt;}
.ye0{bottom:660.425333pt;}
.y1e3{bottom:660.960000pt;}
.y8c{bottom:661.600000pt;}
.yee{bottom:662.080000pt;}
.y63{bottom:663.161333pt;}
.yd{bottom:668.008000pt;}
.y242{bottom:670.240000pt;}
.y1bc{bottom:671.200000pt;}
.yb2{bottom:675.360000pt;}
.yc4{bottom:675.520000pt;}
.yf8{bottom:683.226667pt;}
.y1a9{bottom:684.000000pt;}
.ya7{bottom:686.560000pt;}
.yd1{bottom:690.240000pt;}
.y13c{bottom:690.720000pt;}
.y1f8{bottom:692.000000pt;}
.y215{bottom:695.386667pt;}
.y187{bottom:696.000000pt;}
.y11b{bottom:696.320000pt;}
.y23{bottom:696.960000pt;}
.y167{bottom:698.400000pt;}
.y233{bottom:701.280000pt;}
.y54{bottom:702.080000pt;}
.ydf{bottom:703.360000pt;}
.y40{bottom:704.800000pt;}
.y1c7{bottom:705.440000pt;}
.y8b{bottom:705.760000pt;}
.y62{bottom:706.080000pt;}
.y241{bottom:707.040000pt;}
.y227{bottom:708.320000pt;}
.y15{bottom:708.640000pt;}
.yc7{bottom:709.760000pt;}
.yc{bottom:710.880000pt;}
.y92{bottom:714.240000pt;}
.y1a8{bottom:717.760000pt;}
.h49{height:30.064156pt;}
.h75{height:31.914508pt;}
.h74{height:31.985695pt;}
.h62{height:33.368617pt;}
.h60{height:33.560719pt;}
.h5e{height:33.962719pt;}
.h5c{height:34.163719pt;}
.h4b{height:34.167906pt;}
.h59{height:34.713900pt;}
.h67{height:35.714725pt;}
.h61{height:36.357445pt;}
.h6c{height:36.831680pt;}
.h6b{height:36.846859pt;}
.h5d{height:37.010695pt;}
.h53{height:39.486555pt;}
.h4a{height:40.085891pt;}
.h2d{height:40.831789pt;}
.h58{height:41.128107pt;}
.h2b{height:41.569836pt;}
.h66{height:42.314240pt;}
.h65{height:43.028719pt;}
.h70{height:43.209625pt;}
.h2c{height:45.033945pt;}
.h4c{height:45.556336pt;}
.h15{height:45.624704pt;}
.h13{height:45.647414pt;}
.h45{height:45.941200pt;}
.h51{height:45.942275pt;}
.h7a{height:46.062138pt;}
.h9{height:49.134667pt;}
.h6f{height:51.193600pt;}
.h5a{height:51.811775pt;}
.hc{height:52.134375pt;}
.h55{height:52.486125pt;}
.h54{height:52.648914pt;}
.h68{height:53.306025pt;}
.h20{height:53.319437pt;}
.h27{height:53.535000pt;}
.h44{height:54.431147pt;}
.h79{height:54.573227pt;}
.h48{height:55.350213pt;}
.h50{height:55.350769pt;}
.h78{height:55.495394pt;}
.h8f{height:56.150656pt;}
.h81{height:58.642656pt;}
.h26{height:59.164975pt;}
.h35{height:60.185694pt;}
.h57{height:62.734431pt;}
.h4f{height:63.684693pt;}
.h19{height:64.379053pt;}
.h71{height:64.491937pt;}
.h12{height:64.508238pt;}
.h64{height:64.543356pt;}
.h8d{height:64.551144pt;}
.h69{height:64.551356pt;}
.h1a{height:66.400000pt;}
.h1e{height:67.060261pt;}
.h7f{height:67.136427pt;}
.h46{height:68.570487pt;}
.h7b{height:68.749475pt;}
.h1f{height:70.767203pt;}
.h89{height:70.970269pt;}
.h3c{height:75.211300pt;}
.h38{height:76.174500pt;}
.h6e{height:78.087487pt;}
.h72{height:78.089088pt;}
.h14{height:81.110759pt;}
.h16{height:81.151133pt;}
.hf{height:81.612925pt;}
.h47{height:83.025875pt;}
.h4e{height:83.026431pt;}
.h77{height:83.242812pt;}
.h85{height:87.526494pt;}
.h25{height:88.746906pt;}
.h3b{height:89.108480pt;}
.h34{height:89.829925pt;}
.h29{height:89.900569pt;}
.h8b{height:90.002919pt;}
.h23{height:90.198162pt;}
.h37{height:90.249813pt;}
.h92{height:90.645387pt;}
.h1c{height:94.742661pt;}
.h1d{height:94.789820pt;}
.h17{height:96.053743pt;}
.h18{height:96.101555pt;}
.h84{height:97.596958pt;}
.h32{height:101.162962pt;}
.h43{height:104.804175pt;}
.h10{height:107.715000pt;}
.h30{height:111.059206pt;}
.h3d{height:112.255800pt;}
.h8{height:112.875000pt;}
.h39{height:113.693613pt;}
.h31{height:115.666667pt;}
.h82{height:116.060360pt;}
.h80{height:116.060894pt;}
.h83{height:116.061427pt;}
.h21{height:118.035000pt;}
.h7d{height:118.036067pt;}
.h28{height:119.533333pt;}
.h5{height:129.000000pt;}
.h3e{height:135.920800pt;}
.h91{height:135.968637pt;}
.he{height:137.258150pt;}
.h33{height:141.373333pt;}
.h2f{height:147.666667pt;}
.h2{height:150.285000pt;}
.h2e{height:150.285213pt;}
.h4{height:150.286600pt;}
.h86{height:150.287133pt;}
.h3f{height:150.290120pt;}
.ha{height:150.532250pt;}
.h42{height:150.607500pt;}
.h1b{height:155.685819pt;}
.h87{height:155.861250pt;}
.h56{height:171.066667pt;}
.h6{height:172.215000pt;}
.h63{height:176.000000pt;}
.h7{height:193.500000pt;}
.h22{height:194.400000pt;}
.h3a{height:203.000000pt;}
.h24{height:204.000000pt;}
.h36{height:205.600000pt;}
.h6d{height:212.933333pt;}
.h4d{height:226.400000pt;}
.h8c{height:249.733333pt;}
.h93{height:258.000000pt;}
.h5f{height:267.198667pt;}
.h5b{height:271.893333pt;}
.h76{height:287.533333pt;}
.h7c{height:293.280000pt;}
.h11{height:295.333333pt;}
.h2a{height:302.668000pt;}
.h6a{height:303.800000pt;}
.h52{height:316.160000pt;}
.h73{height:317.598667pt;}
.h88{height:328.600000pt;}
.h7e{height:331.065333pt;}
.h8e{height:347.066667pt;}
.h8a{height:348.092000pt;}
.h3{height:423.360000pt;}
.h90{height:444.332000pt;}
.hd{height:477.600000pt;}
.hb{height:508.320000pt;}
.h41{height:793.333333pt;}
.h40{height:793.626667pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w5{width:97.133333pt;}
.w3{width:97.134667pt;}
.wc{width:148.933333pt;}
.w9{width:163.666667pt;}
.we{width:176.000000pt;}
.w1d{width:208.480000pt;}
.w21{width:249.733333pt;}
.w23{width:290.400000pt;}
.w22{width:314.132000pt;}
.w1f{width:333.466667pt;}
.w17{width:340.800000pt;}
.w16{width:346.866667pt;}
.w20{width:348.133333pt;}
.w12{width:353.333333pt;}
.w11{width:355.533333pt;}
.wd{width:373.568000pt;}
.w10{width:380.334667pt;}
.w14{width:392.533333pt;}
.w8{width:393.733333pt;}
.w1b{width:431.066667pt;}
.w15{width:435.666667pt;}
.w1e{width:440.666667pt;}
.w13{width:451.533333pt;}
.w4{width:452.480000pt;}
.w19{width:498.266667pt;}
.w1a{width:539.066667pt;}
.wb{width:547.866667pt;}
.w6{width:567.666667pt;}
.w18{width:569.732000pt;}
.w7{width:582.078667pt;}
.w2{width:655.360000pt;}
.wa{width:663.333333pt;}
.w1c{width:699.198667pt;}
.wf{width:708.798667pt;}
.w0{width:1122.560000pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x61{left:1.501333pt;}
.x116{left:7.032800pt;}
.xcf{left:10.813867pt;}
.x4b{left:12.901467pt;}
.x63{left:13.888933pt;}
.xd9{left:14.802000pt;}
.xc2{left:15.804400pt;}
.x8b{left:17.336133pt;}
.x113{left:18.595979pt;}
.x7a{left:20.378933pt;}
.x106{left:21.393600pt;}
.x5a{left:23.631200pt;}
.xd0{left:24.785445pt;}
.xf4{left:27.141867pt;}
.xce{left:29.555116pt;}
.xe6{left:31.158746pt;}
.x7b{left:33.297733pt;}
.x107{left:34.397600pt;}
.x97{left:35.814133pt;}
.xcd{left:36.767467pt;}
.x51{left:39.200000pt;}
.xc{left:40.800000pt;}
.x89{left:45.070533pt;}
.xdb{left:46.128400pt;}
.xf{left:48.001280pt;}
.xa5{left:49.296000pt;}
.x41{left:50.240000pt;}
.x10f{left:52.277893pt;}
.x28{left:53.646667pt;}
.xc8{left:55.985333pt;}
.x9c{left:59.874667pt;}
.x32{left:61.280000pt;}
.xa{left:62.400640pt;}
.x9{left:63.369920pt;}
.x9b{left:66.193333pt;}
.x3d{left:67.355040pt;}
.x43{left:68.960000pt;}
.x102{left:70.761333pt;}
.x26{left:72.758667pt;}
.x56{left:74.880000pt;}
.xdc{left:76.619733pt;}
.xa8{left:77.928000pt;}
.x3{left:79.512640pt;}
.x84{left:80.960000pt;}
.x92{left:82.901867pt;}
.x2a{left:84.320000pt;}
.x94{left:86.236960pt;}
.x64{left:87.135333pt;}
.x115{left:88.640000pt;}
.x69{left:90.400000pt;}
.x101{left:91.356640pt;}
.x1e{left:93.920000pt;}
.x2d{left:95.274667pt;}
.x25{left:97.600000pt;}
.x68{left:100.554355pt;}
.xc1{left:102.613333pt;}
.x31{left:103.668533pt;}
.x39{left:104.933333pt;}
.x6e{left:106.368160pt;}
.xe1{left:108.902133pt;}
.x86{left:110.137200pt;}
.x67{left:111.206667pt;}
.x3c{left:113.097600pt;}
.x9a{left:114.080000pt;}
.x119{left:116.150629pt;}
.x20{left:117.741920pt;}
.xa7{left:118.962667pt;}
.x9f{left:120.413333pt;}
.x103{left:121.398667pt;}
.x44{left:122.866880pt;}
.xa0{left:124.338133pt;}
.x1{left:126.560000pt;}
.x2e{left:127.465333pt;}
.x90{left:129.188933pt;}
.x10d{left:130.285573pt;}
.x21{left:131.647360pt;}
.x62{left:133.487660pt;}
.x65{left:135.847332pt;}
.xd8{left:139.691333pt;}
.x46{left:141.760000pt;}
.xeb{left:143.200000pt;}
.x66{left:145.004033pt;}
.x6b{left:146.220480pt;}
.x118{left:147.840000pt;}
.xde{left:148.800000pt;}
.x1c{left:150.914667pt;}
.x3b{left:153.434533pt;}
.x48{left:154.946667pt;}
.xcc{left:156.080000pt;}
.x27{left:158.018667pt;}
.xff{left:159.520000pt;}
.x33{left:162.240933pt;}
.xc9{left:163.784418pt;}
.x1d{left:166.066667pt;}
.x99{left:168.704667pt;}
.xe9{left:169.856000pt;}
.x8a{left:171.617600pt;}
.xc3{left:173.849467pt;}
.x6{left:175.695040pt;}
.x105{left:177.764320pt;}
.x5b{left:181.655467pt;}
.x8f{left:185.781600pt;}
.xe7{left:189.689500pt;}
.x111{left:191.347333pt;}
.x73{left:192.640000pt;}
.xdd{left:195.460167pt;}
.x108{left:196.947600pt;}
.x5c{left:197.883067pt;}
.x6a{left:199.680000pt;}
.x95{left:201.213333pt;}
.xa6{left:202.293333pt;}
.x54{left:203.216000pt;}
.x87{left:205.296960pt;}
.xec{left:206.400000pt;}
.xf5{left:208.257867pt;}
.xa2{left:209.991600pt;}
.x49{left:211.200000pt;}
.x13{left:214.720000pt;}
.xf6{left:216.793067pt;}
.xa3{left:219.473333pt;}
.xd2{left:222.289867pt;}
.x74{left:223.946667pt;}
.x7c{left:225.442267pt;}
.x78{left:226.715867pt;}
.x10c{left:227.674880pt;}
.x83{left:230.260000pt;}
.x11{left:232.125333pt;}
.xd3{left:234.976933pt;}
.x85{left:237.120000pt;}
.x58{left:238.585280pt;}
.x79{left:239.634800pt;}
.x2b{left:240.640000pt;}
.x53{left:242.737333pt;}
.x52{left:247.360000pt;}
.xd4{left:249.514400pt;}
.x75{left:250.820267pt;}
.x72{left:252.148480pt;}
.xe8{left:254.047600pt;}
.xdf{left:257.272640pt;}
.x91{left:258.843200pt;}
.x1f{left:259.816000pt;}
.x4c{left:262.626430pt;}
.xd1{left:264.448267pt;}
.xf9{left:266.720000pt;}
.x55{left:267.714667pt;}
.xe2{left:269.372800pt;}
.x15{left:272.322080pt;}
.x12{left:274.310000pt;}
.x36{left:276.000000pt;}
.xef{left:277.051067pt;}
.x4d{left:279.225600pt;}
.x47{left:281.597280pt;}
.x24{left:285.278267pt;}
.x109{left:287.766000pt;}
.x5d{left:289.358533pt;}
.x8e{left:294.080000pt;}
.x3f{left:297.760000pt;}
.x45{left:298.716640pt;}
.x4{left:300.322080pt;}
.xe3{left:302.363733pt;}
.xfb{left:304.495680pt;}
.xda{left:309.013333pt;}
.x5e{left:310.523600pt;}
.x112{left:312.132213pt;}
.x10a{left:313.983867pt;}
.xc4{left:318.129333pt;}
.x7e{left:320.058933pt;}
.x34{left:320.979200pt;}
.x3e{left:322.052000pt;}
.x98{left:326.187733pt;}
.x5f{left:327.092933pt;}
.xc5{left:328.665600pt;}
.x6f{left:329.760000pt;}
.xc0{left:333.100320pt;}
.x7d{left:334.069467pt;}
.x30{left:335.646800pt;}
.x70{left:339.200000pt;}
.x8d{left:341.279680pt;}
.xe5{left:342.613333pt;}
.x35{left:343.840000pt;}
.xfa{left:345.280000pt;}
.x77{left:346.765600pt;}
.x2c{left:349.120000pt;}
.x42{left:353.264667pt;}
.x100{left:355.986560pt;}
.x37{left:358.400000pt;}
.xca{left:360.726267pt;}
.x96{left:365.345333pt;}
.xd5{left:368.324667pt;}
.x9e{left:369.760000pt;}
.x11a{left:372.230533pt;}
.x40{left:373.923067pt;}
.x8{left:376.000000pt;}
.x93{left:378.102080pt;}
.x6d{left:378.996800pt;}
.xcb{left:380.529467pt;}
.xed{left:382.033467pt;}
.x9d{left:383.650667pt;}
.x2f{left:384.794800pt;}
.xc7{left:385.813333pt;}
.xb4{left:387.507333pt;}
.xc6{left:391.883333pt;}
.xee{left:394.153333pt;}
.xf0{left:395.177600pt;}
.x110{left:396.508400pt;}
.x57{left:398.080000pt;}
.x10b{left:403.963600pt;}
.x8c{left:408.160000pt;}
.x1a{left:410.705440pt;}
.x38{left:412.791520pt;}
.x10{left:413.920000pt;}
.xe4{left:423.277200pt;}
.x59{left:428.080000pt;}
.x7{left:431.063040pt;}
.x5{left:433.113440pt;}
.x14{left:434.080000pt;}
.x82{left:435.200000pt;}
.xb{left:436.654560pt;}
.x23{left:437.753440pt;}
.x1b{left:441.760000pt;}
.x29{left:443.372000pt;}
.x71{left:445.120000pt;}
.xa9{left:446.388960pt;}
.xf7{left:447.583733pt;}
.xea{left:452.484533pt;}
.x3a{left:455.328000pt;}
.xa4{left:457.424000pt;}
.x6c{left:461.572000pt;}
.xd6{left:464.535600pt;}
.x10e{left:466.749733pt;}
.xe0{left:468.440133pt;}
.x80{left:469.989867pt;}
.x18{left:471.360000pt;}
.xd7{left:472.729467pt;}
.xaa{left:476.547333pt;}
.x7f{left:484.182400pt;}
.x81{left:485.274133pt;}
.xab{left:487.107333pt;}
.x17{left:490.074560pt;}
.x22{left:491.660320pt;}
.x50{left:493.280000pt;}
.x104{left:495.918667pt;}
.x19{left:499.506400pt;}
.x4a{left:500.546667pt;}
.x4e{left:502.237467pt;}
.xf8{left:509.036933pt;}
.xac{left:511.667333pt;}
.x16{left:517.587200pt;}
.x4f{left:521.589600pt;}
.xad{left:537.667333pt;}
.xf1{left:539.250933pt;}
.xae{left:551.987333pt;}
.x2{left:558.076000pt;}
.x76{left:563.886800pt;}
.xa1{left:636.213333pt;}
.x114{left:638.813333pt;}
.xaf{left:646.307333pt;}
.xd{left:648.000000pt;}
.xb0{left:652.067333pt;}
.xf2{left:655.329067pt;}
.xbe{left:668.707333pt;}
.xf3{left:669.668267pt;}
.xb1{left:670.787333pt;}
.xbb{left:689.828981pt;}
.xbc{left:694.227333pt;}
.xb2{left:698.547333pt;}
.x88{left:700.741333pt;}
.xb3{left:712.867333pt;}
.x117{left:772.746667pt;}
.xbd{left:798.947135pt;}
.xb9{left:802.467333pt;}
.xb6{left:820.949763pt;}
.xb5{left:829.187333pt;}
.x60{left:858.480000pt;}
.xfe{left:866.880000pt;}
.xfd{left:874.080000pt;}
.xfc{left:896.160000pt;}
.xb8{left:911.346820pt;}
.xb7{left:955.907333pt;}
.xbf{left:958.947333pt;}
.xba{left:1046.227333pt;}
.xe{left:1048.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; }
  