
    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_9651c6f1abd78e18063ec802.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_27339f6ca72d02f5c6b2687d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_500895506104f76009d1f096.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_0bff3430071efb29d09c6a1b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;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_9111871e4823c9f9b1aa828a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.226000;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_5695267af5c11d895c8a1e5c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;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_d286d84bde11bc4e3d4b2f5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4257751ffc061b64a08e0036.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4f3b3affd93b94d6164f5d95.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.225586;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_0e55ab3a2ab0381a7793fae7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.225586;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_8ddc013a0dca64808ea540e6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ae8996444c40276494876298.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a67ee4493476269643bab92e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.225586;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_0e55ab3a2ab0381a7793fae7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.225586;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_b45bbad8c3628fc9d7017513.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.933594;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_ee365175d6b41b4efd535895.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.800781;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_3272d4c09afb9ac0429a01f1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.664062;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_3ea1cefdd8c6f37a02931bc9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_1b23dfaf95143a5e0d332a84.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.803000;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_9ed7b17e9e4b9dd279e1ec3b.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.997000;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_03c576919aa42e33bf29b77e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.703000;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_6bafeca6dcf66896ec022670.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_136c96d18315b466e9e0c02e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_eb32763a7a209f33f9e5b5aa.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.225586;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_7eb290d83988b4fe36b1c157.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.225586;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_4e78660f7664063527cb6c05.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.933594;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_acb53b261c0ea6d3b437ba1c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.800781;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_237576210f61cfcc571ae25d.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.933594;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_3351d111cbfbcca789394ed9.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.765000;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250126,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.vf{vertical-align:-26.255305px;}
