
    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_a54f4f7ace0977a31c209f1d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_0bbbd36e9354ab7dfbf851af.woff')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_44c032f4c703427654e13cc1.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932000;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_56271b4202559eb9253dce0a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_432d8a0cd5a56b2d456db62a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.913000;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_9a1ff084f61b08abde6ff398.woff')format("woff");}.ff6{font-family:ff6;line-height:0.969000;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_87d397c2bfde4232ba01dd10.woff')format("woff");}.ff7{font-family:ff7;line-height:0.456000;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_43595abfd9465de1421c2bea.woff')format("woff");}.ff8{font-family:ff8;line-height:0.452000;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_b3d011a84ba497aa0c6a8159.woff')format("woff");}.ff9{font-family:ff9;line-height:0.906000;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_e8d3537a37502c8bb6aad923.woff')format("woff");}.ffa{font-family:ffa;line-height:0.930000;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_0fc8fd7c28abb2b4ba54f78b.woff')format("woff");}.ffb{font-family:ffb;line-height:0.088000;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;}
.m3{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233450,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.236044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236044,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238675,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242886,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242978,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.243044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243044,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.243067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243067,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.243092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243092,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.243131,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243131,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243131,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.243292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243292,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.243358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243358,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.243372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243372,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.243444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243444,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.243533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243533,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243575,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244042,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.244069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244069,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.244119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244119,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.244122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244122,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.244361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244361,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.244414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244414,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.244458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244458,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.244467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244467,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.244603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244603,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.244622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244622,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.244653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244653,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.244689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244689,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.244794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244794,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244889,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245025,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245150,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.245154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245154,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245167,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245175,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245222,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245242,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.245258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245258,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245347,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245381,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245400,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.245561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245561,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.245582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245582,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.245861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245861,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.245911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245911,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246011,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246058,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.246146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246146,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.246271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246271,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.246319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246319,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246354,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246472,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246567,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246586,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246661,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246717,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246761,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.246779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246779,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.246894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246894,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246917,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247019,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247028,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247067,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247133,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247214,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247272,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247442,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.247453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247453,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247822,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247919,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248011,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248028,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248192,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248200,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248256,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248342,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248511,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248636,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248686,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249344,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249536,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,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);}
.m57{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250096,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250231,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250361,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251008,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251286,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251406,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251422,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251464,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251696,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251943,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252161,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252225,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252311,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252419,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.253193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253193,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.253414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253414,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254007,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.254482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254482,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.v1{vertical-align:-23.760000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v4{vertical-align:44.179800px;}
.ls16{letter-spacing:-2.604000px;}
.ls8{letter-spacing:-1.350000px;}
.ls3{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-1.092000px;}
.lsb{letter-spacing:-0.972000px;}
.ls15{letter-spacing:-0.672000px;}
.ls7{letter-spacing:-0.546000px;}
.ls17{letter-spacing:-0.420000px;}
.lsf{letter-spacing:-0.336000px;}
.ls5{letter-spacing:-0.330000px;}
.ls14{letter-spacing:-0.294000px;}
.ls4{letter-spacing:-0.270000px;}
.lsd{letter-spacing:-0.252000px;}
.ls10{letter-spacing:-0.168000px;}
.ls6{letter-spacing:-0.099000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.210000px;}
.ls0{letter-spacing:0.297000px;}
.ls11{letter-spacing:0.486000px;}
.ls12{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.809761px;}
.ls9{letter-spacing:0.810000px;}
.ls13{letter-spacing:1.470000px;}
.ls2{letter-spacing:2.100000px;}
.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;}
}
.wsa6{word-spacing:-20.817000px;}
.ws18{word-spacing:-12.366000px;}
.ws17{word-spacing:-12.258000px;}
.ws6{word-spacing:-11.988000px;}
.ws64{word-spacing:-11.286000px;}
.wsd5{word-spacing:-11.004000px;}
.ws2{word-spacing:-10.794000px;}
.ws14{word-spacing:-10.248000px;}
.ws52{word-spacing:-10.206000px;}
.ws3{word-spacing:-10.007580px;}
.ws53{word-spacing:-9.618000px;}
.wsd1{word-spacing:-9.534000px;}
.wsd0{word-spacing:-9.366000px;}
.wsd2{word-spacing:-9.324000px;}
.ws9c{word-spacing:-9.198000px;}
.ws54{word-spacing:-9.114000px;}
.wsd3{word-spacing:-9.072000px;}
.ws56{word-spacing:-8.931000px;}
.ws97{word-spacing:-8.442000px;}
.wsd4{word-spacing:-8.358000px;}
.ws9{word-spacing:-8.316000px;}
.ws5{word-spacing:-8.019000px;}
.ws8{word-spacing:-7.920000px;}
.ws7{word-spacing:-7.689000px;}
.wsd6{word-spacing:-7.014000px;}
.ws4{word-spacing:-6.665820px;}
.ws76{word-spacing:-2.376000px;}
.wscb{word-spacing:-2.214000px;}
.ws9f{word-spacing:-1.944000px;}
.wsae{word-spacing:-1.890000px;}
.wsfa{word-spacing:-1.470000px;}
.wscc{word-spacing:-1.458000px;}
.wsf{word-spacing:-1.242000px;}
.wsb1{word-spacing:-1.188000px;}
.ws7e{word-spacing:-1.134000px;}
.ws35{word-spacing:-1.080000px;}
.ws19{word-spacing:-1.050000px;}
.ws5e{word-spacing:-1.026000px;}
.ws1d{word-spacing:-0.972000px;}
.wsdd{word-spacing:-0.966000px;}
.ws8b{word-spacing:-0.918000px;}
.wse6{word-spacing:-0.840000px;}
.ws8e{word-spacing:-0.810000px;}
.ws79{word-spacing:-0.756000px;}
.wsfb{word-spacing:-0.714000px;}
.wsb2{word-spacing:-0.648000px;}
.wse4{word-spacing:-0.630000px;}
.ws26{word-spacing:-0.594000px;}
.wsda{word-spacing:-0.546000px;}
.ws6e{word-spacing:-0.486000px;}
.wse0{word-spacing:-0.420000px;}
.wsa1{word-spacing:-0.378000px;}
.ws48{word-spacing:-0.216000px;}
.wsa3{word-spacing:-0.210000px;}
.ws42{word-spacing:-0.162000px;}
.ws4e{word-spacing:-0.108000px;}
.wsfc{word-spacing:-0.084000px;}
.ws1a{word-spacing:-0.054000px;}
.ws65{word-spacing:-0.042000px;}
.ws55{word-spacing:-0.039000px;}
.wsa{word-spacing:0.000000px;}
.ws20{word-spacing:0.108000px;}
.wse5{word-spacing:0.210000px;}
.wsfe{word-spacing:0.252000px;}
.ws12{word-spacing:0.270000px;}
.ws32{word-spacing:0.432000px;}
.wsef{word-spacing:0.462000px;}
.wsaf{word-spacing:0.486000px;}
.ws1b{word-spacing:0.540000px;}
.wsc{word-spacing:0.594000px;}
.ws5f{word-spacing:0.648000px;}
.wsed{word-spacing:0.672000px;}
.ws93{word-spacing:0.810000px;}
.wscd{word-spacing:0.918000px;}
.wsd7{word-spacing:0.924000px;}
.wsd8{word-spacing:0.966000px;}
.wsb9{word-spacing:0.972000px;}
.ws8c{word-spacing:1.026000px;}
.wsea{word-spacing:1.092000px;}
.ws88{word-spacing:1.134000px;}
.ws24{word-spacing:1.188000px;}
.wsd9{word-spacing:1.218000px;}
.ws11{word-spacing:1.242000px;}
.wsf0{word-spacing:1.302000px;}
.ws102{word-spacing:1.344000px;}
.wsb0{word-spacing:1.350000px;}
.ws100{word-spacing:1.386000px;}
.wsdb{word-spacing:1.470000px;}
.ws73{word-spacing:1.512000px;}
.wse{word-spacing:1.566000px;}
.ws28{word-spacing:1.674000px;}
.ws4d{word-spacing:1.728000px;}
.wsa8{word-spacing:1.782000px;}
.wsf8{word-spacing:1.848000px;}
.ws25{word-spacing:2.106000px;}
.ws75{word-spacing:2.160000px;}
.ws27{word-spacing:2.214000px;}
.wsd{word-spacing:2.430000px;}
.ws2b{word-spacing:2.754000px;}
.ws45{word-spacing:2.808000px;}
.ws10{word-spacing:2.862000px;}
.ws60{word-spacing:2.916000px;}
.ws83{word-spacing:2.970000px;}
.ws77{word-spacing:3.186000px;}
.ws89{word-spacing:3.294000px;}
.wsfd{word-spacing:3.360000px;}
.wsb3{word-spacing:3.510000px;}
.wsb{word-spacing:3.564000px;}
.wsaa{word-spacing:3.672000px;}
.ws41{word-spacing:3.726000px;}
.ws2e{word-spacing:3.834000px;}
.ws74{word-spacing:3.888000px;}
.wse9{word-spacing:3.990000px;}
.wsee{word-spacing:4.116000px;}
.wsba{word-spacing:4.158000px;}
.ws5d{word-spacing:4.374000px;}
.ws5a{word-spacing:4.590000px;}
.ws31{word-spacing:4.644000px;}
.ws44{word-spacing:4.698000px;}
.wsc0{word-spacing:4.806000px;}
.wsf5{word-spacing:4.872000px;}
.ws103{word-spacing:4.956000px;}
.ws6d{word-spacing:4.968000px;}
.wsbd{word-spacing:5.184000px;}
.ws1c{word-spacing:5.238000px;}
.ws87{word-spacing:5.292000px;}
.ws2c{word-spacing:5.346000px;}
.wsb6{word-spacing:5.508000px;}
.ws1f{word-spacing:5.562000px;}
.ws104{word-spacing:5.670000px;}
.wsbe{word-spacing:5.724000px;}
.wsdc{word-spacing:5.754000px;}
.ws7f{word-spacing:5.994000px;}
.wsc1{word-spacing:6.318000px;}
.ws92{word-spacing:6.372000px;}
.ws23{word-spacing:6.426000px;}
.wseb{word-spacing:6.510000px;}
.wse7{word-spacing:6.678000px;}
.wsb4{word-spacing:6.750000px;}
.ws39{word-spacing:6.804000px;}
.wsc9{word-spacing:7.020000px;}
.ws105{word-spacing:7.056000px;}
.wsa0{word-spacing:7.128000px;}
.ws5b{word-spacing:7.182000px;}
.ws3a{word-spacing:7.344000px;}
.ws47{word-spacing:7.668000px;}
.ws1e{word-spacing:7.830000px;}
.ws33{word-spacing:7.938000px;}
.ws3f{word-spacing:7.992000px;}
.ws70{word-spacing:8.046000px;}
.ws5c{word-spacing:8.316000px;}
.ws80{word-spacing:8.586000px;}
.ws101{word-spacing:9.282000px;}
.wsc3{word-spacing:9.288000px;}
.ws7c{word-spacing:9.504000px;}
.ws8a{word-spacing:9.558000px;}
.ws85{word-spacing:9.612000px;}
.ws13{word-spacing:9.702000px;}
.ws57{word-spacing:9.774000px;}
.ws3d{word-spacing:9.882000px;}
.ws2a{word-spacing:9.936000px;}
.ws78{word-spacing:10.098000px;}
.ws22{word-spacing:10.152000px;}
.ws30{word-spacing:10.260000px;}
.ws7d{word-spacing:10.530000px;}
.wsa2{word-spacing:10.584000px;}
.ws84{word-spacing:10.692000px;}
.wsf9{word-spacing:10.710000px;}
.wsb7{word-spacing:10.800000px;}
.ws91{word-spacing:10.962000px;}
.ws4b{word-spacing:11.178000px;}
.ws37{word-spacing:11.286000px;}
.wsac{word-spacing:11.448000px;}
.ws8d{word-spacing:11.502000px;}
.wsad{word-spacing:11.718000px;}
.ws3b{word-spacing:11.772000px;}
.ws34{word-spacing:11.826000px;}
.ws58{word-spacing:11.880000px;}
.ws29{word-spacing:11.934000px;}
.wsf4{word-spacing:11.970000px;}
.wsa9{word-spacing:11.988000px;}
.ws36{word-spacing:12.042000px;}
.wsc5{word-spacing:12.096000px;}
.ws2d{word-spacing:12.150000px;}
.wsc4{word-spacing:12.366000px;}
.ws21{word-spacing:12.420000px;}
.ws82{word-spacing:12.528000px;}
.wsbb{word-spacing:13.068000px;}
.wsb5{word-spacing:13.338000px;}
.ws3c{word-spacing:13.500000px;}
.wsff{word-spacing:13.566000px;}
.wsf2{word-spacing:13.650000px;}
.wsf3{word-spacing:13.776000px;}
.ws46{word-spacing:13.932000px;}
.ws61{word-spacing:14.202000px;}
.wse1{word-spacing:14.280000px;}
.ws4f{word-spacing:14.310000px;}
.wsc2{word-spacing:14.688000px;}
.wsc7{word-spacing:14.742000px;}
.ws72{word-spacing:15.066000px;}
.ws7a{word-spacing:15.390000px;}
.wsbc{word-spacing:15.498000px;}
.ws7b{word-spacing:16.200000px;}
.wsca{word-spacing:16.362000px;}
.wsa7{word-spacing:16.632000px;}
.ws8f{word-spacing:16.740000px;}
.wse2{word-spacing:16.842000px;}
.wsbf{word-spacing:16.956000px;}
.wse3{word-spacing:17.010000px;}
.ws4c{word-spacing:17.226000px;}
.wsb8{word-spacing:18.198000px;}
.ws40{word-spacing:18.738000px;}
.ws6f{word-spacing:19.278000px;}
.wsab{word-spacing:19.440000px;}
.ws3e{word-spacing:19.494000px;}
.ws86{word-spacing:20.358000px;}
.wsec{word-spacing:20.916000px;}
.ws90{word-spacing:21.006000px;}
.ws81{word-spacing:21.924000px;}
.ws71{word-spacing:22.572000px;}
.ws43{word-spacing:22.896000px;}
.ws38{word-spacing:23.274000px;}
.wsf6{word-spacing:24.024000px;}
.wsf7{word-spacing:24.528000px;}
.wsf1{word-spacing:27.342000px;}
.ws2f{word-spacing:28.242000px;}
.ws106{word-spacing:28.476000px;}
.ws107{word-spacing:29.022000px;}
.wse8{word-spacing:29.442000px;}
.ws59{word-spacing:30.294000px;}
.ws94{word-spacing:32.562000px;}
.wsc8{word-spacing:32.778000px;}
.ws4a{word-spacing:32.886000px;}
.ws49{word-spacing:33.642000px;}
.wsde{word-spacing:35.238000px;}
.wsdf{word-spacing:35.574000px;}
.wsc6{word-spacing:44.388000px;}
.ws9e{word-spacing:482.085600px;}
.ws9b{word-spacing:495.525000px;}
.ws9d{word-spacing:504.429600px;}
.ws99{word-spacing:505.605000px;}
.ws6b{word-spacing:550.834200px;}
.ws69{word-spacing:617.697600px;}
.ws66{word-spacing:624.459600px;}
.ws6c{word-spacing:704.499600px;}
.ws98{word-spacing:749.592600px;}
.ws6a{word-spacing:750.929400px;}
.ws67{word-spacing:754.100400px;}
.ws9a{word-spacing:759.672600px;}
.ws68{word-spacing:768.485400px;}
.ws62{word-spacing:997.106400px;}
.wsa4{word-spacing:997.253400px;}
.ws15{word-spacing:997.820400px;}
.ws50{word-spacing:997.925400px;}
.ws95{word-spacing:998.009400px;}
.wsce{word-spacing:998.723400px;}
.ws0{word-spacing:999.563400px;}
.ws63{word-spacing:1168.340400px;}
.wsa5{word-spacing:1168.487400px;}
.ws16{word-spacing:1169.054400px;}
.ws51{word-spacing:1169.159400px;}
.ws96{word-spacing:1169.243400px;}
.wscf{word-spacing:1169.957400px;}
.ws1{word-spacing:1170.797400px;}
._7{margin-left:-11.298000px;}
._4{margin-left:-9.534480px;}
._d{margin-left:-8.100000px;}
._5d{margin-left:-6.514800px;}
._3{margin-left:-5.353260px;}
._5{margin-left:-4.246200px;}
._2{margin-left:-2.448600px;}
._1{margin-left:-1.260000px;}
._0{width:1.247400px;}
._b{width:2.456538px;}
._6{width:4.279200px;}
._a{width:5.770860px;}
._3f{width:7.960520px;}
._8{width:9.699000px;}
._c{width:11.758981px;}
._5c{width:14.689800px;}
._48{width:15.849000px;}
._3e{width:19.291039px;}
._40{width:20.725200px;}
._4c{width:179.702400px;}
._4e{width:198.543600px;}
._49{width:202.837260px;}
._4d{width:231.740400px;}
._e{width:237.114000px;}
._52{width:249.447600px;}
._50{width:250.581600px;}
._41{width:253.784460px;}
._51{width:278.385600px;}
._4a{width:285.626400px;}
._56{width:290.817600px;}
._58{width:295.651800px;}
._59{width:306.991800px;}
._57{width:309.427800px;}
._5a{width:320.175600px;}
._3c{width:322.414800px;}
._5b{width:323.548200px;}
._3a{width:352.390200px;}
._33{width:362.053800px;}
._53{width:374.187600px;}
._42{width:385.305600px;}
._37{width:406.528200px;}
._38{width:413.008200px;}
._36{width:422.139000px;}
._f{width:437.616600px;}
._3b{width:442.764060px;}
._54{width:467.469600px;}
._55{width:471.795600px;}
._34{width:473.488800px;}
._19{width:484.744200px;}
._18{width:491.817000px;}
._4f{width:504.130800px;}
._4b{width:514.210800px;}
._3d{width:520.716000px;}
._39{width:533.442000px;}
._47{width:535.705800px;}
._12{width:545.224800px;}
._46{width:547.356600px;}
._35{width:563.682000px;}
._31{width:565.384800px;}
._1a{width:569.310600px;}
._28{width:584.866800px;}
._13{width:586.824600px;}
._17{width:592.408860px;}
._1e{width:599.550600px;}
._22{width:600.910800px;}
._1c{width:609.630600px;}
._32{width:612.460800px;}
._29{width:623.674800px;}
._2e{width:625.732800px;}
._15{width:632.206800px;}
._16{width:635.356200px;}
._10{width:638.002800px;}
._23{width:642.286800px;}
._43{width:646.887600px;}
._21{width:648.082200px;}
._20{width:652.366800px;}
._2c{width:658.162200px;}
._25{width:662.446800px;}
._27{width:668.290800px;}
._1f{width:680.757000px;}
._2b{width:686.674800px;}
._26{width:695.794200px;}
._11{width:707.990400px;}
._30{width:726.764400px;}
._45{width:727.936800px;}
._2a{width:741.148800px;}
._24{width:751.283400px;}
._2f{width:753.748800px;}
._44{width:776.528400px;}
._1b{width:783.884400px;}
._1d{width:821.978400px;}
._14{width:834.514800px;}
._2d{width:836.656800px;}
._9{width:2013.975600px;}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(43,43,42);}
.fc3{color:rgb(126,127,127);}
.fc2{color:rgb(27,28,27);}
.fc1{color:rgb(101,193,97);}
.fc0{color:rgb(112,111,112);}
.fs4{font-size:24.780000px;}
.fs6{font-size:33.000000px;}
.fs3{font-size:38.940000px;}
.fsa{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs8{font-size:81.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.149650px;}
.yc0{bottom:104.811000px;}
.y34{bottom:104.812350px;}
.yb5{bottom:114.211200px;}
.ybf{bottom:118.311000px;}
.y33{bottom:122.812350px;}
.yb4{bottom:127.711200px;}
.ybe{bottom:139.226850px;}
.y32{bottom:140.812350px;}
.yb3{bottom:141.211200px;}
.yb2{bottom:154.711200px;}
.y31{bottom:158.812350px;}
.ybd{bottom:161.679300px;}
.yb1{bottom:175.747800px;}
.y30{bottom:176.812350px;}
.ybc{bottom:183.890250px;}
.y90{bottom:194.812350px;}
.yb0{bottom:197.958750px;}
.ybb{bottom:206.101200px;}
.y2f{bottom:212.812350px;}
.yaf{bottom:220.048800px;}
.yba{bottom:228.312000px;}
.y8f{bottom:230.812350px;}
.yae{bottom:242.138850px;}
.y92{bottom:248.812350px;}
.yb9{bottom:250.522950px;}
.yad{bottom:264.228900px;}
.y2e{bottom:266.043150px;}
.y8e{bottom:266.812350px;}
.yed{bottom:266.932950px;}
.yb8{bottom:272.733750px;}
.yec{bottom:280.432950px;}
.y2d{bottom:282.543150px;}
.yee{bottom:284.812350px;}
.yac{bottom:286.319100px;}
.yeb{bottom:293.932950px;}
.yb7{bottom:294.823950px;}
.y91{bottom:302.812350px;}
.y2c{bottom:303.543150px;}
.yab{bottom:308.409150px;}
.yea{bottom:314.848800px;}
.y8d{bottom:320.812350px;}
.yb6{bottom:322.864800px;}
.ye9{bottom:325.893900px;}
.yaa{bottom:331.865850px;}
.y8c{bottom:338.812350px;}
.y2b{bottom:341.043150px;}
.ya9{bottom:353.955900px;}
.y8b{bottom:356.812350px;}
.ye8{bottom:359.028900px;}
.y2a{bottom:359.043150px;}
.y125{bottom:365.812350px;}
.ye7{bottom:370.074000px;}
.y8a{bottom:374.812350px;}
.ya8{bottom:376.046100px;}
.y29{bottom:377.043150px;}
.y124{bottom:377.812350px;}
.y123{bottom:389.812350px;}
.y89{bottom:392.812350px;}
.y28{bottom:395.043150px;}
.ya7{bottom:399.502650px;}
.y122{bottom:401.812350px;}
.ye6{bottom:403.209150px;}
.y14d{bottom:407.812350px;}
.y88{bottom:410.812350px;}
.y27{bottom:413.043150px;}
.y121{bottom:419.812350px;}
.ya6{bottom:421.592850px;}
.ye5{bottom:425.299200px;}
.y87{bottom:428.812350px;}
.y26{bottom:431.043150px;}
.y120{bottom:431.812350px;}
.ye2{bottom:436.344150px;}
.ya5{bottom:443.682900px;}
.y11f{bottom:443.812350px;}
.y86{bottom:446.812350px;}
.ye4{bottom:447.389250px;}
.y25{bottom:449.043150px;}
.y14c{bottom:449.812350px;}
.y5b{bottom:454.553550px;}
.y11e{bottom:455.812350px;}
.y14b{bottom:461.812350px;}
.y85{bottom:464.812350px;}
.ya4{bottom:465.772950px;}
.y24{bottom:467.043150px;}
.y5a{bottom:468.053550px;}
.ye3{bottom:469.479300px;}
.y11d{bottom:473.812350px;}
.y59{bottom:481.553550px;}
.y84{bottom:482.812350px;}
.y23{bottom:485.043150px;}
.y11c{bottom:485.812350px;}
.ya3{bottom:487.863000px;}
.ye1{bottom:491.569500px;}
.y14a{bottom:491.812350px;}
.y58{bottom:495.053550px;}
.y11b{bottom:497.812350px;}
.y83{bottom:500.812350px;}
.y22{bottom:503.043150px;}
.y149{bottom:503.812350px;}
.y57{bottom:508.553550px;}
.ya2{bottom:510.073950px;}
.ye0{bottom:513.659550px;}
.y11a{bottom:515.812350px;}
.y82{bottom:518.812350px;}
.y21{bottom:521.043150px;}
.y56{bottom:522.053550px;}
.y119{bottom:527.812350px;}
.ya1{bottom:532.284900px;}
.y148{bottom:533.812350px;}
.y55{bottom:535.553550px;}
.ydf{bottom:535.749600px;}
.y81{bottom:536.812350px;}
.y20{bottom:539.043150px;}
.y118{bottom:539.812350px;}
.y147{bottom:545.812350px;}
.y54{bottom:549.053550px;}
.y117{bottom:551.812350px;}
.ya0{bottom:554.374950px;}
.y80{bottom:554.812350px;}
.y1f{bottom:557.043150px;}
.y146{bottom:557.812350px;}
.yde{bottom:557.839650px;}
.y53{bottom:562.553550px;}
.yd9{bottom:568.884750px;}
.y116{bottom:569.812350px;}
.y7f{bottom:572.812350px;}
.y1e{bottom:575.043150px;}
.y145{bottom:575.812350px;}
.y52{bottom:576.053550px;}
.y9f{bottom:576.465000px;}
.ydd{bottom:579.929850px;}
.y115{bottom:581.812350px;}
.y144{bottom:587.812350px;}
.y51{bottom:589.553550px;}
.y7e{bottom:590.812350px;}
.y1d{bottom:593.043150px;}
.y114{bottom:593.812350px;}
.y9e{bottom:598.555050px;}
.y143{bottom:599.812350px;}
.ydc{bottom:602.019900px;}
.y50{bottom:603.053550px;}
.y113{bottom:605.812350px;}
.y7d{bottom:608.812350px;}
.y1c{bottom:611.043150px;}
.y142{bottom:611.812350px;}
.y4f{bottom:616.553550px;}
.y9d{bottom:622.011750px;}
.y112{bottom:623.812350px;}
.ydb{bottom:624.109950px;}
.y7c{bottom:626.812350px;}
.y1b{bottom:629.043150px;}
.y141{bottom:629.812350px;}
.y4e{bottom:630.053550px;}
.y111{bottom:635.812350px;}
.y140{bottom:641.812350px;}
.y4d{bottom:643.810050px;}
.y9c{bottom:644.101800px;}
.y7b{bottom:644.812350px;}
.yda{bottom:646.200000px;}
.y1a{bottom:647.043150px;}
.y110{bottom:647.812350px;}
.y13f{bottom:653.812350px;}
.y7a{bottom:662.812350px;}
.y4c{bottom:664.879050px;}
.y19{bottom:665.043150px;}
.y10f{bottom:665.812350px;}
.y9b{bottom:666.192000px;}
.yd8{bottom:668.290200px;}
.y10e{bottom:677.812350px;}
.y4b{bottom:678.379050px;}
.y79{bottom:680.812350px;}
.y18{bottom:683.043150px;}
.y13e{bottom:683.812350px;}
.y9a{bottom:688.282050px;}
.y10d{bottom:689.812350px;}
.yd7{bottom:690.380250px;}
.y4a{bottom:691.879050px;}
.y13d{bottom:695.812350px;}
.y78{bottom:698.812350px;}
.y17{bottom:701.043150px;}
.y10c{bottom:701.812350px;}
.y49{bottom:705.379050px;}
.y13c{bottom:707.812350px;}
.y99{bottom:710.372100px;}
.yd6{bottom:712.470300px;}
.y77{bottom:716.812350px;}
.y48{bottom:718.879050px;}
.y10b{bottom:719.812350px;}
.y13b{bottom:725.812350px;}
.y10a{bottom:731.812350px;}
.y47{bottom:732.379050px;}
.y98{bottom:732.583050px;}
.yd5{bottom:734.560350px;}
.y76{bottom:734.812350px;}
.y13a{bottom:737.812350px;}
.y109{bottom:743.812350px;}
.y16{bottom:744.976650px;}
.y46{bottom:745.879050px;}
.y139{bottom:749.812350px;}
.y75{bottom:752.812350px;}
.y97{bottom:754.914750px;}
.yd4{bottom:756.650550px;}
.y15{bottom:758.476650px;}
.y45{bottom:759.379050px;}
.y108{bottom:761.812350px;}
.yce{bottom:767.695500px;}
.y74{bottom:770.812350px;}
.y14{bottom:771.976650px;}
.y44{bottom:773.135400px;}
.y107{bottom:773.812350px;}
.y96{bottom:777.246450px;}
.yd3{bottom:778.740450px;}
.y138{bottom:779.812350px;}
.y13{bottom:785.476650px;}
.y106{bottom:785.812350px;}
.y73{bottom:788.812350px;}
.y137{bottom:791.812350px;}
.y43{bottom:794.204550px;}
.y105{bottom:797.812350px;}
.y12{bottom:798.976650px;}
.y95{bottom:799.457400px;}
.yd2{bottom:800.830650px;}
.y136{bottom:803.812350px;}
.y72{bottom:806.812350px;}
.y42{bottom:807.704550px;}
.y11{bottom:812.476650px;}
.y104{bottom:815.812350px;}
.y41{bottom:821.204550px;}
.y94{bottom:821.547300px;}
.y135{bottom:821.812350px;}
.yd1{bottom:822.920700px;}
.y71{bottom:824.812350px;}
.y10{bottom:825.976650px;}
.y103{bottom:827.812350px;}
.y134{bottom:833.812350px;}
.yf{bottom:839.476650px;}
.y102{bottom:839.812350px;}
.y40{bottom:842.204550px;}
.y70{bottom:842.812350px;}
.yd0{bottom:845.010750px;}
.y133{bottom:845.812350px;}
.y93{bottom:849.588300px;}
.ye{bottom:852.976650px;}
.y3f{bottom:855.704550px;}
.y101{bottom:857.812350px;}
.y6f{bottom:860.812350px;}
.yd{bottom:866.476650px;}
.ycf{bottom:867.100950px;}
.y3e{bottom:869.461050px;}
.y100{bottom:869.812350px;}
.y132{bottom:875.812350px;}
.y6e{bottom:878.812350px;}
.yff{bottom:881.812350px;}
.yc{bottom:883.756650px;}
.y131{bottom:887.812350px;}
.ycd{bottom:889.191000px;}
.y3d{bottom:890.529900px;}
.yfe{bottom:893.812350px;}
.y6d{bottom:896.812350px;}
.y130{bottom:899.812350px;}
.y3c{bottom:904.029900px;}
.ya{bottom:904.860150px;}
.yb{bottom:910.800150px;}
.ycc{bottom:911.281050px;}
.yfd{bottom:911.812350px;}
.y6c{bottom:914.812350px;}
.y3b{bottom:917.529900px;}
.yfc{bottom:923.812350px;}
.y8{bottom:927.360150px;}
.y12f{bottom:929.812350px;}
.y3a{bottom:931.029900px;}
.y6b{bottom:932.812350px;}
.y9{bottom:933.300150px;}
.ycb{bottom:933.371100px;}
.yfb{bottom:935.812350px;}
.y12e{bottom:941.812350px;}
.y39{bottom:944.786550px;}
.y6{bottom:949.860150px;}
.y6a{bottom:950.812350px;}
.yfa{bottom:953.812350px;}
.yca{bottom:955.461300px;}
.y7{bottom:955.800150px;}
.yf9{bottom:965.812350px;}
.y38{bottom:965.855550px;}
.y69{bottom:968.812350px;}
.y12d{bottom:971.812350px;}
.y4{bottom:972.360150px;}
.yc9{bottom:977.551350px;}
.yf8{bottom:977.812350px;}
.y5{bottom:978.300150px;}
.y37{bottom:979.355550px;}
.y12c{bottom:983.812350px;}
.y68{bottom:986.812350px;}
.yc3{bottom:988.596450px;}
.yf7{bottom:989.812350px;}
.y36{bottom:993.111900px;}
.y12b{bottom:995.812350px;}
.yc8{bottom:999.641400px;}
.y67{bottom:1004.812350px;}
.yf6{bottom:1007.812350px;}
.y12a{bottom:1013.812350px;}
.y35{bottom:1014.181050px;}
.y3{bottom:1014.499650px;}
.yf5{bottom:1019.812350px;}
.yc7{bottom:1021.731600px;}
.y66{bottom:1022.812350px;}
.y129{bottom:1025.812350px;}
.yf4{bottom:1031.812350px;}
.y128{bottom:1037.812350px;}
.y65{bottom:1040.812350px;}
.yc6{bottom:1043.821500px;}
.yf3{bottom:1049.812350px;}
.y2{bottom:1051.999650px;}
.y127{bottom:1055.812350px;}
.y64{bottom:1058.812350px;}
.yf2{bottom:1061.812350px;}
.yc5{bottom:1065.911700px;}
.y126{bottom:1067.812350px;}
.y63{bottom:1076.812350px;}
.yf1{bottom:1079.812350px;}
.yc4{bottom:1088.001750px;}
.yf0{bottom:1091.812350px;}
.y62{bottom:1094.812350px;}
.yef{bottom:1103.812350px;}
.yc2{bottom:1110.091800px;}
.y61{bottom:1112.812350px;}
.y60{bottom:1130.812350px;}
.yc1{bottom:1138.132650px;}
.y5e{bottom:1175.303400px;}
.y5d{bottom:1188.803400px;}
.y5f{bottom:1202.272050px;}
.y5c{bottom:1202.303400px;}
.h6{height:18.386760px;}
.ha{height:23.826000px;}
.h5{height:28.971360px;}
.he{height:30.324000px;}
.h8{height:31.164000px;}
.h2{height:31.248000px;}
.h13{height:31.629000px;}
.h7{height:33.506760px;}
.h11{height:34.062000px;}
.h14{height:34.545600px;}
.hb{height:34.656000px;}
.h12{height:35.712000px;}
.h9{height:40.068000px;}
.h10{height:40.176000px;}
.hd{height:43.794000px;}
.h4{height:49.104000px;}
.hf{height:53.568000px;}
.hc{height:60.264000px;}
.h15{height:78.241800px;}
.h3{height:93.744000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:74.409450px;}
.xf{left:82.518000px;}
.x10{left:95.653950px;}
.x1a{left:230.644200px;}
.x15{left:242.527200px;}
.x18{left:272.282700px;}
.x17{left:278.289000px;}
.x13{left:281.340900px;}
.x16{left:284.284350px;}
.x2{left:332.503950px;}
.x14{left:340.371150px;}
.xe{left:353.763450px;}
.x1b{left:379.463100px;}
.x6{left:424.567500px;}
.xa{left:446.099400px;}
.x11{left:457.071600px;}
.x1c{left:466.086600px;}
.x12{left:478.331100px;}
.x3{left:499.889700px;}
.x7{left:509.792100px;}
.x19{left:546.229350px;}
.xb{left:573.210450px;}
.x8{left:608.463750px;}
.x4{left:660.633600px;}
.xd{left:696.798150px;}
.xc{left:701.266500px;}
.x9{left:747.328800px;}
.x5{left:787.849950px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v4{vertical-align:39.270933pt;}
.ls16{letter-spacing:-2.314667pt;}
.ls8{letter-spacing:-1.200000pt;}
.ls3{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-0.970667pt;}
.lsb{letter-spacing:-0.864000pt;}
.ls15{letter-spacing:-0.597333pt;}
.ls7{letter-spacing:-0.485333pt;}
.ls17{letter-spacing:-0.373333pt;}
.lsf{letter-spacing:-0.298667pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls14{letter-spacing:-0.261333pt;}
.ls4{letter-spacing:-0.240000pt;}
.lsd{letter-spacing:-0.224000pt;}
.ls10{letter-spacing:-0.149333pt;}
.ls6{letter-spacing:-0.088000pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.186667pt;}
.ls0{letter-spacing:0.264000pt;}
.ls11{letter-spacing:0.432000pt;}
.ls12{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.719788pt;}
.ls9{letter-spacing:0.720000pt;}
.ls13{letter-spacing:1.306667pt;}
.ls2{letter-spacing:1.866667pt;}
.wsa6{word-spacing:-18.504000pt;}
.ws18{word-spacing:-10.992000pt;}
.ws17{word-spacing:-10.896000pt;}
.ws6{word-spacing:-10.656000pt;}
.ws64{word-spacing:-10.032000pt;}
.wsd5{word-spacing:-9.781333pt;}
.ws2{word-spacing:-9.594667pt;}
.ws14{word-spacing:-9.109333pt;}
.ws52{word-spacing:-9.072000pt;}
.ws3{word-spacing:-8.895627pt;}
.ws53{word-spacing:-8.549333pt;}
.wsd1{word-spacing:-8.474667pt;}
.wsd0{word-spacing:-8.325333pt;}
.wsd2{word-spacing:-8.288000pt;}
.ws9c{word-spacing:-8.176000pt;}
.ws54{word-spacing:-8.101333pt;}
.wsd3{word-spacing:-8.064000pt;}
.ws56{word-spacing:-7.938667pt;}
.ws97{word-spacing:-7.504000pt;}
.wsd4{word-spacing:-7.429333pt;}
.ws9{word-spacing:-7.392000pt;}
.ws5{word-spacing:-7.128000pt;}
.ws8{word-spacing:-7.040000pt;}
.ws7{word-spacing:-6.834667pt;}
.wsd6{word-spacing:-6.234667pt;}
.ws4{word-spacing:-5.925173pt;}
.ws76{word-spacing:-2.112000pt;}
.wscb{word-spacing:-1.968000pt;}
.ws9f{word-spacing:-1.728000pt;}
.wsae{word-spacing:-1.680000pt;}
.wsfa{word-spacing:-1.306667pt;}
.wscc{word-spacing:-1.296000pt;}
.wsf{word-spacing:-1.104000pt;}
.wsb1{word-spacing:-1.056000pt;}
.ws7e{word-spacing:-1.008000pt;}
.ws35{word-spacing:-0.960000pt;}
.ws19{word-spacing:-0.933333pt;}
.ws5e{word-spacing:-0.912000pt;}
.ws1d{word-spacing:-0.864000pt;}
.wsdd{word-spacing:-0.858667pt;}
.ws8b{word-spacing:-0.816000pt;}
.wse6{word-spacing:-0.746667pt;}
.ws8e{word-spacing:-0.720000pt;}
.ws79{word-spacing:-0.672000pt;}
.wsfb{word-spacing:-0.634667pt;}
.wsb2{word-spacing:-0.576000pt;}
.wse4{word-spacing:-0.560000pt;}
.ws26{word-spacing:-0.528000pt;}
.wsda{word-spacing:-0.485333pt;}
.ws6e{word-spacing:-0.432000pt;}
.wse0{word-spacing:-0.373333pt;}
.wsa1{word-spacing:-0.336000pt;}
.ws48{word-spacing:-0.192000pt;}
.wsa3{word-spacing:-0.186667pt;}
.ws42{word-spacing:-0.144000pt;}
.ws4e{word-spacing:-0.096000pt;}
.wsfc{word-spacing:-0.074667pt;}
.ws1a{word-spacing:-0.048000pt;}
.ws65{word-spacing:-0.037333pt;}
.ws55{word-spacing:-0.034667pt;}
.wsa{word-spacing:0.000000pt;}
.ws20{word-spacing:0.096000pt;}
.wse5{word-spacing:0.186667pt;}
.wsfe{word-spacing:0.224000pt;}
.ws12{word-spacing:0.240000pt;}
.ws32{word-spacing:0.384000pt;}
.wsef{word-spacing:0.410667pt;}
.wsaf{word-spacing:0.432000pt;}
.ws1b{word-spacing:0.480000pt;}
.wsc{word-spacing:0.528000pt;}
.ws5f{word-spacing:0.576000pt;}
.wsed{word-spacing:0.597333pt;}
.ws93{word-spacing:0.720000pt;}
.wscd{word-spacing:0.816000pt;}
.wsd7{word-spacing:0.821333pt;}
.wsd8{word-spacing:0.858667pt;}
.wsb9{word-spacing:0.864000pt;}
.ws8c{word-spacing:0.912000pt;}
.wsea{word-spacing:0.970667pt;}
.ws88{word-spacing:1.008000pt;}
.ws24{word-spacing:1.056000pt;}
.wsd9{word-spacing:1.082667pt;}
.ws11{word-spacing:1.104000pt;}
.wsf0{word-spacing:1.157333pt;}
.ws102{word-spacing:1.194667pt;}
.wsb0{word-spacing:1.200000pt;}
.ws100{word-spacing:1.232000pt;}
.wsdb{word-spacing:1.306667pt;}
.ws73{word-spacing:1.344000pt;}
.wse{word-spacing:1.392000pt;}
.ws28{word-spacing:1.488000pt;}
.ws4d{word-spacing:1.536000pt;}
.wsa8{word-spacing:1.584000pt;}
.wsf8{word-spacing:1.642667pt;}
.ws25{word-spacing:1.872000pt;}
.ws75{word-spacing:1.920000pt;}
.ws27{word-spacing:1.968000pt;}
.wsd{word-spacing:2.160000pt;}
.ws2b{word-spacing:2.448000pt;}
.ws45{word-spacing:2.496000pt;}
.ws10{word-spacing:2.544000pt;}
.ws60{word-spacing:2.592000pt;}
.ws83{word-spacing:2.640000pt;}
.ws77{word-spacing:2.832000pt;}
.ws89{word-spacing:2.928000pt;}
.wsfd{word-spacing:2.986667pt;}
.wsb3{word-spacing:3.120000pt;}
.wsb{word-spacing:3.168000pt;}
.wsaa{word-spacing:3.264000pt;}
.ws41{word-spacing:3.312000pt;}
.ws2e{word-spacing:3.408000pt;}
.ws74{word-spacing:3.456000pt;}
.wse9{word-spacing:3.546667pt;}
.wsee{word-spacing:3.658667pt;}
.wsba{word-spacing:3.696000pt;}
.ws5d{word-spacing:3.888000pt;}
.ws5a{word-spacing:4.080000pt;}
.ws31{word-spacing:4.128000pt;}
.ws44{word-spacing:4.176000pt;}
.wsc0{word-spacing:4.272000pt;}
.wsf5{word-spacing:4.330667pt;}
.ws103{word-spacing:4.405333pt;}
.ws6d{word-spacing:4.416000pt;}
.wsbd{word-spacing:4.608000pt;}
.ws1c{word-spacing:4.656000pt;}
.ws87{word-spacing:4.704000pt;}
.ws2c{word-spacing:4.752000pt;}
.wsb6{word-spacing:4.896000pt;}
.ws1f{word-spacing:4.944000pt;}
.ws104{word-spacing:5.040000pt;}
.wsbe{word-spacing:5.088000pt;}
.wsdc{word-spacing:5.114667pt;}
.ws7f{word-spacing:5.328000pt;}
.wsc1{word-spacing:5.616000pt;}
.ws92{word-spacing:5.664000pt;}
.ws23{word-spacing:5.712000pt;}
.wseb{word-spacing:5.786667pt;}
.wse7{word-spacing:5.936000pt;}
.wsb4{word-spacing:6.000000pt;}
.ws39{word-spacing:6.048000pt;}
.wsc9{word-spacing:6.240000pt;}
.ws105{word-spacing:6.272000pt;}
.wsa0{word-spacing:6.336000pt;}
.ws5b{word-spacing:6.384000pt;}
.ws3a{word-spacing:6.528000pt;}
.ws47{word-spacing:6.816000pt;}
.ws1e{word-spacing:6.960000pt;}
.ws33{word-spacing:7.056000pt;}
.ws3f{word-spacing:7.104000pt;}
.ws70{word-spacing:7.152000pt;}
.ws5c{word-spacing:7.392000pt;}
.ws80{word-spacing:7.632000pt;}
.ws101{word-spacing:8.250667pt;}
.wsc3{word-spacing:8.256000pt;}
.ws7c{word-spacing:8.448000pt;}
.ws8a{word-spacing:8.496000pt;}
.ws85{word-spacing:8.544000pt;}
.ws13{word-spacing:8.624000pt;}
.ws57{word-spacing:8.688000pt;}
.ws3d{word-spacing:8.784000pt;}
.ws2a{word-spacing:8.832000pt;}
.ws78{word-spacing:8.976000pt;}
.ws22{word-spacing:9.024000pt;}
.ws30{word-spacing:9.120000pt;}
.ws7d{word-spacing:9.360000pt;}
.wsa2{word-spacing:9.408000pt;}
.ws84{word-spacing:9.504000pt;}
.wsf9{word-spacing:9.520000pt;}
.wsb7{word-spacing:9.600000pt;}
.ws91{word-spacing:9.744000pt;}
.ws4b{word-spacing:9.936000pt;}
.ws37{word-spacing:10.032000pt;}
.wsac{word-spacing:10.176000pt;}
.ws8d{word-spacing:10.224000pt;}
.wsad{word-spacing:10.416000pt;}
.ws3b{word-spacing:10.464000pt;}
.ws34{word-spacing:10.512000pt;}
.ws58{word-spacing:10.560000pt;}
.ws29{word-spacing:10.608000pt;}
.wsf4{word-spacing:10.640000pt;}
.wsa9{word-spacing:10.656000pt;}
.ws36{word-spacing:10.704000pt;}
.wsc5{word-spacing:10.752000pt;}
.ws2d{word-spacing:10.800000pt;}
.wsc4{word-spacing:10.992000pt;}
.ws21{word-spacing:11.040000pt;}
.ws82{word-spacing:11.136000pt;}
.wsbb{word-spacing:11.616000pt;}
.wsb5{word-spacing:11.856000pt;}
.ws3c{word-spacing:12.000000pt;}
.wsff{word-spacing:12.058667pt;}
.wsf2{word-spacing:12.133333pt;}
.wsf3{word-spacing:12.245333pt;}
.ws46{word-spacing:12.384000pt;}
.ws61{word-spacing:12.624000pt;}
.wse1{word-spacing:12.693333pt;}
.ws4f{word-spacing:12.720000pt;}
.wsc2{word-spacing:13.056000pt;}
.wsc7{word-spacing:13.104000pt;}
.ws72{word-spacing:13.392000pt;}
.ws7a{word-spacing:13.680000pt;}
.wsbc{word-spacing:13.776000pt;}
.ws7b{word-spacing:14.400000pt;}
.wsca{word-spacing:14.544000pt;}
.wsa7{word-spacing:14.784000pt;}
.ws8f{word-spacing:14.880000pt;}
.wse2{word-spacing:14.970667pt;}
.wsbf{word-spacing:15.072000pt;}
.wse3{word-spacing:15.120000pt;}
.ws4c{word-spacing:15.312000pt;}
.wsb8{word-spacing:16.176000pt;}
.ws40{word-spacing:16.656000pt;}
.ws6f{word-spacing:17.136000pt;}
.wsab{word-spacing:17.280000pt;}
.ws3e{word-spacing:17.328000pt;}
.ws86{word-spacing:18.096000pt;}
.wsec{word-spacing:18.592000pt;}
.ws90{word-spacing:18.672000pt;}
.ws81{word-spacing:19.488000pt;}
.ws71{word-spacing:20.064000pt;}
.ws43{word-spacing:20.352000pt;}
.ws38{word-spacing:20.688000pt;}
.wsf6{word-spacing:21.354667pt;}
.wsf7{word-spacing:21.802667pt;}
.wsf1{word-spacing:24.304000pt;}
.ws2f{word-spacing:25.104000pt;}
.ws106{word-spacing:25.312000pt;}
.ws107{word-spacing:25.797333pt;}
.wse8{word-spacing:26.170667pt;}
.ws59{word-spacing:26.928000pt;}
.ws94{word-spacing:28.944000pt;}
.wsc8{word-spacing:29.136000pt;}
.ws4a{word-spacing:29.232000pt;}
.ws49{word-spacing:29.904000pt;}
.wsde{word-spacing:31.322667pt;}
.wsdf{word-spacing:31.621333pt;}
.wsc6{word-spacing:39.456000pt;}
.ws9e{word-spacing:428.520533pt;}
.ws9b{word-spacing:440.466667pt;}
.ws9d{word-spacing:448.381867pt;}
.ws99{word-spacing:449.426667pt;}
.ws6b{word-spacing:489.630400pt;}
.ws69{word-spacing:549.064533pt;}
.ws66{word-spacing:555.075200pt;}
.ws6c{word-spacing:626.221867pt;}
.ws98{word-spacing:666.304533pt;}
.ws6a{word-spacing:667.492800pt;}
.ws67{word-spacing:670.311467pt;}
.ws9a{word-spacing:675.264533pt;}
.ws68{word-spacing:683.098133pt;}
.ws62{word-spacing:886.316800pt;}
.wsa4{word-spacing:886.447467pt;}
.ws15{word-spacing:886.951467pt;}
.ws50{word-spacing:887.044800pt;}
.ws95{word-spacing:887.119467pt;}
.wsce{word-spacing:887.754133pt;}
.ws0{word-spacing:888.500800pt;}
.ws63{word-spacing:1038.524800pt;}
.wsa5{word-spacing:1038.655467pt;}
.ws16{word-spacing:1039.159467pt;}
.ws51{word-spacing:1039.252800pt;}
.ws96{word-spacing:1039.327467pt;}
.wscf{word-spacing:1039.962133pt;}
.ws1{word-spacing:1040.708800pt;}
._7{margin-left:-10.042667pt;}
._4{margin-left:-8.475093pt;}
._d{margin-left:-7.200000pt;}
._5d{margin-left:-5.790933pt;}
._3{margin-left:-4.758453pt;}
._5{margin-left:-3.774400pt;}
._2{margin-left:-2.176533pt;}
._1{margin-left:-1.120000pt;}
._0{width:1.108800pt;}
._b{width:2.183589pt;}
._6{width:3.803733pt;}
._a{width:5.129653pt;}
._3f{width:7.076017pt;}
._8{width:8.621333pt;}
._c{width:10.452427pt;}
._5c{width:13.057600pt;}
._48{width:14.088000pt;}
._3e{width:17.147591pt;}
._40{width:18.422400pt;}
._4c{width:159.735467pt;}
._4e{width:176.483200pt;}
._49{width:180.299787pt;}
._4d{width:205.991467pt;}
._e{width:210.768000pt;}
._52{width:221.731200pt;}
._50{width:222.739200pt;}
._41{width:225.586187pt;}
._51{width:247.453867pt;}
._4a{width:253.890133pt;}
._56{width:258.504533pt;}
._58{width:262.801600pt;}
._59{width:272.881600pt;}
._57{width:275.046933pt;}
._5a{width:284.600533pt;}
._3c{width:286.590933pt;}
._5b{width:287.598400pt;}
._3a{width:313.235733pt;}
._33{width:321.825600pt;}
._53{width:332.611200pt;}
._42{width:342.493867pt;}
._37{width:361.358400pt;}
._38{width:367.118400pt;}
._36{width:375.234667pt;}
._f{width:388.992533pt;}
._3b{width:393.568053pt;}
._54{width:415.528533pt;}
._55{width:419.373867pt;}
._34{width:420.878933pt;}
._19{width:430.883733pt;}
._18{width:437.170667pt;}
._4f{width:448.116267pt;}
._4b{width:457.076267pt;}
._3d{width:462.858667pt;}
._39{width:474.170667pt;}
._47{width:476.182933pt;}
._12{width:484.644267pt;}
._46{width:486.539200pt;}
._35{width:501.050667pt;}
._31{width:502.564267pt;}
._1a{width:506.053867pt;}
._28{width:519.881600pt;}
._13{width:521.621867pt;}
._17{width:526.585653pt;}
._1e{width:532.933867pt;}
._22{width:534.142933pt;}
._1c{width:541.893867pt;}
._32{width:544.409600pt;}
._29{width:554.377600pt;}
._2e{width:556.206933pt;}
._15{width:561.961600pt;}
._16{width:564.761067pt;}
._10{width:567.113600pt;}
._23{width:570.921600pt;}
._43{width:575.011200pt;}
._21{width:576.073067pt;}
._20{width:579.881600pt;}
._2c{width:585.033067pt;}
._25{width:588.841600pt;}
._27{width:594.036267pt;}
._1f{width:605.117333pt;}
._2b{width:610.377600pt;}
._26{width:618.483733pt;}
._11{width:629.324800pt;}
._30{width:646.012800pt;}
._45{width:647.054933pt;}
._2a{width:658.798933pt;}
._24{width:667.807467pt;}
._2f{width:669.998933pt;}
._44{width:690.247467pt;}
._1b{width:696.786133pt;}
._1d{width:730.647467pt;}
._14{width:741.790933pt;}
._2d{width:743.694933pt;}
._9{width:1790.200533pt;}
.fs4{font-size:22.026667pt;}
.fs6{font-size:29.333333pt;}
.fs3{font-size:34.613333pt;}
.fsa{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs8{font-size:72.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.244133pt;}
.yc0{bottom:93.165333pt;}
.y34{bottom:93.166533pt;}
.yb5{bottom:101.521067pt;}
.ybf{bottom:105.165333pt;}
.y33{bottom:109.166533pt;}
.yb4{bottom:113.521067pt;}
.ybe{bottom:123.757200pt;}
.y32{bottom:125.166533pt;}
.yb3{bottom:125.521067pt;}
.yb2{bottom:137.521067pt;}
.y31{bottom:141.166533pt;}
.ybd{bottom:143.714933pt;}
.yb1{bottom:156.220267pt;}
.y30{bottom:157.166533pt;}
.ybc{bottom:163.458000pt;}
.y90{bottom:173.166533pt;}
.yb0{bottom:175.963333pt;}
.ybb{bottom:183.201067pt;}
.y2f{bottom:189.166533pt;}
.yaf{bottom:195.598933pt;}
.yba{bottom:202.944000pt;}
.y8f{bottom:205.166533pt;}
.yae{bottom:215.234533pt;}
.y92{bottom:221.166533pt;}
.yb9{bottom:222.687067pt;}
.yad{bottom:234.870133pt;}
.y2e{bottom:236.482800pt;}
.y8e{bottom:237.166533pt;}
.yed{bottom:237.273733pt;}
.yb8{bottom:242.430000pt;}
.yec{bottom:249.273733pt;}
.y2d{bottom:251.149467pt;}
.yee{bottom:253.166533pt;}
.yac{bottom:254.505867pt;}
.yeb{bottom:261.273733pt;}
.yb7{bottom:262.065733pt;}
.y91{bottom:269.166533pt;}
.y2c{bottom:269.816133pt;}
.yab{bottom:274.141467pt;}
.yea{bottom:279.865600pt;}
.y8d{bottom:285.166533pt;}
.yb6{bottom:286.990933pt;}
.ye9{bottom:289.683467pt;}
.yaa{bottom:294.991867pt;}
.y8c{bottom:301.166533pt;}
.y2b{bottom:303.149467pt;}
.ya9{bottom:314.627467pt;}
.y8b{bottom:317.166533pt;}
.ye8{bottom:319.136800pt;}
.y2a{bottom:319.149467pt;}
.y125{bottom:325.166533pt;}
.ye7{bottom:328.954667pt;}
.y8a{bottom:333.166533pt;}
.ya8{bottom:334.263200pt;}
.y29{bottom:335.149467pt;}
.y124{bottom:335.833200pt;}
.y123{bottom:346.499867pt;}
.y89{bottom:349.166533pt;}
.y28{bottom:351.149467pt;}
.ya7{bottom:355.113467pt;}
.y122{bottom:357.166533pt;}
.ye6{bottom:358.408133pt;}
.y14d{bottom:362.499867pt;}
.y88{bottom:365.166533pt;}
.y27{bottom:367.149467pt;}
.y121{bottom:373.166533pt;}
.ya6{bottom:374.749200pt;}
.ye5{bottom:378.043733pt;}
.y87{bottom:381.166533pt;}
.y26{bottom:383.149467pt;}
.y120{bottom:383.833200pt;}
.ye2{bottom:387.861467pt;}
.ya5{bottom:394.384800pt;}
.y11f{bottom:394.499867pt;}
.y86{bottom:397.166533pt;}
.ye4{bottom:397.679333pt;}
.y25{bottom:399.149467pt;}
.y14c{bottom:399.833200pt;}
.y5b{bottom:404.047600pt;}
.y11e{bottom:405.166533pt;}
.y14b{bottom:410.499867pt;}
.y85{bottom:413.166533pt;}
.ya4{bottom:414.020400pt;}
.y24{bottom:415.149467pt;}
.y5a{bottom:416.047600pt;}
.ye3{bottom:417.314933pt;}
.y11d{bottom:421.166533pt;}
.y59{bottom:428.047600pt;}
.y84{bottom:429.166533pt;}
.y23{bottom:431.149467pt;}
.y11c{bottom:431.833200pt;}
.ya3{bottom:433.656000pt;}
.ye1{bottom:436.950667pt;}
.y14a{bottom:437.166533pt;}
.y58{bottom:440.047600pt;}
.y11b{bottom:442.499867pt;}
.y83{bottom:445.166533pt;}
.y22{bottom:447.149467pt;}
.y149{bottom:447.833200pt;}
.y57{bottom:452.047600pt;}
.ya2{bottom:453.399067pt;}
.ye0{bottom:456.586267pt;}
.y11a{bottom:458.499867pt;}
.y82{bottom:461.166533pt;}
.y21{bottom:463.149467pt;}
.y56{bottom:464.047600pt;}
.y119{bottom:469.166533pt;}
.ya1{bottom:473.142133pt;}
.y148{bottom:474.499867pt;}
.y55{bottom:476.047600pt;}
.ydf{bottom:476.221867pt;}
.y81{bottom:477.166533pt;}
.y20{bottom:479.149467pt;}
.y118{bottom:479.833200pt;}
.y147{bottom:485.166533pt;}
.y54{bottom:488.047600pt;}
.y117{bottom:490.499867pt;}
.ya0{bottom:492.777733pt;}
.y80{bottom:493.166533pt;}
.y1f{bottom:495.149467pt;}
.y146{bottom:495.833200pt;}
.yde{bottom:495.857467pt;}
.y53{bottom:500.047600pt;}
.yd9{bottom:505.675333pt;}
.y116{bottom:506.499867pt;}
.y7f{bottom:509.166533pt;}
.y1e{bottom:511.149467pt;}
.y145{bottom:511.833200pt;}
.y52{bottom:512.047600pt;}
.y9f{bottom:512.413333pt;}
.ydd{bottom:515.493200pt;}
.y115{bottom:517.166533pt;}
.y144{bottom:522.499867pt;}
.y51{bottom:524.047600pt;}
.y7e{bottom:525.166533pt;}
.y1d{bottom:527.149467pt;}
.y114{bottom:527.833200pt;}
.y9e{bottom:532.048933pt;}
.y143{bottom:533.166533pt;}
.ydc{bottom:535.128800pt;}
.y50{bottom:536.047600pt;}
.y113{bottom:538.499867pt;}
.y7d{bottom:541.166533pt;}
.y1c{bottom:543.149467pt;}
.y142{bottom:543.833200pt;}
.y4f{bottom:548.047600pt;}
.y9d{bottom:552.899333pt;}
.y112{bottom:554.499867pt;}
.ydb{bottom:554.764400pt;}
.y7c{bottom:557.166533pt;}
.y1b{bottom:559.149467pt;}
.y141{bottom:559.833200pt;}
.y4e{bottom:560.047600pt;}
.y111{bottom:565.166533pt;}
.y140{bottom:570.499867pt;}
.y4d{bottom:572.275600pt;}
.y9c{bottom:572.534933pt;}
.y7b{bottom:573.166533pt;}
.yda{bottom:574.400000pt;}
.y1a{bottom:575.149467pt;}
.y110{bottom:575.833200pt;}
.y13f{bottom:581.166533pt;}
.y7a{bottom:589.166533pt;}
.y4c{bottom:591.003600pt;}
.y19{bottom:591.149467pt;}
.y10f{bottom:591.833200pt;}
.y9b{bottom:592.170667pt;}
.yd8{bottom:594.035733pt;}
.y10e{bottom:602.499867pt;}
.y4b{bottom:603.003600pt;}
.y79{bottom:605.166533pt;}
.y18{bottom:607.149467pt;}
.y13e{bottom:607.833200pt;}
.y9a{bottom:611.806267pt;}
.y10d{bottom:613.166533pt;}
.yd7{bottom:613.671333pt;}
.y4a{bottom:615.003600pt;}
.y13d{bottom:618.499867pt;}
.y78{bottom:621.166533pt;}
.y17{bottom:623.149467pt;}
.y10c{bottom:623.833200pt;}
.y49{bottom:627.003600pt;}
.y13c{bottom:629.166533pt;}
.y99{bottom:631.441867pt;}
.yd6{bottom:633.306933pt;}
.y77{bottom:637.166533pt;}
.y48{bottom:639.003600pt;}
.y10b{bottom:639.833200pt;}
.y13b{bottom:645.166533pt;}
.y10a{bottom:650.499867pt;}
.y47{bottom:651.003600pt;}
.y98{bottom:651.184933pt;}
.yd5{bottom:652.942533pt;}
.y76{bottom:653.166533pt;}
.y13a{bottom:655.833200pt;}
.y109{bottom:661.166533pt;}
.y16{bottom:662.201467pt;}
.y46{bottom:663.003600pt;}
.y139{bottom:666.499867pt;}
.y75{bottom:669.166533pt;}
.y97{bottom:671.035333pt;}
.yd4{bottom:672.578267pt;}
.y15{bottom:674.201467pt;}
.y45{bottom:675.003600pt;}
.y108{bottom:677.166533pt;}
.yce{bottom:682.396000pt;}
.y74{bottom:685.166533pt;}
.y14{bottom:686.201467pt;}
.y44{bottom:687.231467pt;}
.y107{bottom:687.833200pt;}
.y96{bottom:690.885733pt;}
.yd3{bottom:692.213733pt;}
.y138{bottom:693.166533pt;}
.y13{bottom:698.201467pt;}
.y106{bottom:698.499867pt;}
.y73{bottom:701.166533pt;}
.y137{bottom:703.833200pt;}
.y43{bottom:705.959600pt;}
.y105{bottom:709.166533pt;}
.y12{bottom:710.201467pt;}
.y95{bottom:710.628800pt;}
.yd2{bottom:711.849467pt;}
.y136{bottom:714.499867pt;}
.y72{bottom:717.166533pt;}
.y42{bottom:717.959600pt;}
.y11{bottom:722.201467pt;}
.y104{bottom:725.166533pt;}
.y41{bottom:729.959600pt;}
.y94{bottom:730.264267pt;}
.y135{bottom:730.499867pt;}
.yd1{bottom:731.485067pt;}
.y71{bottom:733.166533pt;}
.y10{bottom:734.201467pt;}
.y103{bottom:735.833200pt;}
.y134{bottom:741.166533pt;}
.yf{bottom:746.201467pt;}
.y102{bottom:746.499867pt;}
.y40{bottom:748.626267pt;}
.y70{bottom:749.166533pt;}
.yd0{bottom:751.120667pt;}
.y133{bottom:751.833200pt;}
.y93{bottom:755.189600pt;}
.ye{bottom:758.201467pt;}
.y3f{bottom:760.626267pt;}
.y101{bottom:762.499867pt;}
.y6f{bottom:765.166533pt;}
.yd{bottom:770.201467pt;}
.ycf{bottom:770.756400pt;}
.y3e{bottom:772.854267pt;}
.y100{bottom:773.166533pt;}
.y132{bottom:778.499867pt;}
.y6e{bottom:781.166533pt;}
.yff{bottom:783.833200pt;}
.yc{bottom:785.561467pt;}
.y131{bottom:789.166533pt;}
.ycd{bottom:790.392000pt;}
.y3d{bottom:791.582133pt;}
.yfe{bottom:794.499867pt;}
.y6d{bottom:797.166533pt;}
.y130{bottom:799.833200pt;}
.y3c{bottom:803.582133pt;}
.ya{bottom:804.320133pt;}
.yb{bottom:809.600133pt;}
.ycc{bottom:810.027600pt;}
.yfd{bottom:810.499867pt;}
.y6c{bottom:813.166533pt;}
.y3b{bottom:815.582133pt;}
.yfc{bottom:821.166533pt;}
.y8{bottom:824.320133pt;}
.y12f{bottom:826.499867pt;}
.y3a{bottom:827.582133pt;}
.y6b{bottom:829.166533pt;}
.y9{bottom:829.600133pt;}
.ycb{bottom:829.663200pt;}
.yfb{bottom:831.833200pt;}
.y12e{bottom:837.166533pt;}
.y39{bottom:839.810267pt;}
.y6{bottom:844.320133pt;}
.y6a{bottom:845.166533pt;}
.yfa{bottom:847.833200pt;}
.yca{bottom:849.298933pt;}
.y7{bottom:849.600133pt;}
.yf9{bottom:858.499867pt;}
.y38{bottom:858.538267pt;}
.y69{bottom:861.166533pt;}
.y12d{bottom:863.833200pt;}
.y4{bottom:864.320133pt;}
.yc9{bottom:868.934533pt;}
.yf8{bottom:869.166533pt;}
.y5{bottom:869.600133pt;}
.y37{bottom:870.538267pt;}
.y12c{bottom:874.499867pt;}
.y68{bottom:877.166533pt;}
.yc3{bottom:878.752400pt;}
.yf7{bottom:879.833200pt;}
.y36{bottom:882.766133pt;}
.y12b{bottom:885.166533pt;}
.yc8{bottom:888.570133pt;}
.y67{bottom:893.166533pt;}
.yf6{bottom:895.833200pt;}
.y12a{bottom:901.166533pt;}
.y35{bottom:901.494267pt;}
.y3{bottom:901.777467pt;}
.yf5{bottom:906.499867pt;}
.yc7{bottom:908.205867pt;}
.y66{bottom:909.166533pt;}
.y129{bottom:911.833200pt;}
.yf4{bottom:917.166533pt;}
.y128{bottom:922.499867pt;}
.y65{bottom:925.166533pt;}
.yc6{bottom:927.841333pt;}
.yf3{bottom:933.166533pt;}
.y2{bottom:935.110800pt;}
.y127{bottom:938.499867pt;}
.y64{bottom:941.166533pt;}
.yf2{bottom:943.833200pt;}
.yc5{bottom:947.477067pt;}
.y126{bottom:949.166533pt;}
.y63{bottom:957.166533pt;}
.yf1{bottom:959.833200pt;}
.yc4{bottom:967.112667pt;}
.yf0{bottom:970.499867pt;}
.y62{bottom:973.166533pt;}
.yef{bottom:981.166533pt;}
.yc2{bottom:986.748267pt;}
.y61{bottom:989.166533pt;}
.y60{bottom:1005.166533pt;}
.yc1{bottom:1011.673467pt;}
.y5e{bottom:1044.714133pt;}
.y5d{bottom:1056.714133pt;}
.y5f{bottom:1068.686267pt;}
.y5c{bottom:1068.714133pt;}
.h6{height:16.343787pt;}
.ha{height:21.178667pt;}
.h5{height:25.752320pt;}
.he{height:26.954667pt;}
.h8{height:27.701333pt;}
.h2{height:27.776000pt;}
.h13{height:28.114667pt;}
.h7{height:29.783787pt;}
.h11{height:30.277333pt;}
.h14{height:30.707200pt;}
.hb{height:30.805333pt;}
.h12{height:31.744000pt;}
.h9{height:35.616000pt;}
.h10{height:35.712000pt;}
.hd{height:38.928000pt;}
.h4{height:43.648000pt;}
.hf{height:47.616000pt;}
.hc{height:53.568000pt;}
.h15{height:69.548267pt;}
.h3{height:83.328000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.141733pt;}
.xf{left:73.349333pt;}
.x10{left:85.025733pt;}
.x1a{left:205.017067pt;}
.x15{left:215.579733pt;}
.x18{left:242.029067pt;}
.x17{left:247.368000pt;}
.x13{left:250.080800pt;}
.x16{left:252.697200pt;}
.x2{left:295.559067pt;}
.x14{left:302.552133pt;}
.xe{left:314.456400pt;}
.x1b{left:337.300533pt;}
.x6{left:377.393333pt;}
.xa{left:396.532800pt;}
.x11{left:406.285867pt;}
.x1c{left:414.299200pt;}
.x12{left:425.183200pt;}
.x3{left:444.346400pt;}
.x7{left:453.148533pt;}
.x19{left:485.537200pt;}
.xb{left:509.520400pt;}
.x8{left:540.856667pt;}
.x4{left:587.229867pt;}
.xd{left:619.376133pt;}
.xc{left:623.348000pt;}
.x9{left:664.292267pt;}
.x5{left:700.311067pt;}
}




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