
    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_1c4c191bdffa41e1444b55ad.woff')format("woff");}.ff1{font-family:ff1;line-height:1.057617;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_300916da9baf804545c62a92.woff')format("woff");}.ff2{font-family:ff2;line-height:0.751465;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_e3a707614439ee03ea7fa32b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ddf172fa4e4b08a4a9a40e8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_bb44b3ed1b05be50cc6a99f9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.688477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ed9d24a900065f4395fe831e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_bb6963778814c2b07b104167.woff')format("woff");}.ff7{font-family:ff7;line-height:0.998047;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_4698329002b35c74dd2b14b4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.004395;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_9d3b51ff4d4ccec6a02c0f02.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_701f797a7d984899aec35c25.woff')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_b4feb020e884746ba36338c3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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_01267d41edc41569f4588a97.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f094927b5b43db33b0ba4ada.woff')format("woff");}.ffd{font-family:ffd;line-height:0.972656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_af941ed6633ee8d988f03e4d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_aa637aff5deb788f50ce6179.woff')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c09ad175dcefcffc3a86e93e.woff')format("woff");}.ff10{font-family:ff10;line-height:0.738770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.739746;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;}
.m10{transform:matrix(0.216782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216782,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.235623,0.000000,-0.078533,0.237345,0,0);-ms-transform:matrix(0.235623,0.000000,-0.078533,0.237345,0,0);-webkit-transform:matrix(0.235623,0.000000,-0.078533,0.237345,0,0);}
.m32{transform:matrix(0.235673,0.000000,-0.078550,0.237339,0,0);-ms-transform:matrix(0.235673,0.000000,-0.078550,0.237339,0,0);-webkit-transform:matrix(0.235673,0.000000,-0.078550,0.237339,0,0);}
.m3b{transform:matrix(0.236262,0.000000,-0.078746,0.237274,0,0);-ms-transform:matrix(0.236262,0.000000,-0.078746,0.237274,0,0);-webkit-transform:matrix(0.236262,0.000000,-0.078746,0.237274,0,0);}
.m34{transform:matrix(0.237256,0.000000,-0.079077,0.237164,0,0);-ms-transform:matrix(0.237256,0.000000,-0.079077,0.237164,0,0);-webkit-transform:matrix(0.237256,0.000000,-0.079077,0.237164,0,0);}
.m1b{transform:matrix(0.238721,0.000000,-0.079565,0.237001,0,0);-ms-transform:matrix(0.238721,0.000000,-0.079565,0.237001,0,0);-webkit-transform:matrix(0.238721,0.000000,-0.079565,0.237001,0,0);}
.m36{transform:matrix(0.239050,0.000000,-0.079675,0.236964,0,0);-ms-transform:matrix(0.239050,0.000000,-0.079675,0.236964,0,0);-webkit-transform:matrix(0.239050,0.000000,-0.079675,0.236964,0,0);}
.m9{transform:matrix(0.239278,0.000000,-0.079751,0.236938,0,0);-ms-transform:matrix(0.239278,0.000000,-0.079751,0.236938,0,0);-webkit-transform:matrix(0.239278,0.000000,-0.079751,0.236938,0,0);}
.m19{transform:matrix(0.239770,0.000000,-0.079915,0.236883,0,0);-ms-transform:matrix(0.239770,0.000000,-0.079915,0.236883,0,0);-webkit-transform:matrix(0.239770,0.000000,-0.079915,0.236883,0,0);}
.m7{transform:matrix(0.239963,0.000000,-0.079979,0.236861,0,0);-ms-transform:matrix(0.239963,0.000000,-0.079979,0.236861,0,0);-webkit-transform:matrix(0.239963,0.000000,-0.079979,0.236861,0,0);}
.m39{transform:matrix(0.239963,0.000000,-0.079979,0.236861,0,0);-ms-transform:matrix(0.239963,0.000000,-0.079979,0.236861,0,0);-webkit-transform:matrix(0.239963,0.000000,-0.079979,0.236861,0,0);}
.mf{transform:matrix(0.240171,0.000000,-0.080049,0.236838,0,0);-ms-transform:matrix(0.240171,0.000000,-0.080049,0.236838,0,0);-webkit-transform:matrix(0.240171,0.000000,-0.080049,0.236838,0,0);}
.m17{transform:matrix(0.240532,0.000000,-0.080169,0.236797,0,0);-ms-transform:matrix(0.240532,0.000000,-0.080169,0.236797,0,0);-webkit-transform:matrix(0.240532,0.000000,-0.080169,0.236797,0,0);}
.m25{transform:matrix(0.240903,0.000000,-0.080293,0.236755,0,0);-ms-transform:matrix(0.240903,0.000000,-0.080293,0.236755,0,0);-webkit-transform:matrix(0.240903,0.000000,-0.080293,0.236755,0,0);}
.m1f{transform:matrix(0.241157,0.000000,-0.080377,0.236727,0,0);-ms-transform:matrix(0.241157,0.000000,-0.080377,0.236727,0,0);-webkit-transform:matrix(0.241157,0.000000,-0.080377,0.236727,0,0);}
.m21{transform:matrix(0.242086,0.000000,-0.080687,0.236621,0,0);-ms-transform:matrix(0.242086,0.000000,-0.080687,0.236621,0,0);-webkit-transform:matrix(0.242086,0.000000,-0.080687,0.236621,0,0);}
.m2d{transform:matrix(0.242086,0.000000,-0.080687,0.236621,0,0);-ms-transform:matrix(0.242086,0.000000,-0.080687,0.236621,0,0);-webkit-transform:matrix(0.242086,0.000000,-0.080687,0.236621,0,0);}
.m23{transform:matrix(0.242333,0.000000,-0.080769,0.236593,0,0);-ms-transform:matrix(0.242333,0.000000,-0.080769,0.236593,0,0);-webkit-transform:matrix(0.242333,0.000000,-0.080769,0.236593,0,0);}
.m29{transform:matrix(0.242333,0.000000,-0.080769,0.236593,0,0);-ms-transform:matrix(0.242333,0.000000,-0.080769,0.236593,0,0);-webkit-transform:matrix(0.242333,0.000000,-0.080769,0.236593,0,0);}
.mb{transform:matrix(0.242351,0.000000,-0.080775,0.236591,0,0);-ms-transform:matrix(0.242351,0.000000,-0.080775,0.236591,0,0);-webkit-transform:matrix(0.242351,0.000000,-0.080775,0.236591,0,0);}
.m3d{transform:matrix(0.242429,0.000000,-0.080802,0.236582,0,0);-ms-transform:matrix(0.242429,0.000000,-0.080802,0.236582,0,0);-webkit-transform:matrix(0.242429,0.000000,-0.080802,0.236582,0,0);}
.m3f{transform:matrix(0.242472,0.000000,-0.080816,0.236577,0,0);-ms-transform:matrix(0.242472,0.000000,-0.080816,0.236577,0,0);-webkit-transform:matrix(0.242472,0.000000,-0.080816,0.236577,0,0);}
.m1d{transform:matrix(0.242646,0.000000,-0.080874,0.236557,0,0);-ms-transform:matrix(0.242646,0.000000,-0.080874,0.236557,0,0);-webkit-transform:matrix(0.242646,0.000000,-0.080874,0.236557,0,0);}
.m5{transform:matrix(0.243864,0.000000,-0.081280,0.236418,0,0);-ms-transform:matrix(0.243864,0.000000,-0.081280,0.236418,0,0);-webkit-transform:matrix(0.243864,0.000000,-0.081280,0.236418,0,0);}
.m12{transform:matrix(0.244258,0.000000,-0.081411,0.236373,0,0);-ms-transform:matrix(0.244258,0.000000,-0.081411,0.236373,0,0);-webkit-transform:matrix(0.244258,0.000000,-0.081411,0.236373,0,0);}
.m14{transform:matrix(0.244354,0.000000,-0.081443,0.236362,0,0);-ms-transform:matrix(0.244354,0.000000,-0.081443,0.236362,0,0);-webkit-transform:matrix(0.244354,0.000000,-0.081443,0.236362,0,0);}
.md{transform:matrix(0.245453,0.000000,-0.081809,0.236236,0,0);-ms-transform:matrix(0.245453,0.000000,-0.081809,0.236236,0,0);-webkit-transform:matrix(0.245453,0.000000,-0.081809,0.236236,0,0);}
.m15{transform:matrix(0.245453,0.000000,-0.081809,0.236236,0,0);-ms-transform:matrix(0.245453,0.000000,-0.081809,0.236236,0,0);-webkit-transform:matrix(0.245453,0.000000,-0.081809,0.236236,0,0);}
.m3{transform:matrix(0.245781,0.000000,-0.081919,0.236198,0,0);-ms-transform:matrix(0.245781,0.000000,-0.081919,0.236198,0,0);-webkit-transform:matrix(0.245781,0.000000,-0.081919,0.236198,0,0);}
.m2f{transform:matrix(0.246781,0.000000,-0.082252,0.236082,0,0);-ms-transform:matrix(0.246781,0.000000,-0.082252,0.236082,0,0);-webkit-transform:matrix(0.246781,0.000000,-0.082252,0.236082,0,0);}
.m27{transform:matrix(0.247992,0.000000,-0.082656,0.235941,0,0);-ms-transform:matrix(0.247992,0.000000,-0.082656,0.235941,0,0);-webkit-transform:matrix(0.247992,0.000000,-0.082656,0.235941,0,0);}
.m37{transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248186,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248244,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248934,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);}
.m33{transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250097,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250585,0.000000,-0.083519,0.235636,0,0);-ms-transform:matrix(0.250585,0.000000,-0.083519,0.235636,0,0);-webkit-transform:matrix(0.250585,0.000000,-0.083519,0.235636,0,0);}
.m1a{transform:matrix(0.251814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251814,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252201,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252468,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253047,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253274,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253308,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253518,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254380,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254679,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.255773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255773,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.256065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256065,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.256086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256086,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.256229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256229,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.256435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256435,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.257874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257874,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.258339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258339,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.258453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258453,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.259754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259754,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.260143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260143,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261330,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.262769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262769,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.262769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262769,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.265859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265859,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.265859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265859,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-32.156318px;}
.v8{vertical-align:-30.706009px;}
.v2{vertical-align:-27.000000px;}
.v5{vertical-align:-17.566285px;}
.v3{vertical-align:-2.879880px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880252px;}
.va{vertical-align:17.818730px;}
.v1{vertical-align:27.000000px;}
.v6{vertical-align:42.611448px;}
.v9{vertical-align:60.120000px;}
.ls22{letter-spacing:-1.019681px;}
.ls18{letter-spacing:-0.725076px;}
.ls8{letter-spacing:-0.360000px;}
.ls2a{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.090000px;}
.ls17{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.009360px;}
.ls4{letter-spacing:0.054000px;}
.ls23{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.143940px;}
.lse{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.179940px;}
.ls0{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.180120px;}
.ls2{letter-spacing:0.300000px;}
.lsd{letter-spacing:0.300060px;}
.ls24{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.720000px;}
.ls26{letter-spacing:0.935694px;}
.lsf{letter-spacing:4.680000px;}
.ls12{letter-spacing:9.720000px;}
.ls11{letter-spacing:9.720060px;}
.ls13{letter-spacing:10.728000px;}
.ls20{letter-spacing:10.799940px;}
.ls16{letter-spacing:10.800000px;}
.ls21{letter-spacing:10.800120px;}
.ls28{letter-spacing:12.528000px;}
.ls1{letter-spacing:24.179940px;}
.ls29{letter-spacing:33.984000px;}
.ls27{letter-spacing:61.104000px;}
.ls1b{letter-spacing:61.968168px;}
.ls14{letter-spacing:63.024442px;}
.ls15{letter-spacing:64.296202px;}
.ls7{letter-spacing:88.104000px;}
.ls1d{letter-spacing:137.692503px;}
.ls1e{letter-spacing:137.975719px;}
.ls1c{letter-spacing:141.017454px;}
.ls1f{letter-spacing:146.557151px;}
.ls1a{letter-spacing:168.976473px;}
.ls19{letter-spacing:176.233769px;}
.ls6{letter-spacing:1580.910000px;}
.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;}
}
.ws7{word-spacing:-72.000000px;}
.ws1d{word-spacing:-41.754599px;}
.ws2e{word-spacing:-41.502467px;}
.ws28{word-spacing:-41.435643px;}
.wsf{word-spacing:-40.808618px;}
.ws2f{word-spacing:-39.274167px;}
.ws33{word-spacing:-39.270270px;}
.ws29{word-spacing:-39.211728px;}
.ws30{word-spacing:-18.818330px;}
.ws14{word-spacing:-18.283510px;}
.ws15{word-spacing:-18.248259px;}
.ws8{word-spacing:-18.144000px;}
.ws1f{word-spacing:-18.026508px;}
.ws0{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.991547px;}
.ws16{word-spacing:-17.939116px;}
.ws31{word-spacing:-17.882637px;}
.ws4{word-spacing:-17.640000px;}
.ws9{word-spacing:-17.557193px;}
.ws11{word-spacing:-17.504966px;}
.ws5{word-spacing:-17.496000px;}
.ws24{word-spacing:-17.352000px;}
.ws20{word-spacing:-17.143040px;}
.ws17{word-spacing:-16.971866px;}
.wsa{word-spacing:-16.832117px;}
.ws6{word-spacing:-11.970000px;}
.ws1{word-spacing:-11.880000px;}
.ws22{word-spacing:-10.668710px;}
.ws23{word-spacing:-10.632725px;}
.ws1b{word-spacing:-10.509563px;}
.ws2d{word-spacing:-10.423402px;}
.ws27{word-spacing:-10.406831px;}
.wse{word-spacing:-10.238531px;}
.ws2{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws1e{word-spacing:43.318245px;}
.ws21{word-spacing:43.976621px;}
.ws13{word-spacing:44.069759px;}
.ws12{word-spacing:45.331998px;}
.ws10{word-spacing:45.337736px;}
.ws1c{word-spacing:147.020839px;}
.ws32{word-spacing:269.458893px;}
.ws26{word-spacing:354.008286px;}
.ws2c{word-spacing:396.848670px;}
.ws2b{word-spacing:449.631151px;}
.ws25{word-spacing:451.209925px;}
.ws2a{word-spacing:521.848827px;}
.ws1a{word-spacing:729.793154px;}
.ws19{word-spacing:893.872202px;}
.wsd{word-spacing:2127.127058px;}
.wsc{word-spacing:2195.003938px;}
.wsb{word-spacing:2423.015147px;}
._36{margin-left:-590.565028px;}
._35{margin-left:-584.413278px;}
._30{margin-left:-536.719334px;}
._31{margin-left:-534.771582px;}
._37{margin-left:-488.360698px;}
._29{margin-left:-483.644838px;}
._39{margin-left:-478.299285px;}
._2a{margin-left:-473.067939px;}
._38{margin-left:-472.040335px;}
._2c{margin-left:-456.261118px;}
._2e{margin-left:-451.426704px;}
._26{margin-left:-448.798891px;}
._2f{margin-left:-447.679904px;}
._2d{margin-left:-445.844771px;}
._28{margin-left:-443.619445px;}
._27{margin-left:-437.807329px;}
._32{margin-left:-432.610968px;}
._33{margin-left:-428.798128px;}
._34{margin-left:-426.702484px;}
._4d{margin-left:-395.142376px;}
._4b{margin-left:-362.424323px;}
._4c{margin-left:-317.463428px;}
._63{margin-left:-315.523273px;}
._62{margin-left:-309.484439px;}
._47{margin-left:-305.864213px;}
._1f{margin-left:-300.353635px;}
._59{margin-left:-293.361552px;}
._5f{margin-left:-292.201080px;}
._4a{margin-left:-288.914045px;}
._48{margin-left:-284.340795px;}
._5d{margin-left:-282.184313px;}
._49{margin-left:-276.622014px;}
._60{margin-left:-274.526434px;}
._61{margin-left:-273.037894px;}
._5e{margin-left:-270.577585px;}
._5a{margin-left:-268.872282px;}
._56{margin-left:-265.278149px;}
._57{margin-left:-255.094848px;}
._58{margin-left:-252.936442px;}
._46{margin-left:-232.055846px;}
._65{margin-left:-225.358504px;}
._5b{margin-left:-204.222111px;}
._55{margin-left:-202.836505px;}
._5c{margin-left:-193.368566px;}
._24{margin-left:-191.477344px;}
._25{margin-left:-181.760430px;}
._64{margin-left:-174.090231px;}
._20{margin-left:-167.761322px;}
._42{margin-left:-165.769200px;}
._23{margin-left:-162.869995px;}
._22{margin-left:-157.057707px;}
._2b{margin-left:-151.843790px;}
._44{margin-left:-139.672124px;}
._45{margin-left:-121.434615px;}
._40{margin-left:-103.866166px;}
._41{margin-left:-98.928787px;}
._43{margin-left:-97.910569px;}
._3e{margin-left:-95.694154px;}
._3a{margin-left:-94.654482px;}
._52{margin-left:-92.368298px;}
._50{margin-left:-91.258093px;}
._54{margin-left:-85.059620px;}
._3b{margin-left:-83.619265px;}
._3c{margin-left:-82.395158px;}
._51{margin-left:-80.185689px;}
._3f{margin-left:-79.131854px;}
._3d{margin-left:-77.140042px;}
._4f{margin-left:-76.103137px;}
._21{margin-left:-68.611174px;}
._1e{margin-left:-58.881163px;}
._1b{margin-left:-52.561909px;}
._1d{margin-left:-51.048848px;}
._1c{margin-left:-45.932632px;}
._53{margin-left:-42.171927px;}
._6c{margin-left:-12.528000px;}
._18{margin-left:-10.728000px;}
._11{margin-left:-4.032000px;}
._4{margin-left:-2.664000px;}
._6{margin-left:-1.584000px;}
._2{width:1.090440px;}
._1{width:2.988000px;}
._0{width:4.134000px;}
._b{width:5.281560px;}
._9{width:6.840000px;}
._c{width:8.759880px;}
._3{width:10.127940px;}
._12{width:11.976060px;}
._a{width:13.248000px;}
._14{width:14.533560px;}
._5{width:15.552000px;}
._7{width:16.704000px;}
._d{width:19.296000px;}
._8{width:20.376000px;}
._16{width:22.320000px;}
._15{width:23.328000px;}
._13{width:25.344000px;}
._6d{width:26.352000px;}
._68{width:27.936000px;}
._10{width:29.232000px;}
._17{width:30.312000px;}
._66{width:32.904000px;}
._67{width:34.008000px;}
._f{width:38.160000px;}
._e{width:39.384000px;}
._19{width:45.504000px;}
._1a{width:46.656000px;}
._4e{width:111.600000px;}
._6a{width:182.880000px;}
._6b{width:184.032000px;}
._69{width:563.832000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs28{font-size:40.034791px;}
.fse{font-size:40.832298px;}
.fs7{font-size:40.954124px;}
.fs33{font-size:41.095111px;}
.fs39{font-size:41.627323px;}
.fs3c{font-size:41.693609px;}
.fs1c{font-size:41.773129px;}
.fs20{font-size:42.038253px;}
.fs19{font-size:42.530900px;}
.fs16{font-size:42.674841px;}
.fs5{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fs27{font-size:68.572161px;}
.fsd{font-size:70.019864px;}
.fs6{font-size:70.228772px;}
.fs11{font-size:71.110462px;}
.fs38{font-size:71.423913px;}
.fs3e{font-size:71.530546px;}
.fs3b{font-size:71.537646px;}
.fs1b{font-size:71.756464px;}
.fs1f{font-size:71.966189px;}
.fs1{font-size:72.000000px;}
.fs22{font-size:72.106031px;}
.fs2f{font-size:72.614810px;}
.fs30{font-size:72.614834px;}
.fs29{font-size:72.658150px;}
.fs2a{font-size:72.658174px;}
.fs2c{font-size:72.752009px;}
.fs2d{font-size:72.752102px;}
.fs18{font-size:72.993038px;}
.fs15{font-size:73.134041px;}
.fs10{font-size:73.911099px;}
.fs31{font-size:73.975085px;}
.fs12{font-size:74.056471px;}
.fs13{font-size:74.059953px;}
.fs14{font-size:74.099592px;}
.fsf{font-size:74.099616px;}
.fsb{font-size:74.100274px;}
.fs36{font-size:74.124275px;}
.fsa{font-size:74.124344px;}
.fsc{font-size:74.209026px;}
.fs34{font-size:74.237973px;}
.fs9{font-size:74.263279px;}
.fs8{font-size:74.332637px;}
.fs3a{font-size:75.474760px;}
.fs3d{font-size:75.596479px;}
.fs37{font-size:75.604978px;}
.fs1e{font-size:75.692247px;}
.fs2e{font-size:76.035191px;}
.fs24{font-size:76.035215px;}
.fs2b{font-size:76.044236px;}
.fs25{font-size:76.044260px;}
.fs21{font-size:76.055736px;}
.fs26{font-size:76.139814px;}
.fs23{font-size:76.149072px;}
.fs35{font-size:76.885006px;}
.fs1a{font-size:77.034918px;}
.fs32{font-size:77.092269px;}
.fs17{font-size:77.211683px;}
.fs4{font-size:83.880000px;}
.fs3{font-size:96.120000px;}
.fs1d{font-size:107.560303px;}
.y0{bottom:0.000000px;}
.yc2{bottom:2.988036px;}
.yac{bottom:2.988079px;}
.yb9{bottom:3.023191px;}
.yed{bottom:3.023209px;}
.yb2{bottom:3.023366px;}
.yd8{bottom:3.023457px;}
.y113{bottom:3.092267px;}
.y7f{bottom:3.117158px;}
.y7c{bottom:3.117184px;}
.y77{bottom:3.117304px;}
.y6d{bottom:3.117558px;}
.y72{bottom:3.118242px;}
.y70{bottom:3.118303px;}
.y69{bottom:3.126302px;}
.y13a{bottom:3.126362px;}
.y67{bottom:3.126418px;}
.y59{bottom:3.126864px;}
.y126{bottom:3.127101px;}
.y5e{bottom:3.127198px;}
.y5c{bottom:3.127316px;}
.y64{bottom:3.127405px;}
.yf8{bottom:3.146300px;}
.ye4{bottom:3.146369px;}
.ydd{bottom:3.147448px;}
.yc8{bottom:3.147459px;}
.yf2{bottom:3.147479px;}
.yd0{bottom:3.147660px;}
.y81{bottom:3.201289px;}
.y75{bottom:3.202094px;}
.y15f{bottom:3.843375px;}
.y167{bottom:3.850240px;}
.y16b{bottom:4.024248px;}
.y90{bottom:4.195765px;}
.y110{bottom:4.195851px;}
.y8e{bottom:4.196005px;}
.y8b{bottom:4.196040px;}
.y10e{bottom:4.196439px;}
.y117{bottom:4.231837px;}
.y97{bottom:4.231884px;}
.y93{bottom:4.231888px;}
.y99{bottom:4.232334px;}
.y119{bottom:4.232571px;}
.ya4{bottom:4.613792px;}
.y130{bottom:4.613907px;}
.y12f{bottom:4.613988px;}
.ya1{bottom:4.614317px;}
.y9d{bottom:4.614382px;}
.y12b{bottom:4.614601px;}
.yf6{bottom:7.399837px;}
.ye2{bottom:7.399908px;}
.yca{bottom:7.400474px;}
.ydf{bottom:7.400551px;}
.yd2{bottom:7.400796px;}
.ydb{bottom:7.400987px;}
.yc6{bottom:7.400996px;}
.yf0{bottom:7.401016px;}
.yce{bottom:7.401212px;}
.ycd{bottom:7.401283px;}
.yfa{bottom:7.401503px;}
.ye6{bottom:7.401615px;}
.y114{bottom:7.483004px;}
.y73{bottom:7.495555px;}
.y71{bottom:7.495616px;}
.y7e{bottom:7.495625px;}
.y7a{bottom:7.495669px;}
.y7b{bottom:7.495679px;}
.y79{bottom:7.495698px;}
.y76{bottom:7.495771px;}
.y80{bottom:7.495867px;}
.y7d{bottom:7.495937px;}
.y78{bottom:7.496012px;}
.y6c{bottom:7.496067px;}
.y6e{bottom:7.496310px;}
.yab{bottom:7.505820px;}
.yc1{bottom:7.505823px;}
.yc4{bottom:7.506159px;}
.y52{bottom:7.517908px;}
.y57{bottom:7.518365px;}
.y56{bottom:7.518395px;}
.y5f{bottom:7.518404px;}
.y58{bottom:7.518426px;}
.y5d{bottom:7.518523px;}
.y13b{bottom:7.518575px;}
.y5a{bottom:7.518669px;}
.y6a{bottom:7.518916px;}
.y61{bottom:7.518936px;}
.y10a{bottom:7.518970px;}
.y63{bottom:7.519006px;}
.y62{bottom:7.519012px;}
.y68{bottom:7.519033px;}
.y65{bottom:7.519193px;}
.y127{bottom:7.519315px;}
.yb6{bottom:7.540889px;}
.yea{bottom:7.540907px;}
.yec{bottom:7.540977px;}
.yeb{bottom:7.540983px;}
.yb0{bottom:7.540992px;}
.yb8{bottom:7.541003px;}
.yb7{bottom:7.541009px;}
.yaf{bottom:7.541066px;}
.yb1{bottom:7.541096px;}
.yef{bottom:7.541160px;}
.yd6{bottom:7.541201px;}
.yd7{bottom:7.541225px;}
.ybb{bottom:7.541269px;}
.yb4{bottom:7.541445px;}
.yda{bottom:7.541496px;}
.ya9{bottom:7.542238px;}
.y8c{bottom:10.293957px;}
.y10c{bottom:10.294272px;}
.y115{bottom:10.329523px;}
.y95{bottom:10.329542px;}
.y111{bottom:14.848713px;}
.y91{bottom:14.848718px;}
.y89{bottom:14.848842px;}
.y8a{bottom:14.848962px;}
.y10f{bottom:14.848993px;}
.y8f{bottom:14.849273px;}
.y92{bottom:14.885413px;}
.y94{bottom:14.885527px;}
.y118{bottom:14.885712px;}
.y98{bottom:14.885842px;}
.y9a{bottom:14.885919px;}
.y11a{bottom:14.886153px;}
.yf7{bottom:15.076304px;}
.ye3{bottom:15.076372px;}
.ydc{bottom:15.077451px;}
.yf1{bottom:15.077482px;}
.yc7{bottom:15.077546px;}
.ycf{bottom:15.077747px;}
.ya2{bottom:15.478043px;}
.y12d{bottom:15.478361px;}
.yad{bottom:15.545512px;}
.yc3{bottom:15.545657px;}
.yba{bottom:15.580099px;}
.yee{bottom:15.580116px;}
.yb3{bottom:15.580274px;}
.yd9{bottom:15.580409px;}
.yaa{bottom:15.581317px;}
.yf9{bottom:18.500400px;}
.ye5{bottom:18.500472px;}
.yde{bottom:18.501551px;}
.yc9{bottom:18.501559px;}
.yf3{bottom:18.501579px;}
.yd1{bottom:18.501901px;}
.ya0{bottom:25.689214px;}
.y12a{bottom:25.689468px;}
.y16c{bottom:29.246637px;}
.y160{bottom:29.465895px;}
.y161{bottom:29.466624px;}
.y169{bottom:29.512830px;}
.y168{bottom:29.513560px;}
.y9c{bottom:30.157289px;}
.y9e{bottom:30.157297px;}
.ya3{bottom:30.157716px;}
.y12e{bottom:30.158167px;}
.y8d{bottom:31.456468px;}
.y10d{bottom:31.456906px;}
.y116{bottom:31.493038px;}
.y96{bottom:31.493082px;}
.y9f{bottom:40.512796px;}
.y12c{bottom:40.513063px;}
.y5{bottom:46.620000px;}
.y4{bottom:64.620000px;}
.y3{bottom:82.620000px;}
.y1a4{bottom:101.430000px;}
.y14c{bottom:105.660006px;}
.y19f{bottom:113.940000px;}
.y188{bottom:114.480000px;}
.y11c{bottom:117.090000px;}
.y25{bottom:119.250000px;}
.y1cb{bottom:122.130000px;}
.y1aa{bottom:125.910000px;}
.y164{bottom:130.140000px;}
.y14b{bottom:130.140006px;}
.y1a3{bottom:132.030000px;}
.y86{bottom:132.480000px;}
.y4f{bottom:136.170000px;}
.y189{bottom:136.980000px;}
.y19e{bottom:139.410000px;}
.y187{bottom:139.950000px;}
.y11b{bottom:141.480000px;}
.y24{bottom:144.810000px;}
.y1ca{bottom:147.690000px;}
.y1a9{bottom:151.380000px;}
.y163{bottom:154.530000px;}
.y14a{bottom:154.530006px;}
.y85{bottom:157.950000px;}
.y4e{bottom:162.450000px;}
.y112{bottom:162.810000px;}
.y10b{bottom:162.885000px;}
.y19d{bottom:164.880000px;}
.y186{bottom:165.510000px;}
.y23{bottom:170.280000px;}
.y109{bottom:170.385000px;}
.y1c9{bottom:173.160000px;}
.y108{bottom:173.511795px;}
.y1a8{bottom:176.850000px;}
.y107{bottom:177.840000px;}
.y149{bottom:179.010000px;}
.y84{bottom:183.510000px;}
.y4d{bottom:188.010000px;}
.y19c{bottom:190.440000px;}
.y185{bottom:190.980000px;}
.y22{bottom:195.750000px;}
.y15e{bottom:198.435000px;}
.y1c8{bottom:198.630000px;}
.y148{bottom:203.490000px;}
.y1a7{bottom:207.270000px;}
.y4c{bottom:213.480000px;}
.y83{bottom:213.840000px;}
.y106{bottom:214.830000px;}
.y19b{bottom:215.910000px;}
.y162{bottom:216.360000px;}
.y15d{bottom:216.360150px;}
.y184{bottom:216.450000px;}
.y21{bottom:221.310000px;}
.y1c7{bottom:224.190000px;}
.y147{bottom:227.910000px;}
.y4b{bottom:238.980000px;}
.y105{bottom:239.340000px;}
.y19a{bottom:241.410000px;}
.y183{bottom:242.040000px;}
.y1c6{bottom:249.690000px;}
.y146{bottom:252.390000px;}
.y15c{bottom:252.390150px;}
.y20{bottom:253.920000px;}
.y104{bottom:263.730000px;}
.y4a{bottom:264.540000px;}
.y199{bottom:266.970000px;}
.y182{bottom:267.510000px;}
.y1c5{bottom:275.160000px;}
.y15b{bottom:276.870150px;}
.y145{bottom:278.400000px;}
.y103{bottom:288.210000px;}
.y49{bottom:290.010000px;}
.y198{bottom:292.440000px;}
.y181{bottom:292.980000px;}
.y1f{bottom:295.950000px;}
.y175{bottom:296.040150px;}
.y1c4{bottom:300.720000px;}
.y15a{bottom:301.260150px;}
.y102{bottom:312.690000px;}
.y48{bottom:315.480000px;}
.y1e{bottom:315.570000px;}
.y197{bottom:317.910000px;}
.y174{bottom:321.510150px;}
.y180{bottom:325.650000px;}
.y155{bottom:325.740150px;}
.y1c3{bottom:326.190000px;}
.y1d{bottom:336.180000px;}
.y101{bottom:337.170000px;}
.y47{bottom:341.040000px;}
.y196{bottom:343.470000px;}
.y173{bottom:346.980150px;}
.y154{bottom:350.220150px;}
.y1c2{bottom:351.660000px;}
.y100{bottom:361.560000px;}
.y17f{bottom:366.240000px;}
.y46{bottom:366.510000px;}
.y195{bottom:370.470000px;}
.y153{bottom:374.610150px;}
.y172{bottom:376.590150px;}
.y1c{bottom:376.770000px;}
.y1c1{bottom:377.220000px;}
.yff{bottom:386.040000px;}
.y17e{bottom:391.710000px;}
.y45{bottom:391.980000px;}
.y152{bottom:399.090150px;}
.y1b{bottom:402.240000px;}
.y1c0{bottom:402.690000px;}
.y17d{bottom:417.180000px;}
.y44{bottom:417.540000px;}
.yfe{bottom:422.490000px;}
.y151{bottom:423.570150px;}
.y1a{bottom:427.710000px;}
.y1bf{bottom:428.160000px;}
.y17c{bottom:442.740000px;}
.y43{bottom:443.010000px;}
.yfd{bottom:446.970000px;}
.y159{bottom:447.960150px;}
.y150{bottom:451.830150px;}
.y19{bottom:453.270000px;}
.y1be{bottom:453.720000px;}
.y17b{bottom:468.210000px;}
.y42{bottom:468.480000px;}
.yfc{bottom:471.360000px;}
.y158{bottom:472.440150px;}
.y18{bottom:478.740000px;}
.y1bd{bottom:479.190000px;}
.y41{bottom:494.040000px;}
.yfb{bottom:495.840000px;}
.y17a{bottom:497.460000px;}
.y157{bottom:500.160150px;}
.y82{bottom:502.410000px;}
.y17{bottom:504.210000px;}
.y1bc{bottom:504.660000px;}
.y40{bottom:519.510000px;}
.yf5{bottom:523.860000px;}
.y16{bottom:529.770000px;}
.y1bb{bottom:530.220000px;}
.yf4{bottom:531.300000px;}
.y6b{bottom:534.135000px;}
.y74{bottom:538.635000px;}
.y6f{bottom:541.560000px;}
.y3f{bottom:544.980000px;}
.y144{bottom:545.790000px;}
.y15{bottom:555.240000px;}
.y1ba{bottom:555.690000px;}
.y1a2{bottom:567.030000px;}
.y143{bottom:570.270000px;}
.y3e{bottom:570.540000px;}
.ye9{bottom:572.835000px;}
.ye8{bottom:580.260000px;}
.y14{bottom:580.710000px;}
.y1b9{bottom:581.160000px;}
.y60{bottom:583.035000px;}
.y66{bottom:590.520000px;}
.y1a1{bottom:592.590000px;}
.y142{bottom:594.660000px;}
.y3d{bottom:596.010000px;}
.y13{bottom:606.270000px;}
.y1b8{bottom:606.720000px;}
.ye7{bottom:618.060000px;}
.y141{bottom:619.140000px;}
.y3c{bottom:621.480000px;}
.y1a0{bottom:623.280000px;}
.y12{bottom:631.740000px;}
.y55{bottom:631.935000px;}
.y1b7{bottom:632.190000px;}
.y5b{bottom:639.390000px;}
.y140{bottom:643.620000px;}
.ye1{bottom:646.185000px;}
.y3b{bottom:647.070000px;}
.y1ce{bottom:652.830000px;}
.ye0{bottom:653.640000px;}
.y11{bottom:657.240000px;}
.y1b6{bottom:657.690000px;}
.y1a6{bottom:666.960000px;}
.y13f{bottom:668.040000px;}
.y3a{bottom:672.540000px;}
.y54{bottom:674.610000px;}
.y1b5{bottom:683.250000px;}
.y1cd{bottom:690.360000px;}
.y171{bottom:690.360150px;}
.y13e{bottom:692.520000px;}
.yd5{bottom:695.010000px;}
.y39{bottom:698.010000px;}
.y1a5{bottom:698.550000px;}
.y53{bottom:700.170000px;}
.yd4{bottom:702.510000px;}
.y1b4{bottom:708.720000px;}
.y170{bottom:715.920150px;}
.y13d{bottom:717.000000px;}
.y14f{bottom:717.000150px;}
.y38{bottom:723.570000px;}
.y1cc{bottom:727.890000px;}
.y51{bottom:731.835000px;}
.y1b3{bottom:734.190000px;}
.yd3{bottom:740.400000px;}
.y14e{bottom:741.390150px;}
.y139{bottom:747.585000px;}
.y37{bottom:749.040000px;}
.y13c{bottom:755.070000px;}
.y138{bottom:755.070150px;}
.y1b2{bottom:759.750000px;}
.y14d{bottom:765.870150px;}
.ycc{bottom:768.360000px;}
.y36{bottom:774.510000px;}
.ycb{bottom:775.860000px;}
.y1b1{bottom:785.220000px;}
.y179{bottom:787.110000px;}
.y137{bottom:790.350150px;}
.y35{bottom:800.070000px;}
.y1b0{bottom:810.690000px;}
.y178{bottom:812.670000px;}
.y136{bottom:814.740000px;}
.yc0{bottom:817.260000px;}
.yc5{bottom:824.730000px;}
.ybf{bottom:824.730150px;}
.y10{bottom:824.940000px;}
.y34{bottom:825.540000px;}
.y1af{bottom:836.250000px;}
.y177{bottom:838.140000px;}
.y135{bottom:839.220000px;}
.y194{bottom:847.500000px;}
.yf{bottom:849.600150px;}
.y33{bottom:851.010000px;}
.y132{bottom:858.120000px;}
.y1ae{bottom:861.720000px;}
.ybe{bottom:862.620150px;}
.y134{bottom:863.700000px;}
.y176{bottom:867.930000px;}
.y193{bottom:875.760000px;}
.y32{bottom:876.570000px;}
.ye{bottom:880.830000px;}
.y156{bottom:882.510000px;}
.ybd{bottom:887.100150px;}
.y1ad{bottom:887.190000px;}
.y133{bottom:888.090000px;}
.yd{bottom:901.500000px;}
.y31{bottom:902.040000px;}
.y192{bottom:904.110000px;}
.ybc{bottom:911.490000px;}
.y1ac{bottom:912.750000px;}
.y129{bottom:914.160000px;}
.y131{bottom:914.190000px;}
.yc{bottom:926.970000px;}
.y30{bottom:927.510000px;}
.y191{bottom:932.370000px;}
.y125{bottom:936.660000px;}
.yae{bottom:941.160000px;}
.y128{bottom:944.160000px;}
.y124{bottom:944.160300px;}
.yb5{bottom:948.660000px;}
.y1ab{bottom:952.260000px;}
.y2f{bottom:953.070000px;}
.yb{bottom:959.190000px;}
.y190{bottom:960.720000px;}
.ya{bottom:978.000000px;}
.y2e{bottom:978.540000px;}
.y16f{bottom:985.920150px;}
.y123{bottom:985.920300px;}
.y18f{bottom:989.070000px;}
.ya8{bottom:990.060000px;}
.ya7{bottom:997.530000px;}
.y2d{bottom:1004.010000px;}
.y16e{bottom:1010.400000px;}
.y122{bottom:1010.400150px;}
.y18e{bottom:1017.330000px;}
.y9{bottom:1020.300000px;}
.y2c{bottom:1029.570000px;}
.ya6{bottom:1033.800000px;}
.y16d{bottom:1034.790000px;}
.y121{bottom:1034.790150px;}
.y8{bottom:1044.420000px;}
.y18d{bottom:1045.680000px;}
.y166{bottom:1054.185000px;}
.y2b{bottom:1055.040000px;}
.ya5{bottom:1058.190000px;}
.y120{bottom:1059.270150px;}
.y16a{bottom:1072.260000px;}
.y165{bottom:1072.260150px;}
.y18c{bottom:1074.060000px;}
.y2a{bottom:1080.540000px;}
.y11f{bottom:1083.780150px;}
.y9b{bottom:1085.235000px;}
.y7{bottom:1088.370000px;}
.y88{bottom:1100.235000px;}
.y18b{bottom:1102.320000px;}
.y29{bottom:1106.100000px;}
.y11e{bottom:1108.170150px;}
.y6{bottom:1113.570000px;}
.y87{bottom:1115.280000px;}
.y18a{bottom:1130.670000px;}
.y28{bottom:1131.570000px;}
.y50{bottom:1131.660000px;}
.y11d{bottom:1132.650000px;}
.y2{bottom:1151.370000px;}
.y27{bottom:1154.970000px;}
.y1{bottom:1172.160000px;}
.y26{bottom:1173.780000px;}
.h21{height:18.000000px;}
.h1c{height:24.975000px;}
.h5a{height:25.049700px;}
.h12{height:25.050000px;}
.h3e{height:27.000000px;}
.h4e{height:27.797594px;}
.h4c{height:27.953980px;}
.h3d{height:29.004585px;}
.h38{height:29.167761px;}
.h40{height:29.188670px;}
.h34{height:29.530732px;}
.h2d{height:29.630676px;}
.h62{height:29.696868px;}
.h5d{height:29.797374px;}
.h4a{height:30.225000px;}
.h4d{height:30.514799px;}
.h1e{height:31.122665px;}
.h16{height:31.215521px;}
.h5f{height:31.322982px;}
.h3a{height:31.839773px;}
.h43{height:32.041852px;}
.h32{height:32.417351px;}
.h2b{height:32.527064px;}
.h9{height:33.431836px;}
.he{height:34.624160px;}
.h3{height:36.571289px;}
.h4{height:37.705078px;}
.h71{height:39.049805px;}
.hd{height:41.159180px;}
.hc{height:43.475449px;}
.h28{height:43.725000px;}
.h5{height:44.062559px;}
.h6f{height:46.275000px;}
.h65{height:47.473500px;}
.h6a{height:47.548500px;}
.h4b{height:47.879976px;}
.h24{height:48.890823px;}
.h15{height:49.036692px;}
.h22{height:49.374550px;}
.h69{height:49.592190px;}
.h6e{height:49.671158px;}
.h66{height:49.871189px;}
.h70{height:49.945645px;}
.h6b{height:49.950602px;}
.h37{height:50.103390px;}
.h45{height:50.249829px;}
.ha{height:50.273438px;}
.h57{height:50.419072px;}
.h58{height:50.419089px;}
.h4f{height:50.449165px;}
.h50{height:50.449182px;}
.h53{height:50.514334px;}
.h54{height:50.514399px;}
.h35{height:50.681689px;}
.h2e{height:50.779593px;}
.hb{height:50.800781px;}
.h2f{height:50.966818px;}
.h29{height:51.065273px;}
.h20{height:51.319132px;}
.h5b{height:51.363560px;}
.h23{height:51.420069px;}
.h26{height:51.422487px;}
.h27{height:51.450010px;}
.h1f{height:51.450026px;}
.h19{height:51.450483px;}
.h63{height:51.467148px;}
.h18{height:51.467196px;}
.h1b{height:51.525993px;}
.h60{height:51.546092px;}
.h17{height:51.563663px;}
.h14{height:51.611821px;}
.h59{height:52.207031px;}
.h68{height:52.404838px;}
.hf{height:52.417969px;}
.h6d{height:52.489352px;}
.h64{height:52.495253px;}
.h3c{height:52.555847px;}
.h2{height:52.769531px;}
.h56{height:52.793966px;}
.h46{height:52.793982px;}
.h52{height:52.800246px;}
.h48{height:52.800263px;}
.h41{height:52.808231px;}
.h49{height:52.866609px;}
.h44{height:52.873037px;}
.h1d{height:53.369633px;}
.h25{height:53.369811px;}
.h61{height:53.384023px;}
.h33{height:53.488112px;}
.h5c{height:53.527933px;}
.h1a{height:53.528686px;}
.h13{height:53.528864px;}
.h2c{height:53.610847px;}
.h10{height:54.421875px;}
.h67{height:54.439809px;}
.h6c{height:54.526497px;}
.h39{height:54.693281px;}
.h47{height:54.852780px;}
.h55{height:54.852955px;}
.h3f{height:54.853135px;}
.h51{height:54.853316px;}
.h42{height:54.959724px;}
.h31{height:55.635806px;}
.h36{height:58.500000px;}
.h7{height:59.182910px;}
.h8{height:60.431836px;}
.h11{height:60.679688px;}
.h6{height:65.096895px;}
.h3b{height:81.983219px;}
.h30{height:98.250133px;}
.h2a{height:98.354729px;}
.h5e{height:110.393438px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:13.500000px;}
.w16{width:21.225000px;}
.w14{width:22.499550px;}
.w6{width:23.700000px;}
.w5{width:23.776500px;}
.w9{width:27.001500px;}
.w17{width:38.550000px;}
.w15{width:40.500000px;}
.w18{width:45.001500px;}
.wc{width:61.723500px;}
.w7{width:63.000000px;}
.wb{width:64.198500px;}
.w4{width:64.275000px;}
.w8{width:66.226500px;}
.w11{width:66.303000px;}
.w12{width:72.001500px;}
.w13{width:73.272000px;}
.we{width:77.773500px;}
.wd{width:79.726500px;}
.wf{width:84.300000px;}
.w1b{width:135.000000px;}
.w19{width:172.191000px;}
.w1a{width:187.653000px;}
.w10{width:289.125000px;}
.w3{width:720.811500px;}
.w2{width:892.979986px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:1.282802px;}
.x15{left:2.976139px;}
.x40{left:4.544744px;}
.x36{left:6.677349px;}
.x41{left:8.283022px;}
.x35{left:11.493829px;}
.x61{left:12.688748px;}
.x14{left:14.190499px;}
.x1d{left:15.352834px;}
.x37{left:18.828535px;}
.x56{left:21.729044px;}
.x1b{left:23.066002px;}
.x13{left:24.170815px;}
.x4a{left:26.205939px;}
.x1c{left:28.976876px;}
.x3a{left:30.578250px;}
.x4c{left:32.184406px;}
.x3f{left:34.782206px;}
.x2d{left:37.860815px;}
.x12{left:39.632106px;}
.x49{left:41.696408px;}
.x39{left:43.704267px;}
.x54{left:48.305707px;}
.x2c{left:52.729478px;}
.x11{left:54.765443px;}
.x22{left:56.568087px;}
.x52{left:63.194345px;}
.x58{left:64.403755px;}
.x3e{left:66.815974px;}
.x38{left:67.919531px;}
.x34{left:70.129470px;}
.x3d{left:75.245944px;}
.x6b{left:81.513557px;}
.x70{left:89.233152px;}
.x6d{left:109.597871px;}
.x76{left:112.796527px;}
.x3{left:114.840000px;}
.x73{left:119.892893px;}
.x10{left:121.620000px;}
.x4{left:123.390000px;}
.x72{left:132.257500px;}
.x65{left:136.530000px;}
.x7{left:137.610015px;}
.x80{left:141.870000px;}
.x6c{left:161.633072px;}
.x7f{left:162.929986px;}
.x42{left:165.945000px;}
.x6a{left:167.745000px;}
.xc{left:168.870000px;}
.x6f{left:173.745000px;}
.x71{left:177.077537px;}
.x33{left:181.920000px;}
.x8{left:185.340015px;}
.x23{left:187.860000px;}
.x5b{left:201.495000px;}
.x83{left:206.220000px;}
.x9{left:210.270015px;}
.x5a{left:213.722441px;}
.x45{left:221.049523px;}
.x5c{left:223.950000px;}
.x44{left:233.914792px;}
.x1e{left:237.795000px;}
.x16{left:239.070000px;}
.x5d{left:241.320000px;}
.xb{left:242.759985px;}
.x24{left:244.020000px;}
.x5{left:246.720000px;}
.x6{left:250.770000px;}
.x84{left:260.310030px;}
.x1f{left:261.570000px;}
.x18{left:262.830000px;}
.x25{left:271.020000px;}
.x43{left:274.541643px;}
.x7e{left:277.859986px;}
.x5e{left:281.820000px;}
.x4b{left:290.445000px;}
.x20{left:294.270000px;}
.x19{left:295.545000px;}
.x26{left:303.720000px;}
.x68{left:309.809985px;}
.x21{left:318.000000px;}
.x1a{left:319.260000px;}
.x85{left:327.990000px;}
.x27{left:330.690000px;}
.x66{left:333.045000px;}
.xa{left:338.790000px;}
.x6e{left:339.960000px;}
.x4d{left:356.700000px;}
.x7d{left:358.319987px;}
.x74{left:361.380000px;}
.x57{left:362.550000px;}
.x4e{left:364.170045px;}
.x55{left:381.345000px;}
.x4f{left:382.395000px;}
.x75{left:385.995000px;}
.x28{left:401.745000px;}
.x5f{left:402.780000px;}
.x3b{left:408.270000px;}
.x7b{left:411.780000px;}
.x29{left:415.245000px;}
.x69{left:416.280000px;}
.x50{left:446.640000px;}
.x51{left:456.795000px;}
.x3c{left:477.195000px;}
.x2a{left:479.490000px;}
.x46{left:480.930000px;}
.x2b{left:489.570000px;}
.x1{left:508.560000px;}
.x77{left:520.980000px;}
.x53{left:528.810000px;}
.x59{left:530.430000px;}
.x2e{left:551.310000px;}
.x47{left:557.970000px;}
.x2f{left:561.495000px;}
.x60{left:568.920000px;}
.xf{left:590.107135px;}
.x62{left:592.710000px;}
.x63{left:610.095000px;}
.x2{left:620.340000px;}
.x30{left:627.720000px;}
.x31{left:641.220000px;}
.x48{left:648.060000px;}
.x64{left:655.080000px;}
.xe{left:712.652784px;}
.x32{left:715.650000px;}
.x82{left:757.080000px;}
.xd{left:758.969986px;}
.x79{left:771.930015px;}
.x7a{left:776.430000px;}
.x7c{left:778.229986px;}
.x78{left:785.430000px;}
.x81{left:816.930090px;}
.x67{left:819.179985px;}
@media print{
.v7{vertical-align:-28.583394pt;}
.v8{vertical-align:-27.294230pt;}
.v2{vertical-align:-24.000000pt;}
.v5{vertical-align:-15.614476pt;}
.v3{vertical-align:-2.559893pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560224pt;}
.va{vertical-align:15.838871pt;}
.v1{vertical-align:24.000000pt;}
.v6{vertical-align:37.876843pt;}
.v9{vertical-align:53.440000pt;}
.ls22{letter-spacing:-0.906383pt;}
.ls18{letter-spacing:-0.644512pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls17{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008320pt;}
.ls4{letter-spacing:0.048000pt;}
.ls23{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.127947pt;}
.lse{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.159947pt;}
.ls0{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.160107pt;}
.ls2{letter-spacing:0.266667pt;}
.lsd{letter-spacing:0.266720pt;}
.ls24{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls26{letter-spacing:0.831728pt;}
.lsf{letter-spacing:4.160000pt;}
.ls12{letter-spacing:8.640000pt;}
.ls11{letter-spacing:8.640053pt;}
.ls13{letter-spacing:9.536000pt;}
.ls20{letter-spacing:9.599947pt;}
.ls16{letter-spacing:9.600000pt;}
.ls21{letter-spacing:9.600107pt;}
.ls28{letter-spacing:11.136000pt;}
.ls1{letter-spacing:21.493280pt;}
.ls29{letter-spacing:30.208000pt;}
.ls27{letter-spacing:54.314667pt;}
.ls1b{letter-spacing:55.082816pt;}
.ls14{letter-spacing:56.021726pt;}
.ls15{letter-spacing:57.152179pt;}
.ls7{letter-spacing:78.314667pt;}
.ls1d{letter-spacing:122.393336pt;}
.ls1e{letter-spacing:122.645083pt;}
.ls1c{letter-spacing:125.348848pt;}
.ls1f{letter-spacing:130.273023pt;}
.ls1a{letter-spacing:150.201309pt;}
.ls19{letter-spacing:156.652239pt;}
.ls6{letter-spacing:1405.253333pt;}
.ws7{word-spacing:-64.000000pt;}
.ws1d{word-spacing:-37.115199pt;}
.ws2e{word-spacing:-36.891082pt;}
.ws28{word-spacing:-36.831683pt;}
.wsf{word-spacing:-36.274327pt;}
.ws2f{word-spacing:-34.910371pt;}
.ws33{word-spacing:-34.906907pt;}
.ws29{word-spacing:-34.854870pt;}
.ws30{word-spacing:-16.727405pt;}
.ws14{word-spacing:-16.252009pt;}
.ws15{word-spacing:-16.220675pt;}
.ws8{word-spacing:-16.128000pt;}
.ws1f{word-spacing:-16.023563pt;}
.ws0{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.992487pt;}
.ws16{word-spacing:-15.945881pt;}
.ws31{word-spacing:-15.895677pt;}
.ws4{word-spacing:-15.680000pt;}
.ws9{word-spacing:-15.606394pt;}
.ws11{word-spacing:-15.559970pt;}
.ws5{word-spacing:-15.552000pt;}
.ws24{word-spacing:-15.424000pt;}
.ws20{word-spacing:-15.238258pt;}
.ws17{word-spacing:-15.086103pt;}
.wsa{word-spacing:-14.961882pt;}
.ws6{word-spacing:-10.640000pt;}
.ws1{word-spacing:-10.560000pt;}
.ws22{word-spacing:-9.483298pt;}
.ws23{word-spacing:-9.451311pt;}
.ws1b{word-spacing:-9.341834pt;}
.ws2d{word-spacing:-9.265246pt;}
.ws27{word-spacing:-9.250516pt;}
.wse{word-spacing:-9.100916pt;}
.ws2{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1e{word-spacing:38.505106pt;}
.ws21{word-spacing:39.090329pt;}
.ws13{word-spacing:39.173119pt;}
.ws12{word-spacing:40.295110pt;}
.ws10{word-spacing:40.300210pt;}
.ws1c{word-spacing:130.685190pt;}
.ws32{word-spacing:239.519016pt;}
.ws26{word-spacing:314.674032pt;}
.ws2c{word-spacing:352.754373pt;}
.ws2b{word-spacing:399.672134pt;}
.ws25{word-spacing:401.075489pt;}
.ws2a{word-spacing:463.865624pt;}
.ws1a{word-spacing:648.705026pt;}
.ws19{word-spacing:794.553069pt;}
.wsd{word-spacing:1890.779607pt;}
.wsc{word-spacing:1951.114611pt;}
.wsb{word-spacing:2153.791242pt;}
._36{margin-left:-524.946692pt;}
._35{margin-left:-519.478469pt;}
._30{margin-left:-477.083852pt;}
._31{margin-left:-475.352518pt;}
._37{margin-left:-434.098398pt;}
._29{margin-left:-429.906523pt;}
._39{margin-left:-425.154920pt;}
._2a{margin-left:-420.504834pt;}
._38{margin-left:-419.591409pt;}
._2c{margin-left:-405.565439pt;}
._2e{margin-left:-401.268181pt;}
._26{margin-left:-398.932348pt;}
._2f{margin-left:-397.937692pt;}
._2d{margin-left:-396.306463pt;}
._28{margin-left:-394.328395pt;}
._27{margin-left:-389.162070pt;}
._32{margin-left:-384.543083pt;}
._33{margin-left:-381.153892pt;}
._34{margin-left:-379.291097pt;}
._4d{margin-left:-351.237668pt;}
._4b{margin-left:-322.154953pt;}
._4c{margin-left:-282.189714pt;}
._63{margin-left:-280.465132pt;}
._62{margin-left:-275.097279pt;}
._47{margin-left:-271.879301pt;}
._1f{margin-left:-266.981009pt;}
._59{margin-left:-260.765824pt;}
._5f{margin-left:-259.734294pt;}
._4a{margin-left:-256.812484pt;}
._48{margin-left:-252.747373pt;}
._5d{margin-left:-250.830501pt;}
._49{margin-left:-245.886235pt;}
._60{margin-left:-244.023497pt;}
._61{margin-left:-242.700351pt;}
._5e{margin-left:-240.513409pt;}
._5a{margin-left:-238.997584pt;}
._56{margin-left:-235.802799pt;}
._57{margin-left:-226.750976pt;}
._58{margin-left:-224.832393pt;}
._46{margin-left:-206.271863pt;}
._65{margin-left:-200.318670pt;}
._5b{margin-left:-181.530765pt;}
._55{margin-left:-180.299116pt;}
._5c{margin-left:-171.883170pt;}
._24{margin-left:-170.202083pt;}
._25{margin-left:-161.564826pt;}
._64{margin-left:-154.746872pt;}
._20{margin-left:-149.121175pt;}
._42{margin-left:-147.350400pt;}
._23{margin-left:-144.773329pt;}
._22{margin-left:-139.606850pt;}
._2b{margin-left:-134.972258pt;}
._44{margin-left:-124.152999pt;}
._45{margin-left:-107.941880pt;}
._40{margin-left:-92.325480pt;}
._41{margin-left:-87.936699pt;}
._43{margin-left:-87.031617pt;}
._3e{margin-left:-85.061470pt;}
._3a{margin-left:-84.137317pt;}
._52{margin-left:-82.105154pt;}
._50{margin-left:-81.118305pt;}
._54{margin-left:-75.608551pt;}
._3b{margin-left:-74.328236pt;}
._3c{margin-left:-73.240140pt;}
._51{margin-left:-71.276168pt;}
._3f{margin-left:-70.339426pt;}
._3d{margin-left:-68.568926pt;}
._4f{margin-left:-67.647233pt;}
._21{margin-left:-60.987710pt;}
._1e{margin-left:-52.338812pt;}
._1b{margin-left:-46.721697pt;}
._1d{margin-left:-45.376754pt;}
._1c{margin-left:-40.829007pt;}
._53{margin-left:-37.486158pt;}
._6c{margin-left:-11.136000pt;}
._18{margin-left:-9.536000pt;}
._11{margin-left:-3.584000pt;}
._4{margin-left:-2.368000pt;}
._6{margin-left:-1.408000pt;}
._2{width:0.969280pt;}
._1{width:2.656000pt;}
._0{width:3.674667pt;}
._b{width:4.694720pt;}
._9{width:6.080000pt;}
._c{width:7.786560pt;}
._3{width:9.002613pt;}
._12{width:10.645387pt;}
._a{width:11.776000pt;}
._14{width:12.918720pt;}
._5{width:13.824000pt;}
._7{width:14.848000pt;}
._d{width:17.152000pt;}
._8{width:18.112000pt;}
._16{width:19.840000pt;}
._15{width:20.736000pt;}
._13{width:22.528000pt;}
._6d{width:23.424000pt;}
._68{width:24.832000pt;}
._10{width:25.984000pt;}
._17{width:26.944000pt;}
._66{width:29.248000pt;}
._67{width:30.229333pt;}
._f{width:33.920000pt;}
._e{width:35.008000pt;}
._19{width:40.448000pt;}
._1a{width:41.472000pt;}
._4e{width:99.200000pt;}
._6a{width:162.560000pt;}
._6b{width:163.584000pt;}
._69{width:501.184000pt;}
.fs28{font-size:35.586481pt;}
.fse{font-size:36.295376pt;}
.fs7{font-size:36.403666pt;}
.fs33{font-size:36.528987pt;}
.fs39{font-size:37.002065pt;}
.fs3c{font-size:37.060986pt;}
.fs1c{font-size:37.131670pt;}
.fs20{font-size:37.367336pt;}
.fs19{font-size:37.805244pt;}
.fs16{font-size:37.933192pt;}
.fs5{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fs27{font-size:60.953032pt;}
.fsd{font-size:62.239879pt;}
.fs6{font-size:62.425575pt;}
.fs11{font-size:63.209300pt;}
.fs38{font-size:63.487923pt;}
.fs3e{font-size:63.582708pt;}
.fs3b{font-size:63.589018pt;}
.fs1b{font-size:63.783523pt;}
.fs1f{font-size:63.969946pt;}
.fs1{font-size:64.000000pt;}
.fs22{font-size:64.094250pt;}
.fs2f{font-size:64.546498pt;}
.fs30{font-size:64.546519pt;}
.fs29{font-size:64.585023pt;}
.fs2a{font-size:64.585044pt;}
.fs2c{font-size:64.668453pt;}
.fs2d{font-size:64.668535pt;}
.fs18{font-size:64.882700pt;}
.fs15{font-size:65.008037pt;}
.fs10{font-size:65.698755pt;}
.fs31{font-size:65.755631pt;}
.fs12{font-size:65.827974pt;}
.fs13{font-size:65.831069pt;}
.fs14{font-size:65.866304pt;}
.fsf{font-size:65.866325pt;}
.fsb{font-size:65.866910pt;}
.fs36{font-size:65.888244pt;}
.fsa{font-size:65.888306pt;}
.fsc{font-size:65.963578pt;}
.fs34{font-size:65.989309pt;}
.fs9{font-size:66.011803pt;}
.fs8{font-size:66.073455pt;}
.fs3a{font-size:67.088676pt;}
.fs3d{font-size:67.196870pt;}
.fs37{font-size:67.204425pt;}
.fs1e{font-size:67.281997pt;}
.fs2e{font-size:67.586836pt;}
.fs24{font-size:67.586858pt;}
.fs2b{font-size:67.594877pt;}
.fs25{font-size:67.594898pt;}
.fs21{font-size:67.605099pt;}
.fs26{font-size:67.679835pt;}
.fs23{font-size:67.688064pt;}
.fs35{font-size:68.342228pt;}
.fs1a{font-size:68.475482pt;}
.fs32{font-size:68.526461pt;}
.fs17{font-size:68.632607pt;}
.fs4{font-size:74.560000pt;}
.fs3{font-size:85.440000pt;}
.fs1d{font-size:95.609158pt;}
.y0{bottom:0.000000pt;}
.yc2{bottom:2.656032pt;}
.yac{bottom:2.656070pt;}
.yb9{bottom:2.687281pt;}
.yed{bottom:2.687297pt;}
.yb2{bottom:2.687436pt;}
.yd8{bottom:2.687518pt;}
.y113{bottom:2.748682pt;}
.y7f{bottom:2.770808pt;}
.y7c{bottom:2.770830pt;}
.y77{bottom:2.770937pt;}
.y6d{bottom:2.771163pt;}
.y72{bottom:2.771770pt;}
.y70{bottom:2.771825pt;}
.y69{bottom:2.778935pt;}
.y13a{bottom:2.778988pt;}
.y67{bottom:2.779038pt;}
.y59{bottom:2.779435pt;}
.y126{bottom:2.779646pt;}
.y5e{bottom:2.779732pt;}
.y5c{bottom:2.779837pt;}
.y64{bottom:2.779916pt;}
.yf8{bottom:2.796712pt;}
.ye4{bottom:2.796772pt;}
.ydd{bottom:2.797732pt;}
.yc8{bottom:2.797741pt;}
.yf2{bottom:2.797759pt;}
.yd0{bottom:2.797920pt;}
.y81{bottom:2.845590pt;}
.y75{bottom:2.846306pt;}
.y15f{bottom:3.416333pt;}
.y167{bottom:3.422436pt;}
.y16b{bottom:3.577109pt;}
.y90{bottom:3.729569pt;}
.y110{bottom:3.729646pt;}
.y8e{bottom:3.729782pt;}
.y8b{bottom:3.729814pt;}
.y10e{bottom:3.730168pt;}
.y117{bottom:3.761633pt;}
.y97{bottom:3.761675pt;}
.y93{bottom:3.761679pt;}
.y99{bottom:3.762075pt;}
.y119{bottom:3.762286pt;}
.ya4{bottom:4.101149pt;}
.y130{bottom:4.101251pt;}
.y12f{bottom:4.101322pt;}
.ya1{bottom:4.101615pt;}
.y9d{bottom:4.101673pt;}
.y12b{bottom:4.101868pt;}
.yf6{bottom:6.577633pt;}
.ye2{bottom:6.577696pt;}
.yca{bottom:6.578199pt;}
.ydf{bottom:6.578267pt;}
.yd2{bottom:6.578485pt;}
.ydb{bottom:6.578655pt;}
.yc6{bottom:6.578663pt;}
.yf0{bottom:6.578681pt;}
.yce{bottom:6.578855pt;}
.ycd{bottom:6.578918pt;}
.yfa{bottom:6.579114pt;}
.ye6{bottom:6.579213pt;}
.y114{bottom:6.651559pt;}
.y73{bottom:6.662715pt;}
.y71{bottom:6.662770pt;}
.y7e{bottom:6.662778pt;}
.y7a{bottom:6.662817pt;}
.y7b{bottom:6.662825pt;}
.y79{bottom:6.662843pt;}
.y76{bottom:6.662908pt;}
.y80{bottom:6.662993pt;}
.y7d{bottom:6.663055pt;}
.y78{bottom:6.663122pt;}
.y6c{bottom:6.663171pt;}
.y6e{bottom:6.663387pt;}
.yab{bottom:6.671840pt;}
.yc1{bottom:6.671843pt;}
.yc4{bottom:6.672141pt;}
.y52{bottom:6.682585pt;}
.y57{bottom:6.682991pt;}
.y56{bottom:6.683017pt;}
.y5f{bottom:6.683026pt;}
.y58{bottom:6.683045pt;}
.y5d{bottom:6.683131pt;}
.y13b{bottom:6.683178pt;}
.y5a{bottom:6.683262pt;}
.y6a{bottom:6.683481pt;}
.y61{bottom:6.683498pt;}
.y10a{bottom:6.683529pt;}
.y63{bottom:6.683561pt;}
.y62{bottom:6.683566pt;}
.y68{bottom:6.683585pt;}
.y65{bottom:6.683727pt;}
.y127{bottom:6.683835pt;}
.yb6{bottom:6.703013pt;}
.yea{bottom:6.703028pt;}
.yec{bottom:6.703090pt;}
.yeb{bottom:6.703096pt;}
.yb0{bottom:6.703104pt;}
.yb8{bottom:6.703114pt;}
.yb7{bottom:6.703119pt;}
.yaf{bottom:6.703169pt;}
.yb1{bottom:6.703197pt;}
.yef{bottom:6.703253pt;}
.yd6{bottom:6.703290pt;}
.yd7{bottom:6.703311pt;}
.ybb{bottom:6.703350pt;}
.yb4{bottom:6.703507pt;}
.yda{bottom:6.703552pt;}
.ya9{bottom:6.704211pt;}
.y8c{bottom:9.150184pt;}
.y10c{bottom:9.150464pt;}
.y115{bottom:9.181798pt;}
.y95{bottom:9.181815pt;}
.y111{bottom:13.198856pt;}
.y91{bottom:13.198861pt;}
.y89{bottom:13.198971pt;}
.y8a{bottom:13.199077pt;}
.y10f{bottom:13.199104pt;}
.y8f{bottom:13.199354pt;}
.y92{bottom:13.231478pt;}
.y94{bottom:13.231580pt;}
.y118{bottom:13.231744pt;}
.y98{bottom:13.231860pt;}
.y9a{bottom:13.231928pt;}
.y11a{bottom:13.232136pt;}
.yf7{bottom:13.401159pt;}
.ye3{bottom:13.401220pt;}
.ydc{bottom:13.402179pt;}
.yf1{bottom:13.402207pt;}
.yc7{bottom:13.402263pt;}
.ycf{bottom:13.402442pt;}
.ya2{bottom:13.758260pt;}
.y12d{bottom:13.758543pt;}
.yad{bottom:13.818233pt;}
.yc3{bottom:13.818361pt;}
.yba{bottom:13.848977pt;}
.yee{bottom:13.848992pt;}
.yb3{bottom:13.849132pt;}
.yd9{bottom:13.849252pt;}
.yaa{bottom:13.850060pt;}
.yf9{bottom:16.444800pt;}
.ye5{bottom:16.444864pt;}
.yde{bottom:16.445823pt;}
.yc9{bottom:16.445830pt;}
.yf3{bottom:16.445848pt;}
.yd1{bottom:16.446135pt;}
.ya0{bottom:22.834857pt;}
.y12a{bottom:22.835082pt;}
.y16c{bottom:25.997010pt;}
.y160{bottom:26.191907pt;}
.y161{bottom:26.192554pt;}
.y169{bottom:26.233627pt;}
.y168{bottom:26.234276pt;}
.y9c{bottom:26.806479pt;}
.y9e{bottom:26.806486pt;}
.ya3{bottom:26.806859pt;}
.y12e{bottom:26.807259pt;}
.y8d{bottom:27.961305pt;}
.y10d{bottom:27.961694pt;}
.y116{bottom:27.993812pt;}
.y96{bottom:27.993850pt;}
.y9f{bottom:36.011374pt;}
.y12c{bottom:36.011612pt;}
.y5{bottom:41.440000pt;}
.y4{bottom:57.440000pt;}
.y3{bottom:73.440000pt;}
.y1a4{bottom:90.160000pt;}
.y14c{bottom:93.920005pt;}
.y19f{bottom:101.280000pt;}
.y188{bottom:101.760000pt;}
.y11c{bottom:104.080000pt;}
.y25{bottom:106.000000pt;}
.y1cb{bottom:108.560000pt;}
.y1aa{bottom:111.920000pt;}
.y164{bottom:115.680000pt;}
.y14b{bottom:115.680005pt;}
.y1a3{bottom:117.360000pt;}
.y86{bottom:117.760000pt;}
.y4f{bottom:121.040000pt;}
.y189{bottom:121.760000pt;}
.y19e{bottom:123.920000pt;}
.y187{bottom:124.400000pt;}
.y11b{bottom:125.760000pt;}
.y24{bottom:128.720000pt;}
.y1ca{bottom:131.280000pt;}
.y1a9{bottom:134.560000pt;}
.y163{bottom:137.360000pt;}
.y14a{bottom:137.360005pt;}
.y85{bottom:140.400000pt;}
.y4e{bottom:144.400000pt;}
.y112{bottom:144.720000pt;}
.y10b{bottom:144.786667pt;}
.y19d{bottom:146.560000pt;}
.y186{bottom:147.120000pt;}
.y23{bottom:151.360000pt;}
.y109{bottom:151.453333pt;}
.y1c9{bottom:153.920000pt;}
.y108{bottom:154.232706pt;}
.y1a8{bottom:157.200000pt;}
.y107{bottom:158.080000pt;}
.y149{bottom:159.120000pt;}
.y84{bottom:163.120000pt;}
.y4d{bottom:167.120000pt;}
.y19c{bottom:169.280000pt;}
.y185{bottom:169.760000pt;}
.y22{bottom:174.000000pt;}
.y15e{bottom:176.386667pt;}
.y1c8{bottom:176.560000pt;}
.y148{bottom:180.880000pt;}
.y1a7{bottom:184.240000pt;}
.y4c{bottom:189.760000pt;}
.y83{bottom:190.080000pt;}
.y106{bottom:190.960000pt;}
.y19b{bottom:191.920000pt;}
.y162{bottom:192.320000pt;}
.y15d{bottom:192.320133pt;}
.y184{bottom:192.400000pt;}
.y21{bottom:196.720000pt;}
.y1c7{bottom:199.280000pt;}
.y147{bottom:202.586667pt;}
.y4b{bottom:212.426667pt;}
.y105{bottom:212.746667pt;}
.y19a{bottom:214.586667pt;}
.y183{bottom:215.146667pt;}
.y1c6{bottom:221.946667pt;}
.y146{bottom:224.346667pt;}
.y15c{bottom:224.346800pt;}
.y20{bottom:225.706667pt;}
.y104{bottom:234.426667pt;}
.y4a{bottom:235.146667pt;}
.y199{bottom:237.306667pt;}
.y182{bottom:237.786667pt;}
.y1c5{bottom:244.586667pt;}
.y15b{bottom:246.106800pt;}
.y145{bottom:247.466667pt;}
.y103{bottom:256.186667pt;}
.y49{bottom:257.786667pt;}
.y198{bottom:259.946667pt;}
.y181{bottom:260.426667pt;}
.y1f{bottom:263.066667pt;}
.y175{bottom:263.146800pt;}
.y1c4{bottom:267.306667pt;}
.y15a{bottom:267.786800pt;}
.y102{bottom:277.946667pt;}
.y48{bottom:280.426667pt;}
.y1e{bottom:280.506667pt;}
.y197{bottom:282.586667pt;}
.y174{bottom:285.786800pt;}
.y180{bottom:289.466667pt;}
.y155{bottom:289.546800pt;}
.y1c3{bottom:289.946667pt;}
.y1d{bottom:298.826667pt;}
.y101{bottom:299.706667pt;}
.y47{bottom:303.146667pt;}
.y196{bottom:305.306667pt;}
.y173{bottom:308.426800pt;}
.y154{bottom:311.306800pt;}
.y1c2{bottom:312.586667pt;}
.y100{bottom:321.386667pt;}
.y17f{bottom:325.546667pt;}
.y46{bottom:325.786667pt;}
.y195{bottom:329.306667pt;}
.y153{bottom:332.986800pt;}
.y172{bottom:334.746800pt;}
.y1c{bottom:334.906667pt;}
.y1c1{bottom:335.306667pt;}
.yff{bottom:343.146667pt;}
.y17e{bottom:348.186667pt;}
.y45{bottom:348.426667pt;}
.y152{bottom:354.746800pt;}
.y1b{bottom:357.546667pt;}
.y1c0{bottom:357.946667pt;}
.y17d{bottom:370.826667pt;}
.y44{bottom:371.146667pt;}
.yfe{bottom:375.546667pt;}
.y151{bottom:376.506800pt;}
.y1a{bottom:380.186667pt;}
.y1bf{bottom:380.586667pt;}
.y17c{bottom:393.546667pt;}
.y43{bottom:393.786667pt;}
.yfd{bottom:397.306667pt;}
.y159{bottom:398.186800pt;}
.y150{bottom:401.626800pt;}
.y19{bottom:402.906667pt;}
.y1be{bottom:403.306667pt;}
.y17b{bottom:416.186667pt;}
.y42{bottom:416.426667pt;}
.yfc{bottom:418.986667pt;}
.y158{bottom:419.946800pt;}
.y18{bottom:425.546667pt;}
.y1bd{bottom:425.946667pt;}
.y41{bottom:439.146667pt;}
.yfb{bottom:440.746667pt;}
.y17a{bottom:442.186667pt;}
.y157{bottom:444.586800pt;}
.y82{bottom:446.586667pt;}
.y17{bottom:448.186667pt;}
.y1bc{bottom:448.586667pt;}
.y40{bottom:461.786667pt;}
.yf5{bottom:465.653333pt;}
.y16{bottom:470.906667pt;}
.y1bb{bottom:471.306667pt;}
.yf4{bottom:472.266667pt;}
.y6b{bottom:474.786667pt;}
.y74{bottom:478.786667pt;}
.y6f{bottom:481.386667pt;}
.y3f{bottom:484.426667pt;}
.y144{bottom:485.146667pt;}
.y15{bottom:493.546667pt;}
.y1ba{bottom:493.946667pt;}
.y1a2{bottom:504.026667pt;}
.y143{bottom:506.906667pt;}
.y3e{bottom:507.146667pt;}
.ye9{bottom:509.186667pt;}
.ye8{bottom:515.786667pt;}
.y14{bottom:516.186667pt;}
.y1b9{bottom:516.586667pt;}
.y60{bottom:518.253333pt;}
.y66{bottom:524.906667pt;}
.y1a1{bottom:526.746667pt;}
.y142{bottom:528.586667pt;}
.y3d{bottom:529.786667pt;}
.y13{bottom:538.906667pt;}
.y1b8{bottom:539.306667pt;}
.ye7{bottom:549.386667pt;}
.y141{bottom:550.346667pt;}
.y3c{bottom:552.426667pt;}
.y1a0{bottom:554.026667pt;}
.y12{bottom:561.546667pt;}
.y55{bottom:561.720000pt;}
.y1b7{bottom:561.946667pt;}
.y5b{bottom:568.346667pt;}
.y140{bottom:572.106667pt;}
.ye1{bottom:574.386667pt;}
.y3b{bottom:575.173333pt;}
.y1ce{bottom:580.293333pt;}
.ye0{bottom:581.013333pt;}
.y11{bottom:584.213333pt;}
.y1b6{bottom:584.613333pt;}
.y1a6{bottom:592.853333pt;}
.y13f{bottom:593.813333pt;}
.y3a{bottom:597.813333pt;}
.y54{bottom:599.653333pt;}
.y1b5{bottom:607.333333pt;}
.y1cd{bottom:613.653333pt;}
.y171{bottom:613.653467pt;}
.y13e{bottom:615.573333pt;}
.yd5{bottom:617.786667pt;}
.y39{bottom:620.453333pt;}
.y1a5{bottom:620.933333pt;}
.y53{bottom:622.373333pt;}
.yd4{bottom:624.453333pt;}
.y1b4{bottom:629.973333pt;}
.y170{bottom:636.373467pt;}
.y13d{bottom:637.333333pt;}
.y14f{bottom:637.333467pt;}
.y38{bottom:643.173333pt;}
.y1cc{bottom:647.013333pt;}
.y51{bottom:650.520000pt;}
.y1b3{bottom:652.613333pt;}
.yd3{bottom:658.133333pt;}
.y14e{bottom:659.013467pt;}
.y139{bottom:664.520000pt;}
.y37{bottom:665.813333pt;}
.y13c{bottom:671.173333pt;}
.y138{bottom:671.173467pt;}
.y1b2{bottom:675.333333pt;}
.y14d{bottom:680.773467pt;}
.ycc{bottom:682.986667pt;}
.y36{bottom:688.453333pt;}
.ycb{bottom:689.653333pt;}
.y1b1{bottom:697.973333pt;}
.y179{bottom:699.653333pt;}
.y137{bottom:702.533467pt;}
.y35{bottom:711.173333pt;}
.y1b0{bottom:720.613333pt;}
.y178{bottom:722.373333pt;}
.y136{bottom:724.213333pt;}
.yc0{bottom:726.453333pt;}
.yc5{bottom:733.093333pt;}
.ybf{bottom:733.093467pt;}
.y10{bottom:733.280000pt;}
.y34{bottom:733.813333pt;}
.y1af{bottom:743.333333pt;}
.y177{bottom:745.013333pt;}
.y135{bottom:745.973333pt;}
.y194{bottom:753.333333pt;}
.yf{bottom:755.200133pt;}
.y33{bottom:756.453333pt;}
.y132{bottom:762.773333pt;}
.y1ae{bottom:765.973333pt;}
.ybe{bottom:766.773467pt;}
.y134{bottom:767.733333pt;}
.y176{bottom:771.493333pt;}
.y193{bottom:778.453333pt;}
.y32{bottom:779.173333pt;}
.ye{bottom:782.960000pt;}
.y156{bottom:784.453333pt;}
.ybd{bottom:788.533467pt;}
.y1ad{bottom:788.613333pt;}
.y133{bottom:789.413333pt;}
.yd{bottom:801.333333pt;}
.y31{bottom:801.813333pt;}
.y192{bottom:803.653333pt;}
.ybc{bottom:810.213333pt;}
.y1ac{bottom:811.333333pt;}
.y129{bottom:812.586667pt;}
.y131{bottom:812.613333pt;}
.yc{bottom:823.973333pt;}
.y30{bottom:824.453333pt;}
.y191{bottom:828.773333pt;}
.y125{bottom:832.586667pt;}
.yae{bottom:836.586667pt;}
.y128{bottom:839.253333pt;}
.y124{bottom:839.253600pt;}
.yb5{bottom:843.253333pt;}
.y1ab{bottom:846.453333pt;}
.y2f{bottom:847.173333pt;}
.yb{bottom:852.613333pt;}
.y190{bottom:853.973333pt;}
.ya{bottom:869.333333pt;}
.y2e{bottom:869.813333pt;}
.y16f{bottom:876.373467pt;}
.y123{bottom:876.373600pt;}
.y18f{bottom:879.173333pt;}
.ya8{bottom:880.053333pt;}
.ya7{bottom:886.693333pt;}
.y2d{bottom:892.453333pt;}
.y16e{bottom:898.133333pt;}
.y122{bottom:898.133467pt;}
.y18e{bottom:904.293333pt;}
.y9{bottom:906.933333pt;}
.y2c{bottom:915.173333pt;}
.ya6{bottom:918.933333pt;}
.y16d{bottom:919.813333pt;}
.y121{bottom:919.813467pt;}
.y8{bottom:928.373333pt;}
.y18d{bottom:929.493333pt;}
.y166{bottom:937.053333pt;}
.y2b{bottom:937.813333pt;}
.ya5{bottom:940.613333pt;}
.y120{bottom:941.573467pt;}
.y16a{bottom:953.120000pt;}
.y165{bottom:953.120133pt;}
.y18c{bottom:954.720000pt;}
.y2a{bottom:960.480000pt;}
.y11f{bottom:963.360133pt;}
.y9b{bottom:964.653333pt;}
.y7{bottom:967.440000pt;}
.y88{bottom:977.986667pt;}
.y18b{bottom:979.840000pt;}
.y29{bottom:983.200000pt;}
.y11e{bottom:985.040133pt;}
.y6{bottom:989.840000pt;}
.y87{bottom:991.360000pt;}
.y18a{bottom:1005.040000pt;}
.y28{bottom:1005.840000pt;}
.y50{bottom:1005.920000pt;}
.y11d{bottom:1006.800000pt;}
.y2{bottom:1023.440000pt;}
.y27{bottom:1026.640000pt;}
.y1{bottom:1041.920000pt;}
.y26{bottom:1043.360000pt;}
.h21{height:16.000000pt;}
.h1c{height:22.200000pt;}
.h5a{height:22.266400pt;}
.h12{height:22.266667pt;}
.h3e{height:24.000000pt;}
.h4e{height:24.708972pt;}
.h4c{height:24.847982pt;}
.h3d{height:25.781853pt;}
.h38{height:25.926899pt;}
.h40{height:25.945484pt;}
.h34{height:26.249540pt;}
.h2d{height:26.338379pt;}
.h62{height:26.397216pt;}
.h5d{height:26.486555pt;}
.h4a{height:26.866667pt;}
.h4d{height:27.124266pt;}
.h1e{height:27.664591pt;}
.h16{height:27.747130pt;}
.h5f{height:27.842651pt;}
.h3a{height:28.302020pt;}
.h43{height:28.481646pt;}
.h32{height:28.815423pt;}
.h2b{height:28.912946pt;}
.h9{height:29.717188pt;}
.he{height:30.777031pt;}
.h3{height:32.507812pt;}
.h4{height:33.515625pt;}
.h71{height:34.710938pt;}
.hd{height:36.585938pt;}
.hc{height:38.644844pt;}
.h28{height:38.866667pt;}
.h5{height:39.166719pt;}
.h6f{height:41.133333pt;}
.h65{height:42.198667pt;}
.h6a{height:42.265333pt;}
.h4b{height:42.559978pt;}
.h24{height:43.458509pt;}
.h15{height:43.588170pt;}
.h22{height:43.888489pt;}
.h69{height:44.081946pt;}
.h6e{height:44.152141pt;}
.h66{height:44.329946pt;}
.h70{height:44.396129pt;}
.h6b{height:44.400535pt;}
.h37{height:44.536347pt;}
.h45{height:44.666515pt;}
.ha{height:44.687500pt;}
.h57{height:44.816953pt;}
.h58{height:44.816968pt;}
.h4f{height:44.843702pt;}
.h50{height:44.843717pt;}
.h53{height:44.901631pt;}
.h54{height:44.901688pt;}
.h35{height:45.050390pt;}
.h2e{height:45.137416pt;}
.hb{height:45.156250pt;}
.h2f{height:45.303838pt;}
.h29{height:45.391354pt;}
.h20{height:45.617006pt;}
.h5b{height:45.656498pt;}
.h23{height:45.706728pt;}
.h26{height:45.708877pt;}
.h27{height:45.733342pt;}
.h1f{height:45.733357pt;}
.h19{height:45.733763pt;}
.h63{height:45.748576pt;}
.h18{height:45.748619pt;}
.h1b{height:45.800883pt;}
.h60{height:45.818749pt;}
.h17{height:45.834367pt;}
.h14{height:45.877174pt;}
.h59{height:46.406250pt;}
.h68{height:46.582078pt;}
.hf{height:46.593750pt;}
.h6d{height:46.657202pt;}
.h64{height:46.662447pt;}
.h3c{height:46.716308pt;}
.h2{height:46.906250pt;}
.h56{height:46.927969pt;}
.h46{height:46.927984pt;}
.h52{height:46.933552pt;}
.h48{height:46.933567pt;}
.h41{height:46.940650pt;}
.h49{height:46.992542pt;}
.h44{height:46.998255pt;}
.h1d{height:47.439674pt;}
.h25{height:47.439832pt;}
.h61{height:47.452465pt;}
.h33{height:47.544988pt;}
.h5c{height:47.580385pt;}
.h1a{height:47.581054pt;}
.h13{height:47.581212pt;}
.h2c{height:47.654086pt;}
.h10{height:48.375000pt;}
.h67{height:48.390941pt;}
.h6c{height:48.467997pt;}
.h39{height:48.616250pt;}
.h47{height:48.758027pt;}
.h55{height:48.758182pt;}
.h3f{height:48.758343pt;}
.h51{height:48.758503pt;}
.h42{height:48.853088pt;}
.h31{height:49.454050pt;}
.h36{height:52.000000pt;}
.h7{height:52.607031pt;}
.h8{height:53.717188pt;}
.h11{height:53.937500pt;}
.h6{height:57.863906pt;}
.h3b{height:72.873973pt;}
.h30{height:87.333452pt;}
.h2a{height:87.426426pt;}
.h5e{height:98.127500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:12.000000pt;}
.w16{width:18.866667pt;}
.w14{width:19.999600pt;}
.w6{width:21.066667pt;}
.w5{width:21.134667pt;}
.w9{width:24.001333pt;}
.w17{width:34.266667pt;}
.w15{width:36.000000pt;}
.w18{width:40.001333pt;}
.wc{width:54.865333pt;}
.w7{width:56.000000pt;}
.wb{width:57.065333pt;}
.w4{width:57.133333pt;}
.w8{width:58.868000pt;}
.w11{width:58.936000pt;}
.w12{width:64.001333pt;}
.w13{width:65.130667pt;}
.we{width:69.132000pt;}
.wd{width:70.868000pt;}
.wf{width:74.933333pt;}
.w1b{width:120.000000pt;}
.w19{width:153.058667pt;}
.w1a{width:166.802667pt;}
.w10{width:257.000000pt;}
.w3{width:640.721333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:1.140268pt;}
.x15{left:2.645457pt;}
.x40{left:4.039773pt;}
.x36{left:5.935421pt;}
.x41{left:7.362686pt;}
.x35{left:10.216737pt;}
.x61{left:11.278887pt;}
.x14{left:12.613777pt;}
.x1d{left:13.646963pt;}
.x37{left:16.736476pt;}
.x56{left:19.314706pt;}
.x1b{left:20.503112pt;}
.x13{left:21.485169pt;}
.x4a{left:23.294168pt;}
.x1c{left:25.757223pt;}
.x3a{left:27.180667pt;}
.x4c{left:28.608361pt;}
.x3f{left:30.917516pt;}
.x2d{left:33.654058pt;}
.x12{left:35.228538pt;}
.x49{left:37.063474pt;}
.x39{left:38.848238pt;}
.x54{left:42.938406pt;}
.x2c{left:46.870647pt;}
.x11{left:48.680394pt;}
.x22{left:50.282744pt;}
.x52{left:56.172751pt;}
.x58{left:57.247782pt;}
.x3e{left:59.391976pt;}
.x38{left:60.372916pt;}
.x34{left:62.337307pt;}
.x3d{left:66.885283pt;}
.x6b{left:72.456495pt;}
.x70{left:79.318357pt;}
.x6d{left:97.420330pt;}
.x76{left:100.263580pt;}
.x3{left:102.080000pt;}
.x73{left:106.571461pt;}
.x10{left:108.106667pt;}
.x4{left:109.680000pt;}
.x72{left:117.562222pt;}
.x65{left:121.360000pt;}
.x7{left:122.320013pt;}
.x80{left:126.106667pt;}
.x6c{left:143.673842pt;}
.x7f{left:144.826655pt;}
.x42{left:147.506667pt;}
.x6a{left:149.106667pt;}
.xc{left:150.106667pt;}
.x6f{left:154.440000pt;}
.x71{left:157.402255pt;}
.x33{left:161.706667pt;}
.x8{left:164.746680pt;}
.x23{left:166.986667pt;}
.x5b{left:179.106667pt;}
.x83{left:183.306667pt;}
.x9{left:186.906680pt;}
.x5a{left:189.975503pt;}
.x45{left:196.488465pt;}
.x5c{left:199.066667pt;}
.x44{left:207.924259pt;}
.x1e{left:211.373333pt;}
.x16{left:212.506667pt;}
.x5d{left:214.506667pt;}
.xb{left:215.786653pt;}
.x24{left:216.906667pt;}
.x5{left:219.306667pt;}
.x6{left:222.906667pt;}
.x84{left:231.386693pt;}
.x1f{left:232.506667pt;}
.x18{left:233.626667pt;}
.x25{left:240.906667pt;}
.x43{left:244.037016pt;}
.x7e{left:246.986655pt;}
.x5e{left:250.506667pt;}
.x4b{left:258.173333pt;}
.x20{left:261.573333pt;}
.x19{left:262.706667pt;}
.x26{left:269.973333pt;}
.x68{left:275.386653pt;}
.x21{left:282.666667pt;}
.x1a{left:283.786667pt;}
.x85{left:291.546667pt;}
.x27{left:293.946667pt;}
.x66{left:296.040000pt;}
.xa{left:301.146667pt;}
.x6e{left:302.186667pt;}
.x4d{left:317.066667pt;}
.x7d{left:318.506655pt;}
.x74{left:321.226667pt;}
.x57{left:322.266667pt;}
.x4e{left:323.706707pt;}
.x55{left:338.973333pt;}
.x4f{left:339.906667pt;}
.x75{left:343.106667pt;}
.x28{left:357.106667pt;}
.x5f{left:358.026667pt;}
.x3b{left:362.906667pt;}
.x7b{left:366.026667pt;}
.x29{left:369.106667pt;}
.x69{left:370.026667pt;}
.x50{left:397.013333pt;}
.x51{left:406.040000pt;}
.x3c{left:424.173333pt;}
.x2a{left:426.213333pt;}
.x46{left:427.493333pt;}
.x2b{left:435.173333pt;}
.x1{left:452.053333pt;}
.x77{left:463.093333pt;}
.x53{left:470.053333pt;}
.x59{left:471.493333pt;}
.x2e{left:490.053333pt;}
.x47{left:495.973333pt;}
.x2f{left:499.106667pt;}
.x60{left:505.706667pt;}
.xf{left:524.539676pt;}
.x62{left:526.853333pt;}
.x63{left:542.306667pt;}
.x2{left:551.413333pt;}
.x30{left:557.973333pt;}
.x31{left:569.973333pt;}
.x48{left:576.053333pt;}
.x64{left:582.293333pt;}
.xe{left:633.469142pt;}
.x32{left:636.133333pt;}
.x82{left:672.960000pt;}
.xd{left:674.639988pt;}
.x79{left:686.160013pt;}
.x7a{left:690.160000pt;}
.x7c{left:691.759988pt;}
.x78{left:698.160000pt;}
.x81{left:726.160080pt;}
.x67{left:728.159987pt;}
}




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