
    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_1fd3f21da0407bdbd31efd51.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_76e36de277386a10d2ae7743.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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_c8f3befa046420821bb80ea9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d7c845f0e6bccbfca8337510.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3ec53bb6144ab3717038ae24.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940430;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_df4340d675d8aa87120ef056.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_9b8615bcd70471982f3fd9cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_34be9ef8cf4962d4878f7d4e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_844059fa41e2bb4195add362.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.758789;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_d5777ce832ee998378b83763.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.106934;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_48648d8ce004dd7e7de58dac.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.708008;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_11f16a32f105c76d59118489.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.688477;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_872dc93c140b492145b96101.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;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_1075f71483481d6f4863cc34.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.095215;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;}
.m45{transform:matrix(0.000000,-0.249919,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249919,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249919,0.250000,0.000000,0,0);}
.m43{transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249992,0.250000,0.000000,0,0);}
.m47{transform:matrix(0.000000,-0.250081,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250081,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250081,0.250000,0.000000,0,0);}
.m28{transform:matrix(0.139941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139941,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.141724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141724,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.145653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145653,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.148258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148258,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.148280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148280,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.165603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165603,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.167008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167008,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.191008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191008,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191135,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.191377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191377,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.191472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191472,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.193087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193087,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.193214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193214,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.193718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193718,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.194896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194896,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.232178,0.000000,-0.077385,0.237722,0,0);-ms-transform:matrix(0.232178,0.000000,-0.077385,0.237722,0,0);-webkit-transform:matrix(0.232178,0.000000,-0.077385,0.237722,0,0);}
.m37{transform:matrix(0.232986,0.000000,-0.077654,0.237634,0,0);-ms-transform:matrix(0.232986,0.000000,-0.077654,0.237634,0,0);-webkit-transform:matrix(0.232986,0.000000,-0.077654,0.237634,0,0);}
.m1e{transform:matrix(0.235387,0.000000,-0.078454,0.237371,0,0);-ms-transform:matrix(0.235387,0.000000,-0.078454,0.237371,0,0);-webkit-transform:matrix(0.235387,0.000000,-0.078454,0.237371,0,0);}
.m23{transform:matrix(0.235615,0.000000,-0.078530,0.237346,0,0);-ms-transform:matrix(0.235615,0.000000,-0.078530,0.237346,0,0);-webkit-transform:matrix(0.235615,0.000000,-0.078530,0.237346,0,0);}
.m14{transform:matrix(0.236330,0.000000,-0.078769,0.237267,0,0);-ms-transform:matrix(0.236330,0.000000,-0.078769,0.237267,0,0);-webkit-transform:matrix(0.236330,0.000000,-0.078769,0.237267,0,0);}
.m6{transform:matrix(0.237661,0.000000,-0.079212,0.237119,0,0);-ms-transform:matrix(0.237661,0.000000,-0.079212,0.237119,0,0);-webkit-transform:matrix(0.237661,0.000000,-0.079212,0.237119,0,0);}
.m8{transform:matrix(0.237681,0.000000,-0.079219,0.237117,0,0);-ms-transform:matrix(0.237681,0.000000,-0.079219,0.237117,0,0);-webkit-transform:matrix(0.237681,0.000000,-0.079219,0.237117,0,0);}
.m25{transform:matrix(0.238271,0.000000,-0.079416,0.237051,0,0);-ms-transform:matrix(0.238271,0.000000,-0.079416,0.237051,0,0);-webkit-transform:matrix(0.238271,0.000000,-0.079416,0.237051,0,0);}
.m3a{transform:matrix(0.240678,0.000000,-0.080218,0.236781,0,0);-ms-transform:matrix(0.240678,0.000000,-0.080218,0.236781,0,0);-webkit-transform:matrix(0.240678,0.000000,-0.080218,0.236781,0,0);}
.m17{transform:matrix(0.240821,0.000000,-0.080266,0.236764,0,0);-ms-transform:matrix(0.240821,0.000000,-0.080266,0.236764,0,0);-webkit-transform:matrix(0.240821,0.000000,-0.080266,0.236764,0,0);}
.m2a{transform:matrix(0.241095,0.000000,-0.080357,0.236734,0,0);-ms-transform:matrix(0.241095,0.000000,-0.080357,0.236734,0,0);-webkit-transform:matrix(0.241095,0.000000,-0.080357,0.236734,0,0);}
.m3e{transform:matrix(0.241202,0.000000,-0.080393,0.236721,0,0);-ms-transform:matrix(0.241202,0.000000,-0.080393,0.236721,0,0);-webkit-transform:matrix(0.241202,0.000000,-0.080393,0.236721,0,0);}
.m1d{transform:matrix(0.242620,0.000000,-0.080865,0.236560,0,0);-ms-transform:matrix(0.242620,0.000000,-0.080865,0.236560,0,0);-webkit-transform:matrix(0.242620,0.000000,-0.080865,0.236560,0,0);}
.m13{transform:matrix(0.242926,0.000000,-0.080967,0.236525,0,0);-ms-transform:matrix(0.242926,0.000000,-0.080967,0.236525,0,0);-webkit-transform:matrix(0.242926,0.000000,-0.080967,0.236525,0,0);}
.m41{transform:matrix(0.243734,0.000000,-0.081237,0.236433,0,0);-ms-transform:matrix(0.243734,0.000000,-0.081237,0.236433,0,0);-webkit-transform:matrix(0.243734,0.000000,-0.081237,0.236433,0,0);}
.m2d{transform:matrix(0.243843,0.000000,-0.081273,0.236421,0,0);-ms-transform:matrix(0.243843,0.000000,-0.081273,0.236421,0,0);-webkit-transform:matrix(0.243843,0.000000,-0.081273,0.236421,0,0);}
.m19{transform:matrix(0.244170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244170,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.245059,0.000000,-0.081678,0.236281,0,0);-ms-transform:matrix(0.245059,0.000000,-0.081678,0.236281,0,0);-webkit-transform:matrix(0.245059,0.000000,-0.081678,0.236281,0,0);}
.m35{transform:matrix(0.245091,0.000000,-0.081689,0.236277,0,0);-ms-transform:matrix(0.245091,0.000000,-0.081689,0.236277,0,0);-webkit-transform:matrix(0.245091,0.000000,-0.081689,0.236277,0,0);}
.m36{transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245110,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246208,0.000000,-0.082061,0.236148,0,0);-ms-transform:matrix(0.246208,0.000000,-0.082061,0.236148,0,0);-webkit-transform:matrix(0.246208,0.000000,-0.082061,0.236148,0,0);}
.m20{transform:matrix(0.246235,0.000000,-0.082070,0.236145,0,0);-ms-transform:matrix(0.246235,0.000000,-0.082070,0.236145,0,0);-webkit-transform:matrix(0.246235,0.000000,-0.082070,0.236145,0,0);}
.mc{transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247289,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247397,0.000000,-0.082457,0.236010,0,0);-ms-transform:matrix(0.247397,0.000000,-0.082457,0.236010,0,0);-webkit-transform:matrix(0.247397,0.000000,-0.082457,0.236010,0,0);}
.m4{transform:matrix(0.247476,0.000000,-0.082484,0.236001,0,0);-ms-transform:matrix(0.247476,0.000000,-0.082484,0.236001,0,0);-webkit-transform:matrix(0.247476,0.000000,-0.082484,0.236001,0,0);}
.m9{transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248919,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,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);}
.m44{transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250008,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250081,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252482,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254115,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254605,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.256404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256404,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256765,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.256880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256880,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.257049,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257049,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257049,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.257553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257553,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257720,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257849,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.259288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259288,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.259325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259325,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.260681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260681,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.262062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262062,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.262069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262069,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.262156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262156,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-59.448313px;}
.v5{vertical-align:-56.300989px;}
.v7{vertical-align:-45.503754px;}
.vb{vertical-align:-36.343302px;}
.v2{vertical-align:-27.360060px;}
.v3{vertical-align:-15.119940px;}
.v8{vertical-align:-9.310034px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:9.348508px;}
.v6{vertical-align:19.794069px;}
.v1{vertical-align:30.240240px;}
.v9{vertical-align:36.256074px;}
.ls62{letter-spacing:-0.700490px;}
.ls5d{letter-spacing:-0.698808px;}
.ls5b{letter-spacing:-0.697607px;}
.ls8{letter-spacing:-0.648000px;}
.lsd{letter-spacing:-0.504000px;}
.ls1d{letter-spacing:-0.480231px;}
.ls7{letter-spacing:-0.360000px;}
.ls51{letter-spacing:-0.317400px;}
.ls4{letter-spacing:-0.302400px;}
.ls54{letter-spacing:-0.234540px;}
.lsc{letter-spacing:-0.216000px;}
.ls53{letter-spacing:-0.145200px;}
.ls2b{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.005040px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000060px;}
.lse{letter-spacing:0.005040px;}
.ls61{letter-spacing:0.014529px;}
.ls50{letter-spacing:0.015101px;}
.ls9{letter-spacing:0.052560px;}
.ls1{letter-spacing:0.071940px;}
.ls66{letter-spacing:0.072000px;}
.ls65{letter-spacing:0.143940px;}
.ls1e{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.144060px;}
.ls6{letter-spacing:0.179985px;}
.ls64{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.190140px;}
.ls1b{letter-spacing:0.204309px;}
.ls2e{letter-spacing:0.215408px;}
.ls1c{letter-spacing:0.215410px;}
.ls2f{letter-spacing:0.215470px;}
.ls37{letter-spacing:0.215940px;}
.ls1a{letter-spacing:0.216000px;}
.ls55{letter-spacing:0.280260px;}
.ls5{letter-spacing:0.288000px;}
.ls5c{letter-spacing:0.335013px;}
.ls5e{letter-spacing:0.335492px;}
.ls63{letter-spacing:0.336517px;}
.lsa{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.360030px;}
.ls0{letter-spacing:0.417631px;}
.lsf{letter-spacing:0.720360px;}
.lsb{letter-spacing:1.002060px;}
.ls38{letter-spacing:1.008060px;}
.ls13{letter-spacing:2.159700px;}
.ls56{letter-spacing:2.339925px;}
.ls23{letter-spacing:3.600060px;}
.ls12{letter-spacing:5.040000px;}
.ls11{letter-spacing:5.040120px;}
.ls22{letter-spacing:10.800120px;}
.ls29{letter-spacing:24.842922px;}
.ls24{letter-spacing:28.800000px;}
.ls28{letter-spacing:30.744521px;}
.ls2a{letter-spacing:30.969344px;}
.ls27{letter-spacing:38.445023px;}
.ls25{letter-spacing:38.911024px;}
.ls35{letter-spacing:52.928788px;}
.ls45{letter-spacing:54.047900px;}
.ls4d{letter-spacing:63.317877px;}
.ls3c{letter-spacing:78.251251px;}
.ls4e{letter-spacing:78.991416px;}
.ls42{letter-spacing:83.607229px;}
.ls16{letter-spacing:91.882298px;}
.ls2c{letter-spacing:92.427945px;}
.ls18{letter-spacing:96.876518px;}
.ls2d{letter-spacing:97.403954px;}
.ls21{letter-spacing:105.900545px;}
.ls1f{letter-spacing:112.464060px;}
.ls32{letter-spacing:118.307536px;}
.ls20{letter-spacing:124.876995px;}
.ls26{letter-spacing:144.847371px;}
.ls57{letter-spacing:151.588103px;}
.ls5f{letter-spacing:152.214580px;}
.ls36{letter-spacing:162.004734px;}
.ls34{letter-spacing:200.420346px;}
.ls17{letter-spacing:203.117198px;}
.ls31{letter-spacing:203.282392px;}
.ls33{letter-spacing:205.596194px;}
.ls30{letter-spacing:208.387926px;}
.ls59{letter-spacing:211.877761px;}
.ls19{letter-spacing:213.048885px;}
.ls3a{letter-spacing:241.022000px;}
.ls40{letter-spacing:241.424566px;}
.ls58{letter-spacing:259.179218px;}
.ls5a{letter-spacing:259.549612px;}
.ls60{letter-spacing:260.343315px;}
.ls39{letter-spacing:273.629844px;}
.ls3f{letter-spacing:274.032410px;}
.ls3b{letter-spacing:276.495867px;}
.ls41{letter-spacing:281.794088px;}
.ls3d{letter-spacing:291.457765px;}
.ls4f{letter-spacing:298.588934px;}
.ls43{letter-spacing:301.464405px;}
.ls3e{letter-spacing:447.480835px;}
.ls44{letter-spacing:457.544985px;}
.ls47{letter-spacing:461.958087px;}
.ls48{letter-spacing:465.951115px;}
.ls46{letter-spacing:466.538325px;}
.ls4c{letter-spacing:487.149395px;}
.ls49{letter-spacing:501.576272px;}
.ls4a{letter-spacing:931.138858px;}
.ls4b{letter-spacing:941.415032px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4b{word-spacing:-72.000000px;}
.ws20{word-spacing:-48.681167px;}
.wsa{word-spacing:-18.288000px;}
.ws49{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.071940px;}
.ws1{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.856000px;}
.ws48{word-spacing:-17.784000px;}
.ws4c{word-spacing:-15.220275px;}
.ws8{word-spacing:-15.130155px;}
.ws5{word-spacing:-14.992575px;}
.ws7{word-spacing:-14.945055px;}
.ws6{word-spacing:-14.940015px;}
.ws9{word-spacing:-14.934975px;}
.ws4a{word-spacing:-14.622615px;}
.ws58{word-spacing:-12.128071px;}
.ws53{word-spacing:-12.091097px;}
.ws50{word-spacing:-12.073842px;}
.wse{word-spacing:-10.440015px;}
.ws0{word-spacing:-10.137615px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.ws24{word-spacing:4.048425px;}
.ws37{word-spacing:5.251382px;}
.ws32{word-spacing:6.308814px;}
.ws27{word-spacing:9.318894px;}
.ws3c{word-spacing:11.828482px;}
.ws39{word-spacing:11.904992px;}
.ws47{word-spacing:12.440562px;}
.ws3d{word-spacing:13.392149px;}
.ws3f{word-spacing:13.499786px;}
.wsc{word-spacing:17.537998px;}
.ws23{word-spacing:17.677273px;}
.ws10{word-spacing:29.093014px;}
.ws12{word-spacing:29.573245px;}
.ws1b{word-spacing:30.424765px;}
.ws1f{word-spacing:32.716442px;}
.ws44{word-spacing:38.484444px;}
.ws1e{word-spacing:42.760963px;}
.ws22{word-spacing:44.390209px;}
.ws26{word-spacing:44.765690px;}
.ws36{word-spacing:45.244446px;}
.ws2f{word-spacing:46.254246px;}
.ws3a{word-spacing:48.365886px;}
.ws41{word-spacing:50.096527px;}
.ws18{word-spacing:61.065308px;}
.wsb{word-spacing:63.221277px;}
.wsd{word-spacing:63.553583px;}
.ws42{word-spacing:64.471427px;}
.ws1a{word-spacing:66.100139px;}
.ws33{word-spacing:67.369804px;}
.ws19{word-spacing:72.830696px;}
.ws31{word-spacing:74.033547px;}
.wsf{word-spacing:84.507915px;}
.ws11{word-spacing:91.989860px;}
.ws2e{word-spacing:93.965647px;}
.ws30{word-spacing:96.736128px;}
.ws45{word-spacing:99.474309px;}
.ws38{word-spacing:101.314991px;}
.ws34{word-spacing:102.206326px;}
.ws3e{word-spacing:105.139322px;}
.ws3b{word-spacing:110.115555px;}
.ws17{word-spacing:116.808081px;}
.ws16{word-spacing:117.182176px;}
.ws4d{word-spacing:119.833752px;}
.ws54{word-spacing:125.493818px;}
.ws55{word-spacing:133.815581px;}
.ws4e{word-spacing:135.733419px;}
.ws56{word-spacing:142.477706px;}
.ws25{word-spacing:143.727055px;}
.ws28{word-spacing:153.900506px;}
.ws1c{word-spacing:167.073230px;}
.ws1d{word-spacing:167.080980px;}
.ws51{word-spacing:197.048288px;}
.ws46{word-spacing:209.801668px;}
.ws4f{word-spacing:239.077523px;}
.ws52{word-spacing:239.419191px;}
.ws57{word-spacing:240.151334px;}
.ws43{word-spacing:248.007363px;}
.ws40{word-spacing:248.658210px;}
.ws14{word-spacing:279.354936px;}
.ws2a{word-spacing:282.323169px;}
.ws2c{word-spacing:282.338784px;}
.ws15{word-spacing:362.004908px;}
.ws13{word-spacing:362.049715px;}
.ws2b{word-spacing:365.839372px;}
.ws29{word-spacing:366.021624px;}
.ws35{word-spacing:669.287951px;}
.ws2d{word-spacing:679.103244px;}
._37{margin-left:-292.777375px;}
._38{margin-left:-223.596936px;}
._39{margin-left:-168.240482px;}
._69{margin-left:-5.040000px;}
._4{margin-left:-1.080000px;}
._2{width:1.080000px;}
._3{width:2.232000px;}
._1{width:3.456000px;}
._0{width:4.464000px;}
._7{width:6.192000px;}
._6{width:7.272000px;}
._a{width:9.000000px;}
._d{width:10.200000px;}
._b{width:11.400000px;}
._c{width:12.816000px;}
._8{width:14.040000px;}
._9{width:15.564000px;}
._f{width:16.704000px;}
._6c{width:19.008000px;}
._11{width:20.016000px;}
._10{width:21.024000px;}
._53{width:22.104000px;}
._12{width:23.112000px;}
._5{width:24.552000px;}
._13{width:26.136000px;}
._e{width:27.648000px;}
._44{width:28.800000px;}
._15{width:29.808000px;}
._14{width:31.104000px;}
._16{width:32.184000px;}
._17{width:33.480000px;}
._18{width:35.064000px;}
._52{width:52.437713px;}
._4a{width:53.651893px;}
._2b{width:62.144201px;}
._3a{width:64.392573px;}
._35{width:73.148903px;}
._36{width:77.486310px;}
._63{width:85.622195px;}
._23{width:92.946203px;}
._27{width:95.661790px;}
._51{width:102.440002px;}
._20{width:105.022547px;}
._1a{width:107.044173px;}
._1f{width:112.271938px;}
._58{width:113.759940px;}
._49{width:115.762928px;}
._3b{width:118.276543px;}
._26{width:119.764015px;}
._46{width:121.329929px;}
._22{width:130.216299px;}
._24{width:131.382290px;}
._45{width:132.473554px;}
._31{width:140.256008px;}
._4e{width:141.721307px;}
._34{width:144.643504px;}
._28{width:146.010101px;}
._19{width:147.170161px;}
._32{width:148.959073px;}
._54{width:150.567611px;}
._2e{width:152.339603px;}
._4b{width:153.885299px;}
._56{width:155.605724px;}
._21{width:167.236538px;}
._1c{width:171.360120px;}
._47{width:177.067853px;}
._5a{width:182.172898px;}
._25{width:186.475403px;}
._50{width:190.800120px;}
._1d{width:194.400000px;}
._40{width:195.500807px;}
._3f{width:204.190545px;}
._3e{width:205.934974px;}
._43{width:214.363997px;}
._1b{width:215.561091px;}
._3c{width:217.031344px;}
._1e{width:225.480123px;}
._41{width:227.132643px;}
._59{width:232.709988px;}
._29{width:245.124346px;}
._2f{width:248.432950px;}
._30{width:249.727621px;}
._4c{width:250.837356px;}
._4d{width:252.132929px;}
._6d{width:253.740531px;}
._6a{width:259.322796px;}
._2c{width:263.954255px;}
._48{width:266.262337px;}
._33{width:275.261407px;}
._4f{width:277.428444px;}
._64{width:297.057312px;}
._65{width:302.232277px;}
._68{width:307.335366px;}
._5d{width:311.424689px;}
._60{width:319.774741px;}
._55{width:329.173247px;}
._3d{width:330.889696px;}
._57{width:339.177500px;}
._5f{width:343.991362px;}
._42{width:346.041645px;}
._62{width:362.679831px;}
._6b{width:430.179060px;}
._6e{width:432.116050px;}
._2a{width:451.768198px;}
._5e{width:460.785664px;}
._66{width:487.524740px;}
._67{width:489.249728px;}
._61{width:495.927045px;}
._2d{width:524.031301px;}
._5b{width:532.523922px;}
._5c{width:539.304890px;}
.fc2{color:rgb(30,45,83);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs3e{font-size:41.512222px;}
.fs5{font-size:41.538290px;}
.fs12{font-size:41.541490px;}
.fsd{font-size:41.558876px;}
.fs1b{font-size:41.616155px;}
.fs2d{font-size:41.632985px;}
.fs16{font-size:41.642564px;}
.fsf{font-size:41.653560px;}
.fs31{font-size:41.661553px;}
.fs8{font-size:41.680171px;}
.fs24{font-size:41.720121px;}
.fs1{font-size:41.760060px;}
.fs44{font-size:41.814675px;}
.fs47{font-size:43.431085px;}
.fs46{font-size:43.432464px;}
.fs4a{font-size:43.493153px;}
.fs49{font-size:43.507290px;}
.fs4c{font-size:43.611960px;}
.fs4d{font-size:43.626155px;}
.fs40{font-size:43.840793px;}
.fs39{font-size:43.849156px;}
.fs42{font-size:44.052157px;}
.fs35{font-size:44.080524px;}
.fs37{font-size:44.081212px;}
.fs3{font-size:59.760060px;}
.fs48{font-size:60.078376px;}
.fs4b{font-size:60.164235px;}
.fs4e{font-size:60.348217px;}
.fs1e{font-size:71.746583px;}
.fse{font-size:71.834602px;}
.fs3f{font-size:71.874501px;}
.fs4{font-size:71.877041px;}
.fs1c{font-size:71.880544px;}
.fs13{font-size:71.882579px;}
.fs20{font-size:71.887097px;}
.fs17{font-size:71.926158px;}
.fs30{font-size:71.973045px;}
.fs2c{font-size:71.976286px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:72.018923px;}
.fs10{font-size:72.076502px;}
.fs23{font-size:72.152136px;}
.fs45{font-size:72.289932px;}
.fs22{font-size:75.361362px;}
.fs19{font-size:75.394458px;}
.fs1f{font-size:75.738723px;}
.fsa{font-size:75.782335px;}
.fs28{font-size:75.803371px;}
.fs27{font-size:75.858681px;}
.fs1d{font-size:75.898792px;}
.fs41{font-size:75.906201px;}
.fs9{font-size:75.931224px;}
.fs21{font-size:75.971191px;}
.fs2e{font-size:76.009802px;}
.fs18{font-size:76.023691px;}
.fs43{font-size:76.102969px;}
.fs32{font-size:76.106985px;}
.fs6{font-size:76.137671px;}
.fs7{font-size:76.140654px;}
.fs36{font-size:76.151976px;}
.fs38{font-size:76.153164px;}
.fs3b{font-size:76.331336px;}
.fs26{font-size:76.384381px;}
.fs25{font-size:76.385376px;}
.fsc{font-size:93.970980px;}
.fs11{font-size:94.113906px;}
.fs1a{font-size:94.143707px;}
.fs3d{font-size:94.170864px;}
.fs15{font-size:94.203449px;}
.fs34{font-size:94.240695px;}
.fs2a{font-size:94.258712px;}
.fs3a{font-size:94.727204px;}
.fs14{font-size:109.054977px;}
.fs29{font-size:109.064759px;}
.fs3c{font-size:123.948282px;}
.fs33{font-size:124.122592px;}
.fs2b{font-size:128.858971px;}
.fs2f{font-size:129.005142px;}
.y17a{bottom:-12.824985px;}
.y44{bottom:-12.780030px;}
.y181{bottom:-12.780015px;}
.y17c{bottom:-12.780000px;}
.y78{bottom:-12.779985px;}
.y3d{bottom:-12.779940px;}
.y0{bottom:0.000000px;}
.ye1{bottom:3.429753px;}
.y15e{bottom:3.658614px;}
.y76{bottom:3.959970px;}
.y3b{bottom:3.960015px;}
.y88{bottom:3.960030px;}
.y8a{bottom:3.960045px;}
.y9d{bottom:4.139925px;}
.y7a{bottom:4.139970px;}
.y8d{bottom:4.139985px;}
.y187{bottom:4.140000px;}
.y3e{bottom:4.140015px;}
.y90{bottom:4.140030px;}
.y21b{bottom:4.140060px;}
.y9a{bottom:4.169955px;}
.y1f6{bottom:4.184970px;}
.yd9{bottom:4.263434px;}
.yd1{bottom:4.274936px;}
.y10c{bottom:4.296384px;}
.yc7{bottom:4.298718px;}
.yc0{bottom:4.334188px;}
.yef{bottom:4.413166px;}
.y15f{bottom:4.439958px;}
.y154{bottom:4.815415px;}
.yf6{bottom:5.214252px;}
.y137{bottom:5.256074px;}
.yd5{bottom:5.761775px;}
.yce{bottom:5.797650px;}
.y13f{bottom:5.800197px;}
.y153{bottom:6.248942px;}
.yfc{bottom:7.423790px;}
.yf3{bottom:8.532465px;}
.y129{bottom:8.783990px;}
.yda{bottom:8.917782px;}
.yd2{bottom:8.941840px;}
.yc8{bottom:8.952565px;}
.y10b{bottom:8.986702px;}
.ybf{bottom:8.988177px;}
.yd4{bottom:9.090093px;}
.ycd{bottom:9.125824px;}
.y13e{bottom:9.129833px;}
.y14a{bottom:9.740933px;}
.yf8{bottom:9.845130px;}
.y120{bottom:10.028852px;}
.y126{bottom:10.151995px;}
.yd6{bottom:10.414302px;}
.ycf{bottom:10.450034px;}
.y140{bottom:10.454624px;}
.y133{bottom:10.476061px;}
.y11c{bottom:11.387981px;}
.y134{bottom:12.132045px;}
.y11a{bottom:12.563574px;}
.y135{bottom:12.635971px;}
.y146{bottom:13.085974px;}
.y11b{bottom:13.334979px;}
.y12a{bottom:13.463963px;}
.y149{bottom:13.600664px;}
.y10a{bottom:14.070810px;}
.y128{bottom:14.291955px;}
.y14c{bottom:14.409252px;}
.y122{bottom:14.657429px;}
.y136{bottom:15.408213px;}
.y11e{bottom:15.502923px;}
.y152{bottom:16.358202px;}
.y151{bottom:17.790994px;}
.y127{bottom:18.503657px;}
.yf5{bottom:19.253093px;}
.y11d{bottom:19.726725px;}
.y212{bottom:20.879985px;}
.y24c{bottom:20.880000px;}
.y1a0{bottom:20.880015px;}
.y8b{bottom:20.880030px;}
.y9c{bottom:21.059970px;}
.y242{bottom:21.060000px;}
.y23b{bottom:21.060015px;}
.yf9{bottom:23.920377px;}
.y274{bottom:24.130175px;}
.y28e{bottom:24.164660px;}
.y299{bottom:24.238555px;}
.ydf{bottom:29.335847px;}
.ydd{bottom:31.888818px;}
.yf4{bottom:32.161301px;}
.yde{bottom:32.691721px;}
.ye0{bottom:34.006093px;}
.yf2{bottom:35.478640px;}
.yf7{bottom:36.792179px;}
.y24b{bottom:37.799970px;}
.y224{bottom:37.979925px;}
.y23a{bottom:37.980015px;}
.y273{bottom:39.117473px;}
.y28d{bottom:39.173376px;}
.y298{bottom:39.293169px;}
.y150{bottom:44.808525px;}
.y11f{bottom:46.139059px;}
.y14f{bottom:46.204617px;}
.y118{bottom:48.674220px;}
.y119{bottom:49.445919px;}
.y148{bottom:49.733749px;}
.y121{bottom:50.767782px;}
.y144{bottom:51.424914px;}
.y145{bottom:53.079378px;}
.y147{bottom:53.593186px;}
.y14b{bottom:54.365368px;}
.y14e{bottom:56.350137px;}
.y14d{bottom:57.747697px;}
.y272{bottom:61.610263px;}
.y28c{bottom:61.698310px;}
.y297{bottom:61.886984px;}
.y35{bottom:63.750000px;}
.y271{bottom:71.928698px;}
.y28b{bottom:72.031492px;}
.y296{bottom:72.251764px;}
.y26f{bottom:89.005520px;}
.y294{bottom:90.960274px;}
.y289{bottom:92.490868px;}
.y176{bottom:109.980015px;}
.y39{bottom:110.340000px;}
.y6a{bottom:112.320000px;}
.y2a5{bottom:113.400015px;}
.y98{bottom:114.120000px;}
.y215{bottom:115.020015px;}
.y34{bottom:116.820000px;}
.y38{bottom:117.180000px;}
.y18a{bottom:119.520015px;}
.y292{bottom:120.960000px;}
.y71{bottom:127.080000px;}
.y1b9{bottom:127.260000px;}
.y175{bottom:127.620000px;}
.ye3{bottom:127.980015px;}
.y2a7{bottom:128.340000px;}
.y1d5{bottom:128.520015px;}
.y37{bottom:128.700000px;}
.y24e{bottom:129.960000px;}
.y1ef{bottom:130.320000px;}
.y70{bottom:130.860015px;}
.y69{bottom:132.480015px;}
.y2a4{bottom:133.740000px;}
.y33{bottom:134.100015px;}
.y214{bottom:137.520015px;}
.y291{bottom:141.120000px;}
.y189{bottom:142.020015px;}
.ydc{bottom:143.565015px;}
.y6f{bottom:144.000000px;}
.y1b8{bottom:144.180000px;}
.y174{bottom:144.360015px;}
.y32{bottom:145.260000px;}
.y6e{bottom:147.780000px;}
.y270{bottom:148.667284px;}
.y2a6{bottom:148.680000px;}
.y28a{bottom:148.879745px;}
.y295{bottom:149.335019px;}
.y1ee{bottom:150.480015px;}
.y1d4{bottom:151.020015px;}
.y68{bottom:152.820000px;}
.y24d{bottom:153.540000px;}
.y2a3{bottom:153.900015px;}
.y290{bottom:156.600015px;}
.y288{bottom:156.690015px;}
.y213{bottom:160.020015px;}
.y222{bottom:160.920000px;}
.y1b7{bottom:161.100015px;}
.y6d{bottom:161.280000px;}
.y188{bottom:164.520015px;}
.y221{bottom:164.700000px;}
.ye2{bottom:165.960000px;}
.y26d{bottom:167.760000px;}
.y31{bottom:168.840000px;}
.y1ed{bottom:170.850015px;}
.y67{bottom:173.010000px;}
.y1d3{bottom:173.550015px;}
.y2a2{bottom:174.270015px;}
.y173{bottom:178.230015px;}
.y1b6{bottom:178.590000px;}
.y24a{bottom:178.770015px;}
.y26c{bottom:179.310015px;}
.y97{bottom:179.850015px;}
.y211{bottom:182.550015px;}
.y186{bottom:187.050015px;}
.y30{bottom:189.210000px;}
.y1ec{bottom:191.010000px;}
.y66{bottom:193.350015px;}
.y2a1{bottom:194.430000px;}
.y172{bottom:195.150015px;}
.y1d2{bottom:196.050000px;}
.y1b5{bottom:196.410000px;}
.y96{bottom:198.930000px;}
.ydb{bottom:202.350015px;}
.y2f{bottom:209.370000px;}
.y185{bottom:209.550000px;}
.y1eb{bottom:211.350015px;}
.y171{bottom:211.889970px;}
.y65{bottom:213.510000px;}
.y2a0{bottom:214.769985px;}
.y210{bottom:216.210000px;}
.yd3{bottom:217.889970px;}
.y95{bottom:218.189985px;}
.y1d1{bottom:218.550000px;}
.yd8{bottom:219.314985px;}
.y1b4{bottom:219.990000px;}
.y130{bottom:221.250000px;}
.yd7{bottom:228.269985px;}
.y170{bottom:228.809985px;}
.y2e{bottom:229.710000px;}
.y1ea{bottom:231.510000px;}
.y184{bottom:232.050000px;}
.y64{bottom:233.850015px;}
.y29f{bottom:234.930000px;}
.y94{bottom:237.269985px;}
.y20f{bottom:238.710000px;}
.y1d0{bottom:241.050000px;}
.y12f{bottom:241.590000px;}
.y1b3{bottom:242.490000px;}
.y16f{bottom:245.729985px;}
.y16e{bottom:249.510000px;}
.y2d{bottom:249.870000px;}
.ycc{bottom:250.814985px;}
.y1e9{bottom:251.850015px;}
.yd0{bottom:252.240000px;}
.y63{bottom:254.010000px;}
.y183{bottom:254.550000px;}
.y29e{bottom:255.269985px;}
.y93{bottom:256.350015px;}
.y249{bottom:258.870000px;}
.ycb{bottom:261.210000px;}
.y12e{bottom:261.750000px;}
.y16d{bottom:262.650015px;}
.y1cf{bottom:263.550000px;}
.y1b2{bottom:264.990000px;}
.y2c{bottom:270.210000px;}
.y1e8{bottom:272.010000px;}
.y62{bottom:274.350015px;}
.y92{bottom:275.430000px;}
.y182{bottom:277.050000px;}
.y248{bottom:279.210000px;}
.y16c{bottom:279.389970px;}
.y12d{bottom:282.090000px;}
.y20e{bottom:283.710000px;}
.yca{bottom:283.739985px;}
.y1ce{bottom:286.050000px;}
.y1b1{bottom:288.930000px;}
.y275{bottom:289.002310px;}
.y28f{bottom:289.415325px;}
.y29a{bottom:290.300357px;}
.y2b{bottom:290.370000px;}
.y1e7{bottom:292.350015px;}
.yc9{bottom:292.710000px;}
.y61{bottom:294.510000px;}
.y91{bottom:294.689985px;}
.y29d{bottom:295.769970px;}
.y16b{bottom:296.309970px;}
.y247{bottom:299.370000px;}
.y180{bottom:299.550000px;}
.y16a{bottom:300.090000px;}
.y12c{bottom:302.250000px;}
.y20d{bottom:306.210000px;}
.y1cd{bottom:308.550000px;}
.y2a{bottom:310.710000px;}
.yc6{bottom:310.739985px;}
.y1e6{bottom:312.510000px;}
.y1b0{bottom:312.689985px;}
.y169{bottom:313.590000px;}
.y8f{bottom:313.769970px;}
.y60{bottom:314.850015px;}
.y29c{bottom:315.930000px;}
.y246{bottom:318.989985px;}
.yc5{bottom:319.710000px;}
.y12b{bottom:322.590000px;}
.y17f{bottom:323.489985px;}
.y20c{bottom:328.710000px;}
.y29{bottom:330.870000px;}
.y1cc{bottom:331.050000px;}
.y29b{bottom:331.410000px;}
.y293{bottom:331.439985px;}
.y8e{bottom:332.850015px;}
.y5f{bottom:335.010000px;}
.y1af{bottom:335.189985px;}
.y245{bottom:335.910000px;}
.y125{bottom:338.114985px;}
.y168{bottom:338.970000px;}
.yc4{bottom:342.569985px;}
.y17e{bottom:348.689985px;}
.y28{bottom:351.210000px;}
.y124{bottom:351.569985px;}
.y8c{bottom:351.930000px;}
.y244{bottom:352.650015px;}
.y1e5{bottom:353.010000px;}
.y1cb{bottom:353.550000px;}
.y5e{bottom:355.350015px;}
.y1ae{bottom:357.689985px;}
.yc2{bottom:358.139970px;}
.y167{bottom:359.130000px;}
.yc3{bottom:367.050000px;}
.y243{bottom:370.290000px;}
.y89{bottom:371.189970px;}
.y27{bottom:371.370000px;}
.y17d{bottom:372.269970px;}
.y1e4{bottom:373.350015px;}
.y20b{bottom:373.710000px;}
.y117{bottom:374.114985px;}
.y5d{bottom:375.510000px;}
.y1ca{bottom:376.050000px;}
.y166{bottom:379.470000px;}
.y1ad{bottom:380.189970px;}
.ybe{bottom:385.139970px;}
.y241{bottom:387.930000px;}
.y26{bottom:391.709970px;}
.y1e3{bottom:393.510000px;}
.yc1{bottom:394.050015px;}
.y17b{bottom:394.769985px;}
.y5c{bottom:395.849985px;}
.y20a{bottom:396.209970px;}
.y1c9{bottom:398.550015px;}
.y165{bottom:399.629970px;}
.y1ac{bottom:402.689985px;}
.y123{bottom:405.570000px;}
.y87{bottom:406.469970px;}
.y25{bottom:411.869985px;}
.y1e2{bottom:413.894985px;}
.y240{bottom:414.974985px;}
.y5b{bottom:416.055000px;}
.ybd{bottom:416.775015px;}
.y179{bottom:417.314985px;}
.y209{bottom:418.754970px;}
.y164{bottom:420.014970px;}
.y1c8{bottom:421.094970px;}
.y1ab{bottom:425.234985px;}
.y24{bottom:432.254970px;}
.y1e1{bottom:434.055000px;}
.y86{bottom:434.775015px;}
.y5a{bottom:436.394985px;}
.ybc{bottom:437.115000px;}
.y23f{bottom:438.734985px;}
.y178{bottom:439.814985px;}
.y163{bottom:440.174970px;}
.y208{bottom:441.254970px;}
.y1c7{bottom:443.594970px;}
.y1aa{bottom:447.734985px;}
.y116{bottom:450.795000px;}
.y23{bottom:452.414985px;}
.y1e0{bottom:453.674970px;}
.y85{bottom:455.115000px;}
.y59{bottom:456.555000px;}
.ybb{bottom:457.275015px;}
.y162{bottom:460.514970px;}
.y177{bottom:462.314985px;}
.y207{bottom:463.754970px;}
.y1c6{bottom:466.094970px;}
.y1a9{bottom:470.234985px;}
.y1df{bottom:470.594970px;}
.y115{bottom:471.135000px;}
.y22{bottom:472.754970px;}
.y84{bottom:475.275015px;}
.y161{bottom:476.039985px;}
.y58{bottom:476.894985px;}
.yba{bottom:477.615000px;}
.y287{bottom:479.234985px;}
.y220{bottom:484.455000px;}
.y160{bottom:484.994985px;}
.y206{bottom:486.254970px;}
.y23e{bottom:486.615000px;}
.y1de{bottom:487.334970px;}
.y1c5{bottom:488.594970px;}
.y114{bottom:491.295000px;}
.y1a8{bottom:492.734985px;}
.y21{bottom:492.914985px;}
.y83{bottom:495.615000px;}
.y57{bottom:497.055000px;}
.yb9{bottom:497.775015px;}
.y286{bottom:499.574985px;}
.y26b{bottom:500.115000px;}
.y15d{bottom:503.340000px;}
.y1dd{bottom:504.974985px;}
.y15c{bottom:507.855015px;}
.y205{bottom:508.754970px;}
.y23d{bottom:510.375000px;}
.y1c4{bottom:511.094970px;}
.y113{bottom:511.635000px;}
.y20{bottom:513.254970px;}
.y1a7{bottom:515.234985px;}
.y82{bottom:515.775015px;}
.y56{bottom:517.394985px;}
.yb8{bottom:518.115000px;}
.y285{bottom:519.734985px;}
.y26a{bottom:520.275015px;}
.y1dc{bottom:522.615000px;}
.y112{bottom:527.115000px;}
.y204{bottom:531.254970px;}
.y1f{bottom:533.414985px;}
.y1c3{bottom:533.594970px;}
.y23c{bottom:533.955000px;}
.y81{bottom:536.115000px;}
.y55{bottom:537.555000px;}
.y1a6{bottom:537.734985px;}
.yb7{bottom:538.275015px;}
.y284{bottom:540.074985px;}
.y269{bottom:540.615000px;}
.y6c{bottom:540.974985px;}
.y1db{bottom:546.375000px;}
.y1e{bottom:553.754970px;}
.y111{bottom:554.115000px;}
.y1c2{bottom:556.094970px;}
.y80{bottom:556.275015px;}
.y54{bottom:557.894985px;}
.yb6{bottom:558.615000px;}
.y239{bottom:558.974985px;}
.y1a5{bottom:560.234985px;}
.y268{bottom:560.775015px;}
.y110{bottom:563.115000px;}
.y1da{bottom:568.875000px;}
.y1d{bottom:573.914985px;}
.y203{bottom:576.254970px;}
.y7f{bottom:576.615000px;}
.y53{bottom:578.055000px;}
.y1c1{bottom:578.594970px;}
.yb5{bottom:578.775015px;}
.y283{bottom:580.574985px;}
.y10e{bottom:581.115000px;}
.y1a4{bottom:582.734985px;}
.y10f{bottom:590.115000px;}
.y1d9{bottom:591.375000px;}
.y1c{bottom:594.254970px;}
.y7e{bottom:596.775015px;}
.y52{bottom:598.394985px;}
.y202{bottom:598.754970px;}
.yb4{bottom:599.115000px;}
.y282{bottom:600.734985px;}
.y1c0{bottom:601.094970px;}
.y267{bottom:601.275015px;}
.y1a3{bottom:605.234985px;}
.y109{bottom:611.189985px;}
.y1b{bottom:614.414985px;}
.y7d{bottom:614.594970px;}
.y1d8{bottom:615.314985px;}
.y51{bottom:618.555000px;}
.yb3{bottom:619.274970px;}
.y10d{bottom:620.174970px;}
.y281{bottom:621.074985px;}
.y201{bottom:621.254970px;}
.y266{bottom:621.615000px;}
.y1bf{bottom:623.594970px;}
.y1a2{bottom:627.734985px;}
.y1a{bottom:634.754970px;}
.y50{bottom:638.894985px;}
.y238{bottom:639.254970px;}
.y7c{bottom:639.615000px;}
.y280{bottom:641.234985px;}
.y265{bottom:641.774970px;}
.y200{bottom:643.754970px;}
.y108{bottom:645.914985px;}
.y1be{bottom:647.535000px;}
.y1a1{bottom:650.234985px;}
.y19{bottom:654.914985px;}
.y4f{bottom:659.084970px;}
.y237{bottom:659.445000px;}
.yb2{bottom:659.805000px;}
.y1d7{bottom:661.424970px;}
.y27f{bottom:661.604970px;}
.y263{bottom:662.144985px;}
.y7b{bottom:665.924970px;}
.y107{bottom:666.104970px;}
.y1ff{bottom:666.285000px;}
.y264{bottom:669.705000px;}
.y19f{bottom:672.764970px;}
.y18{bottom:675.285000px;}
.y21f{bottom:678.705000px;}
.y4e{bottom:679.424970px;}
.y236{bottom:679.785000px;}
.yb1{bottom:680.144985px;}
.y27e{bottom:681.764970px;}
.y262{bottom:682.305000px;}
.y15b{bottom:682.844970px;}
.y1d6{bottom:683.924970px;}
.y106{bottom:686.445000px;}
.y1fe{bottom:688.785000px;}
.y15a{bottom:690.764970px;}
.y79{bottom:692.205000px;}
.y17{bottom:695.445000px;}
.y21e{bottom:695.625000px;}
.y1bd{bottom:696.344970px;}
.y4d{bottom:699.584925px;}
.y235{bottom:699.944910px;}
.yb0{bottom:700.305000px;}
.y27d{bottom:702.104970px;}
.y261{bottom:702.644985px;}
.y159{bottom:704.264970px;}
.y19e{bottom:706.424970px;}
.y105{bottom:706.604970px;}
.y1fd{bottom:711.285000px;}
.y21d{bottom:712.365000px;}
.y16{bottom:715.785000px;}
.y77{bottom:718.484985px;}
.y1bc{bottom:718.844970px;}
.y4c{bottom:719.924970px;}
.y234{bottom:720.285000px;}
.yaf{bottom:720.644985px;}
.y27c{bottom:722.264970px;}
.y260{bottom:722.805000px;}
.y104{bottom:726.944910px;}
.y19d{bottom:728.924970px;}
.y21c{bottom:730.004970px;}
.y158{bottom:731.444910px;}
.y1fc{bottom:733.785000px;}
.y15{bottom:735.944910px;}
.yae{bottom:738.285000px;}
.y4b{bottom:740.084925px;}
.y233{bottom:740.444910px;}
.y1bb{bottom:741.344970px;}
.y103{bottom:742.590000px;}
.y27b{bottom:742.604970px;}
.y25f{bottom:743.144985px;}
.y75{bottom:744.764970px;}
.y102{bottom:747.104970px;}
.y21a{bottom:747.644940px;}
.y19c{bottom:751.424970px;}
.y157{bottom:751.785000px;}
.y14{bottom:756.285000px;}
.yad{bottom:758.625000px;}
.y4a{bottom:760.424970px;}
.y232{bottom:760.785000px;}
.y27a{bottom:762.764970px;}
.y25e{bottom:763.305000px;}
.y101{bottom:763.664985px;}
.y6b{bottom:763.844970px;}
.y100{bottom:771.224940px;}
.y219{bottom:771.404940px;}
.y156{bottom:771.945000px;}
.y19b{bottom:773.925015px;}
.y13{bottom:776.445000px;}
.yac{bottom:777.704955px;}
.y49{bottom:778.064940px;}
.y1fb{bottom:778.785000px;}
.y231{bottom:780.945000px;}
.y279{bottom:783.105015px;}
.y25d{bottom:783.644985px;}
.y1ba{bottom:786.344970px;}
.yff{bottom:787.590000px;}
.y218{bottom:793.904940px;}
.y19a{bottom:796.425015px;}
.yfe{bottom:796.605015px;}
.y12{bottom:796.785000px;}
.y1fa{bottom:801.285000px;}
.y48{bottom:801.644985px;}
.y278{bottom:803.265015px;}
.y25c{bottom:803.805000px;}
.y217{bottom:816.404940px;}
.y11{bottom:816.945000px;}
.y199{bottom:818.925015px;}
.yfd{bottom:819.285000px;}
.y230{bottom:821.445000px;}
.y155{bottom:822.164985px;}
.y277{bottom:823.605015px;}
.y1f9{bottom:823.785000px;}
.y47{bottom:824.144985px;}
.yab{bottom:830.625000px;}
.yf1{bottom:834.765015px;}
.y10{bottom:837.285000px;}
.y26e{bottom:839.039985px;}
.y276{bottom:839.085015px;}
.y216{bottom:840.344970px;}
.y22f{bottom:841.064940px;}
.y198{bottom:841.425015px;}
.y25b{bottom:844.305000px;}
.y1f8{bottom:846.285000px;}
.y46{bottom:846.644985px;}
.yaa{bottom:849.704955px;}
.yfb{bottom:851.114955px;}
.yf{bottom:857.445000px;}
.y22e{bottom:857.984985px;}
.yfa{bottom:858.704955px;}
.y197{bottom:863.925015px;}
.y25a{bottom:864.644985px;}
.ya9{bottom:868.785000px;}
.y45{bottom:869.144985px;}
.y143{bottom:870.224940px;}
.y1f7{bottom:870.404940px;}
.y22d{bottom:874.724940px;}
.ye{bottom:877.785000px;}
.y259{bottom:884.805000px;}
.y196{bottom:886.425015px;}
.ya8{bottom:888.044955px;}
.y142{bottom:890.564940px;}
.y43{bottom:891.644985px;}
.y22c{bottom:892.364955px;}
.yf0{bottom:895.064940px;}
.y1f5{bottom:895.425015px;}
.yd{bottom:897.945000px;}
.y258{bottom:905.189940px;}
.ya7{bottom:907.169955px;}
.y195{bottom:908.969970px;}
.y22b{bottom:910.050015px;}
.y141{bottom:910.769985px;}
.yee{bottom:910.890015px;}
.y42{bottom:914.189940px;}
.yed{bottom:915.449985px;}
.yc{bottom:918.329955px;}
.y1f4{bottom:919.050015px;}
.y257{bottom:925.350030px;}
.y13d{bottom:926.189940px;}
.ya6{bottom:926.250000px;}
.y194{bottom:931.469970px;}
.yec{bottom:936.509955px;}
.y41{bottom:936.689940px;}
.y22a{bottom:937.050015px;}
.yb{bottom:938.489955px;}
.y1f3{bottom:941.550015px;}
.ya5{bottom:945.329955px;}
.y256{bottom:945.689940px;}
.y193{bottom:953.969970px;}
.y13c{bottom:956.265015px;}
.yeb{bottom:956.850030px;}
.ya{bottom:958.829955px;}
.y40{bottom:959.189940px;}
.y229{bottom:960.809970px;}
.y1f2{bottom:964.050015px;}
.ya4{bottom:964.590000px;}
.y13b{bottom:965.309970px;}
.y36{bottom:966.390015px;}
.y192{bottom:976.469970px;}
.yea{bottom:977.009955px;}
.y9{bottom:978.989955px;}
.y3f{bottom:981.689940px;}
.y255{bottom:982.050015px;}
.y139{bottom:983.265015px;}
.ya3{bottom:983.669955px;}
.y228{bottom:984.390015px;}
.y1f1{bottom:986.550015px;}
.y13a{bottom:996.809970px;}
.ye9{bottom:997.350030px;}
.y191{bottom:998.969970px;}
.y8{bottom:999.329955px;}
.ya2{bottom:1002.750000px;}
.y3c{bottom:1004.189940px;}
.y227{bottom:1008.689940px;}
.y1f0{bottom:1009.050015px;}
.y254{bottom:1016.609985px;}
.ye8{bottom:1017.509955px;}
.y132{bottom:1019.265015px;}
.y7{bottom:1019.489955px;}
.y190{bottom:1021.469970px;}
.ya1{bottom:1021.829955px;}
.y3a{bottom:1028.309970px;}
.y226{bottom:1032.449985px;}
.y138{bottom:1032.809970px;}
.y253{bottom:1034.250000px;}
.ye7{bottom:1038.390015px;}
.y6{bottom:1039.829955px;}
.ya0{bottom:1042.529940px;}
.y18f{bottom:1043.969970px;}
.y225{bottom:1056.029940px;}
.ye6{bottom:1058.550015px;}
.y5{bottom:1059.989955px;}
.y252{bottom:1061.250000px;}
.y9f{bottom:1064.309970px;}
.y18e{bottom:1066.469970px;}
.ye5{bottom:1079.609985px;}
.y4{bottom:1080.329955px;}
.y223{bottom:1081.050015px;}
.y9e{bottom:1084.469970px;}
.y251{bottom:1084.829955px;}
.y74{bottom:1087.890015px;}
.y18d{bottom:1088.969970px;}
.ye4{bottom:1099.769985px;}
.y3{bottom:1100.489955px;}
.y9b{bottom:1103.550015px;}
.y73{bottom:1108.050015px;}
.y250{bottom:1108.590000px;}
.y18c{bottom:1111.469970px;}
.y2{bottom:1120.829955px;}
.y131{bottom:1128.390015px;}
.y24f{bottom:1132.890015px;}
.y18b{bottom:1133.969970px;}
.y99{bottom:1137.390015px;}
.y1{bottom:1140.989955px;}
.y72{bottom:1148.579955px;}
.h16{height:19.080000px;}
.h17{height:19.116000px;}
.h15{height:19.260000px;}
.h19{height:20.160000px;}
.h1a{height:20.340000px;}
.h39{height:20.850130px;}
.h13{height:21.276015px;}
.hc{height:22.500000px;}
.he{height:22.536000px;}
.hf{height:23.580000px;}
.h78{height:23.616000px;}
.h77{height:23.760000px;}
.h7e{height:23.796000px;}
.h41{height:23.925364px;}
.ha{height:24.660000px;}
.h11{height:24.840000px;}
.h12{height:24.876000px;}
.h74{height:25.573840px;}
.h1b{height:27.000002px;}
.h2e{height:28.422423px;}
.h2a{height:28.499100px;}
.h48{height:30.074829px;}
.h10{height:32.539219px;}
.h26{height:32.924431px;}
.h14{height:33.660000px;}
.h18{height:33.840000px;}
.h8{height:34.949581px;}
.h5b{height:35.999462px;}
.h7{height:38.158594px;}
.h82{height:38.935289px;}
.h81{height:38.936526px;}
.h87{height:38.990932px;}
.h86{height:39.003606px;}
.h8c{height:39.097441px;}
.h8d{height:39.110166px;}
.h70{height:40.608390px;}
.h68{height:40.616137px;}
.h6e{height:40.721706px;}
.h1d{height:40.747277px;}
.h2f{height:40.750417px;}
.h28{height:40.767471px;}
.h3d{height:40.823660px;}
.h64{height:40.830446px;}
.h66{height:40.831083px;}
.h57{height:40.840169px;}
.h34{height:40.849566px;}
.h2b{height:40.860352px;}
.h5e{height:40.868193px;}
.h22{height:40.886457px;}
.h4b{height:40.925646px;}
.h75{height:41.018400px;}
.h8b{height:48.445949px;}
.h89{height:48.761719px;}
.h5d{height:49.973472px;}
.h56{height:49.975722px;}
.hd{height:50.014035px;}
.hb{height:50.072394px;}
.h49{height:50.097821px;}
.h7f{height:50.580000px;}
.h7a{height:50.760000px;}
.h7c{height:50.796000px;}
.h83{height:53.859326px;}
.h88{height:53.936296px;}
.h31{height:53.999991px;}
.h8e{height:54.101233px;}
.h3b{height:55.424909px;}
.h9{height:58.651231px;}
.h3{height:60.257812px;}
.h2{height:60.328125px;}
.h38{height:64.546875px;}
.h4{height:65.230603px;}
.h72{height:66.575160px;}
.h20{height:66.577513px;}
.h40{height:66.580758px;}
.h46{height:66.586828px;}
.h37{height:66.623009px;}
.h60{height:66.666439px;}
.h5a{height:66.669441px;}
.h4e{height:66.832325px;}
.h47{height:69.804933px;}
.h3a{height:69.835590px;}
.h43{height:70.154472px;}
.h24{height:70.194868px;}
.h51{height:70.214353px;}
.h50{height:70.265585px;}
.h3f{height:70.302739px;}
.h71{height:70.309602px;}
.h23{height:70.332779px;}
.h45{height:70.369800px;}
.h59{height:70.405564px;}
.h42{height:70.415348px;}
.h36{height:70.418429px;}
.h29{height:70.466658px;}
.h5f{height:70.495582px;}
.h6f{height:70.505797px;}
.h1e{height:70.508289px;}
.h3e{height:70.511725px;}
.h30{height:70.513721px;}
.h1f{height:70.524004px;}
.h21{height:70.526768px;}
.h65{height:70.537255px;}
.h67{height:70.538355px;}
.h1c{height:70.543385px;}
.h44{height:70.553255px;}
.h35{height:70.556470px;}
.h63{height:70.602465px;}
.h58{height:70.605644px;}
.h25{height:70.647468px;}
.h6{height:70.664062px;}
.h6a{height:70.703391px;}
.h2c{height:70.703951px;}
.h4f{height:70.752525px;}
.h4d{height:70.753447px;}
.h4c{height:70.778145px;}
.h4a{height:70.813376px;}
.h76{height:70.913317px;}
.h52{height:72.001227px;}
.h7d{height:73.080000px;}
.h7b{height:73.260000px;}
.h79{height:73.296000px;}
.h85{height:75.259680px;}
.h6b{height:77.927168px;}
.h27{height:87.042455px;}
.h2d{height:87.174843px;}
.h3c{height:87.202448px;}
.h6d{height:87.227602px;}
.h33{height:87.257785px;}
.h62{height:87.292284px;}
.h54{height:87.308973px;}
.h69{height:87.742923px;}
.h73{height:90.285931px;}
.h32{height:101.014302px;}
.h53{height:101.023363px;}
.h6c{height:114.809517px;}
.h61{height:114.970975px;}
.h55{height:119.358139px;}
.h5c{height:119.493532px;}
.h80{height:317.400883px;}
.h84{height:317.854482px;}
.h8a{height:318.826481px;}
.h5{height:1262.879970px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w29{width:16.501860px;}
.w23{width:16.575303px;}
.w26{width:18.000603px;}
.w31{width:20.849213px;}
.w1f{width:22.498845px;}
.w1d{width:23.925605px;}
.w21{width:23.999046px;}
.w1b{width:25.577112px;}
.w1c{width:27.000230px;}
.w2c{width:28.499469px;}
.w35{width:32.925021px;}
.w28{width:35.999567px;}
.w27{width:40.500778px;}
.w5{width:43.740000px;}
.w3{width:44.460000px;}
.w32{width:47.925234px;}
.w3d{width:60.300000px;}
.w3a{width:61.200000px;}
.w1e{width:66.078813px;}
.w20{width:67.502443px;}
.w51{width:68.580000px;}
.w45{width:70.559985px;}
.w44{width:71.280000px;}
.w3c{width:72.720000px;}
.w10{width:76.500000px;}
.w13{width:77.616000px;}
.w15{width:77.940015px;}
.w11{width:77.976015px;}
.wa{width:80.280000px;}
.wb{width:81.000000px;}
.w8{width:81.216000px;}
.w25{width:82.421820px;}
.w12{width:88.200000px;}
.w14{width:88.559985px;}
.w50{width:88.776015px;}
.w7{width:88.920000px;}
.w9{width:89.136015px;}
.w53{width:90.000000px;}
.w52{width:99.396015px;}
.w54{width:108.576000px;}
.w4f{width:110.160000px;}
.w24{width:111.002886px;}
.w34{width:116.996626px;}
.w56{width:117.216015px;}
.w58{width:118.116000px;}
.w2e{width:121.499261px;}
.wd{width:154.470000px;}
.w3b{width:157.170000px;}
.w43{width:157.530000px;}
.w19{width:160.490938px;}
.w4b{width:164.010000px;}
.we{width:165.810015px;}
.w1a{width:166.499941px;}
.wf{width:166.500000px;}
.w39{width:168.150015px;}
.w6{width:169.410000px;}
.w4{width:170.130000px;}
.w4e{width:210.990000px;}
.w40{width:212.430000px;}
.w2{width:214.590000px;}
.w2a{width:218.995217px;}
.w2f{width:223.493196px;}
.wc{width:224.354985px;}
.w2b{width:226.422732px;}
.w48{width:227.729985px;}
.w30{width:227.999955px;}
.w42{width:228.809985px;}
.w36{width:228.990000px;}
.w37{width:229.350015px;}
.w38{width:229.889970px;}
.w4a{width:235.290000px;}
.w41{width:239.609985px;}
.w49{width:240.689985px;}
.w47{width:246.269985px;}
.w3f{width:246.809985px;}
.w4d{width:264.990000px;}
.w18{width:308.550000px;}
.w16{width:308.910000px;}
.w2d{width:319.490628px;}
.w17{width:354.854970px;}
.w33{width:417.001757px;}
.w5a{width:433.797134px;}
.w5b{width:434.544484px;}
.w5c{width:435.589911px;}
.w46{width:458.715000px;}
.w3e{width:459.254970px;}
.w4c{width:475.994985px;}
.w22{width:494.988085px;}
.w55{width:565.484985px;}
.w57{width:574.125000px;}
.w59{width:575.025015px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.xc9{left:-73.912917px;}
.x0{left:0.000000px;}
.x63{left:2.146220px;}
.x5a{left:3.269458px;}
.x2d{left:5.256015px;}
.x1d{left:7.380015px;}
.x14{left:8.460000px;}
.x39{left:10.260000px;}
.x62{left:11.645898px;}
.x34{left:13.139970px;}
.x36{left:14.219970px;}
.x3b{left:16.199985px;}
.x73{left:18.168819px;}
.x15{left:19.620000px;}
.x3a{left:21.059970px;}
.x12{left:22.140000px;}
.x38{left:23.219970px;}
.x68{left:24.375609px;}
.x7c{left:25.461856px;}
.xc4{left:26.640015px;}
.x1c{left:28.484985px;}
.x1e{left:30.599985px;}
.x1b{left:32.220000px;}
.xb2{left:33.660000px;}
.x1f{left:35.820000px;}
.xac{left:37.980015px;}
.x93{left:40.341506px;}
.x33{left:42.119985px;}
.xab{left:43.380000px;}
.x69{left:44.786343px;}
.x2f{left:47.159985px;}
.x31{left:48.779985px;}
.x58{left:50.429985px;}
.xb7{left:51.659985px;}
.x3c{left:52.920000px;}
.xc3{left:54.224985px;}
.x4d{left:55.254000px;}
.xbb{left:57.645000px;}
.x3d{left:58.680000px;}
.x3f{left:60.294000px;}
.x4c{left:62.633985px;}
.x4e{left:64.073985px;}
.xaf{left:65.205000px;}
.x11{left:66.239970px;}
.x79{left:68.526408px;}
.xad{left:69.840000px;}
.x78{left:71.337732px;}
.xf{left:73.080045px;}
.x44{left:74.153985px;}
.x6f{left:75.406587px;}
.xd{left:77.213985px;}
.x5b{left:78.791027px;}
.x51{left:80.093985px;}
.x77{left:81.993512px;}
.x42{left:83.153985px;}
.xb8{left:84.599985px;}
.x2c{left:85.680000px;}
.x41{left:88.769985px;}
.x52{left:91.829955px;}
.x50{left:93.809970px;}
.x95{left:95.209772px;}
.x4b{left:97.193985px;}
.x49{left:98.453955px;}
.x9e{left:101.373998px;}
.x53{left:104.393985px;}
.x57{left:106.553985px;}
.x48{left:111.593970px;}
.x4f{left:114.329955px;}
.xb3{left:119.694015px;}
.xb9{left:120.810015px;}
.x3e{left:122.436015px;}
.x56{left:126.353985px;}
.x6{left:127.656000px;}
.x55{left:129.593970px;}
.x59{left:130.889970px;}
.xc{left:132.516015px;}
.xbd{left:136.656000px;}
.x46{left:138.414000px;}
.x94{left:140.206640px;}
.x98{left:142.686393px;}
.x45{left:145.649955px;}
.x47{left:146.729955px;}
.x54{left:148.170000px;}
.x43{left:149.249955px;}
.x1{left:151.590000px;}
.x92{left:152.827713px;}
.x89{left:154.650015px;}
.x97{left:156.772340px;}
.x74{left:160.391465px;}
.x84{left:165.782122px;}
.x4a{left:167.789970px;}
.x13{left:171.210000px;}
.xa1{left:175.652903px;}
.x87{left:176.865000px;}
.x9{left:180.750000px;}
.xc5{left:184.178955px;}
.x8a{left:185.639985px;}
.x8c{left:190.233114px;}
.x6d{left:195.150015px;}
.x9a{left:197.130000px;}
.x61{left:201.314985px;}
.xca{left:205.223347px;}
.xa0{left:209.622736px;}
.x8b{left:214.050000px;}
.x88{left:218.939985px;}
.x9f{left:220.601977px;}
.x8d{left:223.492532px;}
.x64{left:225.210000px;}
.x70{left:226.930651px;}
.xcc{left:229.215000px;}
.x9d{left:233.271483px;}
.xbe{left:236.910000px;}
.xa4{left:238.710000px;}
.x65{left:244.139970px;}
.x6e{left:246.840000px;}
.xc8{left:256.215000px;}
.x18{left:260.130000px;}
.xc6{left:263.010000px;}
.x2a{left:265.889970px;}
.x66{left:269.670000px;}
.x2b{left:270.795000px;}
.xc7{left:272.774985px;}
.x22{left:274.575000px;}
.x23{left:279.434970px;}
.x28{left:283.755000px;}
.x29{left:288.614985px;}
.x7a{left:291.854985px;}
.x8f{left:301.575000px;}
.x76{left:302.639970px;}
.x24{left:308.955000px;}
.x2e{left:310.035000px;}
.x25{left:313.814985px;}
.x71{left:318.268629px;}
.xbf{left:325.694985px;}
.xa8{left:329.654985px;}
.x7b{left:340.139970px;}
.xe{left:341.354970px;}
.x7{left:343.694985px;}
.x2{left:346.035000px;}
.x5c{left:347.295000px;}
.xcb{left:369.614985px;}
.x80{left:383.864985px;}
.x16{left:385.814985px;}
.x9b{left:389.939985px;}
.xc0{left:394.275015px;}
.xce{left:396.615000px;}
.x85{left:399.855015px;}
.x72{left:402.377991px;}
.x96{left:404.355015px;}
.x86{left:407.234985px;}
.x99{left:408.855015px;}
.x7d{left:422.535000px;}
.x81{left:424.334970px;}
.x40{left:431.355015px;}
.x8{left:433.050015px;}
.x9c{left:437.834970px;}
.x82{left:445.965000px;}
.xa6{left:447.014970px;}
.x30{left:464.865000px;}
.xa7{left:472.605015px;}
.x19{left:474.945000px;}
.x7e{left:480.164985px;}
.x20{left:481.965000px;}
.x21{left:486.824985px;}
.xc1{left:493.664985px;}
.x7f{left:498.164985px;}
.x8e{left:500.324985px;}
.x83{left:503.385000px;}
.xa3{left:514.740000px;}
.x5d{left:537.014970px;}
.x5{left:539.744985px;}
.xa5{left:548.564985px;}
.x35{left:553.064985px;}
.x10{left:555.945000px;}
.xa9{left:559.004970px;}
.x4{left:560.445000px;}
.xa{left:561.525015px;}
.x5e{left:562.604970px;}
.xb{left:566.385000px;}
.xb0{left:569.084970px;}
.xb5{left:570.344970px;}
.xae{left:576.465000px;}
.x5f{left:581.639970px;}
.xc2{left:583.664985px;}
.xb4{left:586.545000px;}
.xba{left:594.644985px;}
.xa2{left:597.885000px;}
.x17{left:600.404985px;}
.x60{left:608.684970px;}
.x67{left:614.414985px;}
.x90{left:627.404985px;}
.x32{left:631.050015px;}
.x91{left:632.309970px;}
.xbc{left:640.229970px;}
.x26{left:648.869985px;}
.x27{left:653.729970px;}
.xcd{left:663.809970px;}
.x75{left:675.869985px;}
.x6a{left:680.550015px;}
.x1a{left:689.550015px;}
.xaa{left:716.189985px;}
.x37{left:719.609985px;}
.xb1{left:726.269985px;}
.x6b{left:730.514970px;}
.xb6{left:734.369985px;}
.x6c{left:753.090000px;}
.x3{left:765.510000px;}
@media print{
.v4{vertical-align:-52.842945pt;}
.v5{vertical-align:-50.045324pt;}
.v7{vertical-align:-40.447781pt;}
.vb{vertical-align:-32.305157pt;}
.v2{vertical-align:-24.320053pt;}
.v3{vertical-align:-13.439947pt;}
.v8{vertical-align:-8.275586pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:8.309785pt;}
.v6{vertical-align:17.594728pt;}
.v1{vertical-align:26.880213pt;}
.v9{vertical-align:32.227622pt;}
.ls62{letter-spacing:-0.622657pt;}
.ls5d{letter-spacing:-0.621163pt;}
.ls5b{letter-spacing:-0.620095pt;}
.ls8{letter-spacing:-0.576000pt;}
.lsd{letter-spacing:-0.448000pt;}
.ls1d{letter-spacing:-0.426872pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls51{letter-spacing:-0.282133pt;}
.ls4{letter-spacing:-0.268800pt;}
.ls54{letter-spacing:-0.208480pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls53{letter-spacing:-0.129067pt;}
.ls2b{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.004480pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000053pt;}
.lse{letter-spacing:0.004480pt;}
.ls61{letter-spacing:0.012914pt;}
.ls50{letter-spacing:0.013423pt;}
.ls9{letter-spacing:0.046720pt;}
.ls1{letter-spacing:0.063947pt;}
.ls66{letter-spacing:0.064000pt;}
.ls65{letter-spacing:0.127947pt;}
.ls1e{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.128053pt;}
.ls6{letter-spacing:0.159987pt;}
.ls64{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.169013pt;}
.ls1b{letter-spacing:0.181608pt;}
.ls2e{letter-spacing:0.191474pt;}
.ls1c{letter-spacing:0.191475pt;}
.ls2f{letter-spacing:0.191528pt;}
.ls37{letter-spacing:0.191947pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls55{letter-spacing:0.249120pt;}
.ls5{letter-spacing:0.256000pt;}
.ls5c{letter-spacing:0.297789pt;}
.ls5e{letter-spacing:0.298215pt;}
.ls63{letter-spacing:0.299127pt;}
.lsa{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.320027pt;}
.ls0{letter-spacing:0.371227pt;}
.lsf{letter-spacing:0.640320pt;}
.lsb{letter-spacing:0.890720pt;}
.ls38{letter-spacing:0.896053pt;}
.ls13{letter-spacing:1.919733pt;}
.ls56{letter-spacing:2.079933pt;}
.ls23{letter-spacing:3.200053pt;}
.ls12{letter-spacing:4.480000pt;}
.ls11{letter-spacing:4.480107pt;}
.ls22{letter-spacing:9.600107pt;}
.ls29{letter-spacing:22.082597pt;}
.ls24{letter-spacing:25.600000pt;}
.ls28{letter-spacing:27.328463pt;}
.ls2a{letter-spacing:27.528306pt;}
.ls27{letter-spacing:34.173354pt;}
.ls25{letter-spacing:34.587577pt;}
.ls35{letter-spacing:47.047812pt;}
.ls45{letter-spacing:48.042578pt;}
.ls4d{letter-spacing:56.282557pt;}
.ls3c{letter-spacing:69.556668pt;}
.ls4e{letter-spacing:70.214592pt;}
.ls42{letter-spacing:74.317537pt;}
.ls16{letter-spacing:81.673153pt;}
.ls2c{letter-spacing:82.158173pt;}
.ls18{letter-spacing:86.112460pt;}
.ls2d{letter-spacing:86.581292pt;}
.ls21{letter-spacing:94.133818pt;}
.ls1f{letter-spacing:99.968053pt;}
.ls32{letter-spacing:105.162254pt;}
.ls20{letter-spacing:111.001774pt;}
.ls26{letter-spacing:128.753219pt;}
.ls57{letter-spacing:134.744980pt;}
.ls5f{letter-spacing:135.301849pt;}
.ls36{letter-spacing:144.004208pt;}
.ls34{letter-spacing:178.151418pt;}
.ls17{letter-spacing:180.548620pt;}
.ls31{letter-spacing:180.695460pt;}
.ls33{letter-spacing:182.752172pt;}
.ls30{letter-spacing:185.233712pt;}
.ls59{letter-spacing:188.335788pt;}
.ls19{letter-spacing:189.376787pt;}
.ls3a{letter-spacing:214.241778pt;}
.ls40{letter-spacing:214.599614pt;}
.ls58{letter-spacing:230.381527pt;}
.ls5a{letter-spacing:230.710766pt;}
.ls60{letter-spacing:231.416280pt;}
.ls39{letter-spacing:243.226528pt;}
.ls3f{letter-spacing:243.584364pt;}
.ls3b{letter-spacing:245.774104pt;}
.ls41{letter-spacing:250.483634pt;}
.ls3d{letter-spacing:259.073569pt;}
.ls4f{letter-spacing:265.412386pt;}
.ls43{letter-spacing:267.968360pt;}
.ls3e{letter-spacing:397.760742pt;}
.ls44{letter-spacing:406.706653pt;}
.ls47{letter-spacing:410.629411pt;}
.ls48{letter-spacing:414.178769pt;}
.ls46{letter-spacing:414.700734pt;}
.ls4c{letter-spacing:433.021685pt;}
.ls49{letter-spacing:445.845575pt;}
.ls4a{letter-spacing:827.678985pt;}
.ls4b{letter-spacing:836.813362pt;}
.ws4b{word-spacing:-64.000000pt;}
.ws20{word-spacing:-43.272148pt;}
.wsa{word-spacing:-16.256000pt;}
.ws49{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.063947pt;}
.ws1{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.872000pt;}
.ws48{word-spacing:-15.808000pt;}
.ws4c{word-spacing:-13.529133pt;}
.ws8{word-spacing:-13.449027pt;}
.ws5{word-spacing:-13.326733pt;}
.ws7{word-spacing:-13.284493pt;}
.ws6{word-spacing:-13.280013pt;}
.ws9{word-spacing:-13.275533pt;}
.ws4a{word-spacing:-12.997880pt;}
.ws58{word-spacing:-10.780508pt;}
.ws53{word-spacing:-10.747641pt;}
.ws50{word-spacing:-10.732304pt;}
.wse{word-spacing:-9.280013pt;}
.ws0{word-spacing:-9.011213pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.ws24{word-spacing:3.598600pt;}
.ws37{word-spacing:4.667895pt;}
.ws32{word-spacing:5.607834pt;}
.ws27{word-spacing:8.283462pt;}
.ws3c{word-spacing:10.514207pt;}
.ws39{word-spacing:10.582215pt;}
.ws47{word-spacing:11.058277pt;}
.ws3d{word-spacing:11.904132pt;}
.ws3f{word-spacing:11.999810pt;}
.wsc{word-spacing:15.589332pt;}
.ws23{word-spacing:15.713132pt;}
.ws10{word-spacing:25.860457pt;}
.ws12{word-spacing:26.287329pt;}
.ws1b{word-spacing:27.044235pt;}
.ws1f{word-spacing:29.081282pt;}
.ws44{word-spacing:34.208395pt;}
.ws1e{word-spacing:38.009745pt;}
.ws22{word-spacing:39.457963pt;}
.ws26{word-spacing:39.791724pt;}
.ws36{word-spacing:40.217286pt;}
.ws2f{word-spacing:41.114886pt;}
.ws3a{word-spacing:42.991899pt;}
.ws41{word-spacing:44.530246pt;}
.ws18{word-spacing:54.280274pt;}
.wsb{word-spacing:56.196691pt;}
.wsd{word-spacing:56.492074pt;}
.ws42{word-spacing:57.307935pt;}
.ws1a{word-spacing:58.755679pt;}
.ws33{word-spacing:59.884270pt;}
.ws19{word-spacing:64.738396pt;}
.ws31{word-spacing:65.807597pt;}
.wsf{word-spacing:75.118147pt;}
.ws11{word-spacing:81.768765pt;}
.ws2e{word-spacing:83.525020pt;}
.ws30{word-spacing:85.987670pt;}
.ws45{word-spacing:88.421608pt;}
.ws38{word-spacing:90.057770pt;}
.ws34{word-spacing:90.850068pt;}
.ws3e{word-spacing:93.457175pt;}
.ws3b{word-spacing:97.880494pt;}
.ws17{word-spacing:103.829405pt;}
.ws16{word-spacing:104.161934pt;}
.ws4d{word-spacing:106.518891pt;}
.ws54{word-spacing:111.550060pt;}
.ws55{word-spacing:118.947184pt;}
.ws4e{word-spacing:120.651928pt;}
.ws56{word-spacing:126.646849pt;}
.ws25{word-spacing:127.757382pt;}
.ws28{word-spacing:136.800450pt;}
.ws1c{word-spacing:148.509538pt;}
.ws1d{word-spacing:148.516427pt;}
.ws51{word-spacing:175.154034pt;}
.ws46{word-spacing:186.490372pt;}
.ws4f{word-spacing:212.513354pt;}
.ws52{word-spacing:212.817058pt;}
.ws57{word-spacing:213.467853pt;}
.ws43{word-spacing:220.450990pt;}
.ws40{word-spacing:221.029520pt;}
.ws14{word-spacing:248.315499pt;}
.ws2a{word-spacing:250.953928pt;}
.ws2c{word-spacing:250.967808pt;}
.ws15{word-spacing:321.782141pt;}
.ws13{word-spacing:321.821969pt;}
.ws2b{word-spacing:325.190553pt;}
.ws29{word-spacing:325.352554pt;}
.ws35{word-spacing:594.922623pt;}
.ws2d{word-spacing:603.647328pt;}
._37{margin-left:-260.246555pt;}
._38{margin-left:-198.752832pt;}
._39{margin-left:-149.547095pt;}
._69{margin-left:-4.480000pt;}
._4{margin-left:-0.960000pt;}
._2{width:0.960000pt;}
._3{width:1.984000pt;}
._1{width:3.072000pt;}
._0{width:3.968000pt;}
._7{width:5.504000pt;}
._6{width:6.464000pt;}
._a{width:8.000000pt;}
._d{width:9.066667pt;}
._b{width:10.133333pt;}
._c{width:11.392000pt;}
._8{width:12.480000pt;}
._9{width:13.834667pt;}
._f{width:14.848000pt;}
._6c{width:16.896000pt;}
._11{width:17.792000pt;}
._10{width:18.688000pt;}
._53{width:19.648000pt;}
._12{width:20.544000pt;}
._5{width:21.824000pt;}
._13{width:23.232000pt;}
._e{width:24.576000pt;}
._44{width:25.600000pt;}
._15{width:26.496000pt;}
._14{width:27.648000pt;}
._16{width:28.608000pt;}
._17{width:29.760000pt;}
._18{width:31.168000pt;}
._52{width:46.611300pt;}
._4a{width:47.690572pt;}
._2b{width:55.239289pt;}
._3a{width:57.237843pt;}
._35{width:65.021247pt;}
._36{width:68.876720pt;}
._63{width:76.108618pt;}
._23{width:82.618848pt;}
._27{width:85.032702pt;}
._51{width:91.057780pt;}
._20{width:93.353375pt;}
._1a{width:95.150376pt;}
._1f{width:99.797279pt;}
._58{width:101.119947pt;}
._49{width:102.900381pt;}
._3b{width:105.134705pt;}
._26{width:106.456902pt;}
._46{width:107.848826pt;}
._22{width:115.747821pt;}
._24{width:116.784258pt;}
._45{width:117.754270pt;}
._31{width:124.672007pt;}
._4e{width:125.974495pt;}
._34{width:128.572003pt;}
._28{width:129.786756pt;}
._19{width:130.817921pt;}
._32{width:132.408065pt;}
._54{width:133.837876pt;}
._2e{width:135.412980pt;}
._4b{width:136.786933pt;}
._56{width:138.316199pt;}
._21{width:148.654701pt;}
._1c{width:152.320107pt;}
._47{width:157.393647pt;}
._5a{width:161.931465pt;}
._25{width:165.755914pt;}
._50{width:169.600107pt;}
._1d{width:172.800000pt;}
._40{width:173.778495pt;}
._3f{width:181.502707pt;}
._3e{width:183.053311pt;}
._43{width:190.545775pt;}
._1b{width:191.609859pt;}
._3c{width:192.916750pt;}
._1e{width:200.426776pt;}
._41{width:201.895682pt;}
._59{width:206.853323pt;}
._29{width:217.888308pt;}
._2f{width:220.829289pt;}
._30{width:221.980107pt;}
._4c{width:222.966539pt;}
._4d{width:224.118159pt;}
._6d{width:225.547139pt;}
._6a{width:230.509152pt;}
._2c{width:234.626004pt;}
._48{width:236.677632pt;}
._33{width:244.676806pt;}
._4f{width:246.603062pt;}
._64{width:264.050944pt;}
._65{width:268.650912pt;}
._68{width:273.186992pt;}
._5d{width:276.821946pt;}
._60{width:284.244214pt;}
._55{width:292.598441pt;}
._3d{width:294.124175pt;}
._57{width:301.491111pt;}
._5f{width:305.770099pt;}
._42{width:307.592573pt;}
._62{width:322.382072pt;}
._6b{width:382.381387pt;}
._6e{width:384.103155pt;}
._2a{width:401.571732pt;}
._5e{width:409.587257pt;}
._66{width:433.355324pt;}
._67{width:434.888647pt;}
._61{width:440.824040pt;}
._2d{width:465.805601pt;}
._5b{width:473.354597pt;}
._5c{width:479.382125pt;}
.fs2{font-size:34.560000pt;}
.fs3e{font-size:36.899753pt;}
.fs5{font-size:36.922924pt;}
.fs12{font-size:36.925769pt;}
.fsd{font-size:36.941223pt;}
.fs1b{font-size:36.992138pt;}
.fs2d{font-size:37.007098pt;}
.fs16{font-size:37.015613pt;}
.fsf{font-size:37.025386pt;}
.fs31{font-size:37.032491pt;}
.fs8{font-size:37.049041pt;}
.fs24{font-size:37.084552pt;}
.fs1{font-size:37.120053pt;}
.fs44{font-size:37.168600pt;}
.fs47{font-size:38.605409pt;}
.fs46{font-size:38.606635pt;}
.fs4a{font-size:38.660580pt;}
.fs49{font-size:38.673147pt;}
.fs4c{font-size:38.766187pt;}
.fs4d{font-size:38.778804pt;}
.fs40{font-size:38.969593pt;}
.fs39{font-size:38.977027pt;}
.fs42{font-size:39.157472pt;}
.fs35{font-size:39.182688pt;}
.fs37{font-size:39.183299pt;}
.fs3{font-size:53.120053pt;}
.fs48{font-size:53.403001pt;}
.fs4b{font-size:53.479320pt;}
.fs4e{font-size:53.642859pt;}
.fs1e{font-size:63.774740pt;}
.fse{font-size:63.852980pt;}
.fs3f{font-size:63.888445pt;}
.fs4{font-size:63.890703pt;}
.fs1c{font-size:63.893817pt;}
.fs13{font-size:63.895626pt;}
.fs20{font-size:63.899642pt;}
.fs17{font-size:63.934363pt;}
.fs30{font-size:63.976040pt;}
.fs2c{font-size:63.978921pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:64.016820pt;}
.fs10{font-size:64.068002pt;}
.fs23{font-size:64.135232pt;}
.fs45{font-size:64.257717pt;}
.fs22{font-size:66.987877pt;}
.fs19{font-size:67.017296pt;}
.fs1f{font-size:67.323310pt;}
.fsa{font-size:67.362075pt;}
.fs28{font-size:67.380774pt;}
.fs27{font-size:67.429939pt;}
.fs1d{font-size:67.465593pt;}
.fs41{font-size:67.472179pt;}
.fs9{font-size:67.494421pt;}
.fs21{font-size:67.529948pt;}
.fs2e{font-size:67.564268pt;}
.fs18{font-size:67.576614pt;}
.fs43{font-size:67.647084pt;}
.fs32{font-size:67.650654pt;}
.fs6{font-size:67.677929pt;}
.fs7{font-size:67.680581pt;}
.fs36{font-size:67.690645pt;}
.fs38{font-size:67.691701pt;}
.fs3b{font-size:67.850076pt;}
.fs26{font-size:67.897227pt;}
.fs25{font-size:67.898112pt;}
.fsc{font-size:83.529760pt;}
.fs11{font-size:83.656805pt;}
.fs1a{font-size:83.683295pt;}
.fs3d{font-size:83.707434pt;}
.fs15{font-size:83.736399pt;}
.fs34{font-size:83.769506pt;}
.fs2a{font-size:83.785522pt;}
.fs3a{font-size:84.201959pt;}
.fs14{font-size:96.937757pt;}
.fs29{font-size:96.946453pt;}
.fs3c{font-size:110.176250pt;}
.fs33{font-size:110.331193pt;}
.fs2b{font-size:114.541308pt;}
.fs2f{font-size:114.671237pt;}
.y17a{bottom:-11.399987pt;}
.y44{bottom:-11.360027pt;}
.y181{bottom:-11.360013pt;}
.y17c{bottom:-11.360000pt;}
.y78{bottom:-11.359987pt;}
.y3d{bottom:-11.359947pt;}
.y0{bottom:0.000000pt;}
.ye1{bottom:3.048669pt;}
.y15e{bottom:3.252101pt;}
.y76{bottom:3.519973pt;}
.y3b{bottom:3.520013pt;}
.y88{bottom:3.520027pt;}
.y8a{bottom:3.520040pt;}
.y9d{bottom:3.679933pt;}
.y7a{bottom:3.679973pt;}
.y8d{bottom:3.679987pt;}
.y187{bottom:3.680000pt;}
.y3e{bottom:3.680013pt;}
.y90{bottom:3.680027pt;}
.y21b{bottom:3.680053pt;}
.y9a{bottom:3.706627pt;}
.y1f6{bottom:3.719973pt;}
.yd9{bottom:3.789719pt;}
.yd1{bottom:3.799943pt;}
.y10c{bottom:3.819008pt;}
.yc7{bottom:3.821083pt;}
.yc0{bottom:3.852612pt;}
.yef{bottom:3.922815pt;}
.y15f{bottom:3.946629pt;}
.y154{bottom:4.280369pt;}
.yf6{bottom:4.634891pt;}
.y137{bottom:4.672066pt;}
.yd5{bottom:5.121578pt;}
.yce{bottom:5.153467pt;}
.y13f{bottom:5.155730pt;}
.y153{bottom:5.554615pt;}
.yfc{bottom:6.598925pt;}
.yf3{bottom:7.584414pt;}
.y129{bottom:7.807991pt;}
.yda{bottom:7.926917pt;}
.yd2{bottom:7.948302pt;}
.yc8{bottom:7.957836pt;}
.y10b{bottom:7.988179pt;}
.ybf{bottom:7.989491pt;}
.yd4{bottom:8.080083pt;}
.ycd{bottom:8.111844pt;}
.y13e{bottom:8.115407pt;}
.y14a{bottom:8.658607pt;}
.yf8{bottom:8.751226pt;}
.y120{bottom:8.914535pt;}
.y126{bottom:9.023996pt;}
.yd6{bottom:9.257158pt;}
.ycf{bottom:9.288919pt;}
.y140{bottom:9.292999pt;}
.y133{bottom:9.312054pt;}
.y11c{bottom:10.122649pt;}
.y134{bottom:10.784040pt;}
.y11a{bottom:11.167621pt;}
.y135{bottom:11.231974pt;}
.y146{bottom:11.631977pt;}
.y11b{bottom:11.853314pt;}
.y12a{bottom:11.967967pt;}
.y149{bottom:12.089479pt;}
.y10a{bottom:12.507387pt;}
.y128{bottom:12.703960pt;}
.y14c{bottom:12.808224pt;}
.y122{bottom:13.028826pt;}
.y136{bottom:13.696189pt;}
.y11e{bottom:13.780376pt;}
.y152{bottom:14.540624pt;}
.y151{bottom:15.814217pt;}
.y127{bottom:16.447696pt;}
.yf5{bottom:17.113860pt;}
.y11d{bottom:17.534867pt;}
.y212{bottom:18.559987pt;}
.y24c{bottom:18.560000pt;}
.y1a0{bottom:18.560013pt;}
.y8b{bottom:18.560027pt;}
.y9c{bottom:18.719973pt;}
.y242{bottom:18.720000pt;}
.y23b{bottom:18.720013pt;}
.yf9{bottom:21.262557pt;}
.y274{bottom:21.449044pt;}
.y28e{bottom:21.479697pt;}
.y299{bottom:21.545382pt;}
.ydf{bottom:26.076309pt;}
.ydd{bottom:28.345616pt;}
.yf4{bottom:28.587823pt;}
.yde{bottom:29.059308pt;}
.ye0{bottom:30.227638pt;}
.yf2{bottom:31.536569pt;}
.yf7{bottom:32.704159pt;}
.y24b{bottom:33.599973pt;}
.y224{bottom:33.759933pt;}
.y23a{bottom:33.760013pt;}
.y273{bottom:34.771088pt;}
.y28d{bottom:34.820779pt;}
.y298{bottom:34.927261pt;}
.y150{bottom:39.829800pt;}
.y11f{bottom:41.012497pt;}
.y14f{bottom:41.070771pt;}
.y118{bottom:43.265973pt;}
.y119{bottom:43.951928pt;}
.y148{bottom:44.207777pt;}
.y121{bottom:45.126918pt;}
.y144{bottom:45.711034pt;}
.y145{bottom:47.181669pt;}
.y147{bottom:47.638388pt;}
.y14b{bottom:48.324771pt;}
.y14e{bottom:50.089011pt;}
.y14d{bottom:51.331286pt;}
.y272{bottom:54.764678pt;}
.y28c{bottom:54.842943pt;}
.y297{bottom:55.010652pt;}
.y35{bottom:56.666667pt;}
.y271{bottom:63.936621pt;}
.y28b{bottom:64.027993pt;}
.y296{bottom:64.223790pt;}
.y26f{bottom:79.116018pt;}
.y294{bottom:80.853577pt;}
.y289{bottom:82.214105pt;}
.y176{bottom:97.760013pt;}
.y39{bottom:98.080000pt;}
.y6a{bottom:99.840000pt;}
.y2a5{bottom:100.800013pt;}
.y98{bottom:101.440000pt;}
.y215{bottom:102.240013pt;}
.y34{bottom:103.840000pt;}
.y38{bottom:104.160000pt;}
.y18a{bottom:106.240013pt;}
.y292{bottom:107.520000pt;}
.y71{bottom:112.960000pt;}
.y1b9{bottom:113.120000pt;}
.y175{bottom:113.440000pt;}
.ye3{bottom:113.760013pt;}
.y2a7{bottom:114.080000pt;}
.y1d5{bottom:114.240013pt;}
.y37{bottom:114.400000pt;}
.y24e{bottom:115.520000pt;}
.y1ef{bottom:115.840000pt;}
.y70{bottom:116.320013pt;}
.y69{bottom:117.760013pt;}
.y2a4{bottom:118.880000pt;}
.y33{bottom:119.200013pt;}
.y214{bottom:122.240013pt;}
.y291{bottom:125.440000pt;}
.y189{bottom:126.240013pt;}
.ydc{bottom:127.613347pt;}
.y6f{bottom:128.000000pt;}
.y1b8{bottom:128.160000pt;}
.y174{bottom:128.320013pt;}
.y32{bottom:129.120000pt;}
.y6e{bottom:131.360000pt;}
.y270{bottom:132.148697pt;}
.y2a6{bottom:132.160000pt;}
.y28a{bottom:132.337551pt;}
.y295{bottom:132.742239pt;}
.y1ee{bottom:133.760013pt;}
.y1d4{bottom:134.240013pt;}
.y68{bottom:135.840000pt;}
.y24d{bottom:136.480000pt;}
.y2a3{bottom:136.800013pt;}
.y290{bottom:139.200013pt;}
.y288{bottom:139.280013pt;}
.y213{bottom:142.240013pt;}
.y222{bottom:143.040000pt;}
.y1b7{bottom:143.200013pt;}
.y6d{bottom:143.360000pt;}
.y188{bottom:146.240013pt;}
.y221{bottom:146.400000pt;}
.ye2{bottom:147.520000pt;}
.y26d{bottom:149.120000pt;}
.y31{bottom:150.080000pt;}
.y1ed{bottom:151.866680pt;}
.y67{bottom:153.786667pt;}
.y1d3{bottom:154.266680pt;}
.y2a2{bottom:154.906680pt;}
.y173{bottom:158.426680pt;}
.y1b6{bottom:158.746667pt;}
.y24a{bottom:158.906680pt;}
.y26c{bottom:159.386680pt;}
.y97{bottom:159.866680pt;}
.y211{bottom:162.266680pt;}
.y186{bottom:166.266680pt;}
.y30{bottom:168.186667pt;}
.y1ec{bottom:169.786667pt;}
.y66{bottom:171.866680pt;}
.y2a1{bottom:172.826667pt;}
.y172{bottom:173.466680pt;}
.y1d2{bottom:174.266667pt;}
.y1b5{bottom:174.586667pt;}
.y96{bottom:176.826667pt;}
.ydb{bottom:179.866680pt;}
.y2f{bottom:186.106667pt;}
.y185{bottom:186.266667pt;}
.y1eb{bottom:187.866680pt;}
.y171{bottom:188.346640pt;}
.y65{bottom:189.786667pt;}
.y2a0{bottom:190.906653pt;}
.y210{bottom:192.186667pt;}
.yd3{bottom:193.679973pt;}
.y95{bottom:193.946653pt;}
.y1d1{bottom:194.266667pt;}
.yd8{bottom:194.946653pt;}
.y1b4{bottom:195.546667pt;}
.y130{bottom:196.666667pt;}
.yd7{bottom:202.906653pt;}
.y170{bottom:203.386653pt;}
.y2e{bottom:204.186667pt;}
.y1ea{bottom:205.786667pt;}
.y184{bottom:206.266667pt;}
.y64{bottom:207.866680pt;}
.y29f{bottom:208.826667pt;}
.y94{bottom:210.906653pt;}
.y20f{bottom:212.186667pt;}
.y1d0{bottom:214.266667pt;}
.y12f{bottom:214.746667pt;}
.y1b3{bottom:215.546667pt;}
.y16f{bottom:218.426653pt;}
.y16e{bottom:221.786667pt;}
.y2d{bottom:222.106667pt;}
.ycc{bottom:222.946653pt;}
.y1e9{bottom:223.866680pt;}
.yd0{bottom:224.213333pt;}
.y63{bottom:225.786667pt;}
.y183{bottom:226.266667pt;}
.y29e{bottom:226.906653pt;}
.y93{bottom:227.866680pt;}
.y249{bottom:230.106667pt;}
.ycb{bottom:232.186667pt;}
.y12e{bottom:232.666667pt;}
.y16d{bottom:233.466680pt;}
.y1cf{bottom:234.266667pt;}
.y1b2{bottom:235.546667pt;}
.y2c{bottom:240.186667pt;}
.y1e8{bottom:241.786667pt;}
.y62{bottom:243.866680pt;}
.y92{bottom:244.826667pt;}
.y182{bottom:246.266667pt;}
.y248{bottom:248.186667pt;}
.y16c{bottom:248.346640pt;}
.y12d{bottom:250.746667pt;}
.y20e{bottom:252.186667pt;}
.yca{bottom:252.213320pt;}
.y1ce{bottom:254.266667pt;}
.y1b1{bottom:256.826667pt;}
.y275{bottom:256.890942pt;}
.y28f{bottom:257.258066pt;}
.y29a{bottom:258.044761pt;}
.y2b{bottom:258.106667pt;}
.y1e7{bottom:259.866680pt;}
.yc9{bottom:260.186667pt;}
.y61{bottom:261.786667pt;}
.y91{bottom:261.946653pt;}
.y29d{bottom:262.906640pt;}
.y16b{bottom:263.386640pt;}
.y247{bottom:266.106667pt;}
.y180{bottom:266.266667pt;}
.y16a{bottom:266.746667pt;}
.y12c{bottom:268.666667pt;}
.y20d{bottom:272.186667pt;}
.y1cd{bottom:274.266667pt;}
.y2a{bottom:276.186667pt;}
.yc6{bottom:276.213320pt;}
.y1e6{bottom:277.786667pt;}
.y1b0{bottom:277.946653pt;}
.y169{bottom:278.746667pt;}
.y8f{bottom:278.906640pt;}
.y60{bottom:279.866680pt;}
.y29c{bottom:280.826667pt;}
.y246{bottom:283.546653pt;}
.yc5{bottom:284.186667pt;}
.y12b{bottom:286.746667pt;}
.y17f{bottom:287.546653pt;}
.y20c{bottom:292.186667pt;}
.y29{bottom:294.106667pt;}
.y1cc{bottom:294.266667pt;}
.y29b{bottom:294.586667pt;}
.y293{bottom:294.613320pt;}
.y8e{bottom:295.866680pt;}
.y5f{bottom:297.786667pt;}
.y1af{bottom:297.946653pt;}
.y245{bottom:298.586667pt;}
.y125{bottom:300.546653pt;}
.y168{bottom:301.306667pt;}
.yc4{bottom:304.506653pt;}
.y17e{bottom:309.946653pt;}
.y28{bottom:312.186667pt;}
.y124{bottom:312.506653pt;}
.y8c{bottom:312.826667pt;}
.y244{bottom:313.466680pt;}
.y1e5{bottom:313.786667pt;}
.y1cb{bottom:314.266667pt;}
.y5e{bottom:315.866680pt;}
.y1ae{bottom:317.946653pt;}
.yc2{bottom:318.346640pt;}
.y167{bottom:319.226667pt;}
.yc3{bottom:326.266667pt;}
.y243{bottom:329.146667pt;}
.y89{bottom:329.946640pt;}
.y27{bottom:330.106667pt;}
.y17d{bottom:330.906640pt;}
.y1e4{bottom:331.866680pt;}
.y20b{bottom:332.186667pt;}
.y117{bottom:332.546653pt;}
.y5d{bottom:333.786667pt;}
.y1ca{bottom:334.266667pt;}
.y166{bottom:337.306667pt;}
.y1ad{bottom:337.946640pt;}
.ybe{bottom:342.346640pt;}
.y241{bottom:344.826667pt;}
.y26{bottom:348.186640pt;}
.y1e3{bottom:349.786667pt;}
.yc1{bottom:350.266680pt;}
.y17b{bottom:350.906653pt;}
.y5c{bottom:351.866653pt;}
.y20a{bottom:352.186640pt;}
.y1c9{bottom:354.266680pt;}
.y165{bottom:355.226640pt;}
.y1ac{bottom:357.946653pt;}
.y123{bottom:360.506667pt;}
.y87{bottom:361.306640pt;}
.y25{bottom:366.106653pt;}
.y1e2{bottom:367.906653pt;}
.y240{bottom:368.866653pt;}
.y5b{bottom:369.826667pt;}
.ybd{bottom:370.466680pt;}
.y179{bottom:370.946653pt;}
.y209{bottom:372.226640pt;}
.y164{bottom:373.346640pt;}
.y1c8{bottom:374.306640pt;}
.y1ab{bottom:377.986653pt;}
.y24{bottom:384.226640pt;}
.y1e1{bottom:385.826667pt;}
.y86{bottom:386.466680pt;}
.y5a{bottom:387.906653pt;}
.ybc{bottom:388.546667pt;}
.y23f{bottom:389.986653pt;}
.y178{bottom:390.946653pt;}
.y163{bottom:391.266640pt;}
.y208{bottom:392.226640pt;}
.y1c7{bottom:394.306640pt;}
.y1aa{bottom:397.986653pt;}
.y116{bottom:400.706667pt;}
.y23{bottom:402.146653pt;}
.y1e0{bottom:403.266640pt;}
.y85{bottom:404.546667pt;}
.y59{bottom:405.826667pt;}
.ybb{bottom:406.466680pt;}
.y162{bottom:409.346640pt;}
.y177{bottom:410.946653pt;}
.y207{bottom:412.226640pt;}
.y1c6{bottom:414.306640pt;}
.y1a9{bottom:417.986653pt;}
.y1df{bottom:418.306640pt;}
.y115{bottom:418.786667pt;}
.y22{bottom:420.226640pt;}
.y84{bottom:422.466680pt;}
.y161{bottom:423.146653pt;}
.y58{bottom:423.906653pt;}
.yba{bottom:424.546667pt;}
.y287{bottom:425.986653pt;}
.y220{bottom:430.626667pt;}
.y160{bottom:431.106653pt;}
.y206{bottom:432.226640pt;}
.y23e{bottom:432.546667pt;}
.y1de{bottom:433.186640pt;}
.y1c5{bottom:434.306640pt;}
.y114{bottom:436.706667pt;}
.y1a8{bottom:437.986653pt;}
.y21{bottom:438.146653pt;}
.y83{bottom:440.546667pt;}
.y57{bottom:441.826667pt;}
.yb9{bottom:442.466680pt;}
.y286{bottom:444.066653pt;}
.y26b{bottom:444.546667pt;}
.y15d{bottom:447.413333pt;}
.y1dd{bottom:448.866653pt;}
.y15c{bottom:451.426680pt;}
.y205{bottom:452.226640pt;}
.y23d{bottom:453.666667pt;}
.y1c4{bottom:454.306640pt;}
.y113{bottom:454.786667pt;}
.y20{bottom:456.226640pt;}
.y1a7{bottom:457.986653pt;}
.y82{bottom:458.466680pt;}
.y56{bottom:459.906653pt;}
.yb8{bottom:460.546667pt;}
.y285{bottom:461.986653pt;}
.y26a{bottom:462.466680pt;}
.y1dc{bottom:464.546667pt;}
.y112{bottom:468.546667pt;}
.y204{bottom:472.226640pt;}
.y1f{bottom:474.146653pt;}
.y1c3{bottom:474.306640pt;}
.y23c{bottom:474.626667pt;}
.y81{bottom:476.546667pt;}
.y55{bottom:477.826667pt;}
.y1a6{bottom:477.986653pt;}
.yb7{bottom:478.466680pt;}
.y284{bottom:480.066653pt;}
.y269{bottom:480.546667pt;}
.y6c{bottom:480.866653pt;}
.y1db{bottom:485.666667pt;}
.y1e{bottom:492.226640pt;}
.y111{bottom:492.546667pt;}
.y1c2{bottom:494.306640pt;}
.y80{bottom:494.466680pt;}
.y54{bottom:495.906653pt;}
.yb6{bottom:496.546667pt;}
.y239{bottom:496.866653pt;}
.y1a5{bottom:497.986653pt;}
.y268{bottom:498.466680pt;}
.y110{bottom:500.546667pt;}
.y1da{bottom:505.666667pt;}
.y1d{bottom:510.146653pt;}
.y203{bottom:512.226640pt;}
.y7f{bottom:512.546667pt;}
.y53{bottom:513.826667pt;}
.y1c1{bottom:514.306640pt;}
.yb5{bottom:514.466680pt;}
.y283{bottom:516.066653pt;}
.y10e{bottom:516.546667pt;}
.y1a4{bottom:517.986653pt;}
.y10f{bottom:524.546667pt;}
.y1d9{bottom:525.666667pt;}
.y1c{bottom:528.226640pt;}
.y7e{bottom:530.466680pt;}
.y52{bottom:531.906653pt;}
.y202{bottom:532.226640pt;}
.yb4{bottom:532.546667pt;}
.y282{bottom:533.986653pt;}
.y1c0{bottom:534.306640pt;}
.y267{bottom:534.466680pt;}
.y1a3{bottom:537.986653pt;}
.y109{bottom:543.279987pt;}
.y1b{bottom:546.146653pt;}
.y7d{bottom:546.306640pt;}
.y1d8{bottom:546.946653pt;}
.y51{bottom:549.826667pt;}
.yb3{bottom:550.466640pt;}
.y10d{bottom:551.266640pt;}
.y281{bottom:552.066653pt;}
.y201{bottom:552.226640pt;}
.y266{bottom:552.546667pt;}
.y1bf{bottom:554.306640pt;}
.y1a2{bottom:557.986653pt;}
.y1a{bottom:564.226640pt;}
.y50{bottom:567.906653pt;}
.y238{bottom:568.226640pt;}
.y7c{bottom:568.546667pt;}
.y280{bottom:569.986653pt;}
.y265{bottom:570.466640pt;}
.y200{bottom:572.226640pt;}
.y108{bottom:574.146653pt;}
.y1be{bottom:575.586667pt;}
.y1a1{bottom:577.986653pt;}
.y19{bottom:582.146653pt;}
.y4f{bottom:585.853307pt;}
.y237{bottom:586.173333pt;}
.yb2{bottom:586.493333pt;}
.y1d7{bottom:587.933307pt;}
.y27f{bottom:588.093307pt;}
.y263{bottom:588.573320pt;}
.y7b{bottom:591.933307pt;}
.y107{bottom:592.093307pt;}
.y1ff{bottom:592.253333pt;}
.y264{bottom:595.293333pt;}
.y19f{bottom:598.013307pt;}
.y18{bottom:600.253333pt;}
.y21f{bottom:603.293333pt;}
.y4e{bottom:603.933307pt;}
.y236{bottom:604.253333pt;}
.yb1{bottom:604.573320pt;}
.y27e{bottom:606.013307pt;}
.y262{bottom:606.493333pt;}
.y15b{bottom:606.973307pt;}
.y1d6{bottom:607.933307pt;}
.y106{bottom:610.173333pt;}
.y1fe{bottom:612.253333pt;}
.y15a{bottom:614.013307pt;}
.y79{bottom:615.293333pt;}
.y17{bottom:618.173333pt;}
.y21e{bottom:618.333333pt;}
.y1bd{bottom:618.973307pt;}
.y4d{bottom:621.853267pt;}
.y235{bottom:622.173253pt;}
.yb0{bottom:622.493333pt;}
.y27d{bottom:624.093307pt;}
.y261{bottom:624.573320pt;}
.y159{bottom:626.013307pt;}
.y19e{bottom:627.933307pt;}
.y105{bottom:628.093307pt;}
.y1fd{bottom:632.253333pt;}
.y21d{bottom:633.213333pt;}
.y16{bottom:636.253333pt;}
.y77{bottom:638.653320pt;}
.y1bc{bottom:638.973307pt;}
.y4c{bottom:639.933307pt;}
.y234{bottom:640.253333pt;}
.yaf{bottom:640.573320pt;}
.y27c{bottom:642.013307pt;}
.y260{bottom:642.493333pt;}
.y104{bottom:646.173253pt;}
.y19d{bottom:647.933307pt;}
.y21c{bottom:648.893307pt;}
.y158{bottom:650.173253pt;}
.y1fc{bottom:652.253333pt;}
.y15{bottom:654.173253pt;}
.yae{bottom:656.253333pt;}
.y4b{bottom:657.853267pt;}
.y233{bottom:658.173253pt;}
.y1bb{bottom:658.973307pt;}
.y103{bottom:660.080000pt;}
.y27b{bottom:660.093307pt;}
.y25f{bottom:660.573320pt;}
.y75{bottom:662.013307pt;}
.y102{bottom:664.093307pt;}
.y21a{bottom:664.573280pt;}
.y19c{bottom:667.933307pt;}
.y157{bottom:668.253333pt;}
.y14{bottom:672.253333pt;}
.yad{bottom:674.333333pt;}
.y4a{bottom:675.933307pt;}
.y232{bottom:676.253333pt;}
.y27a{bottom:678.013307pt;}
.y25e{bottom:678.493333pt;}
.y101{bottom:678.813320pt;}
.y6b{bottom:678.973307pt;}
.y100{bottom:685.533280pt;}
.y219{bottom:685.693280pt;}
.y156{bottom:686.173333pt;}
.y19b{bottom:687.933347pt;}
.y13{bottom:690.173333pt;}
.yac{bottom:691.293293pt;}
.y49{bottom:691.613280pt;}
.y1fb{bottom:692.253333pt;}
.y231{bottom:694.173333pt;}
.y279{bottom:696.093347pt;}
.y25d{bottom:696.573320pt;}
.y1ba{bottom:698.973307pt;}
.yff{bottom:700.080000pt;}
.y218{bottom:705.693280pt;}
.y19a{bottom:707.933347pt;}
.yfe{bottom:708.093347pt;}
.y12{bottom:708.253333pt;}
.y1fa{bottom:712.253333pt;}
.y48{bottom:712.573320pt;}
.y278{bottom:714.013347pt;}
.y25c{bottom:714.493333pt;}
.y217{bottom:725.693280pt;}
.y11{bottom:726.173333pt;}
.y199{bottom:727.933347pt;}
.yfd{bottom:728.253333pt;}
.y230{bottom:730.173333pt;}
.y155{bottom:730.813320pt;}
.y277{bottom:732.093347pt;}
.y1f9{bottom:732.253333pt;}
.y47{bottom:732.573320pt;}
.yab{bottom:738.333333pt;}
.yf1{bottom:742.013347pt;}
.y10{bottom:744.253333pt;}
.y26e{bottom:745.813320pt;}
.y276{bottom:745.853347pt;}
.y216{bottom:746.973307pt;}
.y22f{bottom:747.613280pt;}
.y198{bottom:747.933347pt;}
.y25b{bottom:750.493333pt;}
.y1f8{bottom:752.253333pt;}
.y46{bottom:752.573320pt;}
.yaa{bottom:755.293293pt;}
.yfb{bottom:756.546627pt;}
.yf{bottom:762.173333pt;}
.y22e{bottom:762.653320pt;}
.yfa{bottom:763.293293pt;}
.y197{bottom:767.933347pt;}
.y25a{bottom:768.573320pt;}
.ya9{bottom:772.253333pt;}
.y45{bottom:772.573320pt;}
.y143{bottom:773.533280pt;}
.y1f7{bottom:773.693280pt;}
.y22d{bottom:777.533280pt;}
.ye{bottom:780.253333pt;}
.y259{bottom:786.493333pt;}
.y196{bottom:787.933347pt;}
.ya8{bottom:789.373293pt;}
.y142{bottom:791.613280pt;}
.y43{bottom:792.573320pt;}
.y22c{bottom:793.213293pt;}
.yf0{bottom:795.613280pt;}
.y1f5{bottom:795.933347pt;}
.yd{bottom:798.173333pt;}
.y258{bottom:804.613280pt;}
.ya7{bottom:806.373293pt;}
.y195{bottom:807.973307pt;}
.y22b{bottom:808.933347pt;}
.y141{bottom:809.573320pt;}
.yee{bottom:809.680013pt;}
.y42{bottom:812.613280pt;}
.yed{bottom:813.733320pt;}
.yc{bottom:816.293293pt;}
.y1f4{bottom:816.933347pt;}
.y257{bottom:822.533360pt;}
.y13d{bottom:823.279947pt;}
.ya6{bottom:823.333333pt;}
.y194{bottom:827.973307pt;}
.yec{bottom:832.453293pt;}
.y41{bottom:832.613280pt;}
.y22a{bottom:832.933347pt;}
.yb{bottom:834.213293pt;}
.y1f3{bottom:836.933347pt;}
.ya5{bottom:840.293293pt;}
.y256{bottom:840.613280pt;}
.y193{bottom:847.973307pt;}
.y13c{bottom:850.013347pt;}
.yeb{bottom:850.533360pt;}
.ya{bottom:852.293293pt;}
.y40{bottom:852.613280pt;}
.y229{bottom:854.053307pt;}
.y1f2{bottom:856.933347pt;}
.ya4{bottom:857.413333pt;}
.y13b{bottom:858.053307pt;}
.y36{bottom:859.013347pt;}
.y192{bottom:867.973307pt;}
.yea{bottom:868.453293pt;}
.y9{bottom:870.213293pt;}
.y3f{bottom:872.613280pt;}
.y255{bottom:872.933347pt;}
.y139{bottom:874.013347pt;}
.ya3{bottom:874.373293pt;}
.y228{bottom:875.013347pt;}
.y1f1{bottom:876.933347pt;}
.y13a{bottom:886.053307pt;}
.ye9{bottom:886.533360pt;}
.y191{bottom:887.973307pt;}
.y8{bottom:888.293293pt;}
.ya2{bottom:891.333333pt;}
.y3c{bottom:892.613280pt;}
.y227{bottom:896.613280pt;}
.y1f0{bottom:896.933347pt;}
.y254{bottom:903.653320pt;}
.ye8{bottom:904.453293pt;}
.y132{bottom:906.013347pt;}
.y7{bottom:906.213293pt;}
.y190{bottom:907.973307pt;}
.ya1{bottom:908.293293pt;}
.y3a{bottom:914.053307pt;}
.y226{bottom:917.733320pt;}
.y138{bottom:918.053307pt;}
.y253{bottom:919.333333pt;}
.ye7{bottom:923.013347pt;}
.y6{bottom:924.293293pt;}
.ya0{bottom:926.693280pt;}
.y18f{bottom:927.973307pt;}
.y225{bottom:938.693280pt;}
.ye6{bottom:940.933347pt;}
.y5{bottom:942.213293pt;}
.y252{bottom:943.333333pt;}
.y9f{bottom:946.053307pt;}
.y18e{bottom:947.973307pt;}
.ye5{bottom:959.653320pt;}
.y4{bottom:960.293293pt;}
.y223{bottom:960.933347pt;}
.y9e{bottom:963.973307pt;}
.y251{bottom:964.293293pt;}
.y74{bottom:967.013347pt;}
.y18d{bottom:967.973307pt;}
.ye4{bottom:977.573320pt;}
.y3{bottom:978.213293pt;}
.y9b{bottom:980.933347pt;}
.y73{bottom:984.933347pt;}
.y250{bottom:985.413333pt;}
.y18c{bottom:987.973307pt;}
.y2{bottom:996.293293pt;}
.y131{bottom:1003.013347pt;}
.y24f{bottom:1007.013347pt;}
.y18b{bottom:1007.973307pt;}
.y99{bottom:1011.013347pt;}
.y1{bottom:1014.213293pt;}
.y72{bottom:1020.959960pt;}
.h16{height:16.960000pt;}
.h17{height:16.992000pt;}
.h15{height:17.120000pt;}
.h19{height:17.920000pt;}
.h1a{height:18.080000pt;}
.h39{height:18.533449pt;}
.h13{height:18.912013pt;}
.hc{height:20.000000pt;}
.he{height:20.032000pt;}
.hf{height:20.960000pt;}
.h78{height:20.992000pt;}
.h77{height:21.120000pt;}
.h7e{height:21.152000pt;}
.h41{height:21.266990pt;}
.ha{height:21.920000pt;}
.h11{height:22.080000pt;}
.h12{height:22.112000pt;}
.h74{height:22.732302pt;}
.h1b{height:24.000002pt;}
.h2e{height:25.264376pt;}
.h2a{height:25.332533pt;}
.h48{height:26.733181pt;}
.h10{height:28.923750pt;}
.h26{height:29.266161pt;}
.h14{height:29.920000pt;}
.h18{height:30.080000pt;}
.h8{height:31.066295pt;}
.h5b{height:31.999522pt;}
.h7{height:33.918750pt;}
.h82{height:34.609146pt;}
.h81{height:34.610245pt;}
.h87{height:34.658606pt;}
.h86{height:34.669872pt;}
.h8c{height:34.753281pt;}
.h8d{height:34.764592pt;}
.h70{height:36.096347pt;}
.h68{height:36.103233pt;}
.h6e{height:36.197072pt;}
.h1d{height:36.219802pt;}
.h2f{height:36.222593pt;}
.h28{height:36.237752pt;}
.h3d{height:36.287698pt;}
.h64{height:36.293730pt;}
.h66{height:36.294296pt;}
.h57{height:36.302373pt;}
.h34{height:36.310726pt;}
.h2b{height:36.320313pt;}
.h5e{height:36.327283pt;}
.h22{height:36.343517pt;}
.h4b{height:36.378352pt;}
.h75{height:36.460800pt;}
.h8b{height:43.063066pt;}
.h89{height:43.343750pt;}
.h5d{height:44.420864pt;}
.h56{height:44.422864pt;}
.hd{height:44.456920pt;}
.hb{height:44.508795pt;}
.h49{height:44.531397pt;}
.h7f{height:44.960000pt;}
.h7a{height:45.120000pt;}
.h7c{height:45.152000pt;}
.h83{height:47.874956pt;}
.h88{height:47.943374pt;}
.h31{height:47.999992pt;}
.h8e{height:48.089985pt;}
.h3b{height:49.266586pt;}
.h9{height:52.134427pt;}
.h3{height:53.562500pt;}
.h2{height:53.625000pt;}
.h38{height:57.375000pt;}
.h4{height:57.982758pt;}
.h72{height:59.177920pt;}
.h20{height:59.180012pt;}
.h40{height:59.182896pt;}
.h46{height:59.188291pt;}
.h37{height:59.220452pt;}
.h60{height:59.259057pt;}
.h5a{height:59.261725pt;}
.h4e{height:59.406511pt;}
.h47{height:62.048829pt;}
.h3a{height:62.076080pt;}
.h43{height:62.359531pt;}
.h24{height:62.395438pt;}
.h51{height:62.412758pt;}
.h50{height:62.458298pt;}
.h3f{height:62.491323pt;}
.h71{height:62.497424pt;}
.h23{height:62.518026pt;}
.h45{height:62.550933pt;}
.h59{height:62.582723pt;}
.h42{height:62.591420pt;}
.h36{height:62.594159pt;}
.h29{height:62.637030pt;}
.h5f{height:62.662739pt;}
.h6f{height:62.671820pt;}
.h1e{height:62.674035pt;}
.h3e{height:62.677089pt;}
.h30{height:62.678863pt;}
.h1f{height:62.688004pt;}
.h21{height:62.690460pt;}
.h65{height:62.699782pt;}
.h67{height:62.700760pt;}
.h1c{height:62.705231pt;}
.h44{height:62.714004pt;}
.h35{height:62.716863pt;}
.h63{height:62.757746pt;}
.h58{height:62.760572pt;}
.h25{height:62.797750pt;}
.h6{height:62.812500pt;}
.h6a{height:62.847458pt;}
.h2c{height:62.847957pt;}
.h4f{height:62.891133pt;}
.h4d{height:62.891953pt;}
.h4c{height:62.913907pt;}
.h4a{height:62.945223pt;}
.h76{height:63.034059pt;}
.h52{height:64.001090pt;}
.h7d{height:64.960000pt;}
.h7b{height:65.120000pt;}
.h79{height:65.152000pt;}
.h85{height:66.897494pt;}
.h6b{height:69.268594pt;}
.h27{height:77.371071pt;}
.h2d{height:77.488750pt;}
.h3c{height:77.513287pt;}
.h6d{height:77.535646pt;}
.h33{height:77.562475pt;}
.h62{height:77.593141pt;}
.h54{height:77.607976pt;}
.h69{height:77.993709pt;}
.h73{height:80.254161pt;}
.h32{height:89.790491pt;}
.h53{height:89.798545pt;}
.h6c{height:102.052904pt;}
.h61{height:102.196422pt;}
.h55{height:106.096124pt;}
.h5c{height:106.216473pt;}
.h80{height:282.134118pt;}
.h84{height:282.537317pt;}
.h8a{height:283.401317pt;}
.h5{height:1122.559973pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w29{width:14.668320pt;}
.w23{width:14.733602pt;}
.w26{width:16.000536pt;}
.w31{width:18.532634pt;}
.w1f{width:19.998973pt;}
.w1d{width:21.267204pt;}
.w21{width:21.332485pt;}
.w1b{width:22.735211pt;}
.w1c{width:24.000204pt;}
.w2c{width:25.332861pt;}
.w35{width:29.266685pt;}
.w28{width:31.999615pt;}
.w27{width:36.000692pt;}
.w5{width:38.880000pt;}
.w3{width:39.520000pt;}
.w32{width:42.600208pt;}
.w3d{width:53.600000pt;}
.w3a{width:54.400000pt;}
.w1e{width:58.736722pt;}
.w20{width:60.002172pt;}
.w51{width:60.960000pt;}
.w45{width:62.719987pt;}
.w44{width:63.360000pt;}
.w3c{width:64.640000pt;}
.w10{width:68.000000pt;}
.w13{width:68.992000pt;}
.w15{width:69.280013pt;}
.w11{width:69.312013pt;}
.wa{width:71.360000pt;}
.wb{width:72.000000pt;}
.w8{width:72.192000pt;}
.w25{width:73.263840pt;}
.w12{width:78.400000pt;}
.w14{width:78.719987pt;}
.w50{width:78.912013pt;}
.w7{width:79.040000pt;}
.w9{width:79.232013pt;}
.w53{width:80.000000pt;}
.w52{width:88.352013pt;}
.w54{width:96.512000pt;}
.w4f{width:97.920000pt;}
.w24{width:98.669232pt;}
.w34{width:103.997001pt;}
.w56{width:104.192013pt;}
.w58{width:104.992000pt;}
.w2e{width:107.999343pt;}
.wd{width:137.306667pt;}
.w3b{width:139.706667pt;}
.w43{width:140.026667pt;}
.w19{width:142.658611pt;}
.w4b{width:145.786667pt;}
.we{width:147.386680pt;}
.w1a{width:147.999947pt;}
.wf{width:148.000000pt;}
.w39{width:149.466680pt;}
.w6{width:150.586667pt;}
.w4{width:151.226667pt;}
.w4e{width:187.546667pt;}
.w40{width:188.826667pt;}
.w2{width:190.746667pt;}
.w2a{width:194.662415pt;}
.w2f{width:198.660619pt;}
.wc{width:199.426653pt;}
.w2b{width:201.264651pt;}
.w48{width:202.426653pt;}
.w30{width:202.666627pt;}
.w42{width:203.386653pt;}
.w36{width:203.546667pt;}
.w37{width:203.866680pt;}
.w38{width:204.346640pt;}
.w4a{width:209.146667pt;}
.w41{width:212.986653pt;}
.w49{width:213.946653pt;}
.w47{width:218.906653pt;}
.w3f{width:219.386653pt;}
.w4d{width:235.546667pt;}
.w18{width:274.266667pt;}
.w16{width:274.586667pt;}
.w2d{width:283.991670pt;}
.w17{width:315.426640pt;}
.w33{width:370.668229pt;}
.w5a{width:385.597452pt;}
.w5b{width:386.261764pt;}
.w5c{width:387.191032pt;}
.w46{width:407.746667pt;}
.w3e{width:408.226640pt;}
.w4c{width:423.106653pt;}
.w22{width:439.989409pt;}
.w55{width:502.653320pt;}
.w57{width:510.333333pt;}
.w59{width:511.133347pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.xc9{left:-65.700370pt;}
.x0{left:0.000000pt;}
.x63{left:1.907751pt;}
.x5a{left:2.906185pt;}
.x2d{left:4.672013pt;}
.x1d{left:6.560013pt;}
.x14{left:7.520000pt;}
.x39{left:9.120000pt;}
.x62{left:10.351909pt;}
.x34{left:11.679973pt;}
.x36{left:12.639973pt;}
.x3b{left:14.399987pt;}
.x73{left:16.150062pt;}
.x15{left:17.440000pt;}
.x3a{left:18.719973pt;}
.x12{left:19.680000pt;}
.x38{left:20.639973pt;}
.x68{left:21.667208pt;}
.x7c{left:22.632760pt;}
.xc4{left:23.680013pt;}
.x1c{left:25.319987pt;}
.x1e{left:27.199987pt;}
.x1b{left:28.640000pt;}
.xb2{left:29.920000pt;}
.x1f{left:31.840000pt;}
.xac{left:33.760013pt;}
.x93{left:35.859116pt;}
.x33{left:37.439987pt;}
.xab{left:38.560000pt;}
.x69{left:39.810082pt;}
.x2f{left:41.919987pt;}
.x31{left:43.359987pt;}
.x58{left:44.826653pt;}
.xb7{left:45.919987pt;}
.x3c{left:47.040000pt;}
.xc3{left:48.199987pt;}
.x4d{left:49.114667pt;}
.xbb{left:51.240000pt;}
.x3d{left:52.160000pt;}
.x3f{left:53.594667pt;}
.x4c{left:55.674653pt;}
.x4e{left:56.954653pt;}
.xaf{left:57.960000pt;}
.x11{left:58.879973pt;}
.x79{left:60.912362pt;}
.xad{left:62.080000pt;}
.x78{left:63.411318pt;}
.xf{left:64.960040pt;}
.x44{left:65.914653pt;}
.x6f{left:67.028078pt;}
.xd{left:68.634653pt;}
.x5b{left:70.036469pt;}
.x51{left:71.194653pt;}
.x77{left:72.883121pt;}
.x42{left:73.914653pt;}
.xb8{left:75.199987pt;}
.x2c{left:76.160000pt;}
.x41{left:78.906653pt;}
.x52{left:81.626627pt;}
.x50{left:83.386640pt;}
.x95{left:84.630908pt;}
.x4b{left:86.394653pt;}
.x49{left:87.514627pt;}
.x9e{left:90.110220pt;}
.x53{left:92.794653pt;}
.x57{left:94.714653pt;}
.x48{left:99.194640pt;}
.x4f{left:101.626627pt;}
.xb3{left:106.394680pt;}
.xb9{left:107.386680pt;}
.x3e{left:108.832013pt;}
.x56{left:112.314653pt;}
.x6{left:113.472000pt;}
.x55{left:115.194640pt;}
.x59{left:116.346640pt;}
.xc{left:117.792013pt;}
.xbd{left:121.472000pt;}
.x46{left:123.034667pt;}
.x94{left:124.628125pt;}
.x98{left:126.832349pt;}
.x45{left:129.466627pt;}
.x47{left:130.426627pt;}
.x54{left:131.706667pt;}
.x43{left:132.666627pt;}
.x1{left:134.746667pt;}
.x92{left:135.846856pt;}
.x89{left:137.466680pt;}
.x97{left:139.353191pt;}
.x74{left:142.570191pt;}
.x84{left:147.361887pt;}
.x4a{left:149.146640pt;}
.x13{left:152.186667pt;}
.xa1{left:156.135914pt;}
.x87{left:157.213333pt;}
.x9{left:160.666667pt;}
.xc5{left:163.714627pt;}
.x8a{left:165.013320pt;}
.x8c{left:169.096101pt;}
.x6d{left:173.466680pt;}
.x9a{left:175.226667pt;}
.x61{left:178.946653pt;}
.xca{left:182.420753pt;}
.xa0{left:186.331321pt;}
.x8b{left:190.266667pt;}
.x88{left:194.613320pt;}
.x9f{left:196.090646pt;}
.x8d{left:198.660029pt;}
.x64{left:200.186667pt;}
.x70{left:201.716134pt;}
.xcc{left:203.746667pt;}
.x9d{left:207.352429pt;}
.xbe{left:210.586667pt;}
.xa4{left:212.186667pt;}
.x65{left:217.013307pt;}
.x6e{left:219.413333pt;}
.xc8{left:227.746667pt;}
.x18{left:231.226667pt;}
.xc6{left:233.786667pt;}
.x2a{left:236.346640pt;}
.x66{left:239.706667pt;}
.x2b{left:240.706667pt;}
.xc7{left:242.466653pt;}
.x22{left:244.066667pt;}
.x23{left:248.386640pt;}
.x28{left:252.226667pt;}
.x29{left:256.546653pt;}
.x7a{left:259.426653pt;}
.x8f{left:268.066667pt;}
.x76{left:269.013307pt;}
.x24{left:274.626667pt;}
.x2e{left:275.586667pt;}
.x25{left:278.946653pt;}
.x71{left:282.905448pt;}
.xbf{left:289.506653pt;}
.xa8{left:293.026653pt;}
.x7b{left:302.346640pt;}
.xe{left:303.426640pt;}
.x7{left:305.506653pt;}
.x2{left:307.586667pt;}
.x5c{left:308.706667pt;}
.xcb{left:328.546653pt;}
.x80{left:341.213320pt;}
.x16{left:342.946653pt;}
.x9b{left:346.613320pt;}
.xc0{left:350.466680pt;}
.xce{left:352.546667pt;}
.x85{left:355.426680pt;}
.x72{left:357.669325pt;}
.x96{left:359.426680pt;}
.x86{left:361.986653pt;}
.x99{left:363.426680pt;}
.x7d{left:375.586667pt;}
.x81{left:377.186640pt;}
.x40{left:383.426680pt;}
.x8{left:384.933347pt;}
.x9c{left:389.186640pt;}
.x82{left:396.413333pt;}
.xa6{left:397.346640pt;}
.x30{left:413.213333pt;}
.xa7{left:420.093347pt;}
.x19{left:422.173333pt;}
.x7e{left:426.813320pt;}
.x20{left:428.413333pt;}
.x21{left:432.733320pt;}
.xc1{left:438.813320pt;}
.x7f{left:442.813320pt;}
.x8e{left:444.733320pt;}
.x83{left:447.453333pt;}
.xa3{left:457.546667pt;}
.x5d{left:477.346640pt;}
.x5{left:479.773320pt;}
.xa5{left:487.613320pt;}
.x35{left:491.613320pt;}
.x10{left:494.173333pt;}
.xa9{left:496.893307pt;}
.x4{left:498.173333pt;}
.xa{left:499.133347pt;}
.x5e{left:500.093307pt;}
.xb{left:503.453333pt;}
.xb0{left:505.853307pt;}
.xb5{left:506.973307pt;}
.xae{left:512.413333pt;}
.x5f{left:517.013307pt;}
.xc2{left:518.813320pt;}
.xb4{left:521.373333pt;}
.xba{left:528.573320pt;}
.xa2{left:531.453333pt;}
.x17{left:533.693320pt;}
.x60{left:541.053307pt;}
.x67{left:546.146653pt;}
.x90{left:557.693320pt;}
.x32{left:560.933347pt;}
.x91{left:562.053307pt;}
.xbc{left:569.093307pt;}
.x26{left:576.773320pt;}
.x27{left:581.093307pt;}
.xcd{left:590.053307pt;}
.x75{left:600.773320pt;}
.x6a{left:604.933347pt;}
.x1a{left:612.933347pt;}
.xaa{left:636.613320pt;}
.x37{left:639.653320pt;}
.xb1{left:645.573320pt;}
.x6b{left:649.346640pt;}
.xb6{left:652.773320pt;}
.x6c{left:669.413333pt;}
.x3{left:680.453333pt;}
}




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