
    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_8277cfcc517c8e848098f1f2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_4831fb5d70eada065c37a7fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005859;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_f1d027325e78595e2a1ee7e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172363;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_420915995109a955cf6c6f34.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_389fdd2905b572e55056a70c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_57c9ffa834e2347967d5e41e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_14a9f0497358ed312a5c5c9a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c946ec85842014ab2edff58b.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_56b4afaf716716278d28b393.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.142090;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_21b24397bba64d1b8f1fd428.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_5123ee1555d5cfbb80273f27.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_0fb58eda6d55f418e6eaaeeb.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100586;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;}
.m1{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);}
.m1d{transform:matrix(0.196994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196994,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.204296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204296,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.215057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215057,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.228204,0.000000,-0.076060,0.238149,0,0);-ms-transform:matrix(0.228204,0.000000,-0.076060,0.238149,0,0);-webkit-transform:matrix(0.228204,0.000000,-0.076060,0.238149,0,0);}
.me{transform:matrix(0.228769,0.000000,-0.076248,0.238089,0,0);-ms-transform:matrix(0.228769,0.000000,-0.076248,0.238089,0,0);-webkit-transform:matrix(0.228769,0.000000,-0.076248,0.238089,0,0);}
.m13{transform:matrix(0.235319,0.000000,-0.078432,0.237378,0,0);-ms-transform:matrix(0.235319,0.000000,-0.078432,0.237378,0,0);-webkit-transform:matrix(0.235319,0.000000,-0.078432,0.237378,0,0);}
.m10{transform:matrix(0.237687,0.000000,-0.079221,0.237116,0,0);-ms-transform:matrix(0.237687,0.000000,-0.079221,0.237116,0,0);-webkit-transform:matrix(0.237687,0.000000,-0.079221,0.237116,0,0);}
.m1b{transform:matrix(0.238016,0.000000,-0.079331,0.237079,0,0);-ms-transform:matrix(0.238016,0.000000,-0.079331,0.237079,0,0);-webkit-transform:matrix(0.238016,0.000000,-0.079331,0.237079,0,0);}
.m17{transform:matrix(0.238404,0.000000,-0.079460,0.237036,0,0);-ms-transform:matrix(0.238404,0.000000,-0.079460,0.237036,0,0);-webkit-transform:matrix(0.238404,0.000000,-0.079460,0.237036,0,0);}
.m14{transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239560,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240214,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.240801,0.000000,-0.080259,0.236767,0,0);-ms-transform:matrix(0.240801,0.000000,-0.080259,0.236767,0,0);-webkit-transform:matrix(0.240801,0.000000,-0.080259,0.236767,0,0);}
.m19{transform:matrix(0.240870,0.000000,-0.080282,0.236759,0,0);-ms-transform:matrix(0.240870,0.000000,-0.080282,0.236759,0,0);-webkit-transform:matrix(0.240870,0.000000,-0.080282,0.236759,0,0);}
.ma{transform:matrix(0.242229,0.000000,-0.080735,0.236605,0,0);-ms-transform:matrix(0.242229,0.000000,-0.080735,0.236605,0,0);-webkit-transform:matrix(0.242229,0.000000,-0.080735,0.236605,0,0);}
.m6{transform:matrix(0.242251,0.000000,-0.080742,0.236602,0,0);-ms-transform:matrix(0.242251,0.000000,-0.080742,0.236602,0,0);-webkit-transform:matrix(0.242251,0.000000,-0.080742,0.236602,0,0);}
.m8{transform:matrix(0.242456,0.000000,-0.080811,0.236579,0,0);-ms-transform:matrix(0.242456,0.000000,-0.080811,0.236579,0,0);-webkit-transform:matrix(0.242456,0.000000,-0.080811,0.236579,0,0);}
.mc{transform:matrix(0.245417,0.000000,-0.081797,0.236240,0,0);-ms-transform:matrix(0.245417,0.000000,-0.081797,0.236240,0,0);-webkit-transform:matrix(0.245417,0.000000,-0.081797,0.236240,0,0);}
.m12{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249279,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);}
.mf{transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250602,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254259,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254341,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254636,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.255942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255942,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255969,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.256211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256211,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257587,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.259712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259712,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.v5{vertical-align:-55.499028px;}
.v7{vertical-align:-29.527976px;}
.vb{vertical-align:-23.876250px;}
.v1{vertical-align:-20.880000px;}
.va{vertical-align:-14.302101px;}
.v9{vertical-align:-11.419286px;}
.v4{vertical-align:-5.760000px;}
.v8{vertical-align:-4.382380px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.v2{vertical-align:20.880000px;}
.v3{vertical-align:27.360000px;}
.ls2d{letter-spacing:-2.288404px;}
.ls3b{letter-spacing:-1.656000px;}
.ls36{letter-spacing:-1.512000px;}
.ls34{letter-spacing:-1.008000px;}
.ls1c{letter-spacing:-0.936000px;}
.ls21{letter-spacing:-0.899963px;}
.ls19{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.752553px;}
.ls1e{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.718453px;}
.ls3a{letter-spacing:-0.633667px;}
.ls14{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.172800px;}
.ls8{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.131400px;}
.lse{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.023040px;}
.ls10{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.269280px;}
.ls1a{letter-spacing:0.288000px;}
.ls39{letter-spacing:0.318814px;}
.ls2c{letter-spacing:0.334613px;}
.ls1b{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.389280px;}
.lsc{letter-spacing:0.432000px;}
.ls30{letter-spacing:0.504000px;}
.ls35{letter-spacing:0.576000px;}
.ls38{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.684000px;}
.ls2{letter-spacing:0.720000px;}
.ls2f{letter-spacing:0.864000px;}
.ls3c{letter-spacing:0.990000px;}
.ls15{letter-spacing:1.440000px;}
.ls37{letter-spacing:1.584000px;}
.ls20{letter-spacing:2.160000px;}
.ls3d{letter-spacing:2.880000px;}
.ls13{letter-spacing:7.380000px;}
.ls28{letter-spacing:11.373681px;}
.ls32{letter-spacing:15.816000px;}
.ls33{letter-spacing:16.020000px;}
.ls18{letter-spacing:179.365619px;}
.ls27{letter-spacing:182.795845px;}
.ls2a{letter-spacing:183.162256px;}
.ls23{letter-spacing:184.930894px;}
.ls26{letter-spacing:185.853396px;}
.ls24{letter-spacing:190.872862px;}
.ls29{letter-spacing:205.846383px;}
.ls2b{letter-spacing:250.152826px;}
.ls22{letter-spacing:258.244061px;}
.ls25{letter-spacing:263.751652px;}
.ls1{letter-spacing:297.907200px;}
.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;}
}
.ws81{word-spacing:-48.600000px;}
.ws7b{word-spacing:-19.584000px;}
.wsf{word-spacing:-19.440000px;}
.ws7a{word-spacing:-18.864000px;}
.ws76{word-spacing:-18.720000px;}
.ws7d{word-spacing:-18.648000px;}
.ws77{word-spacing:-18.576000px;}
.ws84{word-spacing:-18.432000px;}
.ws78{word-spacing:-18.288000px;}
.ws7c{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws70{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws2f{word-spacing:-17.856968px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws2d{word-spacing:-17.208000px;}
.ws2e{word-spacing:-17.064000px;}
.ws79{word-spacing:-16.488000px;}
.ws82{word-spacing:-16.344000px;}
.ws3{word-spacing:-14.940000px;}
.ws6e{word-spacing:-14.601097px;}
.ws1{word-spacing:-14.595840px;}
.wsb{word-spacing:-13.505760px;}
.ws83{word-spacing:-13.050000px;}
.ws7e{word-spacing:-12.331155px;}
.ws5c{word-spacing:-12.060000px;}
.ws2{word-spacing:-9.720000px;}
.ws6f{word-spacing:-8.430652px;}
.ws73{word-spacing:-8.285088px;}
.ws71{word-spacing:-6.873849px;}
.ws16{word-spacing:-4.066508px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
.ws1c{word-spacing:16.515691px;}
.ws19{word-spacing:16.879473px;}
.ws11{word-spacing:17.863590px;}
.ws3a{word-spacing:27.003939px;}
.ws75{word-spacing:28.140091px;}
.ws72{word-spacing:28.173353px;}
.ws74{word-spacing:28.206614px;}
.ws1d{word-spacing:33.862153px;}
.ws7f{word-spacing:37.289309px;}
.ws80{word-spacing:37.437825px;}
.ws1a{word-spacing:37.687987px;}
.ws17{word-spacing:38.039786px;}
.ws13{word-spacing:38.319151px;}
.ws12{word-spacing:38.723902px;}
.ws15{word-spacing:38.861131px;}
.ws30{word-spacing:42.571012px;}
.ws6c{word-spacing:54.608101px;}
.ws66{word-spacing:59.163643px;}
.ws29{word-spacing:59.539482px;}
.ws3f{word-spacing:59.612833px;}
.ws45{word-spacing:59.941292px;}
.ws2b{word-spacing:59.946222px;}
.ws18{word-spacing:60.731031px;}
.ws1b{word-spacing:68.301381px;}
.ws10{word-spacing:69.310762px;}
.ws14{word-spacing:80.206973px;}
.wsd{word-spacing:82.045680px;}
.ws5f{word-spacing:87.543892px;}
.ws22{word-spacing:92.546507px;}
.ws33{word-spacing:97.332878px;}
.ws23{word-spacing:100.765528px;}
.ws32{word-spacing:100.809052px;}
.wsc{word-spacing:102.483120px;}
.ws1f{word-spacing:102.744011px;}
.ws26{word-spacing:107.170649px;}
.ws28{word-spacing:125.249957px;}
.ws1e{word-spacing:126.153592px;}
.ws20{word-spacing:126.226177px;}
.ws27{word-spacing:129.014695px;}
.ws58{word-spacing:153.191365px;}
.ws6b{word-spacing:153.545132px;}
.ws47{word-spacing:155.948955px;}
.ws21{word-spacing:157.774700px;}
.ws3c{word-spacing:162.044680px;}
.ws59{word-spacing:162.117248px;}
.ws3d{word-spacing:173.800720px;}
.wse{word-spacing:183.902112px;}
.ws2c{word-spacing:203.440681px;}
.ws2a{word-spacing:214.494800px;}
.ws31{word-spacing:241.352554px;}
.ws46{word-spacing:242.595327px;}
.ws40{word-spacing:255.494488px;}
.ws25{word-spacing:258.298009px;}
.ws64{word-spacing:268.192942px;}
.ws43{word-spacing:275.719963px;}
.ws24{word-spacing:279.815866px;}
.ws42{word-spacing:284.368006px;}
.ws38{word-spacing:299.883613px;}
.ws68{word-spacing:305.630154px;}
.ws37{word-spacing:308.531656px;}
.ws65{word-spacing:315.617304px;}
.ws3e{word-spacing:330.765629px;}
.ws36{word-spacing:332.071856px;}
.ws51{word-spacing:335.482559px;}
.ws5a{word-spacing:349.002230px;}
.ws52{word-spacing:352.898915px;}
.ws5b{word-spacing:368.718024px;}
.ws67{word-spacing:380.037342px;}
.ws6d{word-spacing:394.065250px;}
.ws53{word-spacing:417.977671px;}
.ws41{word-spacing:425.849622px;}
.ws48{word-spacing:436.688495px;}
.ws54{word-spacing:438.689309px;}
.ws55{word-spacing:439.990390px;}
.ws44{word-spacing:447.451447px;}
.ws49{word-spacing:453.428771px;}
.ws4a{word-spacing:454.742935px;}
.ws61{word-spacing:455.558721px;}
.ws4d{word-spacing:457.116907px;}
.ws56{word-spacing:457.244084px;}
.ws57{word-spacing:459.660449px;}
.ws35{word-spacing:462.203991px;}
.ws34{word-spacing:463.518155px;}
.ws4e{word-spacing:464.154040px;}
.ws6a{word-spacing:464.731271px;}
.ws69{word-spacing:467.631415px;}
.ws3b{word-spacing:471.615097px;}
.ws4b{word-spacing:474.412994px;}
.ws4f{word-spacing:476.786966px;}
.ws5e{word-spacing:479.366883px;}
.ws60{word-spacing:479.602941px;}
.ws5d{word-spacing:482.368195px;}
.ws50{word-spacing:483.824099px;}
.ws63{word-spacing:483.953158px;}
.ws62{word-spacing:486.853302px;}
.ws4c{word-spacing:499.486579px;}
.ws39{word-spacing:544.784325px;}
._27{margin-left:-211.564381px;}
._e{margin-left:-4.487040px;}
._d{margin-left:-3.474720px;}
._4{margin-left:-2.304000px;}
._0{margin-left:-1.059840px;}
._1{width:1.314720px;}
._2{width:2.446080px;}
._3{width:3.499440px;}
._5{width:4.953120px;}
._9{width:6.696000px;}
._a{width:7.809120px;}
._b{width:9.437760px;}
._11{width:10.584000px;}
._15{width:11.958240px;}
._f{width:13.008000px;}
._10{width:14.206560px;}
._c{width:15.408000px;}
._8{width:16.641120px;}
._6{width:19.296000px;}
._7{width:20.411520px;}
._14{width:21.919680px;}
._12{width:22.968000px;}
._13{width:24.456000px;}
._1b{width:26.352000px;}
._1c{width:27.360000px;}
._18{width:29.016000px;}
._19{width:30.024000px;}
._1a{width:31.505280px;}
._62{width:32.688000px;}
._16{width:33.768000px;}
._17{width:35.241120px;}
._cd{width:36.308672px;}
._21{width:38.704444px;}
._ce{width:39.751680px;}
._65{width:40.752000px;}
._61{width:46.059840px;}
._cf{width:48.815509px;}
._31{width:54.000000px;}
._dc{width:55.224000px;}
._5f{width:59.019840px;}
._da{width:60.932160px;}
._d9{width:62.043840px;}
._5c{width:63.504000px;}
._d2{width:65.479680px;}
._28{width:66.960000px;}
._2d{width:72.251678px;}
._22{width:76.826090px;}
._60{width:78.027840px;}
._2a{width:79.110159px;}
._d1{width:80.174001px;}
._2c{width:82.201558px;}
._20{width:83.218185px;}
._1f{width:85.292612px;}
._5b{width:86.400000px;}
._66{width:92.448000px;}
._d4{width:96.984000px;}
._d5{width:98.813280px;}
._5d{width:104.544000px;}
._6c{width:110.079582px;}
._6d{width:111.284289px;}
._68{width:112.678915px;}
._30{width:113.952828px;}
._32{width:115.153438px;}
._2f{width:118.475980px;}
._63{width:133.920000px;}
._db{width:136.728000px;}
._d0{width:138.724345px;}
._33{width:144.720000px;}
._29{width:145.981586px;}
._1e{width:147.243311px;}
._2b{width:152.584613px;}
._de{width:154.315387px;}
._4e{width:156.618759px;}
._4d{width:161.112661px;}
._5e{width:167.760000px;}
._34{width:169.366869px;}
._35{width:170.702350px;}
._26{width:173.884166px;}
._23{width:174.960000px;}
._69{width:176.942336px;}
._6b{width:178.344693px;}
._3b{width:180.520128px;}
._d3{width:181.728000px;}
._7d{width:184.025271px;}
._36{width:187.106672px;}
._3a{width:190.319170px;}
._81{width:192.707150px;}
._3f{width:194.892056px;}
._40{width:195.980838px;}
._25{width:197.040000px;}
._24{width:198.180000px;}
._3c{width:200.045626px;}
._64{width:203.688000px;}
._a6{width:205.519946px;}
._ba{width:207.054807px;}
._82{width:209.162260px;}
._bd{width:210.665340px;}
._bb{width:212.380525px;}
._3d{width:214.078914px;}
._9a{width:216.940058px;}
._1d{width:220.721280px;}
._38{width:224.164936px;}
._7c{width:236.930946px;}
._a7{width:238.202717px;}
._7a{width:239.732635px;}
._d7{width:244.125120px;}
._d8{width:245.376000px;}
._d6{width:246.528000px;}
._58{width:250.499913px;}
._41{width:252.234598px;}
._ac{width:253.867859px;}
._2e{width:255.213192px;}
._7b{width:261.645697px;}
._59{width:262.662915px;}
._52{width:264.111034px;}
._50{width:266.095684px;}
._3e{width:269.230927px;}
._4b{width:271.317569px;}
._ca{width:272.602740px;}
._4c{width:274.727375px;}
._cb{width:276.102156px;}
._49{width:278.643687px;}
._39{width:280.405530px;}
._7e{width:281.693495px;}
._95{width:284.206745px;}
._53{width:287.545164px;}
._93{width:291.086102px;}
._99{width:294.046145px;}
._88{width:298.930784px;}
._8c{width:300.477106px;}
._91{width:304.858799px;}
._67{width:306.412038px;}
._87{width:308.458197px;}
._6a{width:311.940609px;}
._55{width:316.455237px;}
._a5{width:318.960179px;}
._c9{width:324.152906px;}
._6e{width:325.924244px;}
._6f{width:328.456070px;}
._4f{width:333.650096px;}
._5a{width:337.378496px;}
._42{width:339.722585px;}
._56{width:346.431236px;}
._98{width:349.270507px;}
._b9{width:351.374984px;}
._54{width:355.710237px;}
._45{width:356.802907px;}
._83{width:358.385412px;}
._84{width:360.099021px;}
._4a{width:365.510522px;}
._43{width:367.094802px;}
._bc{width:371.113521px;}
._47{width:374.507607px;}
._8a{width:382.209592px;}
._57{width:385.813306px;}
._94{width:390.344081px;}
._75{width:393.697924px;}
._dd{width:394.992000px;}
._c7{width:397.967489px;}
._37{width:399.685955px;}
._44{width:403.397021px;}
._c8{width:405.151228px;}
._51{width:406.365426px;}
._86{width:410.382786px;}
._48{width:413.988495px;}
._92{width:417.194296px;}
._76{width:418.412675px;}
._be{width:419.499190px;}
._bf{width:437.668839px;}
._85{width:439.377150px;}
._8b{width:442.711319px;}
._cc{width:446.192600px;}
._77{width:453.640733px;}
._c3{width:456.196662px;}
._96{width:457.687324px;}
._97{width:460.154641px;}
._c5{width:464.431681px;}
._c4{width:468.578392px;}
._b0{width:470.835577px;}
._8d{width:474.328209px;}
._8e{width:476.786966px;}
._a4{width:478.185914px;}
._c6{width:479.792034px;}
._89{width:482.023253px;}
._78{width:486.063186px;}
._46{width:488.547451px;}
._b1{width:490.353765px;}
._b4{width:491.539510px;}
._9e{width:493.235205px;}
._9c{width:495.905924px;}
._c2{width:498.605294px;}
._a9{width:502.781197px;}
._ae{width:524.784181px;}
._af{width:530.081656px;}
._9b{width:543.545920px;}
._74{width:549.065954px;}
._71{width:551.694281px;}
._73{width:553.008444px;}
._80{width:562.419550px;}
._b5{width:567.591419px;}
._8f{width:570.431708px;}
._c0{width:580.907894px;}
._c1{width:589.730984px;}
._90{width:598.071532px;}
._72{width:600.148758px;}
._79{width:602.522730px;}
._70{width:604.854311px;}
._b6{width:606.380436px;}
._9d{width:608.457662px;}
._7f{width:609.559864px;}
._a3{width:610.831635px;}
._9f{width:616.088288px;}
._a8{width:617.868768px;}
._a0{width:625.075470px;}
._b7{width:635.419208px;}
._a1{width:637.496434px;}
._aa{width:639.870407px;}
._b2{width:641.220088px;}
._b8{width:644.194429px;}
._a2{width:646.271655px;}
._ab{width:648.645627px;}
._b3{width:650.467720px;}
._ad{width:656.318646px;}
.fc2{color:transparent;}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs25{font-size:24.726075px;}
.fs26{font-size:29.802474px;}
.fs21{font-size:33.722609px;}
.fs3{font-size:38.880000px;}
.fs13{font-size:41.854106px;}
.fs15{font-size:41.863535px;}
.fsc{font-size:41.970593px;}
.fs9{font-size:42.057501px;}
.fs1d{font-size:42.385960px;}
.fs19{font-size:42.392368px;}
.fs27{font-size:44.356674px;}
.fsb{font-size:44.408144px;}
.fs11{font-size:44.438521px;}
.fse{font-size:44.439003px;}
.fs10{font-size:44.443381px;}
.fs2a{font-size:48.022554px;}
.fs28{font-size:48.045846px;}
.fs29{font-size:48.077591px;}
.fs7{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:54.144000px;}
.fs22{font-size:58.404386px;}
.fs4{font-size:59.760000px;}
.fs6{font-size:59.904000px;}
.fs24{font-size:61.587381px;}
.fs0{font-size:66.240000px;}
.fs18{font-size:71.427873px;}
.fs2{font-size:72.000000px;}
.fs16{font-size:72.398819px;}
.fs1a{font-size:72.568150px;}
.fsd{font-size:72.585496px;}
.fsa{font-size:72.616218px;}
.fsf{font-size:72.756347px;}
.fs14{font-size:76.150237px;}
.fs17{font-size:76.332669px;}
.fs1e{font-size:76.342978px;}
.fs1b{font-size:76.426709px;}
.fs1f{font-size:76.555310px;}
.fs20{font-size:76.644902px;}
.fs12{font-size:76.813389px;}
.fs1{font-size:84.240000px;}
.fs23{font-size:87.608993px;}
.fs1c{font-size:108.927038px;}
.y1f7{bottom:-0.149642px;}
.y1f0{bottom:-0.149632px;}
.y0{bottom:0.000000px;}
.yad{bottom:4.090256px;}
.y15e{bottom:4.094736px;}
.y11a{bottom:4.101611px;}
.y31d{bottom:4.104857px;}
.y11d{bottom:4.136081px;}
.y120{bottom:4.136091px;}
.y8e{bottom:4.136097px;}
.ya6{bottom:4.136154px;}
.y301{bottom:4.157519px;}
.y2f0{bottom:4.160944px;}
.y9f{bottom:4.221032px;}
.y99{bottom:4.221033px;}
.y86{bottom:4.255846px;}
.y93{bottom:4.255920px;}
.yb6{bottom:4.281007px;}
.yb4{bottom:4.281013px;}
.y10c{bottom:6.436421px;}
.ye4{bottom:7.020000px;}
.y2cd{bottom:7.038950px;}
.y2d2{bottom:7.038955px;}
.y184{bottom:7.050000px;}
.y253{bottom:7.065000px;}
.yf1{bottom:7.200000px;}
.y2a5{bottom:7.230000px;}
.y207{bottom:7.245000px;}
.y15d{bottom:7.670392px;}
.y13e{bottom:7.670453px;}
.y143{bottom:7.785615px;}
.y12e{bottom:7.785659px;}
.y132{bottom:7.785677px;}
.y151{bottom:7.958638px;}
.y241{bottom:8.100000px;}
.yae{bottom:8.730510px;}
.y11b{bottom:8.754738px;}
.y11e{bottom:8.789208px;}
.y8f{bottom:8.789228px;}
.ya8{bottom:8.789264px;}
.ya9{bottom:8.789279px;}
.ya7{bottom:8.789285px;}
.ya5{bottom:8.789289px;}
.y1f2{bottom:8.878573px;}
.y1e9{bottom:8.878583px;}
.ya1{bottom:8.895508px;}
.y9c{bottom:8.895511px;}
.y9a{bottom:8.895523px;}
.yb8{bottom:8.918716px;}
.yba{bottom:8.918718px;}
.ybc{bottom:8.918720px;}
.y87{bottom:8.930329px;}
.y92{bottom:8.930365px;}
.y96{bottom:8.930398px;}
.y94{bottom:8.930410px;}
.y243{bottom:9.000000px;}
.y15c{bottom:11.073000px;}
.y14d{bottom:11.534294px;}
.y137{bottom:11.534355px;}
.y14a{bottom:14.475617px;}
.ya0{bottom:16.987812px;}
.y9b{bottom:16.987818px;}
.y88{bottom:17.022802px;}
.y95{bottom:17.022853px;}
.y84{bottom:17.640000px;}
.y60{bottom:17.715000px;}
.yd9{bottom:17.914320px;}
.yd7{bottom:17.914332px;}
.y75{bottom:18.150000px;}
.y10b{bottom:18.987419px;}
.y31e{bottom:19.064922px;}
.y302{bottom:19.072319px;}
.y2f1{bottom:19.097804px;}
.y112{bottom:19.523077px;}
.y15b{bottom:21.424453px;}
.y13d{bottom:21.424515px;}
.y10d{bottom:23.636269px;}
.y15a{bottom:25.000813px;}
.y1ea{bottom:25.505104px;}
.yd8{bottom:29.120292px;}
.yd6{bottom:29.120303px;}
.y12d{bottom:30.017916px;}
.y131{bottom:30.017934px;}
.y294{bottom:30.774000px;}
.ye6{bottom:30.780000px;}
.y21d{bottom:30.810000px;}
.y17d{bottom:30.825000px;}
.yf0{bottom:30.960000px;}
.y183{bottom:30.990000px;}
.yfa{bottom:31.005000px;}
.y142{bottom:31.113472px;}
.y12c{bottom:31.113516px;}
.yb3{bottom:31.857041px;}
.yb5{bottom:31.857045px;}
.y150{bottom:32.007553px;}
.y1f3{bottom:33.757319px;}
.y14c{bottom:33.766789px;}
.y136{bottom:33.766851px;}
.y31f{bottom:33.994540px;}
.y303{bottom:34.019048px;}
.y2f2{bottom:34.033350px;}
.y159{bottom:35.352266px;}
.y13c{bottom:35.352327px;}
.yb9{bottom:36.495045px;}
.ybb{bottom:36.495047px;}
.yb7{bottom:36.495057px;}
.y2cc{bottom:37.257701px;}
.y149{bottom:38.495453px;}
.y176{bottom:39.240000px;}
.y12b{bottom:41.148834px;}
.y15f{bottom:41.580750px;}
.y13f{bottom:41.580794px;}
.y1eb{bottom:41.967978px;}
.y10f{bottom:42.050625px;}
.y144{bottom:44.897681px;}
.y158{bottom:44.897689px;}
.y135{bottom:44.897749px;}
.y13b{bottom:44.897751px;}
.y320{bottom:48.924158px;}
.y304{bottom:48.964462px;}
.y2f3{bottom:48.970209px;}
.y157{bottom:49.280078px;}
.y13a{bottom:49.280140px;}
.y148{bottom:52.279686px;}
.y12a{bottom:52.279730px;}
.y130{bottom:52.279748px;}
.y2c5{bottom:52.549868px;}
.y156{bottom:52.856438px;}
.y19d{bottom:54.540000px;}
.y19f{bottom:54.570000px;}
.y199{bottom:54.585000px;}
.yef{bottom:54.720000px;}
.yf5{bottom:54.750000px;}
.y14f{bottom:56.027388px;}
.y14b{bottom:56.027398px;}
.y134{bottom:56.027460px;}
.y83{bottom:56.910000px;}
.y5f{bottom:57.030000px;}
.y1f4{bottom:58.432504px;}
.y1ec{bottom:58.432514px;}
.y72{bottom:59.010000px;}
.y141{bottom:59.661687px;}
.y129{bottom:59.661732px;}
.y74{bottom:61.230000px;}
.y10a{bottom:61.431558px;}
.y147{bottom:62.544247px;}
.y155{bottom:63.207890px;}
.y139{bottom:63.207952px;}
.y305{bottom:63.879657px;}
.y321{bottom:63.883960px;}
.y2f4{bottom:63.905755px;}
.y154{bottom:66.784250px;}
.y4e{bottom:69.690000px;}
.y6{bottom:70.056000px;}
.y80{bottom:71.175000px;}
.y82{bottom:73.980000px;}
.y109{bottom:73.983603px;}
.y111{bottom:74.519261px;}
.y140{bottom:74.540294px;}
.y128{bottom:74.540337px;}
.y12f{bottom:74.540355px;}
.y1ed{bottom:74.895388px;}
.y146{bottom:76.299515px;}
.y153{bottom:77.135703px;}
.y138{bottom:77.135764px;}
.y133{bottom:78.289276px;}
.yee{bottom:78.480000px;}
.yf4{bottom:78.510000px;}
.y110{bottom:78.630957px;}
.y322{bottom:78.813578px;}
.y306{bottom:78.826385px;}
.y2f5{bottom:78.842614px;}
.y14e{bottom:80.048430px;}
.y152{bottom:80.710856px;}
.y1f5{bottom:83.106026px;}
.y71{bottom:84.390000px;}
.y175{bottom:85.716000px;}
.y145{bottom:86.565289px;}
.y1ee{bottom:91.358261px;}
.y2c6{bottom:92.434982px;}
.y323{bottom:93.741883px;}
.y307{bottom:93.771800px;}
.y2f6{bottom:93.779473px;}
.y10e{bottom:97.046809px;}
.y2ce{bottom:100.308787px;}
.yf3{bottom:102.270000px;}
.yed{bottom:102.420000px;}
.y6a{bottom:103.140000px;}
.y4f{bottom:103.290000px;}
.y174{bottom:106.056000px;}
.y1f6{bottom:107.821124px;}
.y1ef{bottom:107.821135px;}
.y57{bottom:108.105000px;}
.y324{bottom:108.702998px;}
.y2f7{bottom:108.715019px;}
.y308{bottom:108.718528px;}
.y78{bottom:111.420000px;}
.y5e{bottom:115.455000px;}
.y103{bottom:116.427742px;}
.y5{bottom:116.496000px;}
.y1f8{bottom:120.322526px;}
.y1f1{bottom:120.322536px;}
.y325{bottom:123.631304px;}
.y309{bottom:123.632409px;}
.y2f8{bottom:123.651878px;}
.yec{bottom:126.180000px;}
.y20f{bottom:127.296000px;}
.y102{bottom:128.978291px;}
.y108{bottom:129.515445px;}
.y2c7{bottom:132.166631px;}
.y107{bottom:133.627142px;}
.y291{bottom:133.956000px;}
.y6b{bottom:134.745000px;}
.y274{bottom:135.396000px;}
.y293{bottom:135.936000px;}
.y4{bottom:136.836000px;}
.y50{bottom:136.905000px;}
.y326{bottom:138.560921px;}
.y30a{bottom:138.575196px;}
.y2f9{bottom:138.614998px;}
.y259{bottom:141.336000px;}
.y195{bottom:142.236000px;}
.y73{bottom:143.070000px;}
.y79{bottom:143.670000px;}
.y2b7{bottom:143.676000px;}
.y1e7{bottom:144.221033px;}
.y1e0{bottom:144.221043px;}
.y1d9{bottom:144.221053px;}
.y1d0{bottom:144.221064px;}
.y23f{bottom:144.396000px;}
.y58{bottom:146.490000px;}
.y2cf{bottom:148.070182px;}
.y2ec{bottom:149.256000px;}
.yeb{bottom:149.940000px;}
.y20e{bottom:151.050000px;}
.y105{bottom:152.048978px;}
.y1e2{bottom:153.248256px;}
.y1db{bottom:153.248267px;}
.y1d2{bottom:153.248277px;}
.y1c9{bottom:153.248288px;}
.y327{bottom:153.522036px;}
.y30b{bottom:153.527179px;}
.y2fa{bottom:153.557109px;}
.y290{bottom:157.710000px;}
.yfe{bottom:158.970000px;}
.y5d{bottom:159.015000px;}
.y1aa{bottom:159.330000px;}
.y4c{bottom:163.110000px;}
.y258{bottom:165.810000px;}
.y194{bottom:165.990000px;}
.y6c{bottom:166.395000px;}
.ye2{bottom:166.530000px;}
.y2b6{bottom:167.430000px;}
.y2e{bottom:167.970000px;}
.y23e{bottom:168.330000px;}
.y328{bottom:168.456903px;}
.y30c{bottom:168.466024px;}
.y2fb{bottom:168.486090px;}
.y101{bottom:169.240897px;}
.y1d3{bottom:169.717803px;}
.y1ca{bottom:169.717814px;}
.y51{bottom:170.490000px;}
.yd3{bottom:170.670000px;}
.y68{bottom:171.930000px;}
.y2c8{bottom:171.931695px;}
.y2eb{bottom:173.010000px;}
.yea{bottom:173.700000px;}
.y104{bottom:173.894236px;}
.y81{bottom:173.955000px;}
.y8d{bottom:174.134980px;}
.y20d{bottom:174.810000px;}
.y7a{bottom:175.935000px;}
.yfd{bottom:176.610000px;}
.y126{bottom:177.330000px;}
.y1e3{bottom:177.916789px;}
.y1dc{bottom:177.916799px;}
.y28f{bottom:181.650000px;}
.y90{bottom:183.090000px;}
.y76{bottom:183.990000px;}
.y292{bottom:184.170000px;}
.y77{bottom:184.320000px;}
.y59{bottom:184.890000px;}
.y1d4{bottom:186.182340px;}
.y1cb{bottom:186.182350px;}
.y4b{bottom:186.870000px;}
.y170{bottom:187.050000px;}
.y193{bottom:189.750000px;}
.ye1{bottom:190.290000px;}
.y257{bottom:190.470000px;}
.y2b5{bottom:191.370000px;}
.y2d{bottom:191.910000px;}
.y23d{bottom:192.090000px;}
.yd2{bottom:194.430000px;}
.y67{bottom:195.690000px;}
.y2d0{bottom:195.793211px;}
.y100{bottom:196.921531px;}
.y2ea{bottom:196.950000px;}
.ye9{bottom:197.685000px;}
.y6d{bottom:198.000000px;}
.y30d{bottom:198.330575px;}
.y329{bottom:198.339762px;}
.y2fc{bottom:198.370312px;}
.y20c{bottom:198.570000px;}
.y125{bottom:201.270000px;}
.y106{bottom:201.559908px;}
.y1e4{bottom:202.646856px;}
.y1dd{bottom:202.646866px;}
.y1d5{bottom:202.646876px;}
.y1cc{bottom:202.646887px;}
.y52{bottom:204.090000px;}
.y28e{bottom:205.410000px;}
.y1a9{bottom:206.850000px;}
.y8c{bottom:207.930000px;}
.y7b{bottom:208.230000px;}
.y4a{bottom:210.630000px;}
.y16f{bottom:210.810000px;}
.y2c9{bottom:211.820523px;}
.y32a{bottom:213.274629px;}
.y30e{bottom:213.282559px;}
.y2fd{bottom:213.299293px;}
.y192{bottom:213.690000px;}
.ye0{bottom:214.050000px;}
.y256{bottom:214.950000px;}
.y2b4{bottom:215.130000px;}
.y2c{bottom:215.670000px;}
.y23c{bottom:215.850000px;}
.yd1{bottom:218.370000px;}
.y1d6{bottom:219.094782px;}
.y1cd{bottom:219.094793px;}
.y66{bottom:219.450000px;}
.y2e9{bottom:220.710000px;}
.ye8{bottom:221.445000px;}
.y20b{bottom:222.510000px;}
.y5a{bottom:223.305000px;}
.yfc{bottom:224.850000px;}
.y124{bottom:225.030000px;}
.y1e5{bottom:227.310399px;}
.y1de{bottom:227.310409px;}
.y30f{bottom:228.195126px;}
.y2fe{bottom:228.241404px;}
.y28d{bottom:229.170000px;}
.y6e{bottom:229.650000px;}
.y1a8{bottom:230.610000px;}
.y8b{bottom:231.870000px;}
.y49{bottom:234.570000px;}
.y1d7{bottom:235.559319px;}
.y1ce{bottom:235.559329px;}
.y191{bottom:237.450000px;}
.y53{bottom:237.705000px;}
.ydf{bottom:237.990000px;}
.y2b3{bottom:238.890000px;}
.y2b{bottom:239.430000px;}
.y23b{bottom:239.610000px;}
.y20a{bottom:239.970000px;}
.y7c{bottom:240.480000px;}
.yd0{bottom:242.130000px;}
.y310{bottom:243.133971px;}
.y2ff{bottom:243.170385px;}
.y65{bottom:243.390000px;}
.y2d1{bottom:243.553368px;}
.y2e8{bottom:244.470000px;}
.y123{bottom:248.790000px;}
.y2ca{bottom:251.548459px;}
.y1e6{bottom:252.023834px;}
.y1df{bottom:252.023844px;}
.y1d8{bottom:252.023855px;}
.y1cf{bottom:252.023866px;}
.y28c{bottom:252.930000px;}
.y1a7{bottom:254.550000px;}
.y8a{bottom:255.630000px;}
.y311{bottom:258.085955px;}
.y48{bottom:258.330000px;}
.y190{bottom:261.210000px;}
.y6f{bottom:261.255000px;}
.y5b{bottom:261.690000px;}
.yde{bottom:261.750000px;}
.y2b2{bottom:262.650000px;}
.y2a{bottom:263.190000px;}
.y23a{bottom:263.550000px;}
.y209{bottom:263.730000px;}
.y255{bottom:264.090000px;}
.y1e8{bottom:264.530225px;}
.y1e1{bottom:264.530236px;}
.y1da{bottom:264.530246px;}
.y1d1{bottom:264.530256px;}
.ycf{bottom:265.890000px;}
.y64{bottom:267.150000px;}
.y2e7{bottom:268.230000px;}
.y54{bottom:271.290000px;}
.y122{bottom:272.550000px;}
.y7d{bottom:272.730000px;}
.y312{bottom:273.037939px;}
.yfb{bottom:273.270000px;}
.y85{bottom:275.460000px;}
.y28b{bottom:276.870000px;}
.y1a6{bottom:278.310000px;}
.y47{bottom:282.090000px;}
.y16e{bottom:282.270000px;}
.y89{bottom:284.430000px;}
.y18f{bottom:284.970000px;}
.ydd{bottom:285.510000px;}
.y2b1{bottom:286.590000px;}
.y29{bottom:287.130000px;}
.y239{bottom:287.310000px;}
.y208{bottom:287.490000px;}
.y313{bottom:287.950506px;}
.y1c7{bottom:288.428753px;}
.y1be{bottom:288.428763px;}
.y1b9{bottom:288.428773px;}
.y1b1{bottom:288.428784px;}
.y254{bottom:288.570000px;}
.yce{bottom:289.650000px;}
.y63{bottom:290.910000px;}
.y2cb{bottom:291.313525px;}
.y2e6{bottom:292.170000px;}
.y70{bottom:292.860000px;}
.y121{bottom:296.490000px;}
.y1c0{bottom:297.459303px;}
.y1bb{bottom:297.459313px;}
.y1b3{bottom:297.459324px;}
.y1ac{bottom:297.459334px;}
.yf9{bottom:297.750000px;}
.y5c{bottom:300.090000px;}
.y28a{bottom:300.630000px;}
.y1a5{bottom:302.070000px;}
.y314{bottom:302.889351px;}
.y55{bottom:304.890000px;}
.y7e{bottom:304.995000px;}
.y46{bottom:305.850000px;}
.y16d{bottom:306.030000px;}
.y18e{bottom:308.910000px;}
.ydc{bottom:309.270000px;}
.y2b0{bottom:310.350000px;}
.y28{bottom:310.890000px;}
.y238{bottom:311.070000px;}
.y206{bottom:311.250000px;}
.y252{bottom:313.230000px;}
.ycd{bottom:313.410000px;}
.y1c1{bottom:313.923839px;}
.y62{bottom:314.670000px;}
.y2e5{bottom:315.930000px;}
.y11f{bottom:316.334980px;}
.y119{bottom:316.335000px;}
.y1b4{bottom:317.233398px;}
.y315{bottom:317.841335px;}
.y2ee{bottom:321.915000px;}
.y1ad{bottom:322.122878px;}
.y289{bottom:324.435000px;}
.y11c{bottom:325.335000px;}
.y1a4{bottom:325.875000px;}
.y45{bottom:329.835000px;}
.y1c2{bottom:330.338483px;}
.y18d{bottom:332.715000px;}
.y316{bottom:332.780180px;}
.ydb{bottom:333.255000px;}
.y2af{bottom:334.155000px;}
.y61{bottom:334.515000px;}
.y27{bottom:334.695000px;}
.y69{bottom:334.800000px;}
.y237{bottom:334.875000px;}
.y205{bottom:335.235000px;}
.y1b5{bottom:337.007473px;}
.y7f{bottom:337.245000px;}
.ycc{bottom:337.395000px;}
.y251{bottom:337.755000px;}
.y56{bottom:338.505000px;}
.y2e4{bottom:339.735000px;}
.y2ed{bottom:341.715000px;}
.y300{bottom:341.880000px;}
.yf8{bottom:346.215000px;}
.y1c3{bottom:346.803020px;}
.y1bc{bottom:346.803030px;}
.y1ae{bottom:346.803052px;}
.y317{bottom:347.705886px;}
.y288{bottom:348.195000px;}
.y1a3{bottom:349.815000px;}
.y118{bottom:350.175000px;}
.y44{bottom:353.595000px;}
.y18c{bottom:356.475000px;}
.y1b6{bottom:356.814809px;}
.yda{bottom:357.015000px;}
.y2ae{bottom:357.915000px;}
.y26{bottom:358.455000px;}
.y236{bottom:358.815000px;}
.y204{bottom:358.995000px;}
.ycb{bottom:361.155000px;}
.y318{bottom:362.644731px;}
.y1c4{bottom:363.267557px;}
.y2e3{bottom:363.495000px;}
.y250{bottom:369.435000px;}
.y1af{bottom:371.516487px;}
.y287{bottom:371.955000px;}
.y1a2{bottom:373.575000px;}
.y117{bottom:373.935000px;}
.y1b7{bottom:376.588884px;}
.yd5{bottom:376.859959px;}
.y43{bottom:377.355000px;}
.y16c{bottom:377.535000px;}
.y1c5{bottom:379.732093px;}
.y18b{bottom:380.235000px;}
.y2ad{bottom:381.855000px;}
.y25{bottom:382.395000px;}
.y235{bottom:382.575000px;}
.y203{bottom:382.755000px;}
.yca{bottom:384.915000px;}
.y2e2{bottom:387.255000px;}
.y1a1{bottom:391.035000px;}
.y319{bottom:392.509282px;}
.y24f{bottom:393.195000px;}
.yf7{bottom:394.635000px;}
.yd4{bottom:394.815000px;}
.y286{bottom:395.895000px;}
.y1c6{bottom:396.196630px;}
.y1bd{bottom:396.196640px;}
.y1b8{bottom:396.196650px;}
.y1b0{bottom:396.196661px;}
.y273{bottom:397.335000px;}
.y21f{bottom:397.695000px;}
.y116{bottom:397.875000px;}
.y42{bottom:401.115000px;}
.y16b{bottom:401.295000px;}
.y18a{bottom:404.175000px;}
.y2ac{bottom:405.615000px;}
.y24{bottom:406.155000px;}
.y234{bottom:406.335000px;}
.y202{bottom:406.515000px;}
.yc9{bottom:408.675000px;}
.y1c8{bottom:408.852698px;}
.y1bf{bottom:408.852709px;}
.y1ba{bottom:408.852719px;}
.y1b2{bottom:408.852729px;}
.y2e1{bottom:411.195000px;}
.y24e{bottom:416.955000px;}
.y285{bottom:419.655000px;}
.y272{bottom:421.095000px;}
.y115{bottom:421.635000px;}
.y41{bottom:425.055000px;}
.y2c3{bottom:425.595000px;}
.y189{bottom:427.935000px;}
.y2ab{bottom:429.375000px;}
.y23{bottom:429.915000px;}
.y233{bottom:430.095000px;}
.y201{bottom:430.455000px;}
.yc8{bottom:432.615000px;}
.y2e0{bottom:434.955000px;}
.y24d{bottom:440.895000px;}
.yf6{bottom:442.875000px;}
.y284{bottom:443.415000px;}
.y40{bottom:444.855000px;}
.y4d{bottom:444.960000px;}
.y271{bottom:445.035000px;}
.y114{bottom:445.395000px;}
.y16a{bottom:448.815000px;}
.y2c2{bottom:449.535000px;}
.y188{bottom:451.695000px;}
.y2aa{bottom:453.135000px;}
.y22{bottom:453.675000px;}
.y232{bottom:454.035000px;}
.y200{bottom:454.215000px;}
.yc7{bottom:456.375000px;}
.y2df{bottom:458.715000px;}
.y1a0{bottom:463.215000px;}
.y24c{bottom:464.655000px;}
.yff{bottom:465.210000px;}
.y283{bottom:467.175000px;}
.y270{bottom:468.795000px;}
.y169{bottom:472.755000px;}
.y2c1{bottom:473.295000px;}
.y187{bottom:475.455000px;}
.y2a9{bottom:477.075000px;}
.y21{bottom:477.615000px;}
.y231{bottom:477.795000px;}
.y1ff{bottom:478.695000px;}
.yc6{bottom:480.135000px;}
.y2de{bottom:482.475000px;}
.y24b{bottom:488.415000px;}
.y282{bottom:491.115000px;}
.y26f{bottom:492.555000px;}
.y21e{bottom:492.915000px;}
.y168{bottom:496.515000px;}
.y2c0{bottom:497.055000px;}
.y186{bottom:499.215000px;}
.y2a8{bottom:500.835000px;}
.y20{bottom:501.375000px;}
.y230{bottom:501.555000px;}
.y1fe{bottom:503.355000px;}
.yc5{bottom:503.895000px;}
.y2dd{bottom:506.415000px;}
.y24a{bottom:512.175000px;}
.y281{bottom:514.875000px;}
.yf2{bottom:515.055000px;}
.y26e{bottom:516.315000px;}
.y185{bottom:516.855000px;}
.y167{bottom:520.275000px;}
.y2bf{bottom:520.815000px;}
.y2a7{bottom:524.595000px;}
.y1f{bottom:525.135000px;}
.y22f{bottom:525.315000px;}
.yc4{bottom:527.835000px;}
.y249{bottom:529.635000px;}
.y2dc{bottom:530.175000px;}
.y1fd{bottom:534.855000px;}
.y19e{bottom:535.395000px;}
.y280{bottom:538.635000px;}
.y26d{bottom:540.075000px;}
.y21c{bottom:540.615000px;}
.y166{bottom:544.035000px;}
.y2be{bottom:544.575000px;}
.y2a6{bottom:548.355000px;}
.y1e{bottom:548.895000px;}
.y22e{bottom:549.075000px;}
.yc3{bottom:551.595000px;}
.y2db{bottom:553.935000px;}
.y248{bottom:554.475000px;}
.y27f{bottom:556.095000px;}
.y1fc{bottom:558.795000px;}
.y26c{bottom:564.015000px;}
.y182{bottom:564.375000px;}
.y2a4{bottom:565.815000px;}
.y165{bottom:567.795000px;}
.y2bd{bottom:568.545000px;}
.y1d{bottom:571.425000px;}
.y3f{bottom:572.685000px;}
.y22d{bottom:573.045000px;}
.yc2{bottom:575.385000px;}
.y2da{bottom:577.725000px;}
.y247{bottom:580.245000px;}
.y27e{bottom:580.785000px;}
.y1fb{bottom:582.585000px;}
.y26b{bottom:587.805000px;}
.y21b{bottom:588.165000px;}
.y2a3{bottom:589.785000px;}
.y1c{bottom:591.405000px;}
.y164{bottom:591.765000px;}
.y2bc{bottom:592.305000px;}
.y3e{bottom:596.625000px;}
.y22c{bottom:596.805000px;}
.y113{bottom:598.785000px;}
.yc1{bottom:599.145000px;}
.y2d9{bottom:601.665000px;}
.y246{bottom:605.085000px;}
.y27d{bottom:605.265000px;}
.y1fa{bottom:606.345000px;}
.y19c{bottom:607.605000px;}
.y2bb{bottom:609.765000px;}
.y26a{bottom:611.565000px;}
.y181{bottom:612.105000px;}
.y2a2{bottom:613.545000px;}
.y163{bottom:615.525000px;}
.y1b{bottom:616.425000px;}
.y3d{bottom:620.385000px;}
.y22b{bottom:620.565000px;}
.yc0{bottom:623.085000px;}
.y2d8{bottom:625.425000px;}
.y1f9{bottom:626.145000px;}
.y1ab{bottom:626.159959px;}
.y27c{bottom:629.925000px;}
.y245{bottom:630.825000px;}
.y2ba{bottom:634.425000px;}
.ye7{bottom:634.785000px;}
.y269{bottom:635.325000px;}
.y21a{bottom:635.865000px;}
.y1a{bottom:636.225000px;}
.y2a1{bottom:637.305000px;}
.y162{bottom:639.285000px;}
.y3c{bottom:644.145000px;}
.y22a{bottom:644.325000px;}
.ybf{bottom:646.845000px;}
.y2d7{bottom:649.185000px;}
.y27b{bottom:654.405000px;}
.y244{bottom:655.665000px;}
.y19{bottom:656.025000px;}
.y2b9{bottom:658.905000px;}
.y268{bottom:659.265000px;}
.y180{bottom:659.625000px;}
.y2a0{bottom:661.065000px;}
.y161{bottom:663.045000px;}
.y3b{bottom:667.905000px;}
.y229{bottom:668.265000px;}
.ybe{bottom:670.605000px;}
.y2d6{bottom:672.945000px;}
.y18{bottom:675.825000px;}
.y27a{bottom:678.885000px;}
.y19b{bottom:679.605000px;}
.y242{bottom:680.505000px;}
.y127{bottom:682.859919px;}
.y267{bottom:683.025000px;}
.y219{bottom:683.385000px;}
.y29f{bottom:685.005000px;}
.yb2{bottom:690.359919px;}
.y17{bottom:690.585000px;}
.y3a{bottom:691.845000px;}
.y228{bottom:692.025000px;}
.y2d5{bottom:696.885000px;}
.y279{bottom:703.545000px;}
.y266{bottom:706.785000px;}
.y240{bottom:706.965000px;}
.y17f{bottom:707.325000px;}
.y2b8{bottom:708.045000px;}
.y29e{bottom:708.765000px;}
.ybd{bottom:712.905000px;}
.y16{bottom:715.605000px;}
.y227{bottom:715.785000px;}
.y2d4{bottom:720.645000px;}
.y19a{bottom:728.025000px;}
.y265{bottom:730.545000px;}
.y218{bottom:731.085000px;}
.y29d{bottom:732.525000px;}
.y15{bottom:735.405000px;}
.y160{bottom:738.285000px;}
.y39{bottom:739.365000px;}
.y226{bottom:739.545000px;}
.y2d3{bottom:740.445000px;}
.y2c4{bottom:740.459919px;}
.y264{bottom:748.185000px;}
.y2ef{bottom:749.385000px;}
.yb1{bottom:751.785000px;}
.y278{bottom:752.685000px;}
.y17e{bottom:754.845000px;}
.y14{bottom:755.205000px;}
.y29c{bottom:756.285000px;}
.y38{bottom:763.125000px;}
.y225{bottom:763.485000px;}
.y13{bottom:775.005000px;}
.yb0{bottom:775.545000px;}
.y198{bottom:776.445000px;}
.y277{bottom:777.165000px;}
.y217{bottom:778.605000px;}
.y29b{bottom:780.225000px;}
.y37{bottom:787.065000px;}
.y224{bottom:787.245000px;}
.y12{bottom:789.765000px;}
.y263{bottom:796.425000px;}
.y31b{bottom:797.145000px;}
.yaf{bottom:799.305000px;}
.y276{bottom:801.645000px;}
.y17c{bottom:802.545000px;}
.y29a{bottom:803.985000px;}
.y36{bottom:810.825000px;}
.y223{bottom:811.005000px;}
.y11{bottom:814.785000px;}
.y31a{bottom:816.945000px;}
.y31c{bottom:818.040000px;}
.yac{bottom:819.284919px;}
.y262{bottom:821.130000px;}
.y216{bottom:826.350000px;}
.y299{bottom:827.790000px;}
.yab{bottom:828.330000px;}
.y10{bottom:834.630000px;}
.y222{bottom:834.810000px;}
.y261{bottom:845.610000px;}
.y197{bottom:848.670000px;}
.ya4{bottom:849.134919px;}
.yf{bottom:849.210000px;}
.y17b{bottom:850.110000px;}
.y275{bottom:850.830000px;}
.y298{bottom:851.550000px;}
.yaa{bottom:858.210000px;}
.y35{bottom:858.390000px;}
.y221{bottom:858.750000px;}
.y260{bottom:870.090000px;}
.ye5{bottom:873.690000px;}
.ye{bottom:874.230000px;}
.y215{bottom:874.590000px;}
.y297{bottom:875.490000px;}
.y34{bottom:882.330000px;}
.y220{bottom:882.510000px;}
.ya3{bottom:883.050000px;}
.yd{bottom:888.990000px;}
.y25f{bottom:894.750000px;}
.y196{bottom:896.910000px;}
.y17a{bottom:897.630000px;}
.y296{bottom:899.250000px;}
.y9e{bottom:902.759919px;}
.y33{bottom:906.090000px;}
.y214{bottom:906.270000px;}
.ya2{bottom:911.850000px;}
.yc{bottom:914.010000px;}
.y25e{bottom:919.230000px;}
.ye3{bottom:922.110000px;}
.y32{bottom:929.850000px;}
.y213{bottom:930.030000px;}
.yb{bottom:933.810000px;}
.y98{bottom:934.259919px;}
.y9d{bottom:943.350000px;}
.y25d{bottom:943.890000px;}
.y179{bottom:945.330000px;}
.y295{bottom:946.770000px;}
.ya{bottom:953.610000px;}
.y212{bottom:953.970000px;}
.y91{bottom:965.759919px;}
.y25c{bottom:968.370000px;}
.y9{bottom:969.450000px;}
.y97{bottom:974.850000px;}
.y31{bottom:977.550000px;}
.y211{bottom:977.730000px;}
.y25b{bottom:992.850000px;}
.y178{bottom:993.750000px;}
.y8{bottom:994.470000px;}
.y30{bottom:1001.310000px;}
.y210{bottom:1001.490000px;}
.y25a{bottom:1017.510000px;}
.y7{bottom:1022.190000px;}
.y2f{bottom:1025.070000px;}
.y177{bottom:1025.250000px;}
.y3{bottom:1062.510000px;}
.y173{bottom:1062.690000px;}
.y2{bottom:1096.920000px;}
.y172{bottom:1097.100000px;}
.y1{bottom:1119.060000px;}
.y171{bottom:1119.240000px;}
.h35{height:23.760000px;}
.h5f{height:23.796000px;}
.h5a{height:23.940000px;}
.h5b{height:23.976000px;}
.h5c{height:24.840000px;}
.h5d{height:25.740000px;}
.h5e{height:25.776000px;}
.h58{height:25.788524px;}
.h28{height:26.775905px;}
.h45{height:26.850345px;}
.h1a{height:26.850366px;}
.h24{height:26.850427px;}
.h15{height:28.500274px;}
.h1d{height:28.500356px;}
.h59{height:31.083049px;}
.h4f{height:31.236225px;}
.h4d{height:33.080430px;}
.h4c{height:33.096896px;}
.h7{height:38.158594px;}
.h42{height:39.266759px;}
.h5{height:39.346875px;}
.h29{height:41.057080px;}
.h2d{height:41.066329px;}
.h2c{height:41.086770px;}
.h18{height:41.133911px;}
.h23{height:41.162048px;}
.h1f{height:41.162494px;}
.h21{height:41.166549px;}
.h1b{height:41.171348px;}
.h49{height:41.191842px;}
.h16{height:41.256601px;}
.h3f{height:41.585092px;}
.h46{height:41.599502px;}
.h3d{height:41.605791px;}
.h68{height:41.808698px;}
.h64{height:41.828977px;}
.h66{height:41.856614px;}
.h31{height:46.051293px;}
.h61{height:46.262624px;}
.h36{height:47.520000px;}
.h54{height:47.556000px;}
.h3b{height:47.700000px;}
.h3a{height:47.736000px;}
.hd{height:53.709961px;}
.h14{height:53.853187px;}
.h50{height:54.098204px;}
.h2b{height:54.224558px;}
.h1{height:55.825312px;}
.h53{height:57.046514px;}
.h4e{height:57.292193px;}
.h52{height:57.320711px;}
.h8{height:58.651172px;}
.h9{height:59.038594px;}
.he{height:59.439023px;}
.h10{height:59.582250px;}
.hb{height:60.046875px;}
.h6{height:60.226875px;}
.h11{height:61.189805px;}
.h2{height:65.884219px;}
.h34{height:66.161462px;}
.h30{height:67.060820px;}
.h43{height:67.217667px;}
.h27{height:67.233733px;}
.h19{height:67.262190px;}
.h22{height:67.391987px;}
.h33{height:70.067674px;}
.h32{height:70.102551px;}
.h2a{height:70.535644px;}
.h62{height:70.628906px;}
.h4{height:70.664062px;}
.h2f{height:70.704625px;}
.h47{height:70.714175px;}
.h41{height:70.791732px;}
.h48{height:70.910851px;}
.h4a{height:70.993837px;}
.h2e{height:71.020130px;}
.h26{height:71.149901px;}
.h40{height:71.186237px;}
.h1c{height:71.203252px;}
.h3e{height:71.221671px;}
.h17{height:71.233389px;}
.h25{height:71.238695px;}
.h1e{height:71.268846px;}
.h56{height:71.280000px;}
.h55{height:71.316000px;}
.h20{height:71.370850px;}
.h39{height:71.460000px;}
.ha{height:72.562500px;}
.h12{height:74.704922px;}
.h51{height:81.149541px;}
.h3{height:84.898125px;}
.h4b{height:96.974723px;}
.h44{height:100.895796px;}
.h38{height:119.016000px;}
.h3c{height:219.440102px;}
.h67{height:223.980000px;}
.h37{height:238.170000px;}
.h63{height:268.875000px;}
.h60{height:301.499224px;}
.hf{height:326.160000px;}
.h13{height:357.660000px;}
.hc{height:358.920000px;}
.h65{height:403.275000px;}
.h57{height:415.804427px;}
.h0{height:1188.000000px;}
.wb{width:20.173694px;}
.w12{width:20.174744px;}
.w13{width:22.499810px;}
.w14{width:26.775103px;}
.w29{width:45.360000px;}
.w42{width:50.940000px;}
.w17{width:60.480000px;}
.w18{width:60.516000px;}
.w19{width:60.696000px;}
.w1b{width:60.840000px;}
.w1c{width:60.876000px;}
.w1d{width:61.020000px;}
.w22{width:62.280000px;}
.w21{width:62.316000px;}
.w3e{width:65.700000px;}
.w1a{width:70.560000px;}
.w16{width:83.520000px;}
.w27{width:84.960000px;}
.w6{width:86.774532px;}
.w1f{width:91.260000px;}
.w2f{width:93.420000px;}
.w33{width:98.460000px;}
.w36{width:101.520000px;}
.w3f{width:111.636000px;}
.w2c{width:112.356000px;}
.w5{width:113.778896px;}
.w3b{width:114.300000px;}
.w25{width:118.080000px;}
.w23{width:118.116000px;}
.w24{width:118.260000px;}
.w26{width:118.296000px;}
.w2b{width:119.520000px;}
.w9{width:121.349381px;}
.w35{width:123.120000px;}
.w3d{width:129.456000px;}
.w39{width:129.636000px;}
.w2e{width:133.776000px;}
.w2d{width:138.780000px;}
.w38{width:140.580000px;}
.w3a{width:142.416000px;}
.w8{width:143.996453px;}
.w7{width:157.493736px;}
.w32{width:161.100000px;}
.w34{width:165.090000px;}
.we{width:172.080000px;}
.w28{width:205.770000px;}
.w41{width:207.750000px;}
.wd{width:211.718348px;}
.w31{width:211.890000px;}
.w30{width:212.070000px;}
.w10{width:222.510000px;}
.w20{width:236.370000px;}
.w2a{width:246.135000px;}
.wf{width:291.135000px;}
.w3c{width:313.050000px;}
.wa{width:313.738753px;}
.w44{width:335.545621px;}
.w45{width:350.854544px;}
.w43{width:392.115000px;}
.w40{width:443.775000px;}
.wc{width:621.883834px;}
.w37{width:652.245000px;}
.w11{width:663.809346px;}
.w46{width:676.950000px;}
.w3{width:688.500000px;}
.w4{width:689.580000px;}
.w2{width:693.000000px;}
.w1e{width:700.565854px;}
.w15{width:701.844449px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x32{left:2.174279px;}
.x37{left:3.282620px;}
.x52{left:5.484556px;}
.x4b{left:7.740000px;}
.x51{left:9.366578px;}
.x42{left:13.173024px;}
.x31{left:14.222295px;}
.x4f{left:15.492795px;}
.x36{left:17.233357px;}
.x3d{left:18.743425px;}
.x5c{left:19.944102px;}
.x55{left:21.225646px;}
.x34{left:23.739447px;}
.xb2{left:24.840000px;}
.x58{left:26.070023px;}
.xb3{left:27.720000px;}
.x96{left:29.792900px;}
.x3c{left:30.830009px;}
.x21{left:33.012000px;}
.x4e{left:34.687835px;}
.x6d{left:36.560411px;}
.xb5{left:37.800000px;}
.x3f{left:40.327571px;}
.x1c{left:41.580000px;}
.x5b{left:43.200344px;}
.xa9{left:44.280000px;}
.x1f{left:45.720000px;}
.xb0{left:46.980000px;}
.x1d{left:48.420000px;}
.x6b{left:51.104136px;}
.x1e{left:52.560000px;}
.xbf{left:53.999986px;}
.x53{left:56.911720px;}
.x33{left:57.958323px;}
.x6a{left:63.145166px;}
.x29{left:64.800000px;}
.x56{left:68.307708px;}
.x45{left:70.132518px;}
.x28{left:74.370000px;}
.x70{left:77.484174px;}
.x47{left:79.652308px;}
.x27{left:81.975000px;}
.x97{left:83.531701px;}
.x26{left:89.565000px;}
.x46{left:93.988855px;}
.x3e{left:96.878455px;}
.x66{left:99.211334px;}
.x54{left:103.459802px;}
.x44{left:104.551603px;}
.x1{left:108.035986px;}
.x5d{left:109.228261px;}
.x5{left:114.515986px;}
.x8{left:115.955986px;}
.x7{left:121.175986px;}
.x9{left:122.435986px;}
.xae{left:123.696000px;}
.xe{left:125.675986px;}
.x57{left:127.178830px;}
.x13{left:129.095986px;}
.x1a{left:130.535986px;}
.x60{left:132.764990px;}
.x6c{left:135.128501px;}
.xb{left:138.455986px;}
.x14{left:139.535986px;}
.x67{left:142.348276px;}
.x12{left:144.395986px;}
.xbe{left:148.535986px;}
.x61{left:155.189986px;}
.xbd{left:157.709986px;}
.x15{left:162.389986px;}
.x16{left:169.049986px;}
.x10{left:173.369986px;}
.xba{left:175.350000px;}
.x8d{left:180.030000px;}
.x9e{left:183.621535px;}
.xa3{left:184.708817px;}
.x4{left:187.589986px;}
.x62{left:188.940000px;}
.xa2{left:190.874839px;}
.x68{left:192.135646px;}
.x38{left:194.789986px;}
.x11{left:199.469986px;}
.x6f{left:202.492870px;}
.x65{left:206.684216px;}
.x69{left:211.687185px;}
.x6e{left:214.533901px;}
.x63{left:215.669986px;}
.x64{left:218.725246px;}
.x35{left:221.789986px;}
.xd{left:223.409986px;}
.x23{left:227.490000px;}
.x3b{left:229.349986px;}
.x59{left:234.090214px;}
.x18{left:237.809986px;}
.x8e{left:241.770000px;}
.x3a{left:252.029986px;}
.x2b{left:257.295000px;}
.x98{left:260.389204px;}
.x9f{left:263.136020px;}
.x39{left:265.529986px;}
.x4c{left:281.550000px;}
.xaf{left:285.555000px;}
.xac{left:292.215000px;}
.x8f{left:303.375000px;}
.x30{left:311.910000px;}
.xa7{left:317.415000px;}
.xad{left:320.115000px;}
.x22{left:324.900000px;}
.xa{left:333.074986px;}
.xf{left:345.314986px;}
.x24{left:348.554986px;}
.x2a{left:364.710000px;}
.xa0{left:367.300288px;}
.x99{left:368.387564px;}
.x86{left:373.035000px;}
.x17{left:381.134986px;}
.x9a{left:384.911356px;}
.xc{left:389.594986px;}
.xb4{left:395.355000px;}
.x50{left:400.587644px;}
.x6{left:414.434986px;}
.x40{left:421.814986px;}
.x90{left:426.675000px;}
.x5a{left:428.161697px;}
.xb6{left:429.195000px;}
.xaa{left:430.995000px;}
.x87{left:433.335000px;}
.xa5{left:435.675000px;}
.x9b{left:440.977794px;}
.xbb{left:444.689959px;}
.x2{left:452.234986px;}
.x49{left:468.614959px;}
.x91{left:488.445000px;}
.x88{left:494.025000px;}
.xa6{left:497.985000px;}
.x84{left:514.845021px;}
.x78{left:516.444033px;}
.x7f{left:519.436120px;}
.x71{left:520.574806px;}
.x72{left:524.439085px;}
.x41{left:526.964959px;}
.x82{left:532.591610px;}
.x7a{left:538.345627px;}
.x7b{left:539.484319px;}
.x9c{left:542.667070px;}
.xa1{left:545.814462px;}
.x43{left:547.124986px;}
.x92{left:550.005000px;}
.x89{left:554.505000px;}
.x5e{left:555.693543px;}
.xb7{left:558.645000px;}
.x9d{left:562.323944px;}
.xb9{left:568.185000px;}
.x4d{left:573.405000px;}
.x77{left:581.252407px;}
.x7e{left:584.510997px;}
.x79{left:586.255376px;}
.x7d{left:587.672674px;}
.x80{left:589.513966px;}
.x2d{left:592.275000px;}
.x73{left:594.625954px;}
.x83{left:609.404683px;}
.x93{left:611.565000px;}
.x8a{left:614.985000px;}
.xa8{left:616.065000px;}
.x1b{left:617.370000px;}
.x81{left:620.307023px;}
.xb8{left:624.345000px;}
.x7c{left:626.739406px;}
.x76{left:635.255348px;}
.x75{left:636.866471px;}
.x2e{left:648.615000px;}
.x2f{left:666.975000px;}
.x20{left:670.320000px;}
.x94{left:673.305000px;}
.xb1{left:674.430000px;}
.x8b{left:675.690000px;}
.xab{left:677.130000px;}
.x4a{left:680.369986px;}
.x74{left:682.353476px;}
.x48{left:730.049986px;}
.x95{left:734.910000px;}
.x8c{left:736.170000px;}
.x3{left:769.289986px;}
.x5f{left:771.989986px;}
.xc0{left:785.309986px;}
.xbc{left:795.569986px;}
.x25{left:796.649986px;}
.x2c{left:797.729986px;}
.x19{left:801.149986px;}
.xa4{left:808.709986px;}
.x85{left:809.969986px;}
@media print{
.v5{vertical-align:-49.332469pt;}
.v7{vertical-align:-26.247090pt;}
.vb{vertical-align:-21.223333pt;}
.v1{vertical-align:-18.560000pt;}
.va{vertical-align:-12.712978pt;}
.v9{vertical-align:-10.150476pt;}
.v4{vertical-align:-5.120000pt;}
.v8{vertical-align:-3.895449pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.v2{vertical-align:18.560000pt;}
.v3{vertical-align:24.320000pt;}
.ls2d{letter-spacing:-2.034137pt;}
.ls3b{letter-spacing:-1.472000pt;}
.ls36{letter-spacing:-1.344000pt;}
.ls34{letter-spacing:-0.896000pt;}
.ls1c{letter-spacing:-0.832000pt;}
.ls21{letter-spacing:-0.799967pt;}
.ls19{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.668936pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.638624pt;}
.ls3a{letter-spacing:-0.563259pt;}
.ls14{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.153600pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.116800pt;}
.lse{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.020480pt;}
.ls10{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.239360pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls39{letter-spacing:0.283390pt;}
.ls2c{letter-spacing:0.297433pt;}
.ls1b{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.346027pt;}
.lsc{letter-spacing:0.384000pt;}
.ls30{letter-spacing:0.448000pt;}
.ls35{letter-spacing:0.512000pt;}
.ls38{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.608000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls2f{letter-spacing:0.768000pt;}
.ls3c{letter-spacing:0.880000pt;}
.ls15{letter-spacing:1.280000pt;}
.ls37{letter-spacing:1.408000pt;}
.ls20{letter-spacing:1.920000pt;}
.ls3d{letter-spacing:2.560000pt;}
.ls13{letter-spacing:6.560000pt;}
.ls28{letter-spacing:10.109939pt;}
.ls32{letter-spacing:14.058667pt;}
.ls33{letter-spacing:14.240000pt;}
.ls18{letter-spacing:159.436106pt;}
.ls27{letter-spacing:162.485196pt;}
.ls2a{letter-spacing:162.810894pt;}
.ls23{letter-spacing:164.383017pt;}
.ls26{letter-spacing:165.203019pt;}
.ls24{letter-spacing:169.664766pt;}
.ls29{letter-spacing:182.974563pt;}
.ls2b{letter-spacing:222.358067pt;}
.ls22{letter-spacing:229.550276pt;}
.ls25{letter-spacing:234.445913pt;}
.ls1{letter-spacing:264.806400pt;}
.ws81{word-spacing:-43.200000pt;}
.ws7b{word-spacing:-17.408000pt;}
.wsf{word-spacing:-17.280000pt;}
.ws7a{word-spacing:-16.768000pt;}
.ws76{word-spacing:-16.640000pt;}
.ws7d{word-spacing:-16.576000pt;}
.ws77{word-spacing:-16.512000pt;}
.ws84{word-spacing:-16.384000pt;}
.ws78{word-spacing:-16.256000pt;}
.ws7c{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws70{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws2f{word-spacing:-15.872861pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws2d{word-spacing:-15.296000pt;}
.ws2e{word-spacing:-15.168000pt;}
.ws79{word-spacing:-14.656000pt;}
.ws82{word-spacing:-14.528000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6e{word-spacing:-12.978753pt;}
.ws1{word-spacing:-12.974080pt;}
.wsb{word-spacing:-12.005120pt;}
.ws83{word-spacing:-11.600000pt;}
.ws7e{word-spacing:-10.961027pt;}
.ws5c{word-spacing:-10.720000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6f{word-spacing:-7.493913pt;}
.ws73{word-spacing:-7.364523pt;}
.ws71{word-spacing:-6.110088pt;}
.ws16{word-spacing:-3.614674pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
.ws1c{word-spacing:14.680614pt;}
.ws19{word-spacing:15.003976pt;}
.ws11{word-spacing:15.878746pt;}
.ws3a{word-spacing:24.003501pt;}
.ws75{word-spacing:25.013414pt;}
.ws72{word-spacing:25.042980pt;}
.ws74{word-spacing:25.072546pt;}
.ws1d{word-spacing:30.099691pt;}
.ws7f{word-spacing:33.146052pt;}
.ws80{word-spacing:33.278066pt;}
.ws1a{word-spacing:33.500433pt;}
.ws17{word-spacing:33.813143pt;}
.ws13{word-spacing:34.061468pt;}
.ws12{word-spacing:34.421246pt;}
.ws15{word-spacing:34.543227pt;}
.ws30{word-spacing:37.840900pt;}
.ws6c{word-spacing:48.540534pt;}
.ws66{word-spacing:52.589905pt;}
.ws29{word-spacing:52.923984pt;}
.ws3f{word-spacing:52.989185pt;}
.ws45{word-spacing:53.281149pt;}
.ws2b{word-spacing:53.285531pt;}
.ws18{word-spacing:53.983139pt;}
.ws1b{word-spacing:60.712339pt;}
.ws10{word-spacing:61.609566pt;}
.ws14{word-spacing:71.295087pt;}
.wsd{word-spacing:72.929493pt;}
.ws5f{word-spacing:77.816793pt;}
.ws22{word-spacing:82.263562pt;}
.ws33{word-spacing:86.518113pt;}
.ws23{word-spacing:89.569358pt;}
.ws32{word-spacing:89.608046pt;}
.wsc{word-spacing:91.096107pt;}
.ws1f{word-spacing:91.328010pt;}
.ws26{word-spacing:95.262799pt;}
.ws28{word-spacing:111.333295pt;}
.ws1e{word-spacing:112.136526pt;}
.ws20{word-spacing:112.201046pt;}
.ws27{word-spacing:114.679729pt;}
.ws58{word-spacing:136.170103pt;}
.ws6b{word-spacing:136.484562pt;}
.ws47{word-spacing:138.621293pt;}
.ws21{word-spacing:140.244178pt;}
.ws3c{word-spacing:144.039715pt;}
.ws59{word-spacing:144.104220pt;}
.ws3d{word-spacing:154.489529pt;}
.wse{word-spacing:163.468544pt;}
.ws2c{word-spacing:180.836161pt;}
.ws2a{word-spacing:190.662044pt;}
.ws31{word-spacing:214.535603pt;}
.ws46{word-spacing:215.640290pt;}
.ws40{word-spacing:227.106212pt;}
.ws25{word-spacing:229.598231pt;}
.ws64{word-spacing:238.393726pt;}
.ws43{word-spacing:245.084412pt;}
.ws24{word-spacing:248.725215pt;}
.ws42{word-spacing:252.771561pt;}
.ws38{word-spacing:266.563212pt;}
.ws68{word-spacing:271.671248pt;}
.ws37{word-spacing:274.250361pt;}
.ws65{word-spacing:280.548715pt;}
.ws3e{word-spacing:294.013893pt;}
.ws36{word-spacing:295.174983pt;}
.ws51{word-spacing:298.206719pt;}
.ws5a{word-spacing:310.224204pt;}
.ws52{word-spacing:313.687924pt;}
.ws5b{word-spacing:327.749354pt;}
.ws67{word-spacing:337.810971pt;}
.ws6d{word-spacing:350.280222pt;}
.ws53{word-spacing:371.535708pt;}
.ws41{word-spacing:378.532998pt;}
.ws48{word-spacing:388.167551pt;}
.ws54{word-spacing:389.946053pt;}
.ws55{word-spacing:391.102569pt;}
.ws44{word-spacing:397.734620pt;}
.ws49{word-spacing:403.047797pt;}
.ws4a{word-spacing:404.215942pt;}
.ws61{word-spacing:404.941086pt;}
.ws4d{word-spacing:406.326140pt;}
.ws56{word-spacing:406.439186pt;}
.ws57{word-spacing:408.587066pt;}
.ws35{word-spacing:410.847992pt;}
.ws34{word-spacing:412.016138pt;}
.ws4e{word-spacing:412.581369pt;}
.ws6a{word-spacing:413.094463pt;}
.ws69{word-spacing:415.672369pt;}
.ws3b{word-spacing:419.213420pt;}
.ws4b{word-spacing:421.700439pt;}
.ws4f{word-spacing:423.810637pt;}
.ws5e{word-spacing:426.103896pt;}
.ws60{word-spacing:426.313726pt;}
.ws5d{word-spacing:428.771729pt;}
.ws50{word-spacing:430.065866pt;}
.ws63{word-spacing:430.180585pt;}
.ws62{word-spacing:432.758491pt;}
.ws4c{word-spacing:443.988070pt;}
.ws39{word-spacing:484.252733pt;}
._27{margin-left:-188.057228pt;}
._e{margin-left:-3.988480pt;}
._d{margin-left:-3.088640pt;}
._4{margin-left:-2.048000pt;}
._0{margin-left:-0.942080pt;}
._1{width:1.168640pt;}
._2{width:2.174293pt;}
._3{width:3.110613pt;}
._5{width:4.402773pt;}
._9{width:5.952000pt;}
._a{width:6.941440pt;}
._b{width:8.389120pt;}
._11{width:9.408000pt;}
._15{width:10.629547pt;}
._f{width:11.562667pt;}
._10{width:12.628053pt;}
._c{width:13.696000pt;}
._8{width:14.792107pt;}
._6{width:17.152000pt;}
._7{width:18.143573pt;}
._14{width:19.484160pt;}
._12{width:20.416000pt;}
._13{width:21.738667pt;}
._1b{width:23.424000pt;}
._1c{width:24.320000pt;}
._18{width:25.792000pt;}
._19{width:26.688000pt;}
._1a{width:28.004693pt;}
._62{width:29.056000pt;}
._16{width:30.016000pt;}
._17{width:31.325440pt;}
._cd{width:32.274375pt;}
._21{width:34.403950pt;}
._ce{width:35.334827pt;}
._65{width:36.224000pt;}
._61{width:40.942080pt;}
._cf{width:43.391564pt;}
._31{width:48.000000pt;}
._dc{width:49.088000pt;}
._5f{width:52.462080pt;}
._da{width:54.161920pt;}
._d9{width:55.150080pt;}
._5c{width:56.448000pt;}
._d2{width:58.204160pt;}
._28{width:59.520000pt;}
._2d{width:64.223714pt;}
._22{width:68.289857pt;}
._60{width:69.358080pt;}
._2a{width:70.320142pt;}
._d1{width:71.265778pt;}
._2c{width:73.068052pt;}
._20{width:73.971720pt;}
._1f{width:75.815655pt;}
._5b{width:76.800000pt;}
._66{width:82.176000pt;}
._d4{width:86.208000pt;}
._d5{width:87.834027pt;}
._5d{width:92.928000pt;}
._6c{width:97.848517pt;}
._6d{width:98.919368pt;}
._68{width:100.159035pt;}
._30{width:101.291403pt;}
._32{width:102.358611pt;}
._2f{width:105.311982pt;}
._63{width:119.040000pt;}
._db{width:121.536000pt;}
._d0{width:123.310529pt;}
._33{width:128.640000pt;}
._29{width:129.761410pt;}
._1e{width:130.882943pt;}
._2b{width:135.630767pt;}
._de{width:137.169233pt;}
._4e{width:139.216675pt;}
._4d{width:143.211254pt;}
._5e{width:149.120000pt;}
._34{width:150.548328pt;}
._35{width:151.735422pt;}
._26{width:154.563703pt;}
._23{width:155.520000pt;}
._69{width:157.282077pt;}
._6b{width:158.528616pt;}
._3b{width:160.462336pt;}
._d3{width:161.536000pt;}
._7d{width:163.578018pt;}
._36{width:166.317042pt;}
._3a{width:169.172595pt;}
._81{width:171.295245pt;}
._3f{width:173.237383pt;}
._40{width:174.205190pt;}
._25{width:175.146667pt;}
._24{width:176.160000pt;}
._3c{width:177.818334pt;}
._64{width:181.056000pt;}
._a6{width:182.684397pt;}
._ba{width:184.048717pt;}
._82{width:185.922009pt;}
._bd{width:187.258080pt;}
._bb{width:188.782689pt;}
._3d{width:190.292368pt;}
._9a{width:192.835607pt;}
._1d{width:196.196693pt;}
._38{width:199.257721pt;}
._7c{width:210.605286pt;}
._a7{width:211.735749pt;}
._7a{width:213.095675pt;}
._d7{width:217.000107pt;}
._d8{width:218.112000pt;}
._d6{width:219.136000pt;}
._58{width:222.666590pt;}
._41{width:224.208531pt;}
._ac{width:225.660319pt;}
._2e{width:226.856171pt;}
._7b{width:232.573953pt;}
._59{width:233.478147pt;}
._52{width:234.765364pt;}
._50{width:236.529497pt;}
._3e{width:239.316379pt;}
._4b{width:241.171172pt;}
._ca{width:242.313547pt;}
._4c{width:244.202111pt;}
._cb{width:245.424139pt;}
._49{width:247.683278pt;}
._39{width:249.249360pt;}
._7e{width:250.394218pt;}
._95{width:252.628218pt;}
._53{width:255.595701pt;}
._93{width:258.743202pt;}
._99{width:261.374351pt;}
._88{width:265.716253pt;}
._8c{width:267.090761pt;}
._91{width:270.985600pt;}
._67{width:272.366256pt;}
._87{width:274.185064pt;}
._6a{width:277.280542pt;}
._55{width:281.293544pt;}
._a5{width:283.520159pt;}
._c9{width:288.135916pt;}
._6e{width:289.710440pt;}
._6f{width:291.960951pt;}
._4f{width:296.577863pt;}
._5a{width:299.891996pt;}
._42{width:301.975631pt;}
._56{width:307.938876pt;}
._98{width:310.462673pt;}
._b9{width:312.333319pt;}
._54{width:316.186877pt;}
._45{width:317.158139pt;}
._83{width:318.564811pt;}
._84{width:320.088018pt;}
._4a{width:324.898242pt;}
._43{width:326.306490pt;}
._bc{width:329.878685pt;}
._47{width:332.895651pt;}
._8a{width:339.741860pt;}
._57{width:342.945161pt;}
._94{width:346.972516pt;}
._75{width:349.953710pt;}
._dd{width:351.104000pt;}
._c7{width:353.748879pt;}
._37{width:355.276405pt;}
._44{width:358.575130pt;}
._c8{width:360.134425pt;}
._51{width:361.213712pt;}
._86{width:364.784699pt;}
._48{width:367.989774pt;}
._92{width:370.839374pt;}
._76{width:371.922378pt;}
._be{width:372.888169pt;}
._bf{width:389.038968pt;}
._85{width:390.557466pt;}
._8b{width:393.521172pt;}
._cc{width:396.615645pt;}
._77{width:403.236207pt;}
._c3{width:405.508144pt;}
._96{width:406.833177pt;}
._97{width:409.026348pt;}
._c5{width:412.828161pt;}
._c4{width:416.514126pt;}
._b0{width:418.520513pt;}
._8d{width:421.625074pt;}
._8e{width:423.810637pt;}
._a4{width:425.054146pt;}
._c6{width:426.481808pt;}
._89{width:428.465114pt;}
._78{width:432.056165pt;}
._46{width:434.264401pt;}
._b1{width:435.870013pt;}
._b4{width:436.924009pt;}
._9e{width:438.431293pt;}
._9c{width:440.805266pt;}
._c2{width:443.204706pt;}
._a9{width:446.916619pt;}
._ae{width:466.474827pt;}
._af{width:471.183694pt;}
._9b{width:483.151929pt;}
._74{width:488.058626pt;}
._71{width:490.394916pt;}
._73{width:491.563062pt;}
._80{width:499.928489pt;}
._b5{width:504.525706pt;}
._8f{width:507.050407pt;}
._c0{width:516.362572pt;}
._c1{width:524.205319pt;}
._90{width:531.619139pt;}
._72{width:533.465563pt;}
._79{width:535.575760pt;}
._70{width:537.648276pt;}
._b6{width:539.004832pt;}
._9d{width:540.851255pt;}
._7f{width:541.830990pt;}
._a3{width:542.961453pt;}
._9f{width:547.634034pt;}
._a8{width:549.216683pt;}
._a0{width:555.622640pt;}
._b7{width:564.817074pt;}
._a1{width:566.663497pt;}
._aa{width:568.773695pt;}
._b2{width:569.973412pt;}
._b8{width:572.617270pt;}
._a2{width:574.463693pt;}
._ab{width:576.573891pt;}
._b3{width:578.193529pt;}
._ad{width:583.394352pt;}
.fs25{font-size:21.978733pt;}
.fs26{font-size:26.491088pt;}
.fs21{font-size:29.975652pt;}
.fs3{font-size:34.560000pt;}
.fs13{font-size:37.203650pt;}
.fs15{font-size:37.212031pt;}
.fsc{font-size:37.307194pt;}
.fs9{font-size:37.384445pt;}
.fs1d{font-size:37.676409pt;}
.fs19{font-size:37.682105pt;}
.fs27{font-size:39.428154pt;}
.fsb{font-size:39.473906pt;}
.fs11{font-size:39.500907pt;}
.fse{font-size:39.501336pt;}
.fs10{font-size:39.505227pt;}
.fs2a{font-size:42.686715pt;}
.fs28{font-size:42.707419pt;}
.fs29{font-size:42.735637pt;}
.fs7{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:48.128000pt;}
.fs22{font-size:51.915010pt;}
.fs4{font-size:53.120000pt;}
.fs6{font-size:53.248000pt;}
.fs24{font-size:54.744338pt;}
.fs0{font-size:58.880000pt;}
.fs18{font-size:63.491442pt;}
.fs2{font-size:64.000000pt;}
.fs16{font-size:64.354506pt;}
.fs1a{font-size:64.505023pt;}
.fsd{font-size:64.520441pt;}
.fsa{font-size:64.547749pt;}
.fsf{font-size:64.672308pt;}
.fs14{font-size:67.689100pt;}
.fs17{font-size:67.851261pt;}
.fs1e{font-size:67.860425pt;}
.fs1b{font-size:67.934852pt;}
.fs1f{font-size:68.049165pt;}
.fs20{font-size:68.128802pt;}
.fs12{font-size:68.278568pt;}
.fs1{font-size:74.880000pt;}
.fs23{font-size:77.874660pt;}
.fs1c{font-size:96.824034pt;}
.y1f7{bottom:-0.133015pt;}
.y1f0{bottom:-0.133006pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:3.635783pt;}
.y15e{bottom:3.639765pt;}
.y11a{bottom:3.645877pt;}
.y31d{bottom:3.648762pt;}
.y11d{bottom:3.676516pt;}
.y120{bottom:3.676526pt;}
.y8e{bottom:3.676531pt;}
.ya6{bottom:3.676582pt;}
.y301{bottom:3.695572pt;}
.y2f0{bottom:3.698617pt;}
.y9f{bottom:3.752028pt;}
.y99{bottom:3.752030pt;}
.y86{bottom:3.782975pt;}
.y93{bottom:3.783040pt;}
.yb6{bottom:3.805340pt;}
.yb4{bottom:3.805345pt;}
.y10c{bottom:5.721263pt;}
.ye4{bottom:6.240000pt;}
.y2cd{bottom:6.256845pt;}
.y2d2{bottom:6.256849pt;}
.y184{bottom:6.266667pt;}
.y253{bottom:6.280000pt;}
.yf1{bottom:6.400000pt;}
.y2a5{bottom:6.426667pt;}
.y207{bottom:6.440000pt;}
.y15d{bottom:6.818126pt;}
.y13e{bottom:6.818181pt;}
.y143{bottom:6.920547pt;}
.y12e{bottom:6.920586pt;}
.y132{bottom:6.920602pt;}
.y151{bottom:7.074345pt;}
.y241{bottom:7.200000pt;}
.yae{bottom:7.760453pt;}
.y11b{bottom:7.781990pt;}
.y11e{bottom:7.812629pt;}
.y8f{bottom:7.812647pt;}
.ya8{bottom:7.812680pt;}
.ya9{bottom:7.812693pt;}
.ya7{bottom:7.812698pt;}
.ya5{bottom:7.812701pt;}
.y1f2{bottom:7.892064pt;}
.y1e9{bottom:7.892074pt;}
.ya1{bottom:7.907119pt;}
.y9c{bottom:7.907121pt;}
.y9a{bottom:7.907132pt;}
.yb8{bottom:7.927748pt;}
.yba{bottom:7.927750pt;}
.ybc{bottom:7.927751pt;}
.y87{bottom:7.938070pt;}
.y92{bottom:7.938102pt;}
.y96{bottom:7.938132pt;}
.y94{bottom:7.938142pt;}
.y243{bottom:8.000000pt;}
.y15c{bottom:9.842667pt;}
.y14d{bottom:10.252706pt;}
.y137{bottom:10.252760pt;}
.y14a{bottom:12.867216pt;}
.ya0{bottom:15.100277pt;}
.y9b{bottom:15.100283pt;}
.y88{bottom:15.131379pt;}
.y95{bottom:15.131425pt;}
.y84{bottom:15.680000pt;}
.y60{bottom:15.746667pt;}
.yd9{bottom:15.923840pt;}
.yd7{bottom:15.923851pt;}
.y75{bottom:16.133333pt;}
.y10b{bottom:16.877706pt;}
.y31e{bottom:16.946598pt;}
.y302{bottom:16.953173pt;}
.y2f1{bottom:16.975825pt;}
.y112{bottom:17.353846pt;}
.y15b{bottom:19.043958pt;}
.y13d{bottom:19.044013pt;}
.y10d{bottom:21.010017pt;}
.y15a{bottom:22.222945pt;}
.y1ea{bottom:22.671204pt;}
.yd8{bottom:25.884704pt;}
.yd6{bottom:25.884714pt;}
.y12d{bottom:26.682592pt;}
.y131{bottom:26.682608pt;}
.y294{bottom:27.354667pt;}
.ye6{bottom:27.360000pt;}
.y21d{bottom:27.386667pt;}
.y17d{bottom:27.400000pt;}
.yf0{bottom:27.520000pt;}
.y183{bottom:27.546667pt;}
.yfa{bottom:27.560000pt;}
.y142{bottom:27.656420pt;}
.y12c{bottom:27.656459pt;}
.yb3{bottom:28.317370pt;}
.yb5{bottom:28.317374pt;}
.y150{bottom:28.451158pt;}
.y1f3{bottom:30.006506pt;}
.y14c{bottom:30.014924pt;}
.y136{bottom:30.014978pt;}
.y31f{bottom:30.217369pt;}
.y303{bottom:30.239153pt;}
.y2f2{bottom:30.251866pt;}
.y159{bottom:31.424236pt;}
.y13c{bottom:31.424291pt;}
.yb9{bottom:32.440040pt;}
.ybb{bottom:32.440042pt;}
.yb7{bottom:32.440050pt;}
.y2cc{bottom:33.117957pt;}
.y149{bottom:34.218180pt;}
.y176{bottom:34.880000pt;}
.y12b{bottom:36.576742pt;}
.y15f{bottom:36.960666pt;}
.y13f{bottom:36.960706pt;}
.y1eb{bottom:37.304869pt;}
.y10f{bottom:37.378333pt;}
.y144{bottom:39.909049pt;}
.y158{bottom:39.909057pt;}
.y135{bottom:39.909110pt;}
.y13b{bottom:39.909112pt;}
.y320{bottom:43.488140pt;}
.y304{bottom:43.523966pt;}
.y2f3{bottom:43.529074pt;}
.y157{bottom:43.804514pt;}
.y13a{bottom:43.804569pt;}
.y148{bottom:46.470832pt;}
.y12a{bottom:46.470871pt;}
.y130{bottom:46.470887pt;}
.y2c5{bottom:46.710994pt;}
.y156{bottom:46.983500pt;}
.y19d{bottom:48.480000pt;}
.y19f{bottom:48.506667pt;}
.y199{bottom:48.520000pt;}
.yef{bottom:48.640000pt;}
.yf5{bottom:48.666667pt;}
.y14f{bottom:49.802123pt;}
.y14b{bottom:49.802132pt;}
.y134{bottom:49.802187pt;}
.y83{bottom:50.586667pt;}
.y5f{bottom:50.693333pt;}
.y1f4{bottom:51.940003pt;}
.y1ec{bottom:51.940013pt;}
.y72{bottom:52.453333pt;}
.y141{bottom:53.032611pt;}
.y129{bottom:53.032650pt;}
.y74{bottom:54.426667pt;}
.y10a{bottom:54.605829pt;}
.y147{bottom:55.594886pt;}
.y155{bottom:56.184792pt;}
.y139{bottom:56.184846pt;}
.y305{bottom:56.781917pt;}
.y321{bottom:56.785742pt;}
.y2f4{bottom:56.805115pt;}
.y154{bottom:59.363778pt;}
.y4e{bottom:61.946667pt;}
.y6{bottom:62.272000pt;}
.y80{bottom:63.266667pt;}
.y82{bottom:65.760000pt;}
.y109{bottom:65.763203pt;}
.y111{bottom:66.239343pt;}
.y140{bottom:66.258039pt;}
.y128{bottom:66.258078pt;}
.y12f{bottom:66.258094pt;}
.y1ed{bottom:66.573678pt;}
.y146{bottom:67.821792pt;}
.y153{bottom:68.565069pt;}
.y138{bottom:68.565124pt;}
.y133{bottom:69.590467pt;}
.yee{bottom:69.760000pt;}
.yf4{bottom:69.786667pt;}
.y110{bottom:69.894184pt;}
.y322{bottom:70.056514pt;}
.y306{bottom:70.067898pt;}
.y2f5{bottom:70.082323pt;}
.y14e{bottom:71.154160pt;}
.y152{bottom:71.742983pt;}
.y1f5{bottom:73.872023pt;}
.y71{bottom:75.013333pt;}
.y175{bottom:76.192000pt;}
.y145{bottom:76.946924pt;}
.y1ee{bottom:81.207343pt;}
.y2c6{bottom:82.164429pt;}
.y323{bottom:83.326119pt;}
.y307{bottom:83.352711pt;}
.y2f6{bottom:83.359532pt;}
.y10e{bottom:86.263830pt;}
.y2ce{bottom:89.163367pt;}
.yf3{bottom:90.906667pt;}
.yed{bottom:91.040000pt;}
.y6a{bottom:91.680000pt;}
.y4f{bottom:91.813333pt;}
.y174{bottom:94.272000pt;}
.y1f6{bottom:95.840999pt;}
.y1ef{bottom:95.841009pt;}
.y57{bottom:96.093333pt;}
.y324{bottom:96.624887pt;}
.y2f7{bottom:96.635573pt;}
.y308{bottom:96.638691pt;}
.y78{bottom:99.040000pt;}
.y5e{bottom:102.626667pt;}
.y103{bottom:103.491326pt;}
.y5{bottom:103.552000pt;}
.y1f8{bottom:106.953356pt;}
.y1f1{bottom:106.953366pt;}
.y325{bottom:109.894492pt;}
.y309{bottom:109.895475pt;}
.y2f8{bottom:109.912781pt;}
.yec{bottom:112.160000pt;}
.y20f{bottom:113.152000pt;}
.y102{bottom:114.647370pt;}
.y108{bottom:115.124840pt;}
.y2c7{bottom:117.481450pt;}
.y107{bottom:118.779681pt;}
.y291{bottom:119.072000pt;}
.y6b{bottom:119.773333pt;}
.y274{bottom:120.352000pt;}
.y293{bottom:120.832000pt;}
.y4{bottom:121.632000pt;}
.y50{bottom:121.693333pt;}
.y326{bottom:123.165263pt;}
.y30a{bottom:123.177952pt;}
.y2f9{bottom:123.213331pt;}
.y259{bottom:125.632000pt;}
.y195{bottom:126.432000pt;}
.y73{bottom:127.173333pt;}
.y79{bottom:127.706667pt;}
.y2b7{bottom:127.712000pt;}
.y1e7{bottom:128.196474pt;}
.y1e0{bottom:128.196483pt;}
.y1d9{bottom:128.196492pt;}
.y1d0{bottom:128.196501pt;}
.y23f{bottom:128.352000pt;}
.y58{bottom:130.213333pt;}
.y2cf{bottom:131.617940pt;}
.y2ec{bottom:132.672000pt;}
.yeb{bottom:133.280000pt;}
.y20e{bottom:134.266667pt;}
.y105{bottom:135.154647pt;}
.y1e2{bottom:136.220672pt;}
.y1db{bottom:136.220682pt;}
.y1d2{bottom:136.220691pt;}
.y1c9{bottom:136.220700pt;}
.y327{bottom:136.464032pt;}
.y30b{bottom:136.468604pt;}
.y2fa{bottom:136.495208pt;}
.y290{bottom:140.186667pt;}
.yfe{bottom:141.306667pt;}
.y5d{bottom:141.346667pt;}
.y1aa{bottom:141.626667pt;}
.y4c{bottom:144.986667pt;}
.y258{bottom:147.386667pt;}
.y194{bottom:147.546667pt;}
.y6c{bottom:147.906667pt;}
.ye2{bottom:148.026667pt;}
.y2b6{bottom:148.826667pt;}
.y2e{bottom:149.306667pt;}
.y23e{bottom:149.626667pt;}
.y328{bottom:149.739470pt;}
.y30c{bottom:149.747577pt;}
.y2fb{bottom:149.765413pt;}
.y101{bottom:150.436352pt;}
.y1d3{bottom:150.860270pt;}
.y1ca{bottom:150.860279pt;}
.y51{bottom:151.546667pt;}
.yd3{bottom:151.706667pt;}
.y68{bottom:152.826667pt;}
.y2c8{bottom:152.828173pt;}
.y2eb{bottom:153.786667pt;}
.yea{bottom:154.400000pt;}
.y104{bottom:154.572654pt;}
.y81{bottom:154.626667pt;}
.y8d{bottom:154.786649pt;}
.y20d{bottom:155.386667pt;}
.y7a{bottom:156.386667pt;}
.yfd{bottom:156.986667pt;}
.y126{bottom:157.626667pt;}
.y1e3{bottom:158.148257pt;}
.y1dc{bottom:158.148266pt;}
.y28f{bottom:161.466667pt;}
.y90{bottom:162.746667pt;}
.y76{bottom:163.546667pt;}
.y292{bottom:163.706667pt;}
.y77{bottom:163.840000pt;}
.y59{bottom:164.346667pt;}
.y1d4{bottom:165.495413pt;}
.y1cb{bottom:165.495422pt;}
.y4b{bottom:166.106667pt;}
.y170{bottom:166.266667pt;}
.y193{bottom:168.666667pt;}
.ye1{bottom:169.146667pt;}
.y257{bottom:169.306667pt;}
.y2b5{bottom:170.106667pt;}
.y2d{bottom:170.586667pt;}
.y23d{bottom:170.746667pt;}
.yd2{bottom:172.826667pt;}
.y67{bottom:173.946667pt;}
.y2d0{bottom:174.038409pt;}
.y100{bottom:175.041361pt;}
.y2ea{bottom:175.066667pt;}
.ye9{bottom:175.720000pt;}
.y6d{bottom:176.000000pt;}
.y30d{bottom:176.293845pt;}
.y329{bottom:176.302010pt;}
.y2fc{bottom:176.329166pt;}
.y20c{bottom:176.506667pt;}
.y125{bottom:178.906667pt;}
.y106{bottom:179.164363pt;}
.y1e4{bottom:180.130538pt;}
.y1dd{bottom:180.130547pt;}
.y1d5{bottom:180.130557pt;}
.y1cc{bottom:180.130566pt;}
.y52{bottom:181.413333pt;}
.y28e{bottom:182.586667pt;}
.y1a9{bottom:183.866667pt;}
.y8c{bottom:184.826667pt;}
.y7b{bottom:185.093333pt;}
.y4a{bottom:187.226667pt;}
.y16f{bottom:187.386667pt;}
.y2c9{bottom:188.284909pt;}
.y32a{bottom:189.577448pt;}
.y30e{bottom:189.584497pt;}
.y2fd{bottom:189.599372pt;}
.y192{bottom:189.946667pt;}
.ye0{bottom:190.266667pt;}
.y256{bottom:191.066667pt;}
.y2b4{bottom:191.226667pt;}
.y2c{bottom:191.706667pt;}
.y23c{bottom:191.866667pt;}
.yd1{bottom:194.106667pt;}
.y1d6{bottom:194.750917pt;}
.y1cd{bottom:194.750927pt;}
.y66{bottom:195.066667pt;}
.y2e9{bottom:196.186667pt;}
.ye8{bottom:196.840000pt;}
.y20b{bottom:197.786667pt;}
.y5a{bottom:198.493333pt;}
.yfc{bottom:199.866667pt;}
.y124{bottom:200.026667pt;}
.y1e5{bottom:202.053688pt;}
.y1de{bottom:202.053697pt;}
.y30f{bottom:202.840112pt;}
.y2fe{bottom:202.881248pt;}
.y28d{bottom:203.706667pt;}
.y6e{bottom:204.133333pt;}
.y1a8{bottom:204.986667pt;}
.y8b{bottom:206.106667pt;}
.y49{bottom:208.506667pt;}
.y1d7{bottom:209.386061pt;}
.y1ce{bottom:209.386070pt;}
.y191{bottom:211.066667pt;}
.y53{bottom:211.293333pt;}
.ydf{bottom:211.546667pt;}
.y2b3{bottom:212.346667pt;}
.y2b{bottom:212.826667pt;}
.y23b{bottom:212.986667pt;}
.y20a{bottom:213.306667pt;}
.y7c{bottom:213.760000pt;}
.yd0{bottom:215.226667pt;}
.y310{bottom:216.119086pt;}
.y2ff{bottom:216.151454pt;}
.y65{bottom:216.346667pt;}
.y2d1{bottom:216.491882pt;}
.y2e8{bottom:217.306667pt;}
.y123{bottom:221.146667pt;}
.y2ca{bottom:223.598630pt;}
.y1e6{bottom:224.021186pt;}
.y1df{bottom:224.021195pt;}
.y1d8{bottom:224.021205pt;}
.y1cf{bottom:224.021214pt;}
.y28c{bottom:224.826667pt;}
.y1a7{bottom:226.266667pt;}
.y8a{bottom:227.226667pt;}
.y311{bottom:229.409738pt;}
.y48{bottom:229.626667pt;}
.y190{bottom:232.186667pt;}
.y6f{bottom:232.226667pt;}
.y5b{bottom:232.613333pt;}
.yde{bottom:232.666667pt;}
.y2b2{bottom:233.466667pt;}
.y2a{bottom:233.946667pt;}
.y23a{bottom:234.266667pt;}
.y209{bottom:234.426667pt;}
.y255{bottom:234.746667pt;}
.y1e8{bottom:235.137978pt;}
.y1e1{bottom:235.137987pt;}
.y1da{bottom:235.137996pt;}
.y1d1{bottom:235.138006pt;}
.ycf{bottom:236.346667pt;}
.y64{bottom:237.466667pt;}
.y2e7{bottom:238.426667pt;}
.y54{bottom:241.146667pt;}
.y122{bottom:242.266667pt;}
.y7d{bottom:242.426667pt;}
.y312{bottom:242.700390pt;}
.yfb{bottom:242.906667pt;}
.y85{bottom:244.853333pt;}
.y28b{bottom:246.106667pt;}
.y1a6{bottom:247.386667pt;}
.y47{bottom:250.746667pt;}
.y16e{bottom:250.906667pt;}
.y89{bottom:252.826667pt;}
.y18f{bottom:253.306667pt;}
.ydd{bottom:253.786667pt;}
.y2b1{bottom:254.746667pt;}
.y29{bottom:255.226667pt;}
.y239{bottom:255.386667pt;}
.y208{bottom:255.546667pt;}
.y313{bottom:255.956005pt;}
.y1c7{bottom:256.381114pt;}
.y1be{bottom:256.381123pt;}
.y1b9{bottom:256.381132pt;}
.y1b1{bottom:256.381141pt;}
.y254{bottom:256.506667pt;}
.yce{bottom:257.466667pt;}
.y63{bottom:258.586667pt;}
.y2cb{bottom:258.945355pt;}
.y2e6{bottom:259.706667pt;}
.y70{bottom:260.320000pt;}
.y121{bottom:263.546667pt;}
.y1c0{bottom:264.408269pt;}
.y1bb{bottom:264.408278pt;}
.y1b3{bottom:264.408288pt;}
.y1ac{bottom:264.408297pt;}
.yf9{bottom:264.666667pt;}
.y5c{bottom:266.746667pt;}
.y28a{bottom:267.226667pt;}
.y1a5{bottom:268.506667pt;}
.y314{bottom:269.234979pt;}
.y55{bottom:271.013333pt;}
.y7e{bottom:271.106667pt;}
.y46{bottom:271.866667pt;}
.y16d{bottom:272.026667pt;}
.y18e{bottom:274.586667pt;}
.ydc{bottom:274.906667pt;}
.y2b0{bottom:275.866667pt;}
.y28{bottom:276.346667pt;}
.y238{bottom:276.506667pt;}
.y206{bottom:276.666667pt;}
.y252{bottom:278.426667pt;}
.ycd{bottom:278.586667pt;}
.y1c1{bottom:279.043413pt;}
.y62{bottom:279.706667pt;}
.y2e5{bottom:280.826667pt;}
.y11f{bottom:281.186649pt;}
.y119{bottom:281.186667pt;}
.y1b4{bottom:281.985243pt;}
.y315{bottom:282.525631pt;}
.y2ee{bottom:286.146667pt;}
.y1ad{bottom:286.331447pt;}
.y289{bottom:288.386667pt;}
.y11c{bottom:289.186667pt;}
.y1a4{bottom:289.666667pt;}
.y45{bottom:293.186667pt;}
.y1c2{bottom:293.634207pt;}
.y18d{bottom:295.746667pt;}
.y316{bottom:295.804604pt;}
.ydb{bottom:296.226667pt;}
.y2af{bottom:297.026667pt;}
.y61{bottom:297.346667pt;}
.y27{bottom:297.506667pt;}
.y69{bottom:297.600000pt;}
.y237{bottom:297.666667pt;}
.y205{bottom:297.986667pt;}
.y1b5{bottom:299.562198pt;}
.y7f{bottom:299.773333pt;}
.ycc{bottom:299.906667pt;}
.y251{bottom:300.226667pt;}
.y56{bottom:300.893333pt;}
.y2e4{bottom:301.986667pt;}
.y2ed{bottom:303.746667pt;}
.y300{bottom:303.893333pt;}
.yf8{bottom:307.746667pt;}
.y1c3{bottom:308.269351pt;}
.y1bc{bottom:308.269360pt;}
.y1ae{bottom:308.269379pt;}
.y317{bottom:309.071899pt;}
.y288{bottom:309.506667pt;}
.y1a3{bottom:310.946667pt;}
.y118{bottom:311.266667pt;}
.y44{bottom:314.306667pt;}
.y18c{bottom:316.866667pt;}
.y1b6{bottom:317.168719pt;}
.yda{bottom:317.346667pt;}
.y2ae{bottom:318.146667pt;}
.y26{bottom:318.626667pt;}
.y236{bottom:318.946667pt;}
.y204{bottom:319.106667pt;}
.ycb{bottom:321.026667pt;}
.y318{bottom:322.350872pt;}
.y1c4{bottom:322.904495pt;}
.y2e3{bottom:323.106667pt;}
.y250{bottom:328.386667pt;}
.y1af{bottom:330.236877pt;}
.y287{bottom:330.626667pt;}
.y1a2{bottom:332.066667pt;}
.y117{bottom:332.386667pt;}
.y1b7{bottom:334.745675pt;}
.yd5{bottom:334.986630pt;}
.y43{bottom:335.426667pt;}
.y16c{bottom:335.586667pt;}
.y1c5{bottom:337.539638pt;}
.y18b{bottom:337.986667pt;}
.y2ad{bottom:339.426667pt;}
.y25{bottom:339.906667pt;}
.y235{bottom:340.066667pt;}
.y203{bottom:340.226667pt;}
.yca{bottom:342.146667pt;}
.y2e2{bottom:344.226667pt;}
.y1a1{bottom:347.586667pt;}
.y319{bottom:348.897139pt;}
.y24f{bottom:349.506667pt;}
.yf7{bottom:350.786667pt;}
.yd4{bottom:350.946667pt;}
.y286{bottom:351.906667pt;}
.y1c6{bottom:352.174782pt;}
.y1bd{bottom:352.174791pt;}
.y1b8{bottom:352.174800pt;}
.y1b0{bottom:352.174810pt;}
.y273{bottom:353.186667pt;}
.y21f{bottom:353.506667pt;}
.y116{bottom:353.666667pt;}
.y42{bottom:356.546667pt;}
.y16b{bottom:356.706667pt;}
.y18a{bottom:359.266667pt;}
.y2ac{bottom:360.546667pt;}
.y24{bottom:361.026667pt;}
.y234{bottom:361.186667pt;}
.y202{bottom:361.346667pt;}
.yc9{bottom:363.266667pt;}
.y1c8{bottom:363.424621pt;}
.y1bf{bottom:363.424630pt;}
.y1ba{bottom:363.424639pt;}
.y1b2{bottom:363.424648pt;}
.y2e1{bottom:365.506667pt;}
.y24e{bottom:370.626667pt;}
.y285{bottom:373.026667pt;}
.y272{bottom:374.306667pt;}
.y115{bottom:374.786667pt;}
.y41{bottom:377.826667pt;}
.y2c3{bottom:378.306667pt;}
.y189{bottom:380.386667pt;}
.y2ab{bottom:381.666667pt;}
.y23{bottom:382.146667pt;}
.y233{bottom:382.306667pt;}
.y201{bottom:382.626667pt;}
.yc8{bottom:384.546667pt;}
.y2e0{bottom:386.626667pt;}
.y24d{bottom:391.906667pt;}
.yf6{bottom:393.666667pt;}
.y284{bottom:394.146667pt;}
.y40{bottom:395.426667pt;}
.y4d{bottom:395.520000pt;}
.y271{bottom:395.586667pt;}
.y114{bottom:395.906667pt;}
.y16a{bottom:398.946667pt;}
.y2c2{bottom:399.586667pt;}
.y188{bottom:401.506667pt;}
.y2aa{bottom:402.786667pt;}
.y22{bottom:403.266667pt;}
.y232{bottom:403.586667pt;}
.y200{bottom:403.746667pt;}
.yc7{bottom:405.666667pt;}
.y2df{bottom:407.746667pt;}
.y1a0{bottom:411.746667pt;}
.y24c{bottom:413.026667pt;}
.yff{bottom:413.520000pt;}
.y283{bottom:415.266667pt;}
.y270{bottom:416.706667pt;}
.y169{bottom:420.226667pt;}
.y2c1{bottom:420.706667pt;}
.y187{bottom:422.626667pt;}
.y2a9{bottom:424.066667pt;}
.y21{bottom:424.546667pt;}
.y231{bottom:424.706667pt;}
.y1ff{bottom:425.506667pt;}
.yc6{bottom:426.786667pt;}
.y2de{bottom:428.866667pt;}
.y24b{bottom:434.146667pt;}
.y282{bottom:436.546667pt;}
.y26f{bottom:437.826667pt;}
.y21e{bottom:438.146667pt;}
.y168{bottom:441.346667pt;}
.y2c0{bottom:441.826667pt;}
.y186{bottom:443.746667pt;}
.y2a8{bottom:445.186667pt;}
.y20{bottom:445.666667pt;}
.y230{bottom:445.826667pt;}
.y1fe{bottom:447.426667pt;}
.yc5{bottom:447.906667pt;}
.y2dd{bottom:450.146667pt;}
.y24a{bottom:455.266667pt;}
.y281{bottom:457.666667pt;}
.yf2{bottom:457.826667pt;}
.y26e{bottom:458.946667pt;}
.y185{bottom:459.426667pt;}
.y167{bottom:462.466667pt;}
.y2bf{bottom:462.946667pt;}
.y2a7{bottom:466.306667pt;}
.y1f{bottom:466.786667pt;}
.y22f{bottom:466.946667pt;}
.yc4{bottom:469.186667pt;}
.y249{bottom:470.786667pt;}
.y2dc{bottom:471.266667pt;}
.y1fd{bottom:475.426667pt;}
.y19e{bottom:475.906667pt;}
.y280{bottom:478.786667pt;}
.y26d{bottom:480.066667pt;}
.y21c{bottom:480.546667pt;}
.y166{bottom:483.586667pt;}
.y2be{bottom:484.066667pt;}
.y2a6{bottom:487.426667pt;}
.y1e{bottom:487.906667pt;}
.y22e{bottom:488.066667pt;}
.yc3{bottom:490.306667pt;}
.y2db{bottom:492.386667pt;}
.y248{bottom:492.866667pt;}
.y27f{bottom:494.306667pt;}
.y1fc{bottom:496.706667pt;}
.y26c{bottom:501.346667pt;}
.y182{bottom:501.666667pt;}
.y2a4{bottom:502.946667pt;}
.y165{bottom:504.706667pt;}
.y2bd{bottom:505.373333pt;}
.y1d{bottom:507.933333pt;}
.y3f{bottom:509.053333pt;}
.y22d{bottom:509.373333pt;}
.yc2{bottom:511.453333pt;}
.y2da{bottom:513.533333pt;}
.y247{bottom:515.773333pt;}
.y27e{bottom:516.253333pt;}
.y1fb{bottom:517.853333pt;}
.y26b{bottom:522.493333pt;}
.y21b{bottom:522.813333pt;}
.y2a3{bottom:524.253333pt;}
.y1c{bottom:525.693333pt;}
.y164{bottom:526.013333pt;}
.y2bc{bottom:526.493333pt;}
.y3e{bottom:530.333333pt;}
.y22c{bottom:530.493333pt;}
.y113{bottom:532.253333pt;}
.yc1{bottom:532.573333pt;}
.y2d9{bottom:534.813333pt;}
.y246{bottom:537.853333pt;}
.y27d{bottom:538.013333pt;}
.y1fa{bottom:538.973333pt;}
.y19c{bottom:540.093333pt;}
.y2bb{bottom:542.013333pt;}
.y26a{bottom:543.613333pt;}
.y181{bottom:544.093333pt;}
.y2a2{bottom:545.373333pt;}
.y163{bottom:547.133333pt;}
.y1b{bottom:547.933333pt;}
.y3d{bottom:551.453333pt;}
.y22b{bottom:551.613333pt;}
.yc0{bottom:553.853333pt;}
.y2d8{bottom:555.933333pt;}
.y1f9{bottom:556.573333pt;}
.y1ab{bottom:556.586630pt;}
.y27c{bottom:559.933333pt;}
.y245{bottom:560.733333pt;}
.y2ba{bottom:563.933333pt;}
.ye7{bottom:564.253333pt;}
.y269{bottom:564.733333pt;}
.y21a{bottom:565.213333pt;}
.y1a{bottom:565.533333pt;}
.y2a1{bottom:566.493333pt;}
.y162{bottom:568.253333pt;}
.y3c{bottom:572.573333pt;}
.y22a{bottom:572.733333pt;}
.ybf{bottom:574.973333pt;}
.y2d7{bottom:577.053333pt;}
.y27b{bottom:581.693333pt;}
.y244{bottom:582.813333pt;}
.y19{bottom:583.133333pt;}
.y2b9{bottom:585.693333pt;}
.y268{bottom:586.013333pt;}
.y180{bottom:586.333333pt;}
.y2a0{bottom:587.613333pt;}
.y161{bottom:589.373333pt;}
.y3b{bottom:593.693333pt;}
.y229{bottom:594.013333pt;}
.ybe{bottom:596.093333pt;}
.y2d6{bottom:598.173333pt;}
.y18{bottom:600.733333pt;}
.y27a{bottom:603.453333pt;}
.y19b{bottom:604.093333pt;}
.y242{bottom:604.893333pt;}
.y127{bottom:606.986594pt;}
.y267{bottom:607.133333pt;}
.y219{bottom:607.453333pt;}
.y29f{bottom:608.893333pt;}
.yb2{bottom:613.653261pt;}
.y17{bottom:613.853333pt;}
.y3a{bottom:614.973333pt;}
.y228{bottom:615.133333pt;}
.y2d5{bottom:619.453333pt;}
.y279{bottom:625.373333pt;}
.y266{bottom:628.253333pt;}
.y240{bottom:628.413333pt;}
.y17f{bottom:628.733333pt;}
.y2b8{bottom:629.373333pt;}
.y29e{bottom:630.013333pt;}
.ybd{bottom:633.693333pt;}
.y16{bottom:636.093333pt;}
.y227{bottom:636.253333pt;}
.y2d4{bottom:640.573333pt;}
.y19a{bottom:647.133333pt;}
.y265{bottom:649.373333pt;}
.y218{bottom:649.853333pt;}
.y29d{bottom:651.133333pt;}
.y15{bottom:653.693333pt;}
.y160{bottom:656.253333pt;}
.y39{bottom:657.213333pt;}
.y226{bottom:657.373333pt;}
.y2d3{bottom:658.173333pt;}
.y2c4{bottom:658.186594pt;}
.y264{bottom:665.053333pt;}
.y2ef{bottom:666.120000pt;}
.yb1{bottom:668.253333pt;}
.y278{bottom:669.053333pt;}
.y17e{bottom:670.973333pt;}
.y14{bottom:671.293333pt;}
.y29c{bottom:672.253333pt;}
.y38{bottom:678.333333pt;}
.y225{bottom:678.653333pt;}
.y13{bottom:688.893333pt;}
.yb0{bottom:689.373333pt;}
.y198{bottom:690.173333pt;}
.y277{bottom:690.813333pt;}
.y217{bottom:692.093333pt;}
.y29b{bottom:693.533333pt;}
.y37{bottom:699.613333pt;}
.y224{bottom:699.773333pt;}
.y12{bottom:702.013333pt;}
.y263{bottom:707.933333pt;}
.y31b{bottom:708.573333pt;}
.yaf{bottom:710.493333pt;}
.y276{bottom:712.573333pt;}
.y17c{bottom:713.373333pt;}
.y29a{bottom:714.653333pt;}
.y36{bottom:720.733333pt;}
.y223{bottom:720.893333pt;}
.y11{bottom:724.253333pt;}
.y31a{bottom:726.173333pt;}
.y31c{bottom:727.146667pt;}
.yac{bottom:728.253261pt;}
.y262{bottom:729.893333pt;}
.y216{bottom:734.533333pt;}
.y299{bottom:735.813333pt;}
.yab{bottom:736.293333pt;}
.y10{bottom:741.893333pt;}
.y222{bottom:742.053333pt;}
.y261{bottom:751.653333pt;}
.y197{bottom:754.373333pt;}
.ya4{bottom:754.786594pt;}
.yf{bottom:754.853333pt;}
.y17b{bottom:755.653333pt;}
.y275{bottom:756.293333pt;}
.y298{bottom:756.933333pt;}
.yaa{bottom:762.853333pt;}
.y35{bottom:763.013333pt;}
.y221{bottom:763.333333pt;}
.y260{bottom:773.413333pt;}
.ye5{bottom:776.613333pt;}
.ye{bottom:777.093333pt;}
.y215{bottom:777.413333pt;}
.y297{bottom:778.213333pt;}
.y34{bottom:784.293333pt;}
.y220{bottom:784.453333pt;}
.ya3{bottom:784.933333pt;}
.yd{bottom:790.213333pt;}
.y25f{bottom:795.333333pt;}
.y196{bottom:797.253333pt;}
.y17a{bottom:797.893333pt;}
.y296{bottom:799.333333pt;}
.y9e{bottom:802.453261pt;}
.y33{bottom:805.413333pt;}
.y214{bottom:805.573333pt;}
.ya2{bottom:810.533333pt;}
.yc{bottom:812.453333pt;}
.y25e{bottom:817.093333pt;}
.ye3{bottom:819.653333pt;}
.y32{bottom:826.533333pt;}
.y213{bottom:826.693333pt;}
.yb{bottom:830.053333pt;}
.y98{bottom:830.453261pt;}
.y9d{bottom:838.533333pt;}
.y25d{bottom:839.013333pt;}
.y179{bottom:840.293333pt;}
.y295{bottom:841.573333pt;}
.ya{bottom:847.653333pt;}
.y212{bottom:847.973333pt;}
.y91{bottom:858.453261pt;}
.y25c{bottom:860.773333pt;}
.y9{bottom:861.733333pt;}
.y97{bottom:866.533333pt;}
.y31{bottom:868.933333pt;}
.y211{bottom:869.093333pt;}
.y25b{bottom:882.533333pt;}
.y178{bottom:883.333333pt;}
.y8{bottom:883.973333pt;}
.y30{bottom:890.053333pt;}
.y210{bottom:890.213333pt;}
.y25a{bottom:904.453333pt;}
.y7{bottom:908.613333pt;}
.y2f{bottom:911.173333pt;}
.y177{bottom:911.333333pt;}
.y3{bottom:944.453333pt;}
.y173{bottom:944.613333pt;}
.y2{bottom:975.040000pt;}
.y172{bottom:975.200000pt;}
.y1{bottom:994.720000pt;}
.y171{bottom:994.880000pt;}
.h35{height:21.120000pt;}
.h5f{height:21.152000pt;}
.h5a{height:21.280000pt;}
.h5b{height:21.312000pt;}
.h5c{height:22.080000pt;}
.h5d{height:22.880000pt;}
.h5e{height:22.912000pt;}
.h58{height:22.923132pt;}
.h28{height:23.800805pt;}
.h45{height:23.866974pt;}
.h1a{height:23.866992pt;}
.h24{height:23.867046pt;}
.h15{height:25.333577pt;}
.h1d{height:25.333650pt;}
.h59{height:27.629377pt;}
.h4f{height:27.765533pt;}
.h4d{height:29.404827pt;}
.h4c{height:29.419463pt;}
.h7{height:33.918750pt;}
.h42{height:34.903786pt;}
.h5{height:34.975000pt;}
.h29{height:36.495182pt;}
.h2d{height:36.503403pt;}
.h2c{height:36.521573pt;}
.h18{height:36.563476pt;}
.h23{height:36.588487pt;}
.h1f{height:36.588884pt;}
.h21{height:36.592488pt;}
.h1b{height:36.596754pt;}
.h49{height:36.614970pt;}
.h16{height:36.672534pt;}
.h3f{height:36.964526pt;}
.h46{height:36.977335pt;}
.h3d{height:36.982925pt;}
.h68{height:37.163287pt;}
.h64{height:37.181313pt;}
.h66{height:37.205879pt;}
.h31{height:40.934483pt;}
.h61{height:41.122333pt;}
.h36{height:42.240000pt;}
.h54{height:42.272000pt;}
.h3b{height:42.400000pt;}
.h3a{height:42.432000pt;}
.hd{height:47.742188pt;}
.h14{height:47.869500pt;}
.h50{height:48.087292pt;}
.h2b{height:48.199607pt;}
.h1{height:49.622500pt;}
.h53{height:50.708013pt;}
.h4e{height:50.926394pt;}
.h52{height:50.951743pt;}
.h8{height:52.134375pt;}
.h9{height:52.478750pt;}
.he{height:52.834688pt;}
.h10{height:52.962000pt;}
.hb{height:53.375000pt;}
.h6{height:53.535000pt;}
.h11{height:54.390938pt;}
.h2{height:58.563750pt;}
.h34{height:58.810189pt;}
.h30{height:59.609618pt;}
.h43{height:59.749037pt;}
.h27{height:59.763318pt;}
.h19{height:59.788613pt;}
.h22{height:59.903989pt;}
.h33{height:62.282377pt;}
.h32{height:62.313379pt;}
.h2a{height:62.698351pt;}
.h62{height:62.781250pt;}
.h4{height:62.812500pt;}
.h2f{height:62.848556pt;}
.h47{height:62.857044pt;}
.h41{height:62.925984pt;}
.h48{height:63.031868pt;}
.h4a{height:63.105633pt;}
.h2e{height:63.129005pt;}
.h26{height:63.244357pt;}
.h40{height:63.276655pt;}
.h1c{height:63.291780pt;}
.h3e{height:63.308152pt;}
.h17{height:63.318568pt;}
.h25{height:63.323284pt;}
.h1e{height:63.350086pt;}
.h56{height:63.360000pt;}
.h55{height:63.392000pt;}
.h20{height:63.440756pt;}
.h39{height:63.520000pt;}
.ha{height:64.500000pt;}
.h12{height:66.404375pt;}
.h51{height:72.132925pt;}
.h3{height:75.465000pt;}
.h4b{height:86.199753pt;}
.h44{height:89.685152pt;}
.h38{height:105.792000pt;}
.h3c{height:195.057868pt;}
.h67{height:199.093333pt;}
.h37{height:211.706667pt;}
.h63{height:239.000000pt;}
.h60{height:267.999310pt;}
.hf{height:289.920000pt;}
.h13{height:317.920000pt;}
.hc{height:319.040000pt;}
.h65{height:358.466667pt;}
.h57{height:369.603935pt;}
.h0{height:1056.000000pt;}
.wb{width:17.932173pt;}
.w12{width:17.933105pt;}
.w13{width:19.999831pt;}
.w14{width:23.800092pt;}
.w29{width:40.320000pt;}
.w42{width:45.280000pt;}
.w17{width:53.760000pt;}
.w18{width:53.792000pt;}
.w19{width:53.952000pt;}
.w1b{width:54.080000pt;}
.w1c{width:54.112000pt;}
.w1d{width:54.240000pt;}
.w22{width:55.360000pt;}
.w21{width:55.392000pt;}
.w3e{width:58.400000pt;}
.w1a{width:62.720000pt;}
.w16{width:74.240000pt;}
.w27{width:75.520000pt;}
.w6{width:77.132917pt;}
.w1f{width:81.120000pt;}
.w2f{width:83.040000pt;}
.w33{width:87.520000pt;}
.w36{width:90.240000pt;}
.w3f{width:99.232000pt;}
.w2c{width:99.872000pt;}
.w5{width:101.136796pt;}
.w3b{width:101.600000pt;}
.w25{width:104.960000pt;}
.w23{width:104.992000pt;}
.w24{width:105.120000pt;}
.w26{width:105.152000pt;}
.w2b{width:106.240000pt;}
.w9{width:107.866116pt;}
.w35{width:109.440000pt;}
.w3d{width:115.072000pt;}
.w39{width:115.232000pt;}
.w2e{width:118.912000pt;}
.w2d{width:123.360000pt;}
.w38{width:124.960000pt;}
.w3a{width:126.592000pt;}
.w8{width:127.996847pt;}
.w7{width:139.994432pt;}
.w32{width:143.200000pt;}
.w34{width:146.746667pt;}
.we{width:152.960000pt;}
.w28{width:182.906667pt;}
.w41{width:184.666667pt;}
.wd{width:188.194087pt;}
.w31{width:188.346667pt;}
.w30{width:188.506667pt;}
.w10{width:197.786667pt;}
.w20{width:210.106667pt;}
.w2a{width:218.786667pt;}
.wf{width:258.786667pt;}
.w3c{width:278.266667pt;}
.wa{width:278.878891pt;}
.w44{width:298.262774pt;}
.w45{width:311.870706pt;}
.w43{width:348.546667pt;}
.w40{width:394.466667pt;}
.wc{width:552.785630pt;}
.w37{width:579.773333pt;}
.w11{width:590.052752pt;}
.w46{width:601.733333pt;}
.w3{width:612.000000pt;}
.w4{width:612.960000pt;}
.w2{width:616.000000pt;}
.w1e{width:622.725204pt;}
.w15{width:623.861732pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x32{left:1.932692pt;}
.x37{left:2.917885pt;}
.x52{left:4.875161pt;}
.x4b{left:6.880000pt;}
.x51{left:8.325847pt;}
.x42{left:11.709355pt;}
.x31{left:12.642040pt;}
.x4f{left:13.771374pt;}
.x36{left:15.318539pt;}
.x3d{left:16.660822pt;}
.x5c{left:17.728091pt;}
.x55{left:18.867241pt;}
.x34{left:21.101731pt;}
.xb2{left:22.080000pt;}
.x58{left:23.173354pt;}
.xb3{left:24.640000pt;}
.x96{left:26.482578pt;}
.x3c{left:27.404453pt;}
.x21{left:29.344000pt;}
.x4e{left:30.833632pt;}
.x6d{left:32.498143pt;}
.xb5{left:33.600000pt;}
.x3f{left:35.846730pt;}
.x1c{left:36.960000pt;}
.x5b{left:38.400306pt;}
.xa9{left:39.360000pt;}
.x1f{left:40.640000pt;}
.xb0{left:41.760000pt;}
.x1d{left:43.040000pt;}
.x6b{left:45.425898pt;}
.x1e{left:46.720000pt;}
.xbf{left:47.999988pt;}
.x53{left:50.588196pt;}
.x33{left:51.518509pt;}
.x6a{left:56.129037pt;}
.x29{left:57.600000pt;}
.x56{left:60.717963pt;}
.x45{left:62.340016pt;}
.x28{left:66.106667pt;}
.x70{left:68.874822pt;}
.x47{left:70.802052pt;}
.x27{left:72.866667pt;}
.x97{left:74.250401pt;}
.x26{left:79.613333pt;}
.x46{left:83.545649pt;}
.x3e{left:86.114182pt;}
.x66{left:88.187853pt;}
.x54{left:91.964269pt;}
.x44{left:92.934759pt;}
.x1{left:96.031988pt;}
.x5d{left:97.091788pt;}
.x5{left:101.791988pt;}
.x8{left:103.071988pt;}
.x7{left:107.711988pt;}
.x9{left:108.831988pt;}
.xae{left:109.952000pt;}
.xe{left:111.711988pt;}
.x57{left:113.047849pt;}
.x13{left:114.751988pt;}
.x1a{left:116.031988pt;}
.x60{left:118.013324pt;}
.x6c{left:120.114223pt;}
.xb{left:123.071988pt;}
.x14{left:124.031988pt;}
.x67{left:126.531801pt;}
.x12{left:128.351988pt;}
.xbe{left:132.031988pt;}
.x61{left:137.946655pt;}
.xbd{left:140.186655pt;}
.x15{left:144.346655pt;}
.x16{left:150.266655pt;}
.x10{left:154.106655pt;}
.xba{left:155.866667pt;}
.x8d{left:160.026667pt;}
.x9e{left:163.219142pt;}
.xa3{left:164.185615pt;}
.x4{left:166.746655pt;}
.x62{left:167.946667pt;}
.xa2{left:169.666523pt;}
.x68{left:170.787241pt;}
.x38{left:173.146655pt;}
.x11{left:177.306655pt;}
.x6f{left:179.993662pt;}
.x65{left:183.719303pt;}
.x69{left:188.166386pt;}
.x6e{left:190.696801pt;}
.x63{left:191.706655pt;}
.x64{left:194.422441pt;}
.x35{left:197.146655pt;}
.xd{left:198.586655pt;}
.x23{left:202.213333pt;}
.x3b{left:203.866655pt;}
.x59{left:208.080190pt;}
.x18{left:211.386655pt;}
.x8e{left:214.906667pt;}
.x3a{left:224.026655pt;}
.x2b{left:228.706667pt;}
.x98{left:231.457070pt;}
.x9f{left:233.898684pt;}
.x39{left:236.026655pt;}
.x4c{left:250.266667pt;}
.xaf{left:253.826667pt;}
.xac{left:259.746667pt;}
.x8f{left:269.666667pt;}
.x30{left:277.253333pt;}
.xa7{left:282.146667pt;}
.xad{left:284.546667pt;}
.x22{left:288.800000pt;}
.xa{left:296.066655pt;}
.xf{left:306.946655pt;}
.x24{left:309.826655pt;}
.x2a{left:324.186667pt;}
.xa0{left:326.489145pt;}
.x99{left:327.455613pt;}
.x86{left:331.586667pt;}
.x17{left:338.786655pt;}
.x9a{left:342.143428pt;}
.xc{left:346.306655pt;}
.xb4{left:351.426667pt;}
.x50{left:356.077906pt;}
.x6{left:368.386655pt;}
.x40{left:374.946655pt;}
.x90{left:379.266667pt;}
.x5a{left:380.588175pt;}
.xb6{left:381.506667pt;}
.xaa{left:383.106667pt;}
.x87{left:385.186667pt;}
.xa5{left:387.266667pt;}
.x9b{left:391.980261pt;}
.xbb{left:395.279964pt;}
.x2{left:401.986655pt;}
.x49{left:416.546630pt;}
.x91{left:434.173333pt;}
.x88{left:439.133333pt;}
.xa6{left:442.653333pt;}
.x84{left:457.640019pt;}
.x78{left:459.061362pt;}
.x7f{left:461.720996pt;}
.x71{left:462.733161pt;}
.x72{left:466.168075pt;}
.x41{left:468.413297pt;}
.x82{left:473.414765pt;}
.x7a{left:478.529446pt;}
.x7b{left:479.541617pt;}
.x9c{left:482.370729pt;}
.xa1{left:485.168411pt;}
.x43{left:486.333321pt;}
.x92{left:488.893333pt;}
.x89{left:492.893333pt;}
.x5e{left:493.949816pt;}
.xb7{left:496.573333pt;}
.x9d{left:499.843506pt;}
.xb9{left:505.053333pt;}
.x4d{left:509.693333pt;}
.x77{left:516.668807pt;}
.x7e{left:519.565330pt;}
.x79{left:521.115890pt;}
.x7d{left:522.375710pt;}
.x80{left:524.012414pt;}
.x2d{left:526.466667pt;}
.x73{left:528.556403pt;}
.x83{left:541.693051pt;}
.x93{left:543.613333pt;}
.x8a{left:546.653333pt;}
.xa8{left:547.613333pt;}
.x1b{left:548.773333pt;}
.x81{left:551.384020pt;}
.xb8{left:554.973333pt;}
.x7c{left:557.101694pt;}
.x76{left:564.671420pt;}
.x75{left:566.103530pt;}
.x2e{left:576.546667pt;}
.x2f{left:592.866667pt;}
.x20{left:595.840000pt;}
.x94{left:598.493333pt;}
.xb1{left:599.493333pt;}
.x8b{left:600.613333pt;}
.xab{left:601.893333pt;}
.x4a{left:604.773321pt;}
.x74{left:606.536423pt;}
.x48{left:648.933321pt;}
.x95{left:653.253333pt;}
.x8c{left:654.373333pt;}
.x3{left:683.813321pt;}
.x5f{left:686.213321pt;}
.xc0{left:698.053321pt;}
.xbc{left:707.173321pt;}
.x25{left:708.133321pt;}
.x2c{left:709.093321pt;}
.x19{left:712.133321pt;}
.xa4{left:718.853321pt;}
.x85{left:719.973321pt;}
}




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