.v2{vertical-align:-17.358000px;}
.vb{vertical-align:-12.306000px;}
.v17{vertical-align:-10.494000px;}
.v1b{vertical-align:-7.230000px;}
.v12{vertical-align:-5.844000px;}
.v9{vertical-align:-1.890000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.866000px;}
.ve{vertical-align:7.913795px;}
.v10{vertical-align:10.422399px;}
.v13{vertical-align:11.514000px;}
.vd{vertical-align:15.120000px;}
.va{vertical-align:17.640000px;}
.v4{vertical-align:19.524000px;}
.v1{vertical-align:21.702000px;}
.vc{vertical-align:24.690000px;}
.v19{vertical-align:30.024000px;}
.v3{vertical-align:32.880000px;}
.v5{vertical-align:34.764000px;}
.v16{vertical-align:38.730000px;}
.v14{vertical-align:45.732000px;}
.v11{vertical-align:47.520000px;}
.v15{vertical-align:63.096000px;}
.v6{vertical-align:65.748000px;}
.v1a{vertical-align:67.578000px;}
.v18{vertical-align:71.262000px;}
.v7{vertical-align:84.648000px;}
.ls19{letter-spacing:-87.779740px;}
.ls1a{letter-spacing:-17.824559px;}
.ls38{letter-spacing:-1.794000px;}
.ls18{letter-spacing:-0.770164px;}
.ls12{letter-spacing:-0.540000px;}
.ls3a{letter-spacing:-0.461860px;}
.ls11{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.229200px;}
.ls39{letter-spacing:-0.208200px;}
.lsd{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.000604px;}
.ls5a{letter-spacing:0.000676px;}
.ls55{letter-spacing:0.001036px;}
.ls68{letter-spacing:0.001155px;}
.ls57{letter-spacing:0.001319px;}
.ls7{letter-spacing:0.001831px;}
.lsa{letter-spacing:0.001933px;}
.ls62{letter-spacing:0.002074px;}
.ls63{letter-spacing:0.002090px;}
.ls61{letter-spacing:0.002422px;}
.ls54{letter-spacing:0.002460px;}
.ls56{letter-spacing:0.002544px;}
.ls1{letter-spacing:0.002725px;}
.ls53{letter-spacing:0.002856px;}
.ls9{letter-spacing:0.003488px;}
.ls5c{letter-spacing:0.003752px;}
.ls64{letter-spacing:0.003788px;}
.ls22{letter-spacing:0.003859px;}
.ls66{letter-spacing:0.004532px;}
.ls69{letter-spacing:0.004800px;}
.ls15{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.126000px;}
.ls2b{letter-spacing:0.180000px;}
.ls36{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.259800px;}
.ls2c{letter-spacing:0.259920px;}
.ls37{letter-spacing:0.346800px;}
.lsf{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.480000px;}
.ls43{letter-spacing:0.497764px;}
.ls40{letter-spacing:0.503764px;}
.ls51{letter-spacing:0.520267px;}
.ls4c{letter-spacing:0.525981px;}
.ls4b{letter-spacing:0.526267px;}
.ls27{letter-spacing:0.542815px;}
.ls25{letter-spacing:0.548815px;}
.ls34{letter-spacing:0.648088px;}
.ls28{letter-spacing:0.745694px;}
.lse{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls45{letter-spacing:2.988600px;}
.ls3{letter-spacing:2.989200px;}
.ls4{letter-spacing:2.998354px;}
.ls3e{letter-spacing:3.510600px;}
.ls42{letter-spacing:3.516600px;}
.ls24{letter-spacing:3.553200px;}
.ls26{letter-spacing:3.559200px;}
.ls6{letter-spacing:10.461300px;}
.ls4d{letter-spacing:10.961764px;}
.ls4e{letter-spacing:10.967764px;}
.ls4f{letter-spacing:10.983981px;}
.ls50{letter-spacing:10.989981px;}
.lsc{letter-spacing:11.954850px;}
.ls3b{letter-spacing:11.957400px;}
.ls60{letter-spacing:13.298672px;}
.ls16{letter-spacing:13.444800px;}
.ls59{letter-spacing:13.448400px;}
.ls5b{letter-spacing:13.454400px;}
.ls32{letter-spacing:14.094088px;}
.ls33{letter-spacing:14.100088px;}
.ls52{letter-spacing:14.786850px;}
.ls4a{letter-spacing:14.828850px;}
.ls1b{letter-spacing:14.844343px;}
.ls1f{letter-spacing:14.942100px;}
.ls2{letter-spacing:14.945108px;}
.ls1e{letter-spacing:14.948100px;}
.ls48{letter-spacing:15.081585px;}
.ls49{letter-spacing:15.087707px;}
.ls67{letter-spacing:15.309224px;}
.ls35{letter-spacing:15.663483px;}
.ls2a{letter-spacing:15.693986px;}
.ls21{letter-spacing:16.434600px;}
.ls20{letter-spacing:16.440600px;}
.ls65{letter-spacing:16.462165px;}
.ls29{letter-spacing:17.929200px;}
.ls23{letter-spacing:17.953200px;}
.ls1c{letter-spacing:18.732571px;}
.ls1d{letter-spacing:18.738453px;}
.ls5d{letter-spacing:23.609224px;}
.ls5e{letter-spacing:24.991576px;}
.ls5f{letter-spacing:25.162165px;}
.ls2f{letter-spacing:44.286510px;}
.ls0{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lsb{letter-spacing:64.321654px;}
.ls31{letter-spacing:68.826113px;}
.ls30{letter-spacing:128.053688px;}
.ls2e{letter-spacing:137.742009px;}
.ls44{letter-spacing:139.926600px;}
.ls41{letter-spacing:142.050600px;}
.ls46{letter-spacing:144.671263px;}
.ls3c{letter-spacing:241.834212px;}
.ls3f{letter-spacing:247.328170px;}
.ls3d{letter-spacing:247.334170px;}
.ls47{letter-spacing:254.677133px;}
.ls2d{letter-spacing:1540.097010px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws110{word-spacing:-241.890270px;}
.ws115{word-spacing:-229.098643px;}
.wsdf{word-spacing:-47.893609px;}
.ws0{word-spacing:-28.532313px;}
.ws3a{word-spacing:-15.300000px;}
.wsdd{word-spacing:-15.286800px;}
.ws3b{word-spacing:-15.199800px;}
.wsdc{word-spacing:-15.146400px;}
.wsd8{word-spacing:-14.943900px;}
.ws5d{word-spacing:-14.940000px;}
.wsde{word-spacing:-14.731800px;}
.ws5e{word-spacing:-14.710800px;}
.ws5f{word-spacing:-14.580000px;}
.ws60{word-spacing:-13.554000px;}
.ws39{word-spacing:-13.500000px;}
.wse3{word-spacing:-13.449600px;}
.ws37{word-spacing:-11.955150px;}
.ws38{word-spacing:-11.700000px;}
.ws2{word-spacing:-11.357400px;}
.wsb{word-spacing:-10.460700px;}
.wsdb{word-spacing:-9.000000px;}
.ws69{word-spacing:-6.574765px;}
.ws68{word-spacing:-6.193737px;}
.ws10a{word-spacing:-3.347434px;}
.ws10b{word-spacing:-3.168107px;}
.ws7b{word-spacing:-3.108331px;}
.ws155{word-spacing:-3.048556px;}
.ws154{word-spacing:-2.988780px;}
.ws42{word-spacing:-2.929004px;}
.ws41{word-spacing:-2.869229px;}
.ws156{word-spacing:-2.749678px;}
.ws77{word-spacing:-2.391024px;}
.ws43{word-spacing:-1.972595px;}
.ws8{word-spacing:-1.908367px;}
.ws47{word-spacing:-1.853044px;}
.wsd2{word-spacing:-1.793268px;}
.wsd3{word-spacing:-1.733492px;}
.ws15e{word-spacing:-1.673717px;}
.ws165{word-spacing:-1.554166px;}
.ws159{word-spacing:-1.494390px;}
.ws153{word-spacing:-1.434614px;}
.ws9a{word-spacing:-1.374839px;}
.ws7{word-spacing:-1.322630px;}
.wscd{word-spacing:-1.318555px;}
.wsca{word-spacing:-1.315063px;}
.ws7c{word-spacing:-1.255288px;}
.ws188{word-spacing:-1.075968px;}
.wsfd{word-spacing:-1.075961px;}
.ws1e{word-spacing:-1.022170px;}
.wscc{word-spacing:-0.972959px;}
.ws5c{word-spacing:-0.956410px;}
.wsd4{word-spacing:-0.896634px;}
.ws7e{word-spacing:-0.836858px;}
.ws186{word-spacing:-0.753178px;}
.wsf0{word-spacing:-0.717307px;}
.ws64{word-spacing:-0.699379px;}
.wsf6{word-spacing:-0.657532px;}
.ws48{word-spacing:-0.597756px;}
.ws2d{word-spacing:-0.484186px;}
.ws40{word-spacing:-0.478205px;}
.ws15a{word-spacing:-0.418429px;}
.ws79{word-spacing:-0.358654px;}
.ws1d{word-spacing:-0.322790px;}
.ws54{word-spacing:-0.305567px;}
.ws3e{word-spacing:-0.298878px;}
.ws16a{word-spacing:-0.268992px;}
.ws3f{word-spacing:-0.239102px;}
.wsa7{word-spacing:-0.215194px;}
.ws6e{word-spacing:-0.214351px;}
.ws190{word-spacing:-0.179636px;}
.ws34{word-spacing:-0.179327px;}
.ws17f{word-spacing:-0.161395px;}
.wsc5{word-spacing:-0.143462px;}
.ws51{word-spacing:-0.119551px;}
.ws29{word-spacing:-0.107597px;}
.wsc6{word-spacing:-0.095641px;}
.ws152{word-spacing:-0.061805px;}
.wsa2{word-spacing:-0.061178px;}
.ws3{word-spacing:-0.059776px;}
.ws151{word-spacing:-0.055837px;}
.ws85{word-spacing:-0.053798px;}
.ws17{word-spacing:-0.047821px;}
.wsc{word-spacing:-0.041843px;}
.ws193{word-spacing:-0.027514px;}
.ws192{word-spacing:-0.027466px;}
.ws18d{word-spacing:-0.025450px;}
.ws89{word-spacing:-0.006240px;}
.wsa9{word-spacing:-0.005933px;}
.ws102{word-spacing:-0.005711px;}
.ws2e{word-spacing:-0.005328px;}
.ws86{word-spacing:-0.004656px;}
.ws5{word-spacing:-0.003650px;}
.ws103{word-spacing:-0.003037px;}
.ws88{word-spacing:-0.002534px;}
.ws93{word-spacing:-0.002054px;}
.ws72{word-spacing:-0.001991px;}
.ws84{word-spacing:-0.001498px;}
.ws120{word-spacing:-0.001446px;}
.ws87{word-spacing:-0.001056px;}
.ws1{word-spacing:0.000000px;}
.wsb0{word-spacing:0.001200px;}
.ws4{word-spacing:0.001225px;}
.ws8f{word-spacing:0.001978px;}
.ws8a{word-spacing:0.002544px;}
.wsff{word-spacing:0.002704px;}
.ws81{word-spacing:0.053798px;}
.ws31{word-spacing:0.059776px;}
.wsc4{word-spacing:0.095641px;}
.ws1c{word-spacing:0.107597px;}
.ws32{word-spacing:0.119551px;}
.wsc2{word-spacing:0.143462px;}
.ws26{word-spacing:0.161395px;}
.ws4c{word-spacing:0.179327px;}
.ws11e{word-spacing:0.181470px;}
.wsc3{word-spacing:0.191282px;}
.wsd{word-spacing:0.209214px;}
.ws3c{word-spacing:0.215194px;}
.ws33{word-spacing:0.239102px;}
.ws62{word-spacing:0.268992px;}
.wsf{word-spacing:0.292900px;}
.ws4d{word-spacing:0.298878px;}
.ws16c{word-spacing:0.322790px;}
.ws52{word-spacing:0.358654px;}
.ws175{word-spacing:0.376589px;}
.wsf7{word-spacing:0.418429px;}
.ws76{word-spacing:0.478205px;}
.ws28{word-spacing:0.484186px;}
.ws137{word-spacing:0.501793px;}
.ws147{word-spacing:0.502972px;}
.ws149{word-spacing:0.508972px;}
.ws140{word-spacing:0.517663px;}
.ws12b{word-spacing:0.518400px;}
.ws133{word-spacing:0.523399px;}
.ws12d{word-spacing:0.523663px;}
.ws14e{word-spacing:0.523768px;}
.ws13f{word-spacing:0.524263px;}
.ws12a{word-spacing:0.524400px;}
.ws12f{word-spacing:0.525000px;}
.ws15c{word-spacing:0.537980px;}
.ws145{word-spacing:0.545078px;}
.ws6{word-spacing:0.562186px;}
.wsea{word-spacing:0.647117px;}
.wse7{word-spacing:0.647309px;}
.ws44{word-spacing:0.657532px;}
.wsec{word-spacing:0.668515px;}
.wse2{word-spacing:0.669110px;}
.wse9{word-spacing:0.670752px;}
.wsed{word-spacing:0.671952px;}
.wse8{word-spacing:0.676752px;}
.wseb{word-spacing:0.697718px;}
.wsc9{word-spacing:0.717307px;}
.wsef{word-spacing:0.750600px;}
.ws4f{word-spacing:0.777083px;}
.ws18c{word-spacing:0.806976px;}
.wsd6{word-spacing:0.836858px;}
.ws95{word-spacing:0.896634px;}
.ws66{word-spacing:0.956410px;}
.ws27{word-spacing:0.968371px;}
.wsfb{word-spacing:1.016185px;}
.ws16b{word-spacing:1.022170px;}
.ws123{word-spacing:1.075961px;}
.ws162{word-spacing:1.135736px;}
.ws124{word-spacing:1.195512px;}
.ws7f{word-spacing:1.255288px;}
.ws35{word-spacing:1.315063px;}
.ws164{word-spacing:1.374839px;}
.ws196{word-spacing:1.398758px;}
.ws7a{word-spacing:1.434614px;}
.ws10d{word-spacing:1.452557px;}
.ws99{word-spacing:1.494390px;}
.ws177{word-spacing:1.506355px;}
.ws65{word-spacing:1.613941px;}
.ws161{word-spacing:1.673717px;}
.ws63{word-spacing:1.721549px;}
.ws23{word-spacing:1.746703px;}
.ws25{word-spacing:1.775347px;}
.wscf{word-spacing:1.793268px;}
.ws6a{word-spacing:1.853044px;}
.ws50{word-spacing:1.912819px;}
.ws80{word-spacing:1.972595px;}
.wsa8{word-spacing:1.990541px;}
.wse{word-spacing:2.008454px;}
.wsf1{word-spacing:2.151922px;}
.ws45{word-spacing:2.211697px;}
.ws1f{word-spacing:2.264507px;}
.ws21{word-spacing:2.268613px;}
.wsf4{word-spacing:2.271473px;}
.ws18a{word-spacing:2.313331px;}
.ws9d{word-spacing:2.331248px;}
.ws194{word-spacing:2.367130px;}
.wsfa{word-spacing:2.391024px;}
.wsf9{word-spacing:2.450800px;}
.wsc7{word-spacing:2.510575px;}
.ws9b{word-spacing:2.570351px;}
.ws171{word-spacing:2.582323px;}
.ws74{word-spacing:2.630126px;}
.ws170{word-spacing:2.636122px;}
.ws16f{word-spacing:2.689920px;}
.wsd0{word-spacing:2.749678px;}
.ws199{word-spacing:2.797517px;}
.ws1a{word-spacing:2.851315px;}
.ws6b{word-spacing:2.869229px;}
.ws18{word-spacing:2.869236px;}
.wsfe{word-spacing:2.929004px;}
.ws70{word-spacing:2.988780px;}
.wsce{word-spacing:3.108331px;}
.ws172{word-spacing:3.120307px;}
.ws15d{word-spacing:3.168107px;}
.ws8e{word-spacing:3.227904px;}
.ws4e{word-spacing:3.347434px;}
.ws1b{word-spacing:3.443098px;}
.ws10c{word-spacing:3.466985px;}
.ws2b{word-spacing:3.496896px;}
.ws198{word-spacing:3.550694px;}
.ws30{word-spacing:3.586536px;}
.ws6d{word-spacing:3.646312px;}
.ws166{word-spacing:3.706087px;}
.ws78{word-spacing:3.765863px;}
.ws57{word-spacing:3.824721px;}
.wsa6{word-spacing:3.825638px;}
.wsf3{word-spacing:3.885414px;}
.ws2a{word-spacing:3.927283px;}
.ws126{word-spacing:4.124516px;}
.ws4a{word-spacing:4.244068px;}
.ws168{word-spacing:4.303843px;}
.ws67{word-spacing:4.483170px;}
.ws4b{word-spacing:4.542946px;}
.ws19{word-spacing:4.572864px;}
.ws46{word-spacing:4.662497px;}
.ws96{word-spacing:4.722272px;}
.ws15b{word-spacing:4.841824px;}
.wsd1{word-spacing:4.901599px;}
.ws16e{word-spacing:5.003251px;}
.wsfc{word-spacing:5.080926px;}
.ws49{word-spacing:5.260253px;}
.ws167{word-spacing:5.379804px;}
.wsc8{word-spacing:5.439580px;}
.ws7d{word-spacing:5.559131px;}
.ws127{word-spacing:5.648832px;}
.ws16d{word-spacing:5.756429px;}
.ws109{word-spacing:5.974310px;}
.ws8b{word-spacing:5.976595px;}
.ws97{word-spacing:5.977560px;}
.ws94{word-spacing:5.980310px;}
.ws15{word-spacing:6.067206px;}
.ws3d{word-spacing:6.097111px;}
.ws16{word-spacing:6.150892px;}
.ws163{word-spacing:6.156887px;}
.wsee{word-spacing:6.276438px;}
.ws59{word-spacing:6.336214px;}
.ws98{word-spacing:6.395989px;}
.wsf2{word-spacing:6.515540px;}
.wsd9{word-spacing:6.571231px;}
.wsf5{word-spacing:6.754643px;}
.ws160{word-spacing:6.814418px;}
.wsf8{word-spacing:6.933970px;}
.wsd7{word-spacing:7.053521px;}
.wsd5{word-spacing:7.292623px;}
.ws125{word-spacing:7.352399px;}
.ws75{word-spacing:7.471950px;}
.ws157{word-spacing:7.651277px;}
.ws17b{word-spacing:8.069760px;}
.ws13{word-spacing:8.661460px;}
.ws182{word-spacing:9.199526px;}
.ws184{word-spacing:9.307123px;}
.wse1{word-spacing:10.114099px;}
.ws128{word-spacing:10.418857px;}
.wse4{word-spacing:10.544486px;}
.wse0{word-spacing:10.598285px;}
.ws15f{word-spacing:10.819384px;}
.ws150{word-spacing:11.811688px;}
.ws14f{word-spacing:11.859509px;}
.ws122{word-spacing:11.903269px;}
.ws36{word-spacing:11.904929px;}
.ws121{word-spacing:11.907329px;}
.ws11d{word-spacing:12.050791px;}
.ws11f{word-spacing:12.098612px;}
.ws187{word-spacing:12.373632px;}
.wsa{word-spacing:12.930542px;}
.ws18e{word-spacing:13.234406px;}
.ws189{word-spacing:13.288205px;}
.wsab{word-spacing:13.385597px;}
.wsae{word-spacing:13.386758px;}
.ws8c{word-spacing:13.387709px;}
.ws2c{word-spacing:13.388314px;}
.ws19a{word-spacing:13.388534px;}
.ws90{word-spacing:13.388870px;}
.ws19b{word-spacing:13.389293px;}
.ws176{word-spacing:13.389802px;}
.ws91{word-spacing:13.390685px;}
.wsad{word-spacing:13.393824px;}
.ws8d{word-spacing:13.394314px;}
.ws83{word-spacing:13.395475px;}
.ws2f{word-spacing:13.395802px;}
.ws18b{word-spacing:13.449600px;}
.ws174{word-spacing:13.465418px;}
.ws191{word-spacing:13.503398px;}
.ws17d{word-spacing:13.557197px;}
.wscb{word-spacing:13.569061px;}
.ws18f{word-spacing:13.610995px;}
.ws19c{word-spacing:13.664794px;}
.ws169{word-spacing:14.166817px;}
.ws53{word-spacing:14.574225px;}
.ws55{word-spacing:14.579408px;}
.ws6f{word-spacing:14.645022px;}
.ws56{word-spacing:14.704798px;}
.wsa5{word-spacing:14.760911px;}
.wsa3{word-spacing:14.793527px;}
.wsa4{word-spacing:14.795752px;}
.wsa1{word-spacing:14.797795px;}
.ws9e{word-spacing:14.819652px;}
.ws197{word-spacing:14.848358px;}
.ws71{word-spacing:14.881826px;}
.ws5b{word-spacing:14.884124px;}
.ws73{word-spacing:14.887002px;}
.ws9c{word-spacing:14.910607px;}
.ws5a{word-spacing:14.923306px;}
.ws158{word-spacing:14.943900px;}
.wsa0{word-spacing:14.945896px;}
.ws58{word-spacing:15.063451px;}
.ws9f{word-spacing:15.085809px;}
.ws24{word-spacing:15.134700px;}
.ws22{word-spacing:15.136025px;}
.ws20{word-spacing:15.154832px;}
.ws9{word-spacing:15.483541px;}
.ws10{word-spacing:16.142252px;}
.ws11{word-spacing:16.151321px;}
.ws179{word-spacing:16.569907px;}
.ws17e{word-spacing:16.615469px;}
.ws178{word-spacing:16.623706px;}
.ws17a{word-spacing:16.625107px;}
.ws173{word-spacing:16.677504px;}
.ws181{word-spacing:17.054093px;}
.ws12{word-spacing:17.699504px;}
.ws6c{word-spacing:17.753353px;}
.ws180{word-spacing:17.817825px;}
.ws195{word-spacing:24.155482px;}
.ws14{word-spacing:27.448877px;}
.ws17c{word-spacing:41.317171px;}
.ws183{word-spacing:44.598874px;}
.ws185{word-spacing:45.029261px;}
.ws14a{word-spacing:52.115719px;}
.ws139{word-spacing:66.338400px;}
.ws134{word-spacing:66.344400px;}
.ws144{word-spacing:73.826762px;}
.ws141{word-spacing:74.459719px;}
.ws130{word-spacing:79.565719px;}
.ws148{word-spacing:81.242400px;}
.wsac{word-spacing:86.029978px;}
.ws12e{word-spacing:90.908400px;}
.ws146{word-spacing:91.700400px;}
.wsaa{word-spacing:95.790595px;}
.ws13d{word-spacing:96.170762px;}
.ws13e{word-spacing:97.730400px;}
.ws129{word-spacing:101.276762px;}
.ws143{word-spacing:101.366400px;}
.ws119{word-spacing:102.647347px;}
.ws135{word-spacing:102.992762px;}
.ws118{word-spacing:103.454323px;}
.ws116{word-spacing:103.508122px;}
.ws138{word-spacing:103.916400px;}
.ws13a{word-spacing:106.472400px;}
.ws104{word-spacing:107.536310px;}
.ws136{word-spacing:132.764400px;}
.ws106{word-spacing:141.548976px;}
.ws108{word-spacing:141.596797px;}
.ws100{word-spacing:144.964310px;}
.ws12c{word-spacing:146.114400px;}
.ws13b{word-spacing:146.120400px;}
.ws111{word-spacing:155.392776px;}
.ws14d{word-spacing:160.928400px;}
.ws14c{word-spacing:160.929187px;}
.ws14b{word-spacing:160.934400px;}
.ws132{word-spacing:183.273187px;}
.ws112{word-spacing:184.367117px;}
.ws13c{word-spacing:188.379187px;}
.ws113{word-spacing:190.500134px;}
.ws10e{word-spacing:193.513075px;}
.ws10f{word-spacing:204.380122px;}
.ws11b{word-spacing:209.782973px;}
.ws114{word-spacing:215.857642px;}
.ws117{word-spacing:222.531839px;}
.ws105{word-spacing:226.813106px;}
.ws131{word-spacing:228.026400px;}
.ws142{word-spacing:229.070400px;}
.ws82{word-spacing:234.288595px;}
.ws107{word-spacing:238.768256px;}
.ws11a{word-spacing:241.778154px;}
.wsc0{word-spacing:293.172883px;}
.ws11c{word-spacing:297.794527px;}
.wsaf{word-spacing:322.331155px;}
.wsb5{word-spacing:322.682803px;}
.wsb9{word-spacing:324.027763px;}
.wsbd{word-spacing:332.958298px;}
.wsb4{word-spacing:333.711475px;}
.wsb3{word-spacing:338.983718px;}
.wsbf{word-spacing:340.005888px;}
.wsb6{word-spacing:348.183245px;}
.ws92{word-spacing:358.440595px;}
.wsb8{word-spacing:367.765862px;}
.wsba{word-spacing:372.876710px;}
.wse6{word-spacing:374.329267px;}
.wsbe{word-spacing:377.019187px;}
.wsb7{word-spacing:389.608013px;}
.wsbb{word-spacing:394.503667px;}
.wsb1{word-spacing:485.970595px;}
.wsc1{word-spacing:545.192986px;}
.wsb2{word-spacing:556.698595px;}
.wsbc{word-spacing:583.336051px;}
.wsda{word-spacing:664.585121px;}
.wse5{word-spacing:681.921466px;}
.ws101{word-spacing:877.216310px;}
.ws61{word-spacing:1060.245233px;}
._61{margin-left:-19.302373px;}
._0{margin-left:-11.943245px;}
._1{margin-left:-7.962163px;}
._4{margin-left:-6.634040px;}
._7{margin-left:-5.397721px;}
._8{margin-left:-3.849538px;}
._32{margin-left:-2.405890px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._2{width:2.993422px;}
._1b{width:4.096332px;}
._1a{width:6.080030px;}
._1c{width:7.126930px;}
._19{width:8.795620px;}
._18{width:10.039680px;}
._d{width:11.094379px;}
._9{width:12.968179px;}
._b{width:14.276738px;}
._f{width:16.031923px;}
._e{width:17.354554px;}
._13{width:18.415890px;}
._11{width:19.526054px;}
._10{width:21.517002px;}
._14{width:22.953830px;}
._1d{width:24.209118px;}
._a{width:25.940136px;}
._25{width:27.498990px;}
._12{width:29.104934px;}
._26{width:31.158222px;}
._c{width:32.637384px;}
._31{width:34.149785px;}
._1e{width:36.230530px;}
._3d{width:39.690998px;}
._6e{width:41.252731px;}
._70{width:44.864031px;}
._71{width:46.026950px;}
._33{width:47.557786px;}
._3{width:54.409658px;}
._6f{width:61.868160px;}
._69{width:74.270970px;}
._6a{width:88.790422px;}
._3e{width:89.854907px;}
._6b{width:99.627707px;}
._3f{width:102.049160px;}
._6c{width:103.733710px;}
._40{width:105.731347px;}
._41{width:111.900204px;}
._27{width:116.625110px;}
._5c{width:124.524216px;}
._65{width:128.624767px;}
._5b{width:130.999104px;}
._64{width:133.896960px;}
._54{width:138.453134px;}
._44{width:153.504126px;}
._5e{width:155.448834px;}
._59{width:160.104038px;}
._68{width:161.262151px;}
._45{width:163.163887px;}
._6d{width:173.940520px;}
._23{width:177.665376px;}
._46{width:184.778798px;}
._43{width:187.122008px;}
._63{width:190.803168px;}
._57{width:197.981091px;}
._5d{width:199.399395px;}
._5a{width:204.220644px;}
._53{width:217.950614px;}
._22{width:224.433629px;}
._66{width:226.400466px;}
._67{width:231.537063px;}
._58{width:235.420022px;}
._4d{width:238.672615px;}
._48{width:239.915950px;}
._42{width:241.350568px;}
._52{width:246.558067px;}
._49{width:250.723406px;}
._4c{width:252.110203px;}
._3b{width:253.928448px;}
._62{width:259.652113px;}
._4b{width:262.678556px;}
._56{width:265.767926px;}
._47{width:271.142802px;}
._5f{width:278.621914px;}
._4e{width:283.145773px;}
._51{width:288.305626px;}
._55{width:289.758182px;}
._4a{width:295.053102px;}
._24{width:299.495693px;}
._21{width:303.570038px;}
._60{width:328.219590px;}
._1f{width:339.592338px;}
._50{width:343.395187px;}
._38{width:346.999680px;}
._36{width:354.800448px;}
._3a{width:361.525248px;}
._39{width:374.060275px;}
._3c{width:382.368336px;}
._35{width:387.778867px;}
._37{width:394.234675px;}
._34{width:401.581109px;}
._20{width:404.311813px;}
._2e{width:423.016819px;}
._2b{width:526.069152px;}
._30{width:544.224614px;}
._2c{width:545.245584px;}
._2a{width:557.672774px;}
._28{width:558.694138px;}
._2f{width:583.337251px;}
._29{width:596.785651px;}
._2d{width:634.928717px;}
._15{width:913.801298px;}
._17{width:2103.772521px;}
._4f{width:2487.742348px;}
._16{width:2511.652348px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fs17{font-size:29.887800px;}
.fs7{font-size:35.865600px;}
.fs12{font-size:36.000000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs16{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsf{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs14{font-size:47.893609px;}
.fsa{font-size:48.240000px;}
.fs11{font-size:49.829400px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs15{font-size:56.058000px;}
.fsb{font-size:59.760000px;}
.fs1{font-size:59.775600px;}
.fs10{font-size:62.286600px;}
.fse{font-size:64.869398px;}
.fsd{font-size:75.670605px;}
.fs13{font-size:95.789344px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y79{bottom:-696.073500px;}
.y78{bottom:-676.813500px;}
.y77{bottom:-657.553500px;}
.y76{bottom:-638.299500px;}
.y75{bottom:-619.219500px;}
.y74{bottom:-599.959500px;}
.y73{bottom:-580.699500px;}
.y72{bottom:-561.439500px;}
.y71{bottom:-542.179500px;}
.y70{bottom:-523.099500px;}
.y6f{bottom:-503.839500px;}
.y6e{bottom:-484.579500px;}
.y6d{bottom:-465.274500px;}
.y6c{bottom:-446.014500px;}
.y1d3{bottom:-440.220000px;}
.y6b{bottom:-426.934500px;}
.y1d2{bottom:-420.960000px;}
.y6a{bottom:-407.674500px;}
.y1d1{bottom:-401.700000px;}
.y69{bottom:-388.414500px;}
.y1d0{bottom:-382.446000px;}
.y68{bottom:-369.154500px;}
.y1cf{bottom:-363.366000px;}
.y67{bottom:-349.894500px;}
.y1ce{bottom:-344.106000px;}
.y66{bottom:-330.814500px;}
.y1cd{bottom:-324.846000px;}
.y65{bottom:-311.554500px;}
.y1cc{bottom:-305.586000px;}
.y64{bottom:-292.294500px;}
.y1cb{bottom:-286.326000px;}
.y63{bottom:-273.034500px;}
.y62{bottom:-253.774500px;}
.y1ca{bottom:-247.446000px;}
.y61{bottom:-234.694500px;}
.y1c9{bottom:-227.106000px;}
.y60{bottom:-215.434500px;}
.y1c8{bottom:-206.901000px;}
.y5f{bottom:-196.144500px;}
.y1c7{bottom:-186.741000px;}
.y5e{bottom:-176.884500px;}
.y1c6{bottom:-166.401000px;}
.y5d{bottom:-157.624500px;}
.y1c5{bottom:-145.521000px;}
.y5c{bottom:-138.544500px;}
.y1c3{bottom:-134.901000px;}
.y1c4{bottom:-124.461000px;}
.y5b{bottom:-119.284500px;}
.y5a{bottom:-100.024500px;}
.ydd{bottom:-95.521500px;}
.y1c2{bottom:-94.401000px;}
.y59{bottom:-80.764500px;}
.ydc{bottom:-78.061500px;}
.y1c1{bottom:-77.121000px;}
.ydb{bottom:-60.781500px;}
.y58{bottom:-44.044500px;}
.yda{bottom:-43.501500px;}
.y1c0{bottom:-41.841000px;}
.y57{bottom:-26.764500px;}
.yd9{bottom:-26.221500px;}
.y1bf{bottom:-24.561000px;}
.y56{bottom:-4.264500px;}
.y1be{bottom:-2.061000px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.yb{bottom:3.425340px;}
.ye0{bottom:6.782609px;}
.ye2{bottom:7.175798px;}
.ya{bottom:14.151273px;}
.y1b5{bottom:15.660000px;}
.y1b4{bottom:17.820000px;}
.y1f1{bottom:23.428616px;}
.y1da{bottom:25.143980px;}
.ye1{bottom:25.590816px;}
.ydf{bottom:26.243429px;}
.y2{bottom:30.271042px;}
.y4f{bottom:31.890000px;}
.y1dd{bottom:33.323517px;}
.y1ee{bottom:43.912006px;}
.y1e8{bottom:45.396174px;}
.y1e2{bottom:49.387618px;}
.y1f4{bottom:59.447280px;}
.y1f2{bottom:63.471942px;}
.y1e3{bottom:68.055991px;}
.y1eb{bottom:72.343737px;}
.y1e4{bottom:77.423394px;}
.y1f3{bottom:77.621372px;}
.y1de{bottom:86.890451px;}
.y1e7{bottom:96.983331px;}
.yeb{bottom:99.013500px;}
.y21a{bottom:99.349500px;}
.y2df{bottom:101.047500px;}
.y2c6{bottom:102.211500px;}
.y26{bottom:102.823500px;}
.ya0{bottom:103.533000px;}
.y1d9{bottom:104.668588px;}
.y1ea{bottom:105.758130px;}
.y195{bottom:110.092500px;}
.y15d{bottom:113.751000px;}
.y4e{bottom:115.498500px;}
.y315{bottom:116.334000px;}
.yea{bottom:117.843000px;}
.y219{bottom:118.179000px;}
.y25{bottom:120.711000px;}
.y2c5{bottom:121.041000px;}
.y9f{bottom:122.362500px;}
.y118{bottom:124.180500px;}
.y2de{bottom:127.587000px;}
.y194{bottom:128.922000px;}
.y1e1{bottom:130.199746px;}
.y15c{bottom:132.580500px;}
.y1d8{bottom:132.906328px;}
.y314{bottom:133.594500px;}
.y23e{bottom:134.293500px;}
.y4d{bottom:134.328000px;}
.y26c{bottom:136.119000px;}
.ye9{bottom:136.672500px;}
.y218{bottom:137.008500px;}
.y1e5{bottom:138.088296px;}
.y24{bottom:138.600000px;}
.y2c4{bottom:139.870500px;}
.y9e{bottom:141.192000px;}
.y117{bottom:143.010000px;}
.y29e{bottom:143.449500px;}
.y2dd{bottom:145.161000px;}
.y1d5{bottom:145.768238px;}
.y1ef{bottom:146.791345px;}
.y192{bottom:147.751500px;}
.y313{bottom:150.855000px;}
.y15b{bottom:151.410000px;}
.y23d{bottom:152.028000px;}
.y4c{bottom:153.157500px;}
.y193{bottom:153.175500px;}
.y26b{bottom:154.948500px;}
.ye8{bottom:155.502000px;}
.y217{bottom:155.838000px;}
.y1d7{bottom:156.358055px;}
.y23{bottom:156.487500px;}
.y2c3{bottom:158.700000px;}
.y9d{bottom:160.021500px;}
.y116{bottom:161.839500px;}
.y29d{bottom:162.279000px;}
.y2dc{bottom:162.736500px;}
.y23c{bottom:166.224000px;}
.y312{bottom:168.115500px;}
.y159{bottom:170.239500px;}
.y4b{bottom:171.987000px;}
.y26a{bottom:173.778000px;}
.y22{bottom:174.375000px;}
.y216{bottom:174.667500px;}
.y15a{bottom:175.663500px;}
.y1f5{bottom:176.899908px;}
.y2c2{bottom:177.529500px;}
.y1f0{bottom:178.228618px;}
.y9c{bottom:178.851000px;}
.y23b{bottom:180.421500px;}
.y29c{bottom:181.108500px;}
.y115{bottom:185.151000px;}
.y311{bottom:185.376000px;}
.y1db{bottom:186.599489px;}
.y191{bottom:187.884000px;}
.ye7{bottom:189.067500px;}
.y158{bottom:189.069000px;}
.y2db{bottom:189.276000px;}
.y4a{bottom:190.816500px;}
.y1e9{bottom:190.891222px;}
.y21{bottom:192.264000px;}
.y269{bottom:192.607500px;}
.y215{bottom:193.497000px;}
.y23a{bottom:194.617500px;}
.y2c1{bottom:196.359000px;}
.y9b{bottom:197.680500px;}
.y29b{bottom:199.938000px;}
.y190{bottom:202.081500px;}
.y30f{bottom:202.635000px;}
.y310{bottom:202.636500px;}
.y1ab{bottom:204.877500px;}
.y157{bottom:207.898500px;}
.ye6{bottom:208.300500px;}
.y239{bottom:208.815000px;}
.y1df{bottom:209.227417px;}
.y49{bottom:209.646000px;}
.y20{bottom:210.151500px;}
.y1e6{bottom:210.848443px;}
.y268{bottom:211.437000px;}
.y214{bottom:212.326500px;}
.y1dc{bottom:213.452714px;}
.y1e0{bottom:214.249940px;}
.y2c0{bottom:215.188500px;}
.y2da{bottom:215.817000px;}
.y18f{bottom:216.277500px;}
.y9a{bottom:216.510000px;}
.y1ed{bottom:216.615043px;}
.y29a{bottom:218.767500px;}
.y114{bottom:218.775000px;}
.y30e{bottom:219.895500px;}
.y1d6{bottom:221.730576px;}
.y238{bottom:223.011000px;}
.y1aa{bottom:223.707000px;}
.y1d4{bottom:224.799895px;}
.y156{bottom:226.728000px;}
.ye5{bottom:227.533500px;}
.y1f{bottom:228.039000px;}
.y48{bottom:228.475500px;}
.y267{bottom:230.266500px;}
.y18d{bottom:230.475000px;}
.y213{bottom:231.156000px;}
.y2bf{bottom:234.018000px;}
.y18e{bottom:234.814500px;}
.y1ec{bottom:235.190405px;}
.y99{bottom:235.339500px;}
.y30d{bottom:237.156000px;}
.y237{bottom:237.208500px;}
.y299{bottom:237.597000px;}
.y113{bottom:237.604500px;}
.y2d9{bottom:242.358000px;}
.y1a9{bottom:242.536500px;}
.y155{bottom:245.557500px;}
.y18c{bottom:246.168000px;}
.y266{bottom:246.366000px;}
.ye4{bottom:246.766500px;}
.y47{bottom:247.305000px;}
.y265{bottom:249.096000px;}
.y212{bottom:249.985500px;}
.y18b{bottom:250.507500px;}
.y236{bottom:251.404500px;}
.y2be{bottom:252.847500px;}
.y98{bottom:254.169000px;}
.y30c{bottom:254.416500px;}
.y298{bottom:256.426500px;}
.y112{bottom:256.434000px;}
.y153{bottom:264.387000px;}
.y235{bottom:265.602000px;}
.y1a8{bottom:265.849500px;}
.ye3{bottom:265.999500px;}
.y46{bottom:266.134500px;}
.y18a{bottom:267.189000px;}
.y264{bottom:267.925500px;}
.y211{bottom:268.815000px;}
.y2d8{bottom:268.897500px;}
.y154{bottom:269.811000px;}
.y2bd{bottom:271.677000px;}
.y97{bottom:272.998500px;}
.y297{bottom:275.256000px;}
.y111{bottom:275.263500px;}
.y234{bottom:279.798000px;}
.y152{bottom:283.216500px;}
.y189{bottom:283.626000px;}
.y45{bottom:284.964000px;}
.y1a7{bottom:286.023000px;}
.y2d7{bottom:286.471500px;}
.y263{bottom:286.755000px;}
.y1bd{bottom:287.049000px;}
.y210{bottom:287.644500px;}
.yba{bottom:288.427500px;}
.y30b{bottom:288.937500px;}
.y2bc{bottom:290.506500px;}
.y96{bottom:291.828000px;}
.y55{bottom:292.240500px;}
.yde{bottom:293.355099px;}
.y296{bottom:294.085500px;}
.y110{bottom:294.093000px;}
.y188{bottom:300.064500px;}
.y233{bottom:301.197000px;}
.y151{bottom:302.046000px;}
.y2d6{bottom:304.045500px;}
.y232{bottom:305.187000px;}
.y262{bottom:305.584500px;}
.y30a{bottom:306.198000px;}
.y1bc{bottom:306.309000px;}
.y20f{bottom:306.474000px;}
.y1e{bottom:307.299000px;}
.y44{bottom:308.277000px;}
.y2bb{bottom:309.336000px;}
.y231{bottom:309.702000px;}
.y295{bottom:309.838500px;}
.y95{bottom:310.657500px;}
.y230{bottom:311.163000px;}
.y54{bottom:311.500500px;}
.y294{bottom:312.915000px;}
.y10f{bottom:312.922500px;}
.y187{bottom:316.503000px;}
.y1a6{bottom:319.647000px;}
.y150{bottom:320.875500px;}
.y2d5{bottom:321.619500px;}
.y309{bottom:323.458500px;}
.y261{bottom:324.414000px;}
.y1d{bottom:325.186500px;}
.y20e{bottom:325.303500px;}
.y1bb{bottom:325.614000px;}
.y2ba{bottom:328.165500px;}
.y94{bottom:329.487000px;}
.y293{bottom:331.744500px;}
.y10e{bottom:331.752000px;}
.y186{bottom:332.941500px;}
.y1a5{bottom:338.476500px;}
.y2d4{bottom:339.195000px;}
.y14f{bottom:339.703500px;}
.y308{bottom:340.719000px;}
.y1c{bottom:343.074000px;}
.y25f{bottom:343.243500px;}
.yd8{bottom:343.573500px;}
.y20d{bottom:344.133000px;}
.y2b9{bottom:346.995000px;}
.y93{bottom:348.315000px;}
.y260{bottom:348.667500px;}
.y1ba{bottom:349.374000px;}
.y185{bottom:349.380000px;}
.y292{bottom:350.574000px;}
.y10d{bottom:350.581500px;}
.y22f{bottom:353.527500px;}
.y2d3{bottom:356.769000px;}
.y1a4{bottom:357.306000px;}
.y307{bottom:357.978000px;}
.y14e{bottom:358.533000px;}
.y1b{bottom:360.963000px;}
.y25e{bottom:362.073000px;}
.yd7{bottom:362.653500px;}
.y20c{bottom:362.962500px;}
.y184{bottom:365.818500px;}
.y2b8{bottom:365.824500px;}
.y53{bottom:366.250500px;}
.y92{bottom:367.144500px;}
.y291{bottom:369.403500px;}
.y10c{bottom:369.411000px;}
.y1b9{bottom:372.954000px;}
.y2d2{bottom:374.343000px;}
.y306{bottom:375.238500px;}
.y52{bottom:375.790500px;}
.y14d{bottom:377.362500px;}
.y25d{bottom:380.902500px;}
.y20b{bottom:381.792000px;}
.yd6{bottom:381.913500px;}
.y183{bottom:382.257000px;}
.y43{bottom:383.346000px;}
.y2b7{bottom:384.654000px;}
.y91{bottom:385.974000px;}
.y290{bottom:388.233000px;}
.y10b{bottom:388.240500px;}
.y22e{bottom:389.137500px;}
.y1a3{bottom:391.827000px;}
.y2d1{bottom:391.917000px;}
.y305{bottom:392.499000px;}
.y14c{bottom:396.192000px;}
.y182{bottom:398.695500px;}
.y1a{bottom:399.024000px;}
.y20a{bottom:400.620000px;}
.y42{bottom:402.802500px;}
.y2b6{bottom:403.483500px;}
.y90{bottom:404.803500px;}
.yd5{bottom:405.673500px;}
.y28f{bottom:407.062500px;}
.y10a{bottom:407.070000px;}
.y22d{bottom:407.967000px;}
.y2d0{bottom:409.491000px;}
.y304{bottom:409.759500px;}
.y1b8{bottom:410.214000px;}
.y14b{bottom:415.021500px;}
.y181{bottom:415.134000px;}
.y25c{bottom:415.572000px;}
.y19{bottom:416.913000px;}
.y209{bottom:419.449500px;}
.y2b5{bottom:422.313000px;}
.y8f{bottom:423.633000px;}
.y28e{bottom:425.892000px;}
.y109{bottom:425.899500px;}
.y1a2{bottom:426.348000px;}
.y22c{bottom:426.796500px;}
.y303{bottom:427.020000px;}
.y2cf{bottom:427.065000px;}
.yd4{bottom:429.433500px;}
.y1b7{bottom:429.474000px;}
.y25b{bottom:429.769500px;}
.y180{bottom:431.572500px;}
.y14a{bottom:433.851000px;}
.y18{bottom:434.800500px;}
.y208{bottom:438.279000px;}
.y41{bottom:440.193000px;}
.y2b3{bottom:441.142500px;}
.y1a1{bottom:442.101000px;}
.y8e{bottom:442.462500px;}
.y302{bottom:444.280500px;}
.y2ce{bottom:444.639000px;}
.y28d{bottom:444.721500px;}
.y1a0{bottom:445.177500px;}
.y22b{bottom:445.626000px;}
.y2b4{bottom:446.566500px;}
.y17f{bottom:448.009500px;}
.y1b6{bottom:448.734000px;}
.y108{bottom:449.212500px;}
.y25a{bottom:452.517000px;}
.y149{bottom:452.680500px;}
.y207{bottom:457.108500px;}
.y40{bottom:459.649500px;}
.y2b2{bottom:459.972000px;}
.y8d{bottom:461.292000px;}
.y301{bottom:461.541000px;}
.y2cd{bottom:462.213000px;}
.y28c{bottom:463.551000px;}
.y19f{bottom:464.007000px;}
.y17e{bottom:464.448000px;}
.y22a{bottom:464.454000px;}
.yd3{bottom:466.693500px;}
.y257{bottom:467.596500px;}
.y259{bottom:468.954000px;}
.y17{bottom:470.622000px;}
.y148{bottom:471.510000px;}
.y206{bottom:475.938000px;}
.y2b1{bottom:478.801500px;}
.y3f{bottom:479.107500px;}
.y8c{bottom:480.121500px;}
.y17d{bottom:481.359000px;}
.y28b{bottom:482.380500px;}
.y107{bottom:482.836500px;}
.y229{bottom:483.283500px;}
.y258{bottom:485.392500px;}
.yd2{bottom:485.803500px;}
.y16{bottom:488.509500px;}
.y2cc{bottom:488.754000px;}
.y147{bottom:490.339500px;}
.y205{bottom:494.767500px;}
.y300{bottom:496.062000px;}
.y2b0{bottom:497.631000px;}
.y17c{bottom:498.268500px;}
.y3e{bottom:498.564000px;}
.y8b{bottom:498.951000px;}
.y28a{bottom:501.210000px;}
.y106{bottom:501.666000px;}
.y228{bottom:502.113000px;}
.yd1{bottom:505.063500px;}
.y2cb{bottom:506.328000px;}
.y15{bottom:506.397000px;}
.y256{bottom:509.034000px;}
.y146{bottom:509.169000px;}
.y1b2{bottom:510.474000px;}
.y2ff{bottom:513.321000px;}
.y204{bottom:513.597000px;}
.y17b{bottom:515.179500px;}
.y2af{bottom:516.460500px;}
.y8a{bottom:517.780500px;}
.y3d{bottom:518.020500px;}
.y105{bottom:520.495500px;}
.y227{bottom:520.942500px;}
.y2ca{bottom:523.902000px;}
.y14{bottom:524.286000px;}
.yd0{bottom:524.323500px;}
.y254{bottom:525.016500px;}
.y255{bottom:525.472500px;}
.y145{bottom:527.998500px;}
.y1b1{bottom:529.554000px;}
.y2fe{bottom:530.581500px;}
.y203{bottom:532.426500px;}
.y289{bottom:534.385500px;}
.y2ae{bottom:535.290000px;}
.y89{bottom:536.610000px;}
.y3c{bottom:537.478500px;}
.y17a{bottom:539.292000px;}
.y104{bottom:539.323500px;}
.y226{bottom:539.772000px;}
.y2c9{bottom:541.476000px;}
.ycf{bottom:543.583500px;}
.y144{bottom:546.828000px;}
.y2fd{bottom:547.842000px;}
.y288{bottom:548.581500px;}
.y1b0{bottom:548.814000px;}
.y202{bottom:551.256000px;}
.y2ad{bottom:554.118000px;}
.y88{bottom:555.439500px;}
.y3b{bottom:556.935000px;}
.y102{bottom:558.153000px;}
.y225{bottom:558.601500px;}
.y13{bottom:560.106000px;}
.yce{bottom:562.843500px;}
.y103{bottom:563.578500px;}
.y2fc{bottom:565.102500px;}
.y253{bottom:565.551000px;}
.y143{bottom:565.657500px;}
.y1af{bottom:568.074000px;}
.y287{bottom:569.983500px;}
.y179{bottom:571.845000px;}
.y2ac{bottom:572.947500px;}
.y87{bottom:574.269000px;}
.y3a{bottom:576.391500px;}
.y101{bottom:576.982500px;}
.y224{bottom:577.431000px;}
.y12{bottom:577.993500px;}
.y285{bottom:579.796500px;}
.y251{bottom:580.612500px;}
.ycd{bottom:581.923500px;}
.y252{bottom:581.989500px;}
.y2fb{bottom:582.363000px;}
.y142{bottom:584.487000px;}
.y286{bottom:589.141500px;}
.y178{bottom:591.078000px;}
.y2ab{bottom:591.777000px;}
.y86{bottom:593.098500px;}
.yff{bottom:595.812000px;}
.y39{bottom:595.849500px;}
.y11{bottom:595.882500px;}
.y223{bottom:596.260500px;}
.y201{bottom:596.718000px;}
.y2fa{bottom:599.623500px;}
.ycc{bottom:601.183500px;}
.y100{bottom:601.237500px;}
.y141{bottom:607.800000px;}
.y283{bottom:608.299500px;}
.y177{bottom:610.309500px;}
.y2aa{bottom:610.606500px;}
.y85{bottom:611.928000px;}
.y222{bottom:612.360000px;}
.y200{bottom:613.156500px;}
.y10{bottom:613.770000px;}
.y282{bottom:614.277000px;}
.yfe{bottom:614.641500px;}
.y221{bottom:615.090000px;}
.y38{bottom:615.306000px;}
.y2f9{bottom:616.884000px;}
.y284{bottom:620.254500px;}
.ycb{bottom:620.443500px;}
.y250{bottom:622.068000px;}
.y1ae{bottom:622.824000px;}
.y2a9{bottom:629.436000px;}
.y176{bottom:629.542500px;}
.y1ff{bottom:629.595000px;}
.y27e{bottom:630.577500px;}
.y84{bottom:630.757500px;}
.yf{bottom:631.657500px;}
.yb9{bottom:632.127000px;}
.y1ad{bottom:632.364000px;}
.yfd{bottom:633.471000px;}
.y220{bottom:633.919500px;}
.y2f8{bottom:634.144500px;}
.y37{bottom:634.764000px;}
.y24d{bottom:637.677000px;}
.y24f{bottom:638.506500px;}
.y280{bottom:639.411000px;}
.yca{bottom:639.703500px;}
.y27f{bottom:645.390000px;}
.y1fe{bottom:646.033500px;}
.y2a8{bottom:648.265500px;}
.ye{bottom:649.546500px;}
.y83{bottom:649.587000px;}
.y140{bottom:650.629500px;}
.yb8{bottom:650.956500px;}
.y281{bottom:651.367500px;}
.y2f7{bottom:651.403500px;}
.yfc{bottom:652.300500px;}
.y21f{bottom:652.749000px;}
.y35{bottom:654.220500px;}
.y24e{bottom:654.945000px;}
.yc9{bottom:658.963500px;}
.y36{bottom:659.103000px;}
.y1fd{bottom:662.472000px;}
.y175{bottom:666.646500px;}
.y2a7{bottom:667.095000px;}
.yd{bottom:667.434000px;}
.y82{bottom:668.416500px;}
.y2f6{bottom:668.664000px;}
.y13f{bottom:669.036000px;}
.y13c{bottom:669.348000px;}
.yb7{bottom:669.786000px;}
.y27c{bottom:670.524000px;}
.yfb{bottom:671.130000px;}
.y21e{bottom:671.578500px;}
.y34{bottom:673.677000px;}
.y27b{bottom:676.501500px;}
.yc8{bottom:678.043500px;}
.y24c{bottom:678.586500px;}
.y27d{bottom:682.479000px;}
.yc{bottom:685.321500px;}
.y13e{bottom:685.474500px;}
.y174{bottom:685.476000px;}
.y13a{bottom:685.786500px;}
.y2a6{bottom:685.924500px;}
.y1fc{bottom:686.112000px;}
.y81{bottom:687.246000px;}
.yfa{bottom:689.959500px;}
.y21d{bottom:690.408000px;}
.y278{bottom:692.902500px;}
.yb6{bottom:693.097500px;}
.y33{bottom:693.135000px;}
.y24a{bottom:693.648000px;}
.y24b{bottom:695.025000px;}
.yc7{bottom:697.303500px;}
.y1fb{bottom:697.873500px;}
.y27a{bottom:701.637000px;}
.y13d{bottom:701.913000px;}
.y13b{bottom:702.225000px;}
.y2f5{bottom:703.185000px;}
.y173{bottom:704.305500px;}
.y2a4{bottom:704.754000px;}
.y19e{bottom:706.059000px;}
.y80{bottom:706.075500px;}
.y279{bottom:707.614500px;}
.y9{bottom:707.692555px;}
.yf8{bottom:708.789000px;}
.y21c{bottom:709.237500px;}
.y2a5{bottom:710.179500px;}
.y32{bottom:712.591500px;}
.yb5{bottom:713.272500px;}
.yf9{bottom:714.214500px;}
.yc6{bottom:716.608500px;}
.y2f4{bottom:720.445500px;}
.y172{bottom:723.135000px;}
.y2a3{bottom:723.583500px;}
.y19d{bottom:724.888500px;}
.y7f{bottom:724.905000px;}
.y32b{bottom:724.929000px;}
.y137{bottom:726.178500px;}
.yf7{bottom:727.618500px;}
.y21b{bottom:728.067000px;}
.y31{bottom:732.048000px;}
.y276{bottom:732.750000px;}
.y139{bottom:734.710500px;}
.y249{bottom:735.103500px;}
.yc5{bottom:735.868500px;}
.y2f3{bottom:737.706000px;}
.y275{bottom:738.727500px;}
.y1fa{bottom:741.372000px;}
.y171{bottom:741.964500px;}
.y32a{bottom:742.189500px;}
.y2a2{bottom:742.413000px;}
.y136{bottom:742.617000px;}
.y133{bottom:742.929000px;}
.y7e{bottom:743.734500px;}
.y277{bottom:744.705000px;}
.yf6{bottom:746.448000px;}
.yb4{bottom:746.896500px;}
.y246{bottom:750.712500px;}
.y132{bottom:751.149000px;}
.y30{bottom:751.506000px;}
.y248{bottom:751.542000px;}
.y2f2{bottom:754.966500px;}
.yc4{bottom:755.128500px;}
.y135{bottom:759.055500px;}
.y329{bottom:759.450000px;}
.y1f9{bottom:760.605000px;}
.y2a1{bottom:761.242500px;}
.y19c{bottom:762.547500px;}
.y7d{bottom:762.564000px;}
.y273{bottom:763.863000px;}
.yf5{bottom:765.277500px;}
.yb3{bottom:765.726000px;}
.y138{bottom:767.586000px;}
.y247{bottom:767.980500px;}
.y272{bottom:769.840500px;}
.y2f{bottom:770.962500px;}
.y2f1{bottom:772.227000px;}
.yc3{bottom:774.208500px;}
.y134{bottom:775.494000px;}
.y274{bottom:775.818000px;}
.y328{bottom:776.709000px;}
.y1f8{bottom:779.838000px;}
.y29f{bottom:780.072000px;}
.y7c{bottom:781.393500px;}
.yf4{bottom:784.107000px;}
.yb2{bottom:784.555500px;}
.y2a0{bottom:785.496000px;}
.y2f0{bottom:789.487500px;}
.y19b{bottom:789.531000px;}
.y245{bottom:791.620500px;}
.yc2{bottom:793.468500px;}
.y327{bottom:793.969500px;}
.y271{bottom:794.974500px;}
.y170{bottom:798.901500px;}
.y12c{bottom:799.759500px;}
.yf3{bottom:802.936500px;}
.yb1{bottom:803.385000px;}
.y242{bottom:805.950000px;}
.y2ef{bottom:806.746500px;}
.y130{bottom:807.666000px;}
.y127{bottom:807.978000px;}
.y244{bottom:808.059000px;}
.y2c8{bottom:808.360500px;}
.y2e{bottom:809.548500px;}
.y326{bottom:811.230000px;}
.yc1{bottom:812.728500px;}
.y7b{bottom:814.959000px;}
.y12b{bottom:816.196500px;}
.y16f{bottom:817.731000px;}
.y1f7{bottom:818.499000px;}
.yf2{bottom:821.766000px;}
.yb0{bottom:822.214500px;}
.y270{bottom:823.456500px;}
.y2ee{bottom:824.007000px;}
.y12f{bottom:824.104500px;}
.y126{bottom:824.416500px;}
.y243{bottom:824.497500px;}
.y2d{bottom:825.688500px;}
.y325{bottom:828.490500px;}
.yc0{bottom:831.988500px;}
.y131{bottom:832.164000px;}
.y12a{bottom:832.635000px;}
.y7a{bottom:834.192000px;}
.y16e{bottom:836.560500px;}
.y1f6{bottom:837.730500px;}
.y26f{bottom:839.748000px;}
.y12e{bottom:840.543000px;}
.yf1{bottom:840.595500px;}
.y125{bottom:840.855000px;}
.yaf{bottom:841.044000px;}
.y2ed{bottom:841.267500px;}
.y26e{bottom:842.689500px;}
.y324{bottom:845.751000px;}
.y2c{bottom:846.166500px;}
.y241{bottom:848.139000px;}
.y129{bottom:849.073500px;}
.ybf{bottom:851.248500px;}
.y16d{bottom:855.390000px;}
.y51{bottom:856.621500px;}
.y19a{bottom:856.695000px;}
.y12d{bottom:856.981500px;}
.y124{bottom:857.293500px;}
.y2b{bottom:857.967000px;}
.y11e{bottom:858.052500px;}
.y2ec{bottom:858.528000px;}
.yf0{bottom:859.425000px;}
.yae{bottom:859.873500px;}
.y1ac{bottom:860.160000px;}
.y26d{bottom:861.922500px;}
.y323{bottom:863.011500px;}
.y199{bottom:864.849000px;}
.y128{bottom:865.512000px;}
.ybe{bottom:870.328500px;}
.y16c{bottom:874.219500px;}
.y11d{bottom:874.491000px;}
.y2eb{bottom:875.788500px;}
.yef{bottom:878.254500px;}
.y2a{bottom:878.446500px;}
.yad{bottom:878.703000px;}
.y240{bottom:879.757500px;}
.y322{bottom:880.272000px;}
.y2c7{bottom:882.738000px;}
.y123{bottom:889.153500px;}
.ybd{bottom:889.588500px;}
.y29{bottom:890.245500px;}
.y16a{bottom:893.049000px;}
.y121{bottom:896.901000px;}
.yee{bottom:897.084000px;}
.yac{bottom:897.532500px;}
.y16b{bottom:898.473000px;}
.y23f{bottom:898.990500px;}
.y122{bottom:905.592000px;}
.y28{bottom:906.385500px;}
.ybc{bottom:908.848500px;}
.y2ea{bottom:910.309500px;}
.y169{bottom:911.878500px;}
.y11f{bottom:913.338000px;}
.y320{bottom:914.791500px;}
.y321{bottom:914.793000px;}
.yed{bottom:915.913500px;}
.yab{bottom:916.362000px;}
.y120{bottom:918.220500px;}
.y27{bottom:926.865000px;}
.y2e9{bottom:927.570000px;}
.y168{bottom:930.708000px;}
.y31f{bottom:932.052000px;}
.y198{bottom:934.743000px;}
.yaa{bottom:935.191500px;}
.yec{bottom:939.226500px;}
.y2e8{bottom:944.829000px;}
.y11b{bottom:945.670500px;}
.y31e{bottom:949.312500px;}
.y167{bottom:949.537500px;}
.y11a{bottom:953.889000px;}
.ya9{bottom:954.021000px;}
.y197{bottom:958.054500px;}
.y2e7{bottom:962.089500px;}
.y11c{bottom:962.109000px;}
.y31d{bottom:966.573000px;}
.y8{bottom:967.057500px;}
.y166{bottom:968.367000px;}
.ya8{bottom:972.849000px;}
.ybb{bottom:973.138500px;}
.y2e6{bottom:979.350000px;}
.y31c{bottom:983.833500px;}
.y164{bottom:987.196500px;}
.ya7{bottom:991.678500px;}
.y165{bottom:992.620500px;}
.y119{bottom:993.727500px;}
.y2e5{bottom:996.610500px;}
.y31b{bottom:1001.094000px;}
.y163{bottom:1006.026000px;}
.ya6{bottom:1010.508000px;}
.y7{bottom:1012.954500px;}
.y2e4{bottom:1013.871000px;}
.y31a{bottom:1018.354500px;}
.y162{bottom:1024.855500px;}
.ya5{bottom:1029.337500px;}
.y2e3{bottom:1031.131500px;}
.y319{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.y160{bottom:1043.685000px;}
.ya4{bottom:1048.167000px;}
.y2e2{bottom:1048.392000px;}
.y161{bottom:1049.109000px;}
.y318{bottom:1052.875500px;}
.y196{bottom:1053.592500px;}
.y15f{bottom:1062.513000px;}
.y2e1{bottom:1065.652500px;}
.ya3{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y317{bottom:1070.134500px;}
.y15e{bottom:1081.342500px;}
.y2e0{bottom:1082.913000px;}
.ya2{bottom:1085.826000px;}
.y316{bottom:1087.395000px;}
.y4{bottom:1097.688000px;}
.ya1{bottom:1104.655500px;}
.y1{bottom:1141.174500px;}
.y50{bottom:1173.397500px;}
.y1b3{bottom:1323.834000px;}
.h37{height:-231.786000px;}
.h36{height:-211.410000px;}
.h30{height:-204.234000px;}
.h35{height:-191.241000px;}
.h34{height:-171.081000px;}
.h33{height:-150.741000px;}
.h32{height:-129.861000px;}
.h31{height:-108.801000px;}
.h7{height:25.508090px;}
.h49{height:30.252344px;}
.h46{height:30.377873px;}
.h1b{height:31.526842px;}
.h48{height:31.784546px;}
.h9{height:33.112997px;}
.h27{height:33.186380px;}
.hb{height:33.821261px;}
.h8{height:34.199443px;}
.h40{height:34.574294px;}
.h41{height:37.334628px;}
.h45{height:37.658880px;}
.h39{height:38.352304px;}
.hd{height:38.896243px;}
.h42{height:39.057638px;}
.ha{height:39.457760px;}
.h23{height:41.482876px;}
.h1a{height:41.723369px;}
.h2d{height:41.842920px;}
.h24{height:42.840113px;}
.hf{height:43.217759px;}
.h17{height:43.798711px;}
.h4{height:43.815515px;}
.h16{height:44.002969px;}
.h12{height:45.060117px;}
.hc{height:45.094826px;}
.h3a{height:46.266100px;}
.h3c{height:48.774704px;}
.h25{height:49.782344px;}
.h14{height:50.440430px;}
.he{height:50.731891px;}
.h2{height:50.931027px;}
.h19{height:51.946198px;}
.h3b{height:53.132872px;}
.h6{height:54.547601px;}
.h4b{height:55.694546px;}
.h13{height:55.820742px;}
.h10{height:56.368391px;}
.h26{height:57.097760px;}
.h1f{height:58.981760px;}
.h20{height:58.987760px;}
.h18{height:60.595602px;}
.h47{height:63.367760px;}
.h29{height:64.142842px;}
.h2c{height:64.148842px;}
.h28{height:64.536113px;}
.h2e{height:67.530113px;}
.h1c{height:71.776243px;}
.h3f{height:73.304294px;}
.h2a{height:75.456113px;}
.h2b{height:75.462113px;}
.h38{height:76.706311px;}
.h3{height:77.379634px;}
.h5{height:77.792486px;}
.h4a{height:79.604546px;}
.h4d{height:79.610546px;}
.h21{height:83.605891px;}
.h3d{height:86.416243px;}
.h4c{height:87.277760px;}
.h4e{height:87.283760px;}
.h3e{height:89.026829px;}
.h1e{height:116.485891px;}
.h44{height:118.309891px;}
.h43{height:121.993891px;}
.h22{height:124.105760px;}
.h1d{height:151.243891px;}
.h2f{height:259.440000px;}
.h11{height:265.651500px;}
.h15{height:320.058000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:24.924000px;}
.w3{width:75.364879px;}
.wc{width:140.124000px;}
.w9{width:147.276000px;}
.wb{width:147.456000px;}
.w2{width:207.609956px;}
.wa{width:434.859000px;}
.w7{width:557.205000px;}
.w5{width:613.837800px;}
.w4{width:677.984400px;}
.w6{width:770.199000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x43{left:-94.438200px;}
.x46{left:-62.578200px;}
.x15{left:-50.636100px;}
.x18{left:-18.776100px;}
.xb2{left:-7.635000px;}
.x0{left:0.000000px;}
.xc2{left:9.360000px;}
.xd2{left:13.101051px;}
.xb6{left:14.940000px;}
.xb9{left:24.225000px;}
.x3{left:29.274117px;}
.xd0{left:35.377505px;}
.xc1{left:39.105000px;}
.xbd{left:40.680000px;}
.xbf{left:43.560000px;}
.xba{left:46.125000px;}
.xc3{left:47.340000px;}
.xbe{left:50.580000px;}
.xc0{left:52.245000px;}
.x1{left:54.000000px;}
.x2{left:58.054042px;}
.xb1{left:61.357500px;}
.xec{left:63.397500px;}
.xe1{left:66.012000px;}
.x64{left:68.155500px;}
.xea{left:69.985500px;}
.xe9{left:71.074500px;}
.xeb{left:72.753000px;}
.xe8{left:78.213000px;}
.x65{left:81.901500px;}
.x1a{left:85.890000px;}
.xe4{left:88.242000px;}
.xf6{left:90.183000px;}
.x61{left:91.249500px;}
.xf7{left:99.442500px;}
.x44{left:101.251800px;}
.x14{left:107.465100px;}
.xff{left:112.722000px;}
.xbc{left:113.970000px;}
.xf9{left:115.077000px;}
.xe5{left:116.928000px;}
.xca{left:118.804199px;}
.xc4{left:131.382811px;}
.x45{left:133.156800px;}
.xf4{left:136.671000px;}
.xe6{left:138.429000px;}
.x42{left:139.538700px;}
.x1b{left:143.121000px;}
.x16{left:145.053900px;}
.x4a{left:147.511500px;}
.x4b{left:154.236000px;}
.xc9{left:157.252584px;}
.xc6{left:166.225913px;}
.x60{left:174.778500px;}
.x19{left:176.913900px;}
.xfa{left:180.037500px;}
.xf8{left:184.833000px;}
.xb3{left:188.055000px;}
.x66{left:198.349500px;}
.x7a{left:202.113000px;}
.x68{left:204.268500px;}
.x7b{left:206.410500px;}
.xb4{left:208.845000px;}
.x79{left:210.694500px;}
.x6e{left:216.208500px;}
.xcf{left:217.407118px;}
.xb7{left:219.915000px;}
.x6b{left:223.176000px;}
.x6c{left:226.060500px;}
.x6d{left:230.970000px;}
.xe7{left:240.573000px;}
.xfb{left:242.905500px;}
.x101{left:244.182000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xfc{left:254.092500px;}
.xa8{left:255.666000px;}
.x88{left:265.299000px;}
.xc5{left:267.139297px;}
.x5{left:271.221000px;}
.x8a{left:273.193500px;}
.x8c{left:274.945500px;}
.x7c{left:276.001500px;}
.x5c{left:277.419000px;}
.x8b{left:279.579000px;}
.x89{left:281.263500px;}
.xb{left:282.786000px;}
.x5d{left:284.226000px;}
.x8d{left:285.751500px;}
.x8e{left:286.788000px;}
.x81{left:291.256500px;}
.xd9{left:293.304000px;}
.xd7{left:299.746500px;}
.x38{left:301.530000px;}
.x82{left:302.572500px;}
.xd8{left:305.098500px;}
.x47{left:306.868500px;}
.x39{left:309.001500px;}
.x7{left:311.896500px;}
.x22{left:312.927000px;}
.xf5{left:316.758000px;}
.xd5{left:318.369000px;}
.x100{left:319.660500px;}
.xa{left:321.060000px;}
.x67{left:325.501500px;}
.x23{left:327.870000px;}
.x9e{left:331.438500px;}
.x104{left:333.730500px;}
.x96{left:335.791500px;}
.xa9{left:336.988500px;}
.x28{left:339.790500px;}
.xaa{left:347.278500px;}
.x29{left:354.733500px;}
.x1c{left:356.766000px;}
.x6f{left:358.732500px;}
.x10b{left:360.694500px;}
.x2a{left:362.355000px;}
.x1d{left:363.490500px;}
.x74{left:366.271500px;}
.x97{left:368.659500px;}
.x36{left:371.163000px;}
.x4e{left:373.392000px;}
.x10d{left:375.169500px;}
.x2b{left:377.299500px;}
.x4f{left:380.865000px;}
.x48{left:382.872686px;}
.x37{left:386.107500px;}
.x24{left:388.884000px;}
.x34{left:391.585500px;}
.xbb{left:396.697500px;}
.x102{left:401.460000px;}
.x25{left:403.828500px;}
.x35{left:406.530000px;}
.xfd{left:407.605500px;}
.xd4{left:408.652007px;}
.x105{left:411.226500px;}
.x98{left:413.518500px;}
.xd6{left:416.758500px;}
.xa2{left:418.408500px;}
.x106{left:420.457500px;}
.xa0{left:427.473000px;}
.xa6{left:429.267000px;}
.x95{left:433.104000px;}
.xc{left:435.451500px;}
.xb0{left:438.394500px;}
.x90{left:440.250000px;}
.xd{left:442.924500px;}
.xa7{left:444.211500px;}
.xe{left:446.629500px;}
.x7f{left:449.601000px;}
.x103{left:451.720500px;}
.xf{left:454.102500px;}
.xdc{left:457.182000px;}
.x80{left:460.501500px;}
.x8{left:464.520000px;}
.x54{left:467.512500px;}
.xa3{left:469.990500px;}
.xcd{left:471.358955px;}
.xdd{left:473.092500px;}
.x9{left:476.430000px;}
.x99{left:479.542500px;}
.xc7{left:484.626186px;}
.x86{left:487.944000px;}
.x50{left:497.446500px;}
.x87{left:498.781500px;}
.x9a{left:500.473500px;}
.x51{left:504.918000px;}
.xab{left:508.353000px;}
.x2c{left:516.709500px;}
.xac{left:518.641500px;}
.x2d{left:531.654000px;}
.x6a{left:534.612000px;}
.x75{left:538.441500px;}
.x69{left:542.386500px;}
.x76{left:544.080000px;}
.xde{left:550.314000px;}
.x70{left:552.262500px;}
.x55{left:553.840500px;}
.x71{left:561.051000px;}
.x72{left:563.068500px;}
.x3c{left:564.303000px;}
.x56{left:566.662500px;}
.x49{left:572.339301px;}
.x9b{left:574.075500px;}
.x3a{left:575.848500px;}
.xce{left:576.858707px;}
.x3d{left:579.246000px;}
.x3e{left:586.815000px;}
.xcc{left:588.942789px;}
.x3b{left:590.791500px;}
.xdf{left:593.964000px;}
.x57{left:595.107000px;}
.xe0{left:600.390000px;}
.x3f{left:601.759500px;}
.xa5{left:605.680500px;}
.x58{left:607.216500px;}
.xad{left:612.831000px;}
.xa1{left:623.697000px;}
.xd1{left:625.367855px;}
.xae{left:627.580500px;}
.xd3{left:630.951259px;}
.x40{left:638.850000px;}
.xaf{left:640.287000px;}
.x5e{left:643.528500px;}
.x41{left:646.321500px;}
.xed{left:647.767500px;}
.x85{left:651.294000px;}
.xc8{left:656.595037px;}
.x5f{left:658.471500px;}
.x10{left:659.577000px;}
.x109{left:661.153500px;}
.x11{left:667.048500px;}
.xef{left:668.631000px;}
.xcb{left:671.284708px;}
.xf0{left:675.057000px;}
.x10a{left:676.096500px;}
.x52{left:677.853000px;}
.x17{left:681.753900px;}
.x4c{left:682.945500px;}
.xe2{left:685.131000px;}
.x53{left:687.082500px;}
.x4d{left:691.162500px;}
.x77{left:694.200000px;}
.x5b{left:697.936500px;}
.x78{left:699.375000px;}
.x62{left:704.398500px;}
.x73{left:708.967500px;}
.x12{left:710.182500px;}
.xfe{left:714.628500px;}
.x13{left:717.655500px;}
.xf2{left:719.764500px;}
.x63{left:726.792000px;}
.xa4{left:728.599500px;}
.xf3{left:730.053000px;}
.x2e{left:735.747000px;}
.x9f{left:737.641500px;}
.x8f{left:739.410000px;}
.xdb{left:742.071000px;}
.x9c{left:743.538000px;}
.x1e{left:745.546500px;}
.xda{left:748.093500px;}
.x2f{left:750.690000px;}
.x26{left:752.005500px;}
.x1f{left:753.765000px;}
.x93{left:755.533500px;}
.x9d{left:757.593000px;}
.xe3{left:759.565500px;}
.x7d{left:765.769500px;}
.x27{left:766.950000px;}
.x10c{left:768.757500px;}
.x94{left:772.276500px;}
.xb8{left:775.335000px;}
.x30{left:777.718500px;}
.x110{left:779.886000px;}
.x7e{left:781.795500px;}
.x111{left:783.079500px;}
.x91{left:784.216500px;}
.xee{left:786.406500px;}
.x112{left:788.919000px;}
.x59{left:791.025000px;}
.x31{left:792.663000px;}
.x107{left:795.015000px;}
.x32{left:796.465500px;}
.x92{left:798.400500px;}
.x5a{left:801.658500px;}
.x108{left:804.246000px;}
.xb5{left:806.632500px;}
.x10e{left:810.352500px;}
.x33{left:811.410000px;}
.x10f{left:813.996000px;}
.x113{left:815.818500px;}
.x20{left:824.431500px;}
.x83{left:829.000500px;}
.x21{left:831.903000px;}
.x84{left:835.426500px;}
.xf1{left:837.799500px;}
@media print{
.vf{vertical-align:-23.338049pt;}
.v2{vertical-align:-15.429333pt;}
.vb{vertical-align:-10.938667pt;}
.v17{vertical-align:-9.328000pt;}
.v1b{vertical-align:-6.426667pt;}
.v12{vertical-align:-5.194667pt;}
.v9{vertical-align:-1.680000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.658667pt;}
.ve{vertical-align:7.034485pt;}
.v10{vertical-align:9.264355pt;}
.v13{vertical-align:10.234667pt;}
.vd{vertical-align:13.440000pt;}
.va{vertical-align:15.680000pt;}
.v4{vertical-align:17.354667pt;}
.v1{vertical-align:19.290667pt;}
.vc{vertical-align:21.946667pt;}
.v19{vertical-align:26.688000pt;}
.v3{vertical-align:29.226667pt;}
.v5{vertical-align:30.901333pt;}
.v16{vertical-align:34.426667pt;}
.v14{vertical-align:40.650667pt;}
.v11{vertical-align:42.240000pt;}
.v15{vertical-align:56.085333pt;}
.v6{vertical-align:58.442667pt;}
.v1a{vertical-align:60.069333pt;}
.v18{vertical-align:63.344000pt;}
.v7{vertical-align:75.242667pt;}
.ls19{letter-spacing:-78.026435pt;}
.ls1a{letter-spacing:-15.844053pt;}
.ls38{letter-spacing:-1.594667pt;}
.ls18{letter-spacing:-0.684590pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls3a{letter-spacing:-0.410542pt;}
.ls11{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.203733pt;}
.ls39{letter-spacing:-0.185067pt;}
.lsd{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.000536pt;}
.ls5a{letter-spacing:0.000600pt;}
.ls55{letter-spacing:0.000921pt;}
.ls68{letter-spacing:0.001026pt;}
.ls57{letter-spacing:0.001173pt;}
.ls7{letter-spacing:0.001628pt;}
.lsa{letter-spacing:0.001718pt;}
.ls62{letter-spacing:0.001843pt;}
.ls63{letter-spacing:0.001858pt;}
.ls61{letter-spacing:0.002153pt;}
.ls54{letter-spacing:0.002187pt;}
.ls56{letter-spacing:0.002262pt;}
.ls1{letter-spacing:0.002422pt;}
.ls53{letter-spacing:0.002538pt;}
.ls9{letter-spacing:0.003100pt;}
.ls5c{letter-spacing:0.003335pt;}
.ls64{letter-spacing:0.003367pt;}
.ls22{letter-spacing:0.003430pt;}
.ls66{letter-spacing:0.004029pt;}
.ls69{letter-spacing:0.004267pt;}
.ls15{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.112000pt;}
.ls2b{letter-spacing:0.160000pt;}
.ls36{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.230933pt;}
.ls2c{letter-spacing:0.231040pt;}
.ls37{letter-spacing:0.308267pt;}
.lsf{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.426667pt;}
.ls43{letter-spacing:0.442457pt;}
.ls40{letter-spacing:0.447791pt;}
.ls51{letter-spacing:0.462460pt;}
.ls4c{letter-spacing:0.467539pt;}
.ls4b{letter-spacing:0.467793pt;}
.ls27{letter-spacing:0.482502pt;}
.ls25{letter-spacing:0.487835pt;}
.ls34{letter-spacing:0.576078pt;}
.ls28{letter-spacing:0.662839pt;}
.lse{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls45{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.657067pt;}
.ls4{letter-spacing:2.665203pt;}
.ls3e{letter-spacing:3.120533pt;}
.ls42{letter-spacing:3.125867pt;}
.ls24{letter-spacing:3.158400pt;}
.ls26{letter-spacing:3.163733pt;}
.ls6{letter-spacing:9.298933pt;}
.ls4d{letter-spacing:9.743791pt;}
.ls4e{letter-spacing:9.749124pt;}
.ls4f{letter-spacing:9.763539pt;}
.ls50{letter-spacing:9.768872pt;}
.lsc{letter-spacing:10.626533pt;}
.ls3b{letter-spacing:10.628800pt;}
.ls60{letter-spacing:11.821042pt;}
.ls16{letter-spacing:11.950933pt;}
.ls59{letter-spacing:11.954133pt;}
.ls5b{letter-spacing:11.959467pt;}
.ls32{letter-spacing:12.528078pt;}
.ls33{letter-spacing:12.533411pt;}
.ls52{letter-spacing:13.143867pt;}
.ls4a{letter-spacing:13.181200pt;}
.ls1b{letter-spacing:13.194971pt;}
.ls1f{letter-spacing:13.281867pt;}
.ls2{letter-spacing:13.284541pt;}
.ls1e{letter-spacing:13.287200pt;}
.ls48{letter-spacing:13.405853pt;}
.ls49{letter-spacing:13.411295pt;}
.ls67{letter-spacing:13.608199pt;}
.ls35{letter-spacing:13.923096pt;}
.ls2a{letter-spacing:13.950210pt;}
.ls21{letter-spacing:14.608533pt;}
.ls20{letter-spacing:14.613867pt;}
.ls65{letter-spacing:14.633035pt;}
.ls29{letter-spacing:15.937067pt;}
.ls23{letter-spacing:15.958400pt;}
.ls1c{letter-spacing:16.651174pt;}
.ls1d{letter-spacing:16.656403pt;}
.ls5d{letter-spacing:20.985976pt;}
.ls5e{letter-spacing:22.214735pt;}
.ls5f{letter-spacing:22.366369pt;}
.ls2f{letter-spacing:39.365786pt;}
.ls0{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lsb{letter-spacing:57.174803pt;}
.ls31{letter-spacing:61.178767pt;}
.ls30{letter-spacing:113.825500pt;}
.ls2e{letter-spacing:122.437341pt;}
.ls44{letter-spacing:124.379200pt;}
.ls41{letter-spacing:126.267200pt;}
.ls46{letter-spacing:128.596678pt;}
.ls3c{letter-spacing:214.963744pt;}
.ls3f{letter-spacing:219.847262pt;}
.ls3d{letter-spacing:219.852595pt;}
.ls47{letter-spacing:226.379674pt;}
.ls2d{letter-spacing:1368.975120pt;}
.ws110{word-spacing:-215.013573pt;}
.ws115{word-spacing:-203.643238pt;}
.wsdf{word-spacing:-42.572097pt;}
.ws0{word-spacing:-25.362056pt;}
.ws3a{word-spacing:-13.600000pt;}
.wsdd{word-spacing:-13.588267pt;}
.ws3b{word-spacing:-13.510933pt;}
.wsdc{word-spacing:-13.463467pt;}
.wsd8{word-spacing:-13.283467pt;}
.ws5d{word-spacing:-13.280000pt;}
.wsde{word-spacing:-13.094933pt;}
.ws5e{word-spacing:-13.076267pt;}
.ws5f{word-spacing:-12.960000pt;}
.ws60{word-spacing:-12.048000pt;}
.ws39{word-spacing:-12.000000pt;}
.wse3{word-spacing:-11.955200pt;}
.ws37{word-spacing:-10.626800pt;}
.ws38{word-spacing:-10.400000pt;}
.ws2{word-spacing:-10.095467pt;}
.wsb{word-spacing:-9.298400pt;}
.wsdb{word-spacing:-8.000000pt;}
.ws69{word-spacing:-5.844236pt;}
.ws68{word-spacing:-5.505544pt;}
.ws10a{word-spacing:-2.975497pt;}
.ws10b{word-spacing:-2.816095pt;}
.ws7b{word-spacing:-2.762961pt;}
.ws155{word-spacing:-2.709827pt;}
.ws154{word-spacing:-2.656693pt;}
.ws42{word-spacing:-2.603559pt;}
.ws41{word-spacing:-2.550426pt;}
.ws156{word-spacing:-2.444158pt;}
.ws77{word-spacing:-2.125355pt;}
.ws43{word-spacing:-1.753418pt;}
.ws8{word-spacing:-1.696326pt;}
.ws47{word-spacing:-1.647150pt;}
.wsd2{word-spacing:-1.594016pt;}
.wsd3{word-spacing:-1.540882pt;}
.ws15e{word-spacing:-1.487748pt;}
.ws165{word-spacing:-1.381481pt;}
.ws159{word-spacing:-1.328347pt;}
.ws153{word-spacing:-1.275213pt;}
.ws9a{word-spacing:-1.222079pt;}
.ws7{word-spacing:-1.175671pt;}
.wscd{word-spacing:-1.172049pt;}
.wsca{word-spacing:-1.168945pt;}
.ws7c{word-spacing:-1.115811pt;}
.ws188{word-spacing:-0.956416pt;}
.wsfd{word-spacing:-0.956410pt;}
.ws1e{word-spacing:-0.908595pt;}
.wscc{word-spacing:-0.864852pt;}
.ws5c{word-spacing:-0.850142pt;}
.wsd4{word-spacing:-0.797008pt;}
.ws7e{word-spacing:-0.743874pt;}
.ws186{word-spacing:-0.669491pt;}
.wsf0{word-spacing:-0.637606pt;}
.ws64{word-spacing:-0.621670pt;}
.wsf6{word-spacing:-0.584473pt;}
.ws48{word-spacing:-0.531339pt;}
.ws2d{word-spacing:-0.430387pt;}
.ws40{word-spacing:-0.425071pt;}
.ws15a{word-spacing:-0.371937pt;}
.ws79{word-spacing:-0.318803pt;}
.ws1d{word-spacing:-0.286925pt;}
.ws54{word-spacing:-0.271615pt;}
.ws3e{word-spacing:-0.265669pt;}
.ws16a{word-spacing:-0.239104pt;}
.ws3f{word-spacing:-0.212535pt;}
.wsa7{word-spacing:-0.191283pt;}
.ws6e{word-spacing:-0.190534pt;}
.ws190{word-spacing:-0.159676pt;}
.ws34{word-spacing:-0.159402pt;}
.ws17f{word-spacing:-0.143462pt;}
.wsc5{word-spacing:-0.127522pt;}
.ws51{word-spacing:-0.106268pt;}
.ws29{word-spacing:-0.095642pt;}
.wsc6{word-spacing:-0.085014pt;}
.ws152{word-spacing:-0.054938pt;}
.wsa2{word-spacing:-0.054381pt;}
.ws3{word-spacing:-0.053134pt;}
.ws151{word-spacing:-0.049633pt;}
.ws85{word-spacing:-0.047821pt;}
.ws17{word-spacing:-0.042507pt;}
.wsc{word-spacing:-0.037194pt;}
.ws193{word-spacing:-0.024457pt;}
.ws192{word-spacing:-0.024414pt;}
.ws18d{word-spacing:-0.022622pt;}
.ws89{word-spacing:-0.005547pt;}
.wsa9{word-spacing:-0.005274pt;}
.ws102{word-spacing:-0.005076pt;}
.ws2e{word-spacing:-0.004736pt;}
.ws86{word-spacing:-0.004139pt;}
.ws5{word-spacing:-0.003245pt;}
.ws103{word-spacing:-0.002699pt;}
.ws88{word-spacing:-0.002253pt;}
.ws93{word-spacing:-0.001826pt;}
.ws72{word-spacing:-0.001770pt;}
.ws84{word-spacing:-0.001331pt;}
.ws120{word-spacing:-0.001285pt;}
.ws87{word-spacing:-0.000939pt;}
.ws1{word-spacing:0.000000pt;}
.wsb0{word-spacing:0.001067pt;}
.ws4{word-spacing:0.001089pt;}
.ws8f{word-spacing:0.001758pt;}
.ws8a{word-spacing:0.002261pt;}
.wsff{word-spacing:0.002403pt;}
.ws81{word-spacing:0.047821pt;}
.ws31{word-spacing:0.053134pt;}
.wsc4{word-spacing:0.085014pt;}
.ws1c{word-spacing:0.095642pt;}
.ws32{word-spacing:0.106268pt;}
.wsc2{word-spacing:0.127522pt;}
.ws26{word-spacing:0.143462pt;}
.ws4c{word-spacing:0.159402pt;}
.ws11e{word-spacing:0.161306pt;}
.wsc3{word-spacing:0.170029pt;}
.wsd{word-spacing:0.185968pt;}
.ws3c{word-spacing:0.191283pt;}
.ws33{word-spacing:0.212535pt;}
.ws62{word-spacing:0.239104pt;}
.wsf{word-spacing:0.260355pt;}
.ws4d{word-spacing:0.265669pt;}
.ws16c{word-spacing:0.286925pt;}
.ws52{word-spacing:0.318803pt;}
.ws175{word-spacing:0.334746pt;}
.wsf7{word-spacing:0.371937pt;}
.ws76{word-spacing:0.425071pt;}
.ws28{word-spacing:0.430387pt;}
.ws137{word-spacing:0.446038pt;}
.ws147{word-spacing:0.447086pt;}
.ws149{word-spacing:0.452419pt;}
.ws140{word-spacing:0.460145pt;}
.ws12b{word-spacing:0.460800pt;}
.ws133{word-spacing:0.465244pt;}
.ws12d{word-spacing:0.465478pt;}
.ws14e{word-spacing:0.465571pt;}
.ws13f{word-spacing:0.466012pt;}
.ws12a{word-spacing:0.466133pt;}
.ws12f{word-spacing:0.466667pt;}
.ws15c{word-spacing:0.478205pt;}
.ws145{word-spacing:0.484514pt;}
.ws6{word-spacing:0.499721pt;}
.wsea{word-spacing:0.575215pt;}
.wse7{word-spacing:0.575386pt;}
.ws44{word-spacing:0.584473pt;}
.wsec{word-spacing:0.594236pt;}
.wse2{word-spacing:0.594765pt;}
.wse9{word-spacing:0.596224pt;}
.wsed{word-spacing:0.597291pt;}
.wse8{word-spacing:0.601557pt;}
.wseb{word-spacing:0.620194pt;}
.wsc9{word-spacing:0.637606pt;}
.wsef{word-spacing:0.667200pt;}
.ws4f{word-spacing:0.690740pt;}
.ws18c{word-spacing:0.717312pt;}
.wsd6{word-spacing:0.743874pt;}
.ws95{word-spacing:0.797008pt;}
.ws66{word-spacing:0.850142pt;}
.ws27{word-spacing:0.860774pt;}
.wsfb{word-spacing:0.903276pt;}
.ws16b{word-spacing:0.908595pt;}
.ws123{word-spacing:0.956410pt;}
.ws162{word-spacing:1.009543pt;}
.ws124{word-spacing:1.062677pt;}
.ws7f{word-spacing:1.115811pt;}
.ws35{word-spacing:1.168945pt;}
.ws164{word-spacing:1.222079pt;}
.ws196{word-spacing:1.243341pt;}
.ws7a{word-spacing:1.275213pt;}
.ws10d{word-spacing:1.291162pt;}
.ws99{word-spacing:1.328347pt;}
.ws177{word-spacing:1.338982pt;}
.ws65{word-spacing:1.434614pt;}
.ws161{word-spacing:1.487748pt;}
.ws63{word-spacing:1.530266pt;}
.ws23{word-spacing:1.552625pt;}
.ws25{word-spacing:1.578086pt;}
.wscf{word-spacing:1.594016pt;}
.ws6a{word-spacing:1.647150pt;}
.ws50{word-spacing:1.700284pt;}
.ws80{word-spacing:1.753418pt;}
.wsa8{word-spacing:1.769370pt;}
.wse{word-spacing:1.785293pt;}
.wsf1{word-spacing:1.912819pt;}
.ws45{word-spacing:1.965953pt;}
.ws1f{word-spacing:2.012895pt;}
.ws21{word-spacing:2.016545pt;}
.wsf4{word-spacing:2.019087pt;}
.ws18a{word-spacing:2.056294pt;}
.ws9d{word-spacing:2.072221pt;}
.ws194{word-spacing:2.104115pt;}
.wsfa{word-spacing:2.125355pt;}
.wsf9{word-spacing:2.178489pt;}
.wsc7{word-spacing:2.231622pt;}
.ws9b{word-spacing:2.284756pt;}
.ws171{word-spacing:2.295398pt;}
.ws74{word-spacing:2.337890pt;}
.ws170{word-spacing:2.343219pt;}
.ws16f{word-spacing:2.391040pt;}
.wsd0{word-spacing:2.444158pt;}
.ws199{word-spacing:2.486682pt;}
.ws1a{word-spacing:2.534502pt;}
.ws6b{word-spacing:2.550426pt;}
.ws18{word-spacing:2.550432pt;}
.wsfe{word-spacing:2.603559pt;}
.ws70{word-spacing:2.656693pt;}
.wsce{word-spacing:2.762961pt;}
.ws172{word-spacing:2.773606pt;}
.ws15d{word-spacing:2.816095pt;}
.ws8e{word-spacing:2.869248pt;}
.ws4e{word-spacing:2.975497pt;}
.ws1b{word-spacing:3.060531pt;}
.ws10c{word-spacing:3.081764pt;}
.ws2b{word-spacing:3.108352pt;}
.ws198{word-spacing:3.156173pt;}
.ws30{word-spacing:3.188032pt;}
.ws6d{word-spacing:3.241166pt;}
.ws166{word-spacing:3.294300pt;}
.ws78{word-spacing:3.347434pt;}
.ws57{word-spacing:3.399752pt;}
.wsa6{word-spacing:3.400567pt;}
.wsf3{word-spacing:3.453701pt;}
.ws2a{word-spacing:3.490918pt;}
.ws126{word-spacing:3.666237pt;}
.ws4a{word-spacing:3.772505pt;}
.ws168{word-spacing:3.825638pt;}
.ws67{word-spacing:3.985040pt;}
.ws4b{word-spacing:4.038174pt;}
.ws19{word-spacing:4.064768pt;}
.ws46{word-spacing:4.144442pt;}
.ws96{word-spacing:4.197575pt;}
.ws15b{word-spacing:4.303843pt;}
.wsd1{word-spacing:4.356977pt;}
.ws16e{word-spacing:4.447334pt;}
.wsfc{word-spacing:4.516379pt;}
.ws49{word-spacing:4.675780pt;}
.ws167{word-spacing:4.782048pt;}
.wsc8{word-spacing:4.835182pt;}
.ws7d{word-spacing:4.941450pt;}
.ws127{word-spacing:5.021184pt;}
.ws16d{word-spacing:5.116826pt;}
.ws109{word-spacing:5.310498pt;}
.ws8b{word-spacing:5.312529pt;}
.ws97{word-spacing:5.313387pt;}
.ws94{word-spacing:5.315831pt;}
.ws15{word-spacing:5.393072pt;}
.ws3d{word-spacing:5.419654pt;}
.ws16{word-spacing:5.467459pt;}
.ws163{word-spacing:5.472788pt;}
.wsee{word-spacing:5.579056pt;}
.ws59{word-spacing:5.632190pt;}
.ws98{word-spacing:5.685324pt;}
.wsf2{word-spacing:5.791591pt;}
.wsd9{word-spacing:5.841094pt;}
.wsf5{word-spacing:6.004127pt;}
.ws160{word-spacing:6.057261pt;}
.wsf8{word-spacing:6.163529pt;}
.wsd7{word-spacing:6.269796pt;}
.wsd5{word-spacing:6.482332pt;}
.ws125{word-spacing:6.535466pt;}
.ws75{word-spacing:6.641733pt;}
.ws157{word-spacing:6.801135pt;}
.ws17b{word-spacing:7.173120pt;}
.ws13{word-spacing:7.699075pt;}
.ws182{word-spacing:8.177357pt;}
.ws184{word-spacing:8.272998pt;}
.wse1{word-spacing:8.990310pt;}
.ws128{word-spacing:9.261206pt;}
.wse4{word-spacing:9.372877pt;}
.wse0{word-spacing:9.420698pt;}
.ws15f{word-spacing:9.617230pt;}
.ws150{word-spacing:10.499278pt;}
.ws14f{word-spacing:10.541786pt;}
.ws122{word-spacing:10.580683pt;}
.ws36{word-spacing:10.582159pt;}
.ws121{word-spacing:10.584293pt;}
.ws11d{word-spacing:10.711814pt;}
.ws11f{word-spacing:10.754322pt;}
.ws187{word-spacing:10.998784pt;}
.wsa{word-spacing:11.493815pt;}
.ws18e{word-spacing:11.763917pt;}
.ws189{word-spacing:11.811738pt;}
.wsab{word-spacing:11.898308pt;}
.wsae{word-spacing:11.899341pt;}
.ws8c{word-spacing:11.900186pt;}
.ws2c{word-spacing:11.900723pt;}
.ws19a{word-spacing:11.900919pt;}
.ws90{word-spacing:11.901218pt;}
.ws19b{word-spacing:11.901594pt;}
.ws176{word-spacing:11.902046pt;}
.ws91{word-spacing:11.902831pt;}
.wsad{word-spacing:11.905621pt;}
.ws8d{word-spacing:11.906057pt;}
.ws83{word-spacing:11.907089pt;}
.ws2f{word-spacing:11.907379pt;}
.ws18b{word-spacing:11.955200pt;}
.ws174{word-spacing:11.969260pt;}
.ws191{word-spacing:12.003021pt;}
.ws17d{word-spacing:12.050842pt;}
.wscb{word-spacing:12.061388pt;}
.ws18f{word-spacing:12.098662pt;}
.ws19c{word-spacing:12.146483pt;}
.ws169{word-spacing:12.592726pt;}
.ws53{word-spacing:12.954867pt;}
.ws55{word-spacing:12.959474pt;}
.ws6f{word-spacing:13.017797pt;}
.ws56{word-spacing:13.070931pt;}
.wsa5{word-spacing:13.120810pt;}
.wsa3{word-spacing:13.149802pt;}
.wsa4{word-spacing:13.151780pt;}
.wsa1{word-spacing:13.153596pt;}
.ws9e{word-spacing:13.173024pt;}
.ws197{word-spacing:13.198541pt;}
.ws71{word-spacing:13.228290pt;}
.ws5b{word-spacing:13.230333pt;}
.ws73{word-spacing:13.232891pt;}
.ws9c{word-spacing:13.253873pt;}
.ws5a{word-spacing:13.265161pt;}
.ws158{word-spacing:13.283467pt;}
.wsa0{word-spacing:13.285241pt;}
.ws58{word-spacing:13.389734pt;}
.ws9f{word-spacing:13.409608pt;}
.ws24{word-spacing:13.453066pt;}
.ws22{word-spacing:13.454245pt;}
.ws20{word-spacing:13.470962pt;}
.ws9{word-spacing:13.763148pt;}
.ws10{word-spacing:14.348669pt;}
.ws11{word-spacing:14.356730pt;}
.ws179{word-spacing:14.728806pt;}
.ws17e{word-spacing:14.769306pt;}
.ws178{word-spacing:14.776627pt;}
.ws17a{word-spacing:14.777873pt;}
.ws173{word-spacing:14.824448pt;}
.ws181{word-spacing:15.159194pt;}
.ws12{word-spacing:15.732893pt;}
.ws6c{word-spacing:15.780758pt;}
.ws180{word-spacing:15.838067pt;}
.ws195{word-spacing:21.471539pt;}
.ws14{word-spacing:24.399002pt;}
.ws17c{word-spacing:36.726374pt;}
.ws183{word-spacing:39.643443pt;}
.ws185{word-spacing:40.026010pt;}
.ws14a{word-spacing:46.325084pt;}
.ws139{word-spacing:58.967467pt;}
.ws134{word-spacing:58.972800pt;}
.ws144{word-spacing:65.623789pt;}
.ws141{word-spacing:66.186417pt;}
.ws130{word-spacing:70.725084pt;}
.ws148{word-spacing:72.215467pt;}
.wsac{word-spacing:76.471091pt;}
.ws12e{word-spacing:80.807467pt;}
.ws146{word-spacing:81.511467pt;}
.wsaa{word-spacing:85.147196pt;}
.ws13d{word-spacing:85.485122pt;}
.ws13e{word-spacing:86.871467pt;}
.ws129{word-spacing:90.023789pt;}
.ws143{word-spacing:90.103467pt;}
.ws119{word-spacing:91.242086pt;}
.ws135{word-spacing:91.549122pt;}
.ws118{word-spacing:91.959398pt;}
.ws116{word-spacing:92.007219pt;}
.ws138{word-spacing:92.370133pt;}
.ws13a{word-spacing:94.642133pt;}
.ws104{word-spacing:95.587831pt;}
.ws136{word-spacing:118.012800pt;}
.ws106{word-spacing:125.821312pt;}
.ws108{word-spacing:125.863819pt;}
.ws100{word-spacing:128.857165pt;}
.ws12c{word-spacing:129.879467pt;}
.ws13b{word-spacing:129.884800pt;}
.ws111{word-spacing:138.126912pt;}
.ws14d{word-spacing:143.047467pt;}
.ws14c{word-spacing:143.048166pt;}
.ws14b{word-spacing:143.052800pt;}
.ws132{word-spacing:162.909500pt;}
.ws112{word-spacing:163.881882pt;}
.ws13c{word-spacing:167.448166pt;}
.ws113{word-spacing:169.333453pt;}
.ws10e{word-spacing:172.011622pt;}
.ws10f{word-spacing:181.671219pt;}
.ws11b{word-spacing:186.473754pt;}
.ws114{word-spacing:191.873459pt;}
.ws117{word-spacing:197.806079pt;}
.ws105{word-spacing:201.611650pt;}
.ws131{word-spacing:202.690133pt;}
.ws142{word-spacing:203.618133pt;}
.ws82{word-spacing:208.256529pt;}
.ws107{word-spacing:212.238450pt;}
.ws11a{word-spacing:214.913915pt;}
.wsc0{word-spacing:260.598118pt;}
.ws11c{word-spacing:264.706246pt;}
.wsaf{word-spacing:286.516582pt;}
.wsb5{word-spacing:286.829158pt;}
.wsb9{word-spacing:288.024678pt;}
.wsbd{word-spacing:295.962931pt;}
.wsb4{word-spacing:296.632422pt;}
.wsb3{word-spacing:301.318861pt;}
.wsbf{word-spacing:302.227456pt;}
.wsb6{word-spacing:309.496218pt;}
.ws92{word-spacing:318.613862pt;}
.wsb8{word-spacing:326.902989pt;}
.wsba{word-spacing:331.445965pt;}
.wse6{word-spacing:332.737126pt;}
.wsbe{word-spacing:335.128166pt;}
.wsb7{word-spacing:346.318234pt;}
.wsbb{word-spacing:350.669926pt;}
.wsb1{word-spacing:431.973862pt;}
.wsc1{word-spacing:484.615987pt;}
.wsb2{word-spacing:494.843196pt;}
.wsbc{word-spacing:518.520934pt;}
.wsda{word-spacing:590.742330pt;}
.wse5{word-spacing:606.152414pt;}
.ws101{word-spacing:779.747831pt;}
.ws61{word-spacing:942.440208pt;}
._61{margin-left:-17.157665pt;}
._0{margin-left:-10.616218pt;}
._1{margin-left:-7.077478pt;}
._4{margin-left:-5.896925pt;}
._7{margin-left:-4.797974pt;}
._8{margin-left:-3.421811pt;}
._32{margin-left:-2.138569pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._2{width:2.660819pt;}
._1b{width:3.641184pt;}
._1a{width:5.404471pt;}
._1c{width:6.335049pt;}
._19{width:7.818329pt;}
._18{width:8.924160pt;}
._d{width:9.861670pt;}
._9{width:11.527270pt;}
._b{width:12.690434pt;}
._f{width:14.250598pt;}
._e{width:15.426270pt;}
._13{width:16.369680pt;}
._11{width:17.356493pt;}
._10{width:19.126224pt;}
._14{width:20.403405pt;}
._1d{width:21.519216pt;}
._a{width:23.057899pt;}
._25{width:24.443547pt;}
._12{width:25.871053pt;}
._26{width:27.696197pt;}
._c{width:29.011008pt;}
._31{width:30.355364pt;}
._1e{width:32.204915pt;}
._3d{width:35.280887pt;}
._6e{width:36.669094pt;}
._70{width:39.879139pt;}
._71{width:40.912844pt;}
._33{width:42.273587pt;}
._3{width:48.364141pt;}
._6f{width:54.993920pt;}
._69{width:66.018640pt;}
._6a{width:78.924819pt;}
._3e{width:79.871029pt;}
._6b{width:88.557962pt;}
._3f{width:90.710365pt;}
._6c{width:92.207742pt;}
._40{width:93.983419pt;}
._41{width:99.466848pt;}
._27{width:103.666765pt;}
._5c{width:110.688192pt;}
._65{width:114.333126pt;}
._5b{width:116.443648pt;}
._64{width:119.019520pt;}
._54{width:123.069453pt;}
._44{width:136.448112pt;}
._5e{width:138.176741pt;}
._59{width:142.314701pt;}
._68{width:143.344134pt;}
._45{width:145.034566pt;}
._6d{width:154.613795pt;}
._23{width:157.924779pt;}
._46{width:164.247821pt;}
._43{width:166.330674pt;}
._63{width:169.602816pt;}
._57{width:175.983192pt;}
._5d{width:177.243907pt;}
._5a{width:181.529461pt;}
._53{width:193.733879pt;}
._22{width:199.496559pt;}
._66{width:201.244859pt;}
._67{width:205.810723pt;}
._58{width:209.262242pt;}
._4d{width:212.153435pt;}
._48{width:213.258622pt;}
._42{width:214.533838pt;}
._52{width:219.162726pt;}
._49{width:222.865250pt;}
._4c{width:224.097958pt;}
._3b{width:225.714176pt;}
._62{width:230.801878pt;}
._4b{width:233.492050pt;}
._56{width:236.238157pt;}
._47{width:241.015824pt;}
._5f{width:247.663923pt;}
._4e{width:251.685131pt;}
._51{width:256.271667pt;}
._55{width:257.562829pt;}
._4a{width:262.269424pt;}
._24{width:266.218394pt;}
._21{width:269.840034pt;}
._60{width:291.750747pt;}
._1f{width:301.859856pt;}
._50{width:305.240166pt;}
._38{width:308.444160pt;}
._36{width:315.378176pt;}
._3a{width:321.355776pt;}
._39{width:332.498022pt;}
._3c{width:339.882965pt;}
._35{width:344.692326pt;}
._37{width:350.430822pt;}
._34{width:356.960986pt;}
._20{width:359.388278pt;}
._2e{width:376.014950pt;}
._2b{width:467.617024pt;}
._30{width:483.755213pt;}
._2c{width:484.662741pt;}
._2a{width:495.709133pt;}
._28{width:496.617011pt;}
._2f{width:518.522001pt;}
._29{width:530.476134pt;}
._2d{width:564.381082pt;}
._15{width:812.267820pt;}
._17{width:1870.020018pt;}
._4f{width:2211.326531pt;}
._16{width:2232.579865pt;}
.fs17{font-size:26.566933pt;}
.fs7{font-size:31.880533pt;}
.fs12{font-size:32.000000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs16{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsf{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs14{font-size:42.572097pt;}
.fsa{font-size:42.880000pt;}
.fs11{font-size:44.292800pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs15{font-size:49.829333pt;}
.fsb{font-size:53.120000pt;}
.fs1{font-size:53.133867pt;}
.fs10{font-size:55.365867pt;}
.fse{font-size:57.661687pt;}
.fsd{font-size:67.262760pt;}
.fs13{font-size:85.146084pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y79{bottom:-618.732000pt;}
.y78{bottom:-601.612000pt;}
.y77{bottom:-584.492000pt;}
.y76{bottom:-567.377333pt;}
.y75{bottom:-550.417333pt;}
.y74{bottom:-533.297333pt;}
.y73{bottom:-516.177333pt;}
.y72{bottom:-499.057333pt;}
.y71{bottom:-481.937333pt;}
.y70{bottom:-464.977333pt;}
.y6f{bottom:-447.857333pt;}
.y6e{bottom:-430.737333pt;}
.y6d{bottom:-413.577333pt;}
.y6c{bottom:-396.457333pt;}
.y1d3{bottom:-391.306667pt;}
.y6b{bottom:-379.497333pt;}
.y1d2{bottom:-374.186667pt;}
.y6a{bottom:-362.377333pt;}
.y1d1{bottom:-357.066667pt;}
.y69{bottom:-345.257333pt;}
.y1d0{bottom:-339.952000pt;}
.y68{bottom:-328.137333pt;}
.y1cf{bottom:-322.992000pt;}
.y67{bottom:-311.017333pt;}
.y1ce{bottom:-305.872000pt;}
.y66{bottom:-294.057333pt;}
.y1cd{bottom:-288.752000pt;}
.y65{bottom:-276.937333pt;}
.y1cc{bottom:-271.632000pt;}
.y64{bottom:-259.817333pt;}
.y1cb{bottom:-254.512000pt;}
.y63{bottom:-242.697333pt;}
.y62{bottom:-225.577333pt;}
.y1ca{bottom:-219.952000pt;}
.y61{bottom:-208.617333pt;}
.y1c9{bottom:-201.872000pt;}
.y60{bottom:-191.497333pt;}
.y1c8{bottom:-183.912000pt;}
.y5f{bottom:-174.350667pt;}
.y1c7{bottom:-165.992000pt;}
.y5e{bottom:-157.230667pt;}
.y1c6{bottom:-147.912000pt;}
.y5d{bottom:-140.110667pt;}
.y1c5{bottom:-129.352000pt;}
.y5c{bottom:-123.150667pt;}
.y1c3{bottom:-119.912000pt;}
.y1c4{bottom:-110.632000pt;}
.y5b{bottom:-106.030667pt;}
.y5a{bottom:-88.910667pt;}
.ydd{bottom:-84.908000pt;}
.y1c2{bottom:-83.912000pt;}
.y59{bottom:-71.790667pt;}
.ydc{bottom:-69.388000pt;}
.y1c1{bottom:-68.552000pt;}
.ydb{bottom:-54.028000pt;}
.y58{bottom:-39.150667pt;}
.yda{bottom:-38.668000pt;}
.y1c0{bottom:-37.192000pt;}
.y57{bottom:-23.790667pt;}
.yd9{bottom:-23.308000pt;}
.y1bf{bottom:-21.832000pt;}
.y56{bottom:-3.790667pt;}
.y1be{bottom:-1.832000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.yb{bottom:3.044747pt;}
.ye0{bottom:6.028986pt;}
.ye2{bottom:6.378487pt;}
.ya{bottom:12.578910pt;}
.y1b5{bottom:13.920000pt;}
.y1b4{bottom:15.840000pt;}
.y1f1{bottom:20.825436pt;}
.y1da{bottom:22.350205pt;}
.ye1{bottom:22.747392pt;}
.ydf{bottom:23.327492pt;}
.y2{bottom:26.907593pt;}
.y4f{bottom:28.346667pt;}
.y1dd{bottom:29.620904pt;}
.y1ee{bottom:39.032894pt;}
.y1e8{bottom:40.352155pt;}
.y1e2{bottom:43.900105pt;}
.y1f4{bottom:52.842027pt;}
.y1f2{bottom:56.419504pt;}
.y1e3{bottom:60.494214pt;}
.y1eb{bottom:64.305544pt;}
.y1e4{bottom:68.820795pt;}
.y1f3{bottom:68.996775pt;}
.y1de{bottom:77.235957pt;}
.y1e7{bottom:86.207405pt;}
.yeb{bottom:88.012000pt;}
.y21a{bottom:88.310667pt;}
.y2df{bottom:89.820000pt;}
.y2c6{bottom:90.854667pt;}
.y26{bottom:91.398667pt;}
.ya0{bottom:92.029333pt;}
.y1d9{bottom:93.038745pt;}
.y1ea{bottom:94.007227pt;}
.y195{bottom:97.860000pt;}
.y15d{bottom:101.112000pt;}
.y4e{bottom:102.665333pt;}
.y315{bottom:103.408000pt;}
.yea{bottom:104.749333pt;}
.y219{bottom:105.048000pt;}
.y25{bottom:107.298667pt;}
.y2c5{bottom:107.592000pt;}
.y9f{bottom:108.766667pt;}
.y118{bottom:110.382667pt;}
.y2de{bottom:113.410667pt;}
.y194{bottom:114.597333pt;}
.y1e1{bottom:115.733108pt;}
.y15c{bottom:117.849333pt;}
.y1d8{bottom:118.138958pt;}
.y314{bottom:118.750667pt;}
.y23e{bottom:119.372000pt;}
.y4d{bottom:119.402667pt;}
.y26c{bottom:120.994667pt;}
.ye9{bottom:121.486667pt;}
.y218{bottom:121.785333pt;}
.y1e5{bottom:122.745152pt;}
.y24{bottom:123.200000pt;}
.y2c4{bottom:124.329333pt;}
.y9e{bottom:125.504000pt;}
.y117{bottom:127.120000pt;}
.y29e{bottom:127.510667pt;}
.y2dd{bottom:129.032000pt;}
.y1d5{bottom:129.571767pt;}
.y1ef{bottom:130.481196pt;}
.y192{bottom:131.334667pt;}
.y313{bottom:134.093333pt;}
.y15b{bottom:134.586667pt;}
.y23d{bottom:135.136000pt;}
.y4c{bottom:136.140000pt;}
.y193{bottom:136.156000pt;}
.y26b{bottom:137.732000pt;}
.ye8{bottom:138.224000pt;}
.y217{bottom:138.522667pt;}
.y1d7{bottom:138.984938pt;}
.y23{bottom:139.100000pt;}
.y2c3{bottom:141.066667pt;}
.y9d{bottom:142.241333pt;}
.y116{bottom:143.857333pt;}
.y29d{bottom:144.248000pt;}
.y2dc{bottom:144.654667pt;}
.y23c{bottom:147.754667pt;}
.y312{bottom:149.436000pt;}
.y159{bottom:151.324000pt;}
.y4b{bottom:152.877333pt;}
.y26a{bottom:154.469333pt;}
.y22{bottom:155.000000pt;}
.y216{bottom:155.260000pt;}
.y15a{bottom:156.145333pt;}
.y1f5{bottom:157.244363pt;}
.y2c2{bottom:157.804000pt;}
.y1f0{bottom:158.425438pt;}
.y9c{bottom:158.978667pt;}
.y23b{bottom:160.374667pt;}
.y29c{bottom:160.985333pt;}
.y115{bottom:164.578667pt;}
.y311{bottom:164.778667pt;}
.y1db{bottom:165.866213pt;}
.y191{bottom:167.008000pt;}
.ye7{bottom:168.060000pt;}
.y158{bottom:168.061333pt;}
.y2db{bottom:168.245333pt;}
.y4a{bottom:169.614667pt;}
.y1e9{bottom:169.681086pt;}
.y21{bottom:170.901333pt;}
.y269{bottom:171.206667pt;}
.y215{bottom:171.997333pt;}
.y23a{bottom:172.993333pt;}
.y2c1{bottom:174.541333pt;}
.y9b{bottom:175.716000pt;}
.y29b{bottom:177.722667pt;}
.y190{bottom:179.628000pt;}
.y30f{bottom:180.120000pt;}
.y310{bottom:180.121333pt;}
.y1ab{bottom:182.113333pt;}
.y157{bottom:184.798667pt;}
.ye6{bottom:185.156000pt;}
.y239{bottom:185.613333pt;}
.y1df{bottom:185.979926pt;}
.y49{bottom:186.352000pt;}
.y20{bottom:186.801333pt;}
.y1e6{bottom:187.420838pt;}
.y268{bottom:187.944000pt;}
.y214{bottom:188.734667pt;}
.y1dc{bottom:189.735746pt;}
.y1e0{bottom:190.444391pt;}
.y2c0{bottom:191.278667pt;}
.y2da{bottom:191.837333pt;}
.y18f{bottom:192.246667pt;}
.y9a{bottom:192.453333pt;}
.y1ed{bottom:192.546705pt;}
.y29a{bottom:194.460000pt;}
.y114{bottom:194.466667pt;}
.y30e{bottom:195.462667pt;}
.y1d6{bottom:197.093845pt;}
.y238{bottom:198.232000pt;}
.y1aa{bottom:198.850667pt;}
.y1d4{bottom:199.822129pt;}
.y156{bottom:201.536000pt;}
.ye5{bottom:202.252000pt;}
.y1f{bottom:202.701333pt;}
.y48{bottom:203.089333pt;}
.y267{bottom:204.681333pt;}
.y18d{bottom:204.866667pt;}
.y213{bottom:205.472000pt;}
.y2bf{bottom:208.016000pt;}
.y18e{bottom:208.724000pt;}
.y1ec{bottom:209.058138pt;}
.y99{bottom:209.190667pt;}
.y30d{bottom:210.805333pt;}
.y237{bottom:210.852000pt;}
.y299{bottom:211.197333pt;}
.y113{bottom:211.204000pt;}
.y2d9{bottom:215.429333pt;}
.y1a9{bottom:215.588000pt;}
.y155{bottom:218.273333pt;}
.y18c{bottom:218.816000pt;}
.y266{bottom:218.992000pt;}
.ye4{bottom:219.348000pt;}
.y47{bottom:219.826667pt;}
.y265{bottom:221.418667pt;}
.y212{bottom:222.209333pt;}
.y18b{bottom:222.673333pt;}
.y236{bottom:223.470667pt;}
.y2be{bottom:224.753333pt;}
.y98{bottom:225.928000pt;}
.y30c{bottom:226.148000pt;}
.y298{bottom:227.934667pt;}
.y112{bottom:227.941333pt;}
.y153{bottom:235.010667pt;}
.y235{bottom:236.090667pt;}
.y1a8{bottom:236.310667pt;}
.ye3{bottom:236.444000pt;}
.y46{bottom:236.564000pt;}
.y18a{bottom:237.501333pt;}
.y264{bottom:238.156000pt;}
.y211{bottom:238.946667pt;}
.y2d8{bottom:239.020000pt;}
.y154{bottom:239.832000pt;}
.y2bd{bottom:241.490667pt;}
.y97{bottom:242.665333pt;}
.y297{bottom:244.672000pt;}
.y111{bottom:244.678667pt;}
.y234{bottom:248.709333pt;}
.y152{bottom:251.748000pt;}
.y189{bottom:252.112000pt;}
.y45{bottom:253.301333pt;}
.y1a7{bottom:254.242667pt;}
.y2d7{bottom:254.641333pt;}
.y263{bottom:254.893333pt;}
.y1bd{bottom:255.154667pt;}
.y210{bottom:255.684000pt;}
.yba{bottom:256.380000pt;}
.y30b{bottom:256.833333pt;}
.y2bc{bottom:258.228000pt;}
.y96{bottom:259.402667pt;}
.y55{bottom:259.769333pt;}
.yde{bottom:260.760088pt;}
.y296{bottom:261.409333pt;}
.y110{bottom:261.416000pt;}
.y188{bottom:266.724000pt;}
.y233{bottom:267.730667pt;}
.y151{bottom:268.485333pt;}
.y2d6{bottom:270.262667pt;}
.y232{bottom:271.277333pt;}
.y262{bottom:271.630667pt;}
.y30a{bottom:272.176000pt;}
.y1bc{bottom:272.274667pt;}
.y20f{bottom:272.421333pt;}
.y1e{bottom:273.154667pt;}
.y44{bottom:274.024000pt;}
.y2bb{bottom:274.965333pt;}
.y231{bottom:275.290667pt;}
.y295{bottom:275.412000pt;}
.y95{bottom:276.140000pt;}
.y230{bottom:276.589333pt;}
.y54{bottom:276.889333pt;}
.y294{bottom:278.146667pt;}
.y10f{bottom:278.153333pt;}
.y187{bottom:281.336000pt;}
.y1a6{bottom:284.130667pt;}
.y150{bottom:285.222667pt;}
.y2d5{bottom:285.884000pt;}
.y309{bottom:287.518667pt;}
.y261{bottom:288.368000pt;}
.y1d{bottom:289.054667pt;}
.y20e{bottom:289.158667pt;}
.y1bb{bottom:289.434667pt;}
.y2ba{bottom:291.702667pt;}
.y94{bottom:292.877333pt;}
.y293{bottom:294.884000pt;}
.y10e{bottom:294.890667pt;}
.y186{bottom:295.948000pt;}
.y1a5{bottom:300.868000pt;}
.y2d4{bottom:301.506667pt;}
.y14f{bottom:301.958667pt;}
.y308{bottom:302.861333pt;}
.y1c{bottom:304.954667pt;}
.y25f{bottom:305.105333pt;}
.yd8{bottom:305.398667pt;}
.y20d{bottom:305.896000pt;}
.y2b9{bottom:308.440000pt;}
.y93{bottom:309.613333pt;}
.y260{bottom:309.926667pt;}
.y1ba{bottom:310.554667pt;}
.y185{bottom:310.560000pt;}
.y292{bottom:311.621333pt;}
.y10d{bottom:311.628000pt;}
.y22f{bottom:314.246667pt;}
.y2d3{bottom:317.128000pt;}
.y1a4{bottom:317.605333pt;}
.y307{bottom:318.202667pt;}
.y14e{bottom:318.696000pt;}
.y1b{bottom:320.856000pt;}
.y25e{bottom:321.842667pt;}
.yd7{bottom:322.358667pt;}
.y20c{bottom:322.633333pt;}
.y184{bottom:325.172000pt;}
.y2b8{bottom:325.177333pt;}
.y53{bottom:325.556000pt;}
.y92{bottom:326.350667pt;}
.y291{bottom:328.358667pt;}
.y10c{bottom:328.365333pt;}
.y1b9{bottom:331.514667pt;}
.y2d2{bottom:332.749333pt;}
.y306{bottom:333.545333pt;}
.y52{bottom:334.036000pt;}
.y14d{bottom:335.433333pt;}
.y25d{bottom:338.580000pt;}
.y20b{bottom:339.370667pt;}
.yd6{bottom:339.478667pt;}
.y183{bottom:339.784000pt;}
.y43{bottom:340.752000pt;}
.y2b7{bottom:341.914667pt;}
.y91{bottom:343.088000pt;}
.y290{bottom:345.096000pt;}
.y10b{bottom:345.102667pt;}
.y22e{bottom:345.900000pt;}
.y1a3{bottom:348.290667pt;}
.y2d1{bottom:348.370667pt;}
.y305{bottom:348.888000pt;}
.y14c{bottom:352.170667pt;}
.y182{bottom:354.396000pt;}
.y1a{bottom:354.688000pt;}
.y20a{bottom:356.106667pt;}
.y42{bottom:358.046667pt;}
.y2b6{bottom:358.652000pt;}
.y90{bottom:359.825333pt;}
.yd5{bottom:360.598667pt;}
.y28f{bottom:361.833333pt;}
.y10a{bottom:361.840000pt;}
.y22d{bottom:362.637333pt;}
.y2d0{bottom:363.992000pt;}
.y304{bottom:364.230667pt;}
.y1b8{bottom:364.634667pt;}
.y14b{bottom:368.908000pt;}
.y181{bottom:369.008000pt;}
.y25c{bottom:369.397333pt;}
.y19{bottom:370.589333pt;}
.y209{bottom:372.844000pt;}
.y2b5{bottom:375.389333pt;}
.y8f{bottom:376.562667pt;}
.y28e{bottom:378.570667pt;}
.y109{bottom:378.577333pt;}
.y1a2{bottom:378.976000pt;}
.y22c{bottom:379.374667pt;}
.y303{bottom:379.573333pt;}
.y2cf{bottom:379.613333pt;}
.yd4{bottom:381.718667pt;}
.y1b7{bottom:381.754667pt;}
.y25b{bottom:382.017333pt;}
.y180{bottom:383.620000pt;}
.y14a{bottom:385.645333pt;}
.y18{bottom:386.489333pt;}
.y208{bottom:389.581333pt;}
.y41{bottom:391.282667pt;}
.y2b3{bottom:392.126667pt;}
.y1a1{bottom:392.978667pt;}
.y8e{bottom:393.300000pt;}
.y302{bottom:394.916000pt;}
.y2ce{bottom:395.234667pt;}
.y28d{bottom:395.308000pt;}
.y1a0{bottom:395.713333pt;}
.y22b{bottom:396.112000pt;}
.y2b4{bottom:396.948000pt;}
.y17f{bottom:398.230667pt;}
.y1b6{bottom:398.874667pt;}
.y108{bottom:399.300000pt;}
.y25a{bottom:402.237333pt;}
.y149{bottom:402.382667pt;}
.y207{bottom:406.318667pt;}
.y40{bottom:408.577333pt;}
.y2b2{bottom:408.864000pt;}
.y8d{bottom:410.037333pt;}
.y301{bottom:410.258667pt;}
.y2cd{bottom:410.856000pt;}
.y28c{bottom:412.045333pt;}
.y19f{bottom:412.450667pt;}
.y17e{bottom:412.842667pt;}
.y22a{bottom:412.848000pt;}
.yd3{bottom:414.838667pt;}
.y257{bottom:415.641333pt;}
.y259{bottom:416.848000pt;}
.y17{bottom:418.330667pt;}
.y148{bottom:419.120000pt;}
.y206{bottom:423.056000pt;}
.y2b1{bottom:425.601333pt;}
.y3f{bottom:425.873333pt;}
.y8c{bottom:426.774667pt;}
.y17d{bottom:427.874667pt;}
.y28b{bottom:428.782667pt;}
.y107{bottom:429.188000pt;}
.y229{bottom:429.585333pt;}
.y258{bottom:431.460000pt;}
.yd2{bottom:431.825333pt;}
.y16{bottom:434.230667pt;}
.y2cc{bottom:434.448000pt;}
.y147{bottom:435.857333pt;}
.y205{bottom:439.793333pt;}
.y300{bottom:440.944000pt;}
.y2b0{bottom:442.338667pt;}
.y17c{bottom:442.905333pt;}
.y3e{bottom:443.168000pt;}
.y8b{bottom:443.512000pt;}
.y28a{bottom:445.520000pt;}
.y106{bottom:445.925333pt;}
.y228{bottom:446.322667pt;}
.yd1{bottom:448.945333pt;}
.y2cb{bottom:450.069333pt;}
.y15{bottom:450.130667pt;}
.y256{bottom:452.474667pt;}
.y146{bottom:452.594667pt;}
.y1b2{bottom:453.754667pt;}
.y2ff{bottom:456.285333pt;}
.y204{bottom:456.530667pt;}
.y17b{bottom:457.937333pt;}
.y2af{bottom:459.076000pt;}
.y8a{bottom:460.249333pt;}
.y3d{bottom:460.462667pt;}
.y105{bottom:462.662667pt;}
.y227{bottom:463.060000pt;}
.y2ca{bottom:465.690667pt;}
.y14{bottom:466.032000pt;}
.yd0{bottom:466.065333pt;}
.y254{bottom:466.681333pt;}
.y255{bottom:467.086667pt;}
.y145{bottom:469.332000pt;}
.y1b1{bottom:470.714667pt;}
.y2fe{bottom:471.628000pt;}
.y203{bottom:473.268000pt;}
.y289{bottom:475.009333pt;}
.y2ae{bottom:475.813333pt;}
.y89{bottom:476.986667pt;}
.y3c{bottom:477.758667pt;}
.y17a{bottom:479.370667pt;}
.y104{bottom:479.398667pt;}
.y226{bottom:479.797333pt;}
.y2c9{bottom:481.312000pt;}
.ycf{bottom:483.185333pt;}
.y144{bottom:486.069333pt;}
.y2fd{bottom:486.970667pt;}
.y288{bottom:487.628000pt;}
.y1b0{bottom:487.834667pt;}
.y202{bottom:490.005333pt;}
.y2ad{bottom:492.549333pt;}
.y88{bottom:493.724000pt;}
.y3b{bottom:495.053333pt;}
.y102{bottom:496.136000pt;}
.y225{bottom:496.534667pt;}
.y13{bottom:497.872000pt;}
.yce{bottom:500.305333pt;}
.y103{bottom:500.958667pt;}
.y2fc{bottom:502.313333pt;}
.y253{bottom:502.712000pt;}
.y143{bottom:502.806667pt;}
.y1af{bottom:504.954667pt;}
.y287{bottom:506.652000pt;}
.y179{bottom:508.306667pt;}
.y2ac{bottom:509.286667pt;}
.y87{bottom:510.461333pt;}
.y3a{bottom:512.348000pt;}
.y101{bottom:512.873333pt;}
.y224{bottom:513.272000pt;}
.y12{bottom:513.772000pt;}
.y285{bottom:515.374667pt;}
.y251{bottom:516.100000pt;}
.ycd{bottom:517.265333pt;}
.y252{bottom:517.324000pt;}
.y2fb{bottom:517.656000pt;}
.y142{bottom:519.544000pt;}
.y286{bottom:523.681333pt;}
.y178{bottom:525.402667pt;}
.y2ab{bottom:526.024000pt;}
.y86{bottom:527.198667pt;}
.yff{bottom:529.610667pt;}
.y39{bottom:529.644000pt;}
.y11{bottom:529.673333pt;}
.y223{bottom:530.009333pt;}
.y201{bottom:530.416000pt;}
.y2fa{bottom:532.998667pt;}
.ycc{bottom:534.385333pt;}
.y100{bottom:534.433333pt;}
.y141{bottom:540.266667pt;}
.y283{bottom:540.710667pt;}
.y177{bottom:542.497333pt;}
.y2aa{bottom:542.761333pt;}
.y85{bottom:543.936000pt;}
.y222{bottom:544.320000pt;}
.y200{bottom:545.028000pt;}
.y10{bottom:545.573333pt;}
.y282{bottom:546.024000pt;}
.yfe{bottom:546.348000pt;}
.y221{bottom:546.746667pt;}
.y38{bottom:546.938667pt;}
.y2f9{bottom:548.341333pt;}
.y284{bottom:551.337333pt;}
.ycb{bottom:551.505333pt;}
.y250{bottom:552.949333pt;}
.y1ae{bottom:553.621333pt;}
.y2a9{bottom:559.498667pt;}
.y176{bottom:559.593333pt;}
.y1ff{bottom:559.640000pt;}
.y27e{bottom:560.513333pt;}
.y84{bottom:560.673333pt;}
.yf{bottom:561.473333pt;}
.yb9{bottom:561.890667pt;}
.y1ad{bottom:562.101333pt;}
.yfd{bottom:563.085333pt;}
.y220{bottom:563.484000pt;}
.y2f8{bottom:563.684000pt;}
.y37{bottom:564.234667pt;}
.y24d{bottom:566.824000pt;}
.y24f{bottom:567.561333pt;}
.y280{bottom:568.365333pt;}
.yca{bottom:568.625333pt;}
.y27f{bottom:573.680000pt;}
.y1fe{bottom:574.252000pt;}
.y2a8{bottom:576.236000pt;}
.ye{bottom:577.374667pt;}
.y83{bottom:577.410667pt;}
.y140{bottom:578.337333pt;}
.yb8{bottom:578.628000pt;}
.y281{bottom:578.993333pt;}
.y2f7{bottom:579.025333pt;}
.yfc{bottom:579.822667pt;}
.y21f{bottom:580.221333pt;}
.y35{bottom:581.529333pt;}
.y24e{bottom:582.173333pt;}
.yc9{bottom:585.745333pt;}
.y36{bottom:585.869333pt;}
.y1fd{bottom:588.864000pt;}
.y175{bottom:592.574667pt;}
.y2a7{bottom:592.973333pt;}
.yd{bottom:593.274667pt;}
.y82{bottom:594.148000pt;}
.y2f6{bottom:594.368000pt;}
.y13f{bottom:594.698667pt;}
.y13c{bottom:594.976000pt;}
.yb7{bottom:595.365333pt;}
.y27c{bottom:596.021333pt;}
.yfb{bottom:596.560000pt;}
.y21e{bottom:596.958667pt;}
.y34{bottom:598.824000pt;}
.y27b{bottom:601.334667pt;}
.yc8{bottom:602.705333pt;}
.y24c{bottom:603.188000pt;}
.y27d{bottom:606.648000pt;}
.yc{bottom:609.174667pt;}
.y13e{bottom:609.310667pt;}
.y174{bottom:609.312000pt;}
.y13a{bottom:609.588000pt;}
.y2a6{bottom:609.710667pt;}
.y1fc{bottom:609.877333pt;}
.y81{bottom:610.885333pt;}
.yfa{bottom:613.297333pt;}
.y21d{bottom:613.696000pt;}
.y278{bottom:615.913333pt;}
.yb6{bottom:616.086667pt;}
.y33{bottom:616.120000pt;}
.y24a{bottom:616.576000pt;}
.y24b{bottom:617.800000pt;}
.yc7{bottom:619.825333pt;}
.y1fb{bottom:620.332000pt;}
.y27a{bottom:623.677333pt;}
.y13d{bottom:623.922667pt;}
.y13b{bottom:624.200000pt;}
.y2f5{bottom:625.053333pt;}
.y173{bottom:626.049333pt;}
.y2a4{bottom:626.448000pt;}
.y19e{bottom:627.608000pt;}
.y80{bottom:627.622667pt;}
.y279{bottom:628.990667pt;}
.y9{bottom:629.060048pt;}
.yf8{bottom:630.034667pt;}
.y21c{bottom:630.433333pt;}
.y2a5{bottom:631.270667pt;}
.y32{bottom:633.414667pt;}
.yb5{bottom:634.020000pt;}
.yf9{bottom:634.857333pt;}
.yc6{bottom:636.985333pt;}
.y2f4{bottom:640.396000pt;}
.y172{bottom:642.786667pt;}
.y2a3{bottom:643.185333pt;}
.y19d{bottom:644.345333pt;}
.y7f{bottom:644.360000pt;}
.y32b{bottom:644.381333pt;}
.y137{bottom:645.492000pt;}
.yf7{bottom:646.772000pt;}
.y21b{bottom:647.170667pt;}
.y31{bottom:650.709333pt;}
.y276{bottom:651.333333pt;}
.y139{bottom:653.076000pt;}
.y249{bottom:653.425333pt;}
.yc5{bottom:654.105333pt;}
.y2f3{bottom:655.738667pt;}
.y275{bottom:656.646667pt;}
.y1fa{bottom:658.997333pt;}
.y171{bottom:659.524000pt;}
.y32a{bottom:659.724000pt;}
.y2a2{bottom:659.922667pt;}
.y136{bottom:660.104000pt;}
.y133{bottom:660.381333pt;}
.y7e{bottom:661.097333pt;}
.y277{bottom:661.960000pt;}
.yf6{bottom:663.509333pt;}
.yb4{bottom:663.908000pt;}
.y246{bottom:667.300000pt;}
.y132{bottom:667.688000pt;}
.y30{bottom:668.005333pt;}
.y248{bottom:668.037333pt;}
.y2f2{bottom:671.081333pt;}
.yc4{bottom:671.225333pt;}
.y135{bottom:674.716000pt;}
.y329{bottom:675.066667pt;}
.y1f9{bottom:676.093333pt;}
.y2a1{bottom:676.660000pt;}
.y19c{bottom:677.820000pt;}
.y7d{bottom:677.834667pt;}
.y273{bottom:678.989333pt;}
.yf5{bottom:680.246667pt;}
.yb3{bottom:680.645333pt;}
.y138{bottom:682.298667pt;}
.y247{bottom:682.649333pt;}
.y272{bottom:684.302667pt;}
.y2f{bottom:685.300000pt;}
.y2f1{bottom:686.424000pt;}
.yc3{bottom:688.185333pt;}
.y134{bottom:689.328000pt;}
.y274{bottom:689.616000pt;}
.y328{bottom:690.408000pt;}
.y1f8{bottom:693.189333pt;}
.y29f{bottom:693.397333pt;}
.y7c{bottom:694.572000pt;}
.yf4{bottom:696.984000pt;}
.yb2{bottom:697.382667pt;}
.y2a0{bottom:698.218667pt;}
.y2f0{bottom:701.766667pt;}
.y19b{bottom:701.805333pt;}
.y245{bottom:703.662667pt;}
.yc2{bottom:705.305333pt;}
.y327{bottom:705.750667pt;}
.y271{bottom:706.644000pt;}
.y170{bottom:710.134667pt;}
.y12c{bottom:710.897333pt;}
.yf3{bottom:713.721333pt;}
.yb1{bottom:714.120000pt;}
.y242{bottom:716.400000pt;}
.y2ef{bottom:717.108000pt;}
.y130{bottom:717.925333pt;}
.y127{bottom:718.202667pt;}
.y244{bottom:718.274667pt;}
.y2c8{bottom:718.542667pt;}
.y2e{bottom:719.598667pt;}
.y326{bottom:721.093333pt;}
.yc1{bottom:722.425333pt;}
.y7b{bottom:724.408000pt;}
.y12b{bottom:725.508000pt;}
.y16f{bottom:726.872000pt;}
.y1f7{bottom:727.554667pt;}
.yf2{bottom:730.458667pt;}
.yb0{bottom:730.857333pt;}
.y270{bottom:731.961333pt;}
.y2ee{bottom:732.450667pt;}
.y12f{bottom:732.537333pt;}
.y126{bottom:732.814667pt;}
.y243{bottom:732.886667pt;}
.y2d{bottom:733.945333pt;}
.y325{bottom:736.436000pt;}
.yc0{bottom:739.545333pt;}
.y131{bottom:739.701333pt;}
.y12a{bottom:740.120000pt;}
.y7a{bottom:741.504000pt;}
.y16e{bottom:743.609333pt;}
.y1f6{bottom:744.649333pt;}
.y26f{bottom:746.442667pt;}
.y12e{bottom:747.149333pt;}
.yf1{bottom:747.196000pt;}
.y125{bottom:747.426667pt;}
.yaf{bottom:747.594667pt;}
.y2ed{bottom:747.793333pt;}
.y26e{bottom:749.057333pt;}
.y324{bottom:751.778667pt;}
.y2c{bottom:752.148000pt;}
.y241{bottom:753.901333pt;}
.y129{bottom:754.732000pt;}
.ybf{bottom:756.665333pt;}
.y16d{bottom:760.346667pt;}
.y51{bottom:761.441333pt;}
.y19a{bottom:761.506667pt;}
.y12d{bottom:761.761333pt;}
.y124{bottom:762.038667pt;}
.y2b{bottom:762.637333pt;}
.y11e{bottom:762.713333pt;}
.y2ec{bottom:763.136000pt;}
.yf0{bottom:763.933333pt;}
.yae{bottom:764.332000pt;}
.y1ac{bottom:764.586667pt;}
.y26d{bottom:766.153333pt;}
.y323{bottom:767.121333pt;}
.y199{bottom:768.754667pt;}
.y128{bottom:769.344000pt;}
.ybe{bottom:773.625333pt;}
.y16c{bottom:777.084000pt;}
.y11d{bottom:777.325333pt;}
.y2eb{bottom:778.478667pt;}
.yef{bottom:780.670667pt;}
.y2a{bottom:780.841333pt;}
.yad{bottom:781.069333pt;}
.y240{bottom:782.006667pt;}
.y322{bottom:782.464000pt;}
.y2c7{bottom:784.656000pt;}
.y123{bottom:790.358667pt;}
.ybd{bottom:790.745333pt;}
.y29{bottom:791.329333pt;}
.y16a{bottom:793.821333pt;}
.y121{bottom:797.245333pt;}
.yee{bottom:797.408000pt;}
.yac{bottom:797.806667pt;}
.y16b{bottom:798.642667pt;}
.y23f{bottom:799.102667pt;}
.y122{bottom:804.970667pt;}
.y28{bottom:805.676000pt;}
.ybc{bottom:807.865333pt;}
.y2ea{bottom:809.164000pt;}
.y169{bottom:810.558667pt;}
.y11f{bottom:811.856000pt;}
.y320{bottom:813.148000pt;}
.y321{bottom:813.149333pt;}
.yed{bottom:814.145333pt;}
.yab{bottom:814.544000pt;}
.y120{bottom:816.196000pt;}
.y27{bottom:823.880000pt;}
.y2e9{bottom:824.506667pt;}
.y168{bottom:827.296000pt;}
.y31f{bottom:828.490667pt;}
.y198{bottom:830.882667pt;}
.yaa{bottom:831.281333pt;}
.yec{bottom:834.868000pt;}
.y2e8{bottom:839.848000pt;}
.y11b{bottom:840.596000pt;}
.y31e{bottom:843.833333pt;}
.y167{bottom:844.033333pt;}
.y11a{bottom:847.901333pt;}
.ya9{bottom:848.018667pt;}
.y197{bottom:851.604000pt;}
.y2e7{bottom:855.190667pt;}
.y11c{bottom:855.208000pt;}
.y31d{bottom:859.176000pt;}
.y8{bottom:859.606667pt;}
.y166{bottom:860.770667pt;}
.ya8{bottom:864.754667pt;}
.ybb{bottom:865.012000pt;}
.y2e6{bottom:870.533333pt;}
.y31c{bottom:874.518667pt;}
.y164{bottom:877.508000pt;}
.ya7{bottom:881.492000pt;}
.y165{bottom:882.329333pt;}
.y119{bottom:883.313333pt;}
.y2e5{bottom:885.876000pt;}
.y31b{bottom:889.861333pt;}
.y163{bottom:894.245333pt;}
.ya6{bottom:898.229333pt;}
.y7{bottom:900.404000pt;}
.y2e4{bottom:901.218667pt;}
.y31a{bottom:905.204000pt;}
.y162{bottom:910.982667pt;}
.ya5{bottom:914.966667pt;}
.y2e3{bottom:916.561333pt;}
.y319{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.y160{bottom:927.720000pt;}
.ya4{bottom:931.704000pt;}
.y2e2{bottom:931.904000pt;}
.y161{bottom:932.541333pt;}
.y318{bottom:935.889333pt;}
.y196{bottom:936.526667pt;}
.y15f{bottom:944.456000pt;}
.y2e1{bottom:947.246667pt;}
.ya3{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y317{bottom:951.230667pt;}
.y15e{bottom:961.193333pt;}
.y2e0{bottom:962.589333pt;}
.ya2{bottom:965.178667pt;}
.y316{bottom:966.573333pt;}
.y4{bottom:975.722667pt;}
.ya1{bottom:981.916000pt;}
.y1{bottom:1014.377333pt;}
.y50{bottom:1043.020000pt;}
.y1b3{bottom:1176.741333pt;}
.h37{height:-206.032000pt;}
.h36{height:-187.920000pt;}
.h30{height:-181.541333pt;}
.h35{height:-169.992000pt;}
.h34{height:-152.072000pt;}
.h33{height:-133.992000pt;}
.h32{height:-115.432000pt;}
.h31{height:-96.712000pt;}
.h7{height:22.673858pt;}
.h49{height:26.890973pt;}
.h46{height:27.002554pt;}
.h1b{height:28.023859pt;}
.h48{height:28.252930pt;}
.h9{height:29.433775pt;}
.h27{height:29.499005pt;}
.hb{height:30.063343pt;}
.h8{height:30.399505pt;}
.h40{height:30.732706pt;}
.h41{height:33.186336pt;}
.h45{height:33.474560pt;}
.h39{height:34.090937pt;}
.hd{height:34.574438pt;}
.h42{height:34.717901pt;}
.ha{height:35.073565pt;}
.h23{height:36.873667pt;}
.h1a{height:37.087439pt;}
.h2d{height:37.193707pt;}
.h24{height:38.080100pt;}
.hf{height:38.415786pt;}
.h17{height:38.932188pt;}
.h4{height:38.947124pt;}
.h16{height:39.113750pt;}
.h12{height:40.053437pt;}
.hc{height:40.084290pt;}
.h3a{height:41.125422pt;}
.h3c{height:43.355292pt;}
.h25{height:44.250973pt;}
.h14{height:44.835938pt;}
.he{height:45.095014pt;}
.h2{height:45.272024pt;}
.h19{height:46.174398pt;}
.h3b{height:47.229219pt;}
.h6{height:48.486756pt;}
.h4b{height:49.506263pt;}
.h13{height:49.618437pt;}
.h10{height:50.105236pt;}
.h26{height:50.753565pt;}
.h1f{height:52.428231pt;}
.h20{height:52.433565pt;}
.h18{height:53.862757pt;}
.h47{height:56.326898pt;}
.h29{height:57.015859pt;}
.h2c{height:57.021193pt;}
.h28{height:57.365434pt;}
.h2e{height:60.026767pt;}
.h1c{height:63.801105pt;}
.h3f{height:65.159372pt;}
.h2a{height:67.072100pt;}
.h2b{height:67.077434pt;}
.h38{height:68.183387pt;}
.h3{height:68.781897pt;}
.h5{height:69.148877pt;}
.h4a{height:70.759596pt;}
.h4d{height:70.764930pt;}
.h21{height:74.316348pt;}
.h3d{height:76.814438pt;}
.h4c{height:77.580231pt;}
.h4e{height:77.585565pt;}
.h3e{height:79.134959pt;}
.h1e{height:103.543014pt;}
.h44{height:105.164348pt;}
.h43{height:108.439014pt;}
.h22{height:110.316231pt;}
.h1d{height:134.439014pt;}
.h2f{height:230.613333pt;}
.h11{height:236.134667pt;}
.h15{height:284.496000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:22.154667pt;}
.w3{width:66.991004pt;}
.wc{width:124.554667pt;}
.w9{width:130.912000pt;}
.wb{width:131.072000pt;}
.w2{width:184.542183pt;}
.wa{width:386.541333pt;}
.w7{width:495.293333pt;}
.w5{width:545.633600pt;}
.w4{width:602.652800pt;}
.w6{width:684.621333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x43{left:-83.945067pt;}
.x46{left:-55.625067pt;}
.x15{left:-45.009867pt;}
.x18{left:-16.689867pt;}
.xb2{left:-6.786667pt;}
.x0{left:0.000000pt;}
.xc2{left:8.320000pt;}
.xd2{left:11.645379pt;}
.xb6{left:13.280000pt;}
.xb9{left:21.533333pt;}
.x3{left:26.021437pt;}
.xd0{left:31.446671pt;}
.xc1{left:34.760000pt;}
.xbd{left:36.160000pt;}
.xbf{left:38.720000pt;}
.xba{left:41.000000pt;}
.xc3{left:42.080000pt;}
.xbe{left:44.960000pt;}
.xc0{left:46.440000pt;}
.x1{left:48.000000pt;}
.x2{left:51.603593pt;}
.xb1{left:54.540000pt;}
.xec{left:56.353333pt;}
.xe1{left:58.677333pt;}
.x64{left:60.582667pt;}
.xea{left:62.209333pt;}
.xe9{left:63.177333pt;}
.xeb{left:64.669333pt;}
.xe8{left:69.522667pt;}
.x65{left:72.801333pt;}
.x1a{left:76.346667pt;}
.xe4{left:78.437333pt;}
.xf6{left:80.162667pt;}
.x61{left:81.110667pt;}
.xf7{left:88.393333pt;}
.x44{left:90.001600pt;}
.x14{left:95.524533pt;}
.xff{left:100.197333pt;}
.xbc{left:101.306667pt;}
.xf9{left:102.290667pt;}
.xe5{left:103.936000pt;}
.xca{left:105.603733pt;}
.xc4{left:116.784721pt;}
.x45{left:118.361600pt;}
.xf4{left:121.485333pt;}
.xe6{left:123.048000pt;}
.x42{left:124.034400pt;}
.x1b{left:127.218667pt;}
.x16{left:128.936800pt;}
.x4a{left:131.121333pt;}
.x4b{left:137.098667pt;}
.xc9{left:139.780075pt;}
.xc6{left:147.756367pt;}
.x60{left:155.358667pt;}
.x19{left:157.256800pt;}
.xfa{left:160.033333pt;}
.xf8{left:164.296000pt;}
.xb3{left:167.160000pt;}
.x66{left:176.310667pt;}
.x7a{left:179.656000pt;}
.x68{left:181.572000pt;}
.x7b{left:183.476000pt;}
.xb4{left:185.640000pt;}
.x79{left:187.284000pt;}
.x6e{left:192.185333pt;}
.xcf{left:193.250772pt;}
.xb7{left:195.480000pt;}
.x6b{left:198.378667pt;}
.x6c{left:200.942667pt;}
.x6d{left:205.306667pt;}
.xe7{left:213.842667pt;}
.xfb{left:215.916000pt;}
.x101{left:217.050667pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xfc{left:225.860000pt;}
.xa8{left:227.258667pt;}
.x88{left:235.821333pt;}
.xc5{left:237.457153pt;}
.x5{left:241.085333pt;}
.x8a{left:242.838667pt;}
.x8c{left:244.396000pt;}
.x7c{left:245.334667pt;}
.x5c{left:246.594667pt;}
.x8b{left:248.514667pt;}
.x89{left:250.012000pt;}
.xb{left:251.365333pt;}
.x5d{left:252.645333pt;}
.x8d{left:254.001333pt;}
.x8e{left:254.922667pt;}
.x81{left:258.894667pt;}
.xd9{left:260.714667pt;}
.xd7{left:266.441333pt;}
.x38{left:268.026667pt;}
.x82{left:268.953333pt;}
.xd8{left:271.198667pt;}
.x47{left:272.772000pt;}
.x39{left:274.668000pt;}
.x7{left:277.241333pt;}
.x22{left:278.157333pt;}
.xf5{left:281.562667pt;}
.xd5{left:282.994667pt;}
.x100{left:284.142667pt;}
.xa{left:285.386667pt;}
.x67{left:289.334667pt;}
.x23{left:291.440000pt;}
.x9e{left:294.612000pt;}
.x104{left:296.649333pt;}
.x96{left:298.481333pt;}
.xa9{left:299.545333pt;}
.x28{left:302.036000pt;}
.xaa{left:308.692000pt;}
.x29{left:315.318667pt;}
.x1c{left:317.125333pt;}
.x6f{left:318.873333pt;}
.x10b{left:320.617333pt;}
.x2a{left:322.093333pt;}
.x1d{left:323.102667pt;}
.x74{left:325.574667pt;}
.x97{left:327.697333pt;}
.x36{left:329.922667pt;}
.x4e{left:331.904000pt;}
.x10d{left:333.484000pt;}
.x2b{left:335.377333pt;}
.x4f{left:338.546667pt;}
.x48{left:340.331277pt;}
.x37{left:343.206667pt;}
.x24{left:345.674667pt;}
.x34{left:348.076000pt;}
.xbb{left:352.620000pt;}
.x102{left:356.853333pt;}
.x25{left:358.958667pt;}
.x35{left:361.360000pt;}
.xfd{left:362.316000pt;}
.xd4{left:363.246229pt;}
.x105{left:365.534667pt;}
.x98{left:367.572000pt;}
.xd6{left:370.452000pt;}
.xa2{left:371.918667pt;}
.x106{left:373.740000pt;}
.xa0{left:379.976000pt;}
.xa6{left:381.570667pt;}
.x95{left:384.981333pt;}
.xc{left:387.068000pt;}
.xb0{left:389.684000pt;}
.x90{left:391.333333pt;}
.xd{left:393.710667pt;}
.xa7{left:394.854667pt;}
.xe{left:397.004000pt;}
.x7f{left:399.645333pt;}
.x103{left:401.529333pt;}
.xf{left:403.646667pt;}
.xdc{left:406.384000pt;}
.x80{left:409.334667pt;}
.x8{left:412.906667pt;}
.x54{left:415.566667pt;}
.xa3{left:417.769333pt;}
.xcd{left:418.985737pt;}
.xdd{left:420.526667pt;}
.x9{left:423.493333pt;}
.x99{left:426.260000pt;}
.xc7{left:430.778832pt;}
.x86{left:433.728000pt;}
.x50{left:442.174667pt;}
.x87{left:443.361333pt;}
.x9a{left:444.865333pt;}
.x51{left:448.816000pt;}
.xab{left:451.869333pt;}
.x2c{left:459.297333pt;}
.xac{left:461.014667pt;}
.x2d{left:472.581333pt;}
.x6a{left:475.210667pt;}
.x75{left:478.614667pt;}
.x69{left:482.121333pt;}
.x76{left:483.626667pt;}
.xde{left:489.168000pt;}
.x70{left:490.900000pt;}
.x55{left:492.302667pt;}
.x71{left:498.712000pt;}
.x72{left:500.505333pt;}
.x3c{left:501.602667pt;}
.x56{left:503.700000pt;}
.x49{left:508.746046pt;}
.x9b{left:510.289333pt;}
.x3a{left:511.865333pt;}
.xce{left:512.763295pt;}
.x3d{left:514.885333pt;}
.x3e{left:521.613333pt;}
.xcc{left:523.504701pt;}
.x3b{left:525.148000pt;}
.xdf{left:527.968000pt;}
.x57{left:528.984000pt;}
.xe0{left:533.680000pt;}
.x3f{left:534.897333pt;}
.xa5{left:538.382667pt;}
.x58{left:539.748000pt;}
.xad{left:544.738667pt;}
.xa1{left:554.397333pt;}
.xd1{left:555.882538pt;}
.xae{left:557.849333pt;}
.xd3{left:560.845564pt;}
.x40{left:567.866667pt;}
.xaf{left:569.144000pt;}
.x5e{left:572.025333pt;}
.x41{left:574.508000pt;}
.xed{left:575.793333pt;}
.x85{left:578.928000pt;}
.xc8{left:583.640033pt;}
.x5f{left:585.308000pt;}
.x10{left:586.290667pt;}
.x109{left:587.692000pt;}
.x11{left:592.932000pt;}
.xef{left:594.338667pt;}
.xcb{left:596.697518pt;}
.xf0{left:600.050667pt;}
.x10a{left:600.974667pt;}
.x52{left:602.536000pt;}
.x17{left:606.003467pt;}
.x4c{left:607.062667pt;}
.xe2{left:609.005333pt;}
.x53{left:610.740000pt;}
.x4d{left:614.366667pt;}
.x77{left:617.066667pt;}
.x5b{left:620.388000pt;}
.x78{left:621.666667pt;}
.x62{left:626.132000pt;}
.x73{left:630.193333pt;}
.x12{left:631.273333pt;}
.xfe{left:635.225333pt;}
.x13{left:637.916000pt;}
.xf2{left:639.790667pt;}
.x63{left:646.037333pt;}
.xa4{left:647.644000pt;}
.xf3{left:648.936000pt;}
.x2e{left:653.997333pt;}
.x9f{left:655.681333pt;}
.x8f{left:657.253333pt;}
.xdb{left:659.618667pt;}
.x9c{left:660.922667pt;}
.x1e{left:662.708000pt;}
.xda{left:664.972000pt;}
.x2f{left:667.280000pt;}
.x26{left:668.449333pt;}
.x1f{left:670.013333pt;}
.x93{left:671.585333pt;}
.x9d{left:673.416000pt;}
.xe3{left:675.169333pt;}
.x7d{left:680.684000pt;}
.x27{left:681.733333pt;}
.x10c{left:683.340000pt;}
.x94{left:686.468000pt;}
.xb8{left:689.186667pt;}
.x30{left:691.305333pt;}
.x110{left:693.232000pt;}
.x7e{left:694.929333pt;}
.x111{left:696.070667pt;}
.x91{left:697.081333pt;}
.xee{left:699.028000pt;}
.x112{left:701.261333pt;}
.x59{left:703.133333pt;}
.x31{left:704.589333pt;}
.x107{left:706.680000pt;}
.x32{left:707.969333pt;}
.x92{left:709.689333pt;}
.x5a{left:712.585333pt;}
.x108{left:714.885333pt;}
.xb5{left:717.006667pt;}
.x10e{left:720.313333pt;}
.x33{left:721.253333pt;}
.x10f{left:723.552000pt;}
.x113{left:725.172000pt;}
.x20{left:732.828000pt;}
.x83{left:736.889333pt;}
.x21{left:739.469333pt;}
.x84{left:742.601333pt;}
.xf1{left:744.710667pt;}
}




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