
    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_38a547cb995c301dc18a53b6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_71a2b3f99c4280beec5ce9c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.064941;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_768e6015a3515aad70290545.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_9a4dcc9515335ab155a99ace.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937500;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_a25c91b3fd7ff9dddbea8e43.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_e54c82193f72f92883c38e76.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_4aa3e3972f9864a66449c81f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d78aaf84118d30f08925d98f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_d622f62ac0e714469907142d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065430;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_c20bfa318f7deea04b20dfb0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.401855;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_fdaf61d9a1b572c53a805838.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3da5f917e3baebd654093d7e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_48dfb092a6433ae0f0c53086.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a68fafb541351403044d4110.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.056641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f0679d4a199efc872edbb0e6.woff2')format("woff");}.fff{font-family:fff;line-height:1.056641;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_b46966ab04a1261edcb187e3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.402354;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;}
.m29{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m26{transform:matrix(0.168582,0.000000,-0.056188,0.243604,0,0);-ms-transform:matrix(0.168582,0.000000,-0.056188,0.243604,0,0);-webkit-transform:matrix(0.168582,0.000000,-0.056188,0.243604,0,0);}
.m20{transform:matrix(0.169414,0.000000,-0.056466,0.243540,0,0);-ms-transform:matrix(0.169414,0.000000,-0.056466,0.243540,0,0);-webkit-transform:matrix(0.169414,0.000000,-0.056466,0.243540,0,0);}
.m17{transform:matrix(0.172009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172009,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.173008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173008,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.173008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173008,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.173907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173907,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.202975,0.000002,0.000000,0.250000,0,0);-ms-transform:matrix(0.202975,0.000002,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202975,0.000002,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.203769,0.000002,0.000000,0.250000,0,0);-ms-transform:matrix(0.203769,0.000002,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203769,0.000002,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.212677,0.000000,-0.070885,0.239740,0,0);-ms-transform:matrix(0.212677,0.000000,-0.070885,0.239740,0,0);-webkit-transform:matrix(0.212677,0.000000,-0.070885,0.239740,0,0);}
.m2{transform:matrix(0.216514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216514,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.216849,0.000000,-0.072275,0.239325,0,0);-ms-transform:matrix(0.216849,0.000000,-0.072275,0.239325,0,0);-webkit-transform:matrix(0.216849,0.000000,-0.072275,0.239325,0,0);}
.m22{transform:matrix(0.220556,0.000000,-0.073511,0.238948,0,0);-ms-transform:matrix(0.220556,0.000000,-0.073511,0.238948,0,0);-webkit-transform:matrix(0.220556,0.000000,-0.073511,0.238948,0,0);}
.mc{transform:matrix(0.221012,0.000000,-0.073662,0.238901,0,0);-ms-transform:matrix(0.221012,0.000000,-0.073662,0.238901,0,0);-webkit-transform:matrix(0.221012,0.000000,-0.073662,0.238901,0,0);}
.m24{transform:matrix(0.221144,0.000000,-0.073707,0.238887,0,0);-ms-transform:matrix(0.221144,0.000000,-0.073707,0.238887,0,0);-webkit-transform:matrix(0.221144,0.000000,-0.073707,0.238887,0,0);}
.m28{transform:matrix(0.221144,0.000000,-0.073707,0.238888,0,0);-ms-transform:matrix(0.221144,0.000000,-0.073707,0.238888,0,0);-webkit-transform:matrix(0.221144,0.000000,-0.073707,0.238888,0,0);}
.m1d{transform:matrix(0.221779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221779,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.225776,0.000000,-0.075251,0.238406,0,0);-ms-transform:matrix(0.225776,0.000000,-0.075251,0.238406,0,0);-webkit-transform:matrix(0.225776,0.000000,-0.075251,0.238406,0,0);}
.m19{transform:matrix(0.226521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226521,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.226628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226628,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.226731,0.000000,-0.075569,0.238305,0,0);-ms-transform:matrix(0.226731,0.000000,-0.075569,0.238305,0,0);-webkit-transform:matrix(0.226731,0.000000,-0.075569,0.238305,0,0);}
.m10{transform:matrix(0.230136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230136,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.230757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230757,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.231279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231279,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.231431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231431,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.233003,0.000000,-0.077659,0.237632,0,0);-ms-transform:matrix(0.233003,0.000000,-0.077659,0.237632,0,0);-webkit-transform:matrix(0.233003,0.000000,-0.077659,0.237632,0,0);}
.m13{transform:matrix(0.233210,0.000000,-0.077729,0.237609,0,0);-ms-transform:matrix(0.233210,0.000000,-0.077729,0.237609,0,0);-webkit-transform:matrix(0.233210,0.000000,-0.077729,0.237609,0,0);}
.m1c{transform:matrix(0.234960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234960,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237858,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.238406,0.000000,-0.079460,0.237036,0,0);-ms-transform:matrix(0.238406,0.000000,-0.079460,0.237036,0,0);-webkit-transform:matrix(0.238406,0.000000,-0.079460,0.237036,0,0);}
.m8{transform:matrix(0.240301,0.000000,-0.080092,0.236823,0,0);-ms-transform:matrix(0.240301,0.000000,-0.080092,0.236823,0,0);-webkit-transform:matrix(0.240301,0.000000,-0.080092,0.236823,0,0);}
.m4{transform:matrix(0.240741,0.000000,-0.080239,0.236774,0,0);-ms-transform:matrix(0.240741,0.000000,-0.080239,0.236774,0,0);-webkit-transform:matrix(0.240741,0.000000,-0.080239,0.236774,0,0);}
.me{transform:matrix(0.242648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242648,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);}
.m9{transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251445,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253672,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254189,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.269691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269691,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.269691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269691,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.269910,0.000001,0.000000,0.250000,0,0);-ms-transform:matrix(0.269910,0.000001,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269910,0.000001,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274278,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v6{vertical-align:-21.402335px;}
.v4{vertical-align:-19.862468px;}
.v7{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v5{vertical-align:19.862468px;}
.v1{vertical-align:23.760000px;}
.ls48{letter-spacing:-2.090531px;}
.ls39{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.852000px;}
.ls3c{letter-spacing:-0.834000px;}
.ls3a{letter-spacing:-0.798000px;}
.ls1d{letter-spacing:-0.768000px;}
.ls2a{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.702000px;}
.ls35{letter-spacing:-0.696000px;}
.ls36{letter-spacing:-0.630000px;}
.ls1f{letter-spacing:-0.590400px;}
.ls3d{letter-spacing:-0.587400px;}
.lsf{letter-spacing:-0.472200px;}
.ls24{letter-spacing:-0.463800px;}
.ls22{letter-spacing:-0.420600px;}
.ls14{letter-spacing:-0.366000px;}
.ls56{letter-spacing:-0.348600px;}
.ls62{letter-spacing:-0.324000px;}
.lse{letter-spacing:-0.310800px;}
.ls5b{letter-spacing:-0.309600px;}
.ls4b{letter-spacing:-0.306000px;}
.ls5e{letter-spacing:-0.270000px;}
.ls52{letter-spacing:-0.252000px;}
.ls55{letter-spacing:-0.238800px;}
.ls54{letter-spacing:-0.234000px;}
.ls2b{letter-spacing:-0.228000px;}
.ls21{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.202800px;}
.ls34{letter-spacing:-0.199200px;}
.ls38{letter-spacing:-0.193200px;}
.ls28{letter-spacing:-0.175800px;}
.lsc{letter-spacing:-0.132600px;}
.ls31{letter-spacing:-0.126000px;}
.ls9{letter-spacing:-0.115200px;}
.ls33{letter-spacing:-0.102000px;}
.lsb{letter-spacing:-0.078000px;}
.ls4c{letter-spacing:-0.072000px;}
.ls5f{letter-spacing:-0.054000px;}
.ls16{letter-spacing:-0.048960px;}
.ls53{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.007920px;}
.ls1b{letter-spacing:0.020160px;}
.ls2d{letter-spacing:0.022320px;}
.ls57{letter-spacing:0.031680px;}
.ls50{letter-spacing:0.036000px;}
.ls2e{letter-spacing:0.042480px;}
.ls1a{letter-spacing:0.060600px;}
.ls41{letter-spacing:0.061564px;}
.ls51{letter-spacing:0.072000px;}
.ls17{letter-spacing:0.075000px;}
.ls4{letter-spacing:0.083520px;}
.ls3b{letter-spacing:0.089280px;}
.ls19{letter-spacing:0.089400px;}
.ls64{letter-spacing:0.090000px;}
.ls69{letter-spacing:0.108480px;}
.ls26{letter-spacing:0.118200px;}
.ls29{letter-spacing:0.129600px;}
.ls66{letter-spacing:0.132480px;}
.lsd{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.141000px;}
.ls59{letter-spacing:0.149760px;}
.ls4a{letter-spacing:0.150000px;}
.ls0{letter-spacing:0.156960px;}
.ls5c{letter-spacing:0.158400px;}
.ls5d{letter-spacing:0.162000px;}
.ls13{letter-spacing:0.174240px;}
.ls61{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.181200px;}
.ls60{letter-spacing:0.198000px;}
.ls2f{letter-spacing:0.219000px;}
.ls15{letter-spacing:0.231600px;}
.ls1e{letter-spacing:0.244800px;}
.ls8{letter-spacing:0.247800px;}
.ls1{letter-spacing:0.250560px;}
.ls67{letter-spacing:0.252480px;}
.lsa{letter-spacing:0.256200px;}
.ls37{letter-spacing:0.259200px;}
.ls40{letter-spacing:0.293227px;}
.ls68{letter-spacing:0.312480px;}
.ls25{letter-spacing:0.316800px;}
.ls2c{letter-spacing:0.357000px;}
.ls18{letter-spacing:0.371400px;}
.ls3{letter-spacing:0.396000px;}
.ls49{letter-spacing:0.404694px;}
.ls4f{letter-spacing:0.424800px;}
.ls42{letter-spacing:0.525878px;}
.ls43{letter-spacing:1.163509px;}
.ls7{letter-spacing:1.452000px;}
.ls2{letter-spacing:2.309760px;}
.ls3f{letter-spacing:2.777760px;}
.ls45{letter-spacing:3.029760px;}
.ls5a{letter-spacing:4.469760px;}
.ls1c{letter-spacing:5.189760px;}
.ls58{letter-spacing:5.909760px;}
.ls4e{letter-spacing:7.122240px;}
.ls44{letter-spacing:16.709760px;}
.ls4d{letter-spacing:20.309760px;}
.ls65{letter-spacing:24.588000px;}
.ls46{letter-spacing:28.648452px;}
.ls27{letter-spacing:36.149760px;}
.ls23{letter-spacing:45.342720px;}
.ls47{letter-spacing:48.415253px;}
.ls63{letter-spacing:51.948000px;}
.ls11{letter-spacing:64.421280px;}
.ls3e{letter-spacing:196.961760px;}
.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;}
}
.ws4e{word-spacing:-77.760000px;}
.ws35{word-spacing:-46.199893px;}
.ws34{word-spacing:-43.755659px;}
.ws2f{word-spacing:-21.386675px;}
.wsa{word-spacing:-21.060000px;}
.ws3f{word-spacing:-18.813030px;}
.ws0{word-spacing:-18.532800px;}
.ws3a{word-spacing:-18.066186px;}
.ws1b{word-spacing:-17.424000px;}
.ws1a{word-spacing:-17.107200px;}
.ws11{word-spacing:-15.341640px;}
.ws2a{word-spacing:-15.229440px;}
.ws5{word-spacing:-15.226440px;}
.ws16{word-spacing:-15.215040px;}
.wsc{word-spacing:-15.151440px;}
.ws4d{word-spacing:-15.128640px;}
.ws2{word-spacing:-15.111240px;}
.ws8{word-spacing:-15.102840px;}
.ws1d{word-spacing:-15.099840px;}
.ws12{word-spacing:-15.059640px;}
.ws10{word-spacing:-15.045240px;}
.ws13{word-spacing:-15.030840px;}
.ws4b{word-spacing:-15.001920px;}
.ws14{word-spacing:-14.990400px;}
.ws3{word-spacing:-14.970240px;}
.wse{word-spacing:-14.921280px;}
.ws6{word-spacing:-14.892240px;}
.ws4{word-spacing:-14.855040px;}
.ws2b{word-spacing:-14.777040px;}
.ws18{word-spacing:-14.754240px;}
.ws4a{word-spacing:-14.731440px;}
.ws9{word-spacing:-14.659440px;}
.wsb{word-spacing:-14.604240px;}
.ws19{word-spacing:-14.549640px;}
.ws1e{word-spacing:-14.506440px;}
.ws2e{word-spacing:-14.382840px;}
.ws17{word-spacing:-14.379840px;}
.ws43{word-spacing:-14.268240px;}
.ws15{word-spacing:-14.202240px;}
.ws2c{word-spacing:-14.172240px;}
.ws2d{word-spacing:-14.136240px;}
.ws1c{word-spacing:-14.118240px;}
.ws20{word-spacing:-13.862760px;}
.ws1f{word-spacing:-13.277760px;}
.ws51{word-spacing:-12.402000px;}
.ws44{word-spacing:-12.204000px;}
.ws48{word-spacing:-12.186000px;}
.ws50{word-spacing:-12.150000px;}
.ws49{word-spacing:-11.970000px;}
.ws47{word-spacing:-11.952000px;}
.ws4f{word-spacing:-11.934000px;}
.ws45{word-spacing:-11.898000px;}
.ws52{word-spacing:-11.880000px;}
.ws46{word-spacing:-11.327040px;}
.ws26{word-spacing:-11.121240px;}
.ws21{word-spacing:-10.924560px;}
.ws29{word-spacing:-10.910160px;}
.wsf{word-spacing:-10.902240px;}
.ws25{word-spacing:-10.776240px;}
.ws27{word-spacing:-10.703040px;}
.ws24{word-spacing:-10.699440px;}
.ws22{word-spacing:-10.251360px;}
.ws28{word-spacing:-10.206240px;}
.wsd{word-spacing:-9.669360px;}
.ws1{word-spacing:-9.437760px;}
.ws4c{word-spacing:-9.128160px;}
.ws23{word-spacing:-6.834240px;}
.ws36{word-spacing:-1.212252px;}
.ws42{word-spacing:-0.490078px;}
.ws40{word-spacing:-0.085550px;}
.ws30{word-spacing:-0.079701px;}
.ws3b{word-spacing:-0.078838px;}
.ws37{word-spacing:-0.048743px;}
.ws7{word-spacing:0.000000px;}
.ws3c{word-spacing:2.011694px;}
.ws38{word-spacing:29.639125px;}
.ws3d{word-spacing:37.573928px;}
.ws39{word-spacing:38.095351px;}
.ws41{word-spacing:52.097230px;}
.ws3e{word-spacing:419.306442px;}
.ws31{word-spacing:727.593902px;}
.ws33{word-spacing:970.695144px;}
.ws32{word-spacing:1016.023495px;}
._12{margin-left:-3000.274223px;}
._11{margin-left:-2999.212022px;}
._1b{margin-left:-2998.050163px;}
._1f{margin-left:-2985.615443px;}
._5{margin-left:-2968.642560px;}
._8{margin-left:-2963.706297px;}
._c{margin-left:-2951.767644px;}
._d{margin-left:-2586.241004px;}
._19{margin-left:-2347.861389px;}
._a{margin-left:-1454.258206px;}
._9{margin-left:-1306.413406px;}
._2f{margin-left:-1200.666240px;}
._1a{margin-left:-1055.338295px;}
._f{margin-left:-976.299503px;}
._6{margin-left:-462.135840px;}
._48{margin-left:-365.106484px;}
._44{margin-left:-347.140186px;}
._49{margin-left:-346.057606px;}
._45{margin-left:-344.523589px;}
._32{margin-left:-341.886411px;}
._3b{margin-left:-306.100223px;}
._3d{margin-left:-299.280306px;}
._3f{margin-left:-296.606324px;}
._31{margin-left:-286.144574px;}
._59{margin-left:-225.845952px;}
._47{margin-left:-190.279798px;}
._38{margin-left:-182.949657px;}
._55{margin-left:-178.105421px;}
._43{margin-left:-174.585518px;}
._41{margin-left:-173.568742px;}
._46{margin-left:-168.200765px;}
._4a{margin-left:-161.280000px;}
._64{margin-left:-160.143404px;}
._33{margin-left:-154.939212px;}
._58{margin-left:-153.283263px;}
._34{margin-left:-150.524904px;}
._63{margin-left:-130.681474px;}
._2e{margin-left:-120.627014px;}
._5e{margin-left:-112.159215px;}
._50{margin-left:-109.964244px;}
._5b{margin-left:-107.822655px;}
._51{margin-left:-106.458762px;}
._52{margin-left:-104.293783px;}
._56{margin-left:-98.396382px;}
._5f{margin-left:-94.530850px;}
._4f{margin-left:-91.330717px;}
._35{margin-left:-87.287120px;}
._39{margin-left:-85.800653px;}
._60{margin-left:-81.806213px;}
._40{margin-left:-79.697456px;}
._53{margin-left:-76.954845px;}
._5c{margin-left:-75.808934px;}
._3e{margin-left:-72.815856px;}
._57{margin-left:-71.195985px;}
._4b{margin-left:-63.113340px;}
._4d{margin-left:-61.655955px;}
._3c{margin-left:-56.464760px;}
._5d{margin-left:-54.738164px;}
._36{margin-left:-50.531227px;}
._62{margin-left:-48.621428px;}
._37{margin-left:-47.396428px;}
._3a{margin-left:-45.054926px;}
._61{margin-left:-43.936154px;}
._30{margin-left:-39.122446px;}
._4c{margin-left:-36.167722px;}
._4e{margin-left:-31.685173px;}
._5a{margin-left:-3.453800px;}
._24{margin-left:-2.037284px;}
._2{margin-left:-1.011048px;}
._0{width:1.684800px;}
._7{width:2.839788px;}
._4{width:4.144320px;}
._1{width:5.223048px;}
._3{width:6.306240px;}
._e{width:7.494817px;}
._10{width:8.871396px;}
._16{width:10.287804px;}
._14{width:11.347415px;}
._13{width:12.404461px;}
._b{width:13.653472px;}
._65{width:14.895674px;}
._15{width:16.145954px;}
._26{width:17.188504px;}
._27{width:18.437943px;}
._17{width:19.554240px;}
._18{width:20.584008px;}
._25{width:21.931578px;}
._71{width:23.239822px;}
._22{width:24.310080px;}
._23{width:25.530888px;}
._20{width:26.694720px;}
._21{width:28.036968px;}
._2d{width:29.793764px;}
._2c{width:30.984164px;}
._2a{width:32.126400px;}
._2b{width:33.459687px;}
._29{width:34.843200px;}
._28{width:36.217124px;}
._7b{width:38.154240px;}
._7c{width:39.248007px;}
._1e{width:42.375622px;}
._1c{width:43.868461px;}
._1d{width:45.266794px;}
._6b{width:46.301760px;}
._6c{width:47.412086px;}
._69{width:66.306240px;}
._6a{width:67.503687px;}
._76{width:68.619513px;}
._68{width:84.820484px;}
._66{width:86.244480px;}
._67{width:87.486884px;}
._7e{width:88.501767px;}
._7d{width:89.755200px;}
._77{width:96.246720px;}
._72{width:105.255360px;}
._73{width:106.299044px;}
._6f{width:111.548160px;}
._70{width:113.247524px;}
._7a{width:115.349924px;}
._74{width:123.405120px;}
._75{width:124.917611px;}
._78{width:142.614720px;}
._79{width:143.641920px;}
._6d{width:147.913920px;}
._6e{width:148.962087px;}
._54{width:344.556876px;}
._42{width:937.449666px;}
.fc6{color:transparent;}
.fc5{color:rgb(192,0,0);}
.fc4{color:rgb(79,129,189);}
.fc3{color:rgb(54,95,145);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:28.448783px;}
.fs8{font-size:30.240000px;}
.fs10{font-size:35.672739px;}
.fsa{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs15{font-size:39.302966px;}
.fs16{font-size:41.452523px;}
.fs2{font-size:41.760000px;}
.fs9{font-size:45.360000px;}
.fse{font-size:46.451957px;}
.fs26{font-size:46.607418px;}
.fs17{font-size:48.070389px;}
.fs6{font-size:48.240000px;}
.fs12{font-size:48.743410px;}
.fs29{font-size:49.781991px;}
.fsb{font-size:49.941492px;}
.fs1e{font-size:49.943205px;}
.fs18{font-size:50.303603px;}
.fs14{font-size:51.455481px;}
.fs3{font-size:54.000000px;}
.fs24{font-size:57.031982px;}
.fs5{font-size:59.760000px;}
.fs11{font-size:64.103965px;}
.fs0{font-size:66.240000px;}
.fs22{font-size:68.812551px;}
.fs19{font-size:69.081731px;}
.fs1a{font-size:72.264743px;}
.fs23{font-size:75.252120px;}
.fs7{font-size:77.760000px;}
.fs1b{font-size:78.837619px;}
.fsd{font-size:79.700654px;}
.fs27{font-size:79.854196px;}
.fs1c{font-size:82.093831px;}
.fs20{font-size:82.853886px;}
.fs21{font-size:83.103886px;}
.fsf{font-size:84.152810px;}
.fs1{font-size:84.240000px;}
.fs28{font-size:85.383773px;}
.fsc{font-size:85.546698px;}
.fs1d{font-size:85.549631px;}
.fs2e{font-size:87.795755px;}
.fs2f{font-size:87.795768px;}
.fs2b{font-size:87.818827px;}
.fs2a{font-size:89.037801px;}
.fs25{font-size:89.365572px;}
.fs2c{font-size:89.506492px;}
.fs30{font-size:89.529153px;}
.fs2d{font-size:89.529206px;}
.fs1f{font-size:89.575771px;}
.y0{bottom:0.000000px;}
.y138{bottom:3.224638px;}
.y1b8{bottom:3.600000px;}
.y13b{bottom:3.816738px;}
.yc9{bottom:4.320000px;}
.yd2{bottom:4.500000px;}
.y13c{bottom:4.668148px;}
.yc3{bottom:4.680000px;}
.yfe{bottom:4.725000px;}
.y154{bottom:4.736665px;}
.y13f{bottom:4.755193px;}
.y11d{bottom:4.787177px;}
.y196{bottom:4.787340px;}
.y192{bottom:4.787344px;}
.y150{bottom:4.787356px;}
.y159{bottom:4.787359px;}
.y148{bottom:4.830173px;}
.ye2{bottom:4.860000px;}
.ye8{bottom:5.040000px;}
.y178{bottom:5.220000px;}
.yeb{bottom:5.400000px;}
.y1b6{bottom:5.580000px;}
.y1bc{bottom:5.940000px;}
.y134{bottom:5.948102px;}
.yc4{bottom:6.120000px;}
.yf3{bottom:6.300000px;}
.y1cd{bottom:6.480000px;}
.y15c{bottom:6.594912px;}
.y14a{bottom:7.844156px;}
.y14d{bottom:7.867075px;}
.y141{bottom:7.904364px;}
.y18f{bottom:8.327572px;}
.y19c{bottom:8.327589px;}
.y18b{bottom:8.327606px;}
.y227{bottom:8.640000px;}
.y22d{bottom:8.670000px;}
.y229{bottom:8.820000px;}
.y156{bottom:8.866917px;}
.y142{bottom:8.866940px;}
.y2b5{bottom:9.540000px;}
.y2bf{bottom:9.720000px;}
.y2bc{bottom:9.765000px;}
.y2b1{bottom:9.900000px;}
.y11e{bottom:10.137586px;}
.y145{bottom:10.137920px;}
.y158{bottom:10.137930px;}
.y146{bottom:10.137936px;}
.y197{bottom:10.137947px;}
.y193{bottom:10.137950px;}
.y151{bottom:10.137982px;}
.y15a{bottom:10.137986px;}
.y164{bottom:10.178243px;}
.y165{bottom:10.178280px;}
.y2af{bottom:11.520000px;}
.y15d{bottom:11.560689px;}
.y160{bottom:11.560712px;}
.y161{bottom:11.560751px;}
.y128{bottom:11.599395px;}
.y129{bottom:11.599398px;}
.yc7{bottom:12.240000px;}
.yd4{bottom:12.420000px;}
.ye9{bottom:12.780000px;}
.y133{bottom:12.787312px;}
.y139{bottom:14.328947px;}
.ye6{bottom:14.580000px;}
.y2a5{bottom:14.940000px;}
.y2ac{bottom:15.660000px;}
.y2a8{bottom:17.640000px;}
.y2b7{bottom:17.820000px;}
.y18e{bottom:17.902728px;}
.y19b{bottom:17.902735px;}
.y18a{bottom:17.902741px;}
.y2be{bottom:18.000000px;}
.y2b9{bottom:18.045000px;}
.y2a3{bottom:18.360000px;}
.y2a2{bottom:18.720000px;}
.yfa{bottom:19.260000px;}
.yf8{bottom:19.440000px;}
.ye1{bottom:19.620000px;}
.yc8{bottom:19.800000px;}
.yd1{bottom:19.980000px;}
.yea{bottom:20.160000px;}
.y23b{bottom:20.190000px;}
.y1be{bottom:20.205000px;}
.yc2{bottom:20.880000px;}
.yf2{bottom:21.060000px;}
.y2aa{bottom:21.420000px;}
.y174{bottom:21.600000px;}
.y29f{bottom:21.960000px;}
.y1bb{bottom:22.320000px;}
.y2b6{bottom:22.500000px;}
.y2ba{bottom:22.545000px;}
.y2ae{bottom:23.940000px;}
.y2b2{bottom:24.300000px;}
.y2b4{bottom:26.100000px;}
.y2bb{bottom:26.145000px;}
.yf5{bottom:27.360000px;}
.y2a0{bottom:28.440000px;}
.ye4{bottom:29.340000px;}
.y2a6{bottom:29.520000px;}
.y2ab{bottom:32.220000px;}
.y2a1{bottom:33.660000px;}
.yf7{bottom:34.020000px;}
.y2a4{bottom:34.740000px;}
.yfb{bottom:34.920000px;}
.yf9{bottom:35.460000px;}
.y1d2{bottom:36.540000px;}
.y23a{bottom:36.570000px;}
.y24b{bottom:36.585000px;}
.y176{bottom:37.980000px;}
.y173{bottom:38.160000px;}
.y2b0{bottom:40.680000px;}
.ye5{bottom:43.920000px;}
.y2a7{bottom:44.640000px;}
.ydc{bottom:46.845000px;}
.y2a9{bottom:48.600000px;}
.yf6{bottom:50.040000px;}
.y2ad{bottom:52.200000px;}
.y235{bottom:52.920000px;}
.y1d1{bottom:53.100000px;}
.y239{bottom:53.130000px;}
.y24a{bottom:53.145000px;}
.y172{bottom:54.540000px;}
.y23{bottom:57.240000px;}
.y223{bottom:57.420000px;}
.yd9{bottom:61.605000px;}
.ydb{bottom:61.785000px;}
.y234{bottom:69.480000px;}
.y238{bottom:69.510000px;}
.y1d0{bottom:69.525000px;}
.yda{bottom:76.365000px;}
.ybf{bottom:77.400000px;}
.y1{bottom:77.436000px;}
.y222{bottom:77.580000px;}
.y254{bottom:77.616000px;}
.y233{bottom:85.905000px;}
.y242{bottom:86.040000px;}
.y237{bottom:86.070000px;}
.y1cf{bottom:86.085000px;}
.ycf{bottom:87.150000px;}
.ycd{bottom:94.530000px;}
.y23c{bottom:96.120000px;}
.y253{bottom:101.700000px;}
.yce{bottom:101.910000px;}
.y252{bottom:102.450000px;}
.y232{bottom:102.465000px;}
.yf0{bottom:111.060000px;}
.y86{bottom:111.096000px;}
.y65{bottom:111.456000px;}
.y3c{bottom:111.816000px;}
.y29c{bottom:113.796000px;}
.y220{bottom:114.696000px;}
.yef{bottom:114.840000px;}
.y85{bottom:114.876000px;}
.y110{bottom:115.236000px;}
.y24c{bottom:116.820000px;}
.y3b{bottom:117.036000px;}
.y2ff{bottom:117.576000px;}
.y251{bottom:119.010000px;}
.y249{bottom:119.025000px;}
.y1d9{bottom:119.736000px;}
.y16{bottom:120.636000px;}
.y13a{bottom:122.460000px;}
.y137{bottom:125.535000px;}
.y117{bottom:125.856000px;}
.yee{bottom:126.360000px;}
.y84{bottom:126.936000px;}
.y64{bottom:128.376000px;}
.y10f{bottom:128.916000px;}
.y1b2{bottom:129.456000px;}
.y116{bottom:129.636000px;}
.y136{bottom:129.996000px;}
.y99{bottom:130.176000px;}
.y3a{bottom:130.716000px;}
.yed{bottom:131.580000px;}
.yae{bottom:131.616000px;}
.y29b{bottom:133.056000px;}
.y63{bottom:133.596000px;}
.y177{bottom:134.676000px;}
.y250{bottom:135.390000px;}
.y98{bottom:135.396000px;}
.y248{bottom:135.585000px;}
.y2fe{bottom:137.736000px;}
.y115{bottom:141.696000px;}
.y1b1{bottom:144.756000px;}
.yec{bottom:145.260000px;}
.y62{bottom:147.096000px;}
.y55{bottom:147.996000px;}
.y97{bottom:148.896000px;}
.y1b0{bottom:149.976000px;}
.y2e3{bottom:150.150000px;}
.y135{bottom:151.230000px;}
.y24f{bottom:151.950000px;}
.y247{bottom:151.965000px;}
.y175{bottom:154.650000px;}
.y21f{bottom:155.010000px;}
.y209{bottom:155.370000px;}
.y1f2{bottom:157.710000px;}
.y2fd{bottom:157.890000px;}
.y39{bottom:159.150000px;}
.y1d8{bottom:159.870000px;}
.y15{bottom:160.950000px;}
.y1af{bottom:162.390000px;}
.y132{bottom:162.660000px;}
.y236{bottom:162.720000px;}
.y10e{bottom:162.930000px;}
.y44{bottom:163.650000px;}
.y29a{bottom:166.710000px;}
.y24e{bottom:168.330000px;}
.y246{bottom:168.525000px;}
.y131{bottom:170.130000px;}
.y2e2{bottom:170.310000px;}
.ybe{bottom:172.650000px;}
.y130{bottom:175.350000px;}
.y1ae{bottom:177.690000px;}
.y1f1{bottom:177.870000px;}
.y2fc{bottom:178.050000px;}
.y75{bottom:179.130000px;}
.y275{bottom:181.830000px;}
.y1ad{bottom:182.910000px;}
.y1b4{bottom:183.630000px;}
.y93{bottom:184.530000px;}
.y24d{bottom:184.890000px;}
.y245{bottom:184.935000px;}
.y299{bottom:185.790000px;}
.yad{bottom:186.870000px;}
.y54{bottom:188.310000px;}
.y12f{bottom:189.030000px;}
.y2e1{bottom:190.470000px;}
.y12e{bottom:194.250000px;}
.y21e{bottom:195.150000px;}
.y208{bottom:195.510000px;}
.y43{bottom:196.410000px;}
.y1ac{bottom:196.590000px;}
.y2fb{bottom:198.030000px;}
.y38{bottom:199.470000px;}
.y1d7{bottom:200.190000px;}
.y274{bottom:200.910000px;}
.y14{bottom:201.270000px;}
.y19e{bottom:202.350000px;}
.y96{bottom:203.250000px;}
.y298{bottom:204.870000px;}
.y12d{bottom:207.390000px;}
.y2e0{bottom:210.630000px;}
.y12c{bottom:212.610000px;}
.ybd{bottom:212.970000px;}
.ye3{bottom:213.150000px;}
.y1f0{bottom:214.410000px;}
.y2fa{bottom:218.190000px;}
.y74{bottom:219.270000px;}
.y273{bottom:219.990000px;}
.y297{bottom:223.770000px;}
.y1b3{bottom:223.950000px;}
.y92{bottom:224.850000px;}
.y12b{bottom:226.290000px;}
.yac{bottom:227.190000px;}
.y53{bottom:228.450000px;}
.y2df{bottom:230.790000px;}
.y21d{bottom:235.470000px;}
.y207{bottom:235.830000px;}
.y2f9{bottom:238.350000px;}
.y37{bottom:239.790000px;}
.y1d6{bottom:240.510000px;}
.y13{bottom:241.410000px;}
.y19d{bottom:242.670000px;}
.y61{bottom:243.570000px;}
.ye7{bottom:246.990000px;}
.y1ce{bottom:248.610000px;}
.y1e3{bottom:249.510000px;}
.y2de{bottom:250.770000px;}
.y1ef{bottom:251.130000px;}
.y272{bottom:253.650000px;}
.ybc{bottom:255.810000px;}
.y10d{bottom:258.510000px;}
.y73{bottom:259.590000px;}
.y296{bottom:261.750000px;}
.y231{bottom:262.470000px;}
.y90{bottom:265.170000px;}
.yab{bottom:267.510000px;}
.y114{bottom:268.770000px;}
.y2dd{bottom:270.930000px;}
.y91{bottom:271.110000px;}
.y271{bottom:272.730000px;}
.y21c{bottom:275.790000px;}
.y206{bottom:276.150000px;}
.y171{bottom:278.670000px;}
.y36{bottom:280.110000px;}
.ye0{bottom:280.290000px;}
.y12{bottom:281.730000px;}
.y83{bottom:282.810000px;}
.y52{bottom:283.890000px;}
.y1ee{bottom:287.670000px;}
.y1d5{bottom:289.830000px;}
.y2dc{bottom:291.090000px;}
.y295{bottom:295.410000px;}
.y10c{bottom:298.830000px;}
.y72{bottom:299.910000px;}
.ybb{bottom:302.970000px;}
.y270{bottom:306.570000px;}
.yaa{bottom:307.650000px;}
.y8f{bottom:308.010000px;}
.y112{bottom:309.090000px;}
.y2db{bottom:311.250000px;}
.yd8{bottom:313.590000px;}
.y127{bottom:313.859980px;}
.y294{bottom:314.535000px;}
.y113{bottom:315.075000px;}
.y21b{bottom:316.155000px;}
.y205{bottom:316.515000px;}
.y2f8{bottom:319.035000px;}
.ya4{bottom:319.395000px;}
.y34{bottom:320.475000px;}
.y11{bottom:322.095000px;}
.y170{bottom:322.815000px;}
.y19a{bottom:323.159980px;}
.y199{bottom:323.175000px;}
.y51{bottom:324.075000px;}
.y12a{bottom:324.255000px;}
.y26f{bottom:325.695000px;}
.y35{bottom:326.415000px;}
.y1d4{bottom:330.195000px;}
.y2da{bottom:331.455000px;}
.y244{bottom:331.770000px;}
.y82{bottom:338.115000px;}
.y10b{bottom:339.195000px;}
.y71{bottom:340.275000px;}
.ydf{bottom:346.395000px;}
.yba{bottom:347.295000px;}
.ya9{bottom:348.015000px;}
.y293{bottom:348.375000px;}
.y1cc{bottom:349.815000px;}
.y2d9{bottom:351.615000px;}
.y21a{bottom:356.475000px;}
.y204{bottom:356.835000px;}
.y2f7{bottom:359.355000px;}
.y26e{bottom:359.535000px;}
.y33{bottom:360.615000px;}
.y1ed{bottom:361.695000px;}
.y10{bottom:362.415000px;}
.y50{bottom:364.395000px;}
.y8e{bottom:366.195000px;}
.y292{bottom:367.455000px;}
.y1cb{bottom:369.255000px;}
.y95{bottom:370.335000px;}
.y16f{bottom:370.695000px;}
.y2d8{bottom:371.775000px;}
.ya3{bottom:374.655000px;}
.y81{bottom:378.435000px;}
.y230{bottom:378.615000px;}
.y126{bottom:378.975000px;}
.y198{bottom:379.334959px;}
.yde{bottom:379.335000px;}
.y2f6{bottom:379.515000px;}
.y70{bottom:380.595000px;}
.y2c3{bottom:383.295000px;}
.yb9{bottom:387.615000px;}
.ya8{bottom:388.335000px;}
.y2d7{bottom:391.935000px;}
.y26d{bottom:393.555000px;}
.y107{bottom:395.535000px;}
.y219{bottom:396.615000px;}
.y203{bottom:396.975000px;}
.y2f5{bottom:399.495000px;}
.y2c2{bottom:400.575000px;}
.y32{bottom:400.935000px;}
.y291{bottom:401.295000px;}
.yf{bottom:402.555000px;}
.y4f{bottom:404.715000px;}
.y8d{bottom:406.515000px;}
.y1ca{bottom:406.875000px;}
.y1d3{bottom:410.655000px;}
.y16e{bottom:410.835000px;}
.y2d6{bottom:412.095000px;}
.ydd{bottom:412.275000px;}
.y26c{bottom:412.635000px;}
.ya2{bottom:414.975000px;}
.y80{bottom:418.755000px;}
.y125{bottom:419.115000px;}
.y10a{bottom:419.655000px;}
.y290{bottom:420.375000px;}
.y6f{bottom:420.735000px;}
.y1ec{bottom:423.075000px;}
.yb8{bottom:427.935000px;}
.ya7{bottom:428.655000px;}
.y106{bottom:429.735000px;}
.y2d5{bottom:432.255000px;}
.y22f{bottom:434.595000px;}
.y194{bottom:435.315000px;}
.y195{bottom:435.359959px;}
.y218{bottom:436.935000px;}
.y28f{bottom:439.455000px;}
.y1c9{bottom:439.815000px;}
.ye{bottom:442.875000px;}
.y4e{bottom:445.035000px;}
.y221{bottom:445.215000px;}
.ycc{bottom:445.575000px;}
.y26b{bottom:446.295000px;}
.y8c{bottom:446.835000px;}
.y1e1{bottom:450.975000px;}
.y16d{bottom:451.155000px;}
.y201{bottom:452.235000px;}
.ya1{bottom:455.295000px;}
.y31{bottom:456.195000px;}
.y22e{bottom:456.915000px;}
.y202{bottom:458.175000px;}
.y28e{bottom:458.355000px;}
.y7f{bottom:458.895000px;}
.y124{bottom:459.435000px;}
.y109{bottom:459.975000px;}
.y6e{bottom:461.055000px;}
.y105{bottom:464.295000px;}
.y26a{bottom:465.555000px;}
.yb7{bottom:468.075000px;}
.ya6{bottom:468.975000px;}
.y1eb{bottom:470.775000px;}
.y2d4{bottom:472.395000px;}
.y1c8{bottom:472.755000px;}
.y217{bottom:477.255000px;}
.yd7{bottom:478.335000px;}
.y2f4{bottom:480.135000px;}
.y104{bottom:482.655000px;}
.yd{bottom:483.195000px;}
.y4d{bottom:485.355000px;}
.y8b{bottom:487.155000px;}
.y1e0{bottom:491.295000px;}
.y191{bottom:491.459959px;}
.y16c{bottom:491.475000px;}
.y200{bottom:492.555000px;}
.ya0{bottom:495.615000px;}
.y28d{bottom:496.155000px;}
.y30{bottom:496.515000px;}
.y7e{bottom:499.215000px;}
.y123{bottom:499.755000px;}
.y60{bottom:500.295000px;}
.y6d{bottom:501.375000px;}
.ya5{bottom:502.635000px;}
.y1c7{bottom:505.695000px;}
.y22c{bottom:507.135000px;}
.yb6{bottom:508.395000px;}
.y1ea{bottom:511.095000px;}
.yd6{bottom:511.305000px;}
.y2d3{bottom:512.715000px;}
.y28c{bottom:515.235000px;}
.y103{bottom:517.245000px;}
.y216{bottom:517.575000px;}
.y269{bottom:518.475000px;}
.y2f3{bottom:520.455000px;}
.y4c{bottom:525.495000px;}
.yb2{bottom:526.215000px;}
.y8a{bottom:527.295000px;}
.y22b{bottom:529.485000px;}
.y243{bottom:530.385000px;}
.y1df{bottom:531.615000px;}
.y16b{bottom:531.795000px;}
.y1ff{bottom:532.875000px;}
.y9f{bottom:535.755000px;}
.y102{bottom:535.785000px;}
.y2f{bottom:536.835000px;}
.y268{bottom:537.375000px;}
.y1e2{bottom:537.555000px;}
.yc{bottom:538.455000px;}
.y1c6{bottom:538.635000px;}
.y7d{bottom:539.535000px;}
.y121{bottom:540.075000px;}
.y5f{bottom:540.615000px;}
.y6c{bottom:541.695000px;}
.yb5{bottom:544.215000px;}
.yd5{bottom:544.245000px;}
.y122{bottom:546.015000px;}
.y108{bottom:546.555000px;}
.y190{bottom:547.455000px;}
.y28b{bottom:548.895000px;}
.y1e9{bottom:551.415000px;}
.y241{bottom:552.705000px;}
.y2d2{bottom:553.035000px;}
.y267{bottom:556.275000px;}
.y215{bottom:557.895000px;}
.y2f2{bottom:560.775000px;}
.yb1{bottom:562.395000px;}
.y4b{bottom:565.845000px;}
.y89{bottom:567.645000px;}
.y28a{bottom:568.185000px;}
.y101{bottom:568.905000px;}
.y1c5{bottom:571.605000px;}
.y1de{bottom:571.785000px;}
.y16a{bottom:572.145000px;}
.y1fe{bottom:573.225000px;}
.y9e{bottom:576.105000px;}
.yd3{bottom:577.005000px;}
.y2e{bottom:577.185000px;}
.y22a{bottom:579.705000px;}
.y7c{bottom:579.885000px;}
.y120{bottom:580.425000px;}
.y5e{bottom:580.785000px;}
.y2f1{bottom:580.965000px;}
.y6b{bottom:582.045000px;}
.yb0{bottom:583.305000px;}
.y18d{bottom:587.760000px;}
.y18c{bottom:587.805000px;}
.y266{bottom:590.145000px;}
.y1e8{bottom:591.765000px;}
.y2d1{bottom:593.385000px;}
.yb{bottom:593.745000px;}
.y214{bottom:598.065000px;}
.y228{bottom:598.605000px;}
.y2f0{bottom:600.945000px;}
.y289{bottom:601.845000px;}
.y100{bottom:602.205000px;}
.y1c4{bottom:604.725000px;}
.y1ab{bottom:605.985000px;}
.y4a{bottom:606.165000px;}
.y265{bottom:609.225000px;}
.yd0{bottom:609.945000px;}
.y94{bottom:612.105000px;}
.y169{bottom:612.285000px;}
.y1fd{bottom:613.545000px;}
.y2d{bottom:617.505000px;}
.yaf{bottom:617.865000px;}
.y88{bottom:618.585000px;}
.y7a{bottom:620.205000px;}
.y11f{bottom:620.565000px;}
.y5d{bottom:621.105000px;}
.y6a{bottom:622.185000px;}
.y7b{bottom:626.145000px;}
.y264{bottom:628.125000px;}
.y9d{bottom:631.365000px;}
.y1e6{bottom:631.905000px;}
.y2d0{bottom:633.705000px;}
.ya{bottom:634.065000px;}
.yff{bottom:635.505000px;}
.y288{bottom:635.865000px;}
.y1c3{bottom:637.665000px;}
.y1e7{bottom:637.845000px;}
.y2ef{bottom:641.265000px;}
.y189{bottom:643.934959px;}
.y188{bottom:643.965000px;}
.ycb{bottom:644.325000px;}
.y49{bottom:646.485000px;}
.y1dd{bottom:652.425000px;}
.y168{bottom:652.605000px;}
.y213{bottom:653.505000px;}
.y1fc{bottom:653.685000px;}
.y287{bottom:654.945000px;}
.y226{bottom:655.125000px;}
.y1aa{bottom:655.305000px;}
.y11c{bottom:656.384959px;}
.y2c{bottom:657.645000px;}
.y79{bottom:660.345000px;}
.y5c{bottom:661.425000px;}
.y263{bottom:661.965000px;}
.y69{bottom:662.505000px;}
.yca{bottom:663.405000px;}
.y11b{bottom:665.385000px;}
.yfd{bottom:669.885000px;}
.y1c2{bottom:670.605000px;}
.y9c{bottom:671.685000px;}
.y1e5{bottom:672.225000px;}
.y2c1{bottom:672.405000px;}
.y42{bottom:673.125000px;}
.y2cf{bottom:673.845000px;}
.y240{bottom:674.790000px;}
.y262{bottom:681.045000px;}
.y2ee{bottom:681.585000px;}
.yc6{bottom:682.710000px;}
.y48{bottom:686.805000px;}
.y286{bottom:688.785000px;}
.yfc{bottom:689.010000px;}
.y9{bottom:689.325000px;}
.y1dc{bottom:692.745000px;}
.y212{bottom:693.645000px;}
.y1fb{bottom:694.005000px;}
.y1a8{bottom:695.625000px;}
.y2b{bottom:697.965000px;}
.y186{bottom:699.945000px;}
.y78{bottom:700.665000px;}
.y1a9{bottom:701.565000px;}
.y5b{bottom:701.745000px;}
.y68{bottom:702.825000px;}
.y1c1{bottom:703.545000px;}
.y167{bottom:704.445000px;}
.y187{bottom:705.885000px;}
.y225{bottom:706.290000px;}
.y285{bottom:707.865000px;}
.yf4{bottom:708.270000px;}
.y9b{bottom:712.005000px;}
.y1e4{bottom:712.545000px;}
.y2ce{bottom:714.165000px;}
.y261{bottom:714.885000px;}
.yc5{bottom:717.090000px;}
.y2c0{bottom:718.125000px;}
.y300{bottom:718.845000px;}
.y2ed{bottom:721.905000px;}
.y11a{bottom:724.065000px;}
.y284{bottom:726.765000px;}
.y41{bottom:726.945000px;}
.y1db{bottom:733.065000px;}
.y211{bottom:733.965000px;}
.y1fa{bottom:734.325000px;}
.y8{bottom:735.585000px;}
.y1a6{bottom:735.765000px;}
.yc1{bottom:736.170000px;}
.y1c0{bottom:736.485000px;}
.y2a{bottom:738.285000px;}
.y185{bottom:740.234919px;}
.y184{bottom:740.265000px;}
.y77{bottom:740.985000px;}
.y23f{bottom:741.390000px;}
.y1a7{bottom:741.705000px;}
.y5a{bottom:742.065000px;}
.y67{bottom:745.665000px;}
.y283{bottom:745.845000px;}
.y9a{bottom:752.325000px;}
.y260{bottom:753.045000px;}
.y2cd{bottom:754.485000px;}
.y15f{bottom:758.234919px;}
.y163{bottom:759.659919px;}
.y166{bottom:759.705000px;}
.y2ec{bottom:762.225000px;}
.y23e{bottom:763.710000px;}
.y2bd{bottom:763.845000px;}
.y76{bottom:764.385000px;}
.y282{bottom:764.745000px;}
.y40{bottom:767.265000px;}
.y162{bottom:768.705000px;}
.y224{bottom:768.930000px;}
.y1bf{bottom:769.425000px;}
.y25f{bottom:771.945000px;}
.yf1{bottom:772.710000px;}
.y1da{bottom:773.205000px;}
.y210{bottom:774.285000px;}
.y2cc{bottom:774.645000px;}
.y1a5{bottom:776.085000px;}
.y29{bottom:778.605000px;}
.y59{bottom:782.205000px;}
.y2eb{bottom:782.385000px;}
.y281{bottom:783.645000px;}
.y23d{bottom:786.210000px;}
.y119{bottom:788.145000px;}
.y1f9{bottom:789.585000px;}
.y7{bottom:790.845000px;}
.y22{bottom:792.645000px;}
.y2cb{bottom:794.805000px;}
.yc0{bottom:795.750000px;}
.y183{bottom:796.425000px;}
.y1bd{bottom:802.365000px;}
.y25e{bottom:805.605000px;}
.y3f{bottom:807.585000px;}
.y66{bottom:807.765000px;}
.y2b8{bottom:809.565000px;}
.y20f{bottom:814.605000px;}
.y2ca{bottom:814.965000px;}
.y15e{bottom:815.865000px;}
.y280{bottom:817.485000px;}
.y28{bottom:818.970000px;}
.y58{bottom:822.570000px;}
.y25d{bottom:824.910000px;}
.y1a4{bottom:828.150000px;}
.y1f8{bottom:829.950000px;}
.y21{bottom:832.830000px;}
.y2c9{bottom:834.990000px;}
.y1ba{bottom:835.350000px;}
.y27f{bottom:836.610000px;}
.y182{bottom:836.790000px;}
.y6{bottom:840.210000px;}
.y2ea{bottom:842.730000px;}
.y3e{bottom:847.950000px;}
.y15b{bottom:851.685000px;}
.y157{bottom:853.109919px;}
.y155{bottom:854.534919px;}
.y20e{bottom:854.970000px;}
.y2c8{bottom:855.150000px;}
.y27e{bottom:855.510000px;}
.y153{bottom:857.609919px;}
.y25c{bottom:858.570000px;}
.y27{bottom:859.110000px;}
.y152{bottom:862.170000px;}
.y57{bottom:862.890000px;}
.y118{bottom:868.830000px;}
.y1f7{bottom:870.270000px;}
.y1b9{bottom:870.630000px;}
.y20{bottom:873.150000px;}
.y2c7{bottom:875.310000px;}
.y181{bottom:876.930000px;}
.y25b{bottom:877.830000px;}
.y2e9{bottom:883.050000px;}
.y1a3{bottom:886.110000px;}
.y5{bottom:886.470000px;}
.y3d{bottom:888.090000px;}
.y27d{bottom:889.350000px;}
.y20d{bottom:895.110000px;}
.y2c6{bottom:895.470000px;}
.y25a{bottom:896.730000px;}
.y26{bottom:899.430000px;}
.y2b3{bottom:901.230000px;}
.y47{bottom:903.210000px;}
.y14f{bottom:904.784919px;}
.y180{bottom:905.190000px;}
.y1b7{bottom:905.730000px;}
.y27c{bottom:908.430000px;}
.y1f6{bottom:910.590000px;}
.y14e{bottom:913.830000px;}
.y259{bottom:915.630000px;}
.y2e8{bottom:923.370000px;}
.y1a2{bottom:926.430000px;}
.y1f{bottom:928.410000px;}
.y17f{bottom:930.570000px;}
.y20c{bottom:935.430000px;}
.y4{bottom:935.790000px;}
.y25{bottom:939.750000px;}
.y1b5{bottom:941.010000px;}
.y27b{bottom:942.270000px;}
.y46{bottom:943.530000px;}
.y17e{bottom:947.130000px;}
.y29e{bottom:947.670000px;}
.y56{bottom:949.470000px;}
.y1f5{bottom:950.730000px;}
.y2c5{bottom:955.950000px;}
.y14c{bottom:956.234919px;}
.y29d{bottom:958.470000px;}
.y27a{bottom:961.350000px;}
.y17d{bottom:962.430000px;}
.y2e7{bottom:963.690000px;}
.y14b{bottom:963.870000px;}
.y1a1{bottom:966.750000px;}
.y258{bottom:968.550000px;}
.y1e{bottom:968.730000px;}
.y20b{bottom:975.750000px;}
.y17c{bottom:982.230000px;}
.y45{bottom:983.670000px;}
.y2e6{bottom:983.850000px;}
.y24{bottom:984.030000px;}
.y1f4{bottom:991.050000px;}
.y279{bottom:995.190000px;}
.y2c4{bottom:1000.770000px;}
.y17b{bottom:1002.030000px;}
.y144{bottom:1002.359919px;}
.y257{bottom:1002.390000px;}
.y149{bottom:1003.784919px;}
.y2e5{bottom:1003.830000px;}
.y147{bottom:1006.859919px;}
.y1a0{bottom:1007.070000px;}
.y3{bottom:1010.670000px;}
.y143{bottom:1011.390000px;}
.y278{bottom:1014.270000px;}
.y20a{bottom:1016.070000px;}
.y256{bottom:1021.470000px;}
.y17a{bottom:1021.830000px;}
.y1d{bottom:1023.990000px;}
.y1f3{bottom:1024.710000px;}
.y87{bottom:1027.590000px;}
.yb4{bottom:1029.750000px;}
.y111{bottom:1029.930000px;}
.y179{bottom:1041.810000px;}
.y2e4{bottom:1044.150000px;}
.y277{bottom:1048.110000px;}
.y140{bottom:1053.959919px;}
.y13e{bottom:1057.034919px;}
.y2{bottom:1059.990000px;}
.y19f{bottom:1060.350000px;}
.y255{bottom:1061.430000px;}
.y13d{bottom:1061.610000px;}
.y1c{bottom:1064.310000px;}
.yb3{bottom:1065.750000px;}
.y276{bottom:1067.190000px;}
.y1b{bottom:1089.513000px;}
.y1a{bottom:1108.008000px;}
.y19{bottom:1124.208000px;}
.y18{bottom:1140.408000px;}
.y17{bottom:1156.608000px;}
.h13{height:17.640000px;}
.h16{height:17.676000px;}
.h54{height:18.036000px;}
.h6c{height:18.180000px;}
.h5f{height:18.360000px;}
.h63{height:18.540000px;}
.h3d{height:19.050284px;}
.h43{height:19.050536px;}
.h34{height:19.125057px;}
.h4e{height:19.440000px;}
.h53{height:19.620000px;}
.h2c{height:19.753012px;}
.h69{height:20.160000px;}
.h2e{height:20.173931px;}
.h70{height:21.420000px;}
.h6b{height:21.600000px;}
.h6a{height:21.636000px;}
.h27{height:22.499225px;}
.h2a{height:22.499496px;}
.h31{height:24.674186px;}
.h3f{height:25.874736px;}
.h38{height:25.949956px;}
.h36{height:25.950336px;}
.h30{height:28.781976px;}
.hd{height:30.077578px;}
.h20{height:31.498740px;}
.h59{height:31.499779px;}
.h5d{height:31.499799px;}
.h56{height:31.499820px;}
.h3a{height:31.499860px;}
.h47{height:31.501527px;}
.h23{height:31.501547px;}
.h4a{height:31.501608px;}
.h14{height:32.760000px;}
.h1b{height:32.796000px;}
.h18{height:32.940000px;}
.h19{height:32.976000px;}
.h62{height:33.120000px;}
.h11{height:33.840000px;}
.h1e{height:33.876000px;}
.h33{height:34.927599px;}
.h28{height:35.010843px;}
.h61{height:35.280000px;}
.h2d{height:35.727389px;}
.h1f{height:35.806641px;}
.h68{height:36.540000px;}
.h67{height:36.576000px;}
.h15{height:36.627539px;}
.h65{height:36.720000px;}
.h2f{height:38.573712px;}
.h9{height:38.671172px;}
.h6{height:38.759766px;}
.h60{height:41.000977px;}
.h8{height:41.535703px;}
.h4{height:42.124219px;}
.h3{height:44.064844px;}
.h29{height:44.509686px;}
.h76{height:45.000000px;}
.h77{height:45.036000px;}
.h48{height:45.719874px;}
.h32{height:47.178458px;}
.h2b{height:47.838991px;}
.he{height:47.980898px;}
.h21{height:48.990458px;}
.h42{height:48.992138px;}
.h57{height:49.016524px;}
.h12{height:49.394180px;}
.h6d{height:49.500000px;}
.h66{height:50.294531px;}
.h52{height:52.380000px;}
.h51{height:53.709961px;}
.h4f{height:55.291992px;}
.h74{height:55.503491px;}
.h45{height:55.945924px;}
.h40{height:57.528431px;}
.h41{height:57.702014px;}
.h25{height:58.430320px;}
.ha{height:59.439023px;}
.h5b{height:60.959748px;}
.h5c{height:60.959757px;}
.h55{height:60.975767px;}
.hb{height:61.189805px;}
.h4d{height:61.822145px;}
.h46{height:62.049728px;}
.h58{height:62.147574px;}
.h5e{height:62.163309px;}
.h5a{height:62.163345px;}
.h3e{height:62.195677px;}
.h1d{height:63.000000px;}
.hf{height:65.837812px;}
.h6f{height:65.880000px;}
.h1{height:65.884219px;}
.h1c{height:66.780000px;}
.h44{height:67.502156px;}
.h35{height:67.766210px;}
.h5{height:67.824844px;}
.h50{height:68.940000px;}
.h2{height:71.324297px;}
.h37{height:77.374811px;}
.h24{height:78.221834px;}
.h49{height:78.333535px;}
.hc{height:78.367500px;}
.h4b{height:78.372526px;}
.h39{height:80.530521px;}
.h26{height:83.787539px;}
.h4c{height:83.799504px;}
.h3c{height:83.920512px;}
.h22{height:83.959406px;}
.h3b{height:83.962285px;}
.h75{height:85.140000px;}
.h7{height:87.695156px;}
.h71{height:98.820000px;}
.h64{height:98.856000px;}
.h6e{height:115.236000px;}
.h1a{height:131.436000px;}
.h17{height:197.310000px;}
.h72{height:197.895000px;}
.h73{height:214.230000px;}
.h10{height:918.000000px;}
.h0{height:1188.000000px;}
.w1c{width:9.000071px;}
.w30{width:14.549459px;}
.w2e{width:14.549480px;}
.w2b{width:14.625038px;}
.w25{width:14.625078px;}
.w21{width:19.049741px;}
.w18{width:19.050827px;}
.w1e{width:19.123712px;}
.w20{width:19.124239px;}
.w22{width:19.124259px;}
.w35{width:20.340000px;}
.w2c{width:25.875586px;}
.w27{width:25.950370px;}
.w2d{width:25.951148px;}
.w2f{width:25.951169px;}
.w32{width:25.951189px;}
.w31{width:25.951230px;}
.w1a{width:29.098751px;}
.w1b{width:31.500794px;}
.w24{width:31.501015px;}
.w23{width:31.501056px;}
.w28{width:37.050116px;}
.w29{width:39.374938px;}
.w16{width:39.450005px;}
.w52{width:44.316000px;}
.w19{width:44.999610px;}
.w4b{width:45.000000px;}
.w4c{width:52.956000px;}
.w4d{width:53.640000px;}
.w26{width:54.000645px;}
.w50{width:55.080000px;}
.w47{width:55.260000px;}
.w48{width:55.440000px;}
.w51{width:57.240000px;}
.w4f{width:57.276000px;}
.w49{width:57.816000px;}
.w54{width:59.040000px;}
.w4e{width:61.920000px;}
.w4a{width:62.100000px;}
.w9{width:63.720000px;}
.w53{width:79.020000px;}
.w46{width:79.956000px;}
.w14{width:92.520000px;}
.w12{width:93.780000px;}
.w40{width:94.536000px;}
.w33{width:95.760000px;}
.w6{width:106.956000px;}
.w43{width:108.000000px;}
.w44{width:108.036000px;}
.w1d{width:110.320926px;}
.w7{width:113.580000px;}
.w38{width:114.696000px;}
.w1f{width:121.499651px;}
.w3a{width:122.796000px;}
.wd{width:128.196000px;}
.wb{width:140.436000px;}
.w10{width:140.796000px;}
.wc{width:141.840000px;}
.w37{width:141.876000px;}
.w39{width:148.536000px;}
.w11{width:154.110000px;}
.w8{width:158.610000px;}
.w41{width:162.360000px;}
.w3e{width:204.330000px;}
.w15{width:224.670000px;}
.w13{width:227.910000px;}
.w3b{width:229.530000px;}
.wa{width:253.110000px;}
.w3d{width:253.335000px;}
.w34{width:256.575000px;}
.w36{width:276.735000px;}
.w17{width:310.357343px;}
.w2a{width:345.495000px;}
.w3f{width:457.665000px;}
.wf{width:475.815000px;}
.w42{width:580.245000px;}
.w3c{width:649.410000px;}
.w45{width:742.605000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.we{width:1107.180000px;}
.w5{width:1187.999965px;}
.w4{width:1187.999982px;}
.w3{width:1188.000000px;}
.x0{left:0.000000px;}
.x80{left:1.392224px;}
.x6c{left:2.764547px;}
.x73{left:4.366277px;}
.x7a{left:7.737845px;}
.x93{left:8.943109px;}
.x2b{left:10.980000px;}
.x51{left:12.060000px;}
.x44{left:13.320000px;}
.x3d{left:15.840000px;}
.x2c{left:17.640000px;}
.x56{left:19.440000px;}
.x57{left:21.060000px;}
.x9a{left:22.140000px;}
.x4f{left:23.400000px;}
.x50{left:25.200000px;}
.x92{left:26.866143px;}
.x4e{left:28.080000px;}
.x4c{left:29.520000px;}
.x42{left:31.320000px;}
.x24{left:32.580000px;}
.x3a{left:33.840000px;}
.x37{left:35.634000px;}
.xe0{left:36.720000px;}
.x31{left:37.800000px;}
.x45{left:39.240000px;}
.x23{left:40.500000px;}
.xcd{left:41.760000px;}
.x30{left:43.020000px;}
.x26{left:44.634000px;}
.x46{left:45.900000px;}
.xcc{left:47.016000px;}
.x34{left:48.240000px;}
.x28{left:50.580000px;}
.xc6{left:52.200000px;}
.xc3{left:53.280000px;}
.x4d{left:54.360000px;}
.x10{left:55.619973px;}
.x41{left:57.240000px;}
.x48{left:58.680000px;}
.x33{left:59.760000px;}
.x38{left:61.740000px;}
.x47{left:62.820000px;}
.x4{left:64.080000px;}
.x39{left:65.880000px;}
.x40{left:68.400000px;}
.xc0{left:69.705000px;}
.x43{left:71.460000px;}
.x3{left:72.540000px;}
.xbf{left:73.845000px;}
.x5{left:75.600000px;}
.x49{left:77.040000px;}
.x29{left:79.200000px;}
.x6{left:81.035986px;}
.xbe{left:82.620000px;}
.x4a{left:83.700000px;}
.x53{left:85.860000px;}
.x7d{left:88.168090px;}
.x9e{left:90.000000px;}
.x5b{left:92.520000px;}
.x9c{left:94.140000px;}
.xbd{left:95.805000px;}
.x97{left:99.936000px;}
.x11{left:101.195986px;}
.xa1{left:102.780000px;}
.x78{left:104.560488px;}
.xd1{left:105.885000px;}
.x2{left:108.036000px;}
.x2e{left:109.440000px;}
.x14{left:111.275986px;}
.xa{left:112.715986px;}
.x4b{left:113.970000px;}
.x6a{left:115.775986px;}
.xce{left:117.405000px;}
.xd5{left:121.535986px;}
.xb4{left:125.676000px;}
.x9d{left:131.034000px;}
.xcb{left:132.165000px;}
.xa0{left:134.454000px;}
.x9b{left:136.305000px;}
.xc8{left:142.425000px;}
.x94{left:145.115986px;}
.x25{left:147.456000px;}
.x89{left:149.339990px;}
.x7c{left:152.714990px;}
.x9f{left:153.939000px;}
.xd7{left:155.550000px;}
.x75{left:156.689990px;}
.x8a{left:158.249986px;}
.x99{left:162.219000px;}
.x76{left:165.629986px;}
.x62{left:167.969973px;}
.x5a{left:174.825000px;}
.x63{left:176.249986px;}
.xaa{left:177.539980px;}
.xa7{left:181.649986px;}
.xd0{left:186.525000px;}
.xab{left:203.429986px;}
.xd4{left:205.605000px;}
.xd8{left:210.990000px;}
.xc9{left:214.785000px;}
.xac{left:217.364980px;}
.x6e{left:218.789980px;}
.xb5{left:221.430000px;}
.xd2{left:224.865000px;}
.xca{left:227.025000px;}
.xbc{left:230.250000px;}
.xad{left:231.869986px;}
.xd3{left:243.405000px;}
.xb7{left:248.475000px;}
.x20{left:250.634986px;}
.x15{left:253.154986px;}
.xb{left:257.834986px;}
.x27{left:261.030000px;}
.x6f{left:263.774986px;}
.xd9{left:268.815000px;}
.x1e{left:271.154986px;}
.x7e{left:274.214986px;}
.xba{left:278.894973px;}
.x5e{left:283.214973px;}
.xd{left:285.194986px;}
.xb3{left:288.254986px;}
.x7f{left:294.014980px;}
.xcf{left:296.865000px;}
.xb1{left:300.314973px;}
.x68{left:302.698009px;}
.x96{left:303.734986px;}
.xb2{left:305.894986px;}
.x81{left:313.094986px;}
.xc7{left:319.905000px;}
.x9{left:324.074986px;}
.xc4{left:331.230000px;}
.x8b{left:343.514959px;}
.x6b{left:352.364959px;}
.x8c{left:358.094986px;}
.xb6{left:363.315000px;}
.x77{left:368.189959px;}
.x6d{left:371.414986px;}
.xda{left:375.915000px;}
.xaf{left:380.939959px;}
.xbb{left:387.974986px;}
.x64{left:389.789959px;}
.x8d{left:402.389959px;}
.x86{left:406.139959px;}
.x3e{left:415.155000px;}
.x69{left:418.424986px;}
.x2a{left:419.655000px;}
.x65{left:429.224986px;}
.x1c{left:431.744973px;}
.x1d{left:434.984986px;}
.x87{left:437.684986px;}
.x98{left:445.425000px;}
.x8e{left:456.404986px;}
.x79{left:478.514959px;}
.x2d{left:483.375000px;}
.x61{left:486.464986px;}
.x8f{left:490.589959px;}
.x55{left:495.075000px;}
.x7b{left:497.624986px;}
.x3b{left:499.935000px;}
.xc1{left:503.024973px;}
.x36{left:504.255000px;}
.xc2{left:506.444986px;}
.x3f{left:508.935000px;}
.x52{left:512.175000px;}
.x84{left:514.514959px;}
.xa2{left:519.224986px;}
.x54{left:520.635000px;}
.x3c{left:524.235000px;}
.x5c{left:526.604973px;}
.x5d{left:528.944986px;}
.x85{left:533.624986px;}
.x59{left:538.815000px;}
.xdb{left:544.425000px;}
.x58{left:548.355000px;}
.xb8{left:562.604973px;}
.x5f{left:564.944973px;}
.xb9{left:566.204986px;}
.x60{left:569.624986px;}
.x88{left:585.615000px;}
.xb0{left:591.389959px;}
.xdc{left:601.890000px;}
.x95{left:605.129986px;}
.x90{left:610.439959px;}
.x70{left:617.339959px;}
.xe{left:628.529973px;}
.xf{left:634.109986px;}
.x91{left:636.449986px;}
.xa5{left:641.639959px;}
.x12{left:644.549973px;}
.x71{left:646.529986px;}
.xa8{left:647.939959px;}
.x13{left:649.049986px;}
.xdd{left:656.970000px;}
.x1a{left:658.589973px;}
.xa9{left:662.549986px;}
.x1b{left:663.809986px;}
.xa6{left:667.589986px;}
.x82{left:674.189959px;}
.x66{left:679.829973px;}
.x67{left:685.409986px;}
.x83{left:693.329986px;}
.x1f{left:700.529986px;}
.xae{left:712.889919px;}
.xde{left:714.210000px;}
.xc{left:723.389986px;}
.xa3{left:734.189973px;}
.x2f{left:737.205000px;}
.x16{left:738.509986px;}
.xa4{left:739.769986px;}
.x72{left:758.264919px;}
.x7{left:782.279973px;}
.x8{left:787.319986px;}
.x74{left:789.839986px;}
.x19{left:793.439986px;}
.x17{left:800.639973px;}
.x1{left:801.900000px;}
.x18{left:806.219986px;}
.xe1{left:815.759986px;}
.xdf{left:837.540000px;}
.x21{left:867.419986px;}
.xd6{left:874.439986px;}
.x32{left:877.650000px;}
.xc5{left:911.490000px;}
.x35{left:1019.490000px;}
.x22{left:1063.409982px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v6{vertical-align:-19.024298pt;}
.v4{vertical-align:-17.655527pt;}
.v7{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v5{vertical-align:17.655527pt;}
.v1{vertical-align:21.120000pt;}
.ls48{letter-spacing:-1.858250pt;}
.ls39{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.757333pt;}
.ls3c{letter-spacing:-0.741333pt;}
.ls3a{letter-spacing:-0.709333pt;}
.ls1d{letter-spacing:-0.682667pt;}
.ls2a{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.624000pt;}
.ls35{letter-spacing:-0.618667pt;}
.ls36{letter-spacing:-0.560000pt;}
.ls1f{letter-spacing:-0.524800pt;}
.ls3d{letter-spacing:-0.522133pt;}
.lsf{letter-spacing:-0.419733pt;}
.ls24{letter-spacing:-0.412267pt;}
.ls22{letter-spacing:-0.373867pt;}
.ls14{letter-spacing:-0.325333pt;}
.ls56{letter-spacing:-0.309867pt;}
.ls62{letter-spacing:-0.288000pt;}
.lse{letter-spacing:-0.276267pt;}
.ls5b{letter-spacing:-0.275200pt;}
.ls4b{letter-spacing:-0.272000pt;}
.ls5e{letter-spacing:-0.240000pt;}
.ls52{letter-spacing:-0.224000pt;}
.ls55{letter-spacing:-0.212267pt;}
.ls54{letter-spacing:-0.208000pt;}
.ls2b{letter-spacing:-0.202667pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.180267pt;}
.ls34{letter-spacing:-0.177067pt;}
.ls38{letter-spacing:-0.171733pt;}
.ls28{letter-spacing:-0.156267pt;}
.lsc{letter-spacing:-0.117867pt;}
.ls31{letter-spacing:-0.112000pt;}
.ls9{letter-spacing:-0.102400pt;}
.ls33{letter-spacing:-0.090667pt;}
.lsb{letter-spacing:-0.069333pt;}
.ls4c{letter-spacing:-0.064000pt;}
.ls5f{letter-spacing:-0.048000pt;}
.ls16{letter-spacing:-0.043520pt;}
.ls53{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.007040pt;}
.ls1b{letter-spacing:0.017920pt;}
.ls2d{letter-spacing:0.019840pt;}
.ls57{letter-spacing:0.028160pt;}
.ls50{letter-spacing:0.032000pt;}
.ls2e{letter-spacing:0.037760pt;}
.ls1a{letter-spacing:0.053867pt;}
.ls41{letter-spacing:0.054724pt;}
.ls51{letter-spacing:0.064000pt;}
.ls17{letter-spacing:0.066667pt;}
.ls4{letter-spacing:0.074240pt;}
.ls3b{letter-spacing:0.079360pt;}
.ls19{letter-spacing:0.079467pt;}
.ls64{letter-spacing:0.080000pt;}
.ls69{letter-spacing:0.096427pt;}
.ls26{letter-spacing:0.105067pt;}
.ls29{letter-spacing:0.115200pt;}
.ls66{letter-spacing:0.117760pt;}
.lsd{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.125333pt;}
.ls59{letter-spacing:0.133120pt;}
.ls4a{letter-spacing:0.133333pt;}
.ls0{letter-spacing:0.139520pt;}
.ls5c{letter-spacing:0.140800pt;}
.ls5d{letter-spacing:0.144000pt;}
.ls13{letter-spacing:0.154880pt;}
.ls61{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.161067pt;}
.ls60{letter-spacing:0.176000pt;}
.ls2f{letter-spacing:0.194667pt;}
.ls15{letter-spacing:0.205867pt;}
.ls1e{letter-spacing:0.217600pt;}
.ls8{letter-spacing:0.220267pt;}
.ls1{letter-spacing:0.222720pt;}
.ls67{letter-spacing:0.224427pt;}
.lsa{letter-spacing:0.227733pt;}
.ls37{letter-spacing:0.230400pt;}
.ls40{letter-spacing:0.260646pt;}
.ls68{letter-spacing:0.277760pt;}
.ls25{letter-spacing:0.281600pt;}
.ls2c{letter-spacing:0.317333pt;}
.ls18{letter-spacing:0.330133pt;}
.ls3{letter-spacing:0.352000pt;}
.ls49{letter-spacing:0.359728pt;}
.ls4f{letter-spacing:0.377600pt;}
.ls42{letter-spacing:0.467448pt;}
.ls43{letter-spacing:1.034230pt;}
.ls7{letter-spacing:1.290667pt;}
.ls2{letter-spacing:2.053120pt;}
.ls3f{letter-spacing:2.469120pt;}
.ls45{letter-spacing:2.693120pt;}
.ls5a{letter-spacing:3.973120pt;}
.ls1c{letter-spacing:4.613120pt;}
.ls58{letter-spacing:5.253120pt;}
.ls4e{letter-spacing:6.330880pt;}
.ls44{letter-spacing:14.853120pt;}
.ls4d{letter-spacing:18.053120pt;}
.ls65{letter-spacing:21.856000pt;}
.ls46{letter-spacing:25.465291pt;}
.ls27{letter-spacing:32.133120pt;}
.ls23{letter-spacing:40.304640pt;}
.ls47{letter-spacing:43.035781pt;}
.ls63{letter-spacing:46.176000pt;}
.ls11{letter-spacing:57.263360pt;}
.ls3e{letter-spacing:175.077120pt;}
.ws4e{word-spacing:-69.120000pt;}
.ws35{word-spacing:-41.066571pt;}
.ws34{word-spacing:-38.893919pt;}
.ws2f{word-spacing:-19.010377pt;}
.wsa{word-spacing:-18.720000pt;}
.ws3f{word-spacing:-16.722693pt;}
.ws0{word-spacing:-16.473600pt;}
.ws3a{word-spacing:-16.058832pt;}
.ws1b{word-spacing:-15.488000pt;}
.ws1a{word-spacing:-15.206400pt;}
.ws11{word-spacing:-13.637013pt;}
.ws2a{word-spacing:-13.537280pt;}
.ws5{word-spacing:-13.534613pt;}
.ws16{word-spacing:-13.524480pt;}
.wsc{word-spacing:-13.467947pt;}
.ws4d{word-spacing:-13.447680pt;}
.ws2{word-spacing:-13.432213pt;}
.ws8{word-spacing:-13.424747pt;}
.ws1d{word-spacing:-13.422080pt;}
.ws12{word-spacing:-13.386347pt;}
.ws10{word-spacing:-13.373547pt;}
.ws13{word-spacing:-13.360747pt;}
.ws4b{word-spacing:-13.335040pt;}
.ws14{word-spacing:-13.324800pt;}
.ws3{word-spacing:-13.306880pt;}
.wse{word-spacing:-13.263360pt;}
.ws6{word-spacing:-13.237547pt;}
.ws4{word-spacing:-13.204480pt;}
.ws2b{word-spacing:-13.135147pt;}
.ws18{word-spacing:-13.114880pt;}
.ws4a{word-spacing:-13.094613pt;}
.ws9{word-spacing:-13.030613pt;}
.wsb{word-spacing:-12.981547pt;}
.ws19{word-spacing:-12.933013pt;}
.ws1e{word-spacing:-12.894613pt;}
.ws2e{word-spacing:-12.784747pt;}
.ws17{word-spacing:-12.782080pt;}
.ws43{word-spacing:-12.682880pt;}
.ws15{word-spacing:-12.624213pt;}
.ws2c{word-spacing:-12.597547pt;}
.ws2d{word-spacing:-12.565547pt;}
.ws1c{word-spacing:-12.549547pt;}
.ws20{word-spacing:-12.322453pt;}
.ws1f{word-spacing:-11.802453pt;}
.ws51{word-spacing:-11.024000pt;}
.ws44{word-spacing:-10.848000pt;}
.ws48{word-spacing:-10.832000pt;}
.ws50{word-spacing:-10.800000pt;}
.ws49{word-spacing:-10.640000pt;}
.ws47{word-spacing:-10.624000pt;}
.ws4f{word-spacing:-10.608000pt;}
.ws45{word-spacing:-10.576000pt;}
.ws52{word-spacing:-10.560000pt;}
.ws46{word-spacing:-10.068480pt;}
.ws26{word-spacing:-9.885547pt;}
.ws21{word-spacing:-9.710720pt;}
.ws29{word-spacing:-9.697920pt;}
.wsf{word-spacing:-9.690880pt;}
.ws25{word-spacing:-9.578880pt;}
.ws27{word-spacing:-9.513813pt;}
.ws24{word-spacing:-9.510613pt;}
.ws22{word-spacing:-9.112320pt;}
.ws28{word-spacing:-9.072213pt;}
.wsd{word-spacing:-8.594987pt;}
.ws1{word-spacing:-8.389120pt;}
.ws4c{word-spacing:-8.113920pt;}
.ws23{word-spacing:-6.074880pt;}
.ws36{word-spacing:-1.077557pt;}
.ws42{word-spacing:-0.435625pt;}
.ws40{word-spacing:-0.076044pt;}
.ws30{word-spacing:-0.070845pt;}
.ws3b{word-spacing:-0.070078pt;}
.ws37{word-spacing:-0.043327pt;}
.ws7{word-spacing:0.000000pt;}
.ws3c{word-spacing:1.788172pt;}
.ws38{word-spacing:26.345889pt;}
.ws3d{word-spacing:33.399047pt;}
.ws39{word-spacing:33.862534pt;}
.ws41{word-spacing:46.308649pt;}
.ws3e{word-spacing:372.716837pt;}
.ws31{word-spacing:646.750135pt;}
.ws33{word-spacing:862.840128pt;}
.ws32{word-spacing:903.131996pt;}
._12{margin-left:-2666.910420pt;}
._11{margin-left:-2665.966242pt;}
._1b{margin-left:-2664.933478pt;}
._1f{margin-left:-2653.880393pt;}
._5{margin-left:-2638.793387pt;}
._8{margin-left:-2634.405597pt;}
._c{margin-left:-2623.793461pt;}
._d{margin-left:-2298.880892pt;}
._19{margin-left:-2086.987901pt;}
._a{margin-left:-1292.673961pt;}
._9{margin-left:-1161.256361pt;}
._2f{margin-left:-1067.258880pt;}
._1a{margin-left:-938.078484pt;}
._f{margin-left:-867.821780pt;}
._6{margin-left:-410.787413pt;}
._48{margin-left:-324.539097pt;}
._44{margin-left:-308.569054pt;}
._49{margin-left:-307.606761pt;}
._45{margin-left:-306.243190pt;}
._32{margin-left:-303.899032pt;}
._3b{margin-left:-272.089087pt;}
._3d{margin-left:-266.026939pt;}
._3f{margin-left:-263.650066pt;}
._31{margin-left:-254.350732pt;}
._59{margin-left:-200.751957pt;}
._47{margin-left:-169.137598pt;}
._38{margin-left:-162.621918pt;}
._55{margin-left:-158.315930pt;}
._43{margin-left:-155.187127pt;}
._41{margin-left:-154.283327pt;}
._46{margin-left:-149.511791pt;}
._4a{margin-left:-143.360000pt;}
._64{margin-left:-142.349692pt;}
._33{margin-left:-137.723744pt;}
._58{margin-left:-136.251789pt;}
._34{margin-left:-133.799915pt;}
._63{margin-left:-116.161310pt;}
._2e{margin-left:-107.224013pt;}
._5e{margin-left:-99.697080pt;}
._50{margin-left:-97.745994pt;}
._5b{margin-left:-95.842360pt;}
._51{margin-left:-94.630010pt;}
._52{margin-left:-92.705585pt;}
._56{margin-left:-87.463451pt;}
._5f{margin-left:-84.027422pt;}
._4f{margin-left:-81.182860pt;}
._35{margin-left:-77.588551pt;}
._39{margin-left:-76.267247pt;}
._60{margin-left:-72.716634pt;}
._40{margin-left:-70.842183pt;}
._53{margin-left:-68.404306pt;}
._5c{margin-left:-67.385719pt;}
._3e{margin-left:-64.725206pt;}
._57{margin-left:-63.285320pt;}
._4b{margin-left:-56.100746pt;}
._4d{margin-left:-54.805293pt;}
._3c{margin-left:-50.190897pt;}
._5d{margin-left:-48.656146pt;}
._36{margin-left:-44.916646pt;}
._62{margin-left:-43.219047pt;}
._37{margin-left:-42.130159pt;}
._3a{margin-left:-40.048823pt;}
._61{margin-left:-39.054360pt;}
._30{margin-left:-34.775508pt;}
._4c{margin-left:-32.149086pt;}
._4e{margin-left:-28.164599pt;}
._5a{margin-left:-3.070045pt;}
._24{margin-left:-1.810919pt;}
._2{margin-left:-0.898710pt;}
._0{width:1.497600pt;}
._7{width:2.524256pt;}
._4{width:3.683840pt;}
._1{width:4.642710pt;}
._3{width:5.605547pt;}
._e{width:6.662060pt;}
._10{width:7.885685pt;}
._16{width:9.144715pt;}
._14{width:10.086591pt;}
._13{width:11.026188pt;}
._b{width:12.136419pt;}
._65{width:13.240599pt;}
._15{width:14.351959pt;}
._26{width:15.278671pt;}
._27{width:16.389283pt;}
._17{width:17.381547pt;}
._18{width:18.296896pt;}
._25{width:19.494736pt;}
._71{width:20.657619pt;}
._22{width:21.608960pt;}
._23{width:22.694123pt;}
._20{width:23.728640pt;}
._21{width:24.921750pt;}
._2d{width:26.483345pt;}
._2c{width:27.541479pt;}
._2a{width:28.556800pt;}
._2b{width:29.741944pt;}
._29{width:30.971733pt;}
._28{width:32.192999pt;}
._7b{width:33.914880pt;}
._7c{width:34.887118pt;}
._1e{width:37.667219pt;}
._1c{width:38.994188pt;}
._1d{width:40.237150pt;}
._6b{width:41.157120pt;}
._6c{width:42.144076pt;}
._69{width:58.938880pt;}
._6a{width:60.003278pt;}
._76{width:60.995122pt;}
._68{width:75.395985pt;}
._66{width:76.661760pt;}
._67{width:77.766119pt;}
._7e{width:78.668238pt;}
._7d{width:79.782400pt;}
._77{width:85.552640pt;}
._72{width:93.560320pt;}
._73{width:94.488039pt;}
._6f{width:99.153920pt;}
._70{width:100.664465pt;}
._7a{width:102.533265pt;}
._74{width:109.693440pt;}
._75{width:111.037876pt;}
._78{width:126.768640pt;}
._79{width:127.681707pt;}
._6d{width:131.479040pt;}
._6e{width:132.410744pt;}
._54{width:306.272778pt;}
._42{width:833.288592pt;}
.fs13{font-size:25.287807pt;}
.fs8{font-size:26.880000pt;}
.fs10{font-size:31.709102pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs15{font-size:34.935970pt;}
.fs16{font-size:36.846687pt;}
.fs2{font-size:37.120000pt;}
.fs9{font-size:40.320000pt;}
.fse{font-size:41.290629pt;}
.fs26{font-size:41.428816pt;}
.fs17{font-size:42.729235pt;}
.fs6{font-size:42.880000pt;}
.fs12{font-size:43.327475pt;}
.fs29{font-size:44.250658pt;}
.fsb{font-size:44.392438pt;}
.fs1e{font-size:44.393960pt;}
.fs18{font-size:44.714314pt;}
.fs14{font-size:45.738205pt;}
.fs3{font-size:48.000000pt;}
.fs24{font-size:50.695095pt;}
.fs5{font-size:53.120000pt;}
.fs11{font-size:56.981302pt;}
.fs0{font-size:58.880000pt;}
.fs22{font-size:61.166712pt;}
.fs19{font-size:61.405983pt;}
.fs1a{font-size:64.235327pt;}
.fs23{font-size:66.890773pt;}
.fs7{font-size:69.120000pt;}
.fs1b{font-size:70.077883pt;}
.fsd{font-size:70.845026pt;}
.fs27{font-size:70.981507pt;}
.fs1c{font-size:72.972295pt;}
.fs20{font-size:73.647899pt;}
.fs21{font-size:73.870121pt;}
.fsf{font-size:74.802498pt;}
.fs1{font-size:74.880000pt;}
.fs28{font-size:75.896687pt;}
.fsc{font-size:76.041510pt;}
.fs1d{font-size:76.044117pt;}
.fs2e{font-size:78.040671pt;}
.fs2f{font-size:78.040682pt;}
.fs2b{font-size:78.061179pt;}
.fs2a{font-size:79.144712pt;}
.fs25{font-size:79.436064pt;}
.fs2c{font-size:79.561326pt;}
.fs30{font-size:79.581470pt;}
.fs2d{font-size:79.581516pt;}
.fs1f{font-size:79.622907pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:2.866345pt;}
.y1b8{bottom:3.200000pt;}
.y13b{bottom:3.392656pt;}
.yc9{bottom:3.840000pt;}
.yd2{bottom:4.000000pt;}
.y13c{bottom:4.149465pt;}
.yc3{bottom:4.160000pt;}
.yfe{bottom:4.200000pt;}
.y154{bottom:4.210369pt;}
.y13f{bottom:4.226838pt;}
.y11d{bottom:4.255268pt;}
.y196{bottom:4.255414pt;}
.y192{bottom:4.255417pt;}
.y150{bottom:4.255427pt;}
.y159{bottom:4.255430pt;}
.y148{bottom:4.293487pt;}
.ye2{bottom:4.320000pt;}
.ye8{bottom:4.480000pt;}
.y178{bottom:4.640000pt;}
.yeb{bottom:4.800000pt;}
.y1b6{bottom:4.960000pt;}
.y1bc{bottom:5.280000pt;}
.y134{bottom:5.287202pt;}
.yc4{bottom:5.440000pt;}
.yf3{bottom:5.600000pt;}
.y1cd{bottom:5.760000pt;}
.y15c{bottom:5.862144pt;}
.y14a{bottom:6.972583pt;}
.y14d{bottom:6.992955pt;}
.y141{bottom:7.026101pt;}
.y18f{bottom:7.402286pt;}
.y19c{bottom:7.402301pt;}
.y18b{bottom:7.402317pt;}
.y227{bottom:7.680000pt;}
.y22d{bottom:7.706667pt;}
.y229{bottom:7.840000pt;}
.y156{bottom:7.881704pt;}
.y142{bottom:7.881725pt;}
.y2b5{bottom:8.480000pt;}
.y2bf{bottom:8.640000pt;}
.y2bc{bottom:8.680000pt;}
.y2b1{bottom:8.800000pt;}
.y11e{bottom:9.011187pt;}
.y145{bottom:9.011485pt;}
.y158{bottom:9.011493pt;}
.y146{bottom:9.011498pt;}
.y197{bottom:9.011508pt;}
.y193{bottom:9.011511pt;}
.y151{bottom:9.011539pt;}
.y15a{bottom:9.011543pt;}
.y164{bottom:9.047327pt;}
.y165{bottom:9.047360pt;}
.y2af{bottom:10.240000pt;}
.y15d{bottom:10.276168pt;}
.y160{bottom:10.276188pt;}
.y161{bottom:10.276223pt;}
.y128{bottom:10.310573pt;}
.y129{bottom:10.310576pt;}
.yc7{bottom:10.880000pt;}
.yd4{bottom:11.040000pt;}
.ye9{bottom:11.360000pt;}
.y133{bottom:11.366500pt;}
.y139{bottom:12.736842pt;}
.ye6{bottom:12.960000pt;}
.y2a5{bottom:13.280000pt;}
.y2ac{bottom:13.920000pt;}
.y2a8{bottom:15.680000pt;}
.y2b7{bottom:15.840000pt;}
.y18e{bottom:15.913536pt;}
.y19b{bottom:15.913542pt;}
.y18a{bottom:15.913548pt;}
.y2be{bottom:16.000000pt;}
.y2b9{bottom:16.040000pt;}
.y2a3{bottom:16.320000pt;}
.y2a2{bottom:16.640000pt;}
.yfa{bottom:17.120000pt;}
.yf8{bottom:17.280000pt;}
.ye1{bottom:17.440000pt;}
.yc8{bottom:17.600000pt;}
.yd1{bottom:17.760000pt;}
.yea{bottom:17.920000pt;}
.y23b{bottom:17.946667pt;}
.y1be{bottom:17.960000pt;}
.yc2{bottom:18.560000pt;}
.yf2{bottom:18.720000pt;}
.y2aa{bottom:19.040000pt;}
.y174{bottom:19.200000pt;}
.y29f{bottom:19.520000pt;}
.y1bb{bottom:19.840000pt;}
.y2b6{bottom:20.000000pt;}
.y2ba{bottom:20.040000pt;}
.y2ae{bottom:21.280000pt;}
.y2b2{bottom:21.600000pt;}
.y2b4{bottom:23.200000pt;}
.y2bb{bottom:23.240000pt;}
.yf5{bottom:24.320000pt;}
.y2a0{bottom:25.280000pt;}
.ye4{bottom:26.080000pt;}
.y2a6{bottom:26.240000pt;}
.y2ab{bottom:28.640000pt;}
.y2a1{bottom:29.920000pt;}
.yf7{bottom:30.240000pt;}
.y2a4{bottom:30.880000pt;}
.yfb{bottom:31.040000pt;}
.yf9{bottom:31.520000pt;}
.y1d2{bottom:32.480000pt;}
.y23a{bottom:32.506667pt;}
.y24b{bottom:32.520000pt;}
.y176{bottom:33.760000pt;}
.y173{bottom:33.920000pt;}
.y2b0{bottom:36.160000pt;}
.ye5{bottom:39.040000pt;}
.y2a7{bottom:39.680000pt;}
.ydc{bottom:41.640000pt;}
.y2a9{bottom:43.200000pt;}
.yf6{bottom:44.480000pt;}
.y2ad{bottom:46.400000pt;}
.y235{bottom:47.040000pt;}
.y1d1{bottom:47.200000pt;}
.y239{bottom:47.226667pt;}
.y24a{bottom:47.240000pt;}
.y172{bottom:48.480000pt;}
.y23{bottom:50.880000pt;}
.y223{bottom:51.040000pt;}
.yd9{bottom:54.760000pt;}
.ydb{bottom:54.920000pt;}
.y234{bottom:61.760000pt;}
.y238{bottom:61.786667pt;}
.y1d0{bottom:61.800000pt;}
.yda{bottom:67.880000pt;}
.ybf{bottom:68.800000pt;}
.y1{bottom:68.832000pt;}
.y222{bottom:68.960000pt;}
.y254{bottom:68.992000pt;}
.y233{bottom:76.360000pt;}
.y242{bottom:76.480000pt;}
.y237{bottom:76.506667pt;}
.y1cf{bottom:76.520000pt;}
.ycf{bottom:77.466667pt;}
.ycd{bottom:84.026667pt;}
.y23c{bottom:85.440000pt;}
.y253{bottom:90.400000pt;}
.yce{bottom:90.586667pt;}
.y252{bottom:91.066667pt;}
.y232{bottom:91.080000pt;}
.yf0{bottom:98.720000pt;}
.y86{bottom:98.752000pt;}
.y65{bottom:99.072000pt;}
.y3c{bottom:99.392000pt;}
.y29c{bottom:101.152000pt;}
.y220{bottom:101.952000pt;}
.yef{bottom:102.080000pt;}
.y85{bottom:102.112000pt;}
.y110{bottom:102.432000pt;}
.y24c{bottom:103.840000pt;}
.y3b{bottom:104.032000pt;}
.y2ff{bottom:104.512000pt;}
.y251{bottom:105.786667pt;}
.y249{bottom:105.800000pt;}
.y1d9{bottom:106.432000pt;}
.y16{bottom:107.232000pt;}
.y13a{bottom:108.853333pt;}
.y137{bottom:111.586667pt;}
.y117{bottom:111.872000pt;}
.yee{bottom:112.320000pt;}
.y84{bottom:112.832000pt;}
.y64{bottom:114.112000pt;}
.y10f{bottom:114.592000pt;}
.y1b2{bottom:115.072000pt;}
.y116{bottom:115.232000pt;}
.y136{bottom:115.552000pt;}
.y99{bottom:115.712000pt;}
.y3a{bottom:116.192000pt;}
.yed{bottom:116.960000pt;}
.yae{bottom:116.992000pt;}
.y29b{bottom:118.272000pt;}
.y63{bottom:118.752000pt;}
.y177{bottom:119.712000pt;}
.y250{bottom:120.346667pt;}
.y98{bottom:120.352000pt;}
.y248{bottom:120.520000pt;}
.y2fe{bottom:122.432000pt;}
.y115{bottom:125.952000pt;}
.y1b1{bottom:128.672000pt;}
.yec{bottom:129.120000pt;}
.y62{bottom:130.752000pt;}
.y55{bottom:131.552000pt;}
.y97{bottom:132.352000pt;}
.y1b0{bottom:133.312000pt;}
.y2e3{bottom:133.466667pt;}
.y135{bottom:134.426667pt;}
.y24f{bottom:135.066667pt;}
.y247{bottom:135.080000pt;}
.y175{bottom:137.466667pt;}
.y21f{bottom:137.786667pt;}
.y209{bottom:138.106667pt;}
.y1f2{bottom:140.186667pt;}
.y2fd{bottom:140.346667pt;}
.y39{bottom:141.466667pt;}
.y1d8{bottom:142.106667pt;}
.y15{bottom:143.066667pt;}
.y1af{bottom:144.346667pt;}
.y132{bottom:144.586667pt;}
.y236{bottom:144.640000pt;}
.y10e{bottom:144.826667pt;}
.y44{bottom:145.466667pt;}
.y29a{bottom:148.186667pt;}
.y24e{bottom:149.626667pt;}
.y246{bottom:149.800000pt;}
.y131{bottom:151.226667pt;}
.y2e2{bottom:151.386667pt;}
.ybe{bottom:153.466667pt;}
.y130{bottom:155.866667pt;}
.y1ae{bottom:157.946667pt;}
.y1f1{bottom:158.106667pt;}
.y2fc{bottom:158.266667pt;}
.y75{bottom:159.226667pt;}
.y275{bottom:161.626667pt;}
.y1ad{bottom:162.586667pt;}
.y1b4{bottom:163.226667pt;}
.y93{bottom:164.026667pt;}
.y24d{bottom:164.346667pt;}
.y245{bottom:164.386667pt;}
.y299{bottom:165.146667pt;}
.yad{bottom:166.106667pt;}
.y54{bottom:167.386667pt;}
.y12f{bottom:168.026667pt;}
.y2e1{bottom:169.306667pt;}
.y12e{bottom:172.666667pt;}
.y21e{bottom:173.466667pt;}
.y208{bottom:173.786667pt;}
.y43{bottom:174.586667pt;}
.y1ac{bottom:174.746667pt;}
.y2fb{bottom:176.026667pt;}
.y38{bottom:177.306667pt;}
.y1d7{bottom:177.946667pt;}
.y274{bottom:178.586667pt;}
.y14{bottom:178.906667pt;}
.y19e{bottom:179.866667pt;}
.y96{bottom:180.666667pt;}
.y298{bottom:182.106667pt;}
.y12d{bottom:184.346667pt;}
.y2e0{bottom:187.226667pt;}
.y12c{bottom:188.986667pt;}
.ybd{bottom:189.306667pt;}
.ye3{bottom:189.466667pt;}
.y1f0{bottom:190.586667pt;}
.y2fa{bottom:193.946667pt;}
.y74{bottom:194.906667pt;}
.y273{bottom:195.546667pt;}
.y297{bottom:198.906667pt;}
.y1b3{bottom:199.066667pt;}
.y92{bottom:199.866667pt;}
.y12b{bottom:201.146667pt;}
.yac{bottom:201.946667pt;}
.y53{bottom:203.066667pt;}
.y2df{bottom:205.146667pt;}
.y21d{bottom:209.306667pt;}
.y207{bottom:209.626667pt;}
.y2f9{bottom:211.866667pt;}
.y37{bottom:213.146667pt;}
.y1d6{bottom:213.786667pt;}
.y13{bottom:214.586667pt;}
.y19d{bottom:215.706667pt;}
.y61{bottom:216.506667pt;}
.ye7{bottom:219.546667pt;}
.y1ce{bottom:220.986667pt;}
.y1e3{bottom:221.786667pt;}
.y2de{bottom:222.906667pt;}
.y1ef{bottom:223.226667pt;}
.y272{bottom:225.466667pt;}
.ybc{bottom:227.386667pt;}
.y10d{bottom:229.786667pt;}
.y73{bottom:230.746667pt;}
.y296{bottom:232.666667pt;}
.y231{bottom:233.306667pt;}
.y90{bottom:235.706667pt;}
.yab{bottom:237.786667pt;}
.y114{bottom:238.906667pt;}
.y2dd{bottom:240.826667pt;}
.y91{bottom:240.986667pt;}
.y271{bottom:242.426667pt;}
.y21c{bottom:245.146667pt;}
.y206{bottom:245.466667pt;}
.y171{bottom:247.706667pt;}
.y36{bottom:248.986667pt;}
.ye0{bottom:249.146667pt;}
.y12{bottom:250.426667pt;}
.y83{bottom:251.386667pt;}
.y52{bottom:252.346667pt;}
.y1ee{bottom:255.706667pt;}
.y1d5{bottom:257.626667pt;}
.y2dc{bottom:258.746667pt;}
.y295{bottom:262.586667pt;}
.y10c{bottom:265.626667pt;}
.y72{bottom:266.586667pt;}
.ybb{bottom:269.306667pt;}
.y270{bottom:272.506667pt;}
.yaa{bottom:273.466667pt;}
.y8f{bottom:273.786667pt;}
.y112{bottom:274.746667pt;}
.y2db{bottom:276.666667pt;}
.yd8{bottom:278.746667pt;}
.y127{bottom:278.986649pt;}
.y294{bottom:279.586667pt;}
.y113{bottom:280.066667pt;}
.y21b{bottom:281.026667pt;}
.y205{bottom:281.346667pt;}
.y2f8{bottom:283.586667pt;}
.ya4{bottom:283.906667pt;}
.y34{bottom:284.866667pt;}
.y11{bottom:286.306667pt;}
.y170{bottom:286.946667pt;}
.y19a{bottom:287.253315pt;}
.y199{bottom:287.266667pt;}
.y51{bottom:288.066667pt;}
.y12a{bottom:288.226667pt;}
.y26f{bottom:289.506667pt;}
.y35{bottom:290.146667pt;}
.y1d4{bottom:293.506667pt;}
.y2da{bottom:294.626667pt;}
.y244{bottom:294.906667pt;}
.y82{bottom:300.546667pt;}
.y10b{bottom:301.506667pt;}
.y71{bottom:302.466667pt;}
.ydf{bottom:307.906667pt;}
.yba{bottom:308.706667pt;}
.ya9{bottom:309.346667pt;}
.y293{bottom:309.666667pt;}
.y1cc{bottom:310.946667pt;}
.y2d9{bottom:312.546667pt;}
.y21a{bottom:316.866667pt;}
.y204{bottom:317.186667pt;}
.y2f7{bottom:319.426667pt;}
.y26e{bottom:319.586667pt;}
.y33{bottom:320.546667pt;}
.y1ed{bottom:321.506667pt;}
.y10{bottom:322.146667pt;}
.y50{bottom:323.906667pt;}
.y8e{bottom:325.506667pt;}
.y292{bottom:326.626667pt;}
.y1cb{bottom:328.226667pt;}
.y95{bottom:329.186667pt;}
.y16f{bottom:329.506667pt;}
.y2d8{bottom:330.466667pt;}
.ya3{bottom:333.026667pt;}
.y81{bottom:336.386667pt;}
.y230{bottom:336.546667pt;}
.y126{bottom:336.866667pt;}
.y198{bottom:337.186630pt;}
.yde{bottom:337.186667pt;}
.y2f6{bottom:337.346667pt;}
.y70{bottom:338.306667pt;}
.y2c3{bottom:340.706667pt;}
.yb9{bottom:344.546667pt;}
.ya8{bottom:345.186667pt;}
.y2d7{bottom:348.386667pt;}
.y26d{bottom:349.826667pt;}
.y107{bottom:351.586667pt;}
.y219{bottom:352.546667pt;}
.y203{bottom:352.866667pt;}
.y2f5{bottom:355.106667pt;}
.y2c2{bottom:356.066667pt;}
.y32{bottom:356.386667pt;}
.y291{bottom:356.706667pt;}
.yf{bottom:357.826667pt;}
.y4f{bottom:359.746667pt;}
.y8d{bottom:361.346667pt;}
.y1ca{bottom:361.666667pt;}
.y1d3{bottom:365.026667pt;}
.y16e{bottom:365.186667pt;}
.y2d6{bottom:366.306667pt;}
.ydd{bottom:366.466667pt;}
.y26c{bottom:366.786667pt;}
.ya2{bottom:368.866667pt;}
.y80{bottom:372.226667pt;}
.y125{bottom:372.546667pt;}
.y10a{bottom:373.026667pt;}
.y290{bottom:373.666667pt;}
.y6f{bottom:373.986667pt;}
.y1ec{bottom:376.066667pt;}
.yb8{bottom:380.386667pt;}
.ya7{bottom:381.026667pt;}
.y106{bottom:381.986667pt;}
.y2d5{bottom:384.226667pt;}
.y22f{bottom:386.306667pt;}
.y194{bottom:386.946667pt;}
.y195{bottom:386.986630pt;}
.y218{bottom:388.386667pt;}
.y28f{bottom:390.626667pt;}
.y1c9{bottom:390.946667pt;}
.ye{bottom:393.666667pt;}
.y4e{bottom:395.586667pt;}
.y221{bottom:395.746667pt;}
.ycc{bottom:396.066667pt;}
.y26b{bottom:396.706667pt;}
.y8c{bottom:397.186667pt;}
.y1e1{bottom:400.866667pt;}
.y16d{bottom:401.026667pt;}
.y201{bottom:401.986667pt;}
.ya1{bottom:404.706667pt;}
.y31{bottom:405.506667pt;}
.y22e{bottom:406.146667pt;}
.y202{bottom:407.266667pt;}
.y28e{bottom:407.426667pt;}
.y7f{bottom:407.906667pt;}
.y124{bottom:408.386667pt;}
.y109{bottom:408.866667pt;}
.y6e{bottom:409.826667pt;}
.y105{bottom:412.706667pt;}
.y26a{bottom:413.826667pt;}
.yb7{bottom:416.066667pt;}
.ya6{bottom:416.866667pt;}
.y1eb{bottom:418.466667pt;}
.y2d4{bottom:419.906667pt;}
.y1c8{bottom:420.226667pt;}
.y217{bottom:424.226667pt;}
.yd7{bottom:425.186667pt;}
.y2f4{bottom:426.786667pt;}
.y104{bottom:429.026667pt;}
.yd{bottom:429.506667pt;}
.y4d{bottom:431.426667pt;}
.y8b{bottom:433.026667pt;}
.y1e0{bottom:436.706667pt;}
.y191{bottom:436.853297pt;}
.y16c{bottom:436.866667pt;}
.y200{bottom:437.826667pt;}
.ya0{bottom:440.546667pt;}
.y28d{bottom:441.026667pt;}
.y30{bottom:441.346667pt;}
.y7e{bottom:443.746667pt;}
.y123{bottom:444.226667pt;}
.y60{bottom:444.706667pt;}
.y6d{bottom:445.666667pt;}
.ya5{bottom:446.786667pt;}
.y1c7{bottom:449.506667pt;}
.y22c{bottom:450.786667pt;}
.yb6{bottom:451.906667pt;}
.y1ea{bottom:454.306667pt;}
.yd6{bottom:454.493333pt;}
.y2d3{bottom:455.746667pt;}
.y28c{bottom:457.986667pt;}
.y103{bottom:459.773333pt;}
.y216{bottom:460.066667pt;}
.y269{bottom:460.866667pt;}
.y2f3{bottom:462.626667pt;}
.y4c{bottom:467.106667pt;}
.yb2{bottom:467.746667pt;}
.y8a{bottom:468.706667pt;}
.y22b{bottom:470.653333pt;}
.y243{bottom:471.453333pt;}
.y1df{bottom:472.546667pt;}
.y16b{bottom:472.706667pt;}
.y1ff{bottom:473.666667pt;}
.y9f{bottom:476.226667pt;}
.y102{bottom:476.253333pt;}
.y2f{bottom:477.186667pt;}
.y268{bottom:477.666667pt;}
.y1e2{bottom:477.826667pt;}
.yc{bottom:478.626667pt;}
.y1c6{bottom:478.786667pt;}
.y7d{bottom:479.586667pt;}
.y121{bottom:480.066667pt;}
.y5f{bottom:480.546667pt;}
.y6c{bottom:481.506667pt;}
.yb5{bottom:483.746667pt;}
.yd5{bottom:483.773333pt;}
.y122{bottom:485.346667pt;}
.y108{bottom:485.826667pt;}
.y190{bottom:486.626667pt;}
.y28b{bottom:487.906667pt;}
.y1e9{bottom:490.146667pt;}
.y241{bottom:491.293333pt;}
.y2d2{bottom:491.586667pt;}
.y267{bottom:494.466667pt;}
.y215{bottom:495.906667pt;}
.y2f2{bottom:498.466667pt;}
.yb1{bottom:499.906667pt;}
.y4b{bottom:502.973333pt;}
.y89{bottom:504.573333pt;}
.y28a{bottom:505.053333pt;}
.y101{bottom:505.693333pt;}
.y1c5{bottom:508.093333pt;}
.y1de{bottom:508.253333pt;}
.y16a{bottom:508.573333pt;}
.y1fe{bottom:509.533333pt;}
.y9e{bottom:512.093333pt;}
.yd3{bottom:512.893333pt;}
.y2e{bottom:513.053333pt;}
.y22a{bottom:515.293333pt;}
.y7c{bottom:515.453333pt;}
.y120{bottom:515.933333pt;}
.y5e{bottom:516.253333pt;}
.y2f1{bottom:516.413333pt;}
.y6b{bottom:517.373333pt;}
.yb0{bottom:518.493333pt;}
.y18d{bottom:522.453333pt;}
.y18c{bottom:522.493333pt;}
.y266{bottom:524.573333pt;}
.y1e8{bottom:526.013333pt;}
.y2d1{bottom:527.453333pt;}
.yb{bottom:527.773333pt;}
.y214{bottom:531.613333pt;}
.y228{bottom:532.093333pt;}
.y2f0{bottom:534.173333pt;}
.y289{bottom:534.973333pt;}
.y100{bottom:535.293333pt;}
.y1c4{bottom:537.533333pt;}
.y1ab{bottom:538.653333pt;}
.y4a{bottom:538.813333pt;}
.y265{bottom:541.533333pt;}
.yd0{bottom:542.173333pt;}
.y94{bottom:544.093333pt;}
.y169{bottom:544.253333pt;}
.y1fd{bottom:545.373333pt;}
.y2d{bottom:548.893333pt;}
.yaf{bottom:549.213333pt;}
.y88{bottom:549.853333pt;}
.y7a{bottom:551.293333pt;}
.y11f{bottom:551.613333pt;}
.y5d{bottom:552.093333pt;}
.y6a{bottom:553.053333pt;}
.y7b{bottom:556.573333pt;}
.y264{bottom:558.333333pt;}
.y9d{bottom:561.213333pt;}
.y1e6{bottom:561.693333pt;}
.y2d0{bottom:563.293333pt;}
.ya{bottom:563.613333pt;}
.yff{bottom:564.893333pt;}
.y288{bottom:565.213333pt;}
.y1c3{bottom:566.813333pt;}
.y1e7{bottom:566.973333pt;}
.y2ef{bottom:570.013333pt;}
.y189{bottom:572.386630pt;}
.y188{bottom:572.413333pt;}
.ycb{bottom:572.733333pt;}
.y49{bottom:574.653333pt;}
.y1dd{bottom:579.933333pt;}
.y168{bottom:580.093333pt;}
.y213{bottom:580.893333pt;}
.y1fc{bottom:581.053333pt;}
.y287{bottom:582.173333pt;}
.y226{bottom:582.333333pt;}
.y1aa{bottom:582.493333pt;}
.y11c{bottom:583.453297pt;}
.y2c{bottom:584.573333pt;}
.y79{bottom:586.973333pt;}
.y5c{bottom:587.933333pt;}
.y263{bottom:588.413333pt;}
.y69{bottom:588.893333pt;}
.yca{bottom:589.693333pt;}
.y11b{bottom:591.453333pt;}
.yfd{bottom:595.453333pt;}
.y1c2{bottom:596.093333pt;}
.y9c{bottom:597.053333pt;}
.y1e5{bottom:597.533333pt;}
.y2c1{bottom:597.693333pt;}
.y42{bottom:598.333333pt;}
.y2cf{bottom:598.973333pt;}
.y240{bottom:599.813333pt;}
.y262{bottom:605.373333pt;}
.y2ee{bottom:605.853333pt;}
.yc6{bottom:606.853333pt;}
.y48{bottom:610.493333pt;}
.y286{bottom:612.253333pt;}
.yfc{bottom:612.453333pt;}
.y9{bottom:612.733333pt;}
.y1dc{bottom:615.773333pt;}
.y212{bottom:616.573333pt;}
.y1fb{bottom:616.893333pt;}
.y1a8{bottom:618.333333pt;}
.y2b{bottom:620.413333pt;}
.y186{bottom:622.173333pt;}
.y78{bottom:622.813333pt;}
.y1a9{bottom:623.613333pt;}
.y5b{bottom:623.773333pt;}
.y68{bottom:624.733333pt;}
.y1c1{bottom:625.373333pt;}
.y167{bottom:626.173333pt;}
.y187{bottom:627.453333pt;}
.y225{bottom:627.813333pt;}
.y285{bottom:629.213333pt;}
.yf4{bottom:629.573333pt;}
.y9b{bottom:632.893333pt;}
.y1e4{bottom:633.373333pt;}
.y2ce{bottom:634.813333pt;}
.y261{bottom:635.453333pt;}
.yc5{bottom:637.413333pt;}
.y2c0{bottom:638.333333pt;}
.y300{bottom:638.973333pt;}
.y2ed{bottom:641.693333pt;}
.y11a{bottom:643.613333pt;}
.y284{bottom:646.013333pt;}
.y41{bottom:646.173333pt;}
.y1db{bottom:651.613333pt;}
.y211{bottom:652.413333pt;}
.y1fa{bottom:652.733333pt;}
.y8{bottom:653.853333pt;}
.y1a6{bottom:654.013333pt;}
.yc1{bottom:654.373333pt;}
.y1c0{bottom:654.653333pt;}
.y2a{bottom:656.253333pt;}
.y185{bottom:657.986594pt;}
.y184{bottom:658.013333pt;}
.y77{bottom:658.653333pt;}
.y23f{bottom:659.013333pt;}
.y1a7{bottom:659.293333pt;}
.y5a{bottom:659.613333pt;}
.y67{bottom:662.813333pt;}
.y283{bottom:662.973333pt;}
.y9a{bottom:668.733333pt;}
.y260{bottom:669.373333pt;}
.y2cd{bottom:670.653333pt;}
.y15f{bottom:673.986594pt;}
.y163{bottom:675.253261pt;}
.y166{bottom:675.293333pt;}
.y2ec{bottom:677.533333pt;}
.y23e{bottom:678.853333pt;}
.y2bd{bottom:678.973333pt;}
.y76{bottom:679.453333pt;}
.y282{bottom:679.773333pt;}
.y40{bottom:682.013333pt;}
.y162{bottom:683.293333pt;}
.y224{bottom:683.493333pt;}
.y1bf{bottom:683.933333pt;}
.y25f{bottom:686.173333pt;}
.yf1{bottom:686.853333pt;}
.y1da{bottom:687.293333pt;}
.y210{bottom:688.253333pt;}
.y2cc{bottom:688.573333pt;}
.y1a5{bottom:689.853333pt;}
.y29{bottom:692.093333pt;}
.y59{bottom:695.293333pt;}
.y2eb{bottom:695.453333pt;}
.y281{bottom:696.573333pt;}
.y23d{bottom:698.853333pt;}
.y119{bottom:700.573333pt;}
.y1f9{bottom:701.853333pt;}
.y7{bottom:702.973333pt;}
.y22{bottom:704.573333pt;}
.y2cb{bottom:706.493333pt;}
.yc0{bottom:707.333333pt;}
.y183{bottom:707.933333pt;}
.y1bd{bottom:713.213333pt;}
.y25e{bottom:716.093333pt;}
.y3f{bottom:717.853333pt;}
.y66{bottom:718.013333pt;}
.y2b8{bottom:719.613333pt;}
.y20f{bottom:724.093333pt;}
.y2ca{bottom:724.413333pt;}
.y15e{bottom:725.213333pt;}
.y280{bottom:726.653333pt;}
.y28{bottom:727.973333pt;}
.y58{bottom:731.173333pt;}
.y25d{bottom:733.253333pt;}
.y1a4{bottom:736.133333pt;}
.y1f8{bottom:737.733333pt;}
.y21{bottom:740.293333pt;}
.y2c9{bottom:742.213333pt;}
.y1ba{bottom:742.533333pt;}
.y27f{bottom:743.653333pt;}
.y182{bottom:743.813333pt;}
.y6{bottom:746.853333pt;}
.y2ea{bottom:749.093333pt;}
.y3e{bottom:753.733333pt;}
.y15b{bottom:757.053333pt;}
.y157{bottom:758.319928pt;}
.y155{bottom:759.586594pt;}
.y20e{bottom:759.973333pt;}
.y2c8{bottom:760.133333pt;}
.y27e{bottom:760.453333pt;}
.y153{bottom:762.319928pt;}
.y25c{bottom:763.173333pt;}
.y27{bottom:763.653333pt;}
.y152{bottom:766.373333pt;}
.y57{bottom:767.013333pt;}
.y118{bottom:772.293333pt;}
.y1f7{bottom:773.573333pt;}
.y1b9{bottom:773.893333pt;}
.y20{bottom:776.133333pt;}
.y2c7{bottom:778.053333pt;}
.y181{bottom:779.493333pt;}
.y25b{bottom:780.293333pt;}
.y2e9{bottom:784.933333pt;}
.y1a3{bottom:787.653333pt;}
.y5{bottom:787.973333pt;}
.y3d{bottom:789.413333pt;}
.y27d{bottom:790.533333pt;}
.y20d{bottom:795.653333pt;}
.y2c6{bottom:795.973333pt;}
.y25a{bottom:797.093333pt;}
.y26{bottom:799.493333pt;}
.y2b3{bottom:801.093333pt;}
.y47{bottom:802.853333pt;}
.y14f{bottom:804.253261pt;}
.y180{bottom:804.613333pt;}
.y1b7{bottom:805.093333pt;}
.y27c{bottom:807.493333pt;}
.y1f6{bottom:809.413333pt;}
.y14e{bottom:812.293333pt;}
.y259{bottom:813.893333pt;}
.y2e8{bottom:820.773333pt;}
.y1a2{bottom:823.493333pt;}
.y1f{bottom:825.253333pt;}
.y17f{bottom:827.173333pt;}
.y20c{bottom:831.493333pt;}
.y4{bottom:831.813333pt;}
.y25{bottom:835.333333pt;}
.y1b5{bottom:836.453333pt;}
.y27b{bottom:837.573333pt;}
.y46{bottom:838.693333pt;}
.y17e{bottom:841.893333pt;}
.y29e{bottom:842.373333pt;}
.y56{bottom:843.973333pt;}
.y1f5{bottom:845.093333pt;}
.y2c5{bottom:849.733333pt;}
.y14c{bottom:849.986594pt;}
.y29d{bottom:851.973333pt;}
.y27a{bottom:854.533333pt;}
.y17d{bottom:855.493333pt;}
.y2e7{bottom:856.613333pt;}
.y14b{bottom:856.773333pt;}
.y1a1{bottom:859.333333pt;}
.y258{bottom:860.933333pt;}
.y1e{bottom:861.093333pt;}
.y20b{bottom:867.333333pt;}
.y17c{bottom:873.093333pt;}
.y45{bottom:874.373333pt;}
.y2e6{bottom:874.533333pt;}
.y24{bottom:874.693333pt;}
.y1f4{bottom:880.933333pt;}
.y279{bottom:884.613333pt;}
.y2c4{bottom:889.573333pt;}
.y17b{bottom:890.693333pt;}
.y144{bottom:890.986594pt;}
.y257{bottom:891.013333pt;}
.y149{bottom:892.253261pt;}
.y2e5{bottom:892.293333pt;}
.y147{bottom:894.986594pt;}
.y1a0{bottom:895.173333pt;}
.y3{bottom:898.373333pt;}
.y143{bottom:899.013333pt;}
.y278{bottom:901.573333pt;}
.y20a{bottom:903.173333pt;}
.y256{bottom:907.973333pt;}
.y17a{bottom:908.293333pt;}
.y1d{bottom:910.213333pt;}
.y1f3{bottom:910.853333pt;}
.y87{bottom:913.413333pt;}
.yb4{bottom:915.333333pt;}
.y111{bottom:915.493333pt;}
.y179{bottom:926.053333pt;}
.y2e4{bottom:928.133333pt;}
.y277{bottom:931.653333pt;}
.y140{bottom:936.853261pt;}
.y13e{bottom:939.586594pt;}
.y2{bottom:942.213333pt;}
.y19f{bottom:942.533333pt;}
.y255{bottom:943.493333pt;}
.y13d{bottom:943.653333pt;}
.y1c{bottom:946.053333pt;}
.yb3{bottom:947.333333pt;}
.y276{bottom:948.613333pt;}
.y1b{bottom:968.456000pt;}
.y1a{bottom:984.896000pt;}
.y19{bottom:999.296000pt;}
.y18{bottom:1013.696000pt;}
.y17{bottom:1028.096000pt;}
.h13{height:15.680000pt;}
.h16{height:15.712000pt;}
.h54{height:16.032000pt;}
.h6c{height:16.160000pt;}
.h5f{height:16.320000pt;}
.h63{height:16.480000pt;}
.h3d{height:16.933586pt;}
.h43{height:16.933810pt;}
.h34{height:17.000051pt;}
.h4e{height:17.280000pt;}
.h53{height:17.440000pt;}
.h2c{height:17.558233pt;}
.h69{height:17.920000pt;}
.h2e{height:17.932383pt;}
.h70{height:19.040000pt;}
.h6b{height:19.200000pt;}
.h6a{height:19.232000pt;}
.h27{height:19.999311pt;}
.h2a{height:19.999552pt;}
.h31{height:21.932610pt;}
.h3f{height:22.999766pt;}
.h38{height:23.066627pt;}
.h36{height:23.066966pt;}
.h30{height:25.583979pt;}
.hd{height:26.735625pt;}
.h20{height:27.998880pt;}
.h59{height:27.999804pt;}
.h5d{height:27.999822pt;}
.h56{height:27.999840pt;}
.h3a{height:27.999876pt;}
.h47{height:28.001357pt;}
.h23{height:28.001375pt;}
.h4a{height:28.001430pt;}
.h14{height:29.120000pt;}
.h1b{height:29.152000pt;}
.h18{height:29.280000pt;}
.h19{height:29.312000pt;}
.h62{height:29.440000pt;}
.h11{height:30.080000pt;}
.h1e{height:30.112000pt;}
.h33{height:31.046755pt;}
.h28{height:31.120749pt;}
.h61{height:31.360000pt;}
.h2d{height:31.757679pt;}
.h1f{height:31.828125pt;}
.h68{height:32.480000pt;}
.h67{height:32.512000pt;}
.h15{height:32.557812pt;}
.h65{height:32.640000pt;}
.h2f{height:34.287744pt;}
.h9{height:34.374375pt;}
.h6{height:34.453125pt;}
.h60{height:36.445312pt;}
.h8{height:36.920625pt;}
.h4{height:37.443750pt;}
.h3{height:39.168750pt;}
.h29{height:39.564166pt;}
.h76{height:40.000000pt;}
.h77{height:40.032000pt;}
.h48{height:40.639888pt;}
.h32{height:41.936407pt;}
.h2b{height:42.523548pt;}
.he{height:42.649687pt;}
.h21{height:43.547074pt;}
.h42{height:43.548567pt;}
.h57{height:43.570244pt;}
.h12{height:43.905937pt;}
.h6d{height:44.000000pt;}
.h66{height:44.706250pt;}
.h52{height:46.560000pt;}
.h51{height:47.742188pt;}
.h4f{height:49.148438pt;}
.h74{height:49.336436pt;}
.h45{height:49.729710pt;}
.h40{height:51.136383pt;}
.h41{height:51.290680pt;}
.h25{height:51.938062pt;}
.ha{height:52.834688pt;}
.h5b{height:54.186443pt;}
.h5c{height:54.186450pt;}
.h55{height:54.200682pt;}
.hb{height:54.390938pt;}
.h4d{height:54.953018pt;}
.h46{height:55.155314pt;}
.h58{height:55.242288pt;}
.h5e{height:55.256274pt;}
.h5a{height:55.256307pt;}
.h3e{height:55.285046pt;}
.h1d{height:56.000000pt;}
.hf{height:58.522500pt;}
.h6f{height:58.560000pt;}
.h1{height:58.563750pt;}
.h1c{height:59.360000pt;}
.h44{height:60.001916pt;}
.h35{height:60.236631pt;}
.h5{height:60.288750pt;}
.h50{height:61.280000pt;}
.h2{height:63.399375pt;}
.h37{height:68.777610pt;}
.h24{height:69.530519pt;}
.h49{height:69.629809pt;}
.hc{height:69.660000pt;}
.h4b{height:69.664467pt;}
.h39{height:71.582685pt;}
.h26{height:74.477812pt;}
.h4c{height:74.488448pt;}
.h3c{height:74.596011pt;}
.h22{height:74.630583pt;}
.h3b{height:74.633142pt;}
.h75{height:75.680000pt;}
.h7{height:77.951250pt;}
.h71{height:87.840000pt;}
.h64{height:87.872000pt;}
.h6e{height:102.432000pt;}
.h1a{height:116.832000pt;}
.h17{height:175.386667pt;}
.h72{height:175.906667pt;}
.h73{height:190.426667pt;}
.h10{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w1c{width:8.000063pt;}
.w30{width:12.932853pt;}
.w2e{width:12.932871pt;}
.w2b{width:13.000033pt;}
.w25{width:13.000070pt;}
.w21{width:16.933103pt;}
.w18{width:16.934069pt;}
.w1e{width:16.998855pt;}
.w20{width:16.999323pt;}
.w22{width:16.999341pt;}
.w35{width:18.080000pt;}
.w2c{width:23.000521pt;}
.w27{width:23.066995pt;}
.w2d{width:23.067687pt;}
.w2f{width:23.067705pt;}
.w32{width:23.067724pt;}
.w31{width:23.067760pt;}
.w1a{width:25.865556pt;}
.w1b{width:28.000706pt;}
.w24{width:28.000902pt;}
.w23{width:28.000939pt;}
.w28{width:32.933436pt;}
.w29{width:34.999945pt;}
.w16{width:35.066671pt;}
.w52{width:39.392000pt;}
.w19{width:39.999653pt;}
.w4b{width:40.000000pt;}
.w4c{width:47.072000pt;}
.w4d{width:47.680000pt;}
.w26{width:48.000573pt;}
.w50{width:48.960000pt;}
.w47{width:49.120000pt;}
.w48{width:49.280000pt;}
.w51{width:50.880000pt;}
.w4f{width:50.912000pt;}
.w49{width:51.392000pt;}
.w54{width:52.480000pt;}
.w4e{width:55.040000pt;}
.w4a{width:55.200000pt;}
.w9{width:56.640000pt;}
.w53{width:70.240000pt;}
.w46{width:71.072000pt;}
.w14{width:82.240000pt;}
.w12{width:83.360000pt;}
.w40{width:84.032000pt;}
.w33{width:85.120000pt;}
.w6{width:95.072000pt;}
.w43{width:96.000000pt;}
.w44{width:96.032000pt;}
.w1d{width:98.063046pt;}
.w7{width:100.960000pt;}
.w38{width:101.952000pt;}
.w1f{width:107.999690pt;}
.w3a{width:109.152000pt;}
.wd{width:113.952000pt;}
.wb{width:124.832000pt;}
.w10{width:125.152000pt;}
.wc{width:126.080000pt;}
.w37{width:126.112000pt;}
.w39{width:132.032000pt;}
.w11{width:136.986667pt;}
.w8{width:140.986667pt;}
.w41{width:144.320000pt;}
.w3e{width:181.626667pt;}
.w15{width:199.706667pt;}
.w13{width:202.586667pt;}
.w3b{width:204.026667pt;}
.wa{width:224.986667pt;}
.w3d{width:225.186667pt;}
.w34{width:228.066667pt;}
.w36{width:245.986667pt;}
.w17{width:275.873193pt;}
.w2a{width:307.106667pt;}
.w3f{width:406.813333pt;}
.wf{width:422.946667pt;}
.w42{width:515.773333pt;}
.w3c{width:577.253333pt;}
.w45{width:660.093333pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.we{width:984.160000pt;}
.w5{width:1055.999969pt;}
.w4{width:1055.999984pt;}
.w3{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x80{left:1.237532pt;}
.x6c{left:2.457375pt;}
.x73{left:3.881135pt;}
.x7a{left:6.878084pt;}
.x93{left:7.949431pt;}
.x2b{left:9.760000pt;}
.x51{left:10.720000pt;}
.x44{left:11.840000pt;}
.x3d{left:14.080000pt;}
.x2c{left:15.680000pt;}
.x56{left:17.280000pt;}
.x57{left:18.720000pt;}
.x9a{left:19.680000pt;}
.x4f{left:20.800000pt;}
.x50{left:22.400000pt;}
.x92{left:23.881016pt;}
.x4e{left:24.960000pt;}
.x4c{left:26.240000pt;}
.x42{left:27.840000pt;}
.x24{left:28.960000pt;}
.x3a{left:30.080000pt;}
.x37{left:31.674667pt;}
.xe0{left:32.640000pt;}
.x31{left:33.600000pt;}
.x45{left:34.880000pt;}
.x23{left:36.000000pt;}
.xcd{left:37.120000pt;}
.x30{left:38.240000pt;}
.x26{left:39.674667pt;}
.x46{left:40.800000pt;}
.xcc{left:41.792000pt;}
.x34{left:42.880000pt;}
.x28{left:44.960000pt;}
.xc6{left:46.400000pt;}
.xc3{left:47.360000pt;}
.x4d{left:48.320000pt;}
.x10{left:49.439976pt;}
.x41{left:50.880000pt;}
.x48{left:52.160000pt;}
.x33{left:53.120000pt;}
.x38{left:54.880000pt;}
.x47{left:55.840000pt;}
.x4{left:56.960000pt;}
.x39{left:58.560000pt;}
.x40{left:60.800000pt;}
.xc0{left:61.960000pt;}
.x43{left:63.520000pt;}
.x3{left:64.480000pt;}
.xbf{left:65.640000pt;}
.x5{left:67.200000pt;}
.x49{left:68.480000pt;}
.x29{left:70.400000pt;}
.x6{left:72.031988pt;}
.xbe{left:73.440000pt;}
.x4a{left:74.400000pt;}
.x53{left:76.320000pt;}
.x7d{left:78.371636pt;}
.x9e{left:80.000000pt;}
.x5b{left:82.240000pt;}
.x9c{left:83.680000pt;}
.xbd{left:85.160000pt;}
.x97{left:88.832000pt;}
.x11{left:89.951988pt;}
.xa1{left:91.360000pt;}
.x78{left:92.942656pt;}
.xd1{left:94.120000pt;}
.x2{left:96.032000pt;}
.x2e{left:97.280000pt;}
.x14{left:98.911988pt;}
.xa{left:100.191988pt;}
.x4b{left:101.306667pt;}
.x6a{left:102.911988pt;}
.xce{left:104.360000pt;}
.xd5{left:108.031988pt;}
.xb4{left:111.712000pt;}
.x9d{left:116.474667pt;}
.xcb{left:117.480000pt;}
.xa0{left:119.514667pt;}
.x9b{left:121.160000pt;}
.xc8{left:126.600000pt;}
.x94{left:128.991988pt;}
.x25{left:131.072000pt;}
.x89{left:132.746658pt;}
.x7c{left:135.746658pt;}
.x9f{left:136.834667pt;}
.xd7{left:138.266667pt;}
.x75{left:139.279991pt;}
.x8a{left:140.666655pt;}
.x99{left:144.194667pt;}
.x76{left:147.226655pt;}
.x62{left:149.306642pt;}
.x5a{left:155.400000pt;}
.x63{left:156.666655pt;}
.xaa{left:157.813315pt;}
.xa7{left:161.466655pt;}
.xd0{left:165.800000pt;}
.xab{left:180.826655pt;}
.xd4{left:182.760000pt;}
.xd8{left:187.546667pt;}
.xc9{left:190.920000pt;}
.xac{left:193.213315pt;}
.x6e{left:194.479982pt;}
.xb5{left:196.826667pt;}
.xd2{left:199.880000pt;}
.xca{left:201.800000pt;}
.xbc{left:204.666667pt;}
.xad{left:206.106655pt;}
.xd3{left:216.360000pt;}
.xb7{left:220.866667pt;}
.x20{left:222.786655pt;}
.x15{left:225.026655pt;}
.xb{left:229.186655pt;}
.x27{left:232.026667pt;}
.x6f{left:234.466655pt;}
.xd9{left:238.946667pt;}
.x1e{left:241.026655pt;}
.x7e{left:243.746655pt;}
.xba{left:247.906642pt;}
.x5e{left:251.746642pt;}
.xd{left:253.506655pt;}
.xb3{left:256.226655pt;}
.x7f{left:261.346649pt;}
.xcf{left:263.880000pt;}
.xb1{left:266.946642pt;}
.x68{left:269.064897pt;}
.x96{left:269.986655pt;}
.xb2{left:271.906655pt;}
.x81{left:278.306655pt;}
.xc7{left:284.360000pt;}
.x9{left:288.066655pt;}
.xc4{left:294.426667pt;}
.x8b{left:305.346630pt;}
.x6b{left:313.213297pt;}
.x8c{left:318.306655pt;}
.xb6{left:322.946667pt;}
.x77{left:327.279964pt;}
.x6d{left:330.146655pt;}
.xda{left:334.146667pt;}
.xaf{left:338.613297pt;}
.xbb{left:344.866655pt;}
.x64{left:346.479964pt;}
.x8d{left:357.679964pt;}
.x86{left:361.013297pt;}
.x3e{left:369.026667pt;}
.x69{left:371.933321pt;}
.x2a{left:373.026667pt;}
.x65{left:381.533321pt;}
.x1c{left:383.773309pt;}
.x1d{left:386.653321pt;}
.x87{left:389.053321pt;}
.x98{left:395.933333pt;}
.x8e{left:405.693321pt;}
.x79{left:425.346630pt;}
.x2d{left:429.666667pt;}
.x61{left:432.413321pt;}
.x8f{left:436.079964pt;}
.x55{left:440.066667pt;}
.x7b{left:442.333321pt;}
.x3b{left:444.386667pt;}
.xc1{left:447.133309pt;}
.x36{left:448.226667pt;}
.xc2{left:450.173321pt;}
.x3f{left:452.386667pt;}
.x52{left:455.266667pt;}
.x84{left:457.346630pt;}
.xa2{left:461.533321pt;}
.x54{left:462.786667pt;}
.x3c{left:465.986667pt;}
.x5c{left:468.093309pt;}
.x5d{left:470.173321pt;}
.x85{left:474.333321pt;}
.x59{left:478.946667pt;}
.xdb{left:483.933333pt;}
.x58{left:487.426667pt;}
.xb8{left:500.093309pt;}
.x5f{left:502.173309pt;}
.xb9{left:503.293321pt;}
.x60{left:506.333321pt;}
.x88{left:520.546667pt;}
.xb0{left:525.679964pt;}
.xdc{left:535.013333pt;}
.x95{left:537.893321pt;}
.x90{left:542.613297pt;}
.x70{left:548.746630pt;}
.xe{left:558.693309pt;}
.xf{left:563.653321pt;}
.x91{left:565.733321pt;}
.xa5{left:570.346630pt;}
.x12{left:572.933309pt;}
.x71{left:574.693321pt;}
.xa8{left:575.946630pt;}
.x13{left:576.933321pt;}
.xdd{left:583.973333pt;}
.x1a{left:585.413309pt;}
.xa9{left:588.933321pt;}
.x1b{left:590.053321pt;}
.xa6{left:593.413321pt;}
.x82{left:599.279964pt;}
.x66{left:604.293309pt;}
.x67{left:609.253321pt;}
.x83{left:616.293321pt;}
.x1f{left:622.693321pt;}
.xae{left:633.679928pt;}
.xde{left:634.853333pt;}
.xc{left:643.013321pt;}
.xa3{left:652.613309pt;}
.x2f{left:655.293333pt;}
.x16{left:656.453321pt;}
.xa4{left:657.573321pt;}
.x72{left:674.013261pt;}
.x7{left:695.359976pt;}
.x8{left:699.839988pt;}
.x74{left:702.079988pt;}
.x19{left:705.279988pt;}
.x17{left:711.679976pt;}
.x1{left:712.800000pt;}
.x18{left:716.639988pt;}
.xe1{left:725.119988pt;}
.xdf{left:744.480000pt;}
.x21{left:771.039988pt;}
.xd6{left:777.279988pt;}
.x32{left:780.133333pt;}
.xc5{left:810.213333pt;}
.x35{left:906.213333pt;}
.x22{left:945.253318pt;}
}




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