
    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_171a0d7527efefd296bb4dd2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.148000;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_970068746dcc4f9831d1afb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_f5010748d651765e8270aacb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.187000;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_92c6124e5886fa0138c32449.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_de09b18bb294af8514afe542.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.193000;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_93c67d655e74f5560819f6bd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.165000;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_590220ba0e6cbf88287e74ec.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.143048;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;}
.m29{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);}
.m82{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m8e{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);}
.m4d{transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248084,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m32{transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248284,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248308,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248366,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248374,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248455,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248484,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248666,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248718,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248742,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248836,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248927,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248964,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249077,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249080,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249082,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249084,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249092,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249105,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249157,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249211,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249214,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249276,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249284,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249293,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249416,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249423,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249424,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249527,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249587,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249614,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249616,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249751,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249753,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m3b{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);}
.m36{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249876,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249887,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249995,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);}
.m9b{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250023,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250041,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250108,0.000000,0.000000,0.250000,0,0);}
.m4c{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);}
.m3f{transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250127,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250234,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250237,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250239,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250276,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250345,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250359,0.000000,0.000000,0.250000,0,0);}
.ma3{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);}
.ma0{transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250384,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250430,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250432,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250457,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250524,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m99{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250598,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250634,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250639,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250674,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250745,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250777,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250826,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250909,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251141,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251521,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251557,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251632,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252341,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.252384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252384,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v7{vertical-align:-18.981000px;}
.v4{vertical-align:-12.000000px;}
.v5{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.958200px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:30.000000px;}
.ls10{letter-spacing:-7.458000px;}
.ls5c{letter-spacing:-6.555000px;}
.ls1a{letter-spacing:-5.040000px;}
.ls1d{letter-spacing:-3.840000px;}
.ls24{letter-spacing:-3.696000px;}
.ls14{letter-spacing:-3.300000px;}
.ls3c{letter-spacing:-2.904000px;}
.ls1c{letter-spacing:-2.880000px;}
.ls3b{letter-spacing:-2.508000px;}
.ls1b{letter-spacing:-2.304000px;}
.ls12{letter-spacing:-2.280000px;}
.ls2c{letter-spacing:-2.064000px;}
.lsd{letter-spacing:-1.980000px;}
.ls32{letter-spacing:-1.800000px;}
.ls4c{letter-spacing:-1.710000px;}
.ls19{letter-spacing:-1.680000px;}
.ls26{letter-spacing:-1.650000px;}
.ls51{letter-spacing:-1.596000px;}
.ls1e{letter-spacing:-1.536000px;}
.ls18{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.990000px;}
.ls1f{letter-spacing:-0.960000px;}
.ls55{letter-spacing:-0.798000px;}
.ls17{letter-spacing:-0.720000px;}
.ls16{letter-spacing:-0.480000px;}
.ls23{letter-spacing:-0.462000px;}
.ls53{letter-spacing:-0.456000px;}
.ls59{letter-spacing:-0.399000px;}
.ls22{letter-spacing:-0.396000px;}
.ls30{letter-spacing:-0.360000px;}
.ls4a{letter-spacing:-0.342000px;}
.ls28{letter-spacing:-0.330000px;}
.ls54{letter-spacing:-0.285000px;}
.ls20{letter-spacing:-0.264000px;}
.ls4d{letter-spacing:-0.228000px;}
.ls27{letter-spacing:-0.198000px;}
.ls4b{letter-spacing:-0.171000px;}
.ls25{letter-spacing:-0.132000px;}
.ls52{letter-spacing:-0.114000px;}
.ls45{letter-spacing:-0.076956px;}
.lsf{letter-spacing:-0.066000px;}
.ls3e{letter-spacing:-0.060000px;}
.ls4e{letter-spacing:-0.057000px;}
.lsb{letter-spacing:0.000000px;}
.ls49{letter-spacing:0.000120px;}
.ls29{letter-spacing:0.000162px;}
.ls5b{letter-spacing:0.033231px;}
.ls34{letter-spacing:0.038478px;}
.ls0{letter-spacing:0.057000px;}
.ls3d{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.066000px;}
.ls2e{letter-spacing:0.076956px;}
.ls46{letter-spacing:0.114000px;}
.ls2d{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.132000px;}
.ls44{letter-spacing:0.139920px;}
.ls8{letter-spacing:0.167603px;}
.ls4f{letter-spacing:0.171000px;}
.ls43{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.198000px;}
.ls58{letter-spacing:0.228000px;}
.ls2f{letter-spacing:0.240000px;}
.ls7{letter-spacing:0.264000px;}
.ls2b{letter-spacing:0.270000px;}
.ls41{letter-spacing:0.300000px;}
.ls31{letter-spacing:0.330000px;}
.ls48{letter-spacing:0.342000px;}
.ls3a{letter-spacing:0.346302px;}
.ls38{letter-spacing:0.396000px;}
.ls2a{letter-spacing:0.462000px;}
.ls21{letter-spacing:0.528000px;}
.ls5a{letter-spacing:0.570000px;}
.ls35{letter-spacing:0.594000px;}
.lsc{letter-spacing:0.600000px;}
.ls57{letter-spacing:0.627000px;}
.ls6{letter-spacing:0.660000px;}
.ls56{letter-spacing:0.684000px;}
.ls1{letter-spacing:0.720000px;}
.ls37{letter-spacing:0.726000px;}
.ls11{letter-spacing:0.810000px;}
.ls3f{letter-spacing:0.858000px;}
.ls40{letter-spacing:0.990000px;}
.ls36{letter-spacing:1.056000px;}
.ls15{letter-spacing:1.080000px;}
.lsa{letter-spacing:1.350000px;}
.ls47{letter-spacing:1.482000px;}
.ls42{letter-spacing:2.880000px;}
.ls33{letter-spacing:3.498000px;}
.ls3{letter-spacing:3.630000px;}
.ls50{letter-spacing:4.161000px;}
.ls5{letter-spacing:4.752000px;}
.ls9{letter-spacing:4.818000px;}
.ls39{letter-spacing:5.280000px;}
.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;}
}
.ws65{word-spacing:-22.140000px;}
.ws1{word-spacing:-16.632000px;}
.wsc5{word-spacing:-16.302000px;}
.wsea{word-spacing:-14.916000px;}
.wsef{word-spacing:-14.586000px;}
.wsf9{word-spacing:-14.520000px;}
.wse9{word-spacing:-14.454000px;}
.wsf1{word-spacing:-14.256000px;}
.ws7{word-spacing:-14.124000px;}
.ws6{word-spacing:-14.058000px;}
.ws4{word-spacing:-13.992000px;}
.wsd8{word-spacing:-13.926000px;}
.ws6f{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.794000px;}
.wsd7{word-spacing:-13.728000px;}
.ws89{word-spacing:-13.662000px;}
.ws36{word-spacing:-13.608000px;}
.ws37{word-spacing:-13.530000px;}
.ws78{word-spacing:-13.464000px;}
.ws97{word-spacing:-13.266000px;}
.ws96{word-spacing:-13.068000px;}
.ws5{word-spacing:-13.002000px;}
.wsfc{word-spacing:-12.900000px;}
.ws3{word-spacing:-12.870000px;}
.wsc7{word-spacing:-12.840000px;}
.ws107{word-spacing:-12.798000px;}
.ws8a{word-spacing:-12.738000px;}
.wsda{word-spacing:-12.720000px;}
.wsf2{word-spacing:-12.660000px;}
.ws139{word-spacing:-12.654000px;}
.wsa2{word-spacing:-12.600000px;}
.ws13c{word-spacing:-12.597000px;}
.ws114{word-spacing:-12.312000px;}
.ws13d{word-spacing:-12.198000px;}
.ws127{word-spacing:-12.141000px;}
.ws10c{word-spacing:-12.084000px;}
.ws112{word-spacing:-12.027000px;}
.wsfd{word-spacing:-12.000000px;}
.ws10d{word-spacing:-11.970000px;}
.ws116{word-spacing:-11.913000px;}
.ws2{word-spacing:-11.880000px;}
.ws126{word-spacing:-11.856000px;}
.ws10f{word-spacing:-11.799000px;}
.ws115{word-spacing:-11.742000px;}
.wsec{word-spacing:-11.685000px;}
.ws10e{word-spacing:-11.628000px;}
.ws138{word-spacing:-11.514000px;}
.ws113{word-spacing:-11.172000px;}
.ws110{word-spacing:-11.115000px;}
.ws13a{word-spacing:-11.058000px;}
.wsf0{word-spacing:-11.022000px;}
.ws13b{word-spacing:-10.887000px;}
.wsfe{word-spacing:-10.830000px;}
.wsd9{word-spacing:-10.800000px;}
.ws98{word-spacing:-10.560000px;}
.ws125{word-spacing:-10.374000px;}
.ws111{word-spacing:-10.260000px;}
.ws73{word-spacing:-10.164000px;}
.ws4c{word-spacing:-10.080000px;}
.ws4a{word-spacing:-9.600000px;}
.ws4b{word-spacing:-9.360000px;}
.wsee{word-spacing:-8.426682px;}
.wsc6{word-spacing:-8.157336px;}
.ws8{word-spacing:-8.080380px;}
.ws14d{word-spacing:-7.011741px;}
.ws117{word-spacing:-6.978510px;}
.ws14c{word-spacing:-6.480045px;}
.wsa{word-spacing:-6.402000px;}
.ws163{word-spacing:-5.415000px;}
.ws10a{word-spacing:-3.036000px;}
.ws141{word-spacing:-3.021000px;}
.ws13e{word-spacing:-2.964000px;}
.ws29{word-spacing:-2.838000px;}
.ws11a{word-spacing:-2.793000px;}
.ws1f{word-spacing:-2.772000px;}
.ws72{word-spacing:-2.706000px;}
.ws8e{word-spacing:-2.640000px;}
.wsd2{word-spacing:-2.580000px;}
.wsf3{word-spacing:-2.574000px;}
.ws120{word-spacing:-2.565000px;}
.wsf8{word-spacing:-2.520000px;}
.wsf6{word-spacing:-2.508000px;}
.ws12f{word-spacing:-2.451000px;}
.wsc2{word-spacing:-2.442000px;}
.ws119{word-spacing:-2.394000px;}
.wscf{word-spacing:-2.376000px;}
.ws144{word-spacing:-2.337000px;}
.ws80{word-spacing:-2.310000px;}
.ws152{word-spacing:-2.280000px;}
.wsf7{word-spacing:-2.244000px;}
.ws11b{word-spacing:-2.223000px;}
.wsf4{word-spacing:-2.178000px;}
.ws8d{word-spacing:-2.112000px;}
.wsc4{word-spacing:-2.046000px;}
.ws149{word-spacing:-1.995000px;}
.ws23{word-spacing:-1.980000px;}
.ws13f{word-spacing:-1.938000px;}
.ws9e{word-spacing:-1.914000px;}
.ws10{word-spacing:-1.881000px;}
.ws100{word-spacing:-1.860000px;}
.ws25{word-spacing:-1.848000px;}
.ws75{word-spacing:-1.782000px;}
.ws11d{word-spacing:-1.767000px;}
.ws24{word-spacing:-1.716000px;}
.ws156{word-spacing:-1.710000px;}
.wsf{word-spacing:-1.653000px;}
.ws8c{word-spacing:-1.650000px;}
.ws11e{word-spacing:-1.596000px;}
.ws9d{word-spacing:-1.584000px;}
.ws31{word-spacing:-1.518000px;}
.ws160{word-spacing:-1.482000px;}
.ws2c{word-spacing:-1.452000px;}
.ws15d{word-spacing:-1.425000px;}
.ws99{word-spacing:-1.386000px;}
.ws148{word-spacing:-1.368000px;}
.ws26{word-spacing:-1.350000px;}
.ws1b{word-spacing:-1.320000px;}
.ws15c{word-spacing:-1.311000px;}
.ws86{word-spacing:-1.260000px;}
.ws93{word-spacing:-1.254000px;}
.ws12d{word-spacing:-1.197000px;}
.wse1{word-spacing:-1.188000px;}
.ws15a{word-spacing:-1.140000px;}
.ws7f{word-spacing:-1.122000px;}
.wsdf{word-spacing:-1.056000px;}
.ws15b{word-spacing:-1.026000px;}
.ws1c{word-spacing:-0.990000px;}
.ws159{word-spacing:-0.969000px;}
.wsa0{word-spacing:-0.924000px;}
.ws90{word-spacing:-0.858000px;}
.ws2b{word-spacing:-0.792000px;}
.wsbe{word-spacing:-0.768000px;}
.ws157{word-spacing:-0.741000px;}
.ws9c{word-spacing:-0.726000px;}
.ws38{word-spacing:-0.720000px;}
.ws135{word-spacing:-0.684000px;}
.ws39{word-spacing:-0.660000px;}
.ws134{word-spacing:-0.627000px;}
.wsc8{word-spacing:-0.594000px;}
.ws87{word-spacing:-0.570000px;}
.ws43{word-spacing:-0.528000px;}
.ws165{word-spacing:-0.513000px;}
.ws6a{word-spacing:-0.480000px;}
.wse2{word-spacing:-0.462000px;}
.ws14f{word-spacing:-0.399000px;}
.ws2d{word-spacing:-0.396000px;}
.ws136{word-spacing:-0.342000px;}
.ws74{word-spacing:-0.330000px;}
.ws3d{word-spacing:-0.264000px;}
.ws14{word-spacing:-0.198000px;}
.ws85{word-spacing:-0.180000px;}
.ws143{word-spacing:-0.171000px;}
.wsbc{word-spacing:-0.144000px;}
.ws106{word-spacing:-0.139920px;}
.ws20{word-spacing:-0.132000px;}
.wsa4{word-spacing:-0.120000px;}
.ws128{word-spacing:-0.114000px;}
.wsdc{word-spacing:-0.066000px;}
.ws150{word-spacing:-0.057000px;}
.wse8{word-spacing:-0.038478px;}
.wsb{word-spacing:0.000000px;}
.ws129{word-spacing:0.057000px;}
.ws2a{word-spacing:0.066000px;}
.ws109{word-spacing:0.076956px;}
.ws12a{word-spacing:0.114000px;}
.wsd0{word-spacing:0.120000px;}
.wse3{word-spacing:0.132000px;}
.wsdb{word-spacing:0.198000px;}
.ws104{word-spacing:0.240000px;}
.ws76{word-spacing:0.264000px;}
.ws132{word-spacing:0.285000px;}
.ws47{word-spacing:0.330000px;}
.wse{word-spacing:0.342000px;}
.wsd3{word-spacing:0.360000px;}
.ws2f{word-spacing:0.396000px;}
.ws122{word-spacing:0.399000px;}
.ws84{word-spacing:0.420000px;}
.ws130{word-spacing:0.456000px;}
.wscc{word-spacing:0.462000px;}
.ws151{word-spacing:0.513000px;}
.wse0{word-spacing:0.528000px;}
.ws7c{word-spacing:0.594000px;}
.ws83{word-spacing:0.600000px;}
.ws9f{word-spacing:0.660000px;}
.wscd{word-spacing:0.726000px;}
.wsde{word-spacing:0.792000px;}
.wsc{word-spacing:0.798000px;}
.ws154{word-spacing:0.855000px;}
.wsce{word-spacing:0.858000px;}
.ws153{word-spacing:0.912000px;}
.ws16{word-spacing:0.924000px;}
.ws6e{word-spacing:0.960000px;}
.ws155{word-spacing:0.969000px;}
.ws1d{word-spacing:0.990000px;}
.ws118{word-spacing:1.026000px;}
.ws42{word-spacing:1.056000px;}
.ws12c{word-spacing:1.083000px;}
.ws17{word-spacing:1.122000px;}
.ws133{word-spacing:1.140000px;}
.wse6{word-spacing:1.188000px;}
.ws7e{word-spacing:1.254000px;}
.ws82{word-spacing:1.320000px;}
.ws158{word-spacing:1.368000px;}
.ws28{word-spacing:1.386000px;}
.ws66{word-spacing:1.440000px;}
.wsfa{word-spacing:1.452000px;}
.ws11c{word-spacing:1.482000px;}
.ws9b{word-spacing:1.518000px;}
.ws6d{word-spacing:1.536000px;}
.ws12e{word-spacing:1.539000px;}
.wscb{word-spacing:1.584000px;}
.ws32{word-spacing:1.650000px;}
.ws161{word-spacing:1.653000px;}
.ws69{word-spacing:1.680000px;}
.ws22{word-spacing:1.716000px;}
.wsff{word-spacing:1.740000px;}
.ws21{word-spacing:1.782000px;}
.wse7{word-spacing:1.848000px;}
.wsc3{word-spacing:1.914000px;}
.ws46{word-spacing:2.046000px;}
.wsbd{word-spacing:2.064000px;}
.wse4{word-spacing:2.100000px;}
.ws164{word-spacing:2.109000px;}
.ws40{word-spacing:2.112000px;}
.wsf5{word-spacing:2.178000px;}
.ws8f{word-spacing:2.244000px;}
.ws35{word-spacing:2.280000px;}
.ws68{word-spacing:2.304000px;}
.ws3c{word-spacing:2.310000px;}
.ws1a{word-spacing:2.376000px;}
.ws123{word-spacing:2.394000px;}
.ws8b{word-spacing:2.442000px;}
.ws146{word-spacing:2.451000px;}
.wsd4{word-spacing:2.460000px;}
.wseb{word-spacing:2.508000px;}
.ws1e{word-spacing:2.574000px;}
.ws105{word-spacing:2.580000px;}
.ws124{word-spacing:2.622000px;}
.ws41{word-spacing:2.640000px;}
.ws142{word-spacing:2.679000px;}
.ws34{word-spacing:2.700000px;}
.ws33{word-spacing:2.772000px;}
.ws145{word-spacing:2.793000px;}
.ws9a{word-spacing:2.838000px;}
.ws6b{word-spacing:2.880000px;}
.ws3f{word-spacing:2.904000px;}
.ws121{word-spacing:2.907000px;}
.ws103{word-spacing:2.940000px;}
.ws14a{word-spacing:2.964000px;}
.ws3e{word-spacing:2.970000px;}
.wsa1{word-spacing:3.000000px;}
.ws14e{word-spacing:3.021000px;}
.wsc9{word-spacing:3.036000px;}
.ws45{word-spacing:3.102000px;}
.ws101{word-spacing:3.120000px;}
.ws77{word-spacing:3.168000px;}
.ws18{word-spacing:3.234000px;}
.ws102{word-spacing:3.240000px;}
.ws15{word-spacing:3.300000px;}
.ws12b{word-spacing:3.306000px;}
.ws15e{word-spacing:3.363000px;}
.ws91{word-spacing:3.366000px;}
.ws7a{word-spacing:3.432000px;}
.ws79{word-spacing:3.498000px;}
.ws14b{word-spacing:3.534000px;}
.wsa3{word-spacing:3.540000px;}
.ws7b{word-spacing:3.564000px;}
.wsd6{word-spacing:3.600000px;}
.ws30{word-spacing:3.630000px;}
.ws131{word-spacing:3.648000px;}
.ws13{word-spacing:3.696000px;}
.wsd{word-spacing:3.705000px;}
.ws3b{word-spacing:3.762000px;}
.ws7d{word-spacing:3.828000px;}
.ws6c{word-spacing:3.840000px;}
.ws11f{word-spacing:3.876000px;}
.ws2e{word-spacing:3.894000px;}
.ws11{word-spacing:3.933000px;}
.ws94{word-spacing:3.960000px;}
.ws15f{word-spacing:3.990000px;}
.ws92{word-spacing:4.026000px;}
.ws81{word-spacing:4.092000px;}
.wsd1{word-spacing:4.140000px;}
.ws44{word-spacing:4.158000px;}
.ws147{word-spacing:4.161000px;}
.wsdd{word-spacing:4.224000px;}
.ws108{word-spacing:4.290000px;}
.wsc1{word-spacing:4.356000px;}
.wsca{word-spacing:4.422000px;}
.ws140{word-spacing:4.446000px;}
.ws19{word-spacing:4.488000px;}
.ws12{word-spacing:4.554000px;}
.ws3a{word-spacing:4.620000px;}
.ws67{word-spacing:5.040000px;}
.wsb8{word-spacing:184.512000px;}
.ws5e{word-spacing:185.424000px;}
.ws52{word-spacing:192.432000px;}
.wsb6{word-spacing:193.200000px;}
.ws5f{word-spacing:212.352000px;}
.ws63{word-spacing:213.168000px;}
.wsb4{word-spacing:225.024000px;}
.ws54{word-spacing:226.848000px;}
.ws4d{word-spacing:230.016000px;}
.ws4e{word-spacing:239.568000px;}
.ws64{word-spacing:240.480000px;}
.ws51{word-spacing:251.808000px;}
.wsa6{word-spacing:261.744000px;}
.wsaa{word-spacing:274.896000px;}
.ws55{word-spacing:275.808000px;}
.ws61{word-spacing:281.760000px;}
.ws59{word-spacing:283.440000px;}
.ws5c{word-spacing:285.792000px;}
.ws56{word-spacing:286.320000px;}
.ws53{word-spacing:287.520000px;}
.ws58{word-spacing:288.240000px;}
.ws4f{word-spacing:292.320000px;}
.ws57{word-spacing:292.944000px;}
.ws50{word-spacing:298.752000px;}
.wsbf{word-spacing:303.336000px;}
.wsbb{word-spacing:303.336600px;}
.wsb3{word-spacing:311.520000px;}
.wsb2{word-spacing:312.096000px;}
.wsb0{word-spacing:312.432000px;}
.wsb9{word-spacing:314.352000px;}
.wsab{word-spacing:315.408000px;}
.wsaf{word-spacing:315.792000px;}
.wsba{word-spacing:322.224000px;}
.wsb5{word-spacing:325.882800px;}
.wsb7{word-spacing:327.216000px;}
.ws5d{word-spacing:330.718200px;}
.wsad{word-spacing:331.776000px;}
.ws5b{word-spacing:342.960000px;}
.ws62{word-spacing:350.448000px;}
.wsb1{word-spacing:358.080000px;}
.ws70{word-spacing:358.882800px;}
.ws49{word-spacing:358.896000px;}
.wsa8{word-spacing:359.808000px;}
.wsae{word-spacing:360.912000px;}
.wsa9{word-spacing:361.584000px;}
.wsac{word-spacing:362.928000px;}
.wsa7{word-spacing:371.136000px;}
.ws5a{word-spacing:382.896000px;}
.ws60{word-spacing:389.808000px;}
.wsc0{word-spacing:1861.164000px;}
.ws48{word-spacing:1862.840400px;}
.ws10b{word-spacing:1863.164400px;}
.wse5{word-spacing:1864.028400px;}
.wsed{word-spacing:1865.216400px;}
.wsfb{word-spacing:1865.432400px;}
.ws88{word-spacing:1865.972400px;}
.ws162{word-spacing:1866.026400px;}
.wsa5{word-spacing:1867.376400px;}
.ws95{word-spacing:1867.430400px;}
.wsd5{word-spacing:1867.916400px;}
.ws27{word-spacing:1869.590400px;}
.ws71{word-spacing:1870.130400px;}
.ws137{word-spacing:1870.184400px;}
._15{margin-left:-2619.484200px;}
._d5{margin-left:-18.912000px;}
._c{margin-left:-17.681935px;}
._12{margin-left:-15.978000px;}
._3{margin-left:-14.280000px;}
._14{margin-left:-13.008000px;}
._2{margin-left:-11.730000px;}
._11{margin-left:-10.368000px;}
._16{margin-left:-9.000000px;}
._b{margin-left:-7.935000px;}
._10{margin-left:-6.690000px;}
._8{margin-left:-5.541000px;}
._6{margin-left:-4.500000px;}
._5{margin-left:-3.060000px;}
._1{margin-left:-2.040000px;}
._0{margin-left:-1.020000px;}
._4{width:1.020000px;}
._9{width:2.970000px;}
._7{width:3.990000px;}
._a{width:5.334000px;}
._92{width:6.801160px;}
._d{width:7.860904px;}
._da{width:10.425000px;}
._d9{width:12.375000px;}
._93{width:14.719800px;}
._db{width:28.035599px;}
._d1{width:33.960000px;}
._d6{width:36.899400px;}
._d3{width:38.579400px;}
._d8{width:39.875269px;}
._d7{width:41.278800px;}
._d4{width:45.242424px;}
._d2{width:47.159400px;}
._96{width:53.280000px;}
._97{width:55.620000px;}
._95{width:57.300000px;}
._f{width:60.000000px;}
._94{width:61.080000px;}
._13{width:62.340000px;}
._e{width:68.460000px;}
._b4{width:108.402000px;}
._bc{width:128.104800px;}
._99{width:135.180000px;}
._4b{width:141.936000px;}
._50{width:146.496600px;}
._5f{width:154.704000px;}
._40{width:159.852000px;}
._5a{width:166.488000px;}
._42{width:168.408000px;}
._c5{width:171.066000px;}
._45{width:180.648000px;}
._55{width:182.256000px;}
._b3{width:186.737400px;}
._44{width:190.148400px;}
._5e{width:192.064800px;}
._c7{width:193.380000px;}
._37{width:194.400000px;}
._3e{width:197.760000px;}
._a3{width:199.705200px;}
._c1{width:200.868000px;}
._4a{width:202.896600px;}
._ac{width:206.160000px;}
._3d{width:210.528000px;}
._89{width:212.836800px;}
._ce{width:214.890000px;}
._a0{width:217.572000px;}
._7f{width:219.387000px;}
._32{width:221.136000px;}
._52{width:223.188000px;}
._59{width:225.024000px;}
._8f{width:228.335400px;}
._9c{width:229.894200px;}
._b0{width:231.040200px;}
._cf{width:232.728000px;}
._98{width:234.433800px;}
._34{width:238.176000px;}
._82{width:239.568000px;}
._41{width:241.200000px;}
._57{width:246.372000px;}
._3a{width:248.172000px;}
._b5{width:249.554400px;}
._39{width:252.852000px;}
._84{width:254.036400px;}
._b8{width:256.349400px;}
._75{width:257.520000px;}
._af{width:258.684000px;}
._1f{width:261.120000px;}
._7a{width:263.184000px;}
._c8{width:265.908000px;}
._7b{width:267.168000px;}
._d0{width:268.459200px;}
._86{width:269.662800px;}
._ca{width:271.401600px;}
._8e{width:273.073800px;}
._33{width:276.312000px;}
._25{width:278.160000px;}
._bf{width:279.511200px;}
._c3{width:280.593600px;}
._1a{width:282.516000px;}
._bb{width:283.876200px;}
._6a{width:289.073400px;}
._77{width:291.504000px;}
._c6{width:294.273000px;}
._53{width:295.992000px;}
._3c{width:297.743400px;}
._47{width:299.124000px;}
._19{width:301.920000px;}
._65{width:303.711000px;}
._b9{width:305.925000px;}
._4d{width:309.371400px;}
._29{width:310.680000px;}
._c0{width:311.724600px;}
._7d{width:314.032800px;}
._4e{width:315.840000px;}
._9f{width:318.384000px;}
._9b{width:320.199000px;}
._ab{width:321.562800px;}
._cb{width:322.629600px;}
._21{width:325.212000px;}
._2e{width:326.880000px;}
._62{width:329.208000px;}
._1c{width:331.121400px;}
._72{width:333.360000px;}
._a9{width:334.396800px;}
._2b{width:335.635800px;}
._a5{width:336.836400px;}
._1e{width:338.064000px;}
._1d{width:339.600000px;}
._36{width:342.219000px;}
._54{width:344.172600px;}
._4f{width:345.773400px;}
._30{width:347.383800px;}
._24{width:348.805800px;}
._27{width:350.365200px;}
._88{width:351.840000px;}
._81{width:353.225400px;}
._9e{width:354.366600px;}
._61{width:356.352000px;}
._ad{width:357.595800px;}
._28{width:359.472000px;}
._b1{width:360.513000px;}
._b7{width:363.621000px;}
._68{width:365.328000px;}
._49{width:366.454200px;}
._71{width:368.271000px;}
._6e{width:373.538400px;}
._8a{width:377.760000px;}
._a1{width:379.005600px;}
._a8{width:380.738400px;}
._cc{width:382.884000px;}
._a7{width:385.365000px;}
._cd{width:387.091800px;}
._22{width:389.088000px;}
._c9{width:390.928200px;}
._c2{width:394.046400px;}
._bd{width:398.047800px;}
._a6{width:400.184400px;}
._6f{width:414.960000px;}
._a4{width:417.429000px;}
._b6{width:458.901000px;}
._73{width:465.600000px;}
._17{width:537.942000px;}
._2c{width:544.800000px;}
._26{width:546.480000px;}
._9a{width:563.567400px;}
._69{width:586.441800px;}
._c4{width:588.666000px;}
._3f{width:635.576400px;}
._78{width:670.468800px;}
._6c{width:675.130800px;}
._56{width:687.933600px;}
._31{width:695.236800px;}
._5d{width:704.752800px;}
._8c{width:706.694400px;}
._38{width:716.860200px;}
._80{width:719.247000px;}
._4c{width:726.311400px;}
._67{width:734.233800px;}
._51{width:738.886200px;}
._64{width:743.795400px;}
._7c{width:746.486400px;}
._85{width:750.198600px;}
._70{width:752.013600px;}
._20{width:760.327200px;}
._46{width:763.690200px;}
._43{width:767.265600px;}
._6b{width:769.223400px;}
._74{width:771.556200px;}
._87{width:784.405800px;}
._18{width:788.599800px;}
._2d{width:810.153600px;}
._60{width:832.997400px;}
._ae{width:838.944600px;}
._b2{width:866.079600px;}
._7e{width:900.594000px;}
._1b{width:909.230400px;}
._8b{width:922.552800px;}
._83{width:925.153200px;}
._90{width:930.400200px;}
._91{width:933.825000px;}
._aa{width:935.285400px;}
._35{width:936.581400px;}
._66{width:938.151000px;}
._ba{width:940.103400px;}
._58{width:941.698800px;}
._3b{width:948.016200px;}
._2a{width:951.484200px;}
._2f{width:954.777000px;}
._76{width:957.470400px;}
._79{width:960.375000px;}
._48{width:971.767800px;}
._be{width:978.956400px;}
._23{width:1014.313200px;}
._a2{width:1025.687400px;}
._9d{width:1027.013400px;}
._6d{width:1034.433600px;}
._8d{width:1035.942600px;}
._63{width:1058.996400px;}
._5c{width:1061.191800px;}
._5b{width:1411.234800px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:33.231000px;}
.fsa{font-size:34.980000px;}
.fs6{font-size:38.478000px;}
.fs8{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y52{bottom:89.716500px;}
.y25{bottom:89.716650px;}
.y9a{bottom:89.716800px;}
.y84{bottom:90.865950px;}
.yf7{bottom:91.437300px;}
.yb6{bottom:92.034450px;}
.y34{bottom:107.716650px;}
.y24{bottom:107.716800px;}
.y83{bottom:108.863700px;}
.yf6{bottom:109.435050px;}
.y19d{bottom:109.700700px;}
.y51{bottom:109.700850px;}
.y175{bottom:109.718100px;}
.yb5{bottom:110.034450px;}
.yce{bottom:125.716650px;}
.y33{bottom:125.716800px;}
.y10b{bottom:125.716950px;}
.y82{bottom:126.863700px;}
.yf5{bottom:127.432800px;}
.y19c{bottom:129.684900px;}
.y50{bottom:129.685050px;}
.yb3{bottom:129.690600px;}
.y163{bottom:129.690750px;}
.y174{bottom:129.696600px;}
.y13c{bottom:130.711800px;}
.y32{bottom:143.716800px;}
.y99{bottom:143.716950px;}
.y81{bottom:144.863700px;}
.yf4{bottom:145.430550px;}
.y4f{bottom:149.669250px;}
.yb2{bottom:149.672100px;}
.y19b{bottom:149.674950px;}
.y173{bottom:149.675100px;}
.y23{bottom:149.677500px;}
.y135{bottom:149.683050px;}
.ycd{bottom:161.716800px;}
.y98{bottom:161.716950px;}
.yf3{bottom:163.432800px;}
.y19a{bottom:169.653450px;}
.y4e{bottom:169.653600px;}
.yfa{bottom:169.656300px;}
.y22{bottom:169.659000px;}
.y153{bottom:169.659300px;}
.y134{bottom:169.664550px;}
.y13b{bottom:179.716800px;}
.y10a{bottom:179.716950px;}
.y97{bottom:179.717100px;}
.yba{bottom:181.108800px;}
.yf2{bottom:181.430550px;}
.y80{bottom:182.589600px;}
.y199{bottom:189.637650px;}
.y4d{bottom:189.637800px;}
.y21{bottom:189.640500px;}
.y31{bottom:189.643350px;}
.y162{bottom:189.643500px;}
.y133{bottom:189.646050px;}
.y11b{bottom:189.648900px;}
.y152{bottom:189.649350px;}
.yb1{bottom:189.654300px;}
.y13a{bottom:197.716800px;}
.y96{bottom:197.717100px;}
.yb9{bottom:199.106550px;}
.yf1{bottom:199.430550px;}
.y86{bottom:205.170750px;}
.y7f{bottom:207.251100px;}
.y20{bottom:209.622000px;}
.y30{bottom:209.624850px;}
.ycc{bottom:209.627550px;}
.y198{bottom:209.627700px;}
.y151{bottom:209.627850px;}
.y11a{bottom:209.630400px;}
.yb0{bottom:209.635800px;}
.y139{bottom:215.716800px;}
.y109{bottom:215.717100px;}
.y85{bottom:223.170750px;}
.y197{bottom:229.606200px;}
.y1f{bottom:229.606350px;}
.ycb{bottom:229.609050px;}
.y119{bottom:229.611900px;}
.y150{bottom:229.612050px;}
.yaf{bottom:229.617300px;}
.y7e{bottom:231.912450px;}
.y138{bottom:233.716800px;}
.y108{bottom:233.717100px;}
.yf0{bottom:236.260800px;}
.y9e{bottom:243.580200px;}
.y195{bottom:249.590400px;}
.y1e{bottom:249.590550px;}
.y110{bottom:249.593400px;}
.y147{bottom:249.601650px;}
.y137{bottom:251.716800px;}
.y196{bottom:254.335650px;}
.y7d{bottom:256.573950px;}
.y9d{bottom:261.580200px;}
.yef{bottom:262.233300px;}
.y194{bottom:269.574600px;}
.y120{bottom:269.574750px;}
.y1d{bottom:269.574900px;}
.y107{bottom:269.577600px;}
.yae{bottom:269.580300px;}
.y2f{bottom:269.583150px;}
.y161{bottom:269.592150px;}
.y136{bottom:269.716800px;}
.yed{bottom:277.233300px;}
.y9c{bottom:279.582450px;}
.y7c{bottom:281.235300px;}
.y193{bottom:289.558950px;}
.y1c{bottom:289.559100px;}
.yca{bottom:289.561800px;}
.y2e{bottom:289.564650px;}
.y11f{bottom:289.570050px;}
.y160{bottom:289.570650px;}
.yee{bottom:292.233300px;}
.y9b{bottom:297.580200px;}
.y7b{bottom:305.896800px;}
.y1b{bottom:309.543300px;}
.y2d{bottom:309.546150px;}
.y15f{bottom:309.549150px;}
.y11e{bottom:309.551550px;}
.y192{bottom:309.554700px;}
.y172{bottom:309.554850px;}
.yec{bottom:313.989150px;}
.yeb{bottom:321.489150px;}
.y10c{bottom:328.407000px;}
.y79{bottom:329.105400px;}
.y1a{bottom:329.527650px;}
.y106{bottom:329.533050px;}
.y191{bottom:329.533200px;}
.y171{bottom:329.533350px;}
.y78{bottom:336.605400px;}
.y7a{bottom:344.105400px;}
.y13f{bottom:345.556500px;}
.y190{bottom:349.511700px;}
.y2c{bottom:349.511850px;}
.y105{bottom:349.514550px;}
.yf9{bottom:349.517400px;}
.y19{bottom:349.520100px;}
.y4c{bottom:349.533900px;}
.yea{bottom:354.961650px;}
.y13e{bottom:363.556500px;}
.y77{bottom:365.861250px;}
.y2b{bottom:369.496050px;}
.y11d{bottom:369.498750px;}
.yf8{bottom:369.498900px;}
.y18{bottom:369.501600px;}
.y18f{bottom:369.513150px;}
.y4b{bottom:369.515400px;}
.y76{bottom:373.361250px;}
.ye9{bottom:380.934000px;}
.y13d{bottom:381.556500px;}
.ye8{bottom:388.434000px;}
.y11c{bottom:389.480250px;}
.y2a{bottom:389.480400px;}
.y17{bottom:389.483100px;}
.y18e{bottom:389.491650px;}
.y1b2{bottom:401.396400px;}
.y75{bottom:404.070000px;}
.y16{bottom:409.464600px;}
.y18d{bottom:409.470150px;}
.y15e{bottom:409.470450px;}
.yad{bottom:409.472850px;}
.y132{bottom:409.475700px;}
.y14f{bottom:409.476150px;}
.ye7{bottom:417.690000px;}
.y1b1{bottom:419.394150px;}
.ye6{bottom:425.190000px;}
.y74{bottom:428.731350px;}
.y18c{bottom:429.448650px;}
.y15{bottom:429.448950px;}
.yac{bottom:429.454350px;}
.y14e{bottom:429.454650px;}
.y131{bottom:429.457200px;}
.y170{bottom:429.460350px;}
.y56{bottom:430.319250px;}
.y1b0{bottom:437.391900px;}
.y100{bottom:442.147050px;}
.y55{bottom:448.317000px;}
.y18b{bottom:449.433000px;}
.y29{bottom:449.433150px;}
.yab{bottom:449.435850px;}
.y130{bottom:449.438700px;}
.y16f{bottom:449.438850px;}
.y14{bottom:449.441400px;}
.y124{bottom:453.322950px;}
.y73{bottom:453.392700px;}
.ye5{bottom:454.445850px;}
.y118{bottom:454.927650px;}
.y1af{bottom:455.389650px;}
.yff{bottom:460.149300px;}
.ye4{bottom:461.945850px;}
.y54{bottom:466.314750px;}
.y28{bottom:469.417350px;}
.y12c{bottom:469.420200px;}
.y13{bottom:469.422900px;}
.y117{bottom:469.425600px;}
.y18a{bottom:469.434450px;}
.y123{bottom:471.320700px;}
.y1ae{bottom:473.387400px;}
.y72{bottom:478.054200px;}
.yfe{bottom:478.147050px;}
.y53{bottom:484.312500px;}
.y122{bottom:489.318450px;}
.y27{bottom:489.401700px;}
.y12{bottom:489.404400px;}
.y116{bottom:489.407100px;}
.y189{bottom:489.412950px;}
.y16e{bottom:489.418950px;}
.y1ad{bottom:491.385150px;}
.ye3{bottom:495.418200px;}
.yfd{bottom:496.151550px;}
.y71{bottom:502.715550px;}
.y121{bottom:507.316200px;}
.y11{bottom:509.385900px;}
.y10f{bottom:509.388600px;}
.y104{bottom:509.391450px;}
.y16d{bottom:509.397450px;}
.yfc{bottom:514.149300px;}
.ye2{bottom:525.607200px;}
.y70{bottom:525.924300px;}
.y188{bottom:529.369950px;}
.y10{bottom:529.370100px;}
.y103{bottom:529.372950px;}
.y12b{bottom:529.375650px;}
.y16c{bottom:529.375950px;}
.y14d{bottom:529.387350px;}
.yfb{bottom:532.147050px;}
.y6e{bottom:540.924300px;}
.y3d{bottom:543.490200px;}
.y187{bottom:549.354150px;}
.yf{bottom:549.354450px;}
.y12a{bottom:549.357150px;}
.yc9{bottom:549.365400px;}
.y14c{bottom:549.365850px;}
.ye1{bottom:555.796200px;}
.y6f{bottom:555.924300px;}
.yb4{bottom:557.871600px;}
.y3c{bottom:561.487950px;}
.y186{bottom:569.338500px;}
.ye{bottom:569.338650px;}
.y115{bottom:569.341350px;}
.y14b{bottom:569.344350px;}
.yc8{bottom:569.346900px;}
.yaa{bottom:569.360700px;}
.y146{bottom:574.833150px;}
.y6d{bottom:577.680150px;}
.y3b{bottom:579.485700px;}
.ye0{bottom:585.985200px;}
.y185{bottom:589.322700px;}
.y102{bottom:589.322850px;}
.yc7{bottom:589.328400px;}
.y16b{bottom:589.328700px;}
.y145{bottom:589.333950px;}
.ya9{bottom:589.342200px;}
.y6b{bottom:592.680150px;}
.y3a{bottom:597.485700px;}
.y6c{bottom:607.680150px;}
.y1ac{bottom:609.307050px;}
.yd{bottom:609.307200px;}
.yc6{bottom:609.309900px;}
.y129{bottom:609.312600px;}
.y144{bottom:609.315450px;}
.y15d{bottom:609.318600px;}
.ya8{bottom:609.323700px;}
.y184{bottom:609.324300px;}
.y39{bottom:615.490200px;}
.ydf{bottom:616.174200px;}
.yb8{bottom:627.379500px;}
.y1ab{bottom:629.291250px;}
.yc5{bottom:629.291400px;}
.y128{bottom:629.294100px;}
.y12f{bottom:629.296950px;}
.y15c{bottom:629.297100px;}
.y183{bottom:629.302800px;}
.ya7{bottom:629.305200px;}
.y6a{bottom:630.888900px;}
.y38{bottom:633.487950px;}
.yde{bottom:642.146700px;}
.yb7{bottom:645.377250px;}
.yc4{bottom:649.275600px;}
.y95{bottom:649.278450px;}
.y10e{bottom:649.281150px;}
.y182{bottom:649.281300px;}
.y16a{bottom:649.281450px;}
.ya6{bottom:649.286700px;}
.y1aa{bottom:649.287000px;}
.ydd{bottom:649.646700px;}
.y37{bottom:651.485700px;}
.y69{bottom:654.097500px;}
.y68{bottom:661.597500px;}
.y181{bottom:669.259800px;}
.y94{bottom:669.259950px;}
.y10d{bottom:669.262650px;}
.y1a9{bottom:669.265500px;}
.y14a{bottom:669.265650px;}
.y114{bottom:669.268200px;}
.yc3{bottom:669.270900px;}
.y15b{bottom:669.271350px;}
.y36{bottom:669.485700px;}
.ydc{bottom:683.119050px;}
.y35{bottom:687.485700px;}
.y180{bottom:689.244000px;}
.y93{bottom:689.244150px;}
.ya5{bottom:689.249700px;}
.y15a{bottom:689.249850px;}
.yc2{bottom:689.252400px;}
.y67{bottom:692.306100px;}
.yc{bottom:709.039200px;}
.y17f{bottom:709.228200px;}
.y92{bottom:709.228350px;}
.y113{bottom:709.231200px;}
.yc1{bottom:709.233900px;}
.ydb{bottom:713.308050px;}
.y66{bottom:715.514850px;}
.y65{bottom:723.014850px;}
.yb{bottom:727.039200px;}
.y91{bottom:729.212700px;}
.yc0{bottom:729.215400px;}
.y17e{bottom:729.218250px;}
.y159{bottom:729.229950px;}
.y1a8{bottom:729.275850px;}
.yda{bottom:743.497050px;}
.y17d{bottom:749.196750px;}
.y90{bottom:749.196900px;}
.y143{bottom:749.199750px;}
.y158{bottom:749.208450px;}
.y4a{bottom:749.213400px;}
.y1a7{bottom:749.254350px;}
.y149{bottom:751.181100px;}
.y64{bottom:753.723450px;}
.y17c{bottom:769.181100px;}
.ya4{bottom:769.181250px;}
.y157{bottom:769.186950px;}
.y8f{bottom:769.189500px;}
.y49{bottom:769.194900px;}
.y1a6{bottom:769.232850px;}
.yd9{bottom:773.685900px;}
.y63{bottom:778.384950px;}
.ya{bottom:787.558950px;}
.y17b{bottom:789.165300px;}
.ya3{bottom:789.165450px;}
.y8e{bottom:789.171000px;}
.y48{bottom:789.176400px;}
.y1a5{bottom:789.211350px;}
.y62{bottom:803.046300px;}
.yd8{bottom:803.874900px;}
.y9{bottom:805.558950px;}
.y17a{bottom:809.149500px;}
.ya2{bottom:809.149650px;}
.y8d{bottom:809.152500px;}
.y47{bottom:809.157900px;}
.y1a4{bottom:809.189850px;}
.y8{bottom:823.567950px;}
.y61{bottom:826.255050px;}
.y8c{bottom:829.134000px;}
.y101{bottom:829.136700px;}
.y46{bottom:829.139400px;}
.y179{bottom:829.145400px;}
.y1a3{bottom:829.168350px;}
.y60{bottom:833.755050px;}
.yd7{bottom:834.063900px;}
.y7{bottom:841.565700px;}
.y8b{bottom:849.118200px;}
.y45{bottom:849.120900px;}
.y169{bottom:849.123900px;}
.y1a2{bottom:849.146850px;}
.y6{bottom:859.563450px;}
.yd6{bottom:864.252900px;}
.y5f{bottom:864.463650px;}
.y44{bottom:869.102400px;}
.y12e{bottom:869.107950px;}
.y168{bottom:869.108100px;}
.y1a1{bottom:869.125350px;}
.y5{bottom:877.561200px;}
.y43{bottom:889.086600px;}
.y12d{bottom:889.089450px;}
.ya1{bottom:889.094850px;}
.y156{bottom:889.103850px;}
.y5e{bottom:889.125150px;}
.yd5{bottom:894.441900px;}
.y4{bottom:895.558950px;}
.y42{bottom:909.070950px;}
.y8a{bottom:909.073650px;}
.ya0{bottom:909.076350px;}
.y127{bottom:909.081900px;}
.y155{bottom:909.082350px;}
.y178{bottom:909.099600px;}
.y3{bottom:913.558950px;}
.y5d{bottom:913.786500px;}
.yd4{bottom:924.630900px;}
.y41{bottom:929.055150px;}
.y9f{bottom:929.057850px;}
.y112{bottom:929.060700px;}
.y154{bottom:929.060850px;}
.y126{bottom:929.063400px;}
.y167{bottom:929.066700px;}
.ybf{bottom:929.068950px;}
.y177{bottom:929.078100px;}
.y5c{bottom:938.448000px;}
.y89{bottom:949.039350px;}
.y111{bottom:949.042200px;}
.y40{bottom:949.044900px;}
.y166{bottom:949.045200px;}
.y142{bottom:949.047600px;}
.ybe{bottom:949.050450px;}
.y176{bottom:949.056600px;}
.yd3{bottom:954.819900px;}
.y5b{bottom:963.109350px;}
.y1a0{bottom:969.023550px;}
.y88{bottom:969.023700px;}
.y125{bottom:969.026400px;}
.y141{bottom:969.029100px;}
.ybd{bottom:969.031950px;}
.y165{bottom:969.035100px;}
.y2{bottom:982.582650px;}
.yd2{bottom:985.008750px;}
.y5a{bottom:987.770700px;}
.y3f{bottom:989.007900px;}
.y140{bottom:989.010600px;}
.ybc{bottom:989.013450px;}
.y164{bottom:989.013600px;}
.y19f{bottom:989.019450px;}
.y87{bottom:1008.992100px;}
.ybb{bottom:1008.994950px;}
.y19e{bottom:1008.997950px;}
.y58{bottom:1013.105400px;}
.yd0{bottom:1013.106300px;}
.y148{bottom:1014.486750px;}
.y57{bottom:1020.605400px;}
.ycf{bottom:1020.606300px;}
.y1{bottom:1026.094350px;}
.y59{bottom:1028.105400px;}
.yd1{bottom:1028.106300px;}
.y3e{bottom:1028.976450px;}
.y26{bottom:1082.225850px;}
.h13{height:29.974362px;}
.h12{height:31.551960px;}
.h11{height:34.707156px;}
.he{height:43.296000px;}
.ha{height:50.868000px;}
.h5{height:51.414000px;}
.hb{height:52.611000px;}
.h9{height:54.120000px;}
.h4{height:55.560000px;}
.h7{height:59.532000px;}
.h8{height:60.918000px;}
.hc{height:62.172000px;}
.h6{height:66.672000px;}
.hd{height:73.296000px;}
.h3{height:73.476000px;}
.h10{height:87.684000px;}
.h2{height:94.452000px;}
.hf{height:103.296000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x54{left:-717.166800px;}
.x53{left:-714.157650px;}
.x55{left:-697.831650px;}
.x76{left:-693.944100px;}
.x71{left:-692.653950px;}
.x74{left:-691.525800px;}
.x70{left:-690.212100px;}
.x72{left:-687.338100px;}
.x4a{left:-685.789650px;}
.x5e{left:-684.543450px;}
.x49{left:-683.089650px;}
.x56{left:-681.969150px;}
.x48{left:-680.655450px;}
.x36{left:-678.225750px;}
.x47{left:-676.243800px;}
.x37{left:-572.125050px;}
.x39{left:-480.601050px;}
.x78{left:-477.171300px;}
.x79{left:-472.431300px;}
.x77{left:-469.264650px;}
.x73{left:-454.565100px;}
.x7a{left:-450.243300px;}
.x38{left:-448.393050px;}
.x4d{left:-446.972550px;}
.x3b{left:-378.553050px;}
.x7b{left:-370.683300px;}
.x3a{left:-352.177050px;}
.x3d{left:-276.505050px;}
.x3c{left:-249.277050px;}
.x3f{left:-171.925050px;}
.x4b{left:-159.917550px;}
.x3e{left:-142.249050px;}
.x0{left:0.000000px;}
.x7e{left:67.684500px;}
.x6{left:71.234100px;}
.x4{left:72.283500px;}
.x2{left:76.188300px;}
.x84{left:78.099900px;}
.x9{left:79.847850px;}
.x1{left:81.037950px;}
.x6f{left:86.006550px;}
.x2a{left:90.707700px;}
.x7c{left:92.909250px;}
.x7{left:93.973500px;}
.x61{left:96.873750px;}
.x5{left:98.050950px;}
.x60{left:102.668250px;}
.x5f{left:105.373650px;}
.x3{left:106.693350px;}
.x2b{left:110.043000px;}
.x69{left:113.929950px;}
.x65{left:115.220100px;}
.x40{left:116.394450px;}
.x64{left:117.662100px;}
.x66{left:120.535950px;}
.x21{left:122.084850px;}
.x34{left:123.331350px;}
.x20{left:124.784700px;}
.x2c{left:125.905500px;}
.x1f{left:127.218750px;}
.xc{left:129.648300px;}
.x1e{left:131.630400px;}
.x58{left:205.970400px;}
.x41{left:211.734300px;}
.x42{left:218.406300px;}
.xd{left:235.752300px;}
.x52{left:279.153900px;}
.x4f{left:283.113900px;}
.x59{left:284.294400px;}
.x4e{left:286.437900px;}
.x44{left:291.570300px;}
.x5a{left:296.642400px;}
.x50{left:300.009900px;}
.x43{left:308.046300px;}
.xf{left:327.276300px;}
.x6b{left:330.702450px;}
.x6c{left:335.442450px;}
.x6a{left:338.609250px;}
.x67{left:353.309100px;}
.x6d{left:357.630450px;}
.xe{left:359.484300px;}
.x24{left:360.902100px;}
.x5c{left:371.822400px;}
.x5b{left:374.066400px;}
.x46{left:382.122300px;}
.x4c{left:390.014100px;}
.x45{left:396.138300px;}
.x51{left:404.145900px;}
.x83{left:427.835400px;}
.x11{left:429.324300px;}
.x6e{left:437.190450px;}
.x10{left:455.700300px;}
.xa{left:462.794250px;}
.x5d{left:475.502400px;}
.xb{left:483.656250px;}
.x85{left:490.532100px;}
.x86{left:498.269250px;}
.x75{left:517.841400px;}
.x13{left:531.372300px;}
.x12{left:558.600300px;}
.x57{left:565.322100px;}
.x7f{left:608.244300px;}
.x80{left:616.445550px;}
.x15{left:635.952300px;}
.x22{left:647.956950px;}
.x81{left:653.670750px;}
.x82{left:661.871850px;}
.x14{left:665.628300px;}
.x8{left:715.881000px;}
.x35{left:719.026500px;}
.x7d{left:726.480000px;}
.x62{left:893.880600px;}
.x17{left:899.572350px;}
.x16{left:924.268500px;}
.x63{left:931.153500px;}
.x2e{left:1013.845200px;}
.x18{left:1019.608350px;}
.x19{left:1026.280350px;}
.x29{left:1087.028550px;}
.x26{left:1090.988550px;}
.x2f{left:1092.169200px;}
.x25{left:1094.312550px;}
.x1b{left:1099.444350px;}
.x30{left:1104.517200px;}
.x27{left:1107.884550px;}
.x1a{left:1115.920350px;}
.x32{left:1179.697200px;}
.x31{left:1181.941200px;}
.x1d{left:1189.996350px;}
.x23{left:1197.888450px;}
.x1c{left:1204.012350px;}
.x28{left:1212.020550px;}
.x33{left:1283.377200px;}
.x68{left:1325.715450px;}
.x2d{left:1373.196900px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v7{vertical-align:-16.872000pt;}
.v4{vertical-align:-10.666667pt;}
.v5{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.851733pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:26.666667pt;}
.ls10{letter-spacing:-6.629333pt;}
.ls5c{letter-spacing:-5.826667pt;}
.ls1a{letter-spacing:-4.480000pt;}
.ls1d{letter-spacing:-3.413333pt;}
.ls24{letter-spacing:-3.285333pt;}
.ls14{letter-spacing:-2.933333pt;}
.ls3c{letter-spacing:-2.581333pt;}
.ls1c{letter-spacing:-2.560000pt;}
.ls3b{letter-spacing:-2.229333pt;}
.ls1b{letter-spacing:-2.048000pt;}
.ls12{letter-spacing:-2.026667pt;}
.ls2c{letter-spacing:-1.834667pt;}
.lsd{letter-spacing:-1.760000pt;}
.ls32{letter-spacing:-1.600000pt;}
.ls4c{letter-spacing:-1.520000pt;}
.ls19{letter-spacing:-1.493333pt;}
.ls26{letter-spacing:-1.466667pt;}
.ls51{letter-spacing:-1.418667pt;}
.ls1e{letter-spacing:-1.365333pt;}
.ls18{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.880000pt;}
.ls1f{letter-spacing:-0.853333pt;}
.ls55{letter-spacing:-0.709333pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls16{letter-spacing:-0.426667pt;}
.ls23{letter-spacing:-0.410667pt;}
.ls53{letter-spacing:-0.405333pt;}
.ls59{letter-spacing:-0.354667pt;}
.ls22{letter-spacing:-0.352000pt;}
.ls30{letter-spacing:-0.320000pt;}
.ls4a{letter-spacing:-0.304000pt;}
.ls28{letter-spacing:-0.293333pt;}
.ls54{letter-spacing:-0.253333pt;}
.ls20{letter-spacing:-0.234667pt;}
.ls4d{letter-spacing:-0.202667pt;}
.ls27{letter-spacing:-0.176000pt;}
.ls4b{letter-spacing:-0.152000pt;}
.ls25{letter-spacing:-0.117333pt;}
.ls52{letter-spacing:-0.101333pt;}
.ls45{letter-spacing:-0.068405pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls3e{letter-spacing:-0.053333pt;}
.ls4e{letter-spacing:-0.050667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls49{letter-spacing:0.000107pt;}
.ls29{letter-spacing:0.000144pt;}
.ls5b{letter-spacing:0.029539pt;}
.ls34{letter-spacing:0.034203pt;}
.ls0{letter-spacing:0.050667pt;}
.ls3d{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.058667pt;}
.ls2e{letter-spacing:0.068405pt;}
.ls46{letter-spacing:0.101333pt;}
.ls2d{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.117333pt;}
.ls44{letter-spacing:0.124373pt;}
.ls8{letter-spacing:0.148981pt;}
.ls4f{letter-spacing:0.152000pt;}
.ls43{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.176000pt;}
.ls58{letter-spacing:0.202667pt;}
.ls2f{letter-spacing:0.213333pt;}
.ls7{letter-spacing:0.234667pt;}
.ls2b{letter-spacing:0.240000pt;}
.ls41{letter-spacing:0.266667pt;}
.ls31{letter-spacing:0.293333pt;}
.ls48{letter-spacing:0.304000pt;}
.ls3a{letter-spacing:0.307824pt;}
.ls38{letter-spacing:0.352000pt;}
.ls2a{letter-spacing:0.410667pt;}
.ls21{letter-spacing:0.469333pt;}
.ls5a{letter-spacing:0.506667pt;}
.ls35{letter-spacing:0.528000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls57{letter-spacing:0.557333pt;}
.ls6{letter-spacing:0.586667pt;}
.ls56{letter-spacing:0.608000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls37{letter-spacing:0.645333pt;}
.ls11{letter-spacing:0.720000pt;}
.ls3f{letter-spacing:0.762667pt;}
.ls40{letter-spacing:0.880000pt;}
.ls36{letter-spacing:0.938667pt;}
.ls15{letter-spacing:0.960000pt;}
.lsa{letter-spacing:1.200000pt;}
.ls47{letter-spacing:1.317333pt;}
.ls42{letter-spacing:2.560000pt;}
.ls33{letter-spacing:3.109333pt;}
.ls3{letter-spacing:3.226667pt;}
.ls50{letter-spacing:3.698667pt;}
.ls5{letter-spacing:4.224000pt;}
.ls9{letter-spacing:4.282667pt;}
.ls39{letter-spacing:4.693333pt;}
.ws65{word-spacing:-19.680000pt;}
.ws1{word-spacing:-14.784000pt;}
.wsc5{word-spacing:-14.490667pt;}
.wsea{word-spacing:-13.258667pt;}
.wsef{word-spacing:-12.965333pt;}
.wsf9{word-spacing:-12.906667pt;}
.wse9{word-spacing:-12.848000pt;}
.wsf1{word-spacing:-12.672000pt;}
.ws7{word-spacing:-12.554667pt;}
.ws6{word-spacing:-12.496000pt;}
.ws4{word-spacing:-12.437333pt;}
.wsd8{word-spacing:-12.378667pt;}
.ws6f{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.261333pt;}
.wsd7{word-spacing:-12.202667pt;}
.ws89{word-spacing:-12.144000pt;}
.ws36{word-spacing:-12.096000pt;}
.ws37{word-spacing:-12.026667pt;}
.ws78{word-spacing:-11.968000pt;}
.ws97{word-spacing:-11.792000pt;}
.ws96{word-spacing:-11.616000pt;}
.ws5{word-spacing:-11.557333pt;}
.wsfc{word-spacing:-11.466667pt;}
.ws3{word-spacing:-11.440000pt;}
.wsc7{word-spacing:-11.413333pt;}
.ws107{word-spacing:-11.376000pt;}
.ws8a{word-spacing:-11.322667pt;}
.wsda{word-spacing:-11.306667pt;}
.wsf2{word-spacing:-11.253333pt;}
.ws139{word-spacing:-11.248000pt;}
.wsa2{word-spacing:-11.200000pt;}
.ws13c{word-spacing:-11.197333pt;}
.ws114{word-spacing:-10.944000pt;}
.ws13d{word-spacing:-10.842667pt;}
.ws127{word-spacing:-10.792000pt;}
.ws10c{word-spacing:-10.741333pt;}
.ws112{word-spacing:-10.690667pt;}
.wsfd{word-spacing:-10.666667pt;}
.ws10d{word-spacing:-10.640000pt;}
.ws116{word-spacing:-10.589333pt;}
.ws2{word-spacing:-10.560000pt;}
.ws126{word-spacing:-10.538667pt;}
.ws10f{word-spacing:-10.488000pt;}
.ws115{word-spacing:-10.437333pt;}
.wsec{word-spacing:-10.386667pt;}
.ws10e{word-spacing:-10.336000pt;}
.ws138{word-spacing:-10.234667pt;}
.ws113{word-spacing:-9.930667pt;}
.ws110{word-spacing:-9.880000pt;}
.ws13a{word-spacing:-9.829333pt;}
.wsf0{word-spacing:-9.797333pt;}
.ws13b{word-spacing:-9.677333pt;}
.wsfe{word-spacing:-9.626667pt;}
.wsd9{word-spacing:-9.600000pt;}
.ws98{word-spacing:-9.386667pt;}
.ws125{word-spacing:-9.221333pt;}
.ws111{word-spacing:-9.120000pt;}
.ws73{word-spacing:-9.034667pt;}
.ws4c{word-spacing:-8.960000pt;}
.ws4a{word-spacing:-8.533333pt;}
.ws4b{word-spacing:-8.320000pt;}
.wsee{word-spacing:-7.490384pt;}
.wsc6{word-spacing:-7.250965pt;}
.ws8{word-spacing:-7.182560pt;}
.ws14d{word-spacing:-6.232659pt;}
.ws117{word-spacing:-6.203120pt;}
.ws14c{word-spacing:-5.760040pt;}
.wsa{word-spacing:-5.690667pt;}
.ws163{word-spacing:-4.813333pt;}
.ws10a{word-spacing:-2.698667pt;}
.ws141{word-spacing:-2.685333pt;}
.ws13e{word-spacing:-2.634667pt;}
.ws29{word-spacing:-2.522667pt;}
.ws11a{word-spacing:-2.482667pt;}
.ws1f{word-spacing:-2.464000pt;}
.ws72{word-spacing:-2.405333pt;}
.ws8e{word-spacing:-2.346667pt;}
.wsd2{word-spacing:-2.293333pt;}
.wsf3{word-spacing:-2.288000pt;}
.ws120{word-spacing:-2.280000pt;}
.wsf8{word-spacing:-2.240000pt;}
.wsf6{word-spacing:-2.229333pt;}
.ws12f{word-spacing:-2.178667pt;}
.wsc2{word-spacing:-2.170667pt;}
.ws119{word-spacing:-2.128000pt;}
.wscf{word-spacing:-2.112000pt;}
.ws144{word-spacing:-2.077333pt;}
.ws80{word-spacing:-2.053333pt;}
.ws152{word-spacing:-2.026667pt;}
.wsf7{word-spacing:-1.994667pt;}
.ws11b{word-spacing:-1.976000pt;}
.wsf4{word-spacing:-1.936000pt;}
.ws8d{word-spacing:-1.877333pt;}
.wsc4{word-spacing:-1.818667pt;}
.ws149{word-spacing:-1.773333pt;}
.ws23{word-spacing:-1.760000pt;}
.ws13f{word-spacing:-1.722667pt;}
.ws9e{word-spacing:-1.701333pt;}
.ws10{word-spacing:-1.672000pt;}
.ws100{word-spacing:-1.653333pt;}
.ws25{word-spacing:-1.642667pt;}
.ws75{word-spacing:-1.584000pt;}
.ws11d{word-spacing:-1.570667pt;}
.ws24{word-spacing:-1.525333pt;}
.ws156{word-spacing:-1.520000pt;}
.wsf{word-spacing:-1.469333pt;}
.ws8c{word-spacing:-1.466667pt;}
.ws11e{word-spacing:-1.418667pt;}
.ws9d{word-spacing:-1.408000pt;}
.ws31{word-spacing:-1.349333pt;}
.ws160{word-spacing:-1.317333pt;}
.ws2c{word-spacing:-1.290667pt;}
.ws15d{word-spacing:-1.266667pt;}
.ws99{word-spacing:-1.232000pt;}
.ws148{word-spacing:-1.216000pt;}
.ws26{word-spacing:-1.200000pt;}
.ws1b{word-spacing:-1.173333pt;}
.ws15c{word-spacing:-1.165333pt;}
.ws86{word-spacing:-1.120000pt;}
.ws93{word-spacing:-1.114667pt;}
.ws12d{word-spacing:-1.064000pt;}
.wse1{word-spacing:-1.056000pt;}
.ws15a{word-spacing:-1.013333pt;}
.ws7f{word-spacing:-0.997333pt;}
.wsdf{word-spacing:-0.938667pt;}
.ws15b{word-spacing:-0.912000pt;}
.ws1c{word-spacing:-0.880000pt;}
.ws159{word-spacing:-0.861333pt;}
.wsa0{word-spacing:-0.821333pt;}
.ws90{word-spacing:-0.762667pt;}
.ws2b{word-spacing:-0.704000pt;}
.wsbe{word-spacing:-0.682667pt;}
.ws157{word-spacing:-0.658667pt;}
.ws9c{word-spacing:-0.645333pt;}
.ws38{word-spacing:-0.640000pt;}
.ws135{word-spacing:-0.608000pt;}
.ws39{word-spacing:-0.586667pt;}
.ws134{word-spacing:-0.557333pt;}
.wsc8{word-spacing:-0.528000pt;}
.ws87{word-spacing:-0.506667pt;}
.ws43{word-spacing:-0.469333pt;}
.ws165{word-spacing:-0.456000pt;}
.ws6a{word-spacing:-0.426667pt;}
.wse2{word-spacing:-0.410667pt;}
.ws14f{word-spacing:-0.354667pt;}
.ws2d{word-spacing:-0.352000pt;}
.ws136{word-spacing:-0.304000pt;}
.ws74{word-spacing:-0.293333pt;}
.ws3d{word-spacing:-0.234667pt;}
.ws14{word-spacing:-0.176000pt;}
.ws85{word-spacing:-0.160000pt;}
.ws143{word-spacing:-0.152000pt;}
.wsbc{word-spacing:-0.128000pt;}
.ws106{word-spacing:-0.124373pt;}
.ws20{word-spacing:-0.117333pt;}
.wsa4{word-spacing:-0.106667pt;}
.ws128{word-spacing:-0.101333pt;}
.wsdc{word-spacing:-0.058667pt;}
.ws150{word-spacing:-0.050667pt;}
.wse8{word-spacing:-0.034203pt;}
.wsb{word-spacing:0.000000pt;}
.ws129{word-spacing:0.050667pt;}
.ws2a{word-spacing:0.058667pt;}
.ws109{word-spacing:0.068405pt;}
.ws12a{word-spacing:0.101333pt;}
.wsd0{word-spacing:0.106667pt;}
.wse3{word-spacing:0.117333pt;}
.wsdb{word-spacing:0.176000pt;}
.ws104{word-spacing:0.213333pt;}
.ws76{word-spacing:0.234667pt;}
.ws132{word-spacing:0.253333pt;}
.ws47{word-spacing:0.293333pt;}
.wse{word-spacing:0.304000pt;}
.wsd3{word-spacing:0.320000pt;}
.ws2f{word-spacing:0.352000pt;}
.ws122{word-spacing:0.354667pt;}
.ws84{word-spacing:0.373333pt;}
.ws130{word-spacing:0.405333pt;}
.wscc{word-spacing:0.410667pt;}
.ws151{word-spacing:0.456000pt;}
.wse0{word-spacing:0.469333pt;}
.ws7c{word-spacing:0.528000pt;}
.ws83{word-spacing:0.533333pt;}
.ws9f{word-spacing:0.586667pt;}
.wscd{word-spacing:0.645333pt;}
.wsde{word-spacing:0.704000pt;}
.wsc{word-spacing:0.709333pt;}
.ws154{word-spacing:0.760000pt;}
.wsce{word-spacing:0.762667pt;}
.ws153{word-spacing:0.810667pt;}
.ws16{word-spacing:0.821333pt;}
.ws6e{word-spacing:0.853333pt;}
.ws155{word-spacing:0.861333pt;}
.ws1d{word-spacing:0.880000pt;}
.ws118{word-spacing:0.912000pt;}
.ws42{word-spacing:0.938667pt;}
.ws12c{word-spacing:0.962667pt;}
.ws17{word-spacing:0.997333pt;}
.ws133{word-spacing:1.013333pt;}
.wse6{word-spacing:1.056000pt;}
.ws7e{word-spacing:1.114667pt;}
.ws82{word-spacing:1.173333pt;}
.ws158{word-spacing:1.216000pt;}
.ws28{word-spacing:1.232000pt;}
.ws66{word-spacing:1.280000pt;}
.wsfa{word-spacing:1.290667pt;}
.ws11c{word-spacing:1.317333pt;}
.ws9b{word-spacing:1.349333pt;}
.ws6d{word-spacing:1.365333pt;}
.ws12e{word-spacing:1.368000pt;}
.wscb{word-spacing:1.408000pt;}
.ws32{word-spacing:1.466667pt;}
.ws161{word-spacing:1.469333pt;}
.ws69{word-spacing:1.493333pt;}
.ws22{word-spacing:1.525333pt;}
.wsff{word-spacing:1.546667pt;}
.ws21{word-spacing:1.584000pt;}
.wse7{word-spacing:1.642667pt;}
.wsc3{word-spacing:1.701333pt;}
.ws46{word-spacing:1.818667pt;}
.wsbd{word-spacing:1.834667pt;}
.wse4{word-spacing:1.866667pt;}
.ws164{word-spacing:1.874667pt;}
.ws40{word-spacing:1.877333pt;}
.wsf5{word-spacing:1.936000pt;}
.ws8f{word-spacing:1.994667pt;}
.ws35{word-spacing:2.026667pt;}
.ws68{word-spacing:2.048000pt;}
.ws3c{word-spacing:2.053333pt;}
.ws1a{word-spacing:2.112000pt;}
.ws123{word-spacing:2.128000pt;}
.ws8b{word-spacing:2.170667pt;}
.ws146{word-spacing:2.178667pt;}
.wsd4{word-spacing:2.186667pt;}
.wseb{word-spacing:2.229333pt;}
.ws1e{word-spacing:2.288000pt;}
.ws105{word-spacing:2.293333pt;}
.ws124{word-spacing:2.330667pt;}
.ws41{word-spacing:2.346667pt;}
.ws142{word-spacing:2.381333pt;}
.ws34{word-spacing:2.400000pt;}
.ws33{word-spacing:2.464000pt;}
.ws145{word-spacing:2.482667pt;}
.ws9a{word-spacing:2.522667pt;}
.ws6b{word-spacing:2.560000pt;}
.ws3f{word-spacing:2.581333pt;}
.ws121{word-spacing:2.584000pt;}
.ws103{word-spacing:2.613333pt;}
.ws14a{word-spacing:2.634667pt;}
.ws3e{word-spacing:2.640000pt;}
.wsa1{word-spacing:2.666667pt;}
.ws14e{word-spacing:2.685333pt;}
.wsc9{word-spacing:2.698667pt;}
.ws45{word-spacing:2.757333pt;}
.ws101{word-spacing:2.773333pt;}
.ws77{word-spacing:2.816000pt;}
.ws18{word-spacing:2.874667pt;}
.ws102{word-spacing:2.880000pt;}
.ws15{word-spacing:2.933333pt;}
.ws12b{word-spacing:2.938667pt;}
.ws15e{word-spacing:2.989333pt;}
.ws91{word-spacing:2.992000pt;}
.ws7a{word-spacing:3.050667pt;}
.ws79{word-spacing:3.109333pt;}
.ws14b{word-spacing:3.141333pt;}
.wsa3{word-spacing:3.146667pt;}
.ws7b{word-spacing:3.168000pt;}
.wsd6{word-spacing:3.200000pt;}
.ws30{word-spacing:3.226667pt;}
.ws131{word-spacing:3.242667pt;}
.ws13{word-spacing:3.285333pt;}
.wsd{word-spacing:3.293333pt;}
.ws3b{word-spacing:3.344000pt;}
.ws7d{word-spacing:3.402667pt;}
.ws6c{word-spacing:3.413333pt;}
.ws11f{word-spacing:3.445333pt;}
.ws2e{word-spacing:3.461333pt;}
.ws11{word-spacing:3.496000pt;}
.ws94{word-spacing:3.520000pt;}
.ws15f{word-spacing:3.546667pt;}
.ws92{word-spacing:3.578667pt;}
.ws81{word-spacing:3.637333pt;}
.wsd1{word-spacing:3.680000pt;}
.ws44{word-spacing:3.696000pt;}
.ws147{word-spacing:3.698667pt;}
.wsdd{word-spacing:3.754667pt;}
.ws108{word-spacing:3.813333pt;}
.wsc1{word-spacing:3.872000pt;}
.wsca{word-spacing:3.930667pt;}
.ws140{word-spacing:3.952000pt;}
.ws19{word-spacing:3.989333pt;}
.ws12{word-spacing:4.048000pt;}
.ws3a{word-spacing:4.106667pt;}
.ws67{word-spacing:4.480000pt;}
.wsb8{word-spacing:164.010667pt;}
.ws5e{word-spacing:164.821333pt;}
.ws52{word-spacing:171.050667pt;}
.wsb6{word-spacing:171.733333pt;}
.ws5f{word-spacing:188.757333pt;}
.ws63{word-spacing:189.482667pt;}
.wsb4{word-spacing:200.021333pt;}
.ws54{word-spacing:201.642667pt;}
.ws4d{word-spacing:204.458667pt;}
.ws4e{word-spacing:212.949333pt;}
.ws64{word-spacing:213.760000pt;}
.ws51{word-spacing:223.829333pt;}
.wsa6{word-spacing:232.661333pt;}
.wsaa{word-spacing:244.352000pt;}
.ws55{word-spacing:245.162667pt;}
.ws61{word-spacing:250.453333pt;}
.ws59{word-spacing:251.946667pt;}
.ws5c{word-spacing:254.037333pt;}
.ws56{word-spacing:254.506667pt;}
.ws53{word-spacing:255.573333pt;}
.ws58{word-spacing:256.213333pt;}
.ws4f{word-spacing:259.840000pt;}
.ws57{word-spacing:260.394667pt;}
.ws50{word-spacing:265.557333pt;}
.wsbf{word-spacing:269.632000pt;}
.wsbb{word-spacing:269.632533pt;}
.wsb3{word-spacing:276.906667pt;}
.wsb2{word-spacing:277.418667pt;}
.wsb0{word-spacing:277.717333pt;}
.wsb9{word-spacing:279.424000pt;}
.wsab{word-spacing:280.362667pt;}
.wsaf{word-spacing:280.704000pt;}
.wsba{word-spacing:286.421333pt;}
.wsb5{word-spacing:289.673600pt;}
.wsb7{word-spacing:290.858667pt;}
.ws5d{word-spacing:293.971733pt;}
.wsad{word-spacing:294.912000pt;}
.ws5b{word-spacing:304.853333pt;}
.ws62{word-spacing:311.509333pt;}
.wsb1{word-spacing:318.293333pt;}
.ws70{word-spacing:319.006933pt;}
.ws49{word-spacing:319.018667pt;}
.wsa8{word-spacing:319.829333pt;}
.wsae{word-spacing:320.810667pt;}
.wsa9{word-spacing:321.408000pt;}
.wsac{word-spacing:322.602667pt;}
.wsa7{word-spacing:329.898667pt;}
.ws5a{word-spacing:340.352000pt;}
.ws60{word-spacing:346.496000pt;}
.wsc0{word-spacing:1654.368000pt;}
.ws48{word-spacing:1655.858133pt;}
.ws10b{word-spacing:1656.146133pt;}
.wse5{word-spacing:1656.914133pt;}
.wsed{word-spacing:1657.970133pt;}
.wsfb{word-spacing:1658.162133pt;}
.ws88{word-spacing:1658.642133pt;}
.ws162{word-spacing:1658.690133pt;}
.wsa5{word-spacing:1659.890133pt;}
.ws95{word-spacing:1659.938133pt;}
.wsd5{word-spacing:1660.370133pt;}
.ws27{word-spacing:1661.858133pt;}
.ws71{word-spacing:1662.338133pt;}
.ws137{word-spacing:1662.386133pt;}
._15{margin-left:-2328.430400pt;}
._d5{margin-left:-16.810667pt;}
._c{margin-left:-15.717276pt;}
._12{margin-left:-14.202667pt;}
._3{margin-left:-12.693333pt;}
._14{margin-left:-11.562667pt;}
._2{margin-left:-10.426667pt;}
._11{margin-left:-9.216000pt;}
._16{margin-left:-8.000000pt;}
._b{margin-left:-7.053333pt;}
._10{margin-left:-5.946667pt;}
._8{margin-left:-4.925333pt;}
._6{margin-left:-4.000000pt;}
._5{margin-left:-2.720000pt;}
._1{margin-left:-1.813333pt;}
._0{margin-left:-0.906667pt;}
._4{width:0.906667pt;}
._9{width:2.640000pt;}
._7{width:3.546667pt;}
._a{width:4.741333pt;}
._92{width:6.045476pt;}
._d{width:6.987470pt;}
._da{width:9.266667pt;}
._d9{width:11.000000pt;}
._93{width:13.084267pt;}
._db{width:24.920533pt;}
._d1{width:30.186667pt;}
._d6{width:32.799467pt;}
._d3{width:34.292800pt;}
._d8{width:35.444683pt;}
._d7{width:36.692267pt;}
._d4{width:40.215488pt;}
._d2{width:41.919467pt;}
._96{width:47.360000pt;}
._97{width:49.440000pt;}
._95{width:50.933333pt;}
._f{width:53.333333pt;}
._94{width:54.293333pt;}
._13{width:55.413333pt;}
._e{width:60.853333pt;}
._b4{width:96.357333pt;}
._bc{width:113.870933pt;}
._99{width:120.160000pt;}
._4b{width:126.165333pt;}
._50{width:130.219200pt;}
._5f{width:137.514667pt;}
._40{width:142.090667pt;}
._5a{width:147.989333pt;}
._42{width:149.696000pt;}
._c5{width:152.058667pt;}
._45{width:160.576000pt;}
._55{width:162.005333pt;}
._b3{width:165.988800pt;}
._44{width:169.020800pt;}
._5e{width:170.724267pt;}
._c7{width:171.893333pt;}
._37{width:172.800000pt;}
._3e{width:175.786667pt;}
._a3{width:177.515733pt;}
._c1{width:178.549333pt;}
._4a{width:180.352533pt;}
._ac{width:183.253333pt;}
._3d{width:187.136000pt;}
._89{width:189.188267pt;}
._ce{width:191.013333pt;}
._a0{width:193.397333pt;}
._7f{width:195.010667pt;}
._32{width:196.565333pt;}
._52{width:198.389333pt;}
._59{width:200.021333pt;}
._8f{width:202.964800pt;}
._9c{width:204.350400pt;}
._b0{width:205.369067pt;}
._cf{width:206.869333pt;}
._98{width:208.385600pt;}
._34{width:211.712000pt;}
._82{width:212.949333pt;}
._41{width:214.400000pt;}
._57{width:218.997333pt;}
._3a{width:220.597333pt;}
._b5{width:221.826133pt;}
._39{width:224.757333pt;}
._84{width:225.810133pt;}
._b8{width:227.866133pt;}
._75{width:228.906667pt;}
._af{width:229.941333pt;}
._1f{width:232.106667pt;}
._7a{width:233.941333pt;}
._c8{width:236.362667pt;}
._7b{width:237.482667pt;}
._d0{width:238.630400pt;}
._86{width:239.700267pt;}
._ca{width:241.245867pt;}
._8e{width:242.732267pt;}
._33{width:245.610667pt;}
._25{width:247.253333pt;}
._bf{width:248.454400pt;}
._c3{width:249.416533pt;}
._1a{width:251.125333pt;}
._bb{width:252.334400pt;}
._6a{width:256.954133pt;}
._77{width:259.114667pt;}
._c6{width:261.576000pt;}
._53{width:263.104000pt;}
._3c{width:264.660800pt;}
._47{width:265.888000pt;}
._19{width:268.373333pt;}
._65{width:269.965333pt;}
._b9{width:271.933333pt;}
._4d{width:274.996800pt;}
._29{width:276.160000pt;}
._c0{width:277.088533pt;}
._7d{width:279.140267pt;}
._4e{width:280.746667pt;}
._9f{width:283.008000pt;}
._9b{width:284.621333pt;}
._ab{width:285.833600pt;}
._cb{width:286.781867pt;}
._21{width:289.077333pt;}
._2e{width:290.560000pt;}
._62{width:292.629333pt;}
._1c{width:294.330133pt;}
._72{width:296.320000pt;}
._a9{width:297.241600pt;}
._2b{width:298.342933pt;}
._a5{width:299.410133pt;}
._1e{width:300.501333pt;}
._1d{width:301.866667pt;}
._36{width:304.194667pt;}
._54{width:305.931200pt;}
._4f{width:307.354133pt;}
._30{width:308.785600pt;}
._24{width:310.049600pt;}
._27{width:311.435733pt;}
._88{width:312.746667pt;}
._81{width:313.978133pt;}
._9e{width:314.992533pt;}
._61{width:316.757333pt;}
._ad{width:317.862933pt;}
._28{width:319.530667pt;}
._b1{width:320.456000pt;}
._b7{width:323.218667pt;}
._68{width:324.736000pt;}
._49{width:325.737067pt;}
._71{width:327.352000pt;}
._6e{width:332.034133pt;}
._8a{width:335.786667pt;}
._a1{width:336.893867pt;}
._a8{width:338.434133pt;}
._cc{width:340.341333pt;}
._a7{width:342.546667pt;}
._cd{width:344.081600pt;}
._22{width:345.856000pt;}
._c9{width:347.491733pt;}
._c2{width:350.263467pt;}
._bd{width:353.820267pt;}
._a6{width:355.719467pt;}
._6f{width:368.853333pt;}
._a4{width:371.048000pt;}
._b6{width:407.912000pt;}
._73{width:413.866667pt;}
._17{width:478.170667pt;}
._2c{width:484.266667pt;}
._26{width:485.760000pt;}
._9a{width:500.948800pt;}
._69{width:521.281600pt;}
._c4{width:523.258667pt;}
._3f{width:564.956800pt;}
._78{width:595.972267pt;}
._6c{width:600.116267pt;}
._56{width:611.496533pt;}
._31{width:617.988267pt;}
._5d{width:626.446933pt;}
._8c{width:628.172800pt;}
._38{width:637.209067pt;}
._80{width:639.330667pt;}
._4c{width:645.610133pt;}
._67{width:652.652267pt;}
._51{width:656.787733pt;}
._64{width:661.151467pt;}
._7c{width:663.543467pt;}
._85{width:666.843200pt;}
._70{width:668.456533pt;}
._20{width:675.846400pt;}
._46{width:678.835733pt;}
._43{width:682.013867pt;}
._6b{width:683.754133pt;}
._74{width:685.827733pt;}
._87{width:697.249600pt;}
._18{width:700.977600pt;}
._2d{width:720.136533pt;}
._60{width:740.442133pt;}
._ae{width:745.728533pt;}
._b2{width:769.848533pt;}
._7e{width:800.528000pt;}
._1b{width:808.204800pt;}
._8b{width:820.046933pt;}
._83{width:822.358400pt;}
._90{width:827.022400pt;}
._91{width:830.066667pt;}
._aa{width:831.364800pt;}
._35{width:832.516800pt;}
._66{width:833.912000pt;}
._ba{width:835.647467pt;}
._58{width:837.065600pt;}
._3b{width:842.681067pt;}
._2a{width:845.763733pt;}
._2f{width:848.690667pt;}
._76{width:851.084800pt;}
._79{width:853.666667pt;}
._48{width:863.793600pt;}
._be{width:870.183467pt;}
._23{width:901.611733pt;}
._a2{width:911.722133pt;}
._9d{width:912.900800pt;}
._6d{width:919.496533pt;}
._8d{width:920.837867pt;}
._63{width:941.330133pt;}
._5c{width:943.281600pt;}
._5b{width:1254.430933pt;}
.fsb{font-size:29.538667pt;}
.fsa{font-size:31.093333pt;}
.fs6{font-size:34.202667pt;}
.fs8{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y52{bottom:79.748000pt;}
.y25{bottom:79.748133pt;}
.y9a{bottom:79.748267pt;}
.y84{bottom:80.769733pt;}
.yf7{bottom:81.277600pt;}
.yb6{bottom:81.808400pt;}
.y34{bottom:95.748133pt;}
.y24{bottom:95.748267pt;}
.y83{bottom:96.767733pt;}
.yf6{bottom:97.275600pt;}
.y19d{bottom:97.511733pt;}
.y51{bottom:97.511867pt;}
.y175{bottom:97.527200pt;}
.yb5{bottom:97.808400pt;}
.yce{bottom:111.748133pt;}
.y33{bottom:111.748267pt;}
.y10b{bottom:111.748400pt;}
.y82{bottom:112.767733pt;}
.yf5{bottom:113.273600pt;}
.y19c{bottom:115.275467pt;}
.y50{bottom:115.275600pt;}
.yb3{bottom:115.280533pt;}
.y163{bottom:115.280667pt;}
.y174{bottom:115.285867pt;}
.y13c{bottom:116.188267pt;}
.y32{bottom:127.748267pt;}
.y99{bottom:127.748400pt;}
.y81{bottom:128.767733pt;}
.yf4{bottom:129.271600pt;}
.y4f{bottom:133.039333pt;}
.yb2{bottom:133.041867pt;}
.y19b{bottom:133.044400pt;}
.y173{bottom:133.044533pt;}
.y23{bottom:133.046667pt;}
.y135{bottom:133.051600pt;}
.ycd{bottom:143.748267pt;}
.y98{bottom:143.748400pt;}
.yf3{bottom:145.273600pt;}
.y19a{bottom:150.803067pt;}
.y4e{bottom:150.803200pt;}
.yfa{bottom:150.805600pt;}
.y22{bottom:150.808000pt;}
.y153{bottom:150.808267pt;}
.y134{bottom:150.812933pt;}
.y13b{bottom:159.748267pt;}
.y10a{bottom:159.748400pt;}
.y97{bottom:159.748533pt;}
.yba{bottom:160.985600pt;}
.yf2{bottom:161.271600pt;}
.y80{bottom:162.301867pt;}
.y199{bottom:168.566800pt;}
.y4d{bottom:168.566933pt;}
.y21{bottom:168.569333pt;}
.y31{bottom:168.571867pt;}
.y162{bottom:168.572000pt;}
.y133{bottom:168.574267pt;}
.y11b{bottom:168.576800pt;}
.y152{bottom:168.577200pt;}
.yb1{bottom:168.581600pt;}
.y13a{bottom:175.748267pt;}
.y96{bottom:175.748533pt;}
.yb9{bottom:176.983600pt;}
.yf1{bottom:177.271600pt;}
.y86{bottom:182.374000pt;}
.y7f{bottom:184.223200pt;}
.y20{bottom:186.330667pt;}
.y30{bottom:186.333200pt;}
.ycc{bottom:186.335600pt;}
.y198{bottom:186.335733pt;}
.y151{bottom:186.335867pt;}
.y11a{bottom:186.338133pt;}
.yb0{bottom:186.342933pt;}
.y139{bottom:191.748267pt;}
.y109{bottom:191.748533pt;}
.y85{bottom:198.374000pt;}
.y197{bottom:204.094400pt;}
.y1f{bottom:204.094533pt;}
.ycb{bottom:204.096933pt;}
.y119{bottom:204.099467pt;}
.y150{bottom:204.099600pt;}
.yaf{bottom:204.104267pt;}
.y7e{bottom:206.144400pt;}
.y138{bottom:207.748267pt;}
.y108{bottom:207.748533pt;}
.yf0{bottom:210.009600pt;}
.y9e{bottom:216.515733pt;}
.y195{bottom:221.858133pt;}
.y1e{bottom:221.858267pt;}
.y110{bottom:221.860800pt;}
.y147{bottom:221.868133pt;}
.y137{bottom:223.748267pt;}
.y196{bottom:226.076133pt;}
.y7d{bottom:228.065733pt;}
.y9d{bottom:232.515733pt;}
.yef{bottom:233.096267pt;}
.y194{bottom:239.621867pt;}
.y120{bottom:239.622000pt;}
.y1d{bottom:239.622133pt;}
.y107{bottom:239.624533pt;}
.yae{bottom:239.626933pt;}
.y2f{bottom:239.629467pt;}
.y161{bottom:239.637467pt;}
.y136{bottom:239.748267pt;}
.yed{bottom:246.429600pt;}
.y9c{bottom:248.517733pt;}
.y7c{bottom:249.986933pt;}
.y193{bottom:257.385733pt;}
.y1c{bottom:257.385867pt;}
.yca{bottom:257.388267pt;}
.y2e{bottom:257.390800pt;}
.y11f{bottom:257.395600pt;}
.y160{bottom:257.396133pt;}
.yee{bottom:259.762933pt;}
.y9b{bottom:264.515733pt;}
.y7b{bottom:271.908267pt;}
.y1b{bottom:275.149600pt;}
.y2d{bottom:275.152133pt;}
.y15f{bottom:275.154800pt;}
.y11e{bottom:275.156933pt;}
.y192{bottom:275.159733pt;}
.y172{bottom:275.159867pt;}
.yec{bottom:279.101467pt;}
.yeb{bottom:285.768133pt;}
.y10c{bottom:291.917333pt;}
.y79{bottom:292.538133pt;}
.y1a{bottom:292.913467pt;}
.y106{bottom:292.918267pt;}
.y191{bottom:292.918400pt;}
.y171{bottom:292.918533pt;}
.y78{bottom:299.204800pt;}
.y7a{bottom:305.871467pt;}
.y13f{bottom:307.161333pt;}
.y190{bottom:310.677067pt;}
.y2c{bottom:310.677200pt;}
.y105{bottom:310.679600pt;}
.yf9{bottom:310.682133pt;}
.y19{bottom:310.684533pt;}
.y4c{bottom:310.696800pt;}
.yea{bottom:315.521467pt;}
.y13e{bottom:323.161333pt;}
.y77{bottom:325.210000pt;}
.y2b{bottom:328.440933pt;}
.y11d{bottom:328.443333pt;}
.yf8{bottom:328.443467pt;}
.y18{bottom:328.445867pt;}
.y18f{bottom:328.456133pt;}
.y4b{bottom:328.458133pt;}
.y76{bottom:331.876667pt;}
.ye9{bottom:338.608000pt;}
.y13d{bottom:339.161333pt;}
.ye8{bottom:345.274667pt;}
.y11c{bottom:346.204667pt;}
.y2a{bottom:346.204800pt;}
.y17{bottom:346.207200pt;}
.y18e{bottom:346.214800pt;}
.y1b2{bottom:356.796800pt;}
.y75{bottom:359.173333pt;}
.y16{bottom:363.968533pt;}
.y18d{bottom:363.973467pt;}
.y15e{bottom:363.973733pt;}
.yad{bottom:363.975867pt;}
.y132{bottom:363.978400pt;}
.y14f{bottom:363.978800pt;}
.ye7{bottom:371.280000pt;}
.y1b1{bottom:372.794800pt;}
.ye6{bottom:377.946667pt;}
.y74{bottom:381.094533pt;}
.y18c{bottom:381.732133pt;}
.y15{bottom:381.732400pt;}
.yac{bottom:381.737200pt;}
.y14e{bottom:381.737467pt;}
.y131{bottom:381.739733pt;}
.y170{bottom:381.742533pt;}
.y56{bottom:382.506000pt;}
.y1b0{bottom:388.792800pt;}
.y100{bottom:393.019600pt;}
.y55{bottom:398.504000pt;}
.y18b{bottom:399.496000pt;}
.y29{bottom:399.496133pt;}
.yab{bottom:399.498533pt;}
.y130{bottom:399.501067pt;}
.y16f{bottom:399.501200pt;}
.y14{bottom:399.503467pt;}
.y124{bottom:402.953733pt;}
.y73{bottom:403.015733pt;}
.ye5{bottom:403.951867pt;}
.y118{bottom:404.380133pt;}
.y1af{bottom:404.790800pt;}
.yff{bottom:409.021600pt;}
.ye4{bottom:410.618533pt;}
.y54{bottom:414.502000pt;}
.y28{bottom:417.259867pt;}
.y12c{bottom:417.262400pt;}
.y13{bottom:417.264800pt;}
.y117{bottom:417.267200pt;}
.y18a{bottom:417.275067pt;}
.y123{bottom:418.951733pt;}
.y1ae{bottom:420.788800pt;}
.y72{bottom:424.937067pt;}
.yfe{bottom:425.019600pt;}
.y53{bottom:430.500000pt;}
.y122{bottom:434.949733pt;}
.y27{bottom:435.023733pt;}
.y12{bottom:435.026133pt;}
.y116{bottom:435.028533pt;}
.y189{bottom:435.033733pt;}
.y16e{bottom:435.039067pt;}
.y1ad{bottom:436.786800pt;}
.ye3{bottom:440.371733pt;}
.yfd{bottom:441.023600pt;}
.y71{bottom:446.858267pt;}
.y121{bottom:450.947733pt;}
.y11{bottom:452.787467pt;}
.y10f{bottom:452.789867pt;}
.y104{bottom:452.792400pt;}
.y16d{bottom:452.797733pt;}
.yfc{bottom:457.021600pt;}
.ye2{bottom:467.206400pt;}
.y70{bottom:467.488267pt;}
.y188{bottom:470.551067pt;}
.y10{bottom:470.551200pt;}
.y103{bottom:470.553733pt;}
.y12b{bottom:470.556133pt;}
.y16c{bottom:470.556400pt;}
.y14d{bottom:470.566533pt;}
.yfb{bottom:473.019600pt;}
.y6e{bottom:480.821600pt;}
.y3d{bottom:483.102400pt;}
.y187{bottom:488.314800pt;}
.yf{bottom:488.315067pt;}
.y12a{bottom:488.317467pt;}
.yc9{bottom:488.324800pt;}
.y14c{bottom:488.325200pt;}
.ye1{bottom:494.041067pt;}
.y6f{bottom:494.154933pt;}
.yb4{bottom:495.885867pt;}
.y3c{bottom:499.100400pt;}
.y186{bottom:506.078667pt;}
.ye{bottom:506.078800pt;}
.y115{bottom:506.081200pt;}
.y14b{bottom:506.083867pt;}
.yc8{bottom:506.086133pt;}
.yaa{bottom:506.098400pt;}
.y146{bottom:510.962800pt;}
.y6d{bottom:513.493467pt;}
.y3b{bottom:515.098400pt;}
.ye0{bottom:520.875733pt;}
.y185{bottom:523.842400pt;}
.y102{bottom:523.842533pt;}
.yc7{bottom:523.847467pt;}
.y16b{bottom:523.847733pt;}
.y145{bottom:523.852400pt;}
.ya9{bottom:523.859733pt;}
.y6b{bottom:526.826800pt;}
.y3a{bottom:531.098400pt;}
.y6c{bottom:540.160133pt;}
.y1ac{bottom:541.606267pt;}
.yd{bottom:541.606400pt;}
.yc6{bottom:541.608800pt;}
.y129{bottom:541.611200pt;}
.y144{bottom:541.613733pt;}
.y15d{bottom:541.616533pt;}
.ya8{bottom:541.621067pt;}
.y184{bottom:541.621600pt;}
.y39{bottom:547.102400pt;}
.ydf{bottom:547.710400pt;}
.yb8{bottom:557.670667pt;}
.y1ab{bottom:559.370000pt;}
.yc5{bottom:559.370133pt;}
.y128{bottom:559.372533pt;}
.y12f{bottom:559.375067pt;}
.y15c{bottom:559.375200pt;}
.y183{bottom:559.380267pt;}
.ya7{bottom:559.382400pt;}
.y6a{bottom:560.790133pt;}
.y38{bottom:563.100400pt;}
.yde{bottom:570.797067pt;}
.yb7{bottom:573.668667pt;}
.yc4{bottom:577.133867pt;}
.y95{bottom:577.136400pt;}
.y10e{bottom:577.138800pt;}
.y182{bottom:577.138933pt;}
.y16a{bottom:577.139067pt;}
.ya6{bottom:577.143733pt;}
.y1aa{bottom:577.144000pt;}
.ydd{bottom:577.463733pt;}
.y37{bottom:579.098400pt;}
.y69{bottom:581.420000pt;}
.y68{bottom:588.086667pt;}
.y181{bottom:594.897600pt;}
.y94{bottom:594.897733pt;}
.y10d{bottom:594.900133pt;}
.y1a9{bottom:594.902667pt;}
.y14a{bottom:594.902800pt;}
.y114{bottom:594.905067pt;}
.yc3{bottom:594.907467pt;}
.y15b{bottom:594.907867pt;}
.y36{bottom:595.098400pt;}
.ydc{bottom:607.216933pt;}
.y35{bottom:611.098400pt;}
.y180{bottom:612.661333pt;}
.y93{bottom:612.661467pt;}
.ya5{bottom:612.666400pt;}
.y15a{bottom:612.666533pt;}
.yc2{bottom:612.668800pt;}
.y67{bottom:615.383200pt;}
.yc{bottom:630.257067pt;}
.y17f{bottom:630.425067pt;}
.y92{bottom:630.425200pt;}
.y113{bottom:630.427733pt;}
.yc1{bottom:630.430133pt;}
.ydb{bottom:634.051600pt;}
.y66{bottom:636.013200pt;}
.y65{bottom:642.679867pt;}
.yb{bottom:646.257067pt;}
.y91{bottom:648.189067pt;}
.yc0{bottom:648.191467pt;}
.y17e{bottom:648.194000pt;}
.y159{bottom:648.204400pt;}
.y1a8{bottom:648.245200pt;}
.yda{bottom:660.886267pt;}
.y17d{bottom:665.952667pt;}
.y90{bottom:665.952800pt;}
.y143{bottom:665.955333pt;}
.y158{bottom:665.963067pt;}
.y4a{bottom:665.967467pt;}
.y1a7{bottom:666.003867pt;}
.y149{bottom:667.716533pt;}
.y64{bottom:669.976400pt;}
.y17c{bottom:683.716533pt;}
.ya4{bottom:683.716667pt;}
.y157{bottom:683.721733pt;}
.y8f{bottom:683.724000pt;}
.y49{bottom:683.728800pt;}
.y1a6{bottom:683.762533pt;}
.yd9{bottom:687.720800pt;}
.y63{bottom:691.897733pt;}
.ya{bottom:700.052400pt;}
.y17b{bottom:701.480267pt;}
.ya3{bottom:701.480400pt;}
.y8e{bottom:701.485333pt;}
.y48{bottom:701.490133pt;}
.y1a5{bottom:701.521200pt;}
.y62{bottom:713.818933pt;}
.yd8{bottom:714.555467pt;}
.y9{bottom:716.052400pt;}
.y17a{bottom:719.244000pt;}
.ya2{bottom:719.244133pt;}
.y8d{bottom:719.246667pt;}
.y47{bottom:719.251467pt;}
.y1a4{bottom:719.279867pt;}
.y8{bottom:732.060400pt;}
.y61{bottom:734.448933pt;}
.y8c{bottom:737.008000pt;}
.y101{bottom:737.010400pt;}
.y46{bottom:737.012800pt;}
.y179{bottom:737.018133pt;}
.y1a3{bottom:737.038533pt;}
.y60{bottom:741.115600pt;}
.yd7{bottom:741.390133pt;}
.y7{bottom:748.058400pt;}
.y8b{bottom:754.771733pt;}
.y45{bottom:754.774133pt;}
.y169{bottom:754.776800pt;}
.y1a2{bottom:754.797200pt;}
.y6{bottom:764.056400pt;}
.yd6{bottom:768.224800pt;}
.y5f{bottom:768.412133pt;}
.y44{bottom:772.535467pt;}
.y12e{bottom:772.540400pt;}
.y168{bottom:772.540533pt;}
.y1a1{bottom:772.555867pt;}
.y5{bottom:780.054400pt;}
.y43{bottom:790.299200pt;}
.y12d{bottom:790.301733pt;}
.ya1{bottom:790.306533pt;}
.y156{bottom:790.314533pt;}
.y5e{bottom:790.333467pt;}
.yd5{bottom:795.059467pt;}
.y4{bottom:796.052400pt;}
.y42{bottom:808.063067pt;}
.y8a{bottom:808.065467pt;}
.ya0{bottom:808.067867pt;}
.y127{bottom:808.072800pt;}
.y155{bottom:808.073200pt;}
.y178{bottom:808.088533pt;}
.y3{bottom:812.052400pt;}
.y5d{bottom:812.254667pt;}
.yd4{bottom:821.894133pt;}
.y41{bottom:825.826800pt;}
.y9f{bottom:825.829200pt;}
.y112{bottom:825.831733pt;}
.y154{bottom:825.831867pt;}
.y126{bottom:825.834133pt;}
.y167{bottom:825.837067pt;}
.ybf{bottom:825.839067pt;}
.y177{bottom:825.847200pt;}
.y5c{bottom:834.176000pt;}
.y89{bottom:843.590533pt;}
.y111{bottom:843.593067pt;}
.y40{bottom:843.595467pt;}
.y166{bottom:843.595733pt;}
.y142{bottom:843.597867pt;}
.ybe{bottom:843.600400pt;}
.y176{bottom:843.605867pt;}
.yd3{bottom:848.728800pt;}
.y5b{bottom:856.097200pt;}
.y1a0{bottom:861.354267pt;}
.y88{bottom:861.354400pt;}
.y125{bottom:861.356800pt;}
.y141{bottom:861.359200pt;}
.ybd{bottom:861.361733pt;}
.y165{bottom:861.364533pt;}
.y2{bottom:873.406800pt;}
.yd2{bottom:875.563333pt;}
.y5a{bottom:878.018400pt;}
.y3f{bottom:879.118133pt;}
.y140{bottom:879.120533pt;}
.ybc{bottom:879.123067pt;}
.y164{bottom:879.123200pt;}
.y19f{bottom:879.128400pt;}
.y87{bottom:896.881867pt;}
.ybb{bottom:896.884400pt;}
.y19e{bottom:896.887067pt;}
.y58{bottom:900.538133pt;}
.yd0{bottom:900.538933pt;}
.y148{bottom:901.766000pt;}
.y57{bottom:907.204800pt;}
.ycf{bottom:907.205600pt;}
.y1{bottom:912.083867pt;}
.y59{bottom:913.871467pt;}
.yd1{bottom:913.872267pt;}
.y3e{bottom:914.645733pt;}
.y26{bottom:961.978533pt;}
.h13{height:26.643877pt;}
.h12{height:28.046187pt;}
.h11{height:30.850805pt;}
.he{height:38.485333pt;}
.ha{height:45.216000pt;}
.h5{height:45.701333pt;}
.hb{height:46.765333pt;}
.h9{height:48.106667pt;}
.h4{height:49.386667pt;}
.h7{height:52.917333pt;}
.h8{height:54.149333pt;}
.hc{height:55.264000pt;}
.h6{height:59.264000pt;}
.hd{height:65.152000pt;}
.h3{height:65.312000pt;}
.h10{height:77.941333pt;}
.h2{height:83.957333pt;}
.hf{height:91.818667pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x54{left:-637.481600pt;}
.x53{left:-634.806800pt;}
.x55{left:-620.294800pt;}
.x76{left:-616.839200pt;}
.x71{left:-615.692400pt;}
.x74{left:-614.689600pt;}
.x70{left:-613.521867pt;}
.x72{left:-610.967200pt;}
.x4a{left:-609.590800pt;}
.x5e{left:-608.483067pt;}
.x49{left:-607.190800pt;}
.x56{left:-606.194800pt;}
.x48{left:-605.027067pt;}
.x36{left:-602.867333pt;}
.x47{left:-601.105600pt;}
.x37{left:-508.555600pt;}
.x39{left:-427.200933pt;}
.x78{left:-424.152267pt;}
.x79{left:-419.938933pt;}
.x77{left:-417.124133pt;}
.x73{left:-404.057867pt;}
.x7a{left:-400.216267pt;}
.x38{left:-398.571600pt;}
.x4d{left:-397.308933pt;}
.x3b{left:-336.491600pt;}
.x7b{left:-329.496267pt;}
.x3a{left:-313.046267pt;}
.x3d{left:-245.782267pt;}
.x3c{left:-221.579600pt;}
.x3f{left:-152.822267pt;}
.x4b{left:-142.148933pt;}
.x3e{left:-126.443600pt;}
.x0{left:0.000000pt;}
.x7e{left:60.164000pt;}
.x6{left:63.319200pt;}
.x4{left:64.252000pt;}
.x2{left:67.722933pt;}
.x84{left:69.422133pt;}
.x9{left:70.975867pt;}
.x1{left:72.033733pt;}
.x6f{left:76.450267pt;}
.x2a{left:80.629067pt;}
.x7c{left:82.586000pt;}
.x7{left:83.532000pt;}
.x61{left:86.110000pt;}
.x5{left:87.156400pt;}
.x60{left:91.260667pt;}
.x5f{left:93.665467pt;}
.x3{left:94.838533pt;}
.x2b{left:97.816000pt;}
.x69{left:101.271067pt;}
.x65{left:102.417867pt;}
.x40{left:103.461733pt;}
.x64{left:104.588533pt;}
.x66{left:107.143067pt;}
.x21{left:108.519867pt;}
.x34{left:109.627867pt;}
.x20{left:110.919733pt;}
.x2c{left:111.916000pt;}
.x1f{left:113.083333pt;}
.xc{left:115.242933pt;}
.x1e{left:117.004800pt;}
.x58{left:183.084800pt;}
.x41{left:188.208267pt;}
.x42{left:194.138933pt;}
.xd{left:209.557600pt;}
.x52{left:248.136800pt;}
.x4f{left:251.656800pt;}
.x59{left:252.706133pt;}
.x4e{left:254.611467pt;}
.x44{left:259.173600pt;}
.x5a{left:263.682133pt;}
.x50{left:266.675467pt;}
.x43{left:273.818933pt;}
.xf{left:290.912267pt;}
.x6b{left:293.957733pt;}
.x6c{left:298.171067pt;}
.x6a{left:300.986000pt;}
.x67{left:314.052533pt;}
.x6d{left:317.893733pt;}
.xe{left:319.541600pt;}
.x24{left:320.801867pt;}
.x5c{left:330.508800pt;}
.x5b{left:332.503467pt;}
.x46{left:339.664267pt;}
.x4c{left:346.679200pt;}
.x45{left:352.122933pt;}
.x51{left:359.240800pt;}
.x83{left:380.298133pt;}
.x11{left:381.621600pt;}
.x6e{left:388.613733pt;}
.x10{left:405.066933pt;}
.xa{left:411.372667pt;}
.x5d{left:422.668800pt;}
.xb{left:429.916667pt;}
.x85{left:436.028533pt;}
.x86{left:442.906000pt;}
.x75{left:460.303467pt;}
.x13{left:472.330933pt;}
.x12{left:496.533600pt;}
.x57{left:502.508533pt;}
.x7f{left:540.661600pt;}
.x80{left:547.951600pt;}
.x15{left:565.290933pt;}
.x22{left:575.961733pt;}
.x81{left:581.040667pt;}
.x82{left:588.330533pt;}
.x14{left:591.669600pt;}
.x8{left:636.338667pt;}
.x35{left:639.134667pt;}
.x7d{left:645.760000pt;}
.x62{left:794.560533pt;}
.x17{left:799.619867pt;}
.x16{left:821.572000pt;}
.x63{left:827.692000pt;}
.x2e{left:901.195733pt;}
.x18{left:906.318533pt;}
.x19{left:912.249200pt;}
.x29{left:966.247600pt;}
.x26{left:969.767600pt;}
.x2f{left:970.817067pt;}
.x25{left:972.722267pt;}
.x1b{left:977.283867pt;}
.x30{left:981.793067pt;}
.x27{left:984.786267pt;}
.x1a{left:991.929200pt;}
.x32{left:1048.619733pt;}
.x31{left:1050.614400pt;}
.x1d{left:1057.774533pt;}
.x23{left:1064.789733pt;}
.x1c{left:1070.233200pt;}
.x28{left:1077.351600pt;}
.x33{left:1140.779733pt;}
.x68{left:1178.413733pt;}
.x2d{left:1220.619467pt;}
}




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