
    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_a5ce7784921344b9c6f827f5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0774e1d061d975b551e38c1d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1e226d917f431002cc0cb14b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_8b4272ac29171d2763860167.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.891113;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_993be9034eb25d71c2e9c679.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cc415a7adf236d66d84df2a0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.880371;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_5ac21b8dee83b678810e4476.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.091309;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_559f370a9f74b17af3f2a1e7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_3ecacfffda40c577fcd2d96c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125488;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_d439287f3654b2ee3d08280b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_53201e41c3e2aa0d7166757e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.876465;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_98d7afd6d5964efd9c6cb86b.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.680176;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_1016af5ce87864eb2e069e22.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.832031;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;}
.me{transform:matrix(0.146847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146847,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.151022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151022,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.151163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151163,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154055,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.157727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157727,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.164906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164906,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.181597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181597,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.189453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189453,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.190143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190143,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.190292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190292,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.192237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192237,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.192431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192431,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.231565,0.000000,-0.077188,0.237786,0,0);-ms-transform:matrix(0.231565,0.000000,-0.077188,0.237786,0,0);-webkit-transform:matrix(0.231565,0.000000,-0.077188,0.237786,0,0);}
.m24{transform:matrix(0.232849,0.000000,-0.077616,0.237646,0,0);-ms-transform:matrix(0.232849,0.000000,-0.077616,0.237646,0,0);-webkit-transform:matrix(0.232849,0.000000,-0.077616,0.237646,0,0);}
.m21{transform:matrix(0.234504,0.000000,-0.078168,0.237465,0,0);-ms-transform:matrix(0.234504,0.000000,-0.078168,0.237465,0,0);-webkit-transform:matrix(0.234504,0.000000,-0.078168,0.237465,0,0);}
.m1f{transform:matrix(0.235705,0.000000,-0.078568,0.237333,0,0);-ms-transform:matrix(0.235705,0.000000,-0.078568,0.237333,0,0);-webkit-transform:matrix(0.235705,0.000000,-0.078568,0.237333,0,0);}
.mb{transform:matrix(0.235844,0.000000,-0.078615,0.237318,0,0);-ms-transform:matrix(0.235844,0.000000,-0.078615,0.237318,0,0);-webkit-transform:matrix(0.235844,0.000000,-0.078615,0.237318,0,0);}
.m12{transform:matrix(0.236125,0.000000,-0.078709,0.237286,0,0);-ms-transform:matrix(0.236125,0.000000,-0.078709,0.237286,0,0);-webkit-transform:matrix(0.236125,0.000000,-0.078709,0.237286,0,0);}
.m32{transform:matrix(0.240816,0.000000,-0.080271,0.236763,0,0);-ms-transform:matrix(0.240816,0.000000,-0.080271,0.236763,0,0);-webkit-transform:matrix(0.240816,0.000000,-0.080271,0.236763,0,0);}
.m2b{transform:matrix(0.241357,0.000000,-0.080452,0.236701,0,0);-ms-transform:matrix(0.241357,0.000000,-0.080452,0.236701,0,0);-webkit-transform:matrix(0.241357,0.000000,-0.080452,0.236701,0,0);}
.m2f{transform:matrix(0.243020,0.000000,-0.081006,0.236512,0,0);-ms-transform:matrix(0.243020,0.000000,-0.081006,0.236512,0,0);-webkit-transform:matrix(0.243020,0.000000,-0.081006,0.236512,0,0);}
.m37{transform:matrix(0.243240,0.000000,-0.081080,0.236487,0,0);-ms-transform:matrix(0.243240,0.000000,-0.081080,0.236487,0,0);-webkit-transform:matrix(0.243240,0.000000,-0.081080,0.236487,0,0);}
.m5{transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243460,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.244954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244954,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245131,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245133,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245847,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246885,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248288,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248777,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249478,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);}
.m10{transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250078,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250283,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250687,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253159,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253163,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253665,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.253666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253666,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254281,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254916,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254917,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255874,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.256876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256876,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.256879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256879,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.257136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257136,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.257137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257137,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.257139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257139,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.264646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264646,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.268923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268923,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.268927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268927,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);}
.v5{vertical-align:-55.920000px;}
.v4{vertical-align:-33.120000px;}
.v10{vertical-align:-27.360000px;}
.v7{vertical-align:-18.250800px;}
.ve{vertical-align:-12.240000px;}
.v1{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.360000px;}
.v8{vertical-align:16.716600px;}
.va{vertical-align:18.331200px;}
.vf{vertical-align:27.360000px;}
.v3{vertical-align:33.120000px;}
.v11{vertical-align:36.702720px;}
.v6{vertical-align:44.963400px;}
.vc{vertical-align:49.617000px;}
.v9{vertical-align:50.899800px;}
.vd{vertical-align:71.511600px;}
.vb{vertical-align:73.960800px;}
.ls37{letter-spacing:-1.512000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls2a{letter-spacing:-1.013040px;}
.ls1c{letter-spacing:-1.008000px;}
.ls30{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.792000px;}
.ls13{letter-spacing:-0.720000px;}
.ls8d{letter-spacing:-0.597600px;}
.ls36{letter-spacing:-0.576000px;}
.ls90{letter-spacing:-0.537840px;}
.ls69{letter-spacing:-0.504000px;}
.ls87{letter-spacing:-0.486000px;}
.ls89{letter-spacing:-0.478080px;}
.ls3d{letter-spacing:-0.432000px;}
.ls8f{letter-spacing:-0.418320px;}
.ls8a{letter-spacing:-0.358560px;}
.ls2b{letter-spacing:-0.337680px;}
.ls6{letter-spacing:-0.324000px;}
.ls7{letter-spacing:-0.288000px;}
.ls7d{letter-spacing:-0.239040px;}
.ls14{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls8e{letter-spacing:-0.119520px;}
.ls54{letter-spacing:-0.084960px;}
.ls67{letter-spacing:-0.082147px;}
.ls65{letter-spacing:-0.082024px;}
.ls56{letter-spacing:-0.072823px;}
.ls3c{letter-spacing:-0.072545px;}
.ls58{letter-spacing:-0.072000px;}
.ls49{letter-spacing:-0.066763px;}
.ls7f{letter-spacing:-0.059760px;}
.ls52{letter-spacing:-0.042700px;}
.ls55{letter-spacing:-0.042480px;}
.ls51{letter-spacing:-0.042073px;}
.ls5{letter-spacing:0.000000px;}
.ls95{letter-spacing:0.008640px;}
.ls98{letter-spacing:0.017280px;}
.ls9a{letter-spacing:0.059760px;}
.ls4a{letter-spacing:0.066763px;}
.ls48{letter-spacing:0.067650px;}
.ls66{letter-spacing:0.070306px;}
.ls68{letter-spacing:0.070412px;}
.ls15{letter-spacing:0.072000px;}
.ls91{letter-spacing:0.091440px;}
.ls8c{letter-spacing:0.106560px;}
.lsa7{letter-spacing:0.113544px;}
.ls80{letter-spacing:0.119520px;}
.ls2{letter-spacing:0.144000px;}
.ls88{letter-spacing:0.162000px;}
.ls7e{letter-spacing:0.179280px;}
.ls99{letter-spacing:0.180000px;}
.ls27{letter-spacing:0.192960px;}
.lsa9{letter-spacing:0.215136px;}
.ls0{letter-spacing:0.216000px;}
.ls3e{letter-spacing:0.223920px;}
.ls74{letter-spacing:0.239040px;}
.ls86{letter-spacing:0.259920px;}
.ls8b{letter-spacing:0.268920px;}
.ls31{letter-spacing:0.269280px;}
.ls7c{letter-spacing:0.286848px;}
.ls2e{letter-spacing:0.288000px;}
.ls53{letter-spacing:0.289440px;}
.ls1{letter-spacing:0.324000px;}
.ls93{letter-spacing:0.342720px;}
.ls6b{letter-spacing:0.358560px;}
.ls3{letter-spacing:0.360000px;}
.ls9d{letter-spacing:0.364320px;}
.ls81{letter-spacing:0.378000px;}
.ls9f{letter-spacing:0.385200px;}
.ls29{letter-spacing:0.385920px;}
.ls94{letter-spacing:0.418320px;}
.ls1d{letter-spacing:0.432000px;}
.lsaa{letter-spacing:0.478080px;}
.lsb{letter-spacing:0.504000px;}
.lsab{letter-spacing:0.597600px;}
.ls4{letter-spacing:0.720000px;}
.lsa6{letter-spacing:0.896400px;}
.lsa8{letter-spacing:0.956160px;}
.ls32{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.440000px;}
.ls12{letter-spacing:2.160000px;}
.ls92{letter-spacing:2.671200px;}
.lse{letter-spacing:2.880000px;}
.ls26{letter-spacing:3.600000px;}
.ls17{letter-spacing:4.320000px;}
.ls18{letter-spacing:5.040000px;}
.ls19{letter-spacing:5.760000px;}
.ls57{letter-spacing:5.781600px;}
.ls1f{letter-spacing:6.480000px;}
.lsf{letter-spacing:7.200000px;}
.ls47{letter-spacing:7.753691px;}
.ls45{letter-spacing:7.898620px;}
.ls10{letter-spacing:7.920000px;}
.ls25{letter-spacing:8.640000px;}
.ls1a{letter-spacing:9.360000px;}
.ls4e{letter-spacing:9.730711px;}
.ls4d{letter-spacing:10.080000px;}
.lsd{letter-spacing:10.800000px;}
.ls62{letter-spacing:11.225160px;}
.ls5e{letter-spacing:11.241918px;}
.ls16{letter-spacing:11.520000px;}
.ls35{letter-spacing:12.240000px;}
.ls2c{letter-spacing:12.960000px;}
.ls21{letter-spacing:13.680000px;}
.ls28{letter-spacing:14.400000px;}
.ls2f{letter-spacing:15.120000px;}
.ls20{letter-spacing:15.840000px;}
.ls33{letter-spacing:16.560000px;}
.lsc{letter-spacing:17.280000px;}
.ls34{letter-spacing:19.440000px;}
.ls24{letter-spacing:20.160000px;}
.ls11{letter-spacing:20.880000px;}
.ls38{letter-spacing:22.320000px;}
.ls6a{letter-spacing:23.040000px;}
.ls2d{letter-spacing:25.200000px;}
.ls59{letter-spacing:25.920000px;}
.ls5f{letter-spacing:26.621221px;}
.ls22{letter-spacing:30.960000px;}
.ls4c{letter-spacing:31.680000px;}
.ls9{letter-spacing:33.984000px;}
.ls23{letter-spacing:41.904000px;}
.ls3a{letter-spacing:42.541832px;}
.lsa4{letter-spacing:49.833864px;}
.lsa5{letter-spacing:49.839840px;}
.ls4f{letter-spacing:69.223671px;}
.ls9b{letter-spacing:81.512640px;}
.ls3f{letter-spacing:100.306761px;}
.ls41{letter-spacing:100.676811px;}
.ls9c{letter-spacing:135.535680px;}
.lsa3{letter-spacing:154.957680px;}
.ls9e{letter-spacing:155.674800px;}
.lsa0{letter-spacing:162.905760px;}
.lsa1{letter-spacing:170.076960px;}
.ls46{letter-spacing:175.218919px;}
.lsa2{letter-spacing:180.176400px;}
.ls96{letter-spacing:186.630480px;}
.ls4b{letter-spacing:192.384000px;}
.ls3b{letter-spacing:194.400000px;}
.ls40{letter-spacing:239.173092px;}
.ls97{letter-spacing:251.470080px;}
.ls5d{letter-spacing:253.512774px;}
.ls5c{letter-spacing:266.904794px;}
.ls5b{letter-spacing:281.725672px;}
.ls7a{letter-spacing:283.860000px;}
.ls50{letter-spacing:287.636610px;}
.ls7b{letter-spacing:290.314080px;}
.ls5a{letter-spacing:296.655292px;}
.ls6e{letter-spacing:304.734168px;}
.ls79{letter-spacing:306.927360px;}
.ls64{letter-spacing:307.932278px;}
.ls63{letter-spacing:308.821985px;}
.ls6d{letter-spacing:319.853448px;}
.ls61{letter-spacing:324.186372px;}
.ls60{letter-spacing:329.820758px;}
.ls43{letter-spacing:340.963609px;}
.ls44{letter-spacing:375.263333px;}
.ls83{letter-spacing:386.795520px;}
.ls82{letter-spacing:388.235520px;}
.ls42{letter-spacing:406.803919px;}
.ls85{letter-spacing:427.164480px;}
.ls84{letter-spacing:428.598720px;}
.ls75{letter-spacing:445.152240px;}
.ls73{letter-spacing:488.358720px;}
.ls78{letter-spacing:551.704320px;}
.ls6f{letter-spacing:615.049920px;}
.ls76{letter-spacing:621.563760px;}
.ls77{letter-spacing:631.603440px;}
.ls72{letter-spacing:675.527040px;}
.ls39{letter-spacing:685.969352px;}
.ls6c{letter-spacing:688.494960px;}
.ls70{letter-spacing:728.832960px;}
.ls71{letter-spacing:768.394080px;}
.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;}
}
.ws48{word-spacing:-72.000000px;}
.wsad{word-spacing:-42.348609px;}
.wsd1{word-spacing:-40.798916px;}
.wsa3{word-spacing:-40.186800px;}
.ws8a{word-spacing:-40.077110px;}
.ws90{word-spacing:-39.967090px;}
.ws7c{word-spacing:-39.827425px;}
.ws97{word-spacing:-39.782956px;}
.ws9b{word-spacing:-39.596186px;}
.ws7e{word-spacing:-38.597774px;}
.ws8e{word-spacing:-37.139850px;}
.ws96{word-spacing:-36.652997px;}
.ws6a{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.504000px;}
.ws35{word-spacing:-18.432000px;}
.wsa6{word-spacing:-18.300000px;}
.ws54{word-spacing:-18.288000px;}
.ws89{word-spacing:-18.250050px;}
.ws4{word-spacing:-18.216000px;}
.wsb1{word-spacing:-18.205650px;}
.ws8f{word-spacing:-18.199950px;}
.ws1{word-spacing:-18.144000px;}
.ws7a{word-spacing:-18.136350px;}
.ws88{word-spacing:-18.112500px;}
.ws33{word-spacing:-18.072000px;}
.ws7b{word-spacing:-18.063805px;}
.ws91{word-spacing:-18.056250px;}
.ws3{word-spacing:-18.000000px;}
.wsbd{word-spacing:-17.928000px;}
.ws2{word-spacing:-17.856000px;}
.wsd6{word-spacing:-17.838450px;}
.ws86{word-spacing:-17.805450px;}
.ws14{word-spacing:-17.784000px;}
.ws0{word-spacing:-17.712000px;}
.wsd4{word-spacing:-17.673362px;}
.wscc{word-spacing:-17.646706px;}
.wsd3{word-spacing:-17.602950px;}
.ws7d{word-spacing:-17.576400px;}
.wse8{word-spacing:-17.568000px;}
.wse0{word-spacing:-17.496000px;}
.ws34{word-spacing:-17.280000px;}
.ws36{word-spacing:-17.208000px;}
.ws8d{word-spacing:-16.980150px;}
.ws8c{word-spacing:-16.912500px;}
.ws95{word-spacing:-16.757563px;}
.ws93{word-spacing:-16.690800px;}
.ws94{word-spacing:-16.624037px;}
.ws74{word-spacing:-16.488000px;}
.wseb{word-spacing:-15.298560px;}
.ws105{word-spacing:-15.179040px;}
.wsee{word-spacing:-15.119280px;}
.wsef{word-spacing:-15.059520px;}
.ws106{word-spacing:-14.999760px;}
.wsec{word-spacing:-14.940000px;}
.wsed{word-spacing:-14.880240px;}
.ws104{word-spacing:-14.820480px;}
.ws10a{word-spacing:-14.700960px;}
.wsfc{word-spacing:-14.581440px;}
.wsfb{word-spacing:-14.461920px;}
.ws10b{word-spacing:-13.500000px;}
.ws49{word-spacing:-12.445920px;}
.wsa8{word-spacing:-12.349440px;}
.wsaf{word-spacing:-12.256863px;}
.ws4a{word-spacing:-12.060000px;}
.ws4b{word-spacing:-11.722320px;}
.wsac{word-spacing:-10.693350px;}
.wsa5{word-spacing:-10.675050px;}
.wsb3{word-spacing:-10.535040px;}
.ws9d{word-spacing:-10.518150px;}
.ws9f{word-spacing:-10.476077px;}
.wsd7{word-spacing:-10.405800px;}
.wsd2{word-spacing:-10.268400px;}
.wscb{word-spacing:-10.252950px;}
.wsf5{word-spacing:-9.720000px;}
.ws10e{word-spacing:-0.896400px;}
.wsf3{word-spacing:-0.776880px;}
.wsbf{word-spacing:-0.720000px;}
.ws10f{word-spacing:-0.597600px;}
.ws45{word-spacing:-0.504000px;}
.ws81{word-spacing:-0.432000px;}
.ws103{word-spacing:-0.358560px;}
.ws8{word-spacing:-0.324000px;}
.ws10d{word-spacing:-0.298800px;}
.ws98{word-spacing:-0.288000px;}
.ws10c{word-spacing:-0.239040px;}
.wsbe{word-spacing:-0.216000px;}
.wsf1{word-spacing:-0.179280px;}
.wsf7{word-spacing:-0.162000px;}
.ws47{word-spacing:-0.144000px;}
.wsfd{word-spacing:-0.119520px;}
.ws2e{word-spacing:-0.072000px;}
.wsda{word-spacing:-0.070306px;}
.wsf8{word-spacing:-0.059760px;}
.ws5{word-spacing:0.000000px;}
.wsb4{word-spacing:0.042073px;}
.wsbb{word-spacing:0.042480px;}
.wsb5{word-spacing:0.042700px;}
.wsf2{word-spacing:0.059760px;}
.wsdb{word-spacing:0.072000px;}
.wsbc{word-spacing:0.072823px;}
.wsd8{word-spacing:0.082024px;}
.wsd9{word-spacing:0.082147px;}
.wsba{word-spacing:0.084960px;}
.ws62{word-spacing:0.144000px;}
.wsf4{word-spacing:0.179280px;}
.ws3f{word-spacing:0.216000px;}
.wsf0{word-spacing:0.239040px;}
.ws9{word-spacing:0.288000px;}
.wsff{word-spacing:0.298800px;}
.ws6{word-spacing:0.324000px;}
.ws102{word-spacing:0.358560px;}
.ws107{word-spacing:0.418320px;}
.ws83{word-spacing:0.432000px;}
.wsf6{word-spacing:0.486000px;}
.wsfa{word-spacing:0.537840px;}
.ws76{word-spacing:0.576000px;}
.ws100{word-spacing:0.597600px;}
.ws7{word-spacing:0.648000px;}
.wsf9{word-spacing:0.657360px;}
.ws101{word-spacing:0.717120px;}
.wsa{word-spacing:0.720000px;}
.wsfe{word-spacing:0.776880px;}
.wsc5{word-spacing:0.936000px;}
.ws109{word-spacing:0.956160px;}
.ws43{word-spacing:1.008000px;}
.ws53{word-spacing:1.013040px;}
.ws108{word-spacing:1.254960px;}
.wse{word-spacing:1.296000px;}
.ws1e{word-spacing:1.440000px;}
.ws1d{word-spacing:1.584000px;}
.wsf{word-spacing:1.728000px;}
.ws1f{word-spacing:2.016000px;}
.ws1c{word-spacing:2.160000px;}
.ws32{word-spacing:2.448000px;}
.ws24{word-spacing:2.736000px;}
.ws26{word-spacing:2.880000px;}
.ws25{word-spacing:3.096000px;}
.ws27{word-spacing:3.168000px;}
.ws37{word-spacing:3.456000px;}
.ws38{word-spacing:3.600000px;}
.ws39{word-spacing:3.888000px;}
.ws2a{word-spacing:4.176000px;}
.ws2b{word-spacing:4.320000px;}
.wsc0{word-spacing:4.536000px;}
.ws3d{word-spacing:4.608000px;}
.ws30{word-spacing:4.896000px;}
.ws2d{word-spacing:5.040000px;}
.ws63{word-spacing:5.256000px;}
.ws2c{word-spacing:5.328000px;}
.ws44{word-spacing:5.616000px;}
.wsb{word-spacing:5.760000px;}
.ws6b{word-spacing:5.976000px;}
.ws75{word-spacing:6.048000px;}
.ws4c{word-spacing:6.336000px;}
.ws41{word-spacing:6.480000px;}
.ws7f{word-spacing:6.768000px;}
.ws29{word-spacing:7.056000px;}
.ws28{word-spacing:7.200000px;}
.wsc6{word-spacing:7.416000px;}
.ws56{word-spacing:7.488000px;}
.ws40{word-spacing:7.776000px;}
.ws2f{word-spacing:7.920000px;}
.ws3e{word-spacing:8.208000px;}
.ws42{word-spacing:8.640000px;}
.wsb8{word-spacing:8.856000px;}
.ws55{word-spacing:8.928000px;}
.ws23{word-spacing:9.216000px;}
.ws1a{word-spacing:9.360000px;}
.ws1b{word-spacing:9.576000px;}
.ws5b{word-spacing:9.648000px;}
.ws60{word-spacing:9.936000px;}
.ws61{word-spacing:10.080000px;}
.wsc4{word-spacing:10.368000px;}
.wsb6{word-spacing:10.656000px;}
.ws22{word-spacing:10.800000px;}
.wsb7{word-spacing:11.016000px;}
.ws70{word-spacing:11.088000px;}
.ws69{word-spacing:11.376000px;}
.ws3a{word-spacing:11.520000px;}
.wse4{word-spacing:11.664000px;}
.ws3c{word-spacing:11.808000px;}
.ws79{word-spacing:12.096000px;}
.ws10{word-spacing:12.240000px;}
.wsdc{word-spacing:12.384000px;}
.ws11{word-spacing:12.528000px;}
.ws6e{word-spacing:12.816000px;}
.ws3b{word-spacing:12.960000px;}
.ws57{word-spacing:13.248000px;}
.ws50{word-spacing:13.680000px;}
.ws51{word-spacing:13.824000px;}
.ws6c{word-spacing:13.896000px;}
.ws6d{word-spacing:13.968000px;}
.ws5f{word-spacing:14.256000px;}
.ws4f{word-spacing:14.400000px;}
.wse6{word-spacing:14.544000px;}
.ws5e{word-spacing:14.688000px;}
.ws66{word-spacing:15.120000px;}
.ws67{word-spacing:15.408000px;}
.ws4e{word-spacing:15.696000px;}
.ws4d{word-spacing:15.840000px;}
.wse2{word-spacing:15.984000px;}
.wse3{word-spacing:16.056000px;}
.ws68{word-spacing:16.128000px;}
.ws65{word-spacing:16.416000px;}
.ws64{word-spacing:16.560000px;}
.ws6f{word-spacing:16.848000px;}
.ws20{word-spacing:17.136000px;}
.ws21{word-spacing:17.280000px;}
.wsc1{word-spacing:17.352000px;}
.wsdd{word-spacing:18.000000px;}
.wse5{word-spacing:18.144000px;}
.wsc2{word-spacing:18.288000px;}
.wsde{word-spacing:19.008000px;}
.ws73{word-spacing:19.296000px;}
.ws72{word-spacing:19.440000px;}
.ws71{word-spacing:19.728000px;}
.wsca{word-spacing:20.016000px;}
.ws31{word-spacing:20.160000px;}
.wsc9{word-spacing:20.448000px;}
.wsdf{word-spacing:20.880000px;}
.ws12{word-spacing:21.600000px;}
.ws5a{word-spacing:22.176000px;}
.ws80{word-spacing:22.320000px;}
.ws82{word-spacing:22.896000px;}
.ws16{word-spacing:23.040000px;}
.ws17{word-spacing:23.328000px;}
.ws59{word-spacing:25.056000px;}
.ws58{word-spacing:25.200000px;}
.ws5d{word-spacing:25.416000px;}
.ws5c{word-spacing:25.488000px;}
.wse7{word-spacing:25.920000px;}
.wsc3{word-spacing:26.496000px;}
.ws78{word-spacing:26.640000px;}
.ws77{word-spacing:26.928000px;}
.wse9{word-spacing:28.080000px;}
.wsea{word-spacing:28.368000px;}
.ws99{word-spacing:29.920198px;}
.wsc7{word-spacing:30.240000px;}
.wsc8{word-spacing:30.456000px;}
.ws52{word-spacing:31.248000px;}
.wsd{word-spacing:31.536000px;}
.wsc{word-spacing:31.680000px;}
.wsb9{word-spacing:31.968000px;}
.ws46{word-spacing:32.400000px;}
.wse1{word-spacing:35.280000px;}
.ws13{word-spacing:40.320000px;}
.ws19{word-spacing:44.640000px;}
.ws18{word-spacing:44.928000px;}
.ws84{word-spacing:50.152547px;}
.wsb2{word-spacing:60.685191px;}
.ws9c{word-spacing:66.438389px;}
.ws9e{word-spacing:66.438988px;}
.wsa4{word-spacing:70.498030px;}
.wsb0{word-spacing:112.102397px;}
.ws85{word-spacing:115.583070px;}
.ws87{word-spacing:121.950434px;}
.wsab{word-spacing:129.371378px;}
.wscd{word-spacing:141.744386px;}
.wsa1{word-spacing:166.834382px;}
.wsd5{word-spacing:224.678730px;}
.wsaa{word-spacing:244.176531px;}
.wsce{word-spacing:283.999471px;}
.wscf{word-spacing:372.059050px;}
.wsd0{word-spacing:386.331156px;}
.ws8b{word-spacing:395.360937px;}
.wsae{word-spacing:403.855340px;}
.wsa9{word-spacing:523.916710px;}
.ws92{word-spacing:533.385477px;}
.ws9a{word-spacing:770.843279px;}
.wsa2{word-spacing:780.265104px;}
.wsa0{word-spacing:1004.853577px;}
.wsa7{word-spacing:1022.311200px;}
._2d{margin-left:-849.292017px;}
._25{margin-left:-780.525435px;}
._3a{margin-left:-662.050192px;}
._46{margin-left:-601.925400px;}
._39{margin-left:-585.957385px;}
._63{margin-left:-559.421659px;}
._6d{margin-left:-498.360468px;}
._47{margin-left:-474.409200px;}
._6b{margin-left:-470.236474px;}
._2a{margin-left:-465.803467px;}
._3b{margin-left:-464.076137px;}
._61{margin-left:-438.847555px;}
._56{margin-left:-413.386176px;}
._58{margin-left:-405.148262px;}
._68{margin-left:-380.195366px;}
._66{margin-left:-372.127541px;}
._4e{margin-left:-355.971600px;}
._6a{margin-left:-348.092986px;}
._42{margin-left:-344.026632px;}
._4a{margin-left:-336.213912px;}
._62{margin-left:-328.264605px;}
._4f{margin-left:-325.839679px;}
._44{margin-left:-310.594657px;}
._35{margin-left:-305.219381px;}
._34{margin-left:-295.304017px;}
._40{margin-left:-290.092370px;}
._1c{margin-left:-283.419725px;}
._55{margin-left:-250.504147px;}
._54{margin-left:-248.142275px;}
._59{margin-left:-244.040747px;}
._27{margin-left:-228.957405px;}
._15{margin-left:-220.256903px;}
._16{margin-left:-217.327882px;}
._64{margin-left:-212.041690px;}
._33{margin-left:-210.551428px;}
._57{margin-left:-204.315789px;}
._31{margin-left:-202.435317px;}
._18{margin-left:-200.787531px;}
._5a{margin-left:-194.616000px;}
._5b{margin-left:-193.464000px;}
._36{margin-left:-188.640000px;}
._50{margin-left:-182.160000px;}
._5e{margin-left:-178.562452px;}
._6e{margin-left:-177.455782px;}
._67{margin-left:-175.342166px;}
._2b{margin-left:-169.621171px;}
._19{margin-left:-164.514831px;}
._4c{margin-left:-161.479200px;}
._65{margin-left:-156.570571px;}
._52{margin-left:-150.713805px;}
._69{margin-left:-146.923941px;}
._49{margin-left:-145.863883px;}
._2c{margin-left:-138.438860px;}
._17{margin-left:-136.022625px;}
._29{margin-left:-133.714387px;}
._6c{margin-left:-129.600000px;}
._28{margin-left:-121.463190px;}
._41{margin-left:-117.532379px;}
._24{margin-left:-108.325116px;}
._23{margin-left:-103.726104px;}
._20{margin-left:-100.086074px;}
._53{margin-left:-97.437805px;}
._22{margin-left:-95.066475px;}
._43{margin-left:-93.911650px;}
._1d{margin-left:-91.327121px;}
._32{margin-left:-87.951752px;}
._1e{margin-left:-84.960000px;}
._2f{margin-left:-81.866449px;}
._4d{margin-left:-79.788000px;}
._3f{margin-left:-78.716396px;}
._3d{margin-left:-75.368448px;}
._21{margin-left:-72.000000px;}
._37{margin-left:-64.800000px;}
._45{margin-left:-53.342303px;}
._30{margin-left:-50.910586px;}
._72{margin-left:-23.828400px;}
._6f{margin-left:-14.400000px;}
._a{margin-left:-4.107600px;}
._8{margin-left:-2.232000px;}
._1{margin-left:-1.008000px;}
._0{width:1.004400px;}
._3{width:2.232000px;}
._9{width:4.104000px;}
._2{width:5.976000px;}
._c{width:7.203600px;}
._12{width:8.496000px;}
._d{width:9.511200px;}
._11{width:11.091600px;}
._5{width:12.168000px;}
._b{width:13.179600px;}
._e{width:14.472000px;}
._10{width:15.778800px;}
._13{width:19.551600px;}
._6{width:21.456000px;}
._14{width:23.619600px;}
._f{width:25.232400px;}
._5c{width:27.291600px;}
._5d{width:30.394800px;}
._4{width:32.050800px;}
._7{width:40.320000px;}
._79{width:50.697360px;}
._78{width:59.931360px;}
._73{width:73.440000px;}
._71{width:74.448000px;}
._70{width:110.448000px;}
._77{width:129.299760px;}
._4b{width:135.274234px;}
._1a{width:177.984000px;}
._3e{width:187.209525px;}
._1b{width:192.384000px;}
._51{width:194.400000px;}
._76{width:225.686160px;}
._75{width:240.537600px;}
._38{width:243.747917px;}
._5f{width:253.134866px;}
._60{width:275.598613px;}
._1f{width:422.237685px;}
._48{width:510.651692px;}
._3c{width:521.912041px;}
._26{width:728.845404px;}
._2e{width:805.118218px;}
._74{width:846.000000px;}
._7a{width:850.653360px;}
.fc0{color:rgb(0,0,0);}
.fs41{font-size:5.760000px;}
.fs40{font-size:38.880000px;}
.fs1a{font-size:38.945400px;}
.fs13{font-size:39.462600px;}
.fs6{font-size:41.011800px;}
.fs38{font-size:41.073600px;}
.fsd{font-size:41.545800px;}
.fs3d{font-size:41.623200px;}
.fs42{font-size:41.760000px;}
.fs20{font-size:42.072600px;}
.fs15{font-size:42.466800px;}
.fs2e{font-size:42.480000px;}
.fsa{font-size:42.583200px;}
.fs25{font-size:42.663000px;}
.fs24{font-size:42.700200px;}
.fs29{font-size:42.773400px;}
.fs4{font-size:48.240000px;}
.fs3f{font-size:54.000000px;}
.fs3e{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1b{font-size:66.763200px;}
.fs14{font-size:67.650000px;}
.fs7{font-size:70.305600px;}
.fs39{font-size:70.411800px;}
.fse{font-size:71.221800px;}
.fs3c{font-size:71.353800px;}
.fs0{font-size:72.000000px;}
.fs1f{font-size:72.124200px;}
.fs17{font-size:72.225000px;}
.fsf{font-size:72.450000px;}
.fs1c{font-size:72.464400px;}
.fs5{font-size:72.545400px;}
.fs16{font-size:72.799800px;}
.fs2f{font-size:72.822600px;}
.fs9{font-size:72.999600px;}
.fs11{font-size:73.000200px;}
.fs23{font-size:73.200000px;}
.fs2a{font-size:73.326000px;}
.fs32{font-size:74.255678px;}
.fs35{font-size:74.314966px;}
.fs3b{font-size:74.322941px;}
.fs3a{font-size:74.348527px;}
.fs18{font-size:76.094728px;}
.fs10{font-size:76.321704px;}
.fsb{font-size:76.749339px;}
.fs27{font-size:76.997574px;}
.fs26{font-size:77.040457px;}
.fs2b{font-size:77.137722px;}
.fs2{font-size:84.240000px;}
.fs33{font-size:92.825400px;}
.fs36{font-size:92.965200px;}
.fs30{font-size:93.192000px;}
.fsc{font-size:94.035000px;}
.fs8{font-size:96.762600px;}
.fs34{font-size:105.458400px;}
.fs31{font-size:105.459000px;}
.fs37{font-size:105.617400px;}
.fs19{font-size:107.621400px;}
.fs1{font-size:108.000000px;}
.fs1e{font-size:108.186000px;}
.fs2d{font-size:109.234200px;}
.fs22{font-size:109.800000px;}
.fs1d{font-size:113.069400px;}
.fs21{font-size:115.137600px;}
.fs2c{font-size:117.009600px;}
.fs28{font-size:117.436200px;}
.fs12{font-size:120.501000px;}
.y15e{bottom:-2.520000px;}
.y17b{bottom:-2.340000px;}
.y171{bottom:-2.160000px;}
.y177{bottom:-1.800000px;}
.y189{bottom:-1.620000px;}
.y0{bottom:0.000000px;}
.y18d{bottom:0.360000px;}
.y195{bottom:3.240000px;}
.y1b3{bottom:3.420000px;}
.y199{bottom:3.600000px;}
.y107{bottom:3.707850px;}
.y10a{bottom:3.708000px;}
.y10b{bottom:3.708150px;}
.y113{bottom:3.712682px;}
.y11b{bottom:3.713700px;}
.y11d{bottom:3.713850px;}
.y11f{bottom:3.714150px;}
.y128{bottom:3.753150px;}
.y125{bottom:3.753300px;}
.y170{bottom:3.780000px;}
.y7c{bottom:3.936600px;}
.y92{bottom:3.986550px;}
.ybf{bottom:4.151850px;}
.yb6{bottom:4.172700px;}
.yaf{bottom:4.550100px;}
.y9f{bottom:4.562550px;}
.ye3{bottom:4.570950px;}
.ye6{bottom:4.575813px;}
.yed{bottom:4.582950px;}
.yec{bottom:4.583100px;}
.yc8{bottom:5.306100px;}
.yfa{bottom:5.357100px;}
.yf7{bottom:5.357400px;}
.yf5{bottom:5.357550px;}
.yd2{bottom:5.385300px;}
.y12f{bottom:5.481900px;}
.ya5{bottom:5.637150px;}
.y1b6{bottom:5.760000px;}
.y17a{bottom:6.300000px;}
.y75{bottom:7.179300px;}
.yb2{bottom:7.523550px;}
.y9d{bottom:7.546950px;}
.y7e{bottom:8.330700px;}
.ybb{bottom:8.344950px;}
.yb9{bottom:8.345100px;}
.yb8{bottom:8.345250px;}
.yb7{bottom:8.345400px;}
.y96{bottom:8.437950px;}
.yb4{bottom:8.476050px;}
.yd7{bottom:8.674500px;}
.yb0{bottom:9.100050px;}
.y8d{bottom:9.123150px;}
.y8c{bottom:9.123300px;}
.y8b{bottom:9.123450px;}
.y8a{bottom:9.123900px;}
.y89{bottom:9.124050px;}
.y88{bottom:9.124200px;}
.y87{bottom:9.124350px;}
.y86{bottom:9.124500px;}
.y85{bottom:9.124800px;}
.y84{bottom:9.124950px;}
.ya0{bottom:9.125100px;}
.ye4{bottom:9.141900px;}
.ye7{bottom:9.142200px;}
.yee{bottom:9.165750px;}
.yeb{bottom:9.213750px;}
.y83{bottom:9.220200px;}
.ya9{bottom:9.864750px;}
.ya8{bottom:9.864900px;}
.ya7{bottom:9.865050px;}
.ya6{bottom:9.865200px;}
.y131{bottom:9.941400px;}
.ya3{bottom:9.997500px;}
.y1bb{bottom:12.600000px;}
.yba{bottom:15.821250px;}
.y129{bottom:16.111500px;}
.y120{bottom:16.137150px;}
.y106{bottom:16.432500px;}
.y11a{bottom:16.457250px;}
.y124{bottom:16.477950px;}
.ye2{bottom:17.331900px;}
.ye5{bottom:17.332050px;}
.y95{bottom:17.804250px;}
.yca{bottom:18.031050px;}
.yc1{bottom:18.119363px;}
.yf9{bottom:18.205500px;}
.yd4{bottom:18.302111px;}
.yc7{bottom:18.359700px;}
.yf4{bottom:18.537750px;}
.ycf{bottom:18.633600px;}
.yb5{bottom:19.168500px;}
.y12b{bottom:20.505450px;}
.y12a{bottom:20.505600px;}
.y126{bottom:20.505750px;}
.y108{bottom:20.506200px;}
.y10c{bottom:20.506350px;}
.y10d{bottom:20.506500px;}
.y10e{bottom:20.506650px;}
.y197{bottom:20.520000px;}
.y11c{bottom:20.537400px;}
.y11e{bottom:20.537700px;}
.y121{bottom:20.538150px;}
.y105{bottom:20.597400px;}
.y112{bottom:20.597550px;}
.y119{bottom:20.628600px;}
.y1b2{bottom:20.700000px;}
.y77{bottom:21.159300px;}
.y80{bottom:21.970800px;}
.ya4{bottom:22.197300px;}
.y98{bottom:22.255800px;}
.y99{bottom:22.255950px;}
.y91{bottom:22.348050px;}
.ycb{bottom:22.538850px;}
.yf6{bottom:22.757100px;}
.yf3{bottom:22.804650px;}
.yc6{bottom:22.820550px;}
.yd1{bottom:22.875000px;}
.yd5{bottom:22.875300px;}
.yce{bottom:23.160900px;}
.y12e{bottom:23.784750px;}
.y7d{bottom:28.653450px;}
.y94{bottom:29.164350px;}
.yc0{bottom:29.351345px;}
.yfc{bottom:30.911400px;}
.yc9{bottom:31.929900px;}
.yd3{bottom:32.169000px;}
.y76{bottom:32.400000px;}
.y7f{bottom:33.047550px;}
.y97{bottom:33.616050px;}
.y130{bottom:33.679500px;}
.yfb{bottom:34.561950px;}
.yd0{bottom:36.746400px;}
.yd6{bottom:36.746700px;}
.y132{bottom:38.139150px;}
.y127{bottom:38.356950px;}
.y109{bottom:38.357400px;}
.yf8{bottom:41.247150px;}
.y93{bottom:42.889500px;}
.y1{bottom:57.600000px;}
.y157{bottom:124.020000px;}
.y29{bottom:125.280000px;}
.y136{bottom:134.820000px;}
.y7b{bottom:143.940000px;}
.y6f{bottom:144.360000px;}
.y103{bottom:145.620000px;}
.y51{bottom:146.340000px;}
.y42{bottom:146.880000px;}
.yc3{bottom:159.915000px;}
.y156{bottom:165.420000px;}
.y81{bottom:166.500000px;}
.y28{bottom:166.680000px;}
.y5a{bottom:167.220000px;}
.y135{bottom:176.220000px;}
.yc4{bottom:178.020000px;}
.y6e{bottom:185.580000px;}
.y14b{bottom:185.940000px;}
.y102{bottom:187.020000px;}
.y50{bottom:187.740000px;}
.y41{bottom:188.280000px;}
.y155{bottom:206.820000px;}
.y4e{bottom:208.080000px;}
.y59{bottom:208.620000px;}
.y15{bottom:210.600000px;}
.y134{bottom:217.620000px;}
.yf2{bottom:220.590000px;}
.y6d{bottom:226.980000px;}
.y14a{bottom:227.340000px;}
.y101{bottom:228.420000px;}
.y27{bottom:229.140000px;}
.y40{bottom:229.680000px;}
.y7a{bottom:239.940000px;}
.yfd{bottom:243.180000px;}
.y158{bottom:248.220000px;}
.ybe{bottom:248.340000px;}
.y4d{bottom:249.480000px;}
.y58{bottom:250.020000px;}
.yc2{bottom:266.400000px;}
.y154{bottom:269.280000px;}
.y26{bottom:270.540000px;}
.y3f{bottom:271.080000px;}
.y14{bottom:273.060000px;}
.y12d{bottom:275.490000px;}
.y79{bottom:281.340000px;}
.y6c{bottom:289.440000px;}
.y149{bottom:289.620000px;}
.y100{bottom:290.520000px;}
.y4c{bottom:290.880000px;}
.y57{bottom:291.420000px;}
.y133{bottom:299.520000px;}
.y153{bottom:310.680000px;}
.y13e{bottom:311.220000px;}
.y25{bottom:311.940000px;}
.y3e{bottom:312.480000px;}
.y13{bottom:314.280000px;}
.yf1{bottom:319.860000px;}
.y6b{bottom:330.840000px;}
.y148{bottom:331.020000px;}
.y4b{bottom:332.280000px;}
.y56{bottom:332.820000px;}
.y74{bottom:339.390000px;}
.ybd{bottom:341.280000px;}
.y152{bottom:352.080000px;}
.y24{bottom:353.340000px;}
.y3d{bottom:353.880000px;}
.y12{bottom:355.680000px;}
.y78{bottom:360.540000px;}
.y6a{bottom:372.240000px;}
.y4a{bottom:373.680000px;}
.y55{bottom:374.220000px;}
.y123{bottom:375.240000px;}
.yf0{bottom:382.320000px;}
.y147{bottom:393.480000px;}
.y23{bottom:394.740000px;}
.y3c{bottom:395.280000px;}
.y12c{bottom:396.360000px;}
.yb3{bottom:399.315000px;}
.ybc{bottom:408.420000px;}
.y69{bottom:413.640000px;}
.y151{bottom:414.540000px;}
.y49{bottom:415.080000px;}
.y54{bottom:415.620000px;}
.y11{bottom:418.500000px;}
.yef{bottom:423.720000px;}
.y15a{bottom:434.520000px;}
.y146{bottom:434.880000px;}
.y73{bottom:435.420000px;}
.y22{bottom:436.140000px;}
.y3b{bottom:436.680000px;}
.y150{bottom:455.940000px;}
.y48{bottom:456.480000px;}
.y53{bottom:457.020000px;}
.y10{bottom:459.900000px;}
.yea{bottom:460.515000px;}
.y118{bottom:466.815000px;}
.ye9{bottom:469.620000px;}
.y68{bottom:476.100000px;}
.y145{bottom:476.280000px;}
.y21{bottom:477.540000px;}
.y3a{bottom:478.080000px;}
.yae{bottom:482.340000px;}
.yb1{bottom:483.765000px;}
.y122{bottom:487.980000px;}
.yad{bottom:491.400000px;}
.y14f{bottom:497.340000px;}
.y47{bottom:497.880000px;}
.y4f{bottom:498.060000px;}
.y52{bottom:498.420000px;}
.yf{bottom:501.300000px;}
.y1da{bottom:503.100000px;}
.ye8{bottom:514.800000px;}
.y67{bottom:517.500000px;}
.yff{bottom:518.940000px;}
.y39{bottom:519.480000px;}
.y1d9{bottom:538.195140px;}
.y144{bottom:538.560000px;}
.y46{bottom:539.280000px;}
.y20{bottom:539.820000px;}
.ye{bottom:542.700000px;}
.ye1{bottom:551.640000px;}
.y1d8{bottom:555.660000px;}
.y66{bottom:558.900000px;}
.yac{bottom:560.160000px;}
.yfe{bottom:560.340000px;}
.ye0{bottom:560.700000px;}
.y38{bottom:560.880000px;}
.y117{bottom:563.040000px;}
.y1d7{bottom:572.934420px;}
.y143{bottom:579.960000px;}
.y45{bottom:580.680000px;}
.y1f{bottom:581.220000px;}
.yd{bottom:584.100000px;}
.y1d6{bottom:590.220000px;}
.y65{bottom:600.300000px;}
.y14e{bottom:601.020000px;}
.yab{bottom:601.560000px;}
.y37{bottom:602.280000px;}
.y116{bottom:604.440000px;}
.ydf{bottom:605.880000px;}
.y1d5{bottom:612.720000px;}
.y72{bottom:622.080000px;}
.y1e{bottom:622.620000px;}
.yc{bottom:625.500000px;}
.y1e2{bottom:625.860000px;}
.y64{bottom:641.700000px;}
.y142{bottom:642.420000px;}
.y44{bottom:642.600000px;}
.y36{bottom:643.680000px;}
.y115{bottom:645.840000px;}
.y1e1{bottom:646.920000px;}
.ya2{bottom:659.640000px;}
.y71{bottom:663.480000px;}
.y1d{bottom:664.020000px;}
.yb{bottom:666.900000px;}
.y1e0{bottom:667.620000px;}
.yde{bottom:668.340000px;}
.y1d4{bottom:670.128840px;}
.yaa{bottom:670.140000px;}
.y1e7{bottom:670.320000px;}
.y191{bottom:680.220000px;}
.y141{bottom:683.820000px;}
.y43{bottom:684.000000px;}
.y35{bottom:685.080000px;}
.y1d3{bottom:687.414420px;}
.y1df{bottom:702.360000px;}
.y63{bottom:703.620000px;}
.y111{bottom:703.740000px;}
.y1d2{bottom:704.694420px;}
.y13d{bottom:704.880000px;}
.y1c{bottom:705.420000px;}
.y1e6{bottom:705.588840px;}
.ya{bottom:708.300000px;}
.ydd{bottom:709.740000px;}
.y1de{bottom:719.994420px;}
.y1d1{bottom:721.980000px;}
.y1e5{bottom:722.874420px;}
.y114{bottom:724.860000px;}
.y140{bottom:725.220000px;}
.y70{bottom:725.400000px;}
.y34{bottom:726.480000px;}
.y1aa{bottom:730.080000px;}
.y1dd{bottom:737.280000px;}
.ya1{bottom:739.620000px;}
.y1e4{bottom:740.160000px;}
.y190{bottom:742.680000px;}
.y62{bottom:745.020000px;}
.y16f{bottom:745.560000px;}
.y13c{bottom:746.280000px;}
.y1b{bottom:746.820000px;}
.y1a9{bottom:750.780000px;}
.ydc{bottom:751.140000px;}
.y1d0{bottom:756.720000px;}
.y1dc{bottom:765.720000px;}
.y1a8{bottom:767.340000px;}
.y33{bottom:767.880000px;}
.y16e{bottom:768.428280px;}
.y9{bottom:770.400000px;}
.y1e3{bottom:774.900000px;}
.y9e{bottom:776.415000px;}
.y9c{bottom:777.840000px;}
.y18e{bottom:779.940000px;}
.y1ad{bottom:781.920000px;}
.y18f{bottom:783.900000px;}
.y9b{bottom:785.520000px;}
.y13b{bottom:787.680000px;}
.y1a{bottom:788.220000px;}
.y16d{bottom:791.824320px;}
.ydb{bottom:792.540000px;}
.y1a7{bottom:794.340000px;}
.y110{bottom:799.740000px;}
.y18c{bottom:802.440000px;}
.y1ac{bottom:802.620000px;}
.y18b{bottom:804.780000px;}
.y61{bottom:807.840000px;}
.y159{bottom:808.560000px;}
.y32{bottom:809.280000px;}
.y18a{bottom:811.260000px;}
.y1a6{bottom:811.620000px;}
.y16c{bottom:814.323960px;}
.y1ab{bottom:819.180000px;}
.y188{bottom:827.280000px;}
.y1a5{bottom:828.900000px;}
.y13a{bottom:829.080000px;}
.y19{bottom:829.620000px;}
.y8{bottom:830.880000px;}
.y187{bottom:834.300000px;}
.y16b{bottom:836.823600px;}
.y90{bottom:845.566500px;}
.y1a4{bottom:846.180000px;}
.y14d{bottom:849.960000px;}
.y31{bottom:850.680000px;}
.y186{bottom:851.040000px;}
.yda{bottom:854.820000px;}
.y185{bottom:857.340000px;}
.y104{bottom:857.640000px;}
.y16a{bottom:859.323240px;}
.y1a3{bottom:863.460000px;}
.y9a{bottom:868.140000px;}
.y60{bottom:870.300000px;}
.y139{bottom:870.480000px;}
.y7{bottom:871.020000px;}
.y184{bottom:873.540000px;}
.y10f{bottom:878.760000px;}
.y183{bottom:879.840000px;}
.y1a2{bottom:880.560000px;}
.y169{bottom:881.822880px;}
.y1ce{bottom:882.000000px;}
.y1bd{bottom:885.600000px;}
.y14c{bottom:891.360000px;}
.y30{bottom:892.080000px;}
.y182{bottom:896.040000px;}
.yd9{bottom:896.220000px;}
.y1a1{bottom:897.840000px;}
.y181{bottom:902.340000px;}
.y1cd{bottom:902.520000px;}
.y168{bottom:904.322520px;}
.y5f{bottom:911.700000px;}
.y138{bottom:911.880000px;}
.y6{bottom:912.420000px;}
.y1a0{bottom:915.120000px;}
.y180{bottom:918.540000px;}
.y1cc{bottom:919.080000px;}
.y17f{bottom:924.840000px;}
.y167{bottom:926.822160px;}
.y1cb{bottom:929.700000px;}
.y13f{bottom:932.400000px;}
.y2f{bottom:933.480000px;}
.y17e{bottom:941.760000px;}
.y8f{bottom:946.620000px;}
.y1ca{bottom:946.980000px;}
.y1bc{bottom:947.880000px;}
.y166{bottom:949.321800px;}
.y19f{bottom:949.680000px;}
.y5e{bottom:953.100000px;}
.y5{bottom:953.820000px;}
.ycd{bottom:954.240000px;}
.y1c9{bottom:958.860000px;}
.y17d{bottom:964.260000px;}
.y19e{bottom:966.780000px;}
.y165{bottom:971.821440px;}
.y137{bottom:973.800000px;}
.y2e{bottom:974.880000px;}
.y1c8{bottom:976.140000px;}
.yd8{bottom:976.860000px;}
.y1c7{bottom:979.920000px;}
.y19d{bottom:984.060000px;}
.y1ba{bottom:985.140000px;}
.y17c{bottom:986.760000px;}
.y1c6{bottom:993.420000px;}
.y5d{bottom:994.320000px;}
.y164{bottom:994.321080px;}
.y4{bottom:995.220000px;}
.y19c{bottom:1001.340000px;}
.y82{bottom:1004.490000px;}
.y1b9{bottom:1007.100000px;}
.y179{bottom:1009.260000px;}
.y1c5{bottom:1011.420000px;}
.y8e{bottom:1013.580000px;}
.y2d{bottom:1016.280000px;}
.y163{bottom:1016.820720px;}
.y19b{bottom:1018.620000px;}
.y1c4{bottom:1027.800000px;}
.y1b8{bottom:1028.340000px;}
.y176{bottom:1031.760000px;}
.y1c3{bottom:1032.660000px;}
.y5c{bottom:1035.720000px;}
.y19a{bottom:1035.900000px;}
.y18{bottom:1036.620000px;}
.y178{bottom:1038.600000px;}
.y175{bottom:1038.603240px;}
.y162{bottom:1039.320360px;}
.y1b5{bottom:1049.580000px;}
.yc5{bottom:1050.765000px;}
.y1b7{bottom:1053.000000px;}
.y198{bottom:1053.180000px;}
.y1c1{bottom:1054.620000px;}
.y174{bottom:1055.340000px;}
.y2c{bottom:1057.680000px;}
.y161{bottom:1061.820000px;}
.y1c0{bottom:1066.672260px;}
.y1c2{bottom:1066.680000px;}
.y3{bottom:1069.560000px;}
.y196{bottom:1071.180000px;}
.y1b1{bottom:1071.540000px;}
.ycc{bottom:1073.340000px;}
.y173{bottom:1077.840000px;}
.y17{bottom:1078.020000px;}
.y1b4{bottom:1083.600000px;}
.y1b0{bottom:1083.602700px;}
.y172{bottom:1083.960000px;}
.y160{bottom:1084.320000px;}
.y194{bottom:1089.180000px;}
.y5b{bottom:1098.540000px;}
.y2b{bottom:1099.080000px;}
.y15d{bottom:1101.060000px;}
.y15c{bottom:1107.173880px;}
.y15f{bottom:1107.180000px;}
.y1bf{bottom:1108.429560px;}
.y1af{bottom:1125.355140px;}
.y193{bottom:1125.715140px;}
.y1be{bottom:1125.894420px;}
.y2{bottom:1131.660000px;}
.y1db{bottom:1139.940000px;}
.y16{bottom:1140.120000px;}
.y1cf{bottom:1140.300000px;}
.y2a{bottom:1140.480000px;}
.y1ae{bottom:1142.820000px;}
.y15b{bottom:1143.000000px;}
.y192{bottom:1143.180000px;}
.h7f{height:1.620000px;}
.h80{height:5.653125px;}
.h85{height:17.098500px;}
.h83{height:17.100000px;}
.h86{height:17.280000px;}
.h89{height:21.240000px;}
.h8b{height:21.241500px;}
.h7d{height:22.498500px;}
.h78{height:22.500000px;}
.h7c{height:23.578500px;}
.h7e{height:23.760000px;}
.h28{height:24.075000px;}
.h19{height:24.150000px;}
.h87{height:26.280000px;}
.h24{height:27.300000px;}
.hf{height:27.373500px;}
.h1c{height:27.375000px;}
.h45{height:28.951500px;}
.h4a{height:29.025000px;}
.h2b{height:30.600000px;}
.h1f{height:33.825000px;}
.h88{height:34.560000px;}
.h84{height:35.100000px;}
.h5b{height:37.307121px;}
.h68{height:37.363338px;}
.h81{height:38.139609px;}
.h8a{height:38.158594px;}
.h2f{height:38.203764px;}
.h2d{height:38.222780px;}
.h53{height:38.642695px;}
.h21{height:38.730384px;}
.h8e{height:39.060000px;}
.h7a{height:39.183750px;}
.h5d{height:40.230814px;}
.hd{height:40.250839px;}
.h6c{height:40.311492px;}
.h17{height:40.774931px;}
.h74{height:40.850895px;}
.h3a{height:41.271413px;}
.h3c{height:41.291956px;}
.h55{height:41.671055px;}
.h25{height:41.678842px;}
.h58{height:41.691797px;}
.h1d{height:41.793082px;}
.h47{height:41.850570px;}
.h46{height:41.871401px;}
.h42{height:41.887061px;}
.h4c{height:41.958867px;}
.h36{height:43.575000px;}
.h31{height:46.798500px;}
.h6f{height:49.798500px;}
.hc{height:49.800000px;}
.h65{height:49.875000px;}
.h8{height:49.876500px;}
.h50{height:53.100000px;}
.h27{height:54.000000px;}
.h15{height:54.898500px;}
.h3d{height:54.900000px;}
.h72{height:57.975000px;}
.h7b{height:58.621992px;}
.h79{height:58.651172px;}
.h8f{height:58.673492px;}
.h77{height:60.226875px;}
.h82{height:60.246315px;}
.h23{height:61.539038px;}
.h33{height:63.441733px;}
.h5c{height:63.954752px;}
.h75{height:64.908266px;}
.h4{height:65.010937px;}
.h30{height:65.491830px;}
.h8c{height:65.518594px;}
.h2e{height:65.524430px;}
.ha{height:65.992227px;}
.h22{height:66.394775px;}
.h14{height:66.405398px;}
.h8d{height:66.526470px;}
.h40{height:66.587695px;}
.h4f{height:66.702313px;}
.h60{height:67.548012px;}
.h64{height:67.601944px;}
.h71{height:67.609198px;}
.h6e{height:67.632474px;}
.h5f{height:68.966773px;}
.he{height:69.001102px;}
.h6b{height:69.070950px;}
.h2a{height:69.220937px;}
.h1b{height:69.427409px;}
.h13{height:69.816415px;}
.h18{height:69.900302px;}
.h76{height:69.995012px;}
.h73{height:70.029853px;}
.h49{height:70.042227px;}
.h48{height:70.081236px;}
.h4e{height:70.169715px;}
.h2{height:70.664062px;}
.h3b{height:70.785958px;}
.h29{height:70.884888px;}
.h34{height:71.084463px;}
.h1a{height:71.105713px;}
.h32{height:71.119846px;}
.h9{height:71.163920px;}
.h26{height:71.449022px;}
.h12{height:71.609471px;}
.h11{height:71.645115px;}
.h1e{height:71.645704px;}
.h43{height:71.806055px;}
.h44{height:71.841797px;}
.h5{height:72.562500px;}
.h6{height:75.093750px;}
.h7{height:80.464922px;}
.h61{height:84.440293px;}
.h66{height:84.568065px;}
.h59{height:84.774377px;}
.h6d{height:86.708731px;}
.h10{height:88.021838px;}
.h57{height:89.641642px;}
.h70{height:89.664214px;}
.h5e{height:89.847814px;}
.h63{height:89.855092px;}
.h6a{height:89.983437px;}
.h39{height:92.171213px;}
.h56{height:93.064055px;}
.h4d{height:93.154953px;}
.h41{height:93.554303px;}
.h62{height:95.932129px;}
.h5a{height:95.932674px;}
.h67{height:96.076766px;}
.h2c{height:97.899740px;}
.h38{height:98.413339px;}
.h52{height:99.366853px;}
.h3f{height:99.881543px;}
.h37{height:102.855611px;}
.h3e{height:104.736987px;}
.h51{height:106.439885px;}
.h4b{height:106.827950px;}
.h3{height:108.843750px;}
.h20{height:109.615900px;}
.h69{height:111.803037px;}
.h54{height:115.631855px;}
.h35{height:116.047774px;}
.hb{height:116.162743px;}
.h16{height:130.982227px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w24{width:18.000000px;}
.w29{width:18.720000px;}
.w19{width:20.338500px;}
.w1d{width:20.340000px;}
.w10{width:24.075000px;}
.wf{width:25.723500px;}
.w1b{width:41.580000px;}
.wa{width:41.925000px;}
.w6{width:42.000000px;}
.w9{width:53.100000px;}
.w7{width:54.900000px;}
.w34{width:57.420000px;}
.w36{width:62.458500px;}
.w37{width:62.460000px;}
.w35{width:67.140000px;}
.wc{width:69.301500px;}
.w33{width:75.420000px;}
.w30{width:84.960000px;}
.w27{width:85.140000px;}
.w26{width:85.320000px;}
.w2d{width:88.740000px;}
.w2f{width:88.918500px;}
.w2c{width:88.920000px;}
.w2e{width:89.100000px;}
.w17{width:90.000000px;}
.w20{width:93.420000px;}
.w1c{width:96.300000px;}
.w1a{width:96.480000px;}
.w18{width:96.660000px;}
.w11{width:104.775000px;}
.w21{width:111.060000px;}
.w1f{width:114.480000px;}
.w1e{width:114.840000px;}
.w2b{width:119.880000px;}
.w12{width:120.975000px;}
.w3{width:127.425000px;}
.w4{width:128.850000px;}
.w15{width:138.600000px;}
.w14{width:140.250000px;}
.w25{width:143.460000px;}
.w16{width:162.900000px;}
.w31{width:170.100000px;}
.w5{width:177.301500px;}
.w8{width:180.525000px;}
.wb{width:206.475000px;}
.w2{width:216.000000px;}
.w13{width:225.750000px;}
.w23{width:255.780000px;}
.w28{width:266.760000px;}
.w2a{width:266.940000px;}
.we{width:311.025000px;}
.wd{width:315.900000px;}
.w32{width:595.260000px;}
.w38{width:622.260000px;}
.w22{width:691.020000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:1.312500px;}
.x22{left:2.684100px;}
.xe{left:4.968750px;}
.xa0{left:8.100000px;}
.x65{left:9.101100px;}
.x8f{left:10.260000px;}
.x20{left:12.125850px;}
.x57{left:14.328450px;}
.x21{left:17.355600px;}
.x11{left:18.609300px;}
.xa5{left:19.620000px;}
.x78{left:21.116700px;}
.x99{left:22.140000px;}
.x64{left:23.943000px;}
.x73{left:25.752000px;}
.x29{left:26.764050px;}
.x17{left:29.701350px;}
.x2d{left:32.437500px;}
.x32{left:33.549750px;}
.x1f{left:34.804200px;}
.x4a{left:37.842150px;}
.x24{left:38.969400px;}
.x70{left:40.657500px;}
.x39{left:42.053250px;}
.x74{left:43.077000px;}
.x31{left:44.177100px;}
.x10{left:45.890550px;}
.x5b{left:48.178050px;}
.x5e{left:49.187250px;}
.xd{left:51.140550px;}
.x1e{left:52.761750px;}
.x44{left:56.588700px;}
.x61{left:57.625800px;}
.xc{left:58.828050px;}
.x2b{left:60.148650px;}
.x1a{left:61.555500px;}
.x1d{left:66.831600px;}
.x68{left:68.935050px;}
.x5f{left:70.680450px;}
.x60{left:71.752650px;}
.xf{left:72.984300px;}
.x36{left:79.492200px;}
.x3d{left:84.815550px;}
.x23{left:89.139450px;}
.x5a{left:91.023300px;}
.x16{left:92.102100px;}
.x76{left:93.498300px;}
.x66{left:95.118300px;}
.x15{left:98.145450px;}
.x8b{left:100.980000px;}
.x1c{left:102.468900px;}
.x8{left:106.200000px;}
.x13{left:108.030150px;}
.x67{left:109.073250px;}
.xb1{left:110.160000px;}
.x7{left:111.600000px;}
.x6b{left:112.783054px;}
.x14{left:114.026700px;}
.x71{left:116.051250px;}
.x75{left:118.026450px;}
.x1b{left:119.917350px;}
.x50{left:122.335687px;}
.x5d{left:123.831000px;}
.x40{left:125.587050px;}
.x2a{left:128.185650px;}
.x42{left:130.917300px;}
.x7d{left:132.120000px;}
.x9{left:133.200000px;}
.xb{left:134.578050px;}
.x2{left:136.620000px;}
.xa{left:138.240000px;}
.x35{left:141.174600px;}
.x47{left:144.082350px;}
.x63{left:146.489250px;}
.x26{left:148.422900px;}
.x28{left:150.301050px;}
.x6e{left:152.381400px;}
.x5{left:154.440000px;}
.x3e{left:156.212250px;}
.x9a{left:160.581780px;}
.x38{left:161.715000px;}
.x27{left:165.749100px;}
.x62{left:170.546850px;}
.x34{left:171.666300px;}
.x41{left:172.904250px;}
.x45{left:175.500000px;}
.x6c{left:176.884650px;}
.x2f{left:178.920000px;}
.x3f{left:181.694250px;}
.x4{left:183.240000px;}
.x95{left:186.300000px;}
.x9d{left:189.900000px;}
.xa9{left:192.780000px;}
.x54{left:193.880625px;}
.x6{left:197.460000px;}
.x6a{left:199.177350px;}
.x52{left:203.513086px;}
.x46{left:208.014450px;}
.x6d{left:213.286800px;}
.x3a{left:214.740000px;}
.x7e{left:215.820000px;}
.x3{left:218.862000px;}
.x58{left:222.480000px;}
.x3b{left:224.940000px;}
.x69{left:227.160000px;}
.x4f{left:229.944356px;}
.x55{left:231.849600px;}
.x18{left:233.640000px;}
.x25{left:235.080000px;}
.x49{left:238.053150px;}
.x53{left:243.315656px;}
.x77{left:244.800000px;}
.x72{left:246.420000px;}
.x7a{left:249.295320px;}
.x51{left:253.786807px;}
.x48{left:255.117450px;}
.x4c{left:257.373900px;}
.xa7{left:259.920000px;}
.x4e{left:263.315100px;}
.x3c{left:266.760000px;}
.x79{left:269.100000px;}
.x7f{left:270.180000px;}
.x96{left:271.440000px;}
.x59{left:279.180000px;}
.x2c{left:283.500000px;}
.x37{left:286.740000px;}
.x4b{left:291.173250px;}
.xa6{left:298.250460px;}
.xb2{left:301.684320px;}
.x43{left:312.660000px;}
.x9e{left:318.960000px;}
.x12{left:322.200000px;}
.x6f{left:331.920000px;}
.xaa{left:343.440000px;}
.xa8{left:352.980000px;}
.x92{left:356.760000px;}
.x89{left:360.360000px;}
.xb3{left:362.297160px;}
.x5c{left:367.200000px;}
.x80{left:375.300000px;}
.x81{left:386.820000px;}
.xa1{left:403.920000px;}
.x56{left:417.240000px;}
.x4d{left:422.100000px;}
.x9f{left:426.240000px;}
.x82{left:429.300000px;}
.x91{left:432.360000px;}
.x19{left:437.400000px;}
.x1{left:441.900000px;}
.xab{left:450.180000px;}
.x97{left:459.900000px;}
.x7b{left:468.900000px;}
.x8c{left:470.880000px;}
.x83{left:476.100000px;}
.xa2{left:489.060000px;}
.xac{left:520.740000px;}
.x90{left:530.640000px;}
.x98{left:545.220000px;}
.x8d{left:564.300000px;}
.xa3{left:574.020000px;}
.x7c{left:584.820000px;}
.x93{left:630.540000px;}
.xad{left:637.740000px;}
.x84{left:639.720000px;}
.x94{left:648.540000px;}
.x9b{left:653.400000px;}
.xa4{left:659.160000px;}
.x8e{left:660.600000px;}
.x9c{left:672.120000px;}
.x85{left:681.660000px;}
.x87{left:702.000000px;}
.xaf{left:703.980000px;}
.xae{left:708.300000px;}
.x8a{left:726.300000px;}
.x30{left:727.440000px;}
.x86{left:741.060000px;}
.x88{left:752.580000px;}
.x33{left:782.280000px;}
.xb0{left:786.600000px;}
@media print{
.v5{vertical-align:-49.706667pt;}
.v4{vertical-align:-29.440000pt;}
.v10{vertical-align:-24.320000pt;}
.v7{vertical-align:-16.222933pt;}
.ve{vertical-align:-10.880000pt;}
.v1{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.320000pt;}
.v8{vertical-align:14.859200pt;}
.va{vertical-align:16.294400pt;}
.vf{vertical-align:24.320000pt;}
.v3{vertical-align:29.440000pt;}
.v11{vertical-align:32.624640pt;}
.v6{vertical-align:39.967467pt;}
.vc{vertical-align:44.104000pt;}
.v9{vertical-align:45.244267pt;}
.vd{vertical-align:63.565867pt;}
.vb{vertical-align:65.742933pt;}
.ls37{letter-spacing:-1.344000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls2a{letter-spacing:-0.900480pt;}
.ls1c{letter-spacing:-0.896000pt;}
.ls30{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.704000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls8d{letter-spacing:-0.531200pt;}
.ls36{letter-spacing:-0.512000pt;}
.ls90{letter-spacing:-0.478080pt;}
.ls69{letter-spacing:-0.448000pt;}
.ls87{letter-spacing:-0.432000pt;}
.ls89{letter-spacing:-0.424960pt;}
.ls3d{letter-spacing:-0.384000pt;}
.ls8f{letter-spacing:-0.371840pt;}
.ls8a{letter-spacing:-0.318720pt;}
.ls2b{letter-spacing:-0.300160pt;}
.ls6{letter-spacing:-0.288000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls7d{letter-spacing:-0.212480pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls8e{letter-spacing:-0.106240pt;}
.ls54{letter-spacing:-0.075520pt;}
.ls67{letter-spacing:-0.073020pt;}
.ls65{letter-spacing:-0.072910pt;}
.ls56{letter-spacing:-0.064731pt;}
.ls3c{letter-spacing:-0.064485pt;}
.ls58{letter-spacing:-0.064000pt;}
.ls49{letter-spacing:-0.059345pt;}
.ls7f{letter-spacing:-0.053120pt;}
.ls52{letter-spacing:-0.037956pt;}
.ls55{letter-spacing:-0.037760pt;}
.ls51{letter-spacing:-0.037398pt;}
.ls5{letter-spacing:0.000000pt;}
.ls95{letter-spacing:0.007680pt;}
.ls98{letter-spacing:0.015360pt;}
.ls9a{letter-spacing:0.053120pt;}
.ls4a{letter-spacing:0.059345pt;}
.ls48{letter-spacing:0.060133pt;}
.ls66{letter-spacing:0.062494pt;}
.ls68{letter-spacing:0.062588pt;}
.ls15{letter-spacing:0.064000pt;}
.ls91{letter-spacing:0.081280pt;}
.ls8c{letter-spacing:0.094720pt;}
.lsa7{letter-spacing:0.100928pt;}
.ls80{letter-spacing:0.106240pt;}
.ls2{letter-spacing:0.128000pt;}
.ls88{letter-spacing:0.144000pt;}
.ls7e{letter-spacing:0.159360pt;}
.ls99{letter-spacing:0.160000pt;}
.ls27{letter-spacing:0.171520pt;}
.lsa9{letter-spacing:0.191232pt;}
.ls0{letter-spacing:0.192000pt;}
.ls3e{letter-spacing:0.199040pt;}
.ls74{letter-spacing:0.212480pt;}
.ls86{letter-spacing:0.231040pt;}
.ls8b{letter-spacing:0.239040pt;}
.ls31{letter-spacing:0.239360pt;}
.ls7c{letter-spacing:0.254976pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls53{letter-spacing:0.257280pt;}
.ls1{letter-spacing:0.288000pt;}
.ls93{letter-spacing:0.304640pt;}
.ls6b{letter-spacing:0.318720pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9d{letter-spacing:0.323840pt;}
.ls81{letter-spacing:0.336000pt;}
.ls9f{letter-spacing:0.342400pt;}
.ls29{letter-spacing:0.343040pt;}
.ls94{letter-spacing:0.371840pt;}
.ls1d{letter-spacing:0.384000pt;}
.lsaa{letter-spacing:0.424960pt;}
.lsb{letter-spacing:0.448000pt;}
.lsab{letter-spacing:0.531200pt;}
.ls4{letter-spacing:0.640000pt;}
.lsa6{letter-spacing:0.796800pt;}
.lsa8{letter-spacing:0.849920pt;}
.ls32{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.920000pt;}
.ls92{letter-spacing:2.374400pt;}
.lse{letter-spacing:2.560000pt;}
.ls26{letter-spacing:3.200000pt;}
.ls17{letter-spacing:3.840000pt;}
.ls18{letter-spacing:4.480000pt;}
.ls19{letter-spacing:5.120000pt;}
.ls57{letter-spacing:5.139200pt;}
.ls1f{letter-spacing:5.760000pt;}
.lsf{letter-spacing:6.400000pt;}
.ls47{letter-spacing:6.892170pt;}
.ls45{letter-spacing:7.020995pt;}
.ls10{letter-spacing:7.040000pt;}
.ls25{letter-spacing:7.680000pt;}
.ls1a{letter-spacing:8.320000pt;}
.ls4e{letter-spacing:8.649521pt;}
.ls4d{letter-spacing:8.960000pt;}
.lsd{letter-spacing:9.600000pt;}
.ls62{letter-spacing:9.977920pt;}
.ls5e{letter-spacing:9.992816pt;}
.ls16{letter-spacing:10.240000pt;}
.ls35{letter-spacing:10.880000pt;}
.ls2c{letter-spacing:11.520000pt;}
.ls21{letter-spacing:12.160000pt;}
.ls28{letter-spacing:12.800000pt;}
.ls2f{letter-spacing:13.440000pt;}
.ls20{letter-spacing:14.080000pt;}
.ls33{letter-spacing:14.720000pt;}
.lsc{letter-spacing:15.360000pt;}
.ls34{letter-spacing:17.280000pt;}
.ls24{letter-spacing:17.920000pt;}
.ls11{letter-spacing:18.560000pt;}
.ls38{letter-spacing:19.840000pt;}
.ls6a{letter-spacing:20.480000pt;}
.ls2d{letter-spacing:22.400000pt;}
.ls59{letter-spacing:23.040000pt;}
.ls5f{letter-spacing:23.663307pt;}
.ls22{letter-spacing:27.520000pt;}
.ls4c{letter-spacing:28.160000pt;}
.ls9{letter-spacing:30.208000pt;}
.ls23{letter-spacing:37.248000pt;}
.ls3a{letter-spacing:37.814961pt;}
.lsa4{letter-spacing:44.296768pt;}
.lsa5{letter-spacing:44.302080pt;}
.ls4f{letter-spacing:61.532152pt;}
.ls9b{letter-spacing:72.455680pt;}
.ls3f{letter-spacing:89.161565pt;}
.ls41{letter-spacing:89.490498pt;}
.ls9c{letter-spacing:120.476160pt;}
.lsa3{letter-spacing:137.740160pt;}
.ls9e{letter-spacing:138.377600pt;}
.lsa0{letter-spacing:144.805120pt;}
.lsa1{letter-spacing:151.179520pt;}
.ls46{letter-spacing:155.750150pt;}
.lsa2{letter-spacing:160.156800pt;}
.ls96{letter-spacing:165.893760pt;}
.ls4b{letter-spacing:171.008000pt;}
.ls3b{letter-spacing:172.800000pt;}
.ls40{letter-spacing:212.598304pt;}
.ls97{letter-spacing:223.528960pt;}
.ls5d{letter-spacing:225.344688pt;}
.ls5c{letter-spacing:237.248706pt;}
.ls5b{letter-spacing:250.422819pt;}
.ls7a{letter-spacing:252.320000pt;}
.ls50{letter-spacing:255.676986pt;}
.ls7b{letter-spacing:258.056960pt;}
.ls5a{letter-spacing:263.693593pt;}
.ls6e{letter-spacing:270.874816pt;}
.ls79{letter-spacing:272.824320pt;}
.ls64{letter-spacing:273.717581pt;}
.ls63{letter-spacing:274.508431pt;}
.ls6d{letter-spacing:284.314176pt;}
.ls61{letter-spacing:288.165664pt;}
.ls60{letter-spacing:293.174007pt;}
.ls43{letter-spacing:303.078764pt;}
.ls44{letter-spacing:333.567407pt;}
.ls83{letter-spacing:343.818240pt;}
.ls82{letter-spacing:345.098240pt;}
.ls42{letter-spacing:361.603483pt;}
.ls85{letter-spacing:379.701760pt;}
.ls84{letter-spacing:380.976640pt;}
.ls75{letter-spacing:395.690880pt;}
.ls73{letter-spacing:434.096640pt;}
.ls78{letter-spacing:490.403840pt;}
.ls6f{letter-spacing:546.711040pt;}
.ls76{letter-spacing:552.501120pt;}
.ls77{letter-spacing:561.425280pt;}
.ls72{letter-spacing:600.468480pt;}
.ls39{letter-spacing:609.750535pt;}
.ls6c{letter-spacing:611.995520pt;}
.ls70{letter-spacing:647.851520pt;}
.ls71{letter-spacing:683.016960pt;}
.ws48{word-spacing:-64.000000pt;}
.wsad{word-spacing:-37.643208pt;}
.wsd1{word-spacing:-36.265703pt;}
.wsa3{word-spacing:-35.721600pt;}
.ws8a{word-spacing:-35.624098pt;}
.ws90{word-spacing:-35.526302pt;}
.ws7c{word-spacing:-35.402155pt;}
.ws97{word-spacing:-35.362627pt;}
.ws9b{word-spacing:-35.196610pt;}
.ws7e{word-spacing:-34.309133pt;}
.ws8e{word-spacing:-33.013200pt;}
.ws96{word-spacing:-32.580442pt;}
.ws6a{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.448000pt;}
.ws35{word-spacing:-16.384000pt;}
.wsa6{word-spacing:-16.266667pt;}
.ws54{word-spacing:-16.256000pt;}
.ws89{word-spacing:-16.222267pt;}
.ws4{word-spacing:-16.192000pt;}
.wsb1{word-spacing:-16.182800pt;}
.ws8f{word-spacing:-16.177733pt;}
.ws1{word-spacing:-16.128000pt;}
.ws7a{word-spacing:-16.121200pt;}
.ws88{word-spacing:-16.100000pt;}
.ws33{word-spacing:-16.064000pt;}
.ws7b{word-spacing:-16.056715pt;}
.ws91{word-spacing:-16.050000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsbd{word-spacing:-15.936000pt;}
.ws2{word-spacing:-15.872000pt;}
.wsd6{word-spacing:-15.856400pt;}
.ws86{word-spacing:-15.827067pt;}
.ws14{word-spacing:-15.808000pt;}
.ws0{word-spacing:-15.744000pt;}
.wsd4{word-spacing:-15.709655pt;}
.wscc{word-spacing:-15.685961pt;}
.wsd3{word-spacing:-15.647067pt;}
.ws7d{word-spacing:-15.623467pt;}
.wse8{word-spacing:-15.616000pt;}
.wse0{word-spacing:-15.552000pt;}
.ws34{word-spacing:-15.360000pt;}
.ws36{word-spacing:-15.296000pt;}
.ws8d{word-spacing:-15.093467pt;}
.ws8c{word-spacing:-15.033333pt;}
.ws95{word-spacing:-14.895612pt;}
.ws93{word-spacing:-14.836267pt;}
.ws94{word-spacing:-14.776922pt;}
.ws74{word-spacing:-14.656000pt;}
.wseb{word-spacing:-13.598720pt;}
.ws105{word-spacing:-13.492480pt;}
.wsee{word-spacing:-13.439360pt;}
.wsef{word-spacing:-13.386240pt;}
.ws106{word-spacing:-13.333120pt;}
.wsec{word-spacing:-13.280000pt;}
.wsed{word-spacing:-13.226880pt;}
.ws104{word-spacing:-13.173760pt;}
.ws10a{word-spacing:-13.067520pt;}
.wsfc{word-spacing:-12.961280pt;}
.wsfb{word-spacing:-12.855040pt;}
.ws10b{word-spacing:-12.000000pt;}
.ws49{word-spacing:-11.063040pt;}
.wsa8{word-spacing:-10.977280pt;}
.wsaf{word-spacing:-10.894990pt;}
.ws4a{word-spacing:-10.720000pt;}
.ws4b{word-spacing:-10.419840pt;}
.wsac{word-spacing:-9.505200pt;}
.wsa5{word-spacing:-9.488933pt;}
.wsb3{word-spacing:-9.364480pt;}
.ws9d{word-spacing:-9.349467pt;}
.ws9f{word-spacing:-9.312069pt;}
.wsd7{word-spacing:-9.249600pt;}
.wsd2{word-spacing:-9.127467pt;}
.wscb{word-spacing:-9.113733pt;}
.wsf5{word-spacing:-8.640000pt;}
.ws10e{word-spacing:-0.796800pt;}
.wsf3{word-spacing:-0.690560pt;}
.wsbf{word-spacing:-0.640000pt;}
.ws10f{word-spacing:-0.531200pt;}
.ws45{word-spacing:-0.448000pt;}
.ws81{word-spacing:-0.384000pt;}
.ws103{word-spacing:-0.318720pt;}
.ws8{word-spacing:-0.288000pt;}
.ws10d{word-spacing:-0.265600pt;}
.ws98{word-spacing:-0.256000pt;}
.ws10c{word-spacing:-0.212480pt;}
.wsbe{word-spacing:-0.192000pt;}
.wsf1{word-spacing:-0.159360pt;}
.wsf7{word-spacing:-0.144000pt;}
.ws47{word-spacing:-0.128000pt;}
.wsfd{word-spacing:-0.106240pt;}
.ws2e{word-spacing:-0.064000pt;}
.wsda{word-spacing:-0.062494pt;}
.wsf8{word-spacing:-0.053120pt;}
.ws5{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.037398pt;}
.wsbb{word-spacing:0.037760pt;}
.wsb5{word-spacing:0.037956pt;}
.wsf2{word-spacing:0.053120pt;}
.wsdb{word-spacing:0.064000pt;}
.wsbc{word-spacing:0.064731pt;}
.wsd8{word-spacing:0.072910pt;}
.wsd9{word-spacing:0.073020pt;}
.wsba{word-spacing:0.075520pt;}
.ws62{word-spacing:0.128000pt;}
.wsf4{word-spacing:0.159360pt;}
.ws3f{word-spacing:0.192000pt;}
.wsf0{word-spacing:0.212480pt;}
.ws9{word-spacing:0.256000pt;}
.wsff{word-spacing:0.265600pt;}
.ws6{word-spacing:0.288000pt;}
.ws102{word-spacing:0.318720pt;}
.ws107{word-spacing:0.371840pt;}
.ws83{word-spacing:0.384000pt;}
.wsf6{word-spacing:0.432000pt;}
.wsfa{word-spacing:0.478080pt;}
.ws76{word-spacing:0.512000pt;}
.ws100{word-spacing:0.531200pt;}
.ws7{word-spacing:0.576000pt;}
.wsf9{word-spacing:0.584320pt;}
.ws101{word-spacing:0.637440pt;}
.wsa{word-spacing:0.640000pt;}
.wsfe{word-spacing:0.690560pt;}
.wsc5{word-spacing:0.832000pt;}
.ws109{word-spacing:0.849920pt;}
.ws43{word-spacing:0.896000pt;}
.ws53{word-spacing:0.900480pt;}
.ws108{word-spacing:1.115520pt;}
.wse{word-spacing:1.152000pt;}
.ws1e{word-spacing:1.280000pt;}
.ws1d{word-spacing:1.408000pt;}
.wsf{word-spacing:1.536000pt;}
.ws1f{word-spacing:1.792000pt;}
.ws1c{word-spacing:1.920000pt;}
.ws32{word-spacing:2.176000pt;}
.ws24{word-spacing:2.432000pt;}
.ws26{word-spacing:2.560000pt;}
.ws25{word-spacing:2.752000pt;}
.ws27{word-spacing:2.816000pt;}
.ws37{word-spacing:3.072000pt;}
.ws38{word-spacing:3.200000pt;}
.ws39{word-spacing:3.456000pt;}
.ws2a{word-spacing:3.712000pt;}
.ws2b{word-spacing:3.840000pt;}
.wsc0{word-spacing:4.032000pt;}
.ws3d{word-spacing:4.096000pt;}
.ws30{word-spacing:4.352000pt;}
.ws2d{word-spacing:4.480000pt;}
.ws63{word-spacing:4.672000pt;}
.ws2c{word-spacing:4.736000pt;}
.ws44{word-spacing:4.992000pt;}
.wsb{word-spacing:5.120000pt;}
.ws6b{word-spacing:5.312000pt;}
.ws75{word-spacing:5.376000pt;}
.ws4c{word-spacing:5.632000pt;}
.ws41{word-spacing:5.760000pt;}
.ws7f{word-spacing:6.016000pt;}
.ws29{word-spacing:6.272000pt;}
.ws28{word-spacing:6.400000pt;}
.wsc6{word-spacing:6.592000pt;}
.ws56{word-spacing:6.656000pt;}
.ws40{word-spacing:6.912000pt;}
.ws2f{word-spacing:7.040000pt;}
.ws3e{word-spacing:7.296000pt;}
.ws42{word-spacing:7.680000pt;}
.wsb8{word-spacing:7.872000pt;}
.ws55{word-spacing:7.936000pt;}
.ws23{word-spacing:8.192000pt;}
.ws1a{word-spacing:8.320000pt;}
.ws1b{word-spacing:8.512000pt;}
.ws5b{word-spacing:8.576000pt;}
.ws60{word-spacing:8.832000pt;}
.ws61{word-spacing:8.960000pt;}
.wsc4{word-spacing:9.216000pt;}
.wsb6{word-spacing:9.472000pt;}
.ws22{word-spacing:9.600000pt;}
.wsb7{word-spacing:9.792000pt;}
.ws70{word-spacing:9.856000pt;}
.ws69{word-spacing:10.112000pt;}
.ws3a{word-spacing:10.240000pt;}
.wse4{word-spacing:10.368000pt;}
.ws3c{word-spacing:10.496000pt;}
.ws79{word-spacing:10.752000pt;}
.ws10{word-spacing:10.880000pt;}
.wsdc{word-spacing:11.008000pt;}
.ws11{word-spacing:11.136000pt;}
.ws6e{word-spacing:11.392000pt;}
.ws3b{word-spacing:11.520000pt;}
.ws57{word-spacing:11.776000pt;}
.ws50{word-spacing:12.160000pt;}
.ws51{word-spacing:12.288000pt;}
.ws6c{word-spacing:12.352000pt;}
.ws6d{word-spacing:12.416000pt;}
.ws5f{word-spacing:12.672000pt;}
.ws4f{word-spacing:12.800000pt;}
.wse6{word-spacing:12.928000pt;}
.ws5e{word-spacing:13.056000pt;}
.ws66{word-spacing:13.440000pt;}
.ws67{word-spacing:13.696000pt;}
.ws4e{word-spacing:13.952000pt;}
.ws4d{word-spacing:14.080000pt;}
.wse2{word-spacing:14.208000pt;}
.wse3{word-spacing:14.272000pt;}
.ws68{word-spacing:14.336000pt;}
.ws65{word-spacing:14.592000pt;}
.ws64{word-spacing:14.720000pt;}
.ws6f{word-spacing:14.976000pt;}
.ws20{word-spacing:15.232000pt;}
.ws21{word-spacing:15.360000pt;}
.wsc1{word-spacing:15.424000pt;}
.wsdd{word-spacing:16.000000pt;}
.wse5{word-spacing:16.128000pt;}
.wsc2{word-spacing:16.256000pt;}
.wsde{word-spacing:16.896000pt;}
.ws73{word-spacing:17.152000pt;}
.ws72{word-spacing:17.280000pt;}
.ws71{word-spacing:17.536000pt;}
.wsca{word-spacing:17.792000pt;}
.ws31{word-spacing:17.920000pt;}
.wsc9{word-spacing:18.176000pt;}
.wsdf{word-spacing:18.560000pt;}
.ws12{word-spacing:19.200000pt;}
.ws5a{word-spacing:19.712000pt;}
.ws80{word-spacing:19.840000pt;}
.ws82{word-spacing:20.352000pt;}
.ws16{word-spacing:20.480000pt;}
.ws17{word-spacing:20.736000pt;}
.ws59{word-spacing:22.272000pt;}
.ws58{word-spacing:22.400000pt;}
.ws5d{word-spacing:22.592000pt;}
.ws5c{word-spacing:22.656000pt;}
.wse7{word-spacing:23.040000pt;}
.wsc3{word-spacing:23.552000pt;}
.ws78{word-spacing:23.680000pt;}
.ws77{word-spacing:23.936000pt;}
.wse9{word-spacing:24.960000pt;}
.wsea{word-spacing:25.216000pt;}
.ws99{word-spacing:26.595732pt;}
.wsc7{word-spacing:26.880000pt;}
.wsc8{word-spacing:27.072000pt;}
.ws52{word-spacing:27.776000pt;}
.wsd{word-spacing:28.032000pt;}
.wsc{word-spacing:28.160000pt;}
.wsb9{word-spacing:28.416000pt;}
.ws46{word-spacing:28.800000pt;}
.wse1{word-spacing:31.360000pt;}
.ws13{word-spacing:35.840000pt;}
.ws19{word-spacing:39.680000pt;}
.ws18{word-spacing:39.936000pt;}
.ws84{word-spacing:44.580042pt;}
.wsb2{word-spacing:53.942392pt;}
.ws9c{word-spacing:59.056346pt;}
.ws9e{word-spacing:59.056878pt;}
.wsa4{word-spacing:62.664916pt;}
.wsb0{word-spacing:99.646575pt;}
.ws85{word-spacing:102.740507pt;}
.ws87{word-spacing:108.400386pt;}
.wsab{word-spacing:114.996781pt;}
.wscd{word-spacing:125.995010pt;}
.wsa1{word-spacing:148.297229pt;}
.wsd5{word-spacing:199.714427pt;}
.wsaa{word-spacing:217.045806pt;}
.wsce{word-spacing:252.443974pt;}
.wscf{word-spacing:330.719155pt;}
.wsd0{word-spacing:343.405472pt;}
.ws8b{word-spacing:351.431944pt;}
.wsae{word-spacing:358.982525pt;}
.wsa9{word-spacing:465.703742pt;}
.ws92{word-spacing:474.120424pt;}
.ws9a{word-spacing:685.194026pt;}
.wsa2{word-spacing:693.568981pt;}
.wsa0{word-spacing:893.203180pt;}
.wsa7{word-spacing:908.721067pt;}
._2d{margin-left:-754.926237pt;}
._25{margin-left:-693.800387pt;}
._3a{margin-left:-588.489060pt;}
._46{margin-left:-535.044800pt;}
._39{margin-left:-520.851009pt;}
._63{margin-left:-497.263697pt;}
._6d{margin-left:-442.987083pt;}
._47{margin-left:-421.697067pt;}
._6b{margin-left:-417.987977pt;}
._2a{margin-left:-414.047526pt;}
._3b{margin-left:-412.512122pt;}
._61{margin-left:-390.086716pt;}
._56{margin-left:-367.454378pt;}
._58{margin-left:-360.131789pt;}
._68{margin-left:-337.951436pt;}
._66{margin-left:-330.780036pt;}
._4e{margin-left:-316.419200pt;}
._6a{margin-left:-309.415988pt;}
._42{margin-left:-305.801451pt;}
._4a{margin-left:-298.856811pt;}
._62{margin-left:-291.790760pt;}
._4f{margin-left:-289.635270pt;}
._44{margin-left:-276.084139pt;}
._35{margin-left:-271.306116pt;}
._34{margin-left:-262.492460pt;}
._40{margin-left:-257.859884pt;}
._1c{margin-left:-251.928644pt;}
._55{margin-left:-222.670353pt;}
._54{margin-left:-220.570911pt;}
._59{margin-left:-216.925108pt;}
._27{margin-left:-203.517693pt;}
._15{margin-left:-195.783913pt;}
._16{margin-left:-193.180340pt;}
._64{margin-left:-188.481502pt;}
._33{margin-left:-187.156825pt;}
._57{margin-left:-181.614035pt;}
._31{margin-left:-179.942504pt;}
._18{margin-left:-178.477805pt;}
._5a{margin-left:-172.992000pt;}
._5b{margin-left:-171.968000pt;}
._36{margin-left:-167.680000pt;}
._50{margin-left:-161.920000pt;}
._5e{margin-left:-158.722179pt;}
._6e{margin-left:-157.738473pt;}
._67{margin-left:-155.859703pt;}
._2b{margin-left:-150.774374pt;}
._19{margin-left:-146.235405pt;}
._4c{margin-left:-143.537067pt;}
._65{margin-left:-139.173841pt;}
._52{margin-left:-133.967827pt;}
._69{margin-left:-130.599059pt;}
._49{margin-left:-129.656785pt;}
._2c{margin-left:-123.056764pt;}
._17{margin-left:-120.909000pt;}
._29{margin-left:-118.857233pt;}
._6c{margin-left:-115.200000pt;}
._28{margin-left:-107.967280pt;}
._41{margin-left:-104.473226pt;}
._24{margin-left:-96.288992pt;}
._23{margin-left:-92.200981pt;}
._20{margin-left:-88.965399pt;}
._53{margin-left:-86.611382pt;}
._22{margin-left:-84.503533pt;}
._43{margin-left:-83.477022pt;}
._1d{margin-left:-81.179663pt;}
._32{margin-left:-78.179335pt;}
._1e{margin-left:-75.520000pt;}
._2f{margin-left:-72.770177pt;}
._4d{margin-left:-70.922667pt;}
._3f{margin-left:-69.970130pt;}
._3d{margin-left:-66.994176pt;}
._21{margin-left:-64.000000pt;}
._37{margin-left:-57.600000pt;}
._45{margin-left:-47.415381pt;}
._30{margin-left:-45.253854pt;}
._72{margin-left:-21.180800pt;}
._6f{margin-left:-12.800000pt;}
._a{margin-left:-3.651200pt;}
._8{margin-left:-1.984000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.892800pt;}
._3{width:1.984000pt;}
._9{width:3.648000pt;}
._2{width:5.312000pt;}
._c{width:6.403200pt;}
._12{width:7.552000pt;}
._d{width:8.454400pt;}
._11{width:9.859200pt;}
._5{width:10.816000pt;}
._b{width:11.715200pt;}
._e{width:12.864000pt;}
._10{width:14.025600pt;}
._13{width:17.379200pt;}
._6{width:19.072000pt;}
._14{width:20.995200pt;}
._f{width:22.428800pt;}
._5c{width:24.259200pt;}
._5d{width:27.017600pt;}
._4{width:28.489600pt;}
._7{width:35.840000pt;}
._79{width:45.064320pt;}
._78{width:53.272320pt;}
._73{width:65.280000pt;}
._71{width:66.176000pt;}
._70{width:98.176000pt;}
._77{width:114.933120pt;}
._4b{width:120.243763pt;}
._1a{width:158.208000pt;}
._3e{width:166.408467pt;}
._1b{width:171.008000pt;}
._51{width:172.800000pt;}
._76{width:200.609920pt;}
._75{width:213.811200pt;}
._38{width:216.664815pt;}
._5f{width:225.008770pt;}
._60{width:244.976545pt;}
._1f{width:375.322387pt;}
._48{width:453.912615pt;}
._3c{width:463.921815pt;}
._26{width:647.862581pt;}
._2e{width:715.660639pt;}
._74{width:752.000000pt;}
._7a{width:756.136320pt;}
.fs41{font-size:5.120000pt;}
.fs40{font-size:34.560000pt;}
.fs1a{font-size:34.618133pt;}
.fs13{font-size:35.077867pt;}
.fs6{font-size:36.454933pt;}
.fs38{font-size:36.509867pt;}
.fsd{font-size:36.929600pt;}
.fs3d{font-size:36.998400pt;}
.fs42{font-size:37.120000pt;}
.fs20{font-size:37.397867pt;}
.fs15{font-size:37.748267pt;}
.fs2e{font-size:37.760000pt;}
.fsa{font-size:37.851733pt;}
.fs25{font-size:37.922667pt;}
.fs24{font-size:37.955733pt;}
.fs29{font-size:38.020800pt;}
.fs4{font-size:42.880000pt;}
.fs3f{font-size:48.000000pt;}
.fs3e{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1b{font-size:59.345067pt;}
.fs14{font-size:60.133333pt;}
.fs7{font-size:62.493867pt;}
.fs39{font-size:62.588267pt;}
.fse{font-size:63.308267pt;}
.fs3c{font-size:63.425600pt;}
.fs0{font-size:64.000000pt;}
.fs1f{font-size:64.110400pt;}
.fs17{font-size:64.200000pt;}
.fsf{font-size:64.400000pt;}
.fs1c{font-size:64.412800pt;}
.fs5{font-size:64.484800pt;}
.fs16{font-size:64.710933pt;}
.fs2f{font-size:64.731200pt;}
.fs9{font-size:64.888533pt;}
.fs11{font-size:64.889067pt;}
.fs23{font-size:65.066667pt;}
.fs2a{font-size:65.178667pt;}
.fs32{font-size:66.005047pt;}
.fs35{font-size:66.057747pt;}
.fs3b{font-size:66.064836pt;}
.fs3a{font-size:66.087580pt;}
.fs18{font-size:67.639758pt;}
.fs10{font-size:67.841515pt;}
.fsb{font-size:68.221634pt;}
.fs27{font-size:68.442288pt;}
.fs26{font-size:68.480406pt;}
.fs2b{font-size:68.566864pt;}
.fs2{font-size:74.880000pt;}
.fs33{font-size:82.511467pt;}
.fs36{font-size:82.635733pt;}
.fs30{font-size:82.837333pt;}
.fsc{font-size:83.586667pt;}
.fs8{font-size:86.011200pt;}
.fs34{font-size:93.740800pt;}
.fs31{font-size:93.741333pt;}
.fs37{font-size:93.882133pt;}
.fs19{font-size:95.663467pt;}
.fs1{font-size:96.000000pt;}
.fs1e{font-size:96.165333pt;}
.fs2d{font-size:97.097067pt;}
.fs22{font-size:97.600000pt;}
.fs1d{font-size:100.506133pt;}
.fs21{font-size:102.344533pt;}
.fs2c{font-size:104.008533pt;}
.fs28{font-size:104.387733pt;}
.fs12{font-size:107.112000pt;}
.y15e{bottom:-2.240000pt;}
.y17b{bottom:-2.080000pt;}
.y171{bottom:-1.920000pt;}
.y177{bottom:-1.600000pt;}
.y189{bottom:-1.440000pt;}
.y0{bottom:0.000000pt;}
.y18d{bottom:0.320000pt;}
.y195{bottom:2.880000pt;}
.y1b3{bottom:3.040000pt;}
.y199{bottom:3.200000pt;}
.y107{bottom:3.295867pt;}
.y10a{bottom:3.296000pt;}
.y10b{bottom:3.296133pt;}
.y113{bottom:3.300162pt;}
.y11b{bottom:3.301067pt;}
.y11d{bottom:3.301200pt;}
.y11f{bottom:3.301467pt;}
.y128{bottom:3.336133pt;}
.y125{bottom:3.336267pt;}
.y170{bottom:3.360000pt;}
.y7c{bottom:3.499200pt;}
.y92{bottom:3.543600pt;}
.ybf{bottom:3.690533pt;}
.yb6{bottom:3.709067pt;}
.yaf{bottom:4.044533pt;}
.y9f{bottom:4.055600pt;}
.ye3{bottom:4.063067pt;}
.ye6{bottom:4.067389pt;}
.yed{bottom:4.073733pt;}
.yec{bottom:4.073867pt;}
.yc8{bottom:4.716533pt;}
.yfa{bottom:4.761867pt;}
.yf7{bottom:4.762133pt;}
.yf5{bottom:4.762267pt;}
.yd2{bottom:4.786933pt;}
.y12f{bottom:4.872800pt;}
.ya5{bottom:5.010800pt;}
.y1b6{bottom:5.120000pt;}
.y17a{bottom:5.600000pt;}
.y75{bottom:6.381600pt;}
.yb2{bottom:6.687600pt;}
.y9d{bottom:6.708400pt;}
.y7e{bottom:7.405067pt;}
.ybb{bottom:7.417733pt;}
.yb9{bottom:7.417867pt;}
.yb8{bottom:7.418000pt;}
.yb7{bottom:7.418133pt;}
.y96{bottom:7.500400pt;}
.yb4{bottom:7.534267pt;}
.yd7{bottom:7.710667pt;}
.yb0{bottom:8.088933pt;}
.y8d{bottom:8.109467pt;}
.y8c{bottom:8.109600pt;}
.y8b{bottom:8.109733pt;}
.y8a{bottom:8.110133pt;}
.y89{bottom:8.110267pt;}
.y88{bottom:8.110400pt;}
.y87{bottom:8.110533pt;}
.y86{bottom:8.110667pt;}
.y85{bottom:8.110933pt;}
.y84{bottom:8.111067pt;}
.ya0{bottom:8.111200pt;}
.ye4{bottom:8.126133pt;}
.ye7{bottom:8.126400pt;}
.yee{bottom:8.147333pt;}
.yeb{bottom:8.190000pt;}
.y83{bottom:8.195733pt;}
.ya9{bottom:8.768667pt;}
.ya8{bottom:8.768800pt;}
.ya7{bottom:8.768933pt;}
.ya6{bottom:8.769067pt;}
.y131{bottom:8.836800pt;}
.ya3{bottom:8.886667pt;}
.y1bb{bottom:11.200000pt;}
.yba{bottom:14.063333pt;}
.y129{bottom:14.321333pt;}
.y120{bottom:14.344133pt;}
.y106{bottom:14.606667pt;}
.y11a{bottom:14.628667pt;}
.y124{bottom:14.647067pt;}
.ye2{bottom:15.406133pt;}
.ye5{bottom:15.406267pt;}
.y95{bottom:15.826000pt;}
.yca{bottom:16.027600pt;}
.yc1{bottom:16.106101pt;}
.yf9{bottom:16.182667pt;}
.yd4{bottom:16.268543pt;}
.yc7{bottom:16.319733pt;}
.yf4{bottom:16.478000pt;}
.ycf{bottom:16.563200pt;}
.yb5{bottom:17.038667pt;}
.y12b{bottom:18.227067pt;}
.y12a{bottom:18.227200pt;}
.y126{bottom:18.227333pt;}
.y108{bottom:18.227733pt;}
.y10c{bottom:18.227867pt;}
.y10d{bottom:18.228000pt;}
.y10e{bottom:18.228133pt;}
.y197{bottom:18.240000pt;}
.y11c{bottom:18.255467pt;}
.y11e{bottom:18.255733pt;}
.y121{bottom:18.256133pt;}
.y105{bottom:18.308800pt;}
.y112{bottom:18.308933pt;}
.y119{bottom:18.336533pt;}
.y1b2{bottom:18.400000pt;}
.y77{bottom:18.808267pt;}
.y80{bottom:19.529600pt;}
.ya4{bottom:19.730933pt;}
.y98{bottom:19.782933pt;}
.y99{bottom:19.783067pt;}
.y91{bottom:19.864933pt;}
.ycb{bottom:20.034533pt;}
.yf6{bottom:20.228533pt;}
.yf3{bottom:20.270800pt;}
.yc6{bottom:20.284933pt;}
.yd1{bottom:20.333333pt;}
.yd5{bottom:20.333600pt;}
.yce{bottom:20.587467pt;}
.y12e{bottom:21.142000pt;}
.y7d{bottom:25.469733pt;}
.y94{bottom:25.923867pt;}
.yc0{bottom:26.090085pt;}
.yfc{bottom:27.476800pt;}
.yc9{bottom:28.382133pt;}
.yd3{bottom:28.594667pt;}
.y76{bottom:28.800000pt;}
.y7f{bottom:29.375600pt;}
.y97{bottom:29.880933pt;}
.y130{bottom:29.937333pt;}
.yfb{bottom:30.721733pt;}
.yd0{bottom:32.663467pt;}
.yd6{bottom:32.663733pt;}
.y132{bottom:33.901467pt;}
.y127{bottom:34.095067pt;}
.y109{bottom:34.095467pt;}
.yf8{bottom:36.664133pt;}
.y93{bottom:38.124000pt;}
.y1{bottom:51.200000pt;}
.y157{bottom:110.240000pt;}
.y29{bottom:111.360000pt;}
.y136{bottom:119.840000pt;}
.y7b{bottom:127.946667pt;}
.y6f{bottom:128.320000pt;}
.y103{bottom:129.440000pt;}
.y51{bottom:130.080000pt;}
.y42{bottom:130.560000pt;}
.yc3{bottom:142.146667pt;}
.y156{bottom:147.040000pt;}
.y81{bottom:148.000000pt;}
.y28{bottom:148.160000pt;}
.y5a{bottom:148.640000pt;}
.y135{bottom:156.640000pt;}
.yc4{bottom:158.240000pt;}
.y6e{bottom:164.960000pt;}
.y14b{bottom:165.280000pt;}
.y102{bottom:166.240000pt;}
.y50{bottom:166.880000pt;}
.y41{bottom:167.360000pt;}
.y155{bottom:183.840000pt;}
.y4e{bottom:184.960000pt;}
.y59{bottom:185.440000pt;}
.y15{bottom:187.200000pt;}
.y134{bottom:193.440000pt;}
.yf2{bottom:196.080000pt;}
.y6d{bottom:201.760000pt;}
.y14a{bottom:202.080000pt;}
.y101{bottom:203.040000pt;}
.y27{bottom:203.680000pt;}
.y40{bottom:204.160000pt;}
.y7a{bottom:213.280000pt;}
.yfd{bottom:216.160000pt;}
.y158{bottom:220.640000pt;}
.ybe{bottom:220.746667pt;}
.y4d{bottom:221.760000pt;}
.y58{bottom:222.240000pt;}
.yc2{bottom:236.800000pt;}
.y154{bottom:239.360000pt;}
.y26{bottom:240.480000pt;}
.y3f{bottom:240.960000pt;}
.y14{bottom:242.720000pt;}
.y12d{bottom:244.880000pt;}
.y79{bottom:250.080000pt;}
.y6c{bottom:257.280000pt;}
.y149{bottom:257.440000pt;}
.y100{bottom:258.240000pt;}
.y4c{bottom:258.560000pt;}
.y57{bottom:259.040000pt;}
.y133{bottom:266.240000pt;}
.y153{bottom:276.160000pt;}
.y13e{bottom:276.640000pt;}
.y25{bottom:277.280000pt;}
.y3e{bottom:277.760000pt;}
.y13{bottom:279.360000pt;}
.yf1{bottom:284.320000pt;}
.y6b{bottom:294.080000pt;}
.y148{bottom:294.240000pt;}
.y4b{bottom:295.360000pt;}
.y56{bottom:295.840000pt;}
.y74{bottom:301.680000pt;}
.ybd{bottom:303.360000pt;}
.y152{bottom:312.960000pt;}
.y24{bottom:314.080000pt;}
.y3d{bottom:314.560000pt;}
.y12{bottom:316.160000pt;}
.y78{bottom:320.480000pt;}
.y6a{bottom:330.880000pt;}
.y4a{bottom:332.160000pt;}
.y55{bottom:332.640000pt;}
.y123{bottom:333.546667pt;}
.yf0{bottom:339.840000pt;}
.y147{bottom:349.760000pt;}
.y23{bottom:350.880000pt;}
.y3c{bottom:351.360000pt;}
.y12c{bottom:352.320000pt;}
.yb3{bottom:354.946667pt;}
.ybc{bottom:363.040000pt;}
.y69{bottom:367.680000pt;}
.y151{bottom:368.480000pt;}
.y49{bottom:368.960000pt;}
.y54{bottom:369.440000pt;}
.y11{bottom:372.000000pt;}
.yef{bottom:376.640000pt;}
.y15a{bottom:386.240000pt;}
.y146{bottom:386.560000pt;}
.y73{bottom:387.040000pt;}
.y22{bottom:387.680000pt;}
.y3b{bottom:388.160000pt;}
.y150{bottom:405.280000pt;}
.y48{bottom:405.760000pt;}
.y53{bottom:406.240000pt;}
.y10{bottom:408.800000pt;}
.yea{bottom:409.346667pt;}
.y118{bottom:414.946667pt;}
.ye9{bottom:417.440000pt;}
.y68{bottom:423.200000pt;}
.y145{bottom:423.360000pt;}
.y21{bottom:424.480000pt;}
.y3a{bottom:424.960000pt;}
.yae{bottom:428.746667pt;}
.yb1{bottom:430.013333pt;}
.y122{bottom:433.760000pt;}
.yad{bottom:436.800000pt;}
.y14f{bottom:442.080000pt;}
.y47{bottom:442.560000pt;}
.y4f{bottom:442.720000pt;}
.y52{bottom:443.040000pt;}
.yf{bottom:445.600000pt;}
.y1da{bottom:447.200000pt;}
.ye8{bottom:457.600000pt;}
.y67{bottom:460.000000pt;}
.yff{bottom:461.280000pt;}
.y39{bottom:461.760000pt;}
.y1d9{bottom:478.395680pt;}
.y144{bottom:478.720000pt;}
.y46{bottom:479.360000pt;}
.y20{bottom:479.840000pt;}
.ye{bottom:482.400000pt;}
.ye1{bottom:490.346667pt;}
.y1d8{bottom:493.920000pt;}
.y66{bottom:496.800000pt;}
.yac{bottom:497.920000pt;}
.yfe{bottom:498.080000pt;}
.ye0{bottom:498.400000pt;}
.y38{bottom:498.560000pt;}
.y117{bottom:500.480000pt;}
.y1d7{bottom:509.275040pt;}
.y143{bottom:515.520000pt;}
.y45{bottom:516.160000pt;}
.y1f{bottom:516.640000pt;}
.yd{bottom:519.200000pt;}
.y1d6{bottom:524.640000pt;}
.y65{bottom:533.600000pt;}
.y14e{bottom:534.240000pt;}
.yab{bottom:534.720000pt;}
.y37{bottom:535.360000pt;}
.y116{bottom:537.280000pt;}
.ydf{bottom:538.560000pt;}
.y1d5{bottom:544.640000pt;}
.y72{bottom:552.960000pt;}
.y1e{bottom:553.440000pt;}
.yc{bottom:556.000000pt;}
.y1e2{bottom:556.320000pt;}
.y64{bottom:570.400000pt;}
.y142{bottom:571.040000pt;}
.y44{bottom:571.200000pt;}
.y36{bottom:572.160000pt;}
.y115{bottom:574.080000pt;}
.y1e1{bottom:575.040000pt;}
.ya2{bottom:586.346667pt;}
.y71{bottom:589.760000pt;}
.y1d{bottom:590.240000pt;}
.yb{bottom:592.800000pt;}
.y1e0{bottom:593.440000pt;}
.yde{bottom:594.080000pt;}
.y1d4{bottom:595.670080pt;}
.yaa{bottom:595.680000pt;}
.y1e7{bottom:595.840000pt;}
.y191{bottom:604.640000pt;}
.y141{bottom:607.840000pt;}
.y43{bottom:608.000000pt;}
.y35{bottom:608.960000pt;}
.y1d3{bottom:611.035040pt;}
.y1df{bottom:624.320000pt;}
.y63{bottom:625.440000pt;}
.y111{bottom:625.546667pt;}
.y1d2{bottom:626.395040pt;}
.y13d{bottom:626.560000pt;}
.y1c{bottom:627.040000pt;}
.y1e6{bottom:627.190080pt;}
.ya{bottom:629.600000pt;}
.ydd{bottom:630.880000pt;}
.y1de{bottom:639.995040pt;}
.y1d1{bottom:641.760000pt;}
.y1e5{bottom:642.555040pt;}
.y114{bottom:644.320000pt;}
.y140{bottom:644.640000pt;}
.y70{bottom:644.800000pt;}
.y34{bottom:645.760000pt;}
.y1aa{bottom:648.960000pt;}
.y1dd{bottom:655.360000pt;}
.ya1{bottom:657.440000pt;}
.y1e4{bottom:657.920000pt;}
.y190{bottom:660.160000pt;}
.y62{bottom:662.240000pt;}
.y16f{bottom:662.720000pt;}
.y13c{bottom:663.360000pt;}
.y1b{bottom:663.840000pt;}
.y1a9{bottom:667.360000pt;}
.ydc{bottom:667.680000pt;}
.y1d0{bottom:672.640000pt;}
.y1dc{bottom:680.640000pt;}
.y1a8{bottom:682.080000pt;}
.y33{bottom:682.560000pt;}
.y16e{bottom:683.047360pt;}
.y9{bottom:684.800000pt;}
.y1e3{bottom:688.800000pt;}
.y9e{bottom:690.146667pt;}
.y9c{bottom:691.413333pt;}
.y18e{bottom:693.280000pt;}
.y1ad{bottom:695.040000pt;}
.y18f{bottom:696.800000pt;}
.y9b{bottom:698.240000pt;}
.y13b{bottom:700.160000pt;}
.y1a{bottom:700.640000pt;}
.y16d{bottom:703.843840pt;}
.ydb{bottom:704.480000pt;}
.y1a7{bottom:706.080000pt;}
.y110{bottom:710.880000pt;}
.y18c{bottom:713.280000pt;}
.y1ac{bottom:713.440000pt;}
.y18b{bottom:715.360000pt;}
.y61{bottom:718.080000pt;}
.y159{bottom:718.720000pt;}
.y32{bottom:719.360000pt;}
.y18a{bottom:721.120000pt;}
.y1a6{bottom:721.440000pt;}
.y16c{bottom:723.843520pt;}
.y1ab{bottom:728.160000pt;}
.y188{bottom:735.360000pt;}
.y1a5{bottom:736.800000pt;}
.y13a{bottom:736.960000pt;}
.y19{bottom:737.440000pt;}
.y8{bottom:738.560000pt;}
.y187{bottom:741.600000pt;}
.y16b{bottom:743.843200pt;}
.y90{bottom:751.614667pt;}
.y1a4{bottom:752.160000pt;}
.y14d{bottom:755.520000pt;}
.y31{bottom:756.160000pt;}
.y186{bottom:756.480000pt;}
.yda{bottom:759.840000pt;}
.y185{bottom:762.080000pt;}
.y104{bottom:762.346667pt;}
.y16a{bottom:763.842880pt;}
.y1a3{bottom:767.520000pt;}
.y9a{bottom:771.680000pt;}
.y60{bottom:773.600000pt;}
.y139{bottom:773.760000pt;}
.y7{bottom:774.240000pt;}
.y184{bottom:776.480000pt;}
.y10f{bottom:781.120000pt;}
.y183{bottom:782.080000pt;}
.y1a2{bottom:782.720000pt;}
.y169{bottom:783.842560pt;}
.y1ce{bottom:784.000000pt;}
.y1bd{bottom:787.200000pt;}
.y14c{bottom:792.320000pt;}
.y30{bottom:792.960000pt;}
.y182{bottom:796.480000pt;}
.yd9{bottom:796.640000pt;}
.y1a1{bottom:798.080000pt;}
.y181{bottom:802.080000pt;}
.y1cd{bottom:802.240000pt;}
.y168{bottom:803.842240pt;}
.y5f{bottom:810.400000pt;}
.y138{bottom:810.560000pt;}
.y6{bottom:811.040000pt;}
.y1a0{bottom:813.440000pt;}
.y180{bottom:816.480000pt;}
.y1cc{bottom:816.960000pt;}
.y17f{bottom:822.080000pt;}
.y167{bottom:823.841920pt;}
.y1cb{bottom:826.400000pt;}
.y13f{bottom:828.800000pt;}
.y2f{bottom:829.760000pt;}
.y17e{bottom:837.120000pt;}
.y8f{bottom:841.440000pt;}
.y1ca{bottom:841.760000pt;}
.y1bc{bottom:842.560000pt;}
.y166{bottom:843.841600pt;}
.y19f{bottom:844.160000pt;}
.y5e{bottom:847.200000pt;}
.y5{bottom:847.840000pt;}
.ycd{bottom:848.213333pt;}
.y1c9{bottom:852.320000pt;}
.y17d{bottom:857.120000pt;}
.y19e{bottom:859.360000pt;}
.y165{bottom:863.841280pt;}
.y137{bottom:865.600000pt;}
.y2e{bottom:866.560000pt;}
.y1c8{bottom:867.680000pt;}
.yd8{bottom:868.320000pt;}
.y1c7{bottom:871.040000pt;}
.y19d{bottom:874.720000pt;}
.y1ba{bottom:875.680000pt;}
.y17c{bottom:877.120000pt;}
.y1c6{bottom:883.040000pt;}
.y5d{bottom:883.840000pt;}
.y164{bottom:883.840960pt;}
.y4{bottom:884.640000pt;}
.y19c{bottom:890.080000pt;}
.y82{bottom:892.880000pt;}
.y1b9{bottom:895.200000pt;}
.y179{bottom:897.120000pt;}
.y1c5{bottom:899.040000pt;}
.y8e{bottom:900.960000pt;}
.y2d{bottom:903.360000pt;}
.y163{bottom:903.840640pt;}
.y19b{bottom:905.440000pt;}
.y1c4{bottom:913.600000pt;}
.y1b8{bottom:914.080000pt;}
.y176{bottom:917.120000pt;}
.y1c3{bottom:917.920000pt;}
.y5c{bottom:920.640000pt;}
.y19a{bottom:920.800000pt;}
.y18{bottom:921.440000pt;}
.y178{bottom:923.200000pt;}
.y175{bottom:923.202880pt;}
.y162{bottom:923.840320pt;}
.y1b5{bottom:932.960000pt;}
.yc5{bottom:934.013333pt;}
.y1b7{bottom:936.000000pt;}
.y198{bottom:936.160000pt;}
.y1c1{bottom:937.440000pt;}
.y174{bottom:938.080000pt;}
.y2c{bottom:940.160000pt;}
.y161{bottom:943.840000pt;}
.y1c0{bottom:948.153120pt;}
.y1c2{bottom:948.160000pt;}
.y3{bottom:950.720000pt;}
.y196{bottom:952.160000pt;}
.y1b1{bottom:952.480000pt;}
.ycc{bottom:954.080000pt;}
.y173{bottom:958.080000pt;}
.y17{bottom:958.240000pt;}
.y1b4{bottom:963.200000pt;}
.y1b0{bottom:963.202400pt;}
.y172{bottom:963.520000pt;}
.y160{bottom:963.840000pt;}
.y194{bottom:968.160000pt;}
.y5b{bottom:976.480000pt;}
.y2b{bottom:976.960000pt;}
.y15d{bottom:978.720000pt;}
.y15c{bottom:984.154560pt;}
.y15f{bottom:984.160000pt;}
.y1bf{bottom:985.270720pt;}
.y1af{bottom:1000.315680pt;}
.y193{bottom:1000.635680pt;}
.y1be{bottom:1000.795040pt;}
.y2{bottom:1005.920000pt;}
.y1db{bottom:1013.280000pt;}
.y16{bottom:1013.440000pt;}
.y1cf{bottom:1013.600000pt;}
.y2a{bottom:1013.760000pt;}
.y1ae{bottom:1015.840000pt;}
.y15b{bottom:1016.000000pt;}
.y192{bottom:1016.160000pt;}
.h7f{height:1.440000pt;}
.h80{height:5.025000pt;}
.h85{height:15.198667pt;}
.h83{height:15.200000pt;}
.h86{height:15.360000pt;}
.h89{height:18.880000pt;}
.h8b{height:18.881333pt;}
.h7d{height:19.998667pt;}
.h78{height:20.000000pt;}
.h7c{height:20.958667pt;}
.h7e{height:21.120000pt;}
.h28{height:21.400000pt;}
.h19{height:21.466667pt;}
.h87{height:23.360000pt;}
.h24{height:24.266667pt;}
.hf{height:24.332000pt;}
.h1c{height:24.333333pt;}
.h45{height:25.734667pt;}
.h4a{height:25.800000pt;}
.h2b{height:27.200000pt;}
.h1f{height:30.066667pt;}
.h88{height:30.720000pt;}
.h84{height:31.200000pt;}
.h5b{height:33.161885pt;}
.h68{height:33.211856pt;}
.h81{height:33.901875pt;}
.h8a{height:33.918750pt;}
.h2f{height:33.958901pt;}
.h2d{height:33.975805pt;}
.h53{height:34.349063pt;}
.h21{height:34.427008pt;}
.h8e{height:34.720000pt;}
.h7a{height:34.830000pt;}
.h5d{height:35.760723pt;}
.hd{height:35.778523pt;}
.h6c{height:35.832437pt;}
.h17{height:36.244383pt;}
.h74{height:36.311906pt;}
.h3a{height:36.685700pt;}
.h3c{height:36.703961pt;}
.h55{height:37.040937pt;}
.h25{height:37.047859pt;}
.h58{height:37.059375pt;}
.h1d{height:37.149406pt;}
.h47{height:37.200507pt;}
.h46{height:37.219023pt;}
.h42{height:37.232943pt;}
.h4c{height:37.296771pt;}
.h36{height:38.733333pt;}
.h31{height:41.598667pt;}
.h6f{height:44.265333pt;}
.hc{height:44.266667pt;}
.h65{height:44.333333pt;}
.h8{height:44.334667pt;}
.h50{height:47.200000pt;}
.h27{height:48.000000pt;}
.h15{height:48.798667pt;}
.h3d{height:48.800000pt;}
.h72{height:51.533333pt;}
.h7b{height:52.108438pt;}
.h79{height:52.134375pt;}
.h8f{height:52.154215pt;}
.h77{height:53.535000pt;}
.h82{height:53.552280pt;}
.h23{height:54.701367pt;}
.h33{height:56.392652pt;}
.h5c{height:56.848669pt;}
.h75{height:57.696237pt;}
.h4{height:57.787500pt;}
.h30{height:58.214960pt;}
.h8c{height:58.238750pt;}
.h2e{height:58.243937pt;}
.ha{height:58.659757pt;}
.h22{height:59.017578pt;}
.h14{height:59.027020pt;}
.h8d{height:59.134640pt;}
.h40{height:59.189062pt;}
.h4f{height:59.290945pt;}
.h60{height:60.042677pt;}
.h64{height:60.090617pt;}
.h71{height:60.097065pt;}
.h6e{height:60.117754pt;}
.h5f{height:61.303798pt;}
.he{height:61.334312pt;}
.h6b{height:61.396400pt;}
.h2a{height:61.529722pt;}
.h1b{height:61.713253pt;}
.h13{height:62.059035pt;}
.h18{height:62.133602pt;}
.h76{height:62.217788pt;}
.h73{height:62.248758pt;}
.h49{height:62.259757pt;}
.h48{height:62.294432pt;}
.h4e{height:62.373080pt;}
.h2{height:62.812500pt;}
.h3b{height:62.920852pt;}
.h29{height:63.008789pt;}
.h34{height:63.186189pt;}
.h1a{height:63.205078pt;}
.h32{height:63.217641pt;}
.h9{height:63.256818pt;}
.h26{height:63.510242pt;}
.h12{height:63.652863pt;}
.h11{height:63.684547pt;}
.h1e{height:63.685070pt;}
.h43{height:63.827604pt;}
.h44{height:63.859375pt;}
.h5{height:64.500000pt;}
.h6{height:66.750000pt;}
.h7{height:71.524375pt;}
.h61{height:75.058038pt;}
.h66{height:75.171613pt;}
.h59{height:75.355002pt;}
.h6d{height:77.074428pt;}
.h10{height:78.241634pt;}
.h57{height:79.681459pt;}
.h70{height:79.701523pt;}
.h5e{height:79.864723pt;}
.h63{height:79.871193pt;}
.h6a{height:79.985277pt;}
.h39{height:81.929967pt;}
.h56{height:82.723604pt;}
.h4d{height:82.804403pt;}
.h41{height:83.159381pt;}
.h62{height:85.273003pt;}
.h5a{height:85.273488pt;}
.h67{height:85.401570pt;}
.h2c{height:87.021991pt;}
.h38{height:87.478523pt;}
.h52{height:88.326091pt;}
.h3f{height:88.783594pt;}
.h37{height:91.427210pt;}
.h3e{height:93.099544pt;}
.h51{height:94.613231pt;}
.h4b{height:94.958177pt;}
.h3{height:96.750000pt;}
.h20{height:97.436355pt;}
.h69{height:99.380477pt;}
.h54{height:102.783871pt;}
.h35{height:103.153577pt;}
.hb{height:103.255771pt;}
.h16{height:116.428647pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w24{width:16.000000pt;}
.w29{width:16.640000pt;}
.w19{width:18.078667pt;}
.w1d{width:18.080000pt;}
.w10{width:21.400000pt;}
.wf{width:22.865333pt;}
.w1b{width:36.960000pt;}
.wa{width:37.266667pt;}
.w6{width:37.333333pt;}
.w9{width:47.200000pt;}
.w7{width:48.800000pt;}
.w34{width:51.040000pt;}
.w36{width:55.518667pt;}
.w37{width:55.520000pt;}
.w35{width:59.680000pt;}
.wc{width:61.601333pt;}
.w33{width:67.040000pt;}
.w30{width:75.520000pt;}
.w27{width:75.680000pt;}
.w26{width:75.840000pt;}
.w2d{width:78.880000pt;}
.w2f{width:79.038667pt;}
.w2c{width:79.040000pt;}
.w2e{width:79.200000pt;}
.w17{width:80.000000pt;}
.w20{width:83.040000pt;}
.w1c{width:85.600000pt;}
.w1a{width:85.760000pt;}
.w18{width:85.920000pt;}
.w11{width:93.133333pt;}
.w21{width:98.720000pt;}
.w1f{width:101.760000pt;}
.w1e{width:102.080000pt;}
.w2b{width:106.560000pt;}
.w12{width:107.533333pt;}
.w3{width:113.266667pt;}
.w4{width:114.533333pt;}
.w15{width:123.200000pt;}
.w14{width:124.666667pt;}
.w25{width:127.520000pt;}
.w16{width:144.800000pt;}
.w31{width:151.200000pt;}
.w5{width:157.601333pt;}
.w8{width:160.466667pt;}
.wb{width:183.533333pt;}
.w2{width:192.000000pt;}
.w13{width:200.666667pt;}
.w23{width:227.360000pt;}
.w28{width:237.120000pt;}
.w2a{width:237.280000pt;}
.we{width:276.466667pt;}
.wd{width:280.800000pt;}
.w32{width:529.120000pt;}
.w38{width:553.120000pt;}
.w22{width:614.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:1.166667pt;}
.x22{left:2.385867pt;}
.xe{left:4.416667pt;}
.xa0{left:7.200000pt;}
.x65{left:8.089867pt;}
.x8f{left:9.120000pt;}
.x20{left:10.778533pt;}
.x57{left:12.736400pt;}
.x21{left:15.427200pt;}
.x11{left:16.541600pt;}
.xa5{left:17.440000pt;}
.x78{left:18.770400pt;}
.x99{left:19.680000pt;}
.x64{left:21.282667pt;}
.x73{left:22.890667pt;}
.x29{left:23.790267pt;}
.x17{left:26.401200pt;}
.x2d{left:28.833333pt;}
.x32{left:29.822000pt;}
.x1f{left:30.937067pt;}
.x4a{left:33.637467pt;}
.x24{left:34.639467pt;}
.x70{left:36.140000pt;}
.x39{left:37.380667pt;}
.x74{left:38.290667pt;}
.x31{left:39.268533pt;}
.x10{left:40.791600pt;}
.x5b{left:42.824933pt;}
.x5e{left:43.722000pt;}
.xd{left:45.458267pt;}
.x1e{left:46.899333pt;}
.x44{left:50.301067pt;}
.x61{left:51.222933pt;}
.xc{left:52.291600pt;}
.x2b{left:53.465467pt;}
.x1a{left:54.716000pt;}
.x1d{left:59.405867pt;}
.x68{left:61.275600pt;}
.x5f{left:62.827067pt;}
.x60{left:63.780133pt;}
.xf{left:64.874933pt;}
.x36{left:70.659733pt;}
.x3d{left:75.391600pt;}
.x23{left:79.235067pt;}
.x5a{left:80.909600pt;}
.x16{left:81.868533pt;}
.x76{left:83.109600pt;}
.x66{left:84.549600pt;}
.x15{left:87.240400pt;}
.x8b{left:89.760000pt;}
.x1c{left:91.083467pt;}
.x8{left:94.400000pt;}
.x13{left:96.026800pt;}
.x67{left:96.954000pt;}
.xb1{left:97.920000pt;}
.x7{left:99.200000pt;}
.x6b{left:100.251604pt;}
.x14{left:101.357067pt;}
.x71{left:103.156667pt;}
.x75{left:104.912400pt;}
.x1b{left:106.593200pt;}
.x50{left:108.742833pt;}
.x5d{left:110.072000pt;}
.x40{left:111.632933pt;}
.x2a{left:113.942800pt;}
.x42{left:116.370933pt;}
.x7d{left:117.440000pt;}
.x9{left:118.400000pt;}
.xb{left:119.624933pt;}
.x2{left:121.440000pt;}
.xa{left:122.880000pt;}
.x35{left:125.488533pt;}
.x47{left:128.073200pt;}
.x63{left:130.212667pt;}
.x26{left:131.931467pt;}
.x28{left:133.600933pt;}
.x6e{left:135.450133pt;}
.x5{left:137.280000pt;}
.x3e{left:138.855333pt;}
.x9a{left:142.739360pt;}
.x38{left:143.746667pt;}
.x27{left:147.332533pt;}
.x62{left:151.597200pt;}
.x34{left:152.592267pt;}
.x41{left:153.692667pt;}
.x45{left:156.000000pt;}
.x6c{left:157.230800pt;}
.x2f{left:159.040000pt;}
.x3f{left:161.506000pt;}
.x4{left:162.880000pt;}
.x95{left:165.600000pt;}
.x9d{left:168.800000pt;}
.xa9{left:171.360000pt;}
.x54{left:172.338333pt;}
.x6{left:175.520000pt;}
.x6a{left:177.046533pt;}
.x52{left:180.900521pt;}
.x46{left:184.901733pt;}
.x6d{left:189.588267pt;}
.x3a{left:190.880000pt;}
.x7e{left:191.840000pt;}
.x3{left:194.544000pt;}
.x58{left:197.760000pt;}
.x3b{left:199.946667pt;}
.x69{left:201.920000pt;}
.x4f{left:204.394983pt;}
.x55{left:206.088533pt;}
.x18{left:207.680000pt;}
.x25{left:208.960000pt;}
.x49{left:211.602800pt;}
.x53{left:216.280583pt;}
.x77{left:217.600000pt;}
.x72{left:219.040000pt;}
.x7a{left:221.595840pt;}
.x51{left:225.588273pt;}
.x48{left:226.771067pt;}
.x4c{left:228.776800pt;}
.xa7{left:231.040000pt;}
.x4e{left:234.057867pt;}
.x3c{left:237.120000pt;}
.x79{left:239.200000pt;}
.x7f{left:240.160000pt;}
.x96{left:241.280000pt;}
.x59{left:248.160000pt;}
.x2c{left:252.000000pt;}
.x37{left:254.880000pt;}
.x4b{left:258.820667pt;}
.xa6{left:265.111520pt;}
.xb2{left:268.163840pt;}
.x43{left:277.920000pt;}
.x9e{left:283.520000pt;}
.x12{left:286.400000pt;}
.x6f{left:295.040000pt;}
.xaa{left:305.280000pt;}
.xa8{left:313.760000pt;}
.x92{left:317.120000pt;}
.x89{left:320.320000pt;}
.xb3{left:322.041920pt;}
.x5c{left:326.400000pt;}
.x80{left:333.600000pt;}
.x81{left:343.840000pt;}
.xa1{left:359.040000pt;}
.x56{left:370.880000pt;}
.x4d{left:375.200000pt;}
.x9f{left:378.880000pt;}
.x82{left:381.600000pt;}
.x91{left:384.320000pt;}
.x19{left:388.800000pt;}
.x1{left:392.800000pt;}
.xab{left:400.160000pt;}
.x97{left:408.800000pt;}
.x7b{left:416.800000pt;}
.x8c{left:418.560000pt;}
.x83{left:423.200000pt;}
.xa2{left:434.720000pt;}
.xac{left:462.880000pt;}
.x90{left:471.680000pt;}
.x98{left:484.640000pt;}
.x8d{left:501.600000pt;}
.xa3{left:510.240000pt;}
.x7c{left:519.840000pt;}
.x93{left:560.480000pt;}
.xad{left:566.880000pt;}
.x84{left:568.640000pt;}
.x94{left:576.480000pt;}
.x9b{left:580.800000pt;}
.xa4{left:585.920000pt;}
.x8e{left:587.200000pt;}
.x9c{left:597.440000pt;}
.x85{left:605.920000pt;}
.x87{left:624.000000pt;}
.xaf{left:625.760000pt;}
.xae{left:629.600000pt;}
.x8a{left:645.600000pt;}
.x30{left:646.613333pt;}
.x86{left:658.720000pt;}
.x88{left:668.960000pt;}
.x33{left:695.360000pt;}
.xb0{left:699.200000pt;}
}




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