
    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_249a0f2c596fd36227f40abb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.680176;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_d04218c8822bcd99c84fe8b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dc372e18a39272dced6c593e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f6fa8cb584e0aa9378dd6f70.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_3fd13f181ef165d7cd5bd0aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_e7d96be713a4a30e62499a1f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a278a8c50e5746ee3660bdb7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.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_834d21c3acfbcd63f5beeb1c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1f31f2c24f8ef6762ea647bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_7f9067d09ee87d5c8b2d8550.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690430;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_3137e357760206b9dbb415a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710449;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_fd86f7a6813b9ededf89f597.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d62403b334fff11f091693aa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.863770;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_df561469e0d554caffd55f84.woff2')format("woff");}.fff{font-family:fff;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2192a28750319161cd8759ba.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_847eab5240804f6897920993.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9a3f669ef7c0c3f5566bd355.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_78ea9564d57b6d4ebcc39eb1.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_b942e34cf9906a1cfe6bb806.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_edc513c9e8bd3e4228a691dd.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_1f31f2c24f8ef6762ea647bd.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.750000;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_7f9067d09ee87d5c8b2d8550.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.690430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_3137e357760206b9dbb415a5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.710449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_5ebe0ca7a47b12072723f319.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_30e67b5f0f3504d68fca11f5.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_6edccd62c49a6be5c8d7bd51.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_88d5c72e1c422d84244be682.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_382302fb3a48f69a92b016f2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.854980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_f679cb511d143a4daea48f8e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_19087381ec8325cb7c8db882.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_48b799cc6d2dbfb495634daa.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_76ef385ac6dbdbf5aac26f08.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_344b6a896d9ca7665e93a201.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_6a9e9b2a603b89d9f3c75de7.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_7f9067d09ee87d5c8b2d8550.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.690430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_f2b8f924ffc45f3a323f1ad1.woff2')format("woff");}.ff25{font-family:ff25;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;}
