
    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_72b155c9d0d6e2aec4893c03.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6cb2135caeb083e20ef77999.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_02e1bea62a632bf26e90c6d2.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_59ad36c1a589f10cb95d2c88.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_1d2ad7ff466e1e8cf27eb457.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9c05db948b39912794d1bc03.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4d61476810e0a4a310d79a50.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_84a744adac1ff8d89ac672df.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_81eba69f9b6e245c18439196.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d9b40b097a284d4d209677bf.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b7b8c62e4a6c1d37a5d2f051.woff')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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;}
.m1e{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4c{transform:matrix(0.081284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081284,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.092456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092456,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.105505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105505,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144737,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.147959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147959,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160920,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169872,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179487,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.188272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188272,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194118,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.200581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200581,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200820,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.203252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203252,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.208824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208824,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217647,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221519,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221591,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221910,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224432,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224747,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226190,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226744,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226974,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228723,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229545,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229798,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230114,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230556,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231132,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232558,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233146,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233516,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233553,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235465,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235795,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236979,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238235,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238636,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238889,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239362,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239899,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241279,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241573,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241935,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242021,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243421,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244118,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244186,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244318,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245935,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247024,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247093,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247368,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247396,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247596,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247619,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m1c{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252688,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252809,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252841,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252941,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253623,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255208,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255814,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255952,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256024,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257653,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257813,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258824,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259375,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260101,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260417,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.260526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260526,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260989,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261765,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262019,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262755,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263021,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263158,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264045,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264205,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264535,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264881,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265060,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265306,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265625,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.265789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265789,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266990,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269886,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271053,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271505,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273438,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274096,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274752,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275281,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275510,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276786,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279070,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.281746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281746,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283708,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284211,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287234,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290323,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301724,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.305882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305882,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.307851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307851,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313830,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.613850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.613850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.613850,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.784783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.784783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.784783,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6a{letter-spacing:-9.408000px;}
.ls6b{letter-spacing:-8.316000px;}
.ls28{letter-spacing:-8.232000px;}
.ls4d{letter-spacing:-8.064000px;}
.ls74{letter-spacing:-7.980000px;}
.ls67{letter-spacing:-7.896000px;}
.ls31{letter-spacing:-7.812000px;}
.lsa2{letter-spacing:-7.644000px;}
.ls6f{letter-spacing:-7.488000px;}
.ls57{letter-spacing:-7.476000px;}
.ls2f{letter-spacing:-7.410000px;}
.ls4e{letter-spacing:-7.056000px;}
.ls49{letter-spacing:-6.912000px;}
.ls70{letter-spacing:-6.840000px;}
.ls24{letter-spacing:-6.600000px;}
.ls66{letter-spacing:-6.336000px;}
.ls5c{letter-spacing:-6.192000px;}
.ls2b{letter-spacing:-5.880000px;}
.ls61{letter-spacing:-5.400000px;}
.ls4b{letter-spacing:-5.184000px;}
.lsa1{letter-spacing:-5.130000px;}
.ls8c{letter-spacing:-4.644000px;}
.ls4c{letter-spacing:-4.608000px;}
.ls84{letter-spacing:-4.560000px;}
.ls20{letter-spacing:-4.464000px;}
.ls4a{letter-spacing:-4.032000px;}
.ls2e{letter-spacing:-3.990000px;}
.ls72{letter-spacing:-3.906000px;}
.ls83{letter-spacing:-3.744000px;}
.ls13{letter-spacing:-3.708000px;}
.ls64{letter-spacing:-3.696000px;}
.ls38{letter-spacing:-3.636000px;}
.ls9c{letter-spacing:-3.570000px;}
.ls50{letter-spacing:-3.420000px;}
.ls8f{letter-spacing:-3.204000px;}
.ls46{letter-spacing:-3.168000px;}
.lsa5{letter-spacing:-3.060000px;}
.ls54{letter-spacing:-3.000000px;}
.ls1b{letter-spacing:-2.970000px;}
.ls17{letter-spacing:-2.952000px;}
.ls15{letter-spacing:-2.904000px;}
.ls68{letter-spacing:-2.880000px;}
.ls1c{letter-spacing:-2.544000px;}
.ls3a{letter-spacing:-2.520000px;}
.ls51{letter-spacing:-2.496000px;}
.ls1e{letter-spacing:-2.376000px;}
.ls82{letter-spacing:-2.352000px;}
.ls47{letter-spacing:-2.304000px;}
.ls2d{letter-spacing:-2.280000px;}
.ls59{letter-spacing:-2.112000px;}
.ls65{letter-spacing:-2.070000px;}
.ls41{letter-spacing:-2.064000px;}
.ls9a{letter-spacing:-2.040000px;}
.ls19{letter-spacing:-1.728000px;}
.ls2a{letter-spacing:-1.710000px;}
.ls5e{letter-spacing:-1.620000px;}
.ls23{letter-spacing:-1.602000px;}
.ls45{letter-spacing:-1.584000px;}
.ls8d{letter-spacing:-1.530000px;}
.ls14{letter-spacing:-1.476000px;}
.ls12{letter-spacing:-1.248000px;}
.ls4f{letter-spacing:-1.152000px;}
.ls60{letter-spacing:-1.056000px;}
.ls3f{letter-spacing:-1.032000px;}
.ls3c{letter-spacing:-1.020000px;}
.ls18{letter-spacing:-0.738000px;}
.ls1a{letter-spacing:-0.594000px;}
.ls1d{letter-spacing:-0.588000px;}
.ls48{letter-spacing:-0.576000px;}
.ls29{letter-spacing:-0.570000px;}
.ls22{letter-spacing:-0.534000px;}
.ls63{letter-spacing:-0.528000px;}
.ls3b{letter-spacing:-0.516000px;}
.ls58{letter-spacing:-0.510000px;}
.ls16{letter-spacing:0.000000px;}
.ls76{letter-spacing:0.510000px;}
.ls93{letter-spacing:0.516000px;}
.ls97{letter-spacing:0.528000px;}
.ls42{letter-spacing:0.534000px;}
.ls9{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.546000px;}
.ls5{letter-spacing:0.558000px;}
.ls52{letter-spacing:0.564000px;}
.lsc{letter-spacing:0.570000px;}
.ls1f{letter-spacing:0.576000px;}
.ls6c{letter-spacing:0.948000px;}
.ls86{letter-spacing:1.020000px;}
.ls5b{letter-spacing:1.032000px;}
.ls36{letter-spacing:1.056000px;}
.ls26{letter-spacing:1.068000px;}
.ls5a{letter-spacing:1.080000px;}
.ls2{letter-spacing:1.476000px;}
.ls7c{letter-spacing:1.530000px;}
.ls7b{letter-spacing:1.548000px;}
.ls32{letter-spacing:1.584000px;}
.ls27{letter-spacing:1.602000px;}
.ls21{letter-spacing:1.620000px;}
.ls6{letter-spacing:1.674000px;}
.lsd{letter-spacing:1.710000px;}
.ls33{letter-spacing:1.728000px;}
.ls4{letter-spacing:1.782000px;}
.ls0{letter-spacing:1.824000px;}
.ls99{letter-spacing:1.920000px;}
.ls91{letter-spacing:2.016000px;}
.ls7a{letter-spacing:2.040000px;}
.ls8e{letter-spacing:2.112000px;}
.ls8{letter-spacing:2.160000px;}
.ls85{letter-spacing:2.256000px;}
.lse{letter-spacing:2.280000px;}
.ls34{letter-spacing:2.304000px;}
.ls30{letter-spacing:2.352000px;}
.ls94{letter-spacing:2.490000px;}
.ls62{letter-spacing:2.580000px;}
.ls8b{letter-spacing:2.640000px;}
.lsf{letter-spacing:2.850000px;}
.ls6d{letter-spacing:2.880000px;}
.ls9b{letter-spacing:3.024000px;}
.ls77{letter-spacing:3.060000px;}
.ls80{letter-spacing:3.096000px;}
.ls78{letter-spacing:3.168000px;}
.ls11{letter-spacing:3.192000px;}
.ls2c{letter-spacing:3.204000px;}
.ls7{letter-spacing:3.240000px;}
.ls7f{letter-spacing:3.570000px;}
.ls9f{letter-spacing:3.612000px;}
.ls53{letter-spacing:3.690000px;}
.lsa4{letter-spacing:3.696000px;}
.ls35{letter-spacing:4.032000px;}
.ls1{letter-spacing:4.104000px;}
.ls79{letter-spacing:4.128000px;}
.ls90{letter-spacing:4.224000px;}
.ls89{letter-spacing:4.320000px;}
.ls8a{letter-spacing:4.464000px;}
.ls92{letter-spacing:4.482000px;}
.ls5d{letter-spacing:4.560000px;}
.ls75{letter-spacing:4.590000px;}
.ls37{letter-spacing:4.608000px;}
.lsb{letter-spacing:4.860000px;}
.ls40{letter-spacing:4.968000px;}
.ls9d{letter-spacing:5.040000px;}
.lsa3{letter-spacing:5.100000px;}
.ls44{letter-spacing:5.256000px;}
.ls98{letter-spacing:5.280000px;}
.ls88{letter-spacing:5.544000px;}
.ls5f{letter-spacing:5.610000px;}
.ls7e{letter-spacing:5.676000px;}
.ls69{letter-spacing:5.880000px;}
.ls7d{letter-spacing:6.048000px;}
.ls9e{letter-spacing:6.630000px;}
.ls95{letter-spacing:6.708000px;}
.ls6e{letter-spacing:6.840000px;}
.ls43{letter-spacing:7.140000px;}
.ls73{letter-spacing:7.392000px;}
.lsa{letter-spacing:7.560000px;}
.ls81{letter-spacing:7.650000px;}
.ls3{letter-spacing:7.722000px;}
.ls87{letter-spacing:7.740000px;}
.ls96{letter-spacing:8.772000px;}
.ls39{letter-spacing:9.360000px;}
.lsa0{letter-spacing:11.664000px;}
.ls10{letter-spacing:12.168000px;}
.ls71{letter-spacing:16.704000px;}
.ls3d{letter-spacing:29.754000px;}
.ls3e{letter-spacing:30.492000px;}
.ls56{letter-spacing:56.550000px;}
.ls55{letter-spacing:78.936000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._c{margin-left:-21.555000px;}
._24{margin-left:-18.726120px;}
._6{margin-left:-17.511120px;}
._b{margin-left:-15.700320px;}
._d{margin-left:-14.396400px;}
._a{margin-left:-11.952000px;}
._22{margin-left:-10.761120px;}
._9{margin-left:-9.450000px;}
._23{margin-left:-8.110080px;}
._4{margin-left:-7.055280px;}
._21{margin-left:-6.036480px;}
._2{margin-left:-4.935600px;}
._8{margin-left:-3.029760px;}
._5{margin-left:-1.468620px;}
._11{width:1.300020px;}
._7{width:2.566800px;}
._1{width:4.131360px;}
._e{width:5.633700px;}
._3{width:6.994800px;}
._12{width:8.928720px;}
._0{width:10.004640px;}
._f{width:11.956320px;}
._13{width:13.702800px;}
._10{width:16.085400px;}
._14{width:17.442000px;}
._17{width:18.507900px;}
._19{width:20.468700px;}
._1a{width:21.922200px;}
._26{width:23.040000px;}
._1b{width:24.403020px;}
._16{width:25.501800px;}
._18{width:27.837660px;}
._15{width:29.440500px;}
._1c{width:31.858980px;}
._25{width:33.144300px;}
._1d{width:35.573760px;}
._20{width:39.225600px;}
._1f{width:41.132160px;}
._1e{width:43.027200px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:transparent;}
.fs20{font-size:15.600000px;}
.fs21{font-size:17.400000px;}
.fs23{font-size:24.000000px;}
.fs11{font-size:36.600000px;}
.fs26{font-size:37.800000px;}
.fs27{font-size:39.600000px;}
.fs1c{font-size:41.400000px;}
.fs1d{font-size:43.800000px;}
.fs29{font-size:45.000000px;}
.fs1{font-size:45.600000px;}
.fs0{font-size:46.800000px;}
.fs28{font-size:47.400000px;}
.fs12{font-size:48.000000px;}
.fs2b{font-size:48.600000px;}
.fs2a{font-size:49.800000px;}
.fs1a{font-size:50.400000px;}
.fs16{font-size:51.000000px;}
.fs15{font-size:51.600000px;}
.fs1b{font-size:52.800000px;}
.fse{font-size:53.400000px;}
.fsd{font-size:54.000000px;}
.fsc{font-size:54.600000px;}
.fsb{font-size:55.800000px;}
.fs1e{font-size:56.400000px;}
.fs10{font-size:57.000000px;}
.fs7{font-size:57.600000px;}
.fsa{font-size:58.800000px;}
.fs8{font-size:59.400000px;}
.fs1f{font-size:60.000000px;}
.fs13{font-size:60.600000px;}
.fs3{font-size:61.800000px;}
.fs2{font-size:62.400000px;}
.fs14{font-size:63.000000px;}
.fs9{font-size:63.600000px;}
.fs22{font-size:65.400000px;}
.fsf{font-size:66.000000px;}
.fs19{font-size:69.000000px;}
.fs5{font-size:72.600000px;}
.fs4{font-size:73.800000px;}
.fs6{font-size:84.000000px;}
.fs18{font-size:156.600000px;}
.fs17{font-size:202.800000px;}
.fs25{font-size:219.600000px;}
.fs24{font-size:383.400000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:3.000000px;}
.y18{bottom:89.580000px;}
.y26{bottom:89.580150px;}
.y27{bottom:89.580300px;}
.y64{bottom:90.030780px;}
.yb0{bottom:90.479820px;}
.y17{bottom:104.280300px;}
.y25{bottom:104.280450px;}
.y63{bottom:104.580540px;}
.yaf{bottom:105.330540px;}
.y16{bottom:119.130300px;}
.y24{bottom:119.130375px;}
.y15{bottom:119.131500px;}
.yae{bottom:119.880300px;}
.yad{bottom:119.880780px;}
.y14{bottom:133.680750px;}
.y23{bottom:133.980300px;}
.y22{bottom:133.981050px;}
.yac{bottom:134.881260px;}
.y21{bottom:148.530300px;}
.y13{bottom:148.530675px;}
.y20{bottom:148.532550px;}
.y61{bottom:148.829820px;}
.y62{bottom:148.830300px;}
.yab{bottom:149.580780px;}
.y12{bottom:162.930300px;}
.y1f{bottom:163.081800px;}
.y60{bottom:163.379580px;}
.yaa{bottom:164.130540px;}
.y11{bottom:177.180300px;}
.y10{bottom:177.181050px;}
.y1e{bottom:177.631050px;}
.y5e{bottom:178.229580px;}
.y5f{bottom:178.230300px;}
.ya9{bottom:179.131020px;}
.ye{bottom:191.729175px;}
.yf{bottom:191.730300px;}
.y1c{bottom:192.180000px;}
.y1d{bottom:192.180300px;}
.y5c{bottom:193.078860px;}
.y5d{bottom:193.080300px;}
.ya8{bottom:193.830540px;}
.yd{bottom:206.879775px;}
.y1b{bottom:206.880300px;}
.y5b{bottom:207.929580px;}
.ya7{bottom:208.380300px;}
.yc{bottom:221.729700px;}
.y1a{bottom:221.879850px;}
.y5a{bottom:222.780300px;}
.y59{bottom:222.780780px;}
.ya6{bottom:223.080300px;}
.ya5{bottom:223.080540px;}
.y19{bottom:236.879400px;}
.yb{bottom:236.880300px;}
.y57{bottom:237.479580px;}
.y58{bottom:237.480300px;}
.ya4{bottom:237.630300px;}
.ya3{bottom:237.630540px;}
.y56{bottom:251.580060px;}
.ya2{bottom:252.180300px;}
.y55{bottom:266.279580px;}
.ya1{bottom:266.729580px;}
.ya{bottom:272.730300px;}
.y54{bottom:281.130300px;}
.ya0{bottom:281.879820px;}
.y9{bottom:287.580300px;}
.y53{bottom:296.280540px;}
.y9e{bottom:296.879820px;}
.y9f{bottom:296.880300px;}
.y8{bottom:302.430300px;}
.y52{bottom:310.980060px;}
.y9c{bottom:311.878860px;}
.y9d{bottom:311.880300px;}
.y51{bottom:326.130300px;}
.y9b{bottom:326.729580px;}
.y6{bottom:336.929865px;}
.y7{bottom:336.930300px;}
.y50{bottom:341.130300px;}
.y99{bottom:341.579580px;}
.y9a{bottom:341.580300px;}
.y5{bottom:351.930300px;}
.y4f{bottom:355.829820px;}
.y97{bottom:356.429580px;}
.y98{bottom:356.430300px;}
.y4e{bottom:370.830300px;}
.y4{bottom:370.980300px;}
.y95{bottom:371.279580px;}
.y96{bottom:371.280300px;}
.y4c{bottom:385.527180px;}
.y4d{bottom:385.530300px;}
.y93{bottom:386.128620px;}
.y94{bottom:386.130300px;}
.y3{bottom:396.330300px;}
.y4b{bottom:400.527660px;}
.y92{bottom:400.979340px;}
.y4a{bottom:415.677900px;}
.y91{bottom:415.830060px;}
.y49{bottom:430.377420px;}
.y8f{bottom:430.979340px;}
.y90{bottom:430.980300px;}
.y48{bottom:445.527660px;}
.y8e{bottom:445.979820px;}
.y47{bottom:460.378380px;}
.y8d{bottom:460.980300px;}
.y8c{bottom:460.980780px;}
.y46{bottom:475.528620px;}
.y8b{bottom:475.680300px;}
.y45{bottom:490.379340px;}
.y8a{bottom:490.680780px;}
.y44{bottom:505.379820px;}
.y89{bottom:505.380300px;}
.y28{bottom:516.090000px;}
.y43{bottom:520.380300px;}
.y88{bottom:520.530060px;}
.y42{bottom:535.530540px;}
.y87{bottom:535.680300px;}
.y41{bottom:550.680780px;}
.y3f{bottom:565.379100px;}
.y86{bottom:565.379340px;}
.y40{bottom:565.380300px;}
.y3e{bottom:580.379580px;}
.y85{bottom:580.529580px;}
.y83{bottom:595.379580px;}
.y84{bottom:595.380300px;}
.y3d{bottom:595.679580px;}
.y81{bottom:610.230060px;}
.y82{bottom:610.230300px;}
.y3b{bottom:610.528860px;}
.y3c{bottom:610.530300px;}
.y7f{bottom:625.378860px;}
.y3a{bottom:625.379580px;}
.y80{bottom:625.380300px;}
.y7e{bottom:640.229580px;}
.y39{bottom:640.230300px;}
.y7c{bottom:655.078380px;}
.y7d{bottom:655.080300px;}
.y38{bottom:655.380540px;}
.y7b{bottom:669.929100px;}
.y37{bottom:670.080060px;}
.y7a{bottom:684.779820px;}
.y36{bottom:685.230300px;}
.y78{bottom:699.779820px;}
.y79{bottom:699.780300px;}
.y77{bottom:714.780300px;}
.y76{bottom:729.930540px;}
.y34{bottom:740.880060px;}
.y35{bottom:740.880300px;}
.y75{bottom:744.630060px;}
.y33{bottom:754.980300px;}
.y73{bottom:759.780060px;}
.y74{bottom:759.780300px;}
.y32{bottom:768.480300px;}
.y72{bottom:774.930300px;}
.y71{bottom:811.080300px;}
.yf2{bottom:819.180750px;}
.yca{bottom:819.930750px;}
.yc9{bottom:819.931050px;}
.y6f{bottom:824.579820px;}
.y70{bottom:824.580300px;}
.yf1{bottom:832.680750px;}
.yf0{bottom:832.681050px;}
.yc8{bottom:833.430750px;}
.y6e{bottom:837.930300px;}
.y6d{bottom:837.930660px;}
.y31{bottom:838.080300px;}
.yef{bottom:846.180750px;}
.yee{bottom:846.180900px;}
.yc7{bottom:846.930750px;}
.y6c{bottom:851.430300px;}
.y6b{bottom:851.430660px;}
.yed{bottom:859.680750px;}
.yec{bottom:859.681050px;}
.yc5{bottom:860.430540px;}
.yc6{bottom:860.430750px;}
.y6a{bottom:864.930300px;}
.yeb{bottom:873.180750px;}
.yea{bottom:873.180900px;}
.yc4{bottom:873.780750px;}
.y2f{bottom:878.430300px;}
.ye9{bottom:886.680750px;}
.ye8{bottom:886.681050px;}
.yc3{bottom:887.280750px;}
.y2e{bottom:891.330300px;}
.ye7{bottom:900.180750px;}
.y67{bottom:903.930300px;}
.yc2{bottom:905.280750px;}
.ye6{bottom:913.680750px;}
.ye5{bottom:913.681050px;}
.y66{bottom:922.080300px;}
.y30{bottom:922.830300px;}
.ye4{bottom:927.180750px;}
.ye3{bottom:927.181050px;}
.y65{bottom:935.580300px;}
.ye2{bottom:940.680750px;}
.ye1{bottom:940.681050px;}
.ye0{bottom:954.180750px;}
.ydf{bottom:954.181050px;}
.yc1{bottom:962.280750px;}
.yde{bottom:967.680750px;}
.ydc{bottom:980.880180px;}
.ydd{bottom:980.880750px;}
.yc0{bottom:991.980750px;}
.yda{bottom:994.080675px;}
.ydb{bottom:994.080750px;}
.ybe{bottom:1006.680510px;}
.ybf{bottom:1006.680750px;}
.yd9{bottom:1007.280750px;}
.yd8{bottom:1020.780750px;}
.yd7{bottom:1020.780900px;}
.ybd{bottom:1021.680990px;}
.yd6{bottom:1034.280750px;}
.yd5{bottom:1034.281050px;}
.ybc{bottom:1036.380510px;}
.y69{bottom:1046.880300px;}
.yd4{bottom:1047.780750px;}
.ybb{bottom:1051.530750px;}
.yd3{bottom:1061.280750px;}
.yba{bottom:1066.531230px;}
.yd2{bottom:1074.630750px;}
.y68{bottom:1081.080300px;}
.yb8{bottom:1081.230030px;}
.yb9{bottom:1081.230750px;}
.yd1{bottom:1088.280750px;}
.yb7{bottom:1096.230510px;}
.yd0{bottom:1101.630750px;}
.yb6{bottom:1111.380750px;}
.ycf{bottom:1115.130750px;}
.y2d{bottom:1116.030300px;}
.yb5{bottom:1125.930510px;}
.yce{bottom:1128.630750px;}
.ycd{bottom:1128.631050px;}
.y2c{bottom:1131.330300px;}
.yb4{bottom:1141.080750px;}
.ycc{bottom:1142.130750px;}
.ycb{bottom:1142.130900px;}
.y1{bottom:1167.330300px;}
.y2b{bottom:1168.530300px;}
.yb3{bottom:1168.530750px;}
.yb2{bottom:1168.680750px;}
.y2{bottom:1170.180300px;}
.yb1{bottom:1246.500000px;}
.y29{bottom:1254.000000px;}
.h17{height:15.000000px;}
.h2f{height:15.721875px;}
.h30{height:18.147656px;}
.h32{height:25.031250px;}
.h3f{height:38.095312px;}
.h12{height:38.101172px;}
.h41{height:38.865234px;}
.h3d{height:40.631836px;}
.h23{height:43.178906px;}
.h46{height:45.351562px;}
.h27{height:45.682031px;}
.h2{height:45.956250px;}
.h16{height:47.109375px;}
.h1{height:47.165625px;}
.h3a{height:47.559375px;}
.h51{height:47.674512px;}
.h4f{height:48.851660px;}
.h42{height:49.436719px;}
.h4b{height:49.440234px;}
.h50{height:49.464844px;}
.h26{height:50.028809px;}
.h3c{height:50.053711px;}
.h35{height:50.062500px;}
.h4e{height:50.189063px;}
.h49{height:50.617383px;}
.h39{height:50.642578px;}
.h20{height:50.793750px;}
.h21{height:51.398438px;}
.h4d{height:51.794531px;}
.h4c{height:51.820313px;}
.h24{height:52.003125px;}
.h25{height:52.409180px;}
.h3b{height:52.998047px;}
.h1b{height:53.191406px;}
.h22{height:53.212500px;}
.h1a{height:53.817187px;}
.h28{height:54.421875px;}
.h14{height:54.764648px;}
.h29{height:55.325977px;}
.h2a{height:55.353516px;}
.h33{height:55.590234px;}
.he{height:55.694531px;}
.h44{height:55.914551px;}
.h10{height:55.942383px;}
.h45{height:56.235938px;}
.hd{height:56.320312px;}
.h4a{height:56.503125px;}
.h13{height:56.531250px;}
.hc{height:56.946094px;}
.h52{height:57.445312px;}
.h40{height:57.680273px;}
.h11{height:57.708984px;}
.h34{height:58.088672px;}
.hb{height:58.197656px;}
.h2d{height:58.268848px;}
.h2b{height:58.297852px;}
.h43{height:58.857422px;}
.h53{height:59.259375px;}
.h18{height:59.475586px;}
.h3e{height:59.864063px;}
.h36{height:59.962500px;}
.h7{height:60.075000px;}
.h2e{height:60.468750px;}
.h4{height:60.653320px;}
.h47{height:61.242188px;}
.ha{height:61.326563px;}
.h8{height:61.952344px;}
.h48{height:62.419922px;}
.h3{height:62.887500px;}
.h19{height:63.492188px;}
.h9{height:64.096875px;}
.h1f{height:67.686035px;}
.h31{height:68.210156px;}
.hf{height:68.707031px;}
.h2c{height:72.430664px;}
.h1e{height:75.719531px;}
.h5{height:76.971094px;}
.h6{height:87.445312px;}
.h1d{height:163.328906px;}
.h1c{height:211.514062px;}
.h38{height:215.525391px;}
.h37{height:399.874219px;}
.h15{height:473.640000px;}
.h0{height:1269.000000px;}
.w1{width:15.000000px;}
.w2{width:97.980000px;}
.w3{width:99.645000px;}
.w4{width:159.660000px;}
.w0{width:891.000000px;}
.x0{left:0.000000px;}
.x32{left:4.500000px;}
.x33{left:12.000000px;}
.x40{left:73.950000px;}
.x5f{left:75.000075px;}
.x1{left:76.200000px;}
.x10{left:77.250000px;}
.xaf{left:83.850750px;}
.x51{left:87.449400px;}
.x2{left:90.750000px;}
.xb0{left:95.250750px;}
.x41{left:98.250000px;}
.x64{left:99.600000px;}
.x5a{left:102.300000px;}
.x56{left:105.000000px;}
.x42{left:107.100000px;}
.xba{left:110.100750px;}
.x9{left:111.750000px;}
.xbf{left:115.500750px;}
.x23{left:116.850000px;}
.x4d{left:129.750000px;}
.x24{left:132.000000px;}
.x5b{left:135.150000px;}
.x43{left:138.900000px;}
.x21{left:147.000000px;}
.x5c{left:157.650000px;}
.xab{left:159.450750px;}
.x15{left:161.400000px;}
.x22{left:164.400000px;}
.x4e{left:166.350000px;}
.x45{left:169.800000px;}
.x3f{left:175.200000px;}
.x16{left:178.350000px;}
.xa9{left:181.950750px;}
.x4f{left:186.000000px;}
.x61{left:188.100000px;}
.xb1{left:197.250750px;}
.x50{left:200.850000px;}
.xbb{left:204.300750px;}
.x46{left:208.650000px;}
.x3e{left:211.350000px;}
.x3d{left:212.400000px;}
.x5d{left:216.000000px;}
.xb7{left:219.300750px;}
.xac{left:223.800750px;}
.xa{left:226.500000px;}
.xaa{left:230.100750px;}
.x5e{left:232.350000px;}
.xc1{left:234.600750px;}
.x3c{left:236.100000px;}
.xbc{left:237.300750px;}
.x53{left:238.650000px;}
.xb2{left:242.100750px;}
.xb{left:244.050000px;}
.x11{left:251.850000px;}
.x54{left:253.500000px;}
.x28{left:261.600000px;}
.x60{left:265.800000px;}
.xae{left:272.100750px;}
.x12{left:274.350000px;}
.x47{left:276.600000px;}
.xbd{left:279.300750px;}
.x3{left:283.200000px;}
.xa7{left:284.250750px;}
.x3a{left:286.800000px;}
.x25{left:290.100000px;}
.x48{left:297.150000px;}
.xc2{left:300.300750px;}
.x13{left:302.400000px;}
.x3b{left:306.900000px;}
.x52{left:311.700000px;}
.x57{left:313.200000px;}
.xb3{left:320.400600px;}
.x49{left:321.900000px;}
.xc0{left:323.400600px;}
.xbe{left:325.800750px;}
.x58{left:327.450000px;}
.xc{left:328.500000px;}
.x14{left:332.700000px;}
.xb8{left:334.500750px;}
.xb4{left:338.100750px;}
.x4a{left:340.950000px;}
.xb5{left:350.100750px;}
.x62{left:351.600000px;}
.x59{left:354.750000px;}
.x26{left:365.700000px;}
.xb6{left:367.350750px;}
.xb9{left:369.600750px;}
.xd{left:377.100000px;}
.x4b{left:387.300000px;}
.xe{left:406.200000px;}
.x4c{left:407.700000px;}
.xad{left:412.200750px;}
.x27{left:414.900000px;}
.x44{left:417.000000px;}
.x55{left:420.300000px;}
.x63{left:426.300000px;}
.x1c{left:446.550000px;}
.x17{left:454.800000px;}
.x8a{left:458.400000px;}
.x29{left:460.200825px;}
.x1d{left:461.850000px;}
.xe0{left:463.800750px;}
.x65{left:465.150000px;}
.xc3{left:468.900780px;}
.x8c{left:471.597150px;}
.xf{left:474.900000px;}
.x34{left:478.020000px;}
.x18{left:479.550000px;}
.xc4{left:481.200750px;}
.x6e{left:483.450000px;}
.x69{left:492.150000px;}
.xcc{left:493.500750px;}
.xda{left:494.850750px;}
.x19{left:496.950000px;}
.xe6{left:498.450750px;}
.xd0{left:499.500750px;}
.xd1{left:501.150600px;}
.xe9{left:504.000750px;}
.x7c{left:507.300000px;}
.xcd{left:510.900600px;}
.x1e{left:512.700000px;}
.xf5{left:514.050750px;}
.x6f{left:515.400000px;}
.xea{left:517.800750px;}
.xd2{left:519.450750px;}
.xd8{left:521.250750px;}
.xde{left:523.800750px;}
.x1f{left:525.900000px;}
.x6a{left:528.300000px;}
.x9a{left:531.000000px;}
.x8b{left:534.300000px;}
.xe1{left:536.250750px;}
.xd9{left:538.050750px;}
.x82{left:540.750000px;}
.x66{left:542.400000px;}
.xa2{left:545.100000px;}
.x9b{left:546.150000px;}
.xd7{left:547.800750px;}
.xe3{left:549.750750px;}
.x70{left:550.950000px;}
.xdb{left:552.900600px;}
.x83{left:554.700000px;}
.x8d{left:557.400000px;}
.xa3{left:560.100000px;}
.x5{left:563.700000px;}
.x6b{left:567.600000px;}
.xd3{left:571.350750px;}
.xdf{left:573.600750px;}
.x35{left:576.855000px;}
.x8e{left:578.550000px;}
.xeb{left:580.650600px;}
.x37{left:582.300000px;}
.x71{left:585.600000px;}
.xf3{left:586.950750px;}
.x9c{left:588.300000px;}
.x6{left:590.250000px;}
.xd4{left:591.300750px;}
.x8f{left:593.100000px;}
.xc9{left:594.600750px;}
.x38{left:597.300000px;}
.xf6{left:599.100750px;}
.x7d{left:600.150000px;}
.x67{left:602.700000px;}
.x9e{left:604.500000px;}
.x72{left:607.650000px;}
.xc5{left:609.150600px;}
.xe7{left:610.800750px;}
.xf4{left:613.950750px;}
.x7e{left:616.800000px;}
.xec{left:618.000750px;}
.x9f{left:619.500000px;}
.x2c{left:620.700000px;}
.x68{left:623.100000px;}
.xe4{left:624.300750px;}
.xe2{left:628.050750px;}
.xa0{left:629.850000px;}
.x76{left:631.800000px;}
.x73{left:633.600000px;}
.x2d{left:635.250000px;}
.x2a{left:638.850000px;}
.x84{left:641.700000px;}
.xca{left:647.700750px;}
.x6c{left:648.750000px;}
.x77{left:649.800000px;}
.x30{left:650.850000px;}
.x95{left:651.900000px;}
.x1a{left:653.100000px;}
.xe5{left:654.600750px;}
.x2b{left:657.300000px;}
.xef{left:660.600750px;}
.x85{left:661.650000px;}
.x31{left:665.400000px;}
.x20{left:668.100000px;}
.xd6{left:670.650600px;}
.x98{left:675.600000px;}
.x36{left:677.340000px;}
.x90{left:678.900000px;}
.x88{left:681.600000px;}
.x1b{left:684.300000px;}
.xce{left:689.250750px;}
.x7f{left:692.400000px;}
.x86{left:693.600000px;}
.x99{left:696.300000px;}
.xe8{left:697.800750px;}
.x7{left:702.150000px;}
.xc8{left:705.900600px;}
.xcf{left:708.600750px;}
.x2e{left:709.800000px;}
.xc6{left:710.850750px;}
.x80{left:712.200000px;}
.x92{left:715.650000px;}
.x78{left:718.800000px;}
.x6d{left:721.050000px;}
.x8{left:724.800000px;}
.x81{left:727.500000px;}
.x96{left:729.000000px;}
.xa6{left:731.520000px;}
.x2f{left:732.750000px;}
.xdc{left:735.150600px;}
.x79{left:736.800000px;}
.xc7{left:741.900600px;}
.x93{left:743.550000px;}
.x97{left:745.800000px;}
.x89{left:749.700000px;}
.xd5{left:753.300750px;}
.x94{left:756.000000px;}
.xf1{left:757.200750px;}
.xcb{left:758.700750px;}
.x7a{left:761.550000px;}
.x87{left:763.500000px;}
.x74{left:766.800000px;}
.x91{left:768.000000px;}
.xed{left:773.850750px;}
.x9d{left:777.600000px;}
.x7b{left:780.450000px;}
.xa4{left:782.700000px;}
.xf2{left:786.300750px;}
.x4{left:788.400000px;}
.x39{left:790.200000px;}
.xee{left:793.200750px;}
.xdd{left:796.650600px;}
.xa5{left:797.700000px;}
.xf0{left:798.900600px;}
.xa1{left:804.600000px;}
.x75{left:806.700000px;}
.xa8{left:812.100750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6a{letter-spacing:-8.362667pt;}
.ls6b{letter-spacing:-7.392000pt;}
.ls28{letter-spacing:-7.317333pt;}
.ls4d{letter-spacing:-7.168000pt;}
.ls74{letter-spacing:-7.093333pt;}
.ls67{letter-spacing:-7.018667pt;}
.ls31{letter-spacing:-6.944000pt;}
.lsa2{letter-spacing:-6.794667pt;}
.ls6f{letter-spacing:-6.656000pt;}
.ls57{letter-spacing:-6.645333pt;}
.ls2f{letter-spacing:-6.586667pt;}
.ls4e{letter-spacing:-6.272000pt;}
.ls49{letter-spacing:-6.144000pt;}
.ls70{letter-spacing:-6.080000pt;}
.ls24{letter-spacing:-5.866667pt;}
.ls66{letter-spacing:-5.632000pt;}
.ls5c{letter-spacing:-5.504000pt;}
.ls2b{letter-spacing:-5.226667pt;}
.ls61{letter-spacing:-4.800000pt;}
.ls4b{letter-spacing:-4.608000pt;}
.lsa1{letter-spacing:-4.560000pt;}
.ls8c{letter-spacing:-4.128000pt;}
.ls4c{letter-spacing:-4.096000pt;}
.ls84{letter-spacing:-4.053333pt;}
.ls20{letter-spacing:-3.968000pt;}
.ls4a{letter-spacing:-3.584000pt;}
.ls2e{letter-spacing:-3.546667pt;}
.ls72{letter-spacing:-3.472000pt;}
.ls83{letter-spacing:-3.328000pt;}
.ls13{letter-spacing:-3.296000pt;}
.ls64{letter-spacing:-3.285333pt;}
.ls38{letter-spacing:-3.232000pt;}
.ls9c{letter-spacing:-3.173333pt;}
.ls50{letter-spacing:-3.040000pt;}
.ls8f{letter-spacing:-2.848000pt;}
.ls46{letter-spacing:-2.816000pt;}
.lsa5{letter-spacing:-2.720000pt;}
.ls54{letter-spacing:-2.666667pt;}
.ls1b{letter-spacing:-2.640000pt;}
.ls17{letter-spacing:-2.624000pt;}
.ls15{letter-spacing:-2.581333pt;}
.ls68{letter-spacing:-2.560000pt;}
.ls1c{letter-spacing:-2.261333pt;}
.ls3a{letter-spacing:-2.240000pt;}
.ls51{letter-spacing:-2.218667pt;}
.ls1e{letter-spacing:-2.112000pt;}
.ls82{letter-spacing:-2.090667pt;}
.ls47{letter-spacing:-2.048000pt;}
.ls2d{letter-spacing:-2.026667pt;}
.ls59{letter-spacing:-1.877333pt;}
.ls65{letter-spacing:-1.840000pt;}
.ls41{letter-spacing:-1.834667pt;}
.ls9a{letter-spacing:-1.813333pt;}
.ls19{letter-spacing:-1.536000pt;}
.ls2a{letter-spacing:-1.520000pt;}
.ls5e{letter-spacing:-1.440000pt;}
.ls23{letter-spacing:-1.424000pt;}
.ls45{letter-spacing:-1.408000pt;}
.ls8d{letter-spacing:-1.360000pt;}
.ls14{letter-spacing:-1.312000pt;}
.ls12{letter-spacing:-1.109333pt;}
.ls4f{letter-spacing:-1.024000pt;}
.ls60{letter-spacing:-0.938667pt;}
.ls3f{letter-spacing:-0.917333pt;}
.ls3c{letter-spacing:-0.906667pt;}
.ls18{letter-spacing:-0.656000pt;}
.ls1a{letter-spacing:-0.528000pt;}
.ls1d{letter-spacing:-0.522667pt;}
.ls48{letter-spacing:-0.512000pt;}
.ls29{letter-spacing:-0.506667pt;}
.ls22{letter-spacing:-0.474667pt;}
.ls63{letter-spacing:-0.469333pt;}
.ls3b{letter-spacing:-0.458667pt;}
.ls58{letter-spacing:-0.453333pt;}
.ls16{letter-spacing:0.000000pt;}
.ls76{letter-spacing:0.453333pt;}
.ls93{letter-spacing:0.458667pt;}
.ls97{letter-spacing:0.469333pt;}
.ls42{letter-spacing:0.474667pt;}
.ls9{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.485333pt;}
.ls5{letter-spacing:0.496000pt;}
.ls52{letter-spacing:0.501333pt;}
.lsc{letter-spacing:0.506667pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls6c{letter-spacing:0.842667pt;}
.ls86{letter-spacing:0.906667pt;}
.ls5b{letter-spacing:0.917333pt;}
.ls36{letter-spacing:0.938667pt;}
.ls26{letter-spacing:0.949333pt;}
.ls5a{letter-spacing:0.960000pt;}
.ls2{letter-spacing:1.312000pt;}
.ls7c{letter-spacing:1.360000pt;}
.ls7b{letter-spacing:1.376000pt;}
.ls32{letter-spacing:1.408000pt;}
.ls27{letter-spacing:1.424000pt;}
.ls21{letter-spacing:1.440000pt;}
.ls6{letter-spacing:1.488000pt;}
.lsd{letter-spacing:1.520000pt;}
.ls33{letter-spacing:1.536000pt;}
.ls4{letter-spacing:1.584000pt;}
.ls0{letter-spacing:1.621333pt;}
.ls99{letter-spacing:1.706667pt;}
.ls91{letter-spacing:1.792000pt;}
.ls7a{letter-spacing:1.813333pt;}
.ls8e{letter-spacing:1.877333pt;}
.ls8{letter-spacing:1.920000pt;}
.ls85{letter-spacing:2.005333pt;}
.lse{letter-spacing:2.026667pt;}
.ls34{letter-spacing:2.048000pt;}
.ls30{letter-spacing:2.090667pt;}
.ls94{letter-spacing:2.213333pt;}
.ls62{letter-spacing:2.293333pt;}
.ls8b{letter-spacing:2.346667pt;}
.lsf{letter-spacing:2.533333pt;}
.ls6d{letter-spacing:2.560000pt;}
.ls9b{letter-spacing:2.688000pt;}
.ls77{letter-spacing:2.720000pt;}
.ls80{letter-spacing:2.752000pt;}
.ls78{letter-spacing:2.816000pt;}
.ls11{letter-spacing:2.837333pt;}
.ls2c{letter-spacing:2.848000pt;}
.ls7{letter-spacing:2.880000pt;}
.ls7f{letter-spacing:3.173333pt;}
.ls9f{letter-spacing:3.210667pt;}
.ls53{letter-spacing:3.280000pt;}
.lsa4{letter-spacing:3.285333pt;}
.ls35{letter-spacing:3.584000pt;}
.ls1{letter-spacing:3.648000pt;}
.ls79{letter-spacing:3.669333pt;}
.ls90{letter-spacing:3.754667pt;}
.ls89{letter-spacing:3.840000pt;}
.ls8a{letter-spacing:3.968000pt;}
.ls92{letter-spacing:3.984000pt;}
.ls5d{letter-spacing:4.053333pt;}
.ls75{letter-spacing:4.080000pt;}
.ls37{letter-spacing:4.096000pt;}
.lsb{letter-spacing:4.320000pt;}
.ls40{letter-spacing:4.416000pt;}
.ls9d{letter-spacing:4.480000pt;}
.lsa3{letter-spacing:4.533333pt;}
.ls44{letter-spacing:4.672000pt;}
.ls98{letter-spacing:4.693333pt;}
.ls88{letter-spacing:4.928000pt;}
.ls5f{letter-spacing:4.986667pt;}
.ls7e{letter-spacing:5.045333pt;}
.ls69{letter-spacing:5.226667pt;}
.ls7d{letter-spacing:5.376000pt;}
.ls9e{letter-spacing:5.893333pt;}
.ls95{letter-spacing:5.962667pt;}
.ls6e{letter-spacing:6.080000pt;}
.ls43{letter-spacing:6.346667pt;}
.ls73{letter-spacing:6.570667pt;}
.lsa{letter-spacing:6.720000pt;}
.ls81{letter-spacing:6.800000pt;}
.ls3{letter-spacing:6.864000pt;}
.ls87{letter-spacing:6.880000pt;}
.ls96{letter-spacing:7.797333pt;}
.ls39{letter-spacing:8.320000pt;}
.lsa0{letter-spacing:10.368000pt;}
.ls10{letter-spacing:10.816000pt;}
.ls71{letter-spacing:14.848000pt;}
.ls3d{letter-spacing:26.448000pt;}
.ls3e{letter-spacing:27.104000pt;}
.ls56{letter-spacing:50.266667pt;}
.ls55{letter-spacing:70.165333pt;}
.ws0{word-spacing:0.000000pt;}
._c{margin-left:-19.160000pt;}
._24{margin-left:-16.645440pt;}
._6{margin-left:-15.565440pt;}
._b{margin-left:-13.955840pt;}
._d{margin-left:-12.796800pt;}
._a{margin-left:-10.624000pt;}
._22{margin-left:-9.565440pt;}
._9{margin-left:-8.400000pt;}
._23{margin-left:-7.208960pt;}
._4{margin-left:-6.271360pt;}
._21{margin-left:-5.365760pt;}
._2{margin-left:-4.387200pt;}
._8{margin-left:-2.693120pt;}
._5{margin-left:-1.305440pt;}
._11{width:1.155573pt;}
._7{width:2.281600pt;}
._1{width:3.672320pt;}
._e{width:5.007733pt;}
._3{width:6.217600pt;}
._12{width:7.936640pt;}
._0{width:8.893013pt;}
._f{width:10.627840pt;}
._13{width:12.180267pt;}
._10{width:14.298133pt;}
._14{width:15.504000pt;}
._17{width:16.451467pt;}
._19{width:18.194400pt;}
._1a{width:19.486400pt;}
._26{width:20.480000pt;}
._1b{width:21.691573pt;}
._16{width:22.668267pt;}
._18{width:24.744587pt;}
._15{width:26.169333pt;}
._1c{width:28.319093pt;}
._25{width:29.461600pt;}
._1d{width:31.621120pt;}
._20{width:34.867200pt;}
._1f{width:36.561920pt;}
._1e{width:38.246400pt;}
.fs20{font-size:13.866667pt;}
.fs21{font-size:15.466667pt;}
.fs23{font-size:21.333333pt;}
.fs11{font-size:32.533333pt;}
.fs26{font-size:33.600000pt;}
.fs27{font-size:35.200000pt;}
.fs1c{font-size:36.800000pt;}
.fs1d{font-size:38.933333pt;}
.fs29{font-size:40.000000pt;}
.fs1{font-size:40.533333pt;}
.fs0{font-size:41.600000pt;}
.fs28{font-size:42.133333pt;}
.fs12{font-size:42.666667pt;}
.fs2b{font-size:43.200000pt;}
.fs2a{font-size:44.266667pt;}
.fs1a{font-size:44.800000pt;}
.fs16{font-size:45.333333pt;}
.fs15{font-size:45.866667pt;}
.fs1b{font-size:46.933333pt;}
.fse{font-size:47.466667pt;}
.fsd{font-size:48.000000pt;}
.fsc{font-size:48.533333pt;}
.fsb{font-size:49.600000pt;}
.fs1e{font-size:50.133333pt;}
.fs10{font-size:50.666667pt;}
.fs7{font-size:51.200000pt;}
.fsa{font-size:52.266667pt;}
.fs8{font-size:52.800000pt;}
.fs1f{font-size:53.333333pt;}
.fs13{font-size:53.866667pt;}
.fs3{font-size:54.933333pt;}
.fs2{font-size:55.466667pt;}
.fs14{font-size:56.000000pt;}
.fs9{font-size:56.533333pt;}
.fs22{font-size:58.133333pt;}
.fsf{font-size:58.666667pt;}
.fs19{font-size:61.333333pt;}
.fs5{font-size:64.533333pt;}
.fs4{font-size:65.600000pt;}
.fs6{font-size:74.666667pt;}
.fs18{font-size:139.200000pt;}
.fs17{font-size:180.266667pt;}
.fs25{font-size:195.200000pt;}
.fs24{font-size:340.800000pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:2.666667pt;}
.y18{bottom:79.626667pt;}
.y26{bottom:79.626800pt;}
.y27{bottom:79.626933pt;}
.y64{bottom:80.027360pt;}
.yb0{bottom:80.426507pt;}
.y17{bottom:92.693600pt;}
.y25{bottom:92.693733pt;}
.y63{bottom:92.960480pt;}
.yaf{bottom:93.627147pt;}
.y16{bottom:105.893600pt;}
.y24{bottom:105.893667pt;}
.y15{bottom:105.894667pt;}
.yae{bottom:106.560267pt;}
.yad{bottom:106.560693pt;}
.y14{bottom:118.827333pt;}
.y23{bottom:119.093600pt;}
.y22{bottom:119.094267pt;}
.yac{bottom:119.894453pt;}
.y21{bottom:132.026933pt;}
.y13{bottom:132.027267pt;}
.y20{bottom:132.028933pt;}
.y61{bottom:132.293173pt;}
.y62{bottom:132.293600pt;}
.yab{bottom:132.960693pt;}
.y12{bottom:144.826933pt;}
.y1f{bottom:144.961600pt;}
.y60{bottom:145.226293pt;}
.yaa{bottom:145.893813pt;}
.y11{bottom:157.493600pt;}
.y10{bottom:157.494267pt;}
.y1e{bottom:157.894267pt;}
.y5e{bottom:158.426293pt;}
.y5f{bottom:158.426933pt;}
.ya9{bottom:159.227573pt;}
.ye{bottom:170.425933pt;}
.yf{bottom:170.426933pt;}
.y1c{bottom:170.826667pt;}
.y1d{bottom:170.826933pt;}
.y5c{bottom:171.625653pt;}
.y5d{bottom:171.626933pt;}
.ya8{bottom:172.293813pt;}
.yd{bottom:183.893133pt;}
.y1b{bottom:183.893600pt;}
.y5b{bottom:184.826293pt;}
.ya7{bottom:185.226933pt;}
.yc{bottom:197.093067pt;}
.y1a{bottom:197.226533pt;}
.y5a{bottom:198.026933pt;}
.y59{bottom:198.027360pt;}
.ya6{bottom:198.293600pt;}
.ya5{bottom:198.293813pt;}
.y19{bottom:210.559467pt;}
.yb{bottom:210.560267pt;}
.y57{bottom:211.092960pt;}
.y58{bottom:211.093600pt;}
.ya4{bottom:211.226933pt;}
.ya3{bottom:211.227147pt;}
.y56{bottom:223.626720pt;}
.ya2{bottom:224.160267pt;}
.y55{bottom:236.692960pt;}
.ya1{bottom:237.092960pt;}
.ya{bottom:242.426933pt;}
.y54{bottom:249.893600pt;}
.ya0{bottom:250.559840pt;}
.y9{bottom:255.626933pt;}
.y53{bottom:263.360480pt;}
.y9e{bottom:263.893173pt;}
.y9f{bottom:263.893600pt;}
.y8{bottom:268.826933pt;}
.y52{bottom:276.426720pt;}
.y9c{bottom:277.225653pt;}
.y9d{bottom:277.226933pt;}
.y51{bottom:289.893600pt;}
.y9b{bottom:290.426293pt;}
.y6{bottom:299.493213pt;}
.y7{bottom:299.493600pt;}
.y50{bottom:303.226933pt;}
.y99{bottom:303.626293pt;}
.y9a{bottom:303.626933pt;}
.y5{bottom:312.826933pt;}
.y4f{bottom:316.293173pt;}
.y97{bottom:316.826293pt;}
.y98{bottom:316.826933pt;}
.y4e{bottom:329.626933pt;}
.y4{bottom:329.760267pt;}
.y95{bottom:330.026293pt;}
.y96{bottom:330.026933pt;}
.y4c{bottom:342.690827pt;}
.y4d{bottom:342.693600pt;}
.y93{bottom:343.225440pt;}
.y94{bottom:343.226933pt;}
.y3{bottom:352.293600pt;}
.y4b{bottom:356.024587pt;}
.y92{bottom:356.426080pt;}
.y4a{bottom:369.491467pt;}
.y91{bottom:369.626720pt;}
.y49{bottom:382.557707pt;}
.y8f{bottom:383.092747pt;}
.y90{bottom:383.093600pt;}
.y48{bottom:396.024587pt;}
.y8e{bottom:396.426507pt;}
.y47{bottom:409.225227pt;}
.y8d{bottom:409.760267pt;}
.y8c{bottom:409.760693pt;}
.y46{bottom:422.692107pt;}
.y8b{bottom:422.826933pt;}
.y45{bottom:435.892747pt;}
.y8a{bottom:436.160693pt;}
.y44{bottom:449.226507pt;}
.y89{bottom:449.226933pt;}
.y28{bottom:458.746667pt;}
.y43{bottom:462.560267pt;}
.y88{bottom:462.693387pt;}
.y42{bottom:476.027147pt;}
.y87{bottom:476.160267pt;}
.y41{bottom:489.494027pt;}
.y3f{bottom:502.559200pt;}
.y86{bottom:502.559413pt;}
.y40{bottom:502.560267pt;}
.y3e{bottom:515.892960pt;}
.y85{bottom:516.026293pt;}
.y83{bottom:529.226293pt;}
.y84{bottom:529.226933pt;}
.y3d{bottom:529.492960pt;}
.y81{bottom:542.426720pt;}
.y82{bottom:542.426933pt;}
.y3b{bottom:542.692320pt;}
.y3c{bottom:542.693600pt;}
.y7f{bottom:555.892320pt;}
.y3a{bottom:555.892960pt;}
.y80{bottom:555.893600pt;}
.y7e{bottom:569.092960pt;}
.y39{bottom:569.093600pt;}
.y7c{bottom:582.291893pt;}
.y7d{bottom:582.293600pt;}
.y38{bottom:582.560480pt;}
.y7b{bottom:595.492533pt;}
.y37{bottom:595.626720pt;}
.y7a{bottom:608.693173pt;}
.y36{bottom:609.093600pt;}
.y78{bottom:622.026507pt;}
.y79{bottom:622.026933pt;}
.y77{bottom:635.360267pt;}
.y76{bottom:648.827147pt;}
.y34{bottom:658.560053pt;}
.y35{bottom:658.560267pt;}
.y75{bottom:661.893387pt;}
.y33{bottom:671.093600pt;}
.y73{bottom:675.360053pt;}
.y74{bottom:675.360267pt;}
.y32{bottom:683.093600pt;}
.y72{bottom:688.826933pt;}
.y71{bottom:720.960267pt;}
.yf2{bottom:728.160667pt;}
.yca{bottom:728.827333pt;}
.yc9{bottom:728.827600pt;}
.y6f{bottom:732.959840pt;}
.y70{bottom:732.960267pt;}
.yf1{bottom:740.160667pt;}
.yf0{bottom:740.160933pt;}
.yc8{bottom:740.827333pt;}
.y6e{bottom:744.826933pt;}
.y6d{bottom:744.827253pt;}
.y31{bottom:744.960267pt;}
.yef{bottom:752.160667pt;}
.yee{bottom:752.160800pt;}
.yc7{bottom:752.827333pt;}
.y6c{bottom:756.826933pt;}
.y6b{bottom:756.827253pt;}
.yed{bottom:764.160667pt;}
.yec{bottom:764.160933pt;}
.yc5{bottom:764.827147pt;}
.yc6{bottom:764.827333pt;}
.y6a{bottom:768.826933pt;}
.yeb{bottom:776.160667pt;}
.yea{bottom:776.160800pt;}
.yc4{bottom:776.694000pt;}
.y2f{bottom:780.826933pt;}
.ye9{bottom:788.160667pt;}
.ye8{bottom:788.160933pt;}
.yc3{bottom:788.694000pt;}
.y2e{bottom:792.293600pt;}
.ye7{bottom:800.160667pt;}
.y67{bottom:803.493600pt;}
.yc2{bottom:804.694000pt;}
.ye6{bottom:812.160667pt;}
.ye5{bottom:812.160933pt;}
.y66{bottom:819.626933pt;}
.y30{bottom:820.293600pt;}
.ye4{bottom:824.160667pt;}
.ye3{bottom:824.160933pt;}
.y65{bottom:831.626933pt;}
.ye2{bottom:836.160667pt;}
.ye1{bottom:836.160933pt;}
.ye0{bottom:848.160667pt;}
.ydf{bottom:848.160933pt;}
.yc1{bottom:855.360667pt;}
.yde{bottom:860.160667pt;}
.ydc{bottom:871.893493pt;}
.ydd{bottom:871.894000pt;}
.yc0{bottom:881.760667pt;}
.yda{bottom:883.627267pt;}
.ydb{bottom:883.627333pt;}
.ybe{bottom:894.827120pt;}
.ybf{bottom:894.827333pt;}
.yd9{bottom:895.360667pt;}
.yd8{bottom:907.360667pt;}
.yd7{bottom:907.360800pt;}
.ybd{bottom:908.160880pt;}
.yd6{bottom:919.360667pt;}
.yd5{bottom:919.360933pt;}
.ybc{bottom:921.227120pt;}
.y69{bottom:930.560267pt;}
.yd4{bottom:931.360667pt;}
.ybb{bottom:934.694000pt;}
.yd3{bottom:943.360667pt;}
.yba{bottom:948.027760pt;}
.yd2{bottom:955.227333pt;}
.y68{bottom:960.960267pt;}
.yb8{bottom:961.093360pt;}
.yb9{bottom:961.094000pt;}
.yd1{bottom:967.360667pt;}
.yb7{bottom:974.427120pt;}
.yd0{bottom:979.227333pt;}
.yb6{bottom:987.894000pt;}
.ycf{bottom:991.227333pt;}
.y2d{bottom:992.026933pt;}
.yb5{bottom:1000.827120pt;}
.yce{bottom:1003.227333pt;}
.ycd{bottom:1003.227600pt;}
.y2c{bottom:1005.626933pt;}
.yb4{bottom:1014.294000pt;}
.ycc{bottom:1015.227333pt;}
.ycb{bottom:1015.227467pt;}
.y1{bottom:1037.626933pt;}
.y2b{bottom:1038.693600pt;}
.yb3{bottom:1038.694000pt;}
.yb2{bottom:1038.827333pt;}
.y2{bottom:1040.160267pt;}
.yb1{bottom:1108.000000pt;}
.y29{bottom:1114.666667pt;}
.h17{height:13.333333pt;}
.h2f{height:13.975000pt;}
.h30{height:16.131250pt;}
.h32{height:22.250000pt;}
.h3f{height:33.862500pt;}
.h12{height:33.867708pt;}
.h41{height:34.546875pt;}
.h3d{height:36.117188pt;}
.h23{height:38.381250pt;}
.h46{height:40.312500pt;}
.h27{height:40.606250pt;}
.h2{height:40.850000pt;}
.h16{height:41.875000pt;}
.h1{height:41.925000pt;}
.h3a{height:42.275000pt;}
.h51{height:42.377344pt;}
.h4f{height:43.423698pt;}
.h42{height:43.943750pt;}
.h4b{height:43.946875pt;}
.h50{height:43.968750pt;}
.h26{height:44.470052pt;}
.h3c{height:44.492188pt;}
.h35{height:44.500000pt;}
.h4e{height:44.612500pt;}
.h49{height:44.993229pt;}
.h39{height:45.015625pt;}
.h20{height:45.150000pt;}
.h21{height:45.687500pt;}
.h4d{height:46.039583pt;}
.h4c{height:46.062500pt;}
.h24{height:46.225000pt;}
.h25{height:46.585938pt;}
.h3b{height:47.109375pt;}
.h1b{height:47.281250pt;}
.h22{height:47.300000pt;}
.h1a{height:47.837500pt;}
.h28{height:48.375000pt;}
.h14{height:48.679688pt;}
.h29{height:49.178646pt;}
.h2a{height:49.203125pt;}
.h33{height:49.413542pt;}
.he{height:49.506250pt;}
.h44{height:49.701823pt;}
.h10{height:49.726562pt;}
.h45{height:49.987500pt;}
.hd{height:50.062500pt;}
.h4a{height:50.225000pt;}
.h13{height:50.250000pt;}
.hc{height:50.618750pt;}
.h52{height:51.062500pt;}
.h40{height:51.271354pt;}
.h11{height:51.296875pt;}
.h34{height:51.634375pt;}
.hb{height:51.731250pt;}
.h2d{height:51.794531pt;}
.h2b{height:51.820312pt;}
.h43{height:52.317708pt;}
.h53{height:52.675000pt;}
.h18{height:52.867187pt;}
.h3e{height:53.212500pt;}
.h36{height:53.300000pt;}
.h7{height:53.400000pt;}
.h2e{height:53.750000pt;}
.h4{height:53.914062pt;}
.h47{height:54.437500pt;}
.ha{height:54.512500pt;}
.h8{height:55.068750pt;}
.h48{height:55.484375pt;}
.h3{height:55.900000pt;}
.h19{height:56.437500pt;}
.h9{height:56.975000pt;}
.h1f{height:60.165365pt;}
.h31{height:60.631250pt;}
.hf{height:61.072917pt;}
.h2c{height:64.382813pt;}
.h1e{height:67.306250pt;}
.h5{height:68.418750pt;}
.h6{height:77.729167pt;}
.h1d{height:145.181250pt;}
.h1c{height:188.012500pt;}
.h38{height:191.578125pt;}
.h37{height:355.443750pt;}
.h15{height:421.013333pt;}
.h0{height:1128.000000pt;}
.w1{width:13.333333pt;}
.w2{width:87.093333pt;}
.w3{width:88.573333pt;}
.w4{width:141.920000pt;}
.w0{width:792.000000pt;}
.x0{left:0.000000pt;}
.x32{left:4.000000pt;}
.x33{left:10.666667pt;}
.x40{left:65.733333pt;}
.x5f{left:66.666733pt;}
.x1{left:67.733333pt;}
.x10{left:68.666667pt;}
.xaf{left:74.534000pt;}
.x51{left:77.732800pt;}
.x2{left:80.666667pt;}
.xb0{left:84.667333pt;}
.x41{left:87.333333pt;}
.x64{left:88.533333pt;}
.x5a{left:90.933333pt;}
.x56{left:93.333333pt;}
.x42{left:95.200000pt;}
.xba{left:97.867333pt;}
.x9{left:99.333333pt;}
.xbf{left:102.667333pt;}
.x23{left:103.866667pt;}
.x4d{left:115.333333pt;}
.x24{left:117.333333pt;}
.x5b{left:120.133333pt;}
.x43{left:123.466667pt;}
.x21{left:130.666667pt;}
.x5c{left:140.133333pt;}
.xab{left:141.734000pt;}
.x15{left:143.466667pt;}
.x22{left:146.133333pt;}
.x4e{left:147.866667pt;}
.x45{left:150.933333pt;}
.x3f{left:155.733333pt;}
.x16{left:158.533333pt;}
.xa9{left:161.734000pt;}
.x4f{left:165.333333pt;}
.x61{left:167.200000pt;}
.xb1{left:175.334000pt;}
.x50{left:178.533333pt;}
.xbb{left:181.600667pt;}
.x46{left:185.466667pt;}
.x3e{left:187.866667pt;}
.x3d{left:188.800000pt;}
.x5d{left:192.000000pt;}
.xb7{left:194.934000pt;}
.xac{left:198.934000pt;}
.xa{left:201.333333pt;}
.xaa{left:204.534000pt;}
.x5e{left:206.533333pt;}
.xc1{left:208.534000pt;}
.x3c{left:209.866667pt;}
.xbc{left:210.934000pt;}
.x53{left:212.133333pt;}
.xb2{left:215.200667pt;}
.xb{left:216.933333pt;}
.x11{left:223.866667pt;}
.x54{left:225.333333pt;}
.x28{left:232.533333pt;}
.x60{left:236.266667pt;}
.xae{left:241.867333pt;}
.x12{left:243.866667pt;}
.x47{left:245.866667pt;}
.xbd{left:248.267333pt;}
.x3{left:251.733333pt;}
.xa7{left:252.667333pt;}
.x3a{left:254.933333pt;}
.x25{left:257.866667pt;}
.x48{left:264.133333pt;}
.xc2{left:266.934000pt;}
.x13{left:268.800000pt;}
.x3b{left:272.800000pt;}
.x52{left:277.066667pt;}
.x57{left:278.400000pt;}
.xb3{left:284.800533pt;}
.x49{left:286.133333pt;}
.xc0{left:287.467200pt;}
.xbe{left:289.600667pt;}
.x58{left:291.066667pt;}
.xc{left:292.000000pt;}
.x14{left:295.733333pt;}
.xb8{left:297.334000pt;}
.xb4{left:300.534000pt;}
.x4a{left:303.066667pt;}
.xb5{left:311.200667pt;}
.x62{left:312.533333pt;}
.x59{left:315.333333pt;}
.x26{left:325.066667pt;}
.xb6{left:326.534000pt;}
.xb9{left:328.534000pt;}
.xd{left:335.200000pt;}
.x4b{left:344.266667pt;}
.xe{left:361.066667pt;}
.x4c{left:362.400000pt;}
.xad{left:366.400667pt;}
.x27{left:368.800000pt;}
.x44{left:370.666667pt;}
.x55{left:373.600000pt;}
.x63{left:378.933333pt;}
.x1c{left:396.933333pt;}
.x17{left:404.266667pt;}
.x8a{left:407.466667pt;}
.x29{left:409.067400pt;}
.x1d{left:410.533333pt;}
.xe0{left:412.267333pt;}
.x65{left:413.466667pt;}
.xc3{left:416.800693pt;}
.x8c{left:419.197467pt;}
.xf{left:422.133333pt;}
.x34{left:424.906667pt;}
.x18{left:426.266667pt;}
.xc4{left:427.734000pt;}
.x6e{left:429.733333pt;}
.x69{left:437.466667pt;}
.xcc{left:438.667333pt;}
.xda{left:439.867333pt;}
.x19{left:441.733333pt;}
.xe6{left:443.067333pt;}
.xd0{left:444.000667pt;}
.xd1{left:445.467200pt;}
.xe9{left:448.000667pt;}
.x7c{left:450.933333pt;}
.xcd{left:454.133867pt;}
.x1e{left:455.733333pt;}
.xf5{left:456.934000pt;}
.x6f{left:458.133333pt;}
.xea{left:460.267333pt;}
.xd2{left:461.734000pt;}
.xd8{left:463.334000pt;}
.xde{left:465.600667pt;}
.x1f{left:467.466667pt;}
.x6a{left:469.600000pt;}
.x9a{left:472.000000pt;}
.x8b{left:474.933333pt;}
.xe1{left:476.667333pt;}
.xd9{left:478.267333pt;}
.x82{left:480.666667pt;}
.x66{left:482.133333pt;}
.xa2{left:484.533333pt;}
.x9b{left:485.466667pt;}
.xd7{left:486.934000pt;}
.xe3{left:488.667333pt;}
.x70{left:489.733333pt;}
.xdb{left:491.467200pt;}
.x83{left:493.066667pt;}
.x8d{left:495.466667pt;}
.xa3{left:497.866667pt;}
.x5{left:501.066667pt;}
.x6b{left:504.533333pt;}
.xd3{left:507.867333pt;}
.xdf{left:509.867333pt;}
.x35{left:512.760000pt;}
.x8e{left:514.266667pt;}
.xeb{left:516.133867pt;}
.x37{left:517.600000pt;}
.x71{left:520.533333pt;}
.xf3{left:521.734000pt;}
.x9c{left:522.933333pt;}
.x6{left:524.666667pt;}
.xd4{left:525.600667pt;}
.x8f{left:527.200000pt;}
.xc9{left:528.534000pt;}
.x38{left:530.933333pt;}
.xf6{left:532.534000pt;}
.x7d{left:533.466667pt;}
.x67{left:535.733333pt;}
.x9e{left:537.333333pt;}
.x72{left:540.133333pt;}
.xc5{left:541.467200pt;}
.xe7{left:542.934000pt;}
.xf4{left:545.734000pt;}
.x7e{left:548.266667pt;}
.xec{left:549.334000pt;}
.x9f{left:550.666667pt;}
.x2c{left:551.733333pt;}
.x68{left:553.866667pt;}
.xe4{left:554.934000pt;}
.xe2{left:558.267333pt;}
.xa0{left:559.866667pt;}
.x76{left:561.600000pt;}
.x73{left:563.200000pt;}
.x2d{left:564.666667pt;}
.x2a{left:567.866667pt;}
.x84{left:570.400000pt;}
.xca{left:575.734000pt;}
.x6c{left:576.666667pt;}
.x77{left:577.600000pt;}
.x30{left:578.533333pt;}
.x95{left:579.466667pt;}
.x1a{left:580.533333pt;}
.xe5{left:581.867333pt;}
.x2b{left:584.266667pt;}
.xef{left:587.200667pt;}
.x85{left:588.133333pt;}
.x31{left:591.466667pt;}
.x20{left:593.866667pt;}
.xd6{left:596.133867pt;}
.x98{left:600.533333pt;}
.x36{left:602.080000pt;}
.x90{left:603.466667pt;}
.x88{left:605.866667pt;}
.x1b{left:608.266667pt;}
.xce{left:612.667333pt;}
.x7f{left:615.466667pt;}
.x86{left:616.533333pt;}
.x99{left:618.933333pt;}
.xe8{left:620.267333pt;}
.x7{left:624.133333pt;}
.xc8{left:627.467200pt;}
.xcf{left:629.867333pt;}
.x2e{left:630.933333pt;}
.xc6{left:631.867333pt;}
.x80{left:633.066667pt;}
.x92{left:636.133333pt;}
.x78{left:638.933333pt;}
.x6d{left:640.933333pt;}
.x8{left:644.266667pt;}
.x81{left:646.666667pt;}
.x96{left:648.000000pt;}
.xa6{left:650.240000pt;}
.x2f{left:651.333333pt;}
.xdc{left:653.467200pt;}
.x79{left:654.933333pt;}
.xc7{left:659.467200pt;}
.x93{left:660.933333pt;}
.x97{left:662.933333pt;}
.x89{left:666.400000pt;}
.xd5{left:669.600667pt;}
.x94{left:672.000000pt;}
.xf1{left:673.067333pt;}
.xcb{left:674.400667pt;}
.x7a{left:676.933333pt;}
.x87{left:678.666667pt;}
.x74{left:681.600000pt;}
.x91{left:682.666667pt;}
.xed{left:687.867333pt;}
.x9d{left:691.200000pt;}
.x7b{left:693.733333pt;}
.xa4{left:695.733333pt;}
.xf2{left:698.934000pt;}
.x4{left:700.800000pt;}
.x39{left:702.400000pt;}
.xee{left:705.067333pt;}
.xdd{left:708.133867pt;}
.xa5{left:709.066667pt;}
.xf0{left:710.133867pt;}
.xa1{left:715.200000pt;}
.x75{left:717.066667pt;}
.xa8{left:721.867333pt;}
}

