
    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_a8f9423c47cefa7f51d5017b.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_da016943e116b72363c3b33b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.916000;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_5640435b67587d2b8fb01e44.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dfec31e798d5f8b5fa991145.woff')format("woff");}.ff4{font-family:ff4;line-height:0.925000;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_7cc43f80ad1b12bedc292afa.woff')format("woff");}.ff5{font-family:ff5;line-height:0.951000;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_3eb99759acd7211ea872e431.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970000;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_c3ba2cbc0157dac38a860016.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973000;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;}
.m1b{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);}
.m2b{transform:matrix(0.243219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243219,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.243322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243322,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243425,0.000000,0.000000,0.250000,0,0);}
.m68{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);}
.m65{transform:matrix(0.243628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243628,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243636,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.243672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243672,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.243717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243717,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.243797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243797,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.243844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243844,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.243892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243892,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.243953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243953,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.244194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244194,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.244244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244244,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.244342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244342,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.244369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244369,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.244439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244439,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.244661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244661,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244681,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244706,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.244714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244714,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.244831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244831,0.000000,0.000000,0.250000,0,0);}
.m72{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);}
.m27{transform:matrix(0.244878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244878,0.000000,0.000000,0.250000,0,0);}
.m76{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);}
.m4a{transform:matrix(0.245019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245019,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245028,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.245186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245186,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.245197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245197,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.245267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245267,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245394,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.245611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245611,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245619,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.245633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245633,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.245693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245693,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.245696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245696,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245728,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245806,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.245829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245829,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.245844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245844,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.246122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246122,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246125,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246269,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.246332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246332,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246336,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246386,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246464,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246492,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.246636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246636,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.246757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246757,0.000000,0.000000,0.250000,0,0);}
.m4b{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);}
.m75{transform:matrix(0.246782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246782,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246828,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246856,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.246961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246961,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247031,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247064,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247106,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247122,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247267,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247332,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247336,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.247389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247389,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247497,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m73{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);}
.m5d{transform:matrix(0.247556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247556,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247672,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247897,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247983,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m7e{transform:matrix(0.248179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248179,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248292,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248411,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248579,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248604,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248842,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248871,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248881,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249161,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249436,0.000000,0.000000,0.250000,0,0);}
.m84{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);}
.m8a{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);}
.m7c{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249592,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249792,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249889,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);}
.m39{transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250222,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250368,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250379,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250793,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250822,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);}
.m90{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);}
.m22{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251229,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251647,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251669,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251683,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251753,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251867,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252008,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252017,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252139,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252264,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252342,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252389,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m9c{transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252825,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.252954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252954,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.253221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253221,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.253396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253396,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253561,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.254429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254429,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.254596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254596,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.254996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254996,0.000000,0.000000,0.250000,0,0);}
.m74{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);}
.m8{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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-5.616000px;}
.ls2b{letter-spacing:-3.996000px;}
.ls32{letter-spacing:-3.402000px;}
.ls36{letter-spacing:-1.638000px;}
.ls1e{letter-spacing:-1.350000px;}
.ls3{letter-spacing:-1.260000px;}
.ls10{letter-spacing:-1.242000px;}
.lsb{letter-spacing:-1.080000px;}
.ls37{letter-spacing:-1.008000px;}
.lsf{letter-spacing:-0.972000px;}
.ls38{letter-spacing:-0.924000px;}
.ls11{letter-spacing:-0.918000px;}
.ls1c{letter-spacing:-0.810000px;}
.ls13{letter-spacing:-0.756000px;}
.ls3e{letter-spacing:-0.714000px;}
.ls1f{letter-spacing:-0.702000px;}
.ls3a{letter-spacing:-0.672000px;}
.ls1d{letter-spacing:-0.648000px;}
.ls7{letter-spacing:-0.546000px;}
.ls12{letter-spacing:-0.540000px;}
.ls39{letter-spacing:-0.504000px;}
.ls1b{letter-spacing:-0.486000px;}
.lsc{letter-spacing:-0.420000px;}
.ls3c{letter-spacing:-0.378000px;}
.ls5{letter-spacing:-0.330000px;}
.ls34{letter-spacing:-0.294000px;}
.ls4{letter-spacing:-0.270000px;}
.ls3d{letter-spacing:-0.210000px;}
.ls35{letter-spacing:-0.168000px;}
.ls31{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.099000px;}
.ls1{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.162000px;}
.ls0{letter-spacing:0.297000px;}
.ls2f{letter-spacing:0.324000px;}
.ls40{letter-spacing:0.336000px;}
.ls3b{letter-spacing:0.420000px;}
.lsa{letter-spacing:0.502000px;}
.ls21{letter-spacing:0.540000px;}
.ls22{letter-spacing:0.540121px;}
.ls2a{letter-spacing:0.648000px;}
.ls2c{letter-spacing:0.810000px;}
.ls33{letter-spacing:0.840000px;}
.ls2e{letter-spacing:0.864000px;}
.ls16{letter-spacing:0.933389px;}
.ls8{letter-spacing:0.952669px;}
.ls3f{letter-spacing:1.050000px;}
.ls2d{letter-spacing:1.134000px;}
.ls23{letter-spacing:1.154727px;}
.ls18{letter-spacing:1.179314px;}
.ls19{letter-spacing:1.179908px;}
.ls14{letter-spacing:1.286266px;}
.ls28{letter-spacing:1.349655px;}
.ls26{letter-spacing:1.349697px;}
.ls25{letter-spacing:1.350000px;}
.ls24{letter-spacing:1.747242px;}
.ls2{letter-spacing:2.100000px;}
.ls1a{letter-spacing:2.228631px;}
.ls29{letter-spacing:2.551883px;}
.ls27{letter-spacing:2.561804px;}
.lse{letter-spacing:4.476997px;}
.ls9{letter-spacing:5.371828px;}
.lsd{letter-spacing:6.616629px;}
.ls17{letter-spacing:14.010568px;}
.ls15{letter-spacing:16.123462px;}
.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;}
}
.ws4{word-spacing:-20.817000px;}
.wsa{word-spacing:-14.190000px;}
.wsc1{word-spacing:-12.798000px;}
.ws2e{word-spacing:-12.258000px;}
.ws5{word-spacing:-11.988000px;}
.ws7b{word-spacing:-11.718000px;}
.ws7c{word-spacing:-11.556000px;}
.ws30{word-spacing:-11.178000px;}
.ws32{word-spacing:-10.962000px;}
.ws2{word-spacing:-10.794000px;}
.ws13e{word-spacing:-10.374000px;}
.ws2b{word-spacing:-10.248000px;}
.ws31{word-spacing:-9.786000px;}
.wsec{word-spacing:-9.618000px;}
.wsea{word-spacing:-9.534000px;}
.wse6{word-spacing:-9.450000px;}
.wse5{word-spacing:-9.324000px;}
.wse8{word-spacing:-9.198000px;}
.wseb{word-spacing:-8.946000px;}
.wse9{word-spacing:-8.694000px;}
.ws8{word-spacing:-8.316000px;}
.ws3{word-spacing:-8.019000px;}
.wse7{word-spacing:-7.980000px;}
.ws7{word-spacing:-7.920000px;}
.ws6{word-spacing:-7.689000px;}
.wsb{word-spacing:-6.480000px;}
.wse{word-spacing:-4.212000px;}
.ws4d{word-spacing:-3.888000px;}
.ws4e{word-spacing:-3.618000px;}
.wsfd{word-spacing:-2.646000px;}
.ws9b{word-spacing:-1.566000px;}
.ws71{word-spacing:-1.512000px;}
.wsa2{word-spacing:-1.458000px;}
.wsa1{word-spacing:-1.404000px;}
.wsfe{word-spacing:-1.386000px;}
.ws24{word-spacing:-1.242000px;}
.ws2f{word-spacing:-1.188000px;}
.wsef{word-spacing:-1.176000px;}
.ws9d{word-spacing:-1.080000px;}
.ws33{word-spacing:-1.050000px;}
.ws47{word-spacing:-1.026000px;}
.wsee{word-spacing:-0.966000px;}
.ws49{word-spacing:-0.918000px;}
.wsf5{word-spacing:-0.882000px;}
.wsa8{word-spacing:-0.864000px;}
.wsf4{word-spacing:-0.840000px;}
.wsda{word-spacing:-0.810000px;}
.ws119{word-spacing:-0.798000px;}
.wsbc{word-spacing:-0.756000px;}
.ws10a{word-spacing:-0.714000px;}
.wsd2{word-spacing:-0.702000px;}
.ws14c{word-spacing:-0.672000px;}
.ws43{word-spacing:-0.648000px;}
.ws140{word-spacing:-0.630000px;}
.ws6d{word-spacing:-0.594000px;}
.ws136{word-spacing:-0.588000px;}
.ws10b{word-spacing:-0.546000px;}
.ws7d{word-spacing:-0.540000px;}
.wse2{word-spacing:-0.486000px;}
.ws10c{word-spacing:-0.462000px;}
.wsbd{word-spacing:-0.432000px;}
.wsd0{word-spacing:-0.378000px;}
.ws6e{word-spacing:-0.324000px;}
.ws38{word-spacing:-0.270000px;}
.ws15c{word-spacing:-0.252000px;}
.ws94{word-spacing:-0.216000px;}
.ws115{word-spacing:-0.210000px;}
.ws3c{word-spacing:-0.162000px;}
.ws111{word-spacing:-0.126000px;}
.wsdf{word-spacing:-0.108000px;}
.wsa3{word-spacing:-0.054000px;}
.ws114{word-spacing:-0.042000px;}
.ws9{word-spacing:0.000000px;}
.ws9e{word-spacing:0.108000px;}
.wsf3{word-spacing:0.168000px;}
.ws131{word-spacing:0.210000px;}
.ws29{word-spacing:0.270000px;}
.ws25{word-spacing:0.324000px;}
.ws54{word-spacing:0.330000px;}
.ws11e{word-spacing:0.336000px;}
.wscb{word-spacing:0.378000px;}
.ws55{word-spacing:0.420000px;}
.ws3a{word-spacing:0.432000px;}
.wsf0{word-spacing:0.462000px;}
.wscf{word-spacing:0.486000px;}
.ws6c{word-spacing:0.540000px;}
.ws12f{word-spacing:0.588000px;}
.wsc8{word-spacing:0.594000px;}
.ws118{word-spacing:0.630000px;}
.ws1e{word-spacing:0.648000px;}
.ws12e{word-spacing:0.672000px;}
.wsae{word-spacing:0.702000px;}
.ws132{word-spacing:0.714000px;}
.ws45{word-spacing:0.756000px;}
.wsf6{word-spacing:0.798000px;}
.ws34{word-spacing:0.810000px;}
.ws4f{word-spacing:0.864000px;}
.ws106{word-spacing:0.882000px;}
.ws21{word-spacing:0.918000px;}
.wsf2{word-spacing:0.924000px;}
.wsfb{word-spacing:0.966000px;}
.ws70{word-spacing:0.972000px;}
.wsf9{word-spacing:1.008000px;}
.ws97{word-spacing:1.026000px;}
.ws139{word-spacing:1.050000px;}
.ws3e{word-spacing:1.080000px;}
.ws112{word-spacing:1.092000px;}
.ws15{word-spacing:1.134000px;}
.ws26{word-spacing:1.188000px;}
.ws15d{word-spacing:1.218000px;}
.ws27{word-spacing:1.242000px;}
.ws144{word-spacing:1.260000px;}
.wsa9{word-spacing:1.296000px;}
.wsa0{word-spacing:1.350000px;}
.ws10d{word-spacing:1.386000px;}
.ws77{word-spacing:1.404000px;}
.ws87{word-spacing:1.458000px;}
.ws6f{word-spacing:1.512000px;}
.ws3f{word-spacing:1.566000px;}
.ws117{word-spacing:1.596000px;}
.ws14f{word-spacing:1.638000px;}
.ws98{word-spacing:1.674000px;}
.ws13f{word-spacing:1.722000px;}
.ws78{word-spacing:1.728000px;}
.ws91{word-spacing:1.782000px;}
.ws90{word-spacing:1.836000px;}
.ws15b{word-spacing:1.848000px;}
.ws8e{word-spacing:1.890000px;}
.ws16{word-spacing:1.944000px;}
.ws121{word-spacing:1.974000px;}
.ws72{word-spacing:1.998000px;}
.wsed{word-spacing:2.016000px;}
.ws14a{word-spacing:2.310000px;}
.ws125{word-spacing:2.352000px;}
.ws126{word-spacing:2.394000px;}
.wsd9{word-spacing:2.430000px;}
.ws116{word-spacing:2.478000px;}
.ws13{word-spacing:2.484000px;}
.ws12{word-spacing:2.538000px;}
.wsd4{word-spacing:2.646000px;}
.ws14b{word-spacing:2.730000px;}
.wse0{word-spacing:2.754000px;}
.ws12a{word-spacing:2.772000px;}
.wsfc{word-spacing:2.814000px;}
.ws127{word-spacing:2.898000px;}
.ws28{word-spacing:2.916000px;}
.ws130{word-spacing:2.982000px;}
.wsc5{word-spacing:3.024000px;}
.ws73{word-spacing:3.078000px;}
.wsfa{word-spacing:3.108000px;}
.ws37{word-spacing:3.132000px;}
.wsd5{word-spacing:3.186000px;}
.ws4a{word-spacing:3.294000px;}
.ws85{word-spacing:3.348000px;}
.ws86{word-spacing:3.402000px;}
.ws3b{word-spacing:3.456000px;}
.wsa5{word-spacing:3.510000px;}
.ws74{word-spacing:3.564000px;}
.ws12c{word-spacing:3.612000px;}
.wsdb{word-spacing:3.618000px;}
.ws14e{word-spacing:3.696000px;}
.ws12d{word-spacing:3.738000px;}
.wsf1{word-spacing:3.822000px;}
.wsd6{word-spacing:3.942000px;}
.ws52{word-spacing:3.996000px;}
.wsb3{word-spacing:4.104000px;}
.ws133{word-spacing:4.158000px;}
.ws109{word-spacing:4.200000px;}
.wsbb{word-spacing:4.212000px;}
.ws3d{word-spacing:4.266000px;}
.wsf{word-spacing:4.320000px;}
.ws8c{word-spacing:4.428000px;}
.ws8d{word-spacing:4.482000px;}
.wsca{word-spacing:4.536000px;}
.ws4c{word-spacing:4.590000px;}
.wsb5{word-spacing:4.698000px;}
.ws60{word-spacing:4.752000px;}
.ws150{word-spacing:4.830000px;}
.ws8f{word-spacing:4.860000px;}
.ws102{word-spacing:4.872000px;}
.ws107{word-spacing:4.956000px;}
.ws9f{word-spacing:5.130000px;}
.wsd8{word-spacing:5.184000px;}
.ws141{word-spacing:5.250000px;}
.ws75{word-spacing:5.292000px;}
.ws101{word-spacing:5.334000px;}
.ws1c{word-spacing:5.346000px;}
.wsff{word-spacing:5.376000px;}
.ws50{word-spacing:5.400000px;}
.ws108{word-spacing:5.418000px;}
.wsc2{word-spacing:5.454000px;}
.ws100{word-spacing:5.460000px;}
.ws159{word-spacing:5.502000px;}
.ws15a{word-spacing:5.544000px;}
.ws9c{word-spacing:5.562000px;}
.ws12b{word-spacing:5.586000px;}
.wsaa{word-spacing:5.616000px;}
.ws19{word-spacing:5.778000px;}
.ws1b{word-spacing:5.832000px;}
.wsdc{word-spacing:5.886000px;}
.ws23{word-spacing:5.940000px;}
.ws22{word-spacing:5.994000px;}
.ws40{word-spacing:6.048000px;}
.wsab{word-spacing:6.102000px;}
.ws145{word-spacing:6.132000px;}
.wsce{word-spacing:6.156000px;}
.ws148{word-spacing:6.174000px;}
.ws67{word-spacing:6.318000px;}
.ws59{word-spacing:6.426000px;}
.ws122{word-spacing:6.468000px;}
.ws42{word-spacing:6.480000px;}
.ws123{word-spacing:6.510000px;}
.ws76{word-spacing:6.588000px;}
.wsd3{word-spacing:6.642000px;}
.ws5a{word-spacing:6.696000px;}
.ws5f{word-spacing:6.804000px;}
.ws137{word-spacing:6.846000px;}
.ws5e{word-spacing:6.858000px;}
.ws5b{word-spacing:6.912000px;}
.wsc4{word-spacing:7.128000px;}
.wscd{word-spacing:7.182000px;}
.ws138{word-spacing:7.392000px;}
.ws41{word-spacing:7.398000px;}
.ws58{word-spacing:7.452000px;}
.ws157{word-spacing:7.476000px;}
.ws134{word-spacing:7.518000px;}
.ws8b{word-spacing:7.560000px;}
.ws13a{word-spacing:7.644000px;}
.ws13b{word-spacing:7.686000px;}
.ws11{word-spacing:7.722000px;}
.ws81{word-spacing:7.884000px;}
.ws61{word-spacing:7.938000px;}
.ws9a{word-spacing:8.046000px;}
.ws99{word-spacing:8.100000px;}
.ws124{word-spacing:8.106000px;}
.ws17{word-spacing:8.262000px;}
.ws18{word-spacing:8.316000px;}
.ws7e{word-spacing:8.370000px;}
.ws7f{word-spacing:8.424000px;}
.wsad{word-spacing:8.478000px;}
.ws156{word-spacing:8.526000px;}
.ws1a{word-spacing:8.532000px;}
.wsf7{word-spacing:8.988000px;}
.wsf8{word-spacing:9.072000px;}
.ws146{word-spacing:9.156000px;}
.ws14d{word-spacing:9.408000px;}
.wsc3{word-spacing:9.504000px;}
.ws65{word-spacing:9.612000px;}
.wsc7{word-spacing:9.666000px;}
.ws2a{word-spacing:9.702000px;}
.ws83{word-spacing:9.720000px;}
.ws110{word-spacing:9.744000px;}
.ws84{word-spacing:9.774000px;}
.ws92{word-spacing:9.936000px;}
.ws93{word-spacing:9.990000px;}
.wsc{word-spacing:10.098000px;}
.ws154{word-spacing:10.206000px;}
.ws69{word-spacing:10.314000px;}
.ws6a{word-spacing:10.422000px;}
.ws142{word-spacing:10.458000px;}
.ws64{word-spacing:10.476000px;}
.ws143{word-spacing:10.542000px;}
.ws63{word-spacing:10.584000px;}
.wsc9{word-spacing:10.638000px;}
.ws155{word-spacing:10.710000px;}
.ws39{word-spacing:10.800000px;}
.ws158{word-spacing:10.836000px;}
.wsde{word-spacing:10.854000px;}
.ws20{word-spacing:10.962000px;}
.ws1f{word-spacing:11.070000px;}
.ws113{word-spacing:11.088000px;}
.ws8a{word-spacing:11.124000px;}
.ws89{word-spacing:11.232000px;}
.ws6b{word-spacing:11.286000px;}
.wse1{word-spacing:11.502000px;}
.ws1d{word-spacing:11.556000px;}
.ws88{word-spacing:11.772000px;}
.ws68{word-spacing:11.826000px;}
.ws35{word-spacing:11.934000px;}
.wsb0{word-spacing:12.366000px;}
.wsb6{word-spacing:12.420000px;}
.wsaf{word-spacing:12.474000px;}
.ws11f{word-spacing:12.894000px;}
.ws48{word-spacing:13.068000px;}
.wsd{word-spacing:13.176000px;}
.ws120{word-spacing:13.188000px;}
.ws147{word-spacing:13.314000px;}
.ws103{word-spacing:13.650000px;}
.ws14{word-spacing:13.716000px;}
.wsb4{word-spacing:13.878000px;}
.ws152{word-spacing:14.028000px;}
.ws80{word-spacing:14.040000px;}
.wsbe{word-spacing:14.202000px;}
.wsb1{word-spacing:14.310000px;}
.ws36{word-spacing:14.364000px;}
.ws15e{word-spacing:14.868000px;}
.ws151{word-spacing:14.910000px;}
.ws15f{word-spacing:14.994000px;}
.ws135{word-spacing:15.162000px;}
.wsba{word-spacing:15.174000px;}
.ws10e{word-spacing:15.204000px;}
.wsb2{word-spacing:15.228000px;}
.wsb8{word-spacing:15.282000px;}
.ws10f{word-spacing:15.330000px;}
.wsb9{word-spacing:15.660000px;}
.ws46{word-spacing:15.930000px;}
.wsdd{word-spacing:16.038000px;}
.ws10{word-spacing:16.362000px;}
.wsa6{word-spacing:16.416000px;}
.ws82{word-spacing:16.686000px;}
.wsa7{word-spacing:16.902000px;}
.wsc6{word-spacing:17.010000px;}
.ws104{word-spacing:17.136000px;}
.ws105{word-spacing:17.262000px;}
.wsac{word-spacing:18.576000px;}
.ws5d{word-spacing:19.008000px;}
.ws62{word-spacing:20.088000px;}
.ws4b{word-spacing:20.196000px;}
.wsb7{word-spacing:20.736000px;}
.ws96{word-spacing:21.114000px;}
.ws44{word-spacing:21.276000px;}
.ws95{word-spacing:21.330000px;}
.ws53{word-spacing:21.492000px;}
.ws128{word-spacing:22.092000px;}
.ws129{word-spacing:22.722000px;}
.wsd7{word-spacing:23.382000px;}
.ws149{word-spacing:24.318000px;}
.wsd1{word-spacing:24.840000px;}
.wsa4{word-spacing:25.272000px;}
.ws5c{word-spacing:26.244000px;}
.ws66{word-spacing:26.514000px;}
.ws51{word-spacing:28.458000px;}
.ws11c{word-spacing:29.232000px;}
.ws11d{word-spacing:29.484000px;}
.ws153{word-spacing:29.904000px;}
.wscc{word-spacing:30.510000px;}
.ws11b{word-spacing:61.026000px;}
.ws11a{word-spacing:61.572000px;}
.ws79{word-spacing:963.842400px;}
.wse3{word-spacing:963.989400px;}
.ws2c{word-spacing:964.556400px;}
.ws56{word-spacing:964.661400px;}
.wsbf{word-spacing:964.745400px;}
.ws13c{word-spacing:965.459400px;}
.ws0{word-spacing:966.299400px;}
.ws7a{word-spacing:1168.340400px;}
.wse4{word-spacing:1168.487400px;}
.ws2d{word-spacing:1169.054400px;}
.ws57{word-spacing:1169.159400px;}
.wsc0{word-spacing:1169.243400px;}
.ws13d{word-spacing:1169.957400px;}
.ws1{word-spacing:1170.797400px;}
._f{margin-left:-7.932606px;}
._12{margin-left:-6.762000px;}
._3{margin-left:-5.742000px;}
._2{margin-left:-4.626600px;}
._4{margin-left:-2.646000px;}
._0{margin-left:-1.386000px;}
._5{width:1.209600px;}
._c{width:2.418712px;}
._b{width:4.047520px;}
._9{width:6.339386px;}
._a{width:7.395482px;}
._7{width:9.699000px;}
._6{width:10.959600px;}
._13{width:12.723882px;}
._1{width:13.728000px;}
._e{width:15.365072px;}
._d{width:17.146107px;}
._11{width:21.600600px;}
._10{width:61.553882px;}
._8{width:1954.365600px;}
.fc4{color:rgb(43,43,42);}
.fc3{color:rgb(126,127,127);}
.fc2{color:rgb(27,28,27);}
.fc1{color:rgb(29,181,195);}
.fc0{color:rgb(112,111,112);}
.fs4{font-size:33.000000px;}
.fs0{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs6{font-size:81.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.149650px;}
.y2b{bottom:104.812350px;}
.y79{bottom:107.248500px;}
.yd6{bottom:113.812350px;}
.y78{bottom:120.748500px;}
.y2a{bottom:122.812350px;}
.yd5{bottom:125.812350px;}
.y77{bottom:134.248500px;}
.yfd{bottom:137.812350px;}
.y29{bottom:140.812350px;}
.yd4{bottom:143.812350px;}
.y76{bottom:147.748500px;}
.y8f{bottom:151.552500px;}
.yd3{bottom:155.812350px;}
.y28{bottom:158.812350px;}
.y8e{bottom:165.052500px;}
.yfc{bottom:167.812350px;}
.yd2{bottom:173.812350px;}
.y27{bottom:176.812350px;}
.y8d{bottom:178.552500px;}
.yfb{bottom:179.812350px;}
.yd1{bottom:185.812350px;}
.yfa{bottom:191.812350px;}
.y8c{bottom:192.052500px;}
.y26{bottom:194.812350px;}
.yd0{bottom:197.812350px;}
.y8b{bottom:205.552500px;}
.yf9{bottom:209.812350px;}
.y25{bottom:212.812350px;}
.ycf{bottom:215.812350px;}
.y8a{bottom:219.052500px;}
.yf8{bottom:221.812350px;}
.yce{bottom:227.812350px;}
.y24{bottom:230.812350px;}
.y89{bottom:232.552500px;}
.yf7{bottom:233.812350px;}
.ycd{bottom:245.812350px;}
.y88{bottom:246.052500px;}
.y23{bottom:248.812350px;}
.yf6{bottom:251.812350px;}
.ycc{bottom:257.812350px;}
.yf5{bottom:263.812350px;}
.y22{bottom:266.812350px;}
.ycb{bottom:269.812350px;}
.yf4{bottom:275.812350px;}
.yca{bottom:281.812350px;}
.y87{bottom:284.812350px;}
.yf3{bottom:293.812350px;}
.yc9{bottom:299.812350px;}
.y21{bottom:302.812350px;}
.yf2{bottom:305.812350px;}
.yc8{bottom:311.812350px;}
.yf1{bottom:317.812350px;}
.y86{bottom:320.812350px;}
.yc7{bottom:323.812350px;}
.yf0{bottom:335.812350px;}
.y85{bottom:338.812350px;}
.yc6{bottom:343.312350px;}
.yef{bottom:347.812350px;}
.yc5{bottom:355.312350px;}
.y84{bottom:356.812350px;}
.yee{bottom:359.812350px;}
.yc4{bottom:367.312350px;}
.y83{bottom:374.812350px;}
.yed{bottom:377.812350px;}
.yc3{bottom:379.312350px;}
.yec{bottom:389.812350px;}
.y82{bottom:392.812350px;}
.yc2{bottom:398.812350px;}
.yeb{bottom:401.812350px;}
.y20{bottom:405.543150px;}
.y81{bottom:410.812350px;}
.yea{bottom:419.812350px;}
.y1f{bottom:422.043150px;}
.yc1{bottom:422.812350px;}
.y80{bottom:428.812350px;}
.ye9{bottom:431.812350px;}
.yc0{bottom:442.312350px;}
.y1e{bottom:443.043150px;}
.ye8{bottom:443.812350px;}
.y7f{bottom:446.812350px;}
.ybf{bottom:454.312350px;}
.ye7{bottom:455.812350px;}
.y7e{bottom:464.812350px;}
.ybe{bottom:466.312350px;}
.ye6{bottom:473.812350px;}
.y1d{bottom:480.543150px;}
.y50{bottom:481.553550px;}
.y7d{bottom:482.812350px;}
.ybd{bottom:485.812350px;}
.y4f{bottom:495.053550px;}
.ybc{bottom:497.812350px;}
.y1c{bottom:498.543150px;}
.y7c{bottom:500.812350px;}
.y4e{bottom:508.553550px;}
.ybb{bottom:509.812350px;}
.ye5{bottom:515.812350px;}
.y1b{bottom:516.543150px;}
.y7b{bottom:518.812350px;}
.y4d{bottom:522.053550px;}
.yba{bottom:527.812350px;}
.y1a{bottom:534.543150px;}
.y4c{bottom:535.553550px;}
.y7a{bottom:536.812350px;}
.yb9{bottom:539.812350px;}
.y4b{bottom:549.053550px;}
.yb8{bottom:551.812350px;}
.y19{bottom:552.543150px;}
.y75{bottom:554.812350px;}
.ye4{bottom:557.812350px;}
.y4a{bottom:562.553550px;}
.yb7{bottom:569.812350px;}
.y18{bottom:570.543150px;}
.y74{bottom:572.812350px;}
.y49{bottom:576.053550px;}
.yb6{bottom:581.812350px;}
.y17{bottom:588.543150px;}
.y48{bottom:589.553550px;}
.y73{bottom:590.812350px;}
.yb5{bottom:593.812350px;}
.ye3{bottom:599.812350px;}
.y47{bottom:603.053550px;}
.y16{bottom:606.543150px;}
.y72{bottom:608.812350px;}
.yb4{bottom:611.812350px;}
.y46{bottom:616.553550px;}
.yb3{bottom:623.812350px;}
.y15{bottom:624.543150px;}
.y71{bottom:626.812350px;}
.y45{bottom:630.053550px;}
.yb2{bottom:635.812350px;}
.ye2{bottom:641.812350px;}
.y14{bottom:642.543150px;}
.y44{bottom:643.553400px;}
.y70{bottom:644.812350px;}
.y121{bottom:652.374150px;}
.yb1{bottom:653.812350px;}
.y43{bottom:657.310050px;}
.y13{bottom:660.543150px;}
.y6f{bottom:662.812350px;}
.y120{bottom:664.374150px;}
.yb0{bottom:665.812350px;}
.y12f{bottom:676.374150px;}
.yaf{bottom:677.812350px;}
.y42{bottom:678.379050px;}
.y12{bottom:678.543150px;}
.y6e{bottom:680.812350px;}
.y11f{bottom:682.374150px;}
.yae{bottom:689.812350px;}
.y41{bottom:691.879050px;}
.y11e{bottom:694.374150px;}
.ye1{bottom:695.812350px;}
.y11{bottom:696.543150px;}
.y6d{bottom:698.812350px;}
.y40{bottom:705.379050px;}
.y12e{bottom:706.374150px;}
.yad{bottom:707.812350px;}
.y11d{bottom:712.374150px;}
.y10{bottom:714.543150px;}
.y6c{bottom:716.812350px;}
.y12d{bottom:718.374150px;}
.y3f{bottom:718.879050px;}
.yac{bottom:719.812350px;}
.y11c{bottom:724.374150px;}
.yab{bottom:731.812350px;}
.y3e{bottom:732.379050px;}
.yf{bottom:732.543150px;}
.y6b{bottom:734.812350px;}
.y11b{bottom:736.374150px;}
.yaa{bottom:743.812350px;}
.y3d{bottom:745.879050px;}
.y11a{bottom:748.374150px;}
.ye0{bottom:749.812350px;}
.ye{bottom:750.543150px;}
.y6a{bottom:752.812350px;}
.y3c{bottom:759.635400px;}
.y12c{bottom:760.374150px;}
.ya9{bottom:761.812350px;}
.y119{bottom:766.374150px;}
.yd{bottom:768.543150px;}
.y69{bottom:770.812350px;}
.ya8{bottom:773.812350px;}
.y118{bottom:778.374150px;}
.y3b{bottom:780.704550px;}
.ya7{bottom:785.812350px;}
.yc{bottom:786.543150px;}
.y68{bottom:788.812350px;}
.y117{bottom:790.374150px;}
.ydf{bottom:791.812350px;}
.y3a{bottom:794.204550px;}
.y12b{bottom:802.374150px;}
.ya6{bottom:803.812350px;}
.yb{bottom:804.543150px;}
.y67{bottom:806.812350px;}
.y39{bottom:807.704550px;}
.y116{bottom:808.374150px;}
.ya5{bottom:815.812350px;}
.y115{bottom:820.374150px;}
.ya{bottom:822.543150px;}
.y66{bottom:824.812350px;}
.ya4{bottom:827.812350px;}
.y38{bottom:828.704550px;}
.y114{bottom:832.374150px;}
.yde{bottom:833.812350px;}
.y9{bottom:840.543150px;}
.y37{bottom:842.204550px;}
.y65{bottom:842.812350px;}
.y12a{bottom:844.374150px;}
.ya3{bottom:845.812350px;}
.y113{bottom:850.374150px;}
.y36{bottom:855.704550px;}
.ya2{bottom:857.812350px;}
.y8{bottom:858.543150px;}
.y64{bottom:860.812350px;}
.y112{bottom:862.374150px;}
.ydd{bottom:863.812350px;}
.y35{bottom:869.204550px;}
.ya1{bottom:869.812350px;}
.y111{bottom:874.374150px;}
.ydc{bottom:875.812350px;}
.y63{bottom:878.812350px;}
.y34{bottom:882.961050px;}
.y110{bottom:886.374150px;}
.ya0{bottom:887.812350px;}
.y62{bottom:896.812350px;}
.y129{bottom:898.374150px;}
.y9f{bottom:899.812350px;}
.y7{bottom:902.476650px;}
.y33{bottom:904.029900px;}
.y10f{bottom:904.374150px;}
.y9e{bottom:911.812350px;}
.y61{bottom:914.812350px;}
.y10e{bottom:916.374150px;}
.y32{bottom:917.529900px;}
.ydb{bottom:917.812350px;}
.y6{bottom:927.360150px;}
.y10d{bottom:928.374150px;}
.y9d{bottom:929.812350px;}
.y31{bottom:931.029900px;}
.y60{bottom:932.812350px;}
.y10c{bottom:940.374150px;}
.y9c{bottom:941.812350px;}
.y30{bottom:944.786550px;}
.y128{bottom:946.374150px;}
.y5{bottom:949.860150px;}
.y5f{bottom:950.812350px;}
.y9b{bottom:953.812350px;}
.y10b{bottom:958.374150px;}
.yda{bottom:959.812350px;}
.y9a{bottom:965.812350px;}
.y2f{bottom:965.855550px;}
.y5e{bottom:968.812350px;}
.y10a{bottom:970.374150px;}
.yd9{bottom:971.812350px;}
.y4{bottom:972.360150px;}
.y2e{bottom:979.355550px;}
.y127{bottom:982.374150px;}
.y99{bottom:983.812350px;}
.y5d{bottom:986.812350px;}
.y109{bottom:988.374150px;}
.y2d{bottom:993.111900px;}
.y98{bottom:995.812350px;}
.y108{bottom:1000.374150px;}
.y5c{bottom:1004.812350px;}
.y97{bottom:1007.812350px;}
.y107{bottom:1012.374150px;}
.yd8{bottom:1013.812350px;}
.y2c{bottom:1014.181050px;}
.y3{bottom:1014.499650px;}
.y5b{bottom:1022.812350px;}
.y126{bottom:1024.374150px;}
.y96{bottom:1025.812350px;}
.y106{bottom:1030.374150px;}
.y125{bottom:1036.374150px;}
.y95{bottom:1037.812350px;}
.y5a{bottom:1040.812350px;}
.y105{bottom:1042.374150px;}
.y94{bottom:1049.812350px;}
.y2{bottom:1051.999650px;}
.y104{bottom:1054.374150px;}
.y59{bottom:1058.812350px;}
.y93{bottom:1061.812350px;}
.y124{bottom:1066.374150px;}
.yd7{bottom:1067.812350px;}
.y103{bottom:1072.374150px;}
.y58{bottom:1076.812350px;}
.y123{bottom:1078.374150px;}
.y92{bottom:1079.812350px;}
.y102{bottom:1084.374150px;}
.y91{bottom:1091.812350px;}
.y57{bottom:1094.812350px;}
.y101{bottom:1096.374150px;}
.y90{bottom:1103.812350px;}
.y122{bottom:1108.374150px;}
.y56{bottom:1112.812350px;}
.y100{bottom:1114.374150px;}
.yff{bottom:1126.374150px;}
.y55{bottom:1130.812350px;}
.yfe{bottom:1138.374150px;}
.y53{bottom:1175.303400px;}
.y52{bottom:1188.803400px;}
.y54{bottom:1202.272050px;}
.y51{bottom:1202.303400px;}
.h7{height:24.453000px;}
.hc{height:30.072000px;}
.hb{height:31.122000px;}
.h5{height:31.164000px;}
.h2{height:31.248000px;}
.h8{height:35.568000px;}
.ha{height:38.664000px;}
.h6{height:40.068000px;}
.h4{height:49.104000px;}
.h9{height:60.264000px;}
.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;}
.x4{left:82.518000px;}
.x9{left:93.519450px;}
.x6{left:95.653950px;}
.x2{left:332.503950px;}
.x3{left:353.763450px;}
.x7{left:457.071600px;}
.xb{left:466.071600px;}
.xa{left:476.211600px;}
.x8{left:478.331100px;}
.x5{left:661.241850px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-4.992000pt;}
.ls2b{letter-spacing:-3.552000pt;}
.ls32{letter-spacing:-3.024000pt;}
.ls36{letter-spacing:-1.456000pt;}
.ls1e{letter-spacing:-1.200000pt;}
.ls3{letter-spacing:-1.120000pt;}
.ls10{letter-spacing:-1.104000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls37{letter-spacing:-0.896000pt;}
.lsf{letter-spacing:-0.864000pt;}
.ls38{letter-spacing:-0.821333pt;}
.ls11{letter-spacing:-0.816000pt;}
.ls1c{letter-spacing:-0.720000pt;}
.ls13{letter-spacing:-0.672000pt;}
.ls3e{letter-spacing:-0.634667pt;}
.ls1f{letter-spacing:-0.624000pt;}
.ls3a{letter-spacing:-0.597333pt;}
.ls1d{letter-spacing:-0.576000pt;}
.ls7{letter-spacing:-0.485333pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls39{letter-spacing:-0.448000pt;}
.ls1b{letter-spacing:-0.432000pt;}
.lsc{letter-spacing:-0.373333pt;}
.ls3c{letter-spacing:-0.336000pt;}
.ls5{letter-spacing:-0.293333pt;}
.ls34{letter-spacing:-0.261333pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls3d{letter-spacing:-0.186667pt;}
.ls35{letter-spacing:-0.149333pt;}
.ls31{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.088000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.144000pt;}
.ls0{letter-spacing:0.264000pt;}
.ls2f{letter-spacing:0.288000pt;}
.ls40{letter-spacing:0.298667pt;}
.ls3b{letter-spacing:0.373333pt;}
.lsa{letter-spacing:0.446222pt;}
.ls21{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.480108pt;}
.ls2a{letter-spacing:0.576000pt;}
.ls2c{letter-spacing:0.720000pt;}
.ls33{letter-spacing:0.746667pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls16{letter-spacing:0.829680pt;}
.ls8{letter-spacing:0.846817pt;}
.ls3f{letter-spacing:0.933333pt;}
.ls2d{letter-spacing:1.008000pt;}
.ls23{letter-spacing:1.026424pt;}
.ls18{letter-spacing:1.048279pt;}
.ls19{letter-spacing:1.048808pt;}
.ls14{letter-spacing:1.143348pt;}
.ls28{letter-spacing:1.199694pt;}
.ls26{letter-spacing:1.199731pt;}
.ls25{letter-spacing:1.200000pt;}
.ls24{letter-spacing:1.553104pt;}
.ls2{letter-spacing:1.866667pt;}
.ls1a{letter-spacing:1.981005pt;}
.ls29{letter-spacing:2.268341pt;}
.ls27{letter-spacing:2.277159pt;}
.lse{letter-spacing:3.979553pt;}
.ls9{letter-spacing:4.774958pt;}
.lsd{letter-spacing:5.881448pt;}
.ls17{letter-spacing:12.453838pt;}
.ls15{letter-spacing:14.331966pt;}
.ws4{word-spacing:-18.504000pt;}
.wsa{word-spacing:-12.613333pt;}
.wsc1{word-spacing:-11.376000pt;}
.ws2e{word-spacing:-10.896000pt;}
.ws5{word-spacing:-10.656000pt;}
.ws7b{word-spacing:-10.416000pt;}
.ws7c{word-spacing:-10.272000pt;}
.ws30{word-spacing:-9.936000pt;}
.ws32{word-spacing:-9.744000pt;}
.ws2{word-spacing:-9.594667pt;}
.ws13e{word-spacing:-9.221333pt;}
.ws2b{word-spacing:-9.109333pt;}
.ws31{word-spacing:-8.698667pt;}
.wsec{word-spacing:-8.549333pt;}
.wsea{word-spacing:-8.474667pt;}
.wse6{word-spacing:-8.400000pt;}
.wse5{word-spacing:-8.288000pt;}
.wse8{word-spacing:-8.176000pt;}
.wseb{word-spacing:-7.952000pt;}
.wse9{word-spacing:-7.728000pt;}
.ws8{word-spacing:-7.392000pt;}
.ws3{word-spacing:-7.128000pt;}
.wse7{word-spacing:-7.093333pt;}
.ws7{word-spacing:-7.040000pt;}
.ws6{word-spacing:-6.834667pt;}
.wsb{word-spacing:-5.760000pt;}
.wse{word-spacing:-3.744000pt;}
.ws4d{word-spacing:-3.456000pt;}
.ws4e{word-spacing:-3.216000pt;}
.wsfd{word-spacing:-2.352000pt;}
.ws9b{word-spacing:-1.392000pt;}
.ws71{word-spacing:-1.344000pt;}
.wsa2{word-spacing:-1.296000pt;}
.wsa1{word-spacing:-1.248000pt;}
.wsfe{word-spacing:-1.232000pt;}
.ws24{word-spacing:-1.104000pt;}
.ws2f{word-spacing:-1.056000pt;}
.wsef{word-spacing:-1.045333pt;}
.ws9d{word-spacing:-0.960000pt;}
.ws33{word-spacing:-0.933333pt;}
.ws47{word-spacing:-0.912000pt;}
.wsee{word-spacing:-0.858667pt;}
.ws49{word-spacing:-0.816000pt;}
.wsf5{word-spacing:-0.784000pt;}
.wsa8{word-spacing:-0.768000pt;}
.wsf4{word-spacing:-0.746667pt;}
.wsda{word-spacing:-0.720000pt;}
.ws119{word-spacing:-0.709333pt;}
.wsbc{word-spacing:-0.672000pt;}
.ws10a{word-spacing:-0.634667pt;}
.wsd2{word-spacing:-0.624000pt;}
.ws14c{word-spacing:-0.597333pt;}
.ws43{word-spacing:-0.576000pt;}
.ws140{word-spacing:-0.560000pt;}
.ws6d{word-spacing:-0.528000pt;}
.ws136{word-spacing:-0.522667pt;}
.ws10b{word-spacing:-0.485333pt;}
.ws7d{word-spacing:-0.480000pt;}
.wse2{word-spacing:-0.432000pt;}
.ws10c{word-spacing:-0.410667pt;}
.wsbd{word-spacing:-0.384000pt;}
.wsd0{word-spacing:-0.336000pt;}
.ws6e{word-spacing:-0.288000pt;}
.ws38{word-spacing:-0.240000pt;}
.ws15c{word-spacing:-0.224000pt;}
.ws94{word-spacing:-0.192000pt;}
.ws115{word-spacing:-0.186667pt;}
.ws3c{word-spacing:-0.144000pt;}
.ws111{word-spacing:-0.112000pt;}
.wsdf{word-spacing:-0.096000pt;}
.wsa3{word-spacing:-0.048000pt;}
.ws114{word-spacing:-0.037333pt;}
.ws9{word-spacing:0.000000pt;}
.ws9e{word-spacing:0.096000pt;}
.wsf3{word-spacing:0.149333pt;}
.ws131{word-spacing:0.186667pt;}
.ws29{word-spacing:0.240000pt;}
.ws25{word-spacing:0.288000pt;}
.ws54{word-spacing:0.293333pt;}
.ws11e{word-spacing:0.298667pt;}
.wscb{word-spacing:0.336000pt;}
.ws55{word-spacing:0.373333pt;}
.ws3a{word-spacing:0.384000pt;}
.wsf0{word-spacing:0.410667pt;}
.wscf{word-spacing:0.432000pt;}
.ws6c{word-spacing:0.480000pt;}
.ws12f{word-spacing:0.522667pt;}
.wsc8{word-spacing:0.528000pt;}
.ws118{word-spacing:0.560000pt;}
.ws1e{word-spacing:0.576000pt;}
.ws12e{word-spacing:0.597333pt;}
.wsae{word-spacing:0.624000pt;}
.ws132{word-spacing:0.634667pt;}
.ws45{word-spacing:0.672000pt;}
.wsf6{word-spacing:0.709333pt;}
.ws34{word-spacing:0.720000pt;}
.ws4f{word-spacing:0.768000pt;}
.ws106{word-spacing:0.784000pt;}
.ws21{word-spacing:0.816000pt;}
.wsf2{word-spacing:0.821333pt;}
.wsfb{word-spacing:0.858667pt;}
.ws70{word-spacing:0.864000pt;}
.wsf9{word-spacing:0.896000pt;}
.ws97{word-spacing:0.912000pt;}
.ws139{word-spacing:0.933333pt;}
.ws3e{word-spacing:0.960000pt;}
.ws112{word-spacing:0.970667pt;}
.ws15{word-spacing:1.008000pt;}
.ws26{word-spacing:1.056000pt;}
.ws15d{word-spacing:1.082667pt;}
.ws27{word-spacing:1.104000pt;}
.ws144{word-spacing:1.120000pt;}
.wsa9{word-spacing:1.152000pt;}
.wsa0{word-spacing:1.200000pt;}
.ws10d{word-spacing:1.232000pt;}
.ws77{word-spacing:1.248000pt;}
.ws87{word-spacing:1.296000pt;}
.ws6f{word-spacing:1.344000pt;}
.ws3f{word-spacing:1.392000pt;}
.ws117{word-spacing:1.418667pt;}
.ws14f{word-spacing:1.456000pt;}
.ws98{word-spacing:1.488000pt;}
.ws13f{word-spacing:1.530667pt;}
.ws78{word-spacing:1.536000pt;}
.ws91{word-spacing:1.584000pt;}
.ws90{word-spacing:1.632000pt;}
.ws15b{word-spacing:1.642667pt;}
.ws8e{word-spacing:1.680000pt;}
.ws16{word-spacing:1.728000pt;}
.ws121{word-spacing:1.754667pt;}
.ws72{word-spacing:1.776000pt;}
.wsed{word-spacing:1.792000pt;}
.ws14a{word-spacing:2.053333pt;}
.ws125{word-spacing:2.090667pt;}
.ws126{word-spacing:2.128000pt;}
.wsd9{word-spacing:2.160000pt;}
.ws116{word-spacing:2.202667pt;}
.ws13{word-spacing:2.208000pt;}
.ws12{word-spacing:2.256000pt;}
.wsd4{word-spacing:2.352000pt;}
.ws14b{word-spacing:2.426667pt;}
.wse0{word-spacing:2.448000pt;}
.ws12a{word-spacing:2.464000pt;}
.wsfc{word-spacing:2.501333pt;}
.ws127{word-spacing:2.576000pt;}
.ws28{word-spacing:2.592000pt;}
.ws130{word-spacing:2.650667pt;}
.wsc5{word-spacing:2.688000pt;}
.ws73{word-spacing:2.736000pt;}
.wsfa{word-spacing:2.762667pt;}
.ws37{word-spacing:2.784000pt;}
.wsd5{word-spacing:2.832000pt;}
.ws4a{word-spacing:2.928000pt;}
.ws85{word-spacing:2.976000pt;}
.ws86{word-spacing:3.024000pt;}
.ws3b{word-spacing:3.072000pt;}
.wsa5{word-spacing:3.120000pt;}
.ws74{word-spacing:3.168000pt;}
.ws12c{word-spacing:3.210667pt;}
.wsdb{word-spacing:3.216000pt;}
.ws14e{word-spacing:3.285333pt;}
.ws12d{word-spacing:3.322667pt;}
.wsf1{word-spacing:3.397333pt;}
.wsd6{word-spacing:3.504000pt;}
.ws52{word-spacing:3.552000pt;}
.wsb3{word-spacing:3.648000pt;}
.ws133{word-spacing:3.696000pt;}
.ws109{word-spacing:3.733333pt;}
.wsbb{word-spacing:3.744000pt;}
.ws3d{word-spacing:3.792000pt;}
.wsf{word-spacing:3.840000pt;}
.ws8c{word-spacing:3.936000pt;}
.ws8d{word-spacing:3.984000pt;}
.wsca{word-spacing:4.032000pt;}
.ws4c{word-spacing:4.080000pt;}
.wsb5{word-spacing:4.176000pt;}
.ws60{word-spacing:4.224000pt;}
.ws150{word-spacing:4.293333pt;}
.ws8f{word-spacing:4.320000pt;}
.ws102{word-spacing:4.330667pt;}
.ws107{word-spacing:4.405333pt;}
.ws9f{word-spacing:4.560000pt;}
.wsd8{word-spacing:4.608000pt;}
.ws141{word-spacing:4.666667pt;}
.ws75{word-spacing:4.704000pt;}
.ws101{word-spacing:4.741333pt;}
.ws1c{word-spacing:4.752000pt;}
.wsff{word-spacing:4.778667pt;}
.ws50{word-spacing:4.800000pt;}
.ws108{word-spacing:4.816000pt;}
.wsc2{word-spacing:4.848000pt;}
.ws100{word-spacing:4.853333pt;}
.ws159{word-spacing:4.890667pt;}
.ws15a{word-spacing:4.928000pt;}
.ws9c{word-spacing:4.944000pt;}
.ws12b{word-spacing:4.965333pt;}
.wsaa{word-spacing:4.992000pt;}
.ws19{word-spacing:5.136000pt;}
.ws1b{word-spacing:5.184000pt;}
.wsdc{word-spacing:5.232000pt;}
.ws23{word-spacing:5.280000pt;}
.ws22{word-spacing:5.328000pt;}
.ws40{word-spacing:5.376000pt;}
.wsab{word-spacing:5.424000pt;}
.ws145{word-spacing:5.450667pt;}
.wsce{word-spacing:5.472000pt;}
.ws148{word-spacing:5.488000pt;}
.ws67{word-spacing:5.616000pt;}
.ws59{word-spacing:5.712000pt;}
.ws122{word-spacing:5.749333pt;}
.ws42{word-spacing:5.760000pt;}
.ws123{word-spacing:5.786667pt;}
.ws76{word-spacing:5.856000pt;}
.wsd3{word-spacing:5.904000pt;}
.ws5a{word-spacing:5.952000pt;}
.ws5f{word-spacing:6.048000pt;}
.ws137{word-spacing:6.085333pt;}
.ws5e{word-spacing:6.096000pt;}
.ws5b{word-spacing:6.144000pt;}
.wsc4{word-spacing:6.336000pt;}
.wscd{word-spacing:6.384000pt;}
.ws138{word-spacing:6.570667pt;}
.ws41{word-spacing:6.576000pt;}
.ws58{word-spacing:6.624000pt;}
.ws157{word-spacing:6.645333pt;}
.ws134{word-spacing:6.682667pt;}
.ws8b{word-spacing:6.720000pt;}
.ws13a{word-spacing:6.794667pt;}
.ws13b{word-spacing:6.832000pt;}
.ws11{word-spacing:6.864000pt;}
.ws81{word-spacing:7.008000pt;}
.ws61{word-spacing:7.056000pt;}
.ws9a{word-spacing:7.152000pt;}
.ws99{word-spacing:7.200000pt;}
.ws124{word-spacing:7.205333pt;}
.ws17{word-spacing:7.344000pt;}
.ws18{word-spacing:7.392000pt;}
.ws7e{word-spacing:7.440000pt;}
.ws7f{word-spacing:7.488000pt;}
.wsad{word-spacing:7.536000pt;}
.ws156{word-spacing:7.578667pt;}
.ws1a{word-spacing:7.584000pt;}
.wsf7{word-spacing:7.989333pt;}
.wsf8{word-spacing:8.064000pt;}
.ws146{word-spacing:8.138667pt;}
.ws14d{word-spacing:8.362667pt;}
.wsc3{word-spacing:8.448000pt;}
.ws65{word-spacing:8.544000pt;}
.wsc7{word-spacing:8.592000pt;}
.ws2a{word-spacing:8.624000pt;}
.ws83{word-spacing:8.640000pt;}
.ws110{word-spacing:8.661333pt;}
.ws84{word-spacing:8.688000pt;}
.ws92{word-spacing:8.832000pt;}
.ws93{word-spacing:8.880000pt;}
.wsc{word-spacing:8.976000pt;}
.ws154{word-spacing:9.072000pt;}
.ws69{word-spacing:9.168000pt;}
.ws6a{word-spacing:9.264000pt;}
.ws142{word-spacing:9.296000pt;}
.ws64{word-spacing:9.312000pt;}
.ws143{word-spacing:9.370667pt;}
.ws63{word-spacing:9.408000pt;}
.wsc9{word-spacing:9.456000pt;}
.ws155{word-spacing:9.520000pt;}
.ws39{word-spacing:9.600000pt;}
.ws158{word-spacing:9.632000pt;}
.wsde{word-spacing:9.648000pt;}
.ws20{word-spacing:9.744000pt;}
.ws1f{word-spacing:9.840000pt;}
.ws113{word-spacing:9.856000pt;}
.ws8a{word-spacing:9.888000pt;}
.ws89{word-spacing:9.984000pt;}
.ws6b{word-spacing:10.032000pt;}
.wse1{word-spacing:10.224000pt;}
.ws1d{word-spacing:10.272000pt;}
.ws88{word-spacing:10.464000pt;}
.ws68{word-spacing:10.512000pt;}
.ws35{word-spacing:10.608000pt;}
.wsb0{word-spacing:10.992000pt;}
.wsb6{word-spacing:11.040000pt;}
.wsaf{word-spacing:11.088000pt;}
.ws11f{word-spacing:11.461333pt;}
.ws48{word-spacing:11.616000pt;}
.wsd{word-spacing:11.712000pt;}
.ws120{word-spacing:11.722667pt;}
.ws147{word-spacing:11.834667pt;}
.ws103{word-spacing:12.133333pt;}
.ws14{word-spacing:12.192000pt;}
.wsb4{word-spacing:12.336000pt;}
.ws152{word-spacing:12.469333pt;}
.ws80{word-spacing:12.480000pt;}
.wsbe{word-spacing:12.624000pt;}
.wsb1{word-spacing:12.720000pt;}
.ws36{word-spacing:12.768000pt;}
.ws15e{word-spacing:13.216000pt;}
.ws151{word-spacing:13.253333pt;}
.ws15f{word-spacing:13.328000pt;}
.ws135{word-spacing:13.477333pt;}
.wsba{word-spacing:13.488000pt;}
.ws10e{word-spacing:13.514667pt;}
.wsb2{word-spacing:13.536000pt;}
.wsb8{word-spacing:13.584000pt;}
.ws10f{word-spacing:13.626667pt;}
.wsb9{word-spacing:13.920000pt;}
.ws46{word-spacing:14.160000pt;}
.wsdd{word-spacing:14.256000pt;}
.ws10{word-spacing:14.544000pt;}
.wsa6{word-spacing:14.592000pt;}
.ws82{word-spacing:14.832000pt;}
.wsa7{word-spacing:15.024000pt;}
.wsc6{word-spacing:15.120000pt;}
.ws104{word-spacing:15.232000pt;}
.ws105{word-spacing:15.344000pt;}
.wsac{word-spacing:16.512000pt;}
.ws5d{word-spacing:16.896000pt;}
.ws62{word-spacing:17.856000pt;}
.ws4b{word-spacing:17.952000pt;}
.wsb7{word-spacing:18.432000pt;}
.ws96{word-spacing:18.768000pt;}
.ws44{word-spacing:18.912000pt;}
.ws95{word-spacing:18.960000pt;}
.ws53{word-spacing:19.104000pt;}
.ws128{word-spacing:19.637333pt;}
.ws129{word-spacing:20.197333pt;}
.wsd7{word-spacing:20.784000pt;}
.ws149{word-spacing:21.616000pt;}
.wsd1{word-spacing:22.080000pt;}
.wsa4{word-spacing:22.464000pt;}
.ws5c{word-spacing:23.328000pt;}
.ws66{word-spacing:23.568000pt;}
.ws51{word-spacing:25.296000pt;}
.ws11c{word-spacing:25.984000pt;}
.ws11d{word-spacing:26.208000pt;}
.ws153{word-spacing:26.581333pt;}
.wscc{word-spacing:27.120000pt;}
.ws11b{word-spacing:54.245333pt;}
.ws11a{word-spacing:54.730667pt;}
.ws79{word-spacing:856.748800pt;}
.wse3{word-spacing:856.879467pt;}
.ws2c{word-spacing:857.383467pt;}
.ws56{word-spacing:857.476800pt;}
.wsbf{word-spacing:857.551467pt;}
.ws13c{word-spacing:858.186133pt;}
.ws0{word-spacing:858.932800pt;}
.ws7a{word-spacing:1038.524800pt;}
.wse4{word-spacing:1038.655467pt;}
.ws2d{word-spacing:1039.159467pt;}
.ws57{word-spacing:1039.252800pt;}
.wsc0{word-spacing:1039.327467pt;}
.ws13d{word-spacing:1039.962133pt;}
.ws1{word-spacing:1040.708800pt;}
._f{margin-left:-7.051205pt;}
._12{margin-left:-6.010667pt;}
._3{margin-left:-5.104000pt;}
._2{margin-left:-4.112533pt;}
._4{margin-left:-2.352000pt;}
._0{margin-left:-1.232000pt;}
._5{width:1.075200pt;}
._c{width:2.149966pt;}
._b{width:3.597795pt;}
._9{width:5.635009pt;}
._a{width:6.573762pt;}
._7{width:8.621333pt;}
._6{width:9.741867pt;}
._13{width:11.310118pt;}
._1{width:12.202667pt;}
._e{width:13.657842pt;}
._d{width:15.240984pt;}
._11{width:19.200533pt;}
._10{width:54.714562pt;}
._8{width:1737.213867pt;}
.fs4{font-size:29.333333pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs6{font-size:72.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.244133pt;}
.y2b{bottom:93.166533pt;}
.y79{bottom:95.332000pt;}
.yd6{bottom:101.166533pt;}
.y78{bottom:107.332000pt;}
.y2a{bottom:109.166533pt;}
.yd5{bottom:111.833200pt;}
.y77{bottom:119.332000pt;}
.yfd{bottom:122.499867pt;}
.y29{bottom:125.166533pt;}
.yd4{bottom:127.833200pt;}
.y76{bottom:131.332000pt;}
.y8f{bottom:134.713333pt;}
.yd3{bottom:138.499867pt;}
.y28{bottom:141.166533pt;}
.y8e{bottom:146.713333pt;}
.yfc{bottom:149.166533pt;}
.yd2{bottom:154.499867pt;}
.y27{bottom:157.166533pt;}
.y8d{bottom:158.713333pt;}
.yfb{bottom:159.833200pt;}
.yd1{bottom:165.166533pt;}
.yfa{bottom:170.499867pt;}
.y8c{bottom:170.713333pt;}
.y26{bottom:173.166533pt;}
.yd0{bottom:175.833200pt;}
.y8b{bottom:182.713333pt;}
.yf9{bottom:186.499867pt;}
.y25{bottom:189.166533pt;}
.ycf{bottom:191.833200pt;}
.y8a{bottom:194.713333pt;}
.yf8{bottom:197.166533pt;}
.yce{bottom:202.499867pt;}
.y24{bottom:205.166533pt;}
.y89{bottom:206.713333pt;}
.yf7{bottom:207.833200pt;}
.ycd{bottom:218.499867pt;}
.y88{bottom:218.713333pt;}
.y23{bottom:221.166533pt;}
.yf6{bottom:223.833200pt;}
.ycc{bottom:229.166533pt;}
.yf5{bottom:234.499867pt;}
.y22{bottom:237.166533pt;}
.ycb{bottom:239.833200pt;}
.yf4{bottom:245.166533pt;}
.yca{bottom:250.499867pt;}
.y87{bottom:253.166533pt;}
.yf3{bottom:261.166533pt;}
.yc9{bottom:266.499867pt;}
.y21{bottom:269.166533pt;}
.yf2{bottom:271.833200pt;}
.yc8{bottom:277.166533pt;}
.yf1{bottom:282.499867pt;}
.y86{bottom:285.166533pt;}
.yc7{bottom:287.833200pt;}
.yf0{bottom:298.499867pt;}
.y85{bottom:301.166533pt;}
.yc6{bottom:305.166533pt;}
.yef{bottom:309.166533pt;}
.yc5{bottom:315.833200pt;}
.y84{bottom:317.166533pt;}
.yee{bottom:319.833200pt;}
.yc4{bottom:326.499867pt;}
.y83{bottom:333.166533pt;}
.yed{bottom:335.833200pt;}
.yc3{bottom:337.166533pt;}
.yec{bottom:346.499867pt;}
.y82{bottom:349.166533pt;}
.yc2{bottom:354.499867pt;}
.yeb{bottom:357.166533pt;}
.y20{bottom:360.482800pt;}
.y81{bottom:365.166533pt;}
.yea{bottom:373.166533pt;}
.y1f{bottom:375.149467pt;}
.yc1{bottom:375.833200pt;}
.y80{bottom:381.166533pt;}
.ye9{bottom:383.833200pt;}
.yc0{bottom:393.166533pt;}
.y1e{bottom:393.816133pt;}
.ye8{bottom:394.499867pt;}
.y7f{bottom:397.166533pt;}
.ybf{bottom:403.833200pt;}
.ye7{bottom:405.166533pt;}
.y7e{bottom:413.166533pt;}
.ybe{bottom:414.499867pt;}
.ye6{bottom:421.166533pt;}
.y1d{bottom:427.149467pt;}
.y50{bottom:428.047600pt;}
.y7d{bottom:429.166533pt;}
.ybd{bottom:431.833200pt;}
.y4f{bottom:440.047600pt;}
.ybc{bottom:442.499867pt;}
.y1c{bottom:443.149467pt;}
.y7c{bottom:445.166533pt;}
.y4e{bottom:452.047600pt;}
.ybb{bottom:453.166533pt;}
.ye5{bottom:458.499867pt;}
.y1b{bottom:459.149467pt;}
.y7b{bottom:461.166533pt;}
.y4d{bottom:464.047600pt;}
.yba{bottom:469.166533pt;}
.y1a{bottom:475.149467pt;}
.y4c{bottom:476.047600pt;}
.y7a{bottom:477.166533pt;}
.yb9{bottom:479.833200pt;}
.y4b{bottom:488.047600pt;}
.yb8{bottom:490.499867pt;}
.y19{bottom:491.149467pt;}
.y75{bottom:493.166533pt;}
.ye4{bottom:495.833200pt;}
.y4a{bottom:500.047600pt;}
.yb7{bottom:506.499867pt;}
.y18{bottom:507.149467pt;}
.y74{bottom:509.166533pt;}
.y49{bottom:512.047600pt;}
.yb6{bottom:517.166533pt;}
.y17{bottom:523.149467pt;}
.y48{bottom:524.047600pt;}
.y73{bottom:525.166533pt;}
.yb5{bottom:527.833200pt;}
.ye3{bottom:533.166533pt;}
.y47{bottom:536.047600pt;}
.y16{bottom:539.149467pt;}
.y72{bottom:541.166533pt;}
.yb4{bottom:543.833200pt;}
.y46{bottom:548.047600pt;}
.yb3{bottom:554.499867pt;}
.y15{bottom:555.149467pt;}
.y71{bottom:557.166533pt;}
.y45{bottom:560.047600pt;}
.yb2{bottom:565.166533pt;}
.ye2{bottom:570.499867pt;}
.y14{bottom:571.149467pt;}
.y44{bottom:572.047467pt;}
.y70{bottom:573.166533pt;}
.y121{bottom:579.888133pt;}
.yb1{bottom:581.166533pt;}
.y43{bottom:584.275600pt;}
.y13{bottom:587.149467pt;}
.y6f{bottom:589.166533pt;}
.y120{bottom:590.554800pt;}
.yb0{bottom:591.833200pt;}
.y12f{bottom:601.221467pt;}
.yaf{bottom:602.499867pt;}
.y42{bottom:603.003600pt;}
.y12{bottom:603.149467pt;}
.y6e{bottom:605.166533pt;}
.y11f{bottom:606.554800pt;}
.yae{bottom:613.166533pt;}
.y41{bottom:615.003600pt;}
.y11e{bottom:617.221467pt;}
.ye1{bottom:618.499867pt;}
.y11{bottom:619.149467pt;}
.y6d{bottom:621.166533pt;}
.y40{bottom:627.003600pt;}
.y12e{bottom:627.888133pt;}
.yad{bottom:629.166533pt;}
.y11d{bottom:633.221467pt;}
.y10{bottom:635.149467pt;}
.y6c{bottom:637.166533pt;}
.y12d{bottom:638.554800pt;}
.y3f{bottom:639.003600pt;}
.yac{bottom:639.833200pt;}
.y11c{bottom:643.888133pt;}
.yab{bottom:650.499867pt;}
.y3e{bottom:651.003600pt;}
.yf{bottom:651.149467pt;}
.y6b{bottom:653.166533pt;}
.y11b{bottom:654.554800pt;}
.yaa{bottom:661.166533pt;}
.y3d{bottom:663.003600pt;}
.y11a{bottom:665.221467pt;}
.ye0{bottom:666.499867pt;}
.ye{bottom:667.149467pt;}
.y6a{bottom:669.166533pt;}
.y3c{bottom:675.231467pt;}
.y12c{bottom:675.888133pt;}
.ya9{bottom:677.166533pt;}
.y119{bottom:681.221467pt;}
.yd{bottom:683.149467pt;}
.y69{bottom:685.166533pt;}
.ya8{bottom:687.833200pt;}
.y118{bottom:691.888133pt;}
.y3b{bottom:693.959600pt;}
.ya7{bottom:698.499867pt;}
.yc{bottom:699.149467pt;}
.y68{bottom:701.166533pt;}
.y117{bottom:702.554800pt;}
.ydf{bottom:703.833200pt;}
.y3a{bottom:705.959600pt;}
.y12b{bottom:713.221467pt;}
.ya6{bottom:714.499867pt;}
.yb{bottom:715.149467pt;}
.y67{bottom:717.166533pt;}
.y39{bottom:717.959600pt;}
.y116{bottom:718.554800pt;}
.ya5{bottom:725.166533pt;}
.y115{bottom:729.221467pt;}
.ya{bottom:731.149467pt;}
.y66{bottom:733.166533pt;}
.ya4{bottom:735.833200pt;}
.y38{bottom:736.626267pt;}
.y114{bottom:739.888133pt;}
.yde{bottom:741.166533pt;}
.y9{bottom:747.149467pt;}
.y37{bottom:748.626267pt;}
.y65{bottom:749.166533pt;}
.y12a{bottom:750.554800pt;}
.ya3{bottom:751.833200pt;}
.y113{bottom:755.888133pt;}
.y36{bottom:760.626267pt;}
.ya2{bottom:762.499867pt;}
.y8{bottom:763.149467pt;}
.y64{bottom:765.166533pt;}
.y112{bottom:766.554800pt;}
.ydd{bottom:767.833200pt;}
.y35{bottom:772.626267pt;}
.ya1{bottom:773.166533pt;}
.y111{bottom:777.221467pt;}
.ydc{bottom:778.499867pt;}
.y63{bottom:781.166533pt;}
.y34{bottom:784.854267pt;}
.y110{bottom:787.888133pt;}
.ya0{bottom:789.166533pt;}
.y62{bottom:797.166533pt;}
.y129{bottom:798.554800pt;}
.y9f{bottom:799.833200pt;}
.y7{bottom:802.201467pt;}
.y33{bottom:803.582133pt;}
.y10f{bottom:803.888133pt;}
.y9e{bottom:810.499867pt;}
.y61{bottom:813.166533pt;}
.y10e{bottom:814.554800pt;}
.y32{bottom:815.582133pt;}
.ydb{bottom:815.833200pt;}
.y6{bottom:824.320133pt;}
.y10d{bottom:825.221467pt;}
.y9d{bottom:826.499867pt;}
.y31{bottom:827.582133pt;}
.y60{bottom:829.166533pt;}
.y10c{bottom:835.888133pt;}
.y9c{bottom:837.166533pt;}
.y30{bottom:839.810267pt;}
.y128{bottom:841.221467pt;}
.y5{bottom:844.320133pt;}
.y5f{bottom:845.166533pt;}
.y9b{bottom:847.833200pt;}
.y10b{bottom:851.888133pt;}
.yda{bottom:853.166533pt;}
.y9a{bottom:858.499867pt;}
.y2f{bottom:858.538267pt;}
.y5e{bottom:861.166533pt;}
.y10a{bottom:862.554800pt;}
.yd9{bottom:863.833200pt;}
.y4{bottom:864.320133pt;}
.y2e{bottom:870.538267pt;}
.y127{bottom:873.221467pt;}
.y99{bottom:874.499867pt;}
.y5d{bottom:877.166533pt;}
.y109{bottom:878.554800pt;}
.y2d{bottom:882.766133pt;}
.y98{bottom:885.166533pt;}
.y108{bottom:889.221467pt;}
.y5c{bottom:893.166533pt;}
.y97{bottom:895.833200pt;}
.y107{bottom:899.888133pt;}
.yd8{bottom:901.166533pt;}
.y2c{bottom:901.494267pt;}
.y3{bottom:901.777467pt;}
.y5b{bottom:909.166533pt;}
.y126{bottom:910.554800pt;}
.y96{bottom:911.833200pt;}
.y106{bottom:915.888133pt;}
.y125{bottom:921.221467pt;}
.y95{bottom:922.499867pt;}
.y5a{bottom:925.166533pt;}
.y105{bottom:926.554800pt;}
.y94{bottom:933.166533pt;}
.y2{bottom:935.110800pt;}
.y104{bottom:937.221467pt;}
.y59{bottom:941.166533pt;}
.y93{bottom:943.833200pt;}
.y124{bottom:947.888133pt;}
.yd7{bottom:949.166533pt;}
.y103{bottom:953.221467pt;}
.y58{bottom:957.166533pt;}
.y123{bottom:958.554800pt;}
.y92{bottom:959.833200pt;}
.y102{bottom:963.888133pt;}
.y91{bottom:970.499867pt;}
.y57{bottom:973.166533pt;}
.y101{bottom:974.554800pt;}
.y90{bottom:981.166533pt;}
.y122{bottom:985.221467pt;}
.y56{bottom:989.166533pt;}
.y100{bottom:990.554800pt;}
.yff{bottom:1001.221467pt;}
.y55{bottom:1005.166533pt;}
.yfe{bottom:1011.888133pt;}
.y53{bottom:1044.714133pt;}
.y52{bottom:1056.714133pt;}
.y54{bottom:1068.686267pt;}
.y51{bottom:1068.714133pt;}
.h7{height:21.736000pt;}
.hc{height:26.730667pt;}
.hb{height:27.664000pt;}
.h5{height:27.701333pt;}
.h2{height:27.776000pt;}
.h8{height:31.616000pt;}
.ha{height:34.368000pt;}
.h6{height:35.616000pt;}
.h4{height:43.648000pt;}
.h9{height:53.568000pt;}
.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;}
.x4{left:73.349333pt;}
.x9{left:83.128400pt;}
.x6{left:85.025733pt;}
.x2{left:295.559067pt;}
.x3{left:314.456400pt;}
.x7{left:406.285867pt;}
.xb{left:414.285867pt;}
.xa{left:423.299200pt;}
.x8{left:425.183200pt;}
.x5{left:587.770533pt;}
}




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