.m18{transform:matrix(0.000000,-0.244475,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244475,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244475,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.244605,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.244605,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.244605,0.250000,0.000000,0,0);}
.m1a{transform:matrix(0.000000,-0.249704,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249704,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249704,0.250000,0.000000,0,0);}
.ma{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);}
.m12{transform:matrix(0.000000,-0.250013,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250013,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250013,0.250000,0.000000,0,0);}
.m22{transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250019,0.250000,0.000000,0,0);}
.m1f{transform:matrix(0.000000,-0.250076,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250076,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250076,0.250000,0.000000,0,0);}
.md{transform:matrix(0.000000,-0.250253,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250253,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250253,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250342,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250342,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250342,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.253168,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253168,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253168,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.253380,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253380,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253380,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.253633,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253633,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253633,0.250000,0.000000,0,0);}
.m20{transform:matrix(0.000000,0.250076,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250076,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250076,-0.250000,0.000000,0,0);}
.m23{transform:matrix(0.000000,0.250019,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250019,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250019,-0.250000,0.000000,0,0);}
.m1b{transform:matrix(0.000000,0.249704,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249704,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249704,-0.250000,0.000000,0,0);}
.m8{transform:matrix(0.185230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185230,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.187089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187089,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.189764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189764,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246419,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.246428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246428,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246665,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246872,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248901,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249629,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);}
.m1e{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.249981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249981,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249987,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);}
.m19{transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252459,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254204,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.255514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255514,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255650,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1c{vertical-align:-69.120000px;}
.v8{vertical-align:-55.477175px;}
.v6{vertical-align:-42.600000px;}
.vf{vertical-align:-38.975071px;}
.v5{vertical-align:-33.240000px;}
.vb{vertical-align:-27.360000px;}
.v12{vertical-align:-25.181861px;}
.vd{vertical-align:-23.811988px;}
.v11{vertical-align:-22.383877px;}
.v13{vertical-align:-16.800025px;}
.v15{vertical-align:-15.447202px;}
.v1{vertical-align:-12.240000px;}
.v2{vertical-align:-9.360000px;}
.v1b{vertical-align:-2.842110px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.360000px;}
.v18{vertical-align:16.494648px;}
.v1a{vertical-align:17.675474px;}
.v14{vertical-align:20.390651px;}
.v19{vertical-align:23.208197px;}
.v17{vertical-align:26.117986px;}
.va{vertical-align:27.360000px;}
.vc{vertical-align:30.991482px;}
.v3{vertical-align:33.120000px;}
.v10{vertical-align:38.975070px;}
.v9{vertical-align:42.480000px;}
.v7{vertical-align:50.856590px;}
.v16{vertical-align:52.095510px;}
.ve{vertical-align:66.594116px;}
.ls3d{letter-spacing:-1.008000px;}
.ls15{letter-spacing:-0.936000px;}
.ls91{letter-spacing:-0.864000px;}
.ls92{letter-spacing:-0.792000px;}
.ls35{letter-spacing:-0.720000px;}
.ls49{letter-spacing:-0.612000px;}
.ls42{letter-spacing:-0.576000px;}
.ls41{letter-spacing:-0.504000px;}
.ls34{letter-spacing:-0.360000px;}
.ls1f{letter-spacing:-0.292718px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.216000px;}
.ls51{letter-spacing:-0.184685px;}
.ls7f{letter-spacing:-0.174168px;}
.ls75{letter-spacing:-0.170298px;}
.ls66{letter-spacing:-0.153995px;}
.lsb{letter-spacing:-0.144000px;}
.ls20{letter-spacing:-0.139334px;}
.ls1d{letter-spacing:-0.138014px;}
.ls88{letter-spacing:-0.123170px;}
.ls85{letter-spacing:-0.121937px;}
.ls73{letter-spacing:-0.121497px;}
.ls6c{letter-spacing:-0.078296px;}
.ls4e{letter-spacing:-0.074786px;}
.ls6b{letter-spacing:-0.074098px;}
.ls13{letter-spacing:-0.072000px;}
.ls57{letter-spacing:-0.067259px;}
.ls74{letter-spacing:-0.055182px;}
.ls4b{letter-spacing:-0.053280px;}
.ls6e{letter-spacing:-0.036518px;}
.ls2{letter-spacing:-0.030000px;}
.ls58{letter-spacing:-0.025935px;}
.ls78{letter-spacing:-0.021654px;}
.ls7e{letter-spacing:-0.011989px;}
.ls0{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.000299px;}
.ls44{letter-spacing:0.012960px;}
.ls61{letter-spacing:0.019293px;}
.ls60{letter-spacing:0.021676px;}
.ls7a{letter-spacing:0.022520px;}
.ls5f{letter-spacing:0.030705px;}
.ls64{letter-spacing:0.035930px;}
.ls65{letter-spacing:0.035932px;}
.ls4{letter-spacing:0.036000px;}
.ls8b{letter-spacing:0.039268px;}
.ls6f{letter-spacing:0.039604px;}
.ls7c{letter-spacing:0.040504px;}
.ls7d{letter-spacing:0.041398px;}
.ls71{letter-spacing:0.048423px;}
.ls69{letter-spacing:0.050363px;}
.ls45{letter-spacing:0.053280px;}
.ls72{letter-spacing:0.061624px;}
.ls77{letter-spacing:0.062165px;}
.ls5a{letter-spacing:0.062955px;}
.ls59{letter-spacing:0.066183px;}
.ls68{letter-spacing:0.069356px;}
.ls4f{letter-spacing:0.070000px;}
.ls5e{letter-spacing:0.071028px;}
.ls81{letter-spacing:0.071621px;}
.ls5d{letter-spacing:0.071745px;}
.ls2a{letter-spacing:0.072000px;}
.ls80{letter-spacing:0.074013px;}
.ls89{letter-spacing:0.074984px;}
.ls70{letter-spacing:0.079208px;}
.ls63{letter-spacing:0.079982px;}
.ls54{letter-spacing:0.080173px;}
.ls56{letter-spacing:0.080208px;}
.ls7b{letter-spacing:0.081009px;}
.ls79{letter-spacing:0.099317px;}
.ls84{letter-spacing:0.118421px;}
.ls87{letter-spacing:0.119592px;}
.ls48{letter-spacing:0.120000px;}
.ls67{letter-spacing:0.130709px;}
.ls4c{letter-spacing:0.131923px;}
.ls52{letter-spacing:0.135326px;}
.lsc{letter-spacing:0.144000px;}
.ls6d{letter-spacing:0.146074px;}
.ls37{letter-spacing:0.149760px;}
.ls12{letter-spacing:0.152640px;}
.ls83{letter-spacing:0.152763px;}
.ls86{letter-spacing:0.154273px;}
.ls8c{letter-spacing:0.161965px;}
.ls8e{letter-spacing:0.169763px;}
.ls2f{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.181440px;}
.ls50{letter-spacing:0.186478px;}
.ls55{letter-spacing:0.187788px;}
.ls62{letter-spacing:0.211295px;}
.ls8d{letter-spacing:0.211599px;}
.ls6{letter-spacing:0.216000px;}
.ls82{letter-spacing:0.224235px;}
.ls46{letter-spacing:0.233280px;}
.ls5b{letter-spacing:0.242240px;}
.ls1{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.269280px;}
.ls8a{letter-spacing:0.281939px;}
.ls53{letter-spacing:0.283767px;}
.ls14{letter-spacing:0.288000px;}
.ls47{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.314640px;}
.ls38{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls6a{letter-spacing:0.406767px;}
.ls8{letter-spacing:0.432000px;}
.ls4a{letter-spacing:0.460200px;}
.ls3a{letter-spacing:0.468000px;}
.ls3e{letter-spacing:0.480000px;}
.ls29{letter-spacing:0.504000px;}
.ls11{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.576000px;}
.ls36{letter-spacing:0.630720px;}
.ls28{letter-spacing:0.720000px;}
.ls2e{letter-spacing:0.792000px;}
.ls2b{letter-spacing:0.864000px;}
.ls43{letter-spacing:0.912000px;}
.ls3f{letter-spacing:1.080000px;}
.lse{letter-spacing:1.296000px;}
.ls2d{letter-spacing:1.512000px;}
.ls3c{letter-spacing:2.309760px;}
.ls30{letter-spacing:2.340000px;}
.ls25{letter-spacing:2.790720px;}
.ls26{letter-spacing:3.029760px;}
.ls33{letter-spacing:4.320000px;}
.ls3b{letter-spacing:4.950720px;}
.ls16{letter-spacing:5.220000px;}
.ls90{letter-spacing:5.670720px;}
.ls39{letter-spacing:5.760000px;}
.ls40{letter-spacing:7.200000px;}
.ls8f{letter-spacing:8.820000px;}
.ls32{letter-spacing:10.080000px;}
.ls2c{letter-spacing:12.420000px;}
.ls31{letter-spacing:14.544000px;}
.lsa{letter-spacing:15.384000px;}
.ls9{letter-spacing:15.408000px;}
.ls5c{letter-spacing:16.646039px;}
.ls18{letter-spacing:20.304000px;}
.ls22{letter-spacing:36.414174px;}
.ls17{letter-spacing:40.464000px;}
.ls21{letter-spacing:45.195728px;}
.ls19{letter-spacing:64.564421px;}
.ls1e{letter-spacing:88.576601px;}
.ls93{letter-spacing:93.029760px;}
.ls23{letter-spacing:100.051164px;}
.ls24{letter-spacing:123.936989px;}
.ls1a{letter-spacing:220.690341px;}
.ls1b{letter-spacing:239.932041px;}
.ls76{letter-spacing:263.888824px;}
.ls1c{letter-spacing:680.967995px;}
.ls95{letter-spacing:2034.456000px;}
.ls96{letter-spacing:2040.144000px;}
.ls94{letter-spacing:2250.456000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws22{word-spacing:-141.890875px;}
.ws1e{word-spacing:-118.041640px;}
.ws19{word-spacing:-106.530487px;}
.ws2b{word-spacing:-72.000000px;}
.ws29{word-spacing:-39.528000px;}
.ws86{word-spacing:-32.400000px;}
.ws55{word-spacing:-26.252893px;}
.ws34{word-spacing:-26.123760px;}
.ws35{word-spacing:-21.358080px;}
.ws1{word-spacing:-21.060000px;}
.ws2a{word-spacing:-20.016000px;}
.ws74{word-spacing:-19.332732px;}
.ws72{word-spacing:-18.915504px;}
.ws62{word-spacing:-18.913109px;}
.ws28{word-spacing:-18.864000px;}
.ws85{word-spacing:-18.792000px;}
.ws24{word-spacing:-18.720000px;}
.ws26{word-spacing:-18.504000px;}
.ws2d{word-spacing:-18.432000px;}
.wsf{word-spacing:-18.288000px;}
.wsa{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws2e{word-spacing:-18.072000px;}
.ws9{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.ws41{word-spacing:-17.881256px;}
.wsb{word-spacing:-17.856000px;}
.ws7c{word-spacing:-17.852069px;}
.ws7e{word-spacing:-17.850715px;}
.ws27{word-spacing:-17.784000px;}
.ws80{word-spacing:-17.727544px;}
.ws8{word-spacing:-17.712000px;}
.ws76{word-spacing:-17.677330px;}
.ws78{word-spacing:-17.671961px;}
.ws7a{word-spacing:-17.550024px;}
.ws30{word-spacing:-17.496000px;}
.ws32{word-spacing:-17.424000px;}
.ws31{word-spacing:-17.280000px;}
.ws84{word-spacing:-17.208000px;}
.ws2f{word-spacing:-17.064000px;}
.ws71{word-spacing:-16.890289px;}
.ws6f{word-spacing:-16.878300px;}
.ws4e{word-spacing:-16.765407px;}
.ws4b{word-spacing:-16.764513px;}
.ws68{word-spacing:-16.514928px;}
.ws3{word-spacing:-16.500000px;}
.ws4a{word-spacing:-16.004015px;}
.ws47{word-spacing:-15.996939px;}
.ws39{word-spacing:-15.400200px;}
.ws3b{word-spacing:-15.238800px;}
.ws0{word-spacing:-15.226440px;}
.ws3f{word-spacing:-15.096382px;}
.ws82{word-spacing:-15.061255px;}
.ws7d{word-spacing:-15.050631px;}
.ws52{word-spacing:-14.970595px;}
.ws58{word-spacing:-14.957471px;}
.ws36{word-spacing:-14.940000px;}
.ws77{word-spacing:-14.903313px;}
.ws67{word-spacing:-14.891158px;}
.ws3a{word-spacing:-14.886720px;}
.ws65{word-spacing:-14.851554px;}
.ws6d{word-spacing:-14.515439px;}
.ws38{word-spacing:-14.328000px;}
.ws45{word-spacing:-14.148655px;}
.ws46{word-spacing:-14.122720px;}
.ws59{word-spacing:-13.583097px;}
.ws44{word-spacing:-13.576951px;}
.ws49{word-spacing:-13.549312px;}
.ws5b{word-spacing:-13.513741px;}
.ws2{word-spacing:-13.500000px;}
.ws25{word-spacing:-12.420000px;}
.ws5f{word-spacing:-12.180861px;}
.wsd{word-spacing:-12.060000px;}
.ws56{word-spacing:-11.954869px;}
.ws5c{word-spacing:-11.928090px;}
.ws2c{word-spacing:-11.700000px;}
.ws70{word-spacing:-11.138680px;}
.ws4d{word-spacing:-11.056575px;}
.ws69{word-spacing:-10.891140px;}
.ws42{word-spacing:-10.676456px;}
.ws7f{word-spacing:-10.643164px;}
.ws79{word-spacing:-10.536585px;}
.ws83{word-spacing:-10.498551px;}
.ws66{word-spacing:-9.901036px;}
.ws53{word-spacing:-9.872660px;}
.ws37{word-spacing:-9.732960px;}
.ws33{word-spacing:-9.720000px;}
.ws6c{word-spacing:-9.573352px;}
.ws40{word-spacing:-8.968235px;}
.ws5a{word-spacing:-8.071225px;}
.ws5d{word-spacing:-7.298867px;}
.ws60{word-spacing:-6.442249px;}
.ws5e{word-spacing:-6.349972px;}
.ws4c{word-spacing:-0.819661px;}
.ws6{word-spacing:-0.588000px;}
.ws5{word-spacing:-0.336000px;}
.ws73{word-spacing:-0.037479px;}
.ws4{word-spacing:0.000000px;}
.ws63{word-spacing:0.070337px;}
.ws7{word-spacing:0.180000px;}
.ws51{word-spacing:0.304052px;}
.ws20{word-spacing:13.888647px;}
.ws23{word-spacing:14.004031px;}
.ws15{word-spacing:22.123121px;}
.ws1f{word-spacing:22.667999px;}
.ws1b{word-spacing:22.765527px;}
.ws16{word-spacing:26.462383px;}
.ws6e{word-spacing:37.749999px;}
.ws4f{word-spacing:56.715644px;}
.ws50{word-spacing:57.847564px;}
.ws48{word-spacing:69.724858px;}
.ws43{word-spacing:69.996697px;}
.ws3d{word-spacing:77.949859px;}
.ws3c{word-spacing:96.221671px;}
.ws61{word-spacing:104.198505px;}
.ws57{word-spacing:108.519836px;}
.ws11{word-spacing:109.655238px;}
.ws81{word-spacing:113.766992px;}
.ws1a{word-spacing:114.790849px;}
.ws10{word-spacing:131.843081px;}
.ws17{word-spacing:169.686586px;}
.ws1c{word-spacing:185.061255px;}
.ws75{word-spacing:186.822032px;}
.ws7b{word-spacing:188.668751px;}
.ws12{word-spacing:193.129668px;}
.ws18{word-spacing:196.346917px;}
.ws1d{word-spacing:196.533843px;}
.ws21{word-spacing:216.799745px;}
.ws64{word-spacing:220.951524px;}
.ws6b{word-spacing:232.620018px;}
.ws14{word-spacing:304.346212px;}
.ws54{word-spacing:407.749998px;}
.ws3e{word-spacing:493.516915px;}
.ws13{word-spacing:735.824962px;}
.ws6a{word-spacing:1598.682667px;}
._be{margin-left:-4305.170880px;}
._d2{margin-left:-4026.672000px;}
._da{margin-left:-3947.352000px;}
._d5{margin-left:-3868.290240px;}
._30{margin-left:-2779.272000px;}
._3e{margin-left:-2778.192000px;}
._33{margin-left:-2777.112000px;}
._6e{margin-left:-2775.888000px;}
._50{margin-left:-2765.832000px;}
._ec{margin-left:-2762.712000px;}
._83{margin-left:-2761.704000px;}
._3a{margin-left:-2760.648000px;}
._b0{margin-left:-2757.216000px;}
._6c{margin-left:-2754.288000px;}
._27{margin-left:-2745.888000px;}
._13{margin-left:-2744.772000px;}
._16{margin-left:-2743.056000px;}
._f8{margin-left:-2736.480000px;}
._70{margin-left:-2728.440000px;}
._10{margin-left:-2727.168000px;}
._17{margin-left:-2726.136000px;}
._b2{margin-left:-2721.216000px;}
._e4{margin-left:-2689.737840px;}
._ae{margin-left:-2660.952000px;}
._102{margin-left:-2644.284000px;}
._8c{margin-left:-2639.952000px;}
._10d{margin-left:-2636.688000px;}
._10a{margin-left:-2628.912000px;}
._76{margin-left:-2622.276000px;}
._117{margin-left:-2598.096000px;}
._f4{margin-left:-2596.656000px;}
._e3{margin-left:-2591.482800px;}
._df{margin-left:-2581.800000px;}
._dc{margin-left:-2571.000000px;}
._9a{margin-left:-2568.864000px;}
._6{margin-left:-2546.976000px;}
._c4{margin-left:-2524.920000px;}
._28{margin-left:-2510.136000px;}
._a8{margin-left:-2485.056000px;}
._e1{margin-left:-2461.560000px;}
._bd{margin-left:-2436.684000px;}
._c0{margin-left:-2418.684000px;}
._d3{margin-left:-2410.908000px;}
._e5{margin-left:-2396.461440px;}
._d6{margin-left:-2392.908000px;}
._110{margin-left:-2388.288000px;}
._ff{margin-left:-2385.768000px;}
._b3{margin-left:-2377.848000px;}
._5{margin-left:-2366.328000px;}
._9c{margin-left:-2358.984000px;}
._115{margin-left:-2343.000000px;}
._af{margin-left:-2338.968000px;}
._a6{margin-left:-2330.616000px;}
._bc{margin-left:-2328.180000px;}
._d9{margin-left:-2326.452000px;}
._2f{margin-left:-2319.984000px;}
._10f{margin-left:-2296.776000px;}
._3f{margin-left:-2294.640000px;}
._ab{margin-left:-2288.856000px;}
._4{margin-left:-2256.240000px;}
._b7{margin-left:-2236.512000px;}
._109{margin-left:-2224.488000px;}
._d8{margin-left:-2219.892000px;}
._2b{margin-left:-2209.680000px;}
._b4{margin-left:-2188.632000px;}
._74{margin-left:-2178.216000px;}
._c9{margin-left:-2172.660000px;}
._ce{margin-left:-2160.420000px;}
._3{margin-left:-2152.488000px;}
._7{margin-left:-2141.328000px;}
._b9{margin-left:-2139.024000px;}
._101{margin-left:-2132.616000px;}
._108{margin-left:-2128.656000px;}
._68{margin-left:-2115.432000px;}
._a7{margin-left:-2104.968000px;}
._2{margin-left:-2086.248000px;}
._77{margin-left:-2059.488000px;}
._f0{margin-left:-2055.276000px;}
._6b{margin-left:-2034.819360px;}
._98{margin-left:-2029.008000px;}
._60{margin-left:-2027.855520px;}
._ea{margin-left:-2026.847520px;}
._8{margin-left:-2021.628000px;}
._bf{margin-left:-2018.309040px;}
._ad{margin-left:-1999.776000px;}
._b1{margin-left:-1997.040000px;}
._80{margin-left:-1990.872000px;}
._3b{margin-left:-1985.688000px;}
._111{margin-left:-1976.592000px;}
._f7{margin-left:-1924.608000px;}
._48{margin-left:-1922.808000px;}
._e9{margin-left:-1894.608000px;}
._114{margin-left:-1884.360000px;}
._8a{margin-left:-1877.760000px;}
._82{margin-left:-1875.744000px;}
._66{margin-left:-1866.168000px;}
._81{margin-left:-1860.192000px;}
._6f{margin-left:-1833.696000px;}
._88{margin-left:-1829.808000px;}
._fe{margin-left:-1826.544000px;}
._42{margin-left:-1820.592000px;}
._7d{margin-left:-1800.516000px;}
._f6{margin-left:-1796.808000px;}
._b8{margin-left:-1780.680000px;}
._f1{margin-left:-1770.336000px;}
._aa{margin-left:-1752.744000px;}
._64{margin-left:-1745.712000px;}
._8d{margin-left:-1727.856000px;}
._103{margin-left:-1716.672000px;}
._e8{margin-left:-1707.480000px;}
._5e{margin-left:-1705.908000px;}
._ca{margin-left:-1694.388000px;}
._a0{margin-left:-1692.912000px;}
._71{margin-left:-1689.912000px;}
._99{margin-left:-1684.920000px;}
._104{margin-left:-1678.656000px;}
._fb{margin-left:-1674.552000px;}
._7b{margin-left:-1653.408000px;}
._6d{margin-left:-1645.416000px;}
._47{margin-left:-1644.168000px;}
._107{margin-left:-1639.128000px;}
._63{margin-left:-1636.200000px;}
._a4{margin-left:-1630.704000px;}
._75{margin-left:-1626.624000px;}
._bb{margin-left:-1612.164000px;}
._cb{margin-left:-1610.940000px;}
._7f{margin-left:-1604.388000px;}
._e2{margin-left:-1601.358240px;}
._59{margin-left:-1594.368000px;}
._65{margin-left:-1586.388000px;}
._ba{margin-left:-1584.216000px;}
._a1{margin-left:-1562.664000px;}
._46{margin-left:-1559.352000px;}
._5c{margin-left:-1551.240000px;}
._10b{margin-left:-1540.704000px;}
._85{margin-left:-1516.104000px;}
._c1{margin-left:-1502.940000px;}
._79{margin-left:-1501.560000px;}
._8f{margin-left:-1438.632000px;}
._97{margin-left:-1386.768000px;}
._106{margin-left:-1368.768000px;}
._7a{margin-left:-1349.748000px;}
._e7{margin-left:-1347.240000px;}
._10c{margin-left:-1330.752000px;}
._c{margin-left:-1329.240000px;}
._45{margin-left:-1321.560000px;}
._5b{margin-left:-1309.536000px;}
._100{margin-left:-1286.616000px;}
._eb{margin-left:-1277.208000px;}
._84{margin-left:-1263.816000px;}
._44{margin-left:-1253.736000px;}
._73{margin-left:-1249.704000px;}
._6a{margin-left:-1246.671360px;}
._9f{margin-left:-1242.768000px;}
._105{margin-left:-1238.664000px;}
._5d{margin-left:-1213.668000px;}
._b6{margin-left:-1184.664000px;}
._24{margin-left:-1180.848000px;}
._7c{margin-left:-1159.560000px;}
._5f{margin-left:-1154.592000px;}
._ef{margin-left:-1143.504000px;}
._3c{margin-left:-1127.880000px;}
._fc{margin-left:-1124.688000px;}
._9d{margin-left:-1070.688000px;}
._f3{margin-left:-1050.672000px;}
._39{margin-left:-1023.624000px;}
._5a{margin-left:-1015.848000px;}
._10e{margin-left:-1004.736000px;}
._49{margin-left:-1001.808000px;}
._a9{margin-left:-998.688000px;}
._a{margin-left:-995.736000px;}
._116{margin-left:-980.688000px;}
._ac{margin-left:-926.688000px;}
._b{margin-left:-923.736000px;}
._78{margin-left:-879.552000px;}
._9{margin-left:-860.688000px;}
._a3{margin-left:-854.688000px;}
._a2{margin-left:-836.688000px;}
._91{margin-left:-823.608000px;}
._36{margin-left:-810.648000px;}
._f5{margin-left:-788.736000px;}
._43{margin-left:-787.536000px;}
._38{margin-left:-719.640000px;}
._9b{margin-left:-716.736000px;}
._62{margin-left:-700.992000px;}
._8e{margin-left:-671.760000px;}
._25{margin-left:-657.864000px;}
._96{margin-left:-644.736000px;}
._94{margin-left:-634.608000px;}
._b5{margin-left:-620.760000px;}
._90{margin-left:-602.640000px;}
._f2{margin-left:-599.688000px;}
._89{margin-left:-585.648000px;}
._a5{margin-left:-548.760000px;}
._7e{margin-left:-529.632000px;}
._d{margin-left:-461.736000px;}
._31{margin-left:-449.640000px;}
._20{margin-left:-419.688000px;}
._67{margin-left:-377.640000px;}
._37{margin-left:-227.664000px;}
._21{margin-left:-193.824000px;}
._e6{margin-left:-159.984000px;}
._d4{margin-left:-123.350153px;}
._56{margin-left:-107.904343px;}
._53{margin-left:-84.069159px;}
._51{margin-left:-11.880985px;}
._1d{margin-left:-2.088000px;}
._0{margin-left:-1.080000px;}
._1{width:1.224000px;}
._1b{width:2.592000px;}
._18{width:3.600000px;}
._15{width:4.752000px;}
._14{width:6.552000px;}
._11{width:8.136000px;}
._12{width:9.528000px;}
._1c{width:10.596000px;}
._26{width:12.012000px;}
._23{width:13.896000px;}
._1e{width:14.904000px;}
._1f{width:15.996000px;}
._19{width:19.008000px;}
._1a{width:20.316000px;}
._2e{width:21.420000px;}
._32{width:23.004000px;}
._2a{width:24.264000px;}
._e{width:25.488000px;}
._29{width:26.568000px;}
._f{width:28.248000px;}
._2d{width:29.376000px;}
._2c{width:30.744000px;}
._8b{width:31.896000px;}
._72{width:33.024000px;}
._40{width:34.128000px;}
._41{width:35.136000px;}
._61{width:36.144000px;}
._35{width:37.164000px;}
._34{width:38.232000px;}
._3d{width:39.528000px;}
._69{width:41.520000px;}
._ed{width:43.140000px;}
._92{width:45.216000px;}
._93{width:46.440000px;}
._ee{width:47.640000px;}
._f9{width:52.344000px;}
._fa{width:53.568000px;}
._fd{width:54.576000px;}
._d7{width:57.753718px;}
._86{width:64.776000px;}
._87{width:66.108000px;}
._112{width:72.288000px;}
._113{width:73.440000px;}
._c7{width:75.438812px;}
._c5{width:87.147325px;}
._9e{width:93.144000px;}
._c3{width:97.090689px;}
._22{width:99.120000px;}
._54{width:103.999374px;}
._cf{width:120.792642px;}
._d0{width:123.710147px;}
._95{width:129.144000px;}
._c2{width:131.459525px;}
._e0{width:132.877375px;}
._57{width:135.508559px;}
._cd{width:143.798008px;}
._4d{width:160.481546px;}
._cc{width:161.575658px;}
._119{width:216.156000px;}
._c6{width:222.764507px;}
._dd{width:224.458900px;}
._4b{width:232.986843px;}
._d1{width:240.595180px;}
._4c{width:264.640779px;}
._4a{width:298.709456px;}
._c8{width:329.255205px;}
._11a{width:369.660000px;}
._4e{width:405.564346px;}
._db{width:456.538539px;}
._de{width:461.051383px;}
._4f{width:542.340000px;}
._11b{width:823.440000px;}
._52{width:829.620000px;}
._58{width:848.340000px;}
._55{width:865.620000px;}
._118{width:2020.056000px;}
.fc3{color:rgb(0,60,114);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(46,46,46);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(0,51,204);}
.fc0{color:rgb(0,0,0);}
.fs6a{font-size:15.120000px;}
.fs3e{font-size:25.399888px;}
.fs44{font-size:25.768997px;}
.fs3c{font-size:28.611173px;}
.fs30{font-size:29.868968px;}
.fs69{font-size:30.240000px;}
.fs3a{font-size:32.284899px;}
.fs34{font-size:32.310199px;}
.fs1c{font-size:34.144559px;}
.fs58{font-size:35.354661px;}
.fs38{font-size:35.542851px;}
.fs63{font-size:35.668316px;}
.fs5d{font-size:35.704138px;}
.fs13{font-size:35.872940px;}
.fs1f{font-size:38.042905px;}
.fs28{font-size:38.059733px;}
.fs4f{font-size:38.293408px;}
.fsf{font-size:38.880000px;}
.fs3d{font-size:39.267545px;}
.fs32{font-size:39.490641px;}
.fs4a{font-size:39.604145px;}
.fs43{font-size:39.838178px;}
.fs7{font-size:41.144547px;}
.fsa{font-size:41.537918px;}
.fsd{font-size:41.760000px;}
.fs67{font-size:41.994203px;}
.fs5a{font-size:42.146339px;}
.fs5f{font-size:42.572654px;}
.fs15{font-size:42.705823px;}
.fs3f{font-size:42.770393px;}
.fs45{font-size:43.391929px;}
.fs4c{font-size:43.564559px;}
.fs2a{font-size:43.958185px;}
.fs2e{font-size:44.226299px;}
.fs20{font-size:44.434769px;}
.fs21{font-size:44.495488px;}
.fs2b{font-size:44.515170px;}
.fs53{font-size:44.554720px;}
.fs50{font-size:46.623467px;}
.fs33{font-size:47.819477px;}
.fs3b{font-size:48.025542px;}
.fs5{font-size:48.240000px;}
.fs41{font-size:48.463764px;}
.fs40{font-size:48.723446px;}
.fs64{font-size:48.795948px;}
.fs22{font-size:49.065889px;}
.fs26{font-size:49.087592px;}
.fs42{font-size:49.168035px;}
.fs65{font-size:49.455746px;}
.fs1d{font-size:52.292180px;}
.fs3{font-size:54.000000px;}
.fs39{font-size:54.054962px;}
.fs25{font-size:54.197249px;}
.fs19{font-size:54.307805px;}
.fs1b{font-size:56.594619px;}
.fs4d{font-size:58.061758px;}
.fs4e{font-size:58.130667px;}
.fs23{font-size:59.150471px;}
.fs2c{font-size:59.176635px;}
.fs49{font-size:59.406217px;}
.fs57{font-size:59.613251px;}
.fse{font-size:59.760000px;}
.fs37{font-size:59.829883px;}
.fs31{font-size:59.882381px;}
.fs68{font-size:60.000000px;}
.fs5c{font-size:60.202523px;}
.fs62{font-size:60.245022px;}
.fs12{font-size:60.385527px;}
.fs54{font-size:60.756436px;}
.fs16{font-size:61.370346px;}
.fs17{font-size:61.432536px;}
.fs29{font-size:63.480863px;}
.fs1e{font-size:63.987756px;}
.fs27{font-size:64.016059px;}
.fs24{font-size:64.285215px;}
.fs1a{font-size:64.303441px;}
.fs18{font-size:64.391311px;}
.fs4{font-size:66.000000px;}
.fs4b{font-size:66.059714px;}
.fs0{font-size:66.240000px;}
.fs2d{font-size:67.058051px;}
.fs2f{font-size:67.061629px;}
.fs52{font-size:67.561157px;}
.fs46{font-size:69.922582px;}
.fs66{font-size:70.532884px;}
.fs59{font-size:70.687843px;}
.fs56{font-size:70.709321px;}
.fs36{font-size:70.938691px;}
.fs8{font-size:71.135437px;}
.fs5e{font-size:71.402859px;}
.fs5b{font-size:71.408277px;}
.fs61{font-size:71.486600px;}
.fs14{font-size:71.525022px;}
.fs11{font-size:71.597503px;}
.fsb{font-size:71.815543px;}
.fsc{font-size:71.961902px;}
.fs1{font-size:72.000000px;}
.fs60{font-size:72.084160px;}
.fs35{font-size:72.093154px;}
.fs10{font-size:72.096030px;}
.fs47{font-size:73.980543px;}
.fs48{font-size:75.652436px;}
.fs51{font-size:75.662015px;}
.fs55{font-size:77.330928px;}
.fs2{font-size:84.240000px;}
.fs6{font-size:93.298936px;}
.fs9{font-size:94.190941px;}
.y26a{bottom:-31.140000px;}
.y269{bottom:-7.560000px;}
.y0{bottom:0.000000px;}
.y166{bottom:4.146213px;}
.yf8{bottom:4.500000px;}
.y1c9{bottom:4.704911px;}
.y67{bottom:5.396704px;}
.y58{bottom:5.417792px;}
.y1b5{bottom:5.441995px;}
.y61{bottom:5.469590px;}
.y105{bottom:6.300000px;}
.y186{bottom:7.370637px;}
.y150{bottom:7.607693px;}
.y15f{bottom:7.812118px;}
.y138{bottom:8.074890px;}
.yf1{bottom:8.460000px;}
.y55{bottom:8.668381px;}
.y66{bottom:8.714814px;}
.y5e{bottom:8.751257px;}
.y1e1{bottom:8.887958px;}
.y1fb{bottom:8.975815px;}
.y214{bottom:9.059757px;}
.y26d{bottom:10.800000px;}
.ye8{bottom:12.420000px;}
.y1b7{bottom:12.497679px;}
.y18d{bottom:13.462109px;}
.yf9{bottom:13.905000px;}
.y152{bottom:14.220000px;}
.yb7{bottom:14.580000px;}
.ye3{bottom:14.610000px;}
.y116{bottom:14.625000px;}
.yb2{bottom:14.760000px;}
.y11e{bottom:14.790000px;}
.ydb{bottom:14.805000px;}
.yfe{bottom:14.940000px;}
.yfa{bottom:14.985000px;}
.yd5{bottom:15.120000px;}
.y160{bottom:15.480000px;}
.yd4{bottom:15.660000px;}
.y268{bottom:16.020000px;}
.y57{bottom:19.250988px;}
.y60{bottom:19.435041px;}
.y26c{bottom:19.620000px;}
.y1d{bottom:22.500000px;}
.y54{bottom:22.537530px;}
.yd2{bottom:23.040000px;}
.y104{bottom:23.580000px;}
.y59{bottom:23.837939px;}
.yd0{bottom:23.940000px;}
.y68{bottom:24.029257px;}
.y154{bottom:24.039667px;}
.y62{bottom:24.065847px;}
.y13f{bottom:24.934347px;}
.yf7{bottom:25.200000px;}
.yfb{bottom:25.245000px;}
.yf4{bottom:25.605000px;}
.y1ab{bottom:27.075283px;}
.y128{bottom:28.607195px;}
.y177{bottom:28.896324px;}
.y1d3{bottom:29.208598px;}
.y247{bottom:29.340000px;}
.y1ed{bottom:29.497323px;}
.y20e{bottom:29.572338px;}
.y244{bottom:30.240000px;}
.y167{bottom:30.318417px;}
.y10f{bottom:30.600000px;}
.yce{bottom:31.320000px;}
.y56{bottom:31.965135px;}
.y5f{bottom:32.270745px;}
.y100{bottom:32.400000px;}
.y24e{bottom:34.560000px;}
.yde{bottom:34.590000px;}
.y5d{bottom:35.588708px;}
.yfd{bottom:35.640000px;}
.y1bd{bottom:35.893552px;}
.y5a{bottom:36.552086px;}
.y63{bottom:36.901551px;}
.ye7{bottom:38.160000px;}
.y254{bottom:38.340000px;}
.yd7{bottom:39.060000px;}
.y16a{bottom:39.865481px;}
.y1ac{bottom:40.502842px;}
.y18b{bottom:41.666861px;}
.yb1{bottom:45.720000px;}
.yc7{bottom:45.750000px;}
.yb5{bottom:45.765000px;}
.yf6{bottom:45.900000px;}
.yf3{bottom:46.305000px;}
.ycc{bottom:46.800000px;}
.y103{bottom:47.550000px;}
.y129{bottom:48.096530px;}
.y1d4{bottom:48.459451px;}
.y1ee{bottom:48.938468px;}
.y1c{bottom:52.920000px;}
.yec{bottom:52.956000px;}
.y159{bottom:58.708303px;}
.y266{bottom:59.040000px;}
.y246{bottom:61.020000px;}
.yef{bottom:61.065000px;}
.y14e{bottom:61.263756px;}
.y243{bottom:61.380000px;}
.ycd{bottom:62.280000px;}
.y11c{bottom:62.460000px;}
.y112{bottom:62.505000px;}
.y182{bottom:63.233448px;}
.ye6{bottom:64.080000px;}
.y102{bottom:65.910000px;}
.yf2{bottom:67.005000px;}
.y1f5{bottom:72.140776px;}
.y265{bottom:74.340000px;}
.y1b{bottom:75.420000px;}
.y1bb{bottom:75.600000px;}
.yeb{bottom:75.636000px;}
.yc3{bottom:76.680000px;}
.yc6{bottom:76.710000px;}
.y245{bottom:76.860000px;}
.yd1{bottom:77.580000px;}
.ycf{bottom:77.760000px;}
.y140{bottom:79.025578px;}
.y1db{bottom:84.085000px;}
.y1b0{bottom:86.354432px;}
.y1c0{bottom:87.745795px;}
.ye5{bottom:90.000000px;}
.y12a{bottom:94.677983px;}
.y1d5{bottom:95.222517px;}
.y1ef{bottom:96.163784px;}
.y20f{bottom:97.983100px;}
.y141{bottom:99.636501px;}
.y197{bottom:101.865161px;}
.y37{bottom:104.940000px;}
.yc9{bottom:106.020000px;}
.y1fd{bottom:106.852303px;}
.yc2{bottom:107.820000px;}
.yc5{bottom:107.850000px;}
.y1e3{bottom:109.199184px;}
.y1ad{bottom:117.032673px;}
.y1b4{bottom:120.451727px;}
.yc8{bottom:121.500000px;}
.y178{bottom:123.008498px;}
.y158{bottom:123.787529px;}
.y213{bottom:125.593652px;}
.y14d{bottom:126.312863px;}
.y1f6{bottom:126.368193px;}
.y1c8{bottom:127.723530px;}
.y1e2{bottom:130.478000px;}
.y1fc{bottom:131.767764px;}
.y1b1{bottom:132.200841px;}
.y6d{bottom:132.300000px;}
.y1dc{bottom:133.244616px;}
.yaa{bottom:135.900000px;}
.yc1{bottom:138.780000px;}
.y234{bottom:139.500000px;}
.y20b{bottom:140.040000px;}
.y12b{bottom:141.257941px;}
.y82{bottom:141.300000px;}
.y1d6{bottom:141.984104px;}
.y1f0{bottom:143.387604px;}
.y1ba{bottom:143.676000px;}
.y51{bottom:144.000000px;}
.y77{bottom:145.620000px;}
.y36{bottom:146.700000px;}
.y10d{bottom:153.750000px;}
.y16b{bottom:158.295026px;}
.y165{bottom:160.584053px;}
.y18e{bottom:161.598112px;}
.y18c{bottom:161.875341px;}
.y1fe{bottom:164.797530px;}
.y1d1{bottom:165.090000px;}
.y132{bottom:167.497496px;}
.yc0{bottom:169.965000px;}
.y1e4{bottom:170.052897px;}
.y1b9{bottom:170.130000px;}
.y19a{bottom:170.190000px;}
.y20a{bottom:171.000000px;}
.y21b{bottom:173.340000px;}
.y6c{bottom:173.700000px;}
.ya9{bottom:177.300000px;}
.y15c{bottom:178.100515px;}
.y1b2{bottom:178.233744px;}
.y233{bottom:180.900000px;}
.y142{bottom:181.774836px;}
.y81{bottom:182.700000px;}
.yc4{bottom:183.600000px;}
.y22a{bottom:183.960000px;}
.y10c{bottom:184.890000px;}
.y50{bottom:185.400000px;}
.y76{bottom:187.020000px;}
.y12c{bottom:187.764609px;}
.y35{bottom:188.100000px;}
.y1d7{bottom:188.748650px;}
.y1c3{bottom:189.087531px;}
.y1f1{bottom:190.614414px;}
.y17e{bottom:192.096215px;}
.y1ae{bottom:193.378600px;}
.y136{bottom:194.435555px;}
.y1d0{bottom:196.050000px;}
.y211{bottom:197.399684px;}
.y125{bottom:197.670000px;}
.y185{bottom:197.816599px;}
.y157{bottom:198.852441px;}
.y209{bottom:202.140000px;}
.y14a{bottom:206.337913px;}
.y21a{bottom:214.770000px;}
.y6b{bottom:215.130000px;}
.y10b{bottom:215.850000px;}
.ya8{bottom:218.730000px;}
.y16d{bottom:218.907985px;}
.y15a{bottom:221.797989px;}
.y232{bottom:222.330000px;}
.y1ff{bottom:222.650074px;}
.y1cf{bottom:223.590000px;}
.y1b3{bottom:224.087924px;}
.y80{bottom:224.130000px;}
.y4f{bottom:226.830000px;}
.y192{bottom:228.020864px;}
.y229{bottom:228.090000px;}
.y75{bottom:228.450000px;}
.y124{bottom:228.855000px;}
.y3b{bottom:229.170000px;}
.y34{bottom:229.530000px;}
.y1e5{bottom:230.788190px;}
.y208{bottom:233.130000px;}
.y12d{bottom:234.341576px;}
.y179{bottom:234.806440px;}
.y15d{bottom:235.067379px;}
.y1d8{bottom:235.510237px;}
.y148{bottom:236.106855px;}
.y1f2{bottom:237.838235px;}
.y134{bottom:239.591580px;}
.y1b6{bottom:241.494018px;}
.y14f{bottom:245.025431px;}
.y10a{bottom:247.035000px;}
.y6a{bottom:252.090000px;}
.y191{bottom:255.555646px;}
.y17b{bottom:257.258207px;}
.y16f{bottom:258.534714px;}
.y123{bottom:259.815000px;}
.y1e9{bottom:259.919814px;}
.ya7{bottom:260.130000px;}
.y210{bottom:260.326128px;}
.y131{bottom:261.204849px;}
.y17f{bottom:261.615183px;}
.y203{bottom:262.489099px;}
.y1b8{bottom:263.531377px;}
.y1ca{bottom:263.585048px;}
.y231{bottom:263.730000px;}
.y207{bottom:264.270000px;}
.y7f{bottom:265.530000px;}
.y22b{bottom:267.870000px;}
.y4e{bottom:268.230000px;}
.y135{bottom:268.773232px;}
.y74{bottom:269.850000px;}
.y1af{bottom:269.934333px;}
.y3a{bottom:270.570000px;}
.y33{bottom:270.930000px;}
.y16e{bottom:274.766811px;}
.y14c{bottom:275.009602px;}
.y16c{bottom:275.124938px;}
.y156{bottom:275.131247px;}
.y69{bottom:275.970000px;}
.y109{bottom:277.995000px;}
.y200{bottom:280.592311px;}
.y194{bottom:280.625069px;}
.y1c7{bottom:280.839876px;}
.y12e{bottom:280.963414px;}
.y1cb{bottom:281.325927px;}
.y1d9{bottom:282.271823px;}
.y130{bottom:282.384356px;}
.y17d{bottom:284.318884px;}
.y195{bottom:284.387463px;}
.y1f3{bottom:285.062055px;}
.y170{bottom:291.213784px;}
.y1e6{bottom:291.641903px;}
.y190{bottom:294.169687px;}
.y206{bottom:295.230000px;}
.y122{bottom:295.455000px;}
.ya6{bottom:301.530000px;}
.y168{bottom:302.834998px;}
.y133{bottom:304.371556px;}
.y240{bottom:305.130000px;}
.y121{bottom:305.895000px;}
.y7e{bottom:306.930000px;}
.y230{bottom:307.110000px;}
.y193{bottom:307.720905px;}
.ybf{bottom:307.830000px;}
.y108{bottom:309.135000px;}
.y4d{bottom:309.630000px;}
.y73{bottom:311.250000px;}
.y39{bottom:311.970000px;}
.y32{bottom:312.330000px;}
.y181{bottom:314.699162px;}
.y18f{bottom:314.968464px;}
.y1a2{bottom:315.967236px;}
.y199{bottom:317.415000px;}
.y11b{bottom:320.115000px;}
.y1a9{bottom:322.810525px;}
.y205{bottom:326.370000px;}
.y1e8{bottom:327.375512px;}
.y12f{bottom:327.540381px;}
.y1c1{bottom:327.905862px;}
.y65{bottom:328.440000px;}
.y1da{bottom:329.077817px;}
.y14{bottom:329.790000px;}
.y196{bottom:331.998246px;}
.y1f4{bottom:332.330723px;}
.y202{bottom:333.033325px;}
.y19b{bottom:338.134105px;}
.y201{bottom:338.504651px;}
.y107{bottom:340.095000px;}
.ya5{bottom:342.570000px;}
.y23f{bottom:346.530000px;}
.y7d{bottom:348.330000px;}
.y198{bottom:348.375000px;}
.y4c{bottom:351.030000px;}
.y19c{bottom:351.530581px;}
.y120{bottom:351.975000px;}
.y22f{bottom:352.110000px;}
.y64{bottom:352.290000px;}
.y14b{bottom:352.290475px;}
.y1e7{bottom:352.377196px;}
.y155{bottom:352.513593px;}
.y72{bottom:352.650000px;}
.y204{bottom:353.010000px;}
.y1ec{bottom:353.040000px;}
.y31{bottom:353.730000px;}
.y1de{bottom:360.163392px;}
.y1df{bottom:360.311419px;}
.y1e0{bottom:360.859117px;}
.y1dd{bottom:361.199578px;}
.y1f8{bottom:363.723576px;}
.y1f9{bottom:363.873066px;}
.y1fa{bottom:364.426178px;}
.y1f7{bottom:364.770004px;}
.y106{bottom:368.895000px;}
.y1c6{bottom:368.902955px;}
.y20d{bottom:371.909211px;}
.y13{bottom:374.430000px;}
.y146{bottom:375.158619px;}
.y127{bottom:375.289876px;}
.y18a{bottom:375.915000px;}
.y212{bottom:376.221161px;}
.y137{bottom:376.839572px;}
.y101{bottom:382.395000px;}
.y11f{bottom:383.655000px;}
.ya4{bottom:383.970000px;}
.y23e{bottom:387.930000px;}
.y7c{bottom:389.730000px;}
.y84{bottom:392.070000px;}
.y4b{bottom:392.430000px;}
.y71{bottom:394.050000px;}
.y22e{bottom:394.230000px;}
.y145{bottom:394.287148px;}
.y30{bottom:395.130000px;}
.y1a3{bottom:397.376990px;}
.y17a{bottom:398.622828px;}
.y19d{bottom:402.412325px;}
.y17c{bottom:403.172460px;}
.y5c{bottom:404.565000px;}
.y144{bottom:411.814907px;}
.y11d{bottom:415.515000px;}
.y12{bottom:415.830000px;}
.y1c2{bottom:417.872643px;}
.y15b{bottom:423.664977px;}
.y169{bottom:424.123589px;}
.ya3{bottom:425.730000px;}
.y5b{bottom:428.430000px;}
.y147{bottom:428.508652px;}
.y23d{bottom:429.330000px;}
.y143{bottom:429.342667px;}
.y1a1{bottom:431.474286px;}
.y184{bottom:432.041134px;}
.y7b{bottom:432.390000px;}
.y4a{bottom:433.830000px;}
.y228{bottom:435.090000px;}
.y92{bottom:435.450000px;}
.y22d{bottom:435.990000px;}
.y70{bottom:436.170000px;}
.y2f{bottom:436.530000px;}
.y1cd{bottom:438.870000px;}
.y1a4{bottom:443.223400px;}
.y117{bottom:447.405000px;}
.y183{bottom:448.772517px;}
.y1bf{bottom:452.989863px;}
.y19e{bottom:453.519415px;}
.y15e{bottom:456.017527px;}
.y149{bottom:457.161091px;}
.y11{bottom:457.275000px;}
.yff{bottom:459.645000px;}
.ya2{bottom:467.175000px;}
.y1cc{bottom:470.055000px;}
.y23c{bottom:470.775000px;}
.y49{bottom:475.275000px;}
.y7a{bottom:476.535000px;}
.y227{bottom:476.895000px;}
.y91{bottom:477.075000px;}
.y22c{bottom:477.435000px;}
.yad{bottom:477.615000px;}
.y2e{bottom:477.975000px;}
.y11a{bottom:479.085000px;}
.y53{bottom:480.840000px;}
.y1c5{bottom:482.963038px;}
.y1a5{bottom:489.264073px;}
.y176{bottom:490.999434px;}
.ybe{bottom:494.175000px;}
.y180{bottom:495.395129px;}
.y1bc{bottom:497.415000px;}
.y10{bottom:498.675000px;}
.y19f{bottom:504.432241px;}
.y52{bottom:504.795000px;}
.ya1{bottom:508.575000px;}
.y119{bottom:510.945000px;}
.y23b{bottom:512.175000px;}
.y48{bottom:516.675000px;}
.y226{bottom:518.295000px;}
.y90{bottom:518.835000px;}
.y241{bottom:519.015000px;}
.y2d{bottom:519.375000px;}
.yea{bottom:526.755000px;}
.y256{bottom:528.915000px;}
.y189{bottom:529.455000px;}
.y1a6{bottom:535.110483px;}
.yfc{bottom:536.865000px;}
.yf{bottom:540.075000px;}
.y118{bottom:542.805000px;}
.ya0{bottom:549.975000px;}
.y25e{bottom:552.315000px;}
.y1a8{bottom:552.516577px;}
.y23a{bottom:553.575000px;}
.y1a0{bottom:555.500479px;}
.ybd{bottom:556.275000px;}
.y47{bottom:557.715000px;}
.ye9{bottom:557.895000px;}
.y83{bottom:559.335000px;}
.y225{bottom:559.695000px;}
.y255{bottom:559.875000px;}
.y8f{bottom:560.235000px;}
.yae{bottom:560.415000px;}
.y2c{bottom:560.775000px;}
.y1aa{bottom:574.025536px;}
.ye4{bottom:574.275000px;}
.y111{bottom:574.485000px;}
.y253{bottom:576.255000px;}
.y163{bottom:579.135000px;}
.y1a7{bottom:580.962072px;}
.ye{bottom:581.475000px;}
.y13d{bottom:582.735000px;}
.y25d{bottom:585.975000px;}
.y174{bottom:586.875000px;}
.y9f{bottom:591.375000px;}
.y188{bottom:591.555000px;}
.y239{bottom:594.975000px;}
.y46{bottom:599.115000px;}
.yee{bottom:599.685000px;}
.y224{bottom:601.095000px;}
.y8e{bottom:601.635000px;}
.y2b{bottom:602.175000px;}
.y115{bottom:606.345000px;}
.y162{bottom:610.095000px;}
.y13c{bottom:614.055000px;}
.y173{bottom:618.015000px;}
.y187{bottom:618.195000px;}
.y175{bottom:618.240000px;}
.y1c4{bottom:618.254120px;}
.ybc{bottom:618.375000px;}
.yd{bottom:622.875000px;}
.y1be{bottom:624.410772px;}
.y9e{bottom:632.775000px;}
.y238{bottom:636.375000px;}
.y114{bottom:638.250000px;}
.y45{bottom:640.875000px;}
.y161{bottom:641.235000px;}
.yf5{bottom:641.850000px;}
.y223{bottom:642.495000px;}
.y8d{bottom:643.035000px;}
.y6f{bottom:643.215000px;}
.y2a{bottom:643.575000px;}
.y13b{bottom:645.195000px;}
.y172{bottom:648.615000px;}
.y151{bottom:657.615000px;}
.yc{bottom:664.275000px;}
.y113{bottom:669.930000px;}
.y9d{bottom:674.175000px;}
.y171{bottom:675.795000px;}
.y164{bottom:675.840000px;}
.y13a{bottom:676.155000px;}
.y237{bottom:677.415000px;}
.ydd{bottom:678.495000px;}
.y217{bottom:679.395000px;}
.ybb{bottom:680.505000px;}
.y44{bottom:682.305000px;}
.y222{bottom:683.925000px;}
.y8c{bottom:684.465000px;}
.y6e{bottom:684.645000px;}
.y29{bottom:685.005000px;}
.y258{bottom:688.605000px;}
.y13e{bottom:688.740000px;}
.y153{bottom:689.865000px;}
.y10e{bottom:701.790000px;}
.yf0{bottom:704.850000px;}
.yb{bottom:705.705000px;}
.y139{bottom:707.325000px;}
.ye2{bottom:710.385000px;}
.y216{bottom:710.565000px;}
.yba{bottom:711.465000px;}
.y252{bottom:712.365000px;}
.y9c{bottom:715.605000px;}
.y236{bottom:718.845000px;}
.y257{bottom:719.565000px;}
.y43{bottom:723.705000px;}
.y221{bottom:725.325000px;}
.y8b{bottom:725.865000px;}
.y3c{bottom:726.045000px;}
.y28{bottom:726.405000px;}
.y110{bottom:733.650000px;}
.y126{bottom:733.965000px;}
.y20c{bottom:737.340000px;}
.y215{bottom:737.385000px;}
.y276{bottom:741.345000px;}
.y25b{bottom:741.525000px;}
.ye1{bottom:742.065000px;}
.yb9{bottom:742.605000px;}
.y251{bottom:744.045000px;}
.ya{bottom:747.105000px;}
.y1ce{bottom:748.230000px;}
.yed{bottom:748.950000px;}
.y1eb{bottom:750.705000px;}
.y9b{bottom:758.985000px;}
.y235{bottom:760.605000px;}
.y42{bottom:765.105000px;}
.y220{bottom:766.725000px;}
.y8a{bottom:767.265000px;}
.y78{bottom:767.445000px;}
.y27{bottom:767.805000px;}
.y259{bottom:768.315000px;}
.y25a{bottom:768.345000px;}
.ye0{bottom:773.925000px;}
.y250{bottom:775.905000px;}
.y275{bottom:777.165000px;}
.y1d2{bottom:777.315000px;}
.y1ea{bottom:777.345000px;}
.y9{bottom:788.505000px;}
.y9a{bottom:802.005000px;}
.yb8{bottom:804.705000px;}
.ydf{bottom:805.785000px;}
.y41{bottom:806.505000px;}
.y24f{bottom:807.765000px;}
.y21f{bottom:808.125000px;}
.y89{bottom:808.665000px;}
.y79{bottom:808.845000px;}
.y26{bottom:809.205000px;}
.y274{bottom:812.805000px;}
.y8{bottom:829.905000px;}
.yd6{bottom:836.745000px;}
.y249{bottom:838.725000px;}
.y99{bottom:843.405000px;}
.y40{bottom:847.905000px;}
.y273{bottom:848.445000px;}
.y88{bottom:850.065000px;}
.y21e{bottom:850.245000px;}
.y25{bottom:850.605000px;}
.yb6{bottom:866.805000px;}
.ydc{bottom:868.605000px;}
.y24d{bottom:870.585000px;}
.y7{bottom:871.305000px;}
.y272{bottom:884.265000px;}
.y98{bottom:884.805000px;}
.y3f{bottom:889.305000px;}
.y87{bottom:891.465000px;}
.yac{bottom:891.645000px;}
.y24{bottom:892.005000px;}
.yb4{bottom:897.765000px;}
.yda{bottom:900.285000px;}
.y24c{bottom:902.445000px;}
.y6{bottom:912.705000px;}
.y271{bottom:919.950000px;}
.y97{bottom:926.250000px;}
.y3e{bottom:930.750000px;}
.yd9{bottom:932.190000px;}
.y86{bottom:932.910000px;}
.y23{bottom:933.450000px;}
.y24b{bottom:934.170000px;}
.y5{bottom:954.150000px;}
.y270{bottom:955.590000px;}
.yb3{bottom:959.910000px;}
.yd8{bottom:964.050000px;}
.y24a{bottom:966.030000px;}
.y96{bottom:967.650000px;}
.y3d{bottom:973.410000px;}
.y85{bottom:974.490000px;}
.y22{bottom:974.850000px;}
.y26f{bottom:990.870000px;}
.y4{bottom:995.550000px;}
.yd3{bottom:995.730000px;}
.y248{bottom:997.890000px;}
.y95{bottom:1009.050000px;}
.yab{bottom:1015.890000px;}
.y21{bottom:1016.250000px;}
.yb0{bottom:1022.010000px;}
.y26b{bottom:1029.030000px;}
.ycb{bottom:1029.570000px;}
.y242{bottom:1031.550000px;}
.y267{bottom:1032.450000px;}
.y3{bottom:1040.550000px;}
.y17{bottom:1043.283000px;}
.y94{bottom:1052.430000px;}
.y21d{bottom:1057.290000px;}
.y20{bottom:1057.650000px;}
.y26e{bottom:1078.350000px;}
.y2{bottom:1088.790000px;}
.y16{bottom:1091.523000px;}
.y93{bottom:1097.430000px;}
.yaf{bottom:1098.510000px;}
.y21c{bottom:1098.690000px;}
.y1f{bottom:1099.050000px;}
.y25c{bottom:1101.030000px;}
.y264{bottom:1111.290000px;}
.y263{bottom:1132.710000px;}
.y1{bottom:1137.210000px;}
.yca{bottom:1139.910000px;}
.y15{bottom:1139.943000px;}
.y1e{bottom:1140.090000px;}
.y38{bottom:1140.450000px;}
.y262{bottom:1147.860000px;}
.y261{bottom:1169.100000px;}
.y260{bottom:1184.400000px;}
.y1a{bottom:1194.447000px;}
.y25f{bottom:1198.980000px;}
.y19{bottom:1214.247000px;}
.y219{bottom:1226.880000px;}
.y18{bottom:1234.047000px;}
.y218{bottom:1244.880000px;}
.h9b{height:14.040000px;}
.h9c{height:15.769688px;}
.h98{height:23.040000px;}
.h9a{height:26.460000px;}
.h31{height:28.800000px;}
.h5a{height:29.314759px;}
.h21{height:30.960000px;}
.h2a{height:30.996000px;}
.h22{height:31.140000px;}
.h29{height:31.176000px;}
.h37{height:31.291172px;}
.h99{height:31.539375px;}
.h91{height:32.940000px;}
.h27{height:33.120000px;}
.h94{height:35.991211px;}
.h96{height:36.624023px;}
.h38{height:38.158594px;}
.h6{height:38.160000px;}
.h95{height:38.654297px;}
.h97{height:39.830273px;}
.h12{height:40.361032px;}
.hf{height:40.381122px;}
.h19{height:40.746913px;}
.h16{height:40.767195px;}
.h33{height:41.436000px;}
.h64{height:43.104537px;}
.h6b{height:43.730929px;}
.h2{height:44.440312px;}
.h55{height:45.847013px;}
.h5{height:45.858398px;}
.h4b{height:46.344075px;}
.h4c{height:46.407404px;}
.h56{height:46.427931px;}
.h5d{height:46.932201px;}
.h77{height:46.987713px;}
.h26{height:47.344922px;}
.h73{height:48.304688px;}
.h65{height:48.806521px;}
.h8e{height:48.871406px;}
.h6a{height:48.952593px;}
.h67{height:49.104098px;}
.h11{height:49.391890px;}
.h4d{height:49.449216px;}
.h52{height:49.471089px;}
.h18{height:49.864112px;}
.h6c{height:49.918868px;}
.h1e{height:49.992188px;}
.h68{height:50.546191px;}
.h8b{height:50.892649px;}
.h69{height:51.280724px;}
.h8c{height:51.580798px;}
.h93{height:53.121094px;}
.h62{height:54.477267px;}
.h51{height:54.620665px;}
.h47{height:54.732085px;}
.hc{height:54.899891px;}
.h63{height:54.952684px;}
.h66{height:54.964369px;}
.h14{height:55.424774px;}
.h75{height:56.984440px;}
.h49{height:57.036765px;}
.h76{height:57.052071px;}
.h71{height:58.303953px;}
.h78{height:58.515365px;}
.h2c{height:58.651172px;}
.h7c{height:59.629120px;}
.h80{height:60.078980px;}
.h61{height:60.297304px;}
.h5b{height:60.350212px;}
.h84{height:60.672855px;}
.h8a{height:60.715686px;}
.h41{height:60.857288px;}
.h1f{height:62.100000px;}
.h20{height:62.136000px;}
.h54{height:62.302995px;}
.h8f{height:62.578125px;}
.h39{height:62.820000px;}
.h50{height:63.092423px;}
.h48{height:63.110311px;}
.h46{height:63.196550px;}
.h43{height:64.007353px;}
.h44{height:64.072215px;}
.h4a{height:64.487660px;}
.h53{height:64.516185px;}
.he{height:64.780804px;}
.h15{height:65.400155px;}
.h2d{height:65.518594px;}
.h58{height:65.813809px;}
.h59{height:65.817321px;}
.h72{height:66.575805px;}
.h34{height:66.614766px;}
.h7b{height:68.088979px;}
.h6d{height:68.625190px;}
.h8d{height:69.224168px;}
.h81{height:69.376253px;}
.h7f{height:69.397332px;}
.h60{height:69.622446px;}
.h13{height:69.780807px;}
.h10{height:69.815541px;}
.h85{height:70.078001px;}
.h83{height:70.083318px;}
.h89{height:70.160189px;}
.h3f{height:70.269034px;}
.h1a{height:70.447962px;}
.h17{height:70.483028px;}
.h1c{height:70.591534px;}
.h8{height:70.628906px;}
.h3{height:70.664062px;}
.h87{height:70.746661px;}
.h5f{height:70.755488px;}
.h3d{height:70.758311px;}
.h7{height:72.562500px;}
.h6f{height:72.607857px;}
.h1d{height:73.566505px;}
.h1b{height:73.712864px;}
.h70{height:74.248729px;}
.h7a{height:74.258130px;}
.h9{height:75.093750px;}
.h7d{height:75.896077px;}
.h35{height:76.500000px;}
.h36{height:76.536000px;}
.ha{height:80.464922px;}
.hb{height:80.584922px;}
.h42{height:80.888500px;}
.h5c{height:81.410269px;}
.h4{height:84.898125px;}
.h40{height:91.848770px;}
.h90{height:93.240000px;}
.h25{height:95.220000px;}
.h2b{height:103.500000px;}
.h32{height:104.256000px;}
.hd{height:115.637394px;}
.h24{height:124.236000px;}
.h3b{height:126.360000px;}
.h3a{height:126.576000px;}
.h30{height:133.956000px;}
.h92{height:158.220000px;}
.h28{height:158.250000px;}
.h23{height:186.330000px;}
.h6e{height:358.572627px;}
.h7e{height:379.110790px;}
.h82{height:382.858267px;}
.h88{height:388.098603px;}
.h86{height:388.128147px;}
.h3e{height:391.333175px;}
.h3c{height:391.511483px;}
.h57{height:449.625201px;}
.h4f{height:466.716477px;}
.h45{height:467.855311px;}
.h4e{height:499.065000px;}
.h5e{height:507.220394px;}
.h74{height:595.042359px;}
.h79{height:659.173580px;}
.h2e{height:892.980000px;}
.h2f{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:8.460000px;}
.w7{width:16.740000px;}
.w1a{width:21.240000px;}
.w56{width:43.056000px;}
.w13{width:48.600000px;}
.w22{width:51.300000px;}
.w47{width:51.696000px;}
.wc{width:53.640000px;}
.w24{width:53.820000px;}
.wb{width:53.856000px;}
.w50{width:54.540000px;}
.w23{width:54.576000px;}
.w54{width:59.256000px;}
.wd{width:61.740000px;}
.w44{width:62.316000px;}
.w45{width:63.540000px;}
.w1f{width:63.720000px;}
.w4e{width:63.756000px;}
.we{width:66.240000px;}
.w48{width:66.960000px;}
.w55{width:68.040000px;}
.w11{width:68.796000px;}
.w46{width:68.940000px;}
.w12{width:70.560000px;}
.w4f{width:74.520000px;}
.w21{width:74.556000px;}
.w14{width:80.280000px;}
.w27{width:84.960000px;}
.w51{width:85.140000px;}
.w25{width:85.176000px;}
.w4a{width:86.040000px;}
.w49{width:88.236000px;}
.w10{width:90.180000px;}
.wf{width:90.216000px;}
.w8{width:94.680000px;}
.w26{width:95.760000px;}
.w52{width:95.796000px;}
.w2e{width:96.120000px;}
.w31{width:97.740000px;}
.w33{width:97.920000px;}
.w32{width:97.956000px;}
.w1c{width:100.476000px;}
.w2f{width:104.436000px;}
.w30{width:104.760000px;}
.w18{width:106.200000px;}
.w4c{width:114.336000px;}
.wa{width:128.880000px;}
.w29{width:130.716000px;}
.w5{width:147.071163px;}
.w6{width:155.708491px;}
.w1d{width:156.780000px;}
.w4d{width:159.660000px;}
.w1e{width:159.690000px;}
.w4{width:165.071266px;}
.w2d{width:168.330000px;}
.w2a{width:168.510000px;}
.w20{width:276.510000px;}
.w2c{width:293.610000px;}
.w2b{width:305.310000px;}
.w3{width:308.697496px;}
.w38{width:317.404314px;}
.w36{width:319.502183px;}
.w39{width:326.055000px;}
.w37{width:327.990000px;}
.w3c{width:328.406542px;}
.w3b{width:328.496519px;}
.w3a{width:334.648644px;}
.w3f{width:359.252806px;}
.w1b{width:414.795000px;}
.w19{width:416.955000px;}
.w43{width:479.004342px;}
.w42{width:479.094308px;}
.w35{width:510.653959px;}
.w34{width:510.668957px;}
.w40{width:533.858365px;}
.w41{width:539.258401px;}
.w9{width:577.905000px;}
.w4b{width:683.565000px;}
.w15{width:684.105000px;}
.w53{width:710.025000px;}
.w3e{width:771.444990px;}
.w3d{width:850.192172px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w28{width:959.190000px;}
.w16{width:1262.880000px;}
.w17{width:1263.000000px;}
.x0{left:0.000000px;}
.x29{left:1.598774px;}
.x1e{left:4.023198px;}
.x6b{left:5.040000px;}
.x3c{left:8.100000px;}
.x48{left:9.540000px;}
.x59{left:10.620000px;}
.x6a{left:11.700000px;}
.xbe{left:12.780000px;}
.x25{left:13.979566px;}
.x4b{left:15.120000px;}
.x64{left:16.200000px;}
.x4f{left:17.820000px;}
.x14{left:19.457927px;}
.x4d{left:20.745000px;}
.x4c{left:21.780000px;}
.x41{left:23.760000px;}
.x4e{left:25.380000px;}
.x4a{left:26.820000px;}
.x43{left:27.900000px;}
.x50{left:29.340000px;}
.xc2{left:30.420000px;}
.xf{left:31.551000px;}
.x3e{left:33.840000px;}
.x24{left:35.358170px;}
.x7a{left:36.720000px;}
.x69{left:38.880000px;}
.x51{left:40.530000px;}
.x5f{left:41.760000px;}
.x32{left:42.999088px;}
.x79{left:44.280000px;}
.x5d{left:45.540000px;}
.xb0{left:50.168717px;}
.x17{left:52.119603px;}
.x70{left:54.720000px;}
.xb6{left:65.464080px;}
.x19{left:67.591078px;}
.x94{left:69.703471px;}
.x2d{left:71.316327px;}
.x7b{left:72.930000px;}
.x35{left:75.365622px;}
.x7e{left:77.422684px;}
.x28{left:80.160464px;}
.x78{left:81.210000px;}
.xb2{left:82.628477px;}
.x9{left:83.700000px;}
.x2c{left:85.659153px;}
.x30{left:89.529858px;}
.x1{left:92.160000px;}
.x21{left:94.771622px;}
.x6e{left:98.280000px;}
.x22{left:101.054807px;}
.x3d{left:104.436000px;}
.x53{left:106.380000px;}
.x1d{left:108.335458px;}
.x61{left:110.385000px;}
.xa1{left:113.566402px;}
.x23{left:117.116962px;}
.x31{left:119.950216px;}
.x97{left:121.743704px;}
.x33{left:123.734366px;}
.x26{left:126.151831px;}
.xa{left:127.656000px;}
.x86{left:129.176463px;}
.x34{left:132.276476px;}
.xd{left:133.776000px;}
.x7d{left:142.153516px;}
.x27{left:143.179828px;}
.xb{left:152.490000px;}
.x12{left:154.650000px;}
.x1b{left:156.208019px;}
.x85{left:159.146584px;}
.x8c{left:162.930000px;}
.x87{left:163.974000px;}
.x96{left:165.939777px;}
.x15{left:167.846760px;}
.xc{left:172.255500px;}
.x6{left:176.970000px;}
.x57{left:179.505000px;}
.x1a{left:181.374053px;}
.xbc{left:183.730557px;}
.x3b{left:185.430000px;}
.x5b{left:190.845000px;}
.x18{left:200.464517px;}
.x81{left:201.659083px;}
.x99{left:206.340000px;}
.x89{left:208.098901px;}
.x1c{left:209.102074px;}
.x8e{left:211.068667px;}
.x5{left:213.510000px;}
.x83{left:219.288330px;}
.xe{left:221.032500px;}
.x82{left:223.184042px;}
.x8d{left:224.602153px;}
.x6f{left:228.990000px;}
.x3f{left:233.310000px;}
.x11{left:234.930000px;}
.x16{left:239.889840px;}
.x4{left:241.230000px;}
.x93{left:242.716139px;}
.x92{left:244.103840px;}
.xa5{left:245.790000px;}
.xae{left:247.251292px;}
.xb7{left:249.464560px;}
.x56{left:258.150000px;}
.x7f{left:265.865446px;}
.x3{left:267.330000px;}
.xc3{left:276.510000px;}
.x7{left:278.490000px;}
.xac{left:280.379812px;}
.x6c{left:281.910000px;}
.x2{left:283.710000px;}
.x40{left:287.175000px;}
.x13{left:292.440000px;}
.xbf{left:295.995000px;}
.x9f{left:301.573640px;}
.x8{left:308.595000px;}
.x8a{left:312.287890px;}
.x84{left:314.263121px;}
.xad{left:318.217322px;}
.x95{left:321.654393px;}
.xb1{left:326.817330px;}
.xb8{left:330.123123px;}
.xa0{left:335.835932px;}
.x42{left:340.815000px;}
.xa9{left:345.218262px;}
.xaa{left:349.668307px;}
.xa2{left:351.023118px;}
.x5c{left:358.635000px;}
.x20{left:364.215000px;}
.x2f{left:368.940000px;}
.x2b{left:373.215000px;}
.xc4{left:390.855000px;}
.x38{left:395.715000px;}
.x71{left:397.515000px;}
.x44{left:402.555000px;}
.x52{left:419.295000px;}
.x3a{left:421.095000px;}
.x39{left:425.595000px;}
.xc0{left:428.475000px;}
.xc9{left:442.155000px;}
.x7c{left:446.475000px;}
.x8b{left:447.555000px;}
.xa7{left:450.157394px;}
.x90{left:452.595000px;}
.x88{left:455.640000px;}
.x9a{left:462.564561px;}
.x45{left:468.795000px;}
.x91{left:473.475000px;}
.xa6{left:479.378323px;}
.xa3{left:483.867121px;}
.xb3{left:485.202020px;}
.xb9{left:490.109892px;}
.x74{left:493.635000px;}
.xca{left:496.695000px;}
.x80{left:503.699443px;}
.x5e{left:515.415000px;}
.xb4{left:517.106850px;}
.x2e{left:520.305000px;}
.xba{left:522.337442px;}
.x36{left:524.625000px;}
.xa8{left:527.581965px;}
.x2a{left:529.305000px;}
.x9e{left:541.173436px;}
.xc1{left:547.125000px;}
.xc5{left:550.515000px;}
.x46{left:559.005000px;}
.x63{left:566.715000px;}
.xc6{left:571.755000px;}
.x9b{left:582.330710px;}
.x75{left:598.065000px;}
.x1f{left:601.125000px;}
.x6d{left:604.185000px;}
.x98{left:610.845000px;}
.x8f{left:613.905000px;}
.x65{left:621.285000px;}
.xaf{left:626.145000px;}
.x55{left:631.545000px;}
.xc7{left:635.505000px;}
.x47{left:649.185000px;}
.x58{left:675.105000px;}
.xbd{left:686.130000px;}
.x9c{left:690.908965px;}
.x5a{left:696.345000px;}
.x72{left:702.825000px;}
.xcf{left:708.270000px;}
.xb5{left:713.490000px;}
.xbb{left:716.190000px;}
.x49{left:717.990000px;}
.x9d{left:719.994114px;}
.x37{left:748.770000px;}
.x10{left:757.050000px;}
.x60{left:760.065000px;}
.xcd{left:765.510000px;}
.xce{left:784.230000px;}
.x76{left:800.565000px;}
.xcb{left:816.450000px;}
.x66{left:845.250000px;}
.x77{left:898.530000px;}
.xcc{left:901.410000px;}
.xc8{left:912.030000px;}
.x67{left:941.010000px;}
.x73{left:996.450000px;}
.xab{left:1017.330000px;}
.x68{left:1025.970000px;}
.x62{left:1036.590000px;}
.xa4{left:1056.600000px;}
.x54{left:1139.940000px;}
@media print{
.v1c{vertical-align:-61.440000pt;}
.v8{vertical-align:-49.313044pt;}
.v6{vertical-align:-37.866667pt;}
.vf{vertical-align:-34.644507pt;}
.v5{vertical-align:-29.546667pt;}
.vb{vertical-align:-24.320000pt;}
.v12{vertical-align:-22.383877pt;}
.vd{vertical-align:-21.166212pt;}
.v11{vertical-align:-19.896779pt;}
.v13{vertical-align:-14.933356pt;}
.v15{vertical-align:-13.730846pt;}
.v1{vertical-align:-10.880000pt;}
.v2{vertical-align:-8.320000pt;}
.v1b{vertical-align:-2.526320pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.320000pt;}
.v18{vertical-align:14.661909pt;}
.v1a{vertical-align:15.711533pt;}
.v14{vertical-align:18.125023pt;}
.v19{vertical-align:20.629508pt;}
.v17{vertical-align:23.215987pt;}
.va{vertical-align:24.320000pt;}
.vc{vertical-align:27.547984pt;}
.v3{vertical-align:29.440000pt;}
.v10{vertical-align:34.644507pt;}
.v9{vertical-align:37.760000pt;}
.v7{vertical-align:45.205857pt;}
.v16{vertical-align:46.307120pt;}
.ve{vertical-align:59.194770pt;}
.ls3d{letter-spacing:-0.896000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls91{letter-spacing:-0.768000pt;}
.ls92{letter-spacing:-0.704000pt;}
.ls35{letter-spacing:-0.640000pt;}
.ls49{letter-spacing:-0.544000pt;}
.ls42{letter-spacing:-0.512000pt;}
.ls41{letter-spacing:-0.448000pt;}
.ls34{letter-spacing:-0.320000pt;}
.ls1f{letter-spacing:-0.260194pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.192000pt;}
.ls51{letter-spacing:-0.164164pt;}
.ls7f{letter-spacing:-0.154816pt;}
.ls75{letter-spacing:-0.151376pt;}
.ls66{letter-spacing:-0.136884pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls20{letter-spacing:-0.123852pt;}
.ls1d{letter-spacing:-0.122680pt;}
.ls88{letter-spacing:-0.109485pt;}
.ls85{letter-spacing:-0.108388pt;}
.ls73{letter-spacing:-0.107998pt;}
.ls6c{letter-spacing:-0.069596pt;}
.ls4e{letter-spacing:-0.066477pt;}
.ls6b{letter-spacing:-0.065865pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls57{letter-spacing:-0.059786pt;}
.ls74{letter-spacing:-0.049050pt;}
.ls4b{letter-spacing:-0.047360pt;}
.ls6e{letter-spacing:-0.032461pt;}
.ls2{letter-spacing:-0.026667pt;}
.ls58{letter-spacing:-0.023053pt;}
.ls78{letter-spacing:-0.019248pt;}
.ls7e{letter-spacing:-0.010657pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.000266pt;}
.ls44{letter-spacing:0.011520pt;}
.ls61{letter-spacing:0.017150pt;}
.ls60{letter-spacing:0.019268pt;}
.ls7a{letter-spacing:0.020018pt;}
.ls5f{letter-spacing:0.027293pt;}
.ls64{letter-spacing:0.031938pt;}
.ls65{letter-spacing:0.031940pt;}
.ls4{letter-spacing:0.032000pt;}
.ls8b{letter-spacing:0.034904pt;}
.ls6f{letter-spacing:0.035204pt;}
.ls7c{letter-spacing:0.036004pt;}
.ls7d{letter-spacing:0.036798pt;}
.ls71{letter-spacing:0.043042pt;}
.ls69{letter-spacing:0.044767pt;}
.ls45{letter-spacing:0.047360pt;}
.ls72{letter-spacing:0.054777pt;}
.ls77{letter-spacing:0.055257pt;}
.ls5a{letter-spacing:0.055960pt;}
.ls59{letter-spacing:0.058829pt;}
.ls68{letter-spacing:0.061650pt;}
.ls4f{letter-spacing:0.062222pt;}
.ls5e{letter-spacing:0.063136pt;}
.ls81{letter-spacing:0.063663pt;}
.ls5d{letter-spacing:0.063773pt;}
.ls2a{letter-spacing:0.064000pt;}
.ls80{letter-spacing:0.065790pt;}
.ls89{letter-spacing:0.066652pt;}
.ls70{letter-spacing:0.070407pt;}
.ls63{letter-spacing:0.071095pt;}
.ls54{letter-spacing:0.071265pt;}
.ls56{letter-spacing:0.071296pt;}
.ls7b{letter-spacing:0.072008pt;}
.ls79{letter-spacing:0.088281pt;}
.ls84{letter-spacing:0.105263pt;}
.ls87{letter-spacing:0.106304pt;}
.ls48{letter-spacing:0.106667pt;}
.ls67{letter-spacing:0.116186pt;}
.ls4c{letter-spacing:0.117265pt;}
.ls52{letter-spacing:0.120289pt;}
.lsc{letter-spacing:0.128000pt;}
.ls6d{letter-spacing:0.129843pt;}
.ls37{letter-spacing:0.133120pt;}
.ls12{letter-spacing:0.135680pt;}
.ls83{letter-spacing:0.135790pt;}
.ls86{letter-spacing:0.137132pt;}
.ls8c{letter-spacing:0.143969pt;}
.ls8e{letter-spacing:0.150901pt;}
.ls2f{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.161280pt;}
.ls50{letter-spacing:0.165758pt;}
.ls55{letter-spacing:0.166923pt;}
.ls62{letter-spacing:0.187818pt;}
.ls8d{letter-spacing:0.188088pt;}
.ls6{letter-spacing:0.192000pt;}
.ls82{letter-spacing:0.199320pt;}
.ls46{letter-spacing:0.207360pt;}
.ls5b{letter-spacing:0.215325pt;}
.ls1{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.239360pt;}
.ls8a{letter-spacing:0.250613pt;}
.ls53{letter-spacing:0.252238pt;}
.ls14{letter-spacing:0.256000pt;}
.ls47{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.279680pt;}
.ls38{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6a{letter-spacing:0.361570pt;}
.ls8{letter-spacing:0.384000pt;}
.ls4a{letter-spacing:0.409067pt;}
.ls3a{letter-spacing:0.416000pt;}
.ls3e{letter-spacing:0.426667pt;}
.ls29{letter-spacing:0.448000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls36{letter-spacing:0.560640pt;}
.ls28{letter-spacing:0.640000pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls2b{letter-spacing:0.768000pt;}
.ls43{letter-spacing:0.810667pt;}
.ls3f{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.152000pt;}
.ls2d{letter-spacing:1.344000pt;}
.ls3c{letter-spacing:2.053120pt;}
.ls30{letter-spacing:2.080000pt;}
.ls25{letter-spacing:2.480640pt;}
.ls26{letter-spacing:2.693120pt;}
.ls33{letter-spacing:3.840000pt;}
.ls3b{letter-spacing:4.400640pt;}
.ls16{letter-spacing:4.640000pt;}
.ls90{letter-spacing:5.040640pt;}
.ls39{letter-spacing:5.120000pt;}
.ls40{letter-spacing:6.400000pt;}
.ls8f{letter-spacing:7.840000pt;}
.ls32{letter-spacing:8.960000pt;}
.ls2c{letter-spacing:11.040000pt;}
.ls31{letter-spacing:12.928000pt;}
.lsa{letter-spacing:13.674667pt;}
.ls9{letter-spacing:13.696000pt;}
.ls5c{letter-spacing:14.796479pt;}
.ls18{letter-spacing:18.048000pt;}
.ls22{letter-spacing:32.368155pt;}
.ls17{letter-spacing:35.968000pt;}
.ls21{letter-spacing:40.173980pt;}
.ls19{letter-spacing:57.390597pt;}
.ls1e{letter-spacing:78.734757pt;}
.ls93{letter-spacing:82.693120pt;}
.ls23{letter-spacing:88.934368pt;}
.ls24{letter-spacing:110.166213pt;}
.ls1a{letter-spacing:196.169192pt;}
.ls1b{letter-spacing:213.272925pt;}
.ls76{letter-spacing:234.567843pt;}
.ls1c{letter-spacing:605.304884pt;}
.ls95{letter-spacing:1808.405333pt;}
.ls96{letter-spacing:1813.461333pt;}
.ls94{letter-spacing:2000.405333pt;}
.ws22{word-spacing:-126.125222pt;}
.ws1e{word-spacing:-104.925902pt;}
.ws19{word-spacing:-94.693766pt;}
.ws2b{word-spacing:-64.000000pt;}
.ws29{word-spacing:-35.136000pt;}
.ws86{word-spacing:-28.800000pt;}
.ws55{word-spacing:-23.335905pt;}
.ws34{word-spacing:-23.221120pt;}
.ws35{word-spacing:-18.984960pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2a{word-spacing:-17.792000pt;}
.ws74{word-spacing:-17.184651pt;}
.ws72{word-spacing:-16.813781pt;}
.ws62{word-spacing:-16.811652pt;}
.ws28{word-spacing:-16.768000pt;}
.ws85{word-spacing:-16.704000pt;}
.ws24{word-spacing:-16.640000pt;}
.ws26{word-spacing:-16.448000pt;}
.ws2d{word-spacing:-16.384000pt;}
.wsf{word-spacing:-16.256000pt;}
.wsa{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws2e{word-spacing:-16.064000pt;}
.ws9{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.ws41{word-spacing:-15.894449pt;}
.wsb{word-spacing:-15.872000pt;}
.ws7c{word-spacing:-15.868506pt;}
.ws7e{word-spacing:-15.867302pt;}
.ws27{word-spacing:-15.808000pt;}
.ws80{word-spacing:-15.757817pt;}
.ws8{word-spacing:-15.744000pt;}
.ws76{word-spacing:-15.713182pt;}
.ws78{word-spacing:-15.708410pt;}
.ws7a{word-spacing:-15.600021pt;}
.ws30{word-spacing:-15.552000pt;}
.ws32{word-spacing:-15.488000pt;}
.ws31{word-spacing:-15.360000pt;}
.ws84{word-spacing:-15.296000pt;}
.ws2f{word-spacing:-15.168000pt;}
.ws71{word-spacing:-15.013590pt;}
.ws6f{word-spacing:-15.002933pt;}
.ws4e{word-spacing:-14.902584pt;}
.ws4b{word-spacing:-14.901789pt;}
.ws68{word-spacing:-14.679936pt;}
.ws3{word-spacing:-14.666667pt;}
.ws4a{word-spacing:-14.225791pt;}
.ws47{word-spacing:-14.219501pt;}
.ws39{word-spacing:-13.689067pt;}
.ws3b{word-spacing:-13.545600pt;}
.ws0{word-spacing:-13.534613pt;}
.ws3f{word-spacing:-13.419006pt;}
.ws82{word-spacing:-13.387783pt;}
.ws7d{word-spacing:-13.378338pt;}
.ws52{word-spacing:-13.307196pt;}
.ws58{word-spacing:-13.295529pt;}
.ws36{word-spacing:-13.280000pt;}
.ws77{word-spacing:-13.247389pt;}
.ws67{word-spacing:-13.236585pt;}
.ws3a{word-spacing:-13.232640pt;}
.ws65{word-spacing:-13.201382pt;}
.ws6d{word-spacing:-12.902613pt;}
.ws38{word-spacing:-12.736000pt;}
.ws45{word-spacing:-12.576582pt;}
.ws46{word-spacing:-12.553529pt;}
.ws59{word-spacing:-12.073864pt;}
.ws44{word-spacing:-12.068401pt;}
.ws49{word-spacing:-12.043833pt;}
.ws5b{word-spacing:-12.012214pt;}
.ws2{word-spacing:-12.000000pt;}
.ws25{word-spacing:-11.040000pt;}
.ws5f{word-spacing:-10.827432pt;}
.wsd{word-spacing:-10.720000pt;}
.ws56{word-spacing:-10.626550pt;}
.ws5c{word-spacing:-10.602747pt;}
.ws2c{word-spacing:-10.400000pt;}
.ws70{word-spacing:-9.901049pt;}
.ws4d{word-spacing:-9.828066pt;}
.ws69{word-spacing:-9.681013pt;}
.ws42{word-spacing:-9.490183pt;}
.ws7f{word-spacing:-9.460590pt;}
.ws79{word-spacing:-9.365853pt;}
.ws83{word-spacing:-9.332045pt;}
.ws66{word-spacing:-8.800921pt;}
.ws53{word-spacing:-8.775698pt;}
.ws37{word-spacing:-8.651520pt;}
.ws33{word-spacing:-8.640000pt;}
.ws6c{word-spacing:-8.509646pt;}
.ws40{word-spacing:-7.971764pt;}
.ws5a{word-spacing:-7.174422pt;}
.ws5d{word-spacing:-6.487882pt;}
.ws60{word-spacing:-5.726444pt;}
.ws5e{word-spacing:-5.644419pt;}
.ws4c{word-spacing:-0.728587pt;}
.ws6{word-spacing:-0.522667pt;}
.ws5{word-spacing:-0.298667pt;}
.ws73{word-spacing:-0.033314pt;}
.ws4{word-spacing:0.000000pt;}
.ws63{word-spacing:0.062522pt;}
.ws7{word-spacing:0.160000pt;}
.ws51{word-spacing:0.270268pt;}
.ws20{word-spacing:12.345464pt;}
.ws23{word-spacing:12.448027pt;}
.ws15{word-spacing:19.664996pt;}
.ws1f{word-spacing:20.149333pt;}
.ws1b{word-spacing:20.236024pt;}
.ws16{word-spacing:23.522118pt;}
.ws6e{word-spacing:33.555555pt;}
.ws4f{word-spacing:50.413906pt;}
.ws50{word-spacing:51.420057pt;}
.ws48{word-spacing:61.977651pt;}
.ws43{word-spacing:62.219286pt;}
.ws3d{word-spacing:69.288764pt;}
.ws3c{word-spacing:85.530374pt;}
.ws61{word-spacing:92.620893pt;}
.ws57{word-spacing:96.462076pt;}
.ws11{word-spacing:97.471323pt;}
.ws81{word-spacing:101.126215pt;}
.ws1a{word-spacing:102.036310pt;}
.ws10{word-spacing:117.193850pt;}
.ws17{word-spacing:150.832521pt;}
.ws1c{word-spacing:164.498894pt;}
.ws75{word-spacing:166.064028pt;}
.ws7b{word-spacing:167.705557pt;}
.ws12{word-spacing:171.670816pt;}
.ws18{word-spacing:174.530593pt;}
.ws1d{word-spacing:174.696750pt;}
.ws21{word-spacing:192.710885pt;}
.ws64{word-spacing:196.401355pt;}
.ws6b{word-spacing:206.773350pt;}
.ws14{word-spacing:270.529966pt;}
.ws54{word-spacing:362.444442pt;}
.ws3e{word-spacing:438.681702pt;}
.ws13{word-spacing:654.066633pt;}
.ws6a{word-spacing:1421.051260pt;}
._be{margin-left:-3826.818560pt;}
._d2{margin-left:-3579.264000pt;}
._da{margin-left:-3508.757333pt;}
._d5{margin-left:-3438.480213pt;}
._30{margin-left:-2470.464000pt;}
._3e{margin-left:-2469.504000pt;}
._33{margin-left:-2468.544000pt;}
._6e{margin-left:-2467.456000pt;}
._50{margin-left:-2458.517333pt;}
._ec{margin-left:-2455.744000pt;}
._83{margin-left:-2454.848000pt;}
._3a{margin-left:-2453.909333pt;}
._b0{margin-left:-2450.858667pt;}
._6c{margin-left:-2448.256000pt;}
._27{margin-left:-2440.789333pt;}
._13{margin-left:-2439.797333pt;}
._16{margin-left:-2438.272000pt;}
._f8{margin-left:-2432.426667pt;}
._70{margin-left:-2425.280000pt;}
._10{margin-left:-2424.149333pt;}
._17{margin-left:-2423.232000pt;}
._b2{margin-left:-2418.858667pt;}
._e4{margin-left:-2390.878080pt;}
._ae{margin-left:-2365.290667pt;}
._102{margin-left:-2350.474667pt;}
._8c{margin-left:-2346.624000pt;}
._10d{margin-left:-2343.722667pt;}
._10a{margin-left:-2336.810667pt;}
._76{margin-left:-2330.912000pt;}
._117{margin-left:-2309.418667pt;}
._f4{margin-left:-2308.138667pt;}
._e3{margin-left:-2303.540267pt;}
._df{margin-left:-2294.933333pt;}
._dc{margin-left:-2285.333333pt;}
._9a{margin-left:-2283.434667pt;}
._6{margin-left:-2263.978667pt;}
._c4{margin-left:-2244.373333pt;}
._28{margin-left:-2231.232000pt;}
._a8{margin-left:-2208.938667pt;}
._e1{margin-left:-2188.053333pt;}
._bd{margin-left:-2165.941333pt;}
._c0{margin-left:-2149.941333pt;}
._d3{margin-left:-2143.029333pt;}
._e5{margin-left:-2130.187947pt;}
._d6{margin-left:-2127.029333pt;}
._110{margin-left:-2122.922667pt;}
._ff{margin-left:-2120.682667pt;}
._b3{margin-left:-2113.642667pt;}
._5{margin-left:-2103.402667pt;}
._9c{margin-left:-2096.874667pt;}
._115{margin-left:-2082.666667pt;}
._af{margin-left:-2079.082667pt;}
._a6{margin-left:-2071.658667pt;}
._bc{margin-left:-2069.493333pt;}
._d9{margin-left:-2067.957333pt;}
._2f{margin-left:-2062.208000pt;}
._10f{margin-left:-2041.578667pt;}
._3f{margin-left:-2039.680000pt;}
._ab{margin-left:-2034.538667pt;}
._4{margin-left:-2005.546667pt;}
._b7{margin-left:-1988.010667pt;}
._109{margin-left:-1977.322667pt;}
._d8{margin-left:-1973.237333pt;}
._2b{margin-left:-1964.160000pt;}
._b4{margin-left:-1945.450667pt;}
._74{margin-left:-1936.192000pt;}
._c9{margin-left:-1931.253333pt;}
._ce{margin-left:-1920.373333pt;}
._3{margin-left:-1913.322667pt;}
._7{margin-left:-1903.402667pt;}
._b9{margin-left:-1901.354667pt;}
._101{margin-left:-1895.658667pt;}
._108{margin-left:-1892.138667pt;}
._68{margin-left:-1880.384000pt;}
._a7{margin-left:-1871.082667pt;}
._2{margin-left:-1854.442667pt;}
._77{margin-left:-1830.656000pt;}
._f0{margin-left:-1826.912000pt;}
._6b{margin-left:-1808.728320pt;}
._98{margin-left:-1803.562667pt;}
._60{margin-left:-1802.538240pt;}
._ea{margin-left:-1801.642240pt;}
._8{margin-left:-1797.002667pt;}
._bf{margin-left:-1794.052480pt;}
._ad{margin-left:-1777.578667pt;}
._b1{margin-left:-1775.146667pt;}
._80{margin-left:-1769.664000pt;}
._3b{margin-left:-1765.056000pt;}
._111{margin-left:-1756.970667pt;}
._f7{margin-left:-1710.762667pt;}
._48{margin-left:-1709.162667pt;}
._e9{margin-left:-1684.096000pt;}
._114{margin-left:-1674.986667pt;}
._8a{margin-left:-1669.120000pt;}
._82{margin-left:-1667.328000pt;}
._66{margin-left:-1658.816000pt;}
._81{margin-left:-1653.504000pt;}
._6f{margin-left:-1629.952000pt;}
._88{margin-left:-1626.496000pt;}
._fe{margin-left:-1623.594667pt;}
._42{margin-left:-1618.304000pt;}
._7d{margin-left:-1600.458667pt;}
._f6{margin-left:-1597.162667pt;}
._b8{margin-left:-1582.826667pt;}
._f1{margin-left:-1573.632000pt;}
._aa{margin-left:-1557.994667pt;}
._64{margin-left:-1551.744000pt;}
._8d{margin-left:-1535.872000pt;}
._103{margin-left:-1525.930667pt;}
._e8{margin-left:-1517.760000pt;}
._5e{margin-left:-1516.362667pt;}
._ca{margin-left:-1506.122667pt;}
._a0{margin-left:-1504.810667pt;}
._71{margin-left:-1502.144000pt;}
._99{margin-left:-1497.706667pt;}
._104{margin-left:-1492.138667pt;}
._fb{margin-left:-1488.490667pt;}
._7b{margin-left:-1469.696000pt;}
._6d{margin-left:-1462.592000pt;}
._47{margin-left:-1461.482667pt;}
._107{margin-left:-1457.002667pt;}
._63{margin-left:-1454.400000pt;}
._a4{margin-left:-1449.514667pt;}
._75{margin-left:-1445.888000pt;}
._bb{margin-left:-1433.034667pt;}
._cb{margin-left:-1431.946667pt;}
._7f{margin-left:-1426.122667pt;}
._e2{margin-left:-1423.429547pt;}
._59{margin-left:-1417.216000pt;}
._65{margin-left:-1410.122667pt;}
._ba{margin-left:-1408.192000pt;}
._a1{margin-left:-1389.034667pt;}
._46{margin-left:-1386.090667pt;}
._5c{margin-left:-1378.880000pt;}
._10b{margin-left:-1369.514667pt;}
._85{margin-left:-1347.648000pt;}
._c1{margin-left:-1335.946667pt;}
._79{margin-left:-1334.720000pt;}
._8f{margin-left:-1278.784000pt;}
._97{margin-left:-1232.682667pt;}
._106{margin-left:-1216.682667pt;}
._7a{margin-left:-1199.776000pt;}
._e7{margin-left:-1197.546667pt;}
._10c{margin-left:-1182.890667pt;}
._c{margin-left:-1181.546667pt;}
._45{margin-left:-1174.720000pt;}
._5b{margin-left:-1164.032000pt;}
._100{margin-left:-1143.658667pt;}
._eb{margin-left:-1135.296000pt;}
._84{margin-left:-1123.392000pt;}
._44{margin-left:-1114.432000pt;}
._73{margin-left:-1110.848000pt;}
._6a{margin-left:-1108.152320pt;}
._9f{margin-left:-1104.682667pt;}
._105{margin-left:-1101.034667pt;}
._5d{margin-left:-1078.816000pt;}
._b6{margin-left:-1053.034667pt;}
._24{margin-left:-1049.642667pt;}
._7c{margin-left:-1030.720000pt;}
._5f{margin-left:-1026.304000pt;}
._ef{margin-left:-1016.448000pt;}
._3c{margin-left:-1002.560000pt;}
._fc{margin-left:-999.722667pt;}
._9d{margin-left:-951.722667pt;}
._f3{margin-left:-933.930667pt;}
._39{margin-left:-909.888000pt;}
._5a{margin-left:-902.976000pt;}
._10e{margin-left:-893.098667pt;}
._49{margin-left:-890.496000pt;}
._a9{margin-left:-887.722667pt;}
._a{margin-left:-885.098667pt;}
._116{margin-left:-871.722667pt;}
._ac{margin-left:-823.722667pt;}
._b{margin-left:-821.098667pt;}
._78{margin-left:-781.824000pt;}
._9{margin-left:-765.056000pt;}
._a3{margin-left:-759.722667pt;}
._a2{margin-left:-743.722667pt;}
._91{margin-left:-732.096000pt;}
._36{margin-left:-720.576000pt;}
._f5{margin-left:-701.098667pt;}
._43{margin-left:-700.032000pt;}
._38{margin-left:-639.680000pt;}
._9b{margin-left:-637.098667pt;}
._62{margin-left:-623.104000pt;}
._8e{margin-left:-597.120000pt;}
._25{margin-left:-584.768000pt;}
._96{margin-left:-573.098667pt;}
._94{margin-left:-564.096000pt;}
._b5{margin-left:-551.786667pt;}
._90{margin-left:-535.680000pt;}
._f2{margin-left:-533.056000pt;}
._89{margin-left:-520.576000pt;}
._a5{margin-left:-487.786667pt;}
._7e{margin-left:-470.784000pt;}
._d{margin-left:-410.432000pt;}
._31{margin-left:-399.680000pt;}
._20{margin-left:-373.056000pt;}
._67{margin-left:-335.680000pt;}
._37{margin-left:-202.368000pt;}
._21{margin-left:-172.288000pt;}
._e6{margin-left:-142.208000pt;}
._d4{margin-left:-109.644580pt;}
._56{margin-left:-95.914972pt;}
._53{margin-left:-74.728141pt;}
._51{margin-left:-10.560876pt;}
._1d{margin-left:-1.856000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.088000pt;}
._1b{width:2.304000pt;}
._18{width:3.200000pt;}
._15{width:4.224000pt;}
._14{width:5.824000pt;}
._11{width:7.232000pt;}
._12{width:8.469333pt;}
._1c{width:9.418667pt;}
._26{width:10.677333pt;}
._23{width:12.352000pt;}
._1e{width:13.248000pt;}
._1f{width:14.218667pt;}
._19{width:16.896000pt;}
._1a{width:18.058667pt;}
._2e{width:19.040000pt;}
._32{width:20.448000pt;}
._2a{width:21.568000pt;}
._e{width:22.656000pt;}
._29{width:23.616000pt;}
._f{width:25.109333pt;}
._2d{width:26.112000pt;}
._2c{width:27.328000pt;}
._8b{width:28.352000pt;}
._72{width:29.354667pt;}
._40{width:30.336000pt;}
._41{width:31.232000pt;}
._61{width:32.128000pt;}
._35{width:33.034667pt;}
._34{width:33.984000pt;}
._3d{width:35.136000pt;}
._69{width:36.906667pt;}
._ed{width:38.346667pt;}
._92{width:40.192000pt;}
._93{width:41.280000pt;}
._ee{width:42.346667pt;}
._f9{width:46.528000pt;}
._fa{width:47.616000pt;}
._fd{width:48.512000pt;}
._d7{width:51.336638pt;}
._86{width:57.578667pt;}
._87{width:58.762667pt;}
._112{width:64.256000pt;}
._113{width:65.280000pt;}
._c7{width:67.056721pt;}
._c5{width:77.464289pt;}
._9e{width:82.794667pt;}
._c3{width:86.302835pt;}
._22{width:88.106667pt;}
._54{width:92.443888pt;}
._cf{width:107.371237pt;}
._d0{width:109.964575pt;}
._95{width:114.794667pt;}
._c2{width:116.852911pt;}
._e0{width:118.113222pt;}
._57{width:120.452053pt;}
._cd{width:127.820451pt;}
._4d{width:142.650263pt;}
._cc{width:143.622807pt;}
._119{width:192.138667pt;}
._c6{width:198.012895pt;}
._dd{width:199.519022pt;}
._4b{width:207.099416pt;}
._d1{width:213.862382pt;}
._4c{width:235.236248pt;}
._4a{width:265.519516pt;}
._c8{width:292.671294pt;}
._11a{width:328.586667pt;}
._4e{width:360.501641pt;}
._db{width:405.812034pt;}
._de{width:409.823451pt;}
._4f{width:482.080000pt;}
._11b{width:731.946667pt;}
._52{width:737.440000pt;}
._58{width:754.080000pt;}
._55{width:769.440000pt;}
._118{width:1795.605333pt;}
.fs6a{font-size:13.440000pt;}
.fs3e{font-size:22.577678pt;}
.fs44{font-size:22.905775pt;}
.fs3c{font-size:25.432154pt;}
.fs30{font-size:26.550194pt;}
.fs69{font-size:26.880000pt;}
.fs3a{font-size:28.697688pt;}
.fs34{font-size:28.720177pt;}
.fs1c{font-size:30.350720pt;}
.fs58{font-size:31.426365pt;}
.fs38{font-size:31.593645pt;}
.fs63{font-size:31.705170pt;}
.fs5d{font-size:31.737012pt;}
.fs13{font-size:31.887057pt;}
.fs1f{font-size:33.815916pt;}
.fs28{font-size:33.830874pt;}
.fs4f{font-size:34.038585pt;}
.fsf{font-size:34.560000pt;}
.fs3d{font-size:34.904484pt;}
.fs32{font-size:35.102792pt;}
.fs4a{font-size:35.203684pt;}
.fs43{font-size:35.411713pt;}
.fs7{font-size:36.572930pt;}
.fsa{font-size:36.922594pt;}
.fsd{font-size:37.120000pt;}
.fs67{font-size:37.328181pt;}
.fs5a{font-size:37.463413pt;}
.fs5f{font-size:37.842359pt;}
.fs15{font-size:37.960732pt;}
.fs3f{font-size:38.018127pt;}
.fs45{font-size:38.570604pt;}
.fs4c{font-size:38.724053pt;}
.fs2a{font-size:39.073942pt;}
.fs2e{font-size:39.312265pt;}
.fs20{font-size:39.497572pt;}
.fs21{font-size:39.551545pt;}
.fs2b{font-size:39.569040pt;}
.fs53{font-size:39.604195pt;}
.fs50{font-size:41.443082pt;}
.fs33{font-size:42.506201pt;}
.fs3b{font-size:42.689371pt;}
.fs5{font-size:42.880000pt;}
.fs41{font-size:43.078901pt;}
.fs40{font-size:43.309730pt;}
.fs64{font-size:43.374176pt;}
.fs22{font-size:43.614123pt;}
.fs26{font-size:43.633415pt;}
.fs42{font-size:43.704920pt;}
.fs65{font-size:43.960663pt;}
.fs1d{font-size:46.481938pt;}
.fs3{font-size:48.000000pt;}
.fs39{font-size:48.048855pt;}
.fs25{font-size:48.175332pt;}
.fs19{font-size:48.273605pt;}
.fs1b{font-size:50.306328pt;}
.fs4d{font-size:51.610451pt;}
.fs4e{font-size:51.671704pt;}
.fs23{font-size:52.578196pt;}
.fs2c{font-size:52.601453pt;}
.fs49{font-size:52.805526pt;}
.fs57{font-size:52.989557pt;}
.fse{font-size:53.120000pt;}
.fs37{font-size:53.182118pt;}
.fs31{font-size:53.228783pt;}
.fs68{font-size:53.333333pt;}
.fs5c{font-size:53.513354pt;}
.fs62{font-size:53.551130pt;}
.fs12{font-size:53.676024pt;}
.fs54{font-size:54.005721pt;}
.fs16{font-size:54.551418pt;}
.fs17{font-size:54.606699pt;}
.fs29{font-size:56.427434pt;}
.fs1e{font-size:56.878005pt;}
.fs27{font-size:56.903164pt;}
.fs24{font-size:57.142414pt;}
.fs1a{font-size:57.158615pt;}
.fs18{font-size:57.236721pt;}
.fs4{font-size:58.666667pt;}
.fs4b{font-size:58.719745pt;}
.fs0{font-size:58.880000pt;}
.fs2d{font-size:59.607156pt;}
.fs2f{font-size:59.610337pt;}
.fs52{font-size:60.054362pt;}
.fs46{font-size:62.153406pt;}
.fs66{font-size:62.695897pt;}
.fs59{font-size:62.833639pt;}
.fs56{font-size:62.852730pt;}
.fs36{font-size:63.056614pt;}
.fs8{font-size:63.231500pt;}
.fs5e{font-size:63.469208pt;}
.fs5b{font-size:63.474024pt;}
.fs61{font-size:63.543645pt;}
.fs14{font-size:63.577797pt;}
.fs11{font-size:63.642225pt;}
.fsb{font-size:63.836038pt;}
.fsc{font-size:63.966135pt;}
.fs1{font-size:64.000000pt;}
.fs60{font-size:64.074809pt;}
.fs35{font-size:64.082803pt;}
.fs10{font-size:64.085360pt;}
.fs47{font-size:65.760482pt;}
.fs48{font-size:67.246610pt;}
.fs51{font-size:67.255125pt;}
.fs55{font-size:68.738603pt;}
.fs2{font-size:74.880000pt;}
.fs6{font-size:82.932388pt;}
.fs9{font-size:83.725281pt;}
.y26a{bottom:-27.680000pt;}
.y269{bottom:-6.720000pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:3.685523pt;}
.yf8{bottom:4.000000pt;}
.y1c9{bottom:4.182143pt;}
.y67{bottom:4.797070pt;}
.y58{bottom:4.815816pt;}
.y1b5{bottom:4.837329pt;}
.y61{bottom:4.861858pt;}
.y105{bottom:5.600000pt;}
.y186{bottom:6.551677pt;}
.y150{bottom:6.762394pt;}
.y15f{bottom:6.944105pt;}
.y138{bottom:7.177680pt;}
.yf1{bottom:7.520000pt;}
.y55{bottom:7.705228pt;}
.y66{bottom:7.746501pt;}
.y5e{bottom:7.778895pt;}
.y1e1{bottom:7.900407pt;}
.y1fb{bottom:7.978502pt;}
.y214{bottom:8.053117pt;}
.y26d{bottom:9.600000pt;}
.ye8{bottom:11.040000pt;}
.y1b7{bottom:11.109048pt;}
.y18d{bottom:11.966319pt;}
.yf9{bottom:12.360000pt;}
.y152{bottom:12.640000pt;}
.yb7{bottom:12.960000pt;}
.ye3{bottom:12.986667pt;}
.y116{bottom:13.000000pt;}
.yb2{bottom:13.120000pt;}
.y11e{bottom:13.146667pt;}
.ydb{bottom:13.160000pt;}
.yfe{bottom:13.280000pt;}
.yfa{bottom:13.320000pt;}
.yd5{bottom:13.440000pt;}
.y160{bottom:13.760000pt;}
.yd4{bottom:13.920000pt;}
.y268{bottom:14.240000pt;}
.y57{bottom:17.111989pt;}
.y60{bottom:17.275592pt;}
.y26c{bottom:17.440000pt;}
.y1d{bottom:20.000000pt;}
.y54{bottom:20.033360pt;}
.yd2{bottom:20.480000pt;}
.y104{bottom:20.960000pt;}
.y59{bottom:21.189279pt;}
.yd0{bottom:21.280000pt;}
.y68{bottom:21.359340pt;}
.y154{bottom:21.368593pt;}
.y62{bottom:21.391864pt;}
.y13f{bottom:22.163864pt;}
.yf7{bottom:22.400000pt;}
.yfb{bottom:22.440000pt;}
.yf4{bottom:22.760000pt;}
.y1ab{bottom:24.066919pt;}
.y128{bottom:25.428618pt;}
.y177{bottom:25.685621pt;}
.y1d3{bottom:25.963198pt;}
.y247{bottom:26.080000pt;}
.y1ed{bottom:26.219842pt;}
.y20e{bottom:26.286522pt;}
.y244{bottom:26.880000pt;}
.y167{bottom:26.949704pt;}
.y10f{bottom:27.200000pt;}
.yce{bottom:27.840000pt;}
.y56{bottom:28.413454pt;}
.y5f{bottom:28.685107pt;}
.y100{bottom:28.800000pt;}
.y24e{bottom:30.720000pt;}
.yde{bottom:30.746667pt;}
.y5d{bottom:31.634407pt;}
.yfd{bottom:31.680000pt;}
.y1bd{bottom:31.905380pt;}
.y5a{bottom:32.490744pt;}
.y63{bottom:32.801378pt;}
.ye7{bottom:33.920000pt;}
.y254{bottom:34.080000pt;}
.yd7{bottom:34.720000pt;}
.y16a{bottom:35.435983pt;}
.y1ac{bottom:36.002526pt;}
.y18b{bottom:37.037210pt;}
.yb1{bottom:40.640000pt;}
.yc7{bottom:40.666667pt;}
.yb5{bottom:40.680000pt;}
.yf6{bottom:40.800000pt;}
.yf3{bottom:41.160000pt;}
.ycc{bottom:41.600000pt;}
.y103{bottom:42.266667pt;}
.y129{bottom:42.752471pt;}
.y1d4{bottom:43.075067pt;}
.y1ee{bottom:43.500861pt;}
.y1c{bottom:47.040000pt;}
.yec{bottom:47.072000pt;}
.y159{bottom:52.185159pt;}
.y266{bottom:52.480000pt;}
.y246{bottom:54.240000pt;}
.yef{bottom:54.280000pt;}
.y14e{bottom:54.456672pt;}
.y243{bottom:54.560000pt;}
.ycd{bottom:55.360000pt;}
.y11c{bottom:55.520000pt;}
.y112{bottom:55.560000pt;}
.y182{bottom:56.207509pt;}
.ye6{bottom:56.960000pt;}
.y102{bottom:58.586667pt;}
.yf2{bottom:59.560000pt;}
.y1f5{bottom:64.125135pt;}
.y265{bottom:66.080000pt;}
.y1b{bottom:67.040000pt;}
.y1bb{bottom:67.200000pt;}
.yeb{bottom:67.232000pt;}
.yc3{bottom:68.160000pt;}
.yc6{bottom:68.186667pt;}
.y245{bottom:68.320000pt;}
.yd1{bottom:68.960000pt;}
.ycf{bottom:69.120000pt;}
.y140{bottom:70.244958pt;}
.y1db{bottom:74.742222pt;}
.y1b0{bottom:76.759495pt;}
.y1c0{bottom:77.996263pt;}
.ye5{bottom:80.000000pt;}
.y12a{bottom:84.158207pt;}
.y1d5{bottom:84.642238pt;}
.y1ef{bottom:85.478919pt;}
.y20f{bottom:87.096089pt;}
.y141{bottom:88.565779pt;}
.y197{bottom:90.546810pt;}
.y37{bottom:93.280000pt;}
.yc9{bottom:94.240000pt;}
.y1fd{bottom:94.979825pt;}
.yc2{bottom:95.840000pt;}
.yc5{bottom:95.866667pt;}
.y1e3{bottom:97.065941pt;}
.y1ad{bottom:104.029043pt;}
.y1b4{bottom:107.068202pt;}
.yc8{bottom:108.000000pt;}
.y178{bottom:109.340887pt;}
.y158{bottom:110.033359pt;}
.y213{bottom:111.638802pt;}
.y14d{bottom:112.278100pt;}
.y1f6{bottom:112.327283pt;}
.y1c8{bottom:113.532027pt;}
.y1e2{bottom:115.980444pt;}
.y1fc{bottom:117.126901pt;}
.y1b1{bottom:117.511859pt;}
.y6d{bottom:117.600000pt;}
.y1dc{bottom:118.439659pt;}
.yaa{bottom:120.800000pt;}
.yc1{bottom:123.360000pt;}
.y234{bottom:124.000000pt;}
.y20b{bottom:124.480000pt;}
.y12b{bottom:125.562615pt;}
.y82{bottom:125.600000pt;}
.y1d6{bottom:126.208092pt;}
.y1f0{bottom:127.455648pt;}
.y1ba{bottom:127.712000pt;}
.y51{bottom:128.000000pt;}
.y77{bottom:129.440000pt;}
.y36{bottom:130.400000pt;}
.y10d{bottom:136.666667pt;}
.y16b{bottom:140.706690pt;}
.y165{bottom:142.741380pt;}
.y18e{bottom:143.642767pt;}
.y18c{bottom:143.889192pt;}
.y1fe{bottom:146.486693pt;}
.y1d1{bottom:146.746667pt;}
.y132{bottom:148.886663pt;}
.yc0{bottom:151.080000pt;}
.y1e4{bottom:151.158131pt;}
.y1b9{bottom:151.226667pt;}
.y19a{bottom:151.280000pt;}
.y20a{bottom:152.000000pt;}
.y21b{bottom:154.080000pt;}
.y6c{bottom:154.400000pt;}
.ya9{bottom:157.600000pt;}
.y15c{bottom:158.311569pt;}
.y1b2{bottom:158.429995pt;}
.y233{bottom:160.800000pt;}
.y142{bottom:161.577632pt;}
.y81{bottom:162.400000pt;}
.yc4{bottom:163.200000pt;}
.y22a{bottom:163.520000pt;}
.y10c{bottom:164.346667pt;}
.y50{bottom:164.800000pt;}
.y76{bottom:166.240000pt;}
.y12c{bottom:166.901875pt;}
.y35{bottom:167.200000pt;}
.y1d7{bottom:167.776578pt;}
.y1c3{bottom:168.077805pt;}
.y1f1{bottom:169.435035pt;}
.y17e{bottom:170.752191pt;}
.y1ae{bottom:171.892089pt;}
.y136{bottom:172.831605pt;}
.y1d0{bottom:174.266667pt;}
.y211{bottom:175.466385pt;}
.y125{bottom:175.706667pt;}
.y185{bottom:175.836977pt;}
.y157{bottom:176.757726pt;}
.y209{bottom:179.680000pt;}
.y14a{bottom:183.411478pt;}
.y21a{bottom:190.906667pt;}
.y6b{bottom:191.226667pt;}
.y10b{bottom:191.866667pt;}
.ya8{bottom:194.426667pt;}
.y16d{bottom:194.584876pt;}
.y15a{bottom:197.153768pt;}
.y232{bottom:197.626667pt;}
.y1ff{bottom:197.911177pt;}
.y1cf{bottom:198.746667pt;}
.y1b3{bottom:199.189266pt;}
.y80{bottom:199.226667pt;}
.y4f{bottom:201.626667pt;}
.y192{bottom:202.685212pt;}
.y229{bottom:202.746667pt;}
.y75{bottom:203.066667pt;}
.y124{bottom:203.426667pt;}
.y3b{bottom:203.706667pt;}
.y34{bottom:204.026667pt;}
.y1e5{bottom:205.145058pt;}
.y208{bottom:207.226667pt;}
.y12d{bottom:208.303623pt;}
.y179{bottom:208.716836pt;}
.y15d{bottom:208.948781pt;}
.y1d8{bottom:209.342433pt;}
.y148{bottom:209.872760pt;}
.y1f2{bottom:211.411764pt;}
.y134{bottom:212.970294pt;}
.y1b6{bottom:214.661350pt;}
.y14f{bottom:217.800383pt;}
.y10a{bottom:219.586667pt;}
.y6a{bottom:224.080000pt;}
.y191{bottom:227.160574pt;}
.y17b{bottom:228.673961pt;}
.y16f{bottom:229.808635pt;}
.y123{bottom:230.946667pt;}
.y1e9{bottom:231.039835pt;}
.ya7{bottom:231.226667pt;}
.y210{bottom:231.401003pt;}
.y131{bottom:232.182088pt;}
.y17f{bottom:232.546829pt;}
.y203{bottom:233.323644pt;}
.y1b8{bottom:234.250113pt;}
.y1ca{bottom:234.297820pt;}
.y231{bottom:234.426667pt;}
.y207{bottom:234.906667pt;}
.y7f{bottom:236.026667pt;}
.y22b{bottom:238.106667pt;}
.y4e{bottom:238.426667pt;}
.y135{bottom:238.909539pt;}
.y74{bottom:239.866667pt;}
.y1af{bottom:239.941630pt;}
.y3a{bottom:240.506667pt;}
.y33{bottom:240.826667pt;}
.y16e{bottom:244.237165pt;}
.y14c{bottom:244.452980pt;}
.y16c{bottom:244.555500pt;}
.y156{bottom:244.561109pt;}
.y69{bottom:245.306667pt;}
.y109{bottom:247.106667pt;}
.y200{bottom:249.415388pt;}
.y194{bottom:249.444506pt;}
.y1c7{bottom:249.635445pt;}
.y12e{bottom:249.745257pt;}
.y1cb{bottom:250.067491pt;}
.y1d9{bottom:250.908287pt;}
.y130{bottom:251.008316pt;}
.y17d{bottom:252.727897pt;}
.y195{bottom:252.788856pt;}
.y1f3{bottom:253.388494pt;}
.y170{bottom:258.856697pt;}
.y1e6{bottom:259.237247pt;}
.y190{bottom:261.484166pt;}
.y206{bottom:262.426667pt;}
.y122{bottom:262.626667pt;}
.ya6{bottom:268.026667pt;}
.y168{bottom:269.186665pt;}
.y133{bottom:270.552494pt;}
.y240{bottom:271.226667pt;}
.y121{bottom:271.906667pt;}
.y7e{bottom:272.826667pt;}
.y230{bottom:272.986667pt;}
.y193{bottom:273.529694pt;}
.ybf{bottom:273.626667pt;}
.y108{bottom:274.786667pt;}
.y4d{bottom:275.226667pt;}
.y73{bottom:276.666667pt;}
.y39{bottom:277.306667pt;}
.y32{bottom:277.626667pt;}
.y181{bottom:279.732588pt;}
.y18f{bottom:279.971968pt;}
.y1a2{bottom:280.859766pt;}
.y199{bottom:282.146667pt;}
.y11b{bottom:284.546667pt;}
.y1a9{bottom:286.942689pt;}
.y205{bottom:290.106667pt;}
.y1e8{bottom:291.000455pt;}
.y12f{bottom:291.147005pt;}
.y1c1{bottom:291.471877pt;}
.y65{bottom:291.946667pt;}
.y1da{bottom:292.513615pt;}
.y14{bottom:293.146667pt;}
.y196{bottom:295.109552pt;}
.y1f4{bottom:295.405087pt;}
.y202{bottom:296.029622pt;}
.y19b{bottom:300.563649pt;}
.y201{bottom:300.893023pt;}
.y107{bottom:302.306667pt;}
.ya5{bottom:304.506667pt;}
.y23f{bottom:308.026667pt;}
.y7d{bottom:309.626667pt;}
.y198{bottom:309.666667pt;}
.y4c{bottom:312.026667pt;}
.y19c{bottom:312.471628pt;}
.y120{bottom:312.866667pt;}
.y22f{bottom:312.986667pt;}
.y64{bottom:313.146667pt;}
.y14b{bottom:313.147089pt;}
.y1e7{bottom:313.224174pt;}
.y155{bottom:313.345416pt;}
.y72{bottom:313.466667pt;}
.y204{bottom:313.786667pt;}
.y1ec{bottom:313.813333pt;}
.y31{bottom:314.426667pt;}
.y1de{bottom:320.145237pt;}
.y1df{bottom:320.276816pt;}
.y1e0{bottom:320.763659pt;}
.y1dd{bottom:321.066291pt;}
.y1f8{bottom:323.309845pt;}
.y1f9{bottom:323.442725pt;}
.y1fa{bottom:323.934380pt;}
.y1f7{bottom:324.240004pt;}
.y106{bottom:327.906667pt;}
.y1c6{bottom:327.913738pt;}
.y20d{bottom:330.585965pt;}
.y13{bottom:332.826667pt;}
.y146{bottom:333.474328pt;}
.y127{bottom:333.591001pt;}
.y18a{bottom:334.146667pt;}
.y212{bottom:334.418810pt;}
.y137{bottom:334.968509pt;}
.y101{bottom:339.906667pt;}
.y11f{bottom:341.026667pt;}
.ya4{bottom:341.306667pt;}
.y23e{bottom:344.826667pt;}
.y7c{bottom:346.426667pt;}
.y84{bottom:348.506667pt;}
.y4b{bottom:348.826667pt;}
.y71{bottom:350.266667pt;}
.y22e{bottom:350.426667pt;}
.y145{bottom:350.477465pt;}
.y30{bottom:351.226667pt;}
.y1a3{bottom:353.223991pt;}
.y17a{bottom:354.331403pt;}
.y19d{bottom:357.699844pt;}
.y17c{bottom:358.375520pt;}
.y5c{bottom:359.613333pt;}
.y144{bottom:366.057695pt;}
.y11d{bottom:369.346667pt;}
.y12{bottom:369.626667pt;}
.y1c2{bottom:371.442349pt;}
.y15b{bottom:376.591091pt;}
.y169{bottom:376.998746pt;}
.ya3{bottom:378.426667pt;}
.y5b{bottom:380.826667pt;}
.y147{bottom:380.896580pt;}
.y23d{bottom:381.626667pt;}
.y143{bottom:381.637926pt;}
.y1a1{bottom:383.532699pt;}
.y184{bottom:384.036564pt;}
.y7b{bottom:384.346667pt;}
.y4a{bottom:385.626667pt;}
.y228{bottom:386.746667pt;}
.y92{bottom:387.066667pt;}
.y22d{bottom:387.546667pt;}
.y70{bottom:387.706667pt;}
.y2f{bottom:388.026667pt;}
.y1cd{bottom:390.106667pt;}
.y1a4{bottom:393.976355pt;}
.y117{bottom:397.693333pt;}
.y183{bottom:398.908904pt;}
.y1bf{bottom:402.657656pt;}
.y19e{bottom:403.128369pt;}
.y15e{bottom:405.348913pt;}
.y149{bottom:406.365414pt;}
.y11{bottom:406.466667pt;}
.yff{bottom:408.573333pt;}
.ya2{bottom:415.266667pt;}
.y1cc{bottom:417.826667pt;}
.y23c{bottom:418.466667pt;}
.y49{bottom:422.466667pt;}
.y7a{bottom:423.586667pt;}
.y227{bottom:423.906667pt;}
.y91{bottom:424.066667pt;}
.y22c{bottom:424.386667pt;}
.yad{bottom:424.546667pt;}
.y2e{bottom:424.866667pt;}
.y11a{bottom:425.853333pt;}
.y53{bottom:427.413333pt;}
.y1c5{bottom:429.300478pt;}
.y1a5{bottom:434.901399pt;}
.y176{bottom:436.443942pt;}
.ybe{bottom:439.266667pt;}
.y180{bottom:440.351226pt;}
.y1bc{bottom:442.146667pt;}
.y10{bottom:443.266667pt;}
.y19f{bottom:448.384214pt;}
.y52{bottom:448.706667pt;}
.ya1{bottom:452.066667pt;}
.y119{bottom:454.173333pt;}
.y23b{bottom:455.266667pt;}
.y48{bottom:459.266667pt;}
.y226{bottom:460.706667pt;}
.y90{bottom:461.186667pt;}
.y241{bottom:461.346667pt;}
.y2d{bottom:461.666667pt;}
.yea{bottom:468.226667pt;}
.y256{bottom:470.146667pt;}
.y189{bottom:470.626667pt;}
.y1a6{bottom:475.653762pt;}
.yfc{bottom:477.213333pt;}
.yf{bottom:480.066667pt;}
.y118{bottom:482.493333pt;}
.ya0{bottom:488.866667pt;}
.y25e{bottom:490.946667pt;}
.y1a8{bottom:491.125846pt;}
.y23a{bottom:492.066667pt;}
.y1a0{bottom:493.778203pt;}
.ybd{bottom:494.466667pt;}
.y47{bottom:495.746667pt;}
.ye9{bottom:495.906667pt;}
.y83{bottom:497.186667pt;}
.y225{bottom:497.506667pt;}
.y255{bottom:497.666667pt;}
.y8f{bottom:497.986667pt;}
.yae{bottom:498.146667pt;}
.y2c{bottom:498.466667pt;}
.y1aa{bottom:510.244921pt;}
.ye4{bottom:510.466667pt;}
.y111{bottom:510.653333pt;}
.y253{bottom:512.226667pt;}
.y163{bottom:514.786667pt;}
.y1a7{bottom:516.410731pt;}
.ye{bottom:516.866667pt;}
.y13d{bottom:517.986667pt;}
.y25d{bottom:520.866667pt;}
.y174{bottom:521.666667pt;}
.y9f{bottom:525.666667pt;}
.y188{bottom:525.826667pt;}
.y239{bottom:528.866667pt;}
.y46{bottom:532.546667pt;}
.yee{bottom:533.053333pt;}
.y224{bottom:534.306667pt;}
.y8e{bottom:534.786667pt;}
.y2b{bottom:535.266667pt;}
.y115{bottom:538.973333pt;}
.y162{bottom:542.306667pt;}
.y13c{bottom:545.826667pt;}
.y173{bottom:549.346667pt;}
.y187{bottom:549.506667pt;}
.y175{bottom:549.546667pt;}
.y1c4{bottom:549.559218pt;}
.ybc{bottom:549.666667pt;}
.yd{bottom:553.666667pt;}
.y1be{bottom:555.031798pt;}
.y9e{bottom:562.466667pt;}
.y238{bottom:565.666667pt;}
.y114{bottom:567.333333pt;}
.y45{bottom:569.666667pt;}
.y161{bottom:569.986667pt;}
.yf5{bottom:570.533333pt;}
.y223{bottom:571.106667pt;}
.y8d{bottom:571.586667pt;}
.y6f{bottom:571.746667pt;}
.y2a{bottom:572.066667pt;}
.y13b{bottom:573.506667pt;}
.y172{bottom:576.546667pt;}
.y151{bottom:584.546667pt;}
.yc{bottom:590.466667pt;}
.y113{bottom:595.493333pt;}
.y9d{bottom:599.266667pt;}
.y171{bottom:600.706667pt;}
.y164{bottom:600.746667pt;}
.y13a{bottom:601.026667pt;}
.y237{bottom:602.146667pt;}
.ydd{bottom:603.106667pt;}
.y217{bottom:603.906667pt;}
.ybb{bottom:604.893333pt;}
.y44{bottom:606.493333pt;}
.y222{bottom:607.933333pt;}
.y8c{bottom:608.413333pt;}
.y6e{bottom:608.573333pt;}
.y29{bottom:608.893333pt;}
.y258{bottom:612.093333pt;}
.y13e{bottom:612.213333pt;}
.y153{bottom:613.213333pt;}
.y10e{bottom:623.813333pt;}
.yf0{bottom:626.533333pt;}
.yb{bottom:627.293333pt;}
.y139{bottom:628.733333pt;}
.ye2{bottom:631.453333pt;}
.y216{bottom:631.613333pt;}
.yba{bottom:632.413333pt;}
.y252{bottom:633.213333pt;}
.y9c{bottom:636.093333pt;}
.y236{bottom:638.973333pt;}
.y257{bottom:639.613333pt;}
.y43{bottom:643.293333pt;}
.y221{bottom:644.733333pt;}
.y8b{bottom:645.213333pt;}
.y3c{bottom:645.373333pt;}
.y28{bottom:645.693333pt;}
.y110{bottom:652.133333pt;}
.y126{bottom:652.413333pt;}
.y20c{bottom:655.413333pt;}
.y215{bottom:655.453333pt;}
.y276{bottom:658.973333pt;}
.y25b{bottom:659.133333pt;}
.ye1{bottom:659.613333pt;}
.yb9{bottom:660.093333pt;}
.y251{bottom:661.373333pt;}
.ya{bottom:664.093333pt;}
.y1ce{bottom:665.093333pt;}
.yed{bottom:665.733333pt;}
.y1eb{bottom:667.293333pt;}
.y9b{bottom:674.653333pt;}
.y235{bottom:676.093333pt;}
.y42{bottom:680.093333pt;}
.y220{bottom:681.533333pt;}
.y8a{bottom:682.013333pt;}
.y78{bottom:682.173333pt;}
.y27{bottom:682.493333pt;}
.y259{bottom:682.946667pt;}
.y25a{bottom:682.973333pt;}
.ye0{bottom:687.933333pt;}
.y250{bottom:689.693333pt;}
.y275{bottom:690.813333pt;}
.y1d2{bottom:690.946667pt;}
.y1ea{bottom:690.973333pt;}
.y9{bottom:700.893333pt;}
.y9a{bottom:712.893333pt;}
.yb8{bottom:715.293333pt;}
.ydf{bottom:716.253333pt;}
.y41{bottom:716.893333pt;}
.y24f{bottom:718.013333pt;}
.y21f{bottom:718.333333pt;}
.y89{bottom:718.813333pt;}
.y79{bottom:718.973333pt;}
.y26{bottom:719.293333pt;}
.y274{bottom:722.493333pt;}
.y8{bottom:737.693333pt;}
.yd6{bottom:743.773333pt;}
.y249{bottom:745.533333pt;}
.y99{bottom:749.693333pt;}
.y40{bottom:753.693333pt;}
.y273{bottom:754.173333pt;}
.y88{bottom:755.613333pt;}
.y21e{bottom:755.773333pt;}
.y25{bottom:756.093333pt;}
.yb6{bottom:770.493333pt;}
.ydc{bottom:772.093333pt;}
.y24d{bottom:773.853333pt;}
.y7{bottom:774.493333pt;}
.y272{bottom:786.013333pt;}
.y98{bottom:786.493333pt;}
.y3f{bottom:790.493333pt;}
.y87{bottom:792.413333pt;}
.yac{bottom:792.573333pt;}
.y24{bottom:792.893333pt;}
.yb4{bottom:798.013333pt;}
.yda{bottom:800.253333pt;}
.y24c{bottom:802.173333pt;}
.y6{bottom:811.293333pt;}
.y271{bottom:817.733333pt;}
.y97{bottom:823.333333pt;}
.y3e{bottom:827.333333pt;}
.yd9{bottom:828.613333pt;}
.y86{bottom:829.253333pt;}
.y23{bottom:829.733333pt;}
.y24b{bottom:830.373333pt;}
.y5{bottom:848.133333pt;}
.y270{bottom:849.413333pt;}
.yb3{bottom:853.253333pt;}
.yd8{bottom:856.933333pt;}
.y24a{bottom:858.693333pt;}
.y96{bottom:860.133333pt;}
.y3d{bottom:865.253333pt;}
.y85{bottom:866.213333pt;}
.y22{bottom:866.533333pt;}
.y26f{bottom:880.773333pt;}
.y4{bottom:884.933333pt;}
.yd3{bottom:885.093333pt;}
.y248{bottom:887.013333pt;}
.y95{bottom:896.933333pt;}
.yab{bottom:903.013333pt;}
.y21{bottom:903.333333pt;}
.yb0{bottom:908.453333pt;}
.y26b{bottom:914.693333pt;}
.ycb{bottom:915.173333pt;}
.y242{bottom:916.933333pt;}
.y267{bottom:917.733333pt;}
.y3{bottom:924.933333pt;}
.y17{bottom:927.362667pt;}
.y94{bottom:935.493333pt;}
.y21d{bottom:939.813333pt;}
.y20{bottom:940.133333pt;}
.y26e{bottom:958.533333pt;}
.y2{bottom:967.813333pt;}
.y16{bottom:970.242667pt;}
.y93{bottom:975.493333pt;}
.yaf{bottom:976.453333pt;}
.y21c{bottom:976.613333pt;}
.y1f{bottom:976.933333pt;}
.y25c{bottom:978.693333pt;}
.y264{bottom:987.813333pt;}
.y263{bottom:1006.853333pt;}
.y1{bottom:1010.853333pt;}
.yca{bottom:1013.253333pt;}
.y15{bottom:1013.282667pt;}
.y1e{bottom:1013.413333pt;}
.y38{bottom:1013.733333pt;}
.y262{bottom:1020.320000pt;}
.y261{bottom:1039.200000pt;}
.y260{bottom:1052.800000pt;}
.y1a{bottom:1061.730667pt;}
.y25f{bottom:1065.760000pt;}
.y19{bottom:1079.330667pt;}
.y219{bottom:1090.560000pt;}
.y18{bottom:1096.930667pt;}
.y218{bottom:1106.560000pt;}
.h9b{height:12.480000pt;}
.h9c{height:14.017500pt;}
.h98{height:20.480000pt;}
.h9a{height:23.520000pt;}
.h31{height:25.600000pt;}
.h5a{height:26.057563pt;}
.h21{height:27.520000pt;}
.h2a{height:27.552000pt;}
.h22{height:27.680000pt;}
.h29{height:27.712000pt;}
.h37{height:27.814375pt;}
.h99{height:28.035000pt;}
.h91{height:29.280000pt;}
.h27{height:29.440000pt;}
.h94{height:31.992188pt;}
.h96{height:32.554688pt;}
.h38{height:33.918750pt;}
.h6{height:33.920000pt;}
.h95{height:34.359375pt;}
.h97{height:35.404688pt;}
.h12{height:35.876473pt;}
.hf{height:35.894331pt;}
.h19{height:36.219478pt;}
.h16{height:36.237507pt;}
.h33{height:36.832000pt;}
.h64{height:38.315144pt;}
.h6b{height:38.871937pt;}
.h2{height:39.502500pt;}
.h55{height:40.752901pt;}
.h5{height:40.763021pt;}
.h4b{height:41.194734pt;}
.h4c{height:41.251026pt;}
.h56{height:41.269272pt;}
.h5d{height:41.717512pt;}
.h77{height:41.766856pt;}
.h26{height:42.084375pt;}
.h73{height:42.937500pt;}
.h65{height:43.383574pt;}
.h8e{height:43.441250pt;}
.h6a{height:43.513416pt;}
.h67{height:43.648087pt;}
.h11{height:43.903903pt;}
.h4d{height:43.954858pt;}
.h52{height:43.974301pt;}
.h18{height:44.323655pt;}
.h6c{height:44.372327pt;}
.h1e{height:44.437500pt;}
.h68{height:44.929948pt;}
.h8b{height:45.237910pt;}
.h69{height:45.582866pt;}
.h8c{height:45.849598pt;}
.h93{height:47.218750pt;}
.h62{height:48.424237pt;}
.h51{height:48.551702pt;}
.h47{height:48.650742pt;}
.hc{height:48.799903pt;}
.h63{height:48.846830pt;}
.h66{height:48.857217pt;}
.h14{height:49.266466pt;}
.h75{height:50.652835pt;}
.h49{height:50.699347pt;}
.h76{height:50.712952pt;}
.h71{height:51.825736pt;}
.h78{height:52.013658pt;}
.h2c{height:52.134375pt;}
.h7c{height:53.003662pt;}
.h80{height:53.403537pt;}
.h61{height:53.597603pt;}
.h5b{height:53.644633pt;}
.h84{height:53.931427pt;}
.h8a{height:53.969499pt;}
.h41{height:54.095368pt;}
.h1f{height:55.200000pt;}
.h20{height:55.232000pt;}
.h54{height:55.380440pt;}
.h8f{height:55.625000pt;}
.h39{height:55.840000pt;}
.h50{height:56.082154pt;}
.h48{height:56.098054pt;}
.h46{height:56.174712pt;}
.h43{height:56.895425pt;}
.h44{height:56.953080pt;}
.h4a{height:57.322364pt;}
.h53{height:57.347720pt;}
.he{height:57.582937pt;}
.h15{height:58.133471pt;}
.h2d{height:58.238750pt;}
.h58{height:58.501164pt;}
.h59{height:58.504286pt;}
.h72{height:59.178493pt;}
.h34{height:59.213125pt;}
.h7b{height:60.523537pt;}
.h6d{height:61.000169pt;}
.h8d{height:61.532594pt;}
.h81{height:61.667780pt;}
.h7f{height:61.686517pt;}
.h60{height:61.886618pt;}
.h13{height:62.027384pt;}
.h10{height:62.058259pt;}
.h85{height:62.291556pt;}
.h83{height:62.296283pt;}
.h89{height:62.364612pt;}
.h3f{height:62.461363pt;}
.h1a{height:62.620411pt;}
.h17{height:62.651581pt;}
.h1c{height:62.748030pt;}
.h8{height:62.781250pt;}
.h3{height:62.812500pt;}
.h87{height:62.885920pt;}
.h5f{height:62.893767pt;}
.h3d{height:62.896276pt;}
.h7{height:64.500000pt;}
.h6f{height:64.540317pt;}
.h1d{height:65.392449pt;}
.h1b{height:65.522546pt;}
.h70{height:65.998870pt;}
.h7a{height:66.007227pt;}
.h9{height:66.750000pt;}
.h7d{height:67.463180pt;}
.h35{height:68.000000pt;}
.h36{height:68.032000pt;}
.ha{height:71.524375pt;}
.hb{height:71.631042pt;}
.h42{height:71.900889pt;}
.h5c{height:72.364684pt;}
.h4{height:75.465000pt;}
.h40{height:81.643352pt;}
.h90{height:82.880000pt;}
.h25{height:84.640000pt;}
.h2b{height:92.000000pt;}
.h32{height:92.672000pt;}
.hd{height:102.788795pt;}
.h24{height:110.432000pt;}
.h3b{height:112.320000pt;}
.h3a{height:112.512000pt;}
.h30{height:119.072000pt;}
.h92{height:140.640000pt;}
.h28{height:140.666667pt;}
.h23{height:165.626667pt;}
.h6e{height:318.731224pt;}
.h7e{height:336.987369pt;}
.h82{height:340.318460pt;}
.h88{height:344.976536pt;}
.h86{height:345.002797pt;}
.h3e{height:347.851711pt;}
.h3c{height:348.010207pt;}
.h57{height:399.666845pt;}
.h4f{height:414.859091pt;}
.h45{height:415.871387pt;}
.h4e{height:443.613333pt;}
.h5e{height:450.862572pt;}
.h74{height:528.926542pt;}
.h79{height:585.932071pt;}
.h2e{height:793.760000pt;}
.h2f{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:7.520000pt;}
.w7{width:14.880000pt;}
.w1a{width:18.880000pt;}
.w56{width:38.272000pt;}
.w13{width:43.200000pt;}
.w22{width:45.600000pt;}
.w47{width:45.952000pt;}
.wc{width:47.680000pt;}
.w24{width:47.840000pt;}
.wb{width:47.872000pt;}
.w50{width:48.480000pt;}
.w23{width:48.512000pt;}
.w54{width:52.672000pt;}
.wd{width:54.880000pt;}
.w44{width:55.392000pt;}
.w45{width:56.480000pt;}
.w1f{width:56.640000pt;}
.w4e{width:56.672000pt;}
.we{width:58.880000pt;}
.w48{width:59.520000pt;}
.w55{width:60.480000pt;}
.w11{width:61.152000pt;}
.w46{width:61.280000pt;}
.w12{width:62.720000pt;}
.w4f{width:66.240000pt;}
.w21{width:66.272000pt;}
.w14{width:71.360000pt;}
.w27{width:75.520000pt;}
.w51{width:75.680000pt;}
.w25{width:75.712000pt;}
.w4a{width:76.480000pt;}
.w49{width:78.432000pt;}
.w10{width:80.160000pt;}
.wf{width:80.192000pt;}
.w8{width:84.160000pt;}
.w26{width:85.120000pt;}
.w52{width:85.152000pt;}
.w2e{width:85.440000pt;}
.w31{width:86.880000pt;}
.w33{width:87.040000pt;}
.w32{width:87.072000pt;}
.w1c{width:89.312000pt;}
.w2f{width:92.832000pt;}
.w30{width:93.120000pt;}
.w18{width:94.400000pt;}
.w4c{width:101.632000pt;}
.wa{width:114.560000pt;}
.w29{width:116.192000pt;}
.w5{width:130.729923pt;}
.w6{width:138.407547pt;}
.w1d{width:139.360000pt;}
.w4d{width:141.920000pt;}
.w1e{width:141.946667pt;}
.w4{width:146.730014pt;}
.w2d{width:149.626667pt;}
.w2a{width:149.786667pt;}
.w20{width:245.786667pt;}
.w2c{width:260.986667pt;}
.w2b{width:271.386667pt;}
.w3{width:274.397774pt;}
.w38{width:282.137168pt;}
.w36{width:284.001940pt;}
.w39{width:289.826667pt;}
.w37{width:291.546667pt;}
.w3c{width:291.916926pt;}
.w3b{width:291.996906pt;}
.w3a{width:297.465461pt;}
.w3f{width:319.335827pt;}
.w1b{width:368.706667pt;}
.w19{width:370.626667pt;}
.w43{width:425.781637pt;}
.w42{width:425.861608pt;}
.w35{width:453.914630pt;}
.w34{width:453.927962pt;}
.w40{width:474.540769pt;}
.w41{width:479.340801pt;}
.w9{width:513.693333pt;}
.w4b{width:607.613333pt;}
.w15{width:608.093333pt;}
.w53{width:631.133333pt;}
.w3e{width:685.728880pt;}
.w3d{width:755.726375pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w28{width:852.613333pt;}
.w16{width:1122.560000pt;}
.w17{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x29{left:1.421133pt;}
.x1e{left:3.576176pt;}
.x6b{left:4.480000pt;}
.x3c{left:7.200000pt;}
.x48{left:8.480000pt;}
.x59{left:9.440000pt;}
.x6a{left:10.400000pt;}
.xbe{left:11.360000pt;}
.x25{left:12.426281pt;}
.x4b{left:13.440000pt;}
.x64{left:14.400000pt;}
.x4f{left:15.840000pt;}
.x14{left:17.295935pt;}
.x4d{left:18.440000pt;}
.x4c{left:19.360000pt;}
.x41{left:21.120000pt;}
.x4e{left:22.560000pt;}
.x4a{left:23.840000pt;}
.x43{left:24.800000pt;}
.x50{left:26.080000pt;}
.xc2{left:27.040000pt;}
.xf{left:28.045333pt;}
.x3e{left:30.080000pt;}
.x24{left:31.429484pt;}
.x7a{left:32.640000pt;}
.x69{left:34.560000pt;}
.x51{left:36.026667pt;}
.x5f{left:37.120000pt;}
.x32{left:38.221412pt;}
.x79{left:39.360000pt;}
.x5d{left:40.480000pt;}
.xb0{left:44.594415pt;}
.x17{left:46.328536pt;}
.x70{left:48.640000pt;}
.xb6{left:58.190294pt;}
.x19{left:60.080958pt;}
.x94{left:61.958641pt;}
.x2d{left:63.392291pt;}
.x7b{left:64.826667pt;}
.x35{left:66.991664pt;}
.x7e{left:68.820163pt;}
.x28{left:71.253746pt;}
.x78{left:72.186667pt;}
.xb2{left:73.447536pt;}
.x9{left:74.400000pt;}
.x2c{left:76.141470pt;}
.x30{left:79.582096pt;}
.x1{left:81.920000pt;}
.x21{left:84.241442pt;}
.x6e{left:87.360000pt;}
.x22{left:89.826495pt;}
.x3d{left:92.832000pt;}
.x53{left:94.560000pt;}
.x1d{left:96.298185pt;}
.x61{left:98.120000pt;}
.xa1{left:100.947913pt;}
.x23{left:104.103966pt;}
.x31{left:106.622414pt;}
.x97{left:108.216626pt;}
.x33{left:109.986103pt;}
.x26{left:112.134961pt;}
.xa{left:113.472000pt;}
.x86{left:114.823522pt;}
.x34{left:117.579090pt;}
.xd{left:118.912000pt;}
.x7d{left:126.358681pt;}
.x27{left:127.270958pt;}
.xb{left:135.546667pt;}
.x12{left:137.466667pt;}
.x1b{left:138.851572pt;}
.x85{left:141.463630pt;}
.x8c{left:144.826667pt;}
.x87{left:145.754667pt;}
.x96{left:147.502024pt;}
.x15{left:149.197120pt;}
.xc{left:153.116000pt;}
.x6{left:157.306667pt;}
.x57{left:159.560000pt;}
.x1a{left:161.221380pt;}
.xbc{left:163.316051pt;}
.x3b{left:164.826667pt;}
.x5b{left:169.640000pt;}
.x18{left:178.190682pt;}
.x81{left:179.252518pt;}
.x99{left:183.413333pt;}
.x89{left:184.976801pt;}
.x1c{left:185.868510pt;}
.x8e{left:187.616593pt;}
.x5{left:189.786667pt;}
.x83{left:194.922960pt;}
.xe{left:196.473333pt;}
.x82{left:198.385816pt;}
.x8d{left:199.646358pt;}
.x6f{left:203.546667pt;}
.x3f{left:207.386667pt;}
.x11{left:208.826667pt;}
.x16{left:213.235413pt;}
.x4{left:214.426667pt;}
.x93{left:215.747679pt;}
.x92{left:216.981191pt;}
.xa5{left:218.480000pt;}
.xae{left:219.778927pt;}
.xb7{left:221.746275pt;}
.x56{left:229.466667pt;}
.x7f{left:236.324841pt;}
.x3{left:237.626667pt;}
.xc3{left:245.786667pt;}
.x7{left:247.546667pt;}
.xac{left:249.226500pt;}
.x6c{left:250.586667pt;}
.x2{left:252.186667pt;}
.x40{left:255.266667pt;}
.x13{left:259.946667pt;}
.xbf{left:263.106667pt;}
.x9f{left:268.065458pt;}
.x8{left:274.306667pt;}
.x8a{left:277.589236pt;}
.x84{left:279.344996pt;}
.xad{left:282.859842pt;}
.x95{left:285.915016pt;}
.xb1{left:290.504293pt;}
.xb8{left:293.442776pt;}
.xa0{left:298.520828pt;}
.x42{left:302.946667pt;}
.xa9{left:306.860677pt;}
.xaa{left:310.816273pt;}
.xa2{left:312.020549pt;}
.x5c{left:318.786667pt;}
.x20{left:323.746667pt;}
.x2f{left:327.946667pt;}
.x2b{left:331.746667pt;}
.xc4{left:347.426667pt;}
.x38{left:351.746667pt;}
.x71{left:353.346667pt;}
.x44{left:357.826667pt;}
.x52{left:372.706667pt;}
.x3a{left:374.306667pt;}
.x39{left:378.306667pt;}
.xc0{left:380.866667pt;}
.xc9{left:393.026667pt;}
.x7c{left:396.866667pt;}
.x8b{left:397.826667pt;}
.xa7{left:400.139905pt;}
.x90{left:402.306667pt;}
.x88{left:405.013333pt;}
.x9a{left:411.168499pt;}
.x45{left:416.706667pt;}
.x91{left:420.866667pt;}
.xa6{left:426.114065pt;}
.xa3{left:430.104108pt;}
.xb3{left:431.290684pt;}
.xb9{left:435.653237pt;}
.x74{left:438.786667pt;}
.xca{left:441.506667pt;}
.x80{left:447.732838pt;}
.x5e{left:458.146667pt;}
.xb4{left:459.650533pt;}
.x2e{left:462.493333pt;}
.xba{left:464.299949pt;}
.x36{left:466.333333pt;}
.xa8{left:468.961747pt;}
.x2a{left:470.493333pt;}
.x9e{left:481.043054pt;}
.xc1{left:486.333333pt;}
.xc5{left:489.346667pt;}
.x46{left:496.893333pt;}
.x63{left:503.746667pt;}
.xc6{left:508.226667pt;}
.x9b{left:517.627298pt;}
.x75{left:531.613333pt;}
.x1f{left:534.333333pt;}
.x6d{left:537.053333pt;}
.x98{left:542.973333pt;}
.x8f{left:545.693333pt;}
.x65{left:552.253333pt;}
.xaf{left:556.573333pt;}
.x55{left:561.373333pt;}
.xc7{left:564.893333pt;}
.x47{left:577.053333pt;}
.x58{left:600.093333pt;}
.xbd{left:609.893333pt;}
.x9c{left:614.141303pt;}
.x5a{left:618.973333pt;}
.x72{left:624.733333pt;}
.xcf{left:629.573333pt;}
.xb5{left:634.213333pt;}
.xbb{left:636.613333pt;}
.x49{left:638.213333pt;}
.x9d{left:639.994768pt;}
.x37{left:665.573333pt;}
.x10{left:672.933333pt;}
.x60{left:675.613333pt;}
.xcd{left:680.453333pt;}
.xce{left:697.093333pt;}
.x76{left:711.613333pt;}
.xcb{left:725.733333pt;}
.x66{left:751.333333pt;}
.x77{left:798.693333pt;}
.xcc{left:801.253333pt;}
.xc8{left:810.693333pt;}
.x67{left:836.453333pt;}
.x73{left:885.733333pt;}
.xab{left:904.293333pt;}
.x68{left:911.973333pt;}
.x62{left:921.413333pt;}
.xa4{left:939.200000pt;}
.x54{left:1013.280000pt;}
}




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