
    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_14a280039cd79a961876a413.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_a48d02a6212c25923b776c28.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722656;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_09bf982084ce255214e55433.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_acc7030309854ab1599a742d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.990000;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_69e3dbc67f53e2990fcfc13f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999000;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_14a280039cd79a961876a413.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_edfa0203c89f0b1d6cf4ba40.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.928000;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_5493a0bfdc9e89d8db19482e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940000;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_9e613a63ab3aecb262110a40.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b5c37252e2c974febc2de25b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.747000;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_4dbf441af0c05628b78b397e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ddbff296c4933250afcc4d6b.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c2dc753835c189f960eebfa1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000048;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_92cf6d0e6ee9f4ac1c8f5203.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912000;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:fff;src:url('chunks/assets/font_b03e1d81dd5a713781739cd2.woff2')format("woff");}.fff{font-family:fff;line-height:0.912000;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:ff10;src:url('chunks/assets/font_b120a45fd457f2e62f0bda35.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.928000;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:ff11;src:url('chunks/assets/font_dfb9e5b391b0d2ad666c4ae6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.984000;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:ff12;src:url('chunks/assets/font_c35fe04a3d1153d4350d00d7.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.042000;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:ff13;src:url('chunks/assets/font_125db5124974c37f44028f81.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.984000;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:ff14;src:url('chunks/assets/font_dde7bef71b1d1d05cfbf9b5f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000048;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:ff15;src:url('chunks/assets/font_b120a45fd457f2e62f0bda35.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.928000;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:ff16;src:url('chunks/assets/font_7871b963c857885854bbaf4e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.984000;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:ff17;src:url('chunks/assets/font_6d85d10b81e3709b5c3aedaa.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.870000;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:ff18;src:url('chunks/assets/font_9eb002a0e248731c9f720855.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.940000;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:ff19;src:url('chunks/assets/font_10676498182eb4e29f2e4a0f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_9eb002a0e248731c9f720855.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.940000;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:ff1b;src:url('chunks/assets/font_d6cbe3c0226d1bfdae07f07f.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.714000;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:ff1c;src:url('chunks/assets/font_9eb002a0e248731c9f720855.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.940000;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:ff1d;src:url('chunks/assets/font_9eb002a0e248731c9f720855.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.940000;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:ff1e;src:url('chunks/assets/font_cb3898f11d65d60436307256.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.940000;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:ff1f;src:url('chunks/assets/font_03f42f7a5e1f484237b5e54e.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.940000;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:ff20;src:url('chunks/assets/font_03f42f7a5e1f484237b5e54e.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.940000;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:ff21;src:url('chunks/assets/font_cb3898f11d65d60436307256.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.940000;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;}
.m38{transform:matrix(-0.249681,0.012617,-0.012617,-0.249681,0,0);-ms-transform:matrix(-0.249681,0.012617,-0.012617,-0.249681,0,0);-webkit-transform:matrix(-0.249681,0.012617,-0.012617,-0.249681,0,0);}
.m37{transform:matrix(-0.247279,0.036784,-0.036784,-0.247279,0,0);-ms-transform:matrix(-0.247279,0.036784,-0.036784,-0.247279,0,0);-webkit-transform:matrix(-0.247279,0.036784,-0.036784,-0.247279,0,0);}
.m2{transform:matrix(-0.244121,-0.053899,0.053899,-0.244121,0,0);-ms-transform:matrix(-0.244121,-0.053899,0.053899,-0.244121,0,0);-webkit-transform:matrix(-0.244121,-0.053899,0.053899,-0.244121,0,0);}
.m36{transform:matrix(-0.243229,0.057791,-0.057791,-0.243229,0,0);-ms-transform:matrix(-0.243229,0.057791,-0.057791,-0.243229,0,0);-webkit-transform:matrix(-0.243229,0.057791,-0.057791,-0.243229,0,0);}
.m35{transform:matrix(-0.236992,0.079592,-0.079592,-0.236992,0,0);-ms-transform:matrix(-0.236992,0.079592,-0.079592,-0.236992,0,0);-webkit-transform:matrix(-0.236992,0.079592,-0.079592,-0.236992,0,0);}
.m3{transform:matrix(-0.231743,-0.093781,0.093781,-0.231743,0,0);-ms-transform:matrix(-0.231743,-0.093781,0.093781,-0.231743,0,0);-webkit-transform:matrix(-0.231743,-0.093781,0.093781,-0.231743,0,0);}
.m34{transform:matrix(-0.227567,0.103505,-0.103505,-0.227567,0,0);-ms-transform:matrix(-0.227567,0.103505,-0.103505,-0.227567,0,0);-webkit-transform:matrix(-0.227567,0.103505,-0.103505,-0.227567,0,0);}
.m33{transform:matrix(-0.213024,0.130847,-0.130847,-0.213024,0,0);-ms-transform:matrix(-0.213024,0.130847,-0.130847,-0.213024,0,0);-webkit-transform:matrix(-0.213024,0.130847,-0.130847,-0.213024,0,0);}
.m4{transform:matrix(-0.212813,-0.131190,0.131190,-0.212813,0,0);-ms-transform:matrix(-0.212813,-0.131190,0.131190,-0.212813,0,0);-webkit-transform:matrix(-0.212813,-0.131190,0.131190,-0.212813,0,0);}
.m32{transform:matrix(-0.195380,0.155970,-0.155970,-0.195380,0,0);-ms-transform:matrix(-0.195380,0.155970,-0.155970,-0.195380,0,0);-webkit-transform:matrix(-0.195380,0.155970,-0.155970,-0.195380,0,0);}
.m5{transform:matrix(-0.187098,-0.165814,0.165814,-0.187098,0,0);-ms-transform:matrix(-0.187098,-0.165814,0.165814,-0.187098,0,0);-webkit-transform:matrix(-0.187098,-0.165814,0.165814,-0.187098,0,0);}
.m31{transform:matrix(-0.171993,0.181434,-0.181434,-0.171993,0,0);-ms-transform:matrix(-0.171993,0.181434,-0.181434,-0.171993,0,0);-webkit-transform:matrix(-0.171993,0.181434,-0.181434,-0.171993,0,0);}
.m6{transform:matrix(-0.167217,-0.185845,0.185845,-0.167217,0,0);-ms-transform:matrix(-0.167217,-0.185845,0.185845,-0.167217,0,0);-webkit-transform:matrix(-0.167217,-0.185845,0.185845,-0.167217,0,0);}
.m7{transform:matrix(-0.151839,-0.198608,0.198608,-0.151839,0,0);-ms-transform:matrix(-0.151839,-0.198608,0.198608,-0.151839,0,0);-webkit-transform:matrix(-0.151839,-0.198608,0.198608,-0.151839,0,0);}
.m30{transform:matrix(-0.146607,0.202500,-0.202500,-0.146607,0,0);-ms-transform:matrix(-0.146607,0.202500,-0.202500,-0.146607,0,0);-webkit-transform:matrix(-0.146607,0.202500,-0.202500,-0.146607,0,0);}
.m8{transform:matrix(-0.132291,-0.212130,0.212130,-0.132291,0,0);-ms-transform:matrix(-0.132291,-0.212130,0.212130,-0.132291,0,0);-webkit-transform:matrix(-0.132291,-0.212130,0.212130,-0.132291,0,0);}
.m2f{transform:matrix(-0.117372,0.220735,-0.220735,-0.117372,0,0);-ms-transform:matrix(-0.117372,0.220735,-0.220735,-0.117372,0,0);-webkit-transform:matrix(-0.117372,0.220735,-0.220735,-0.117372,0,0);}
.m9{transform:matrix(-0.111861,-0.223578,0.223578,-0.111861,0,0);-ms-transform:matrix(-0.111861,-0.223578,0.223578,-0.111861,0,0);-webkit-transform:matrix(-0.111861,-0.223578,0.223578,-0.111861,0,0);}
.ma{transform:matrix(-0.097802,-0.230076,0.230076,-0.097802,0,0);-ms-transform:matrix(-0.097802,-0.230076,0.230076,-0.097802,0,0);-webkit-transform:matrix(-0.097802,-0.230076,0.230076,-0.097802,0,0);}
.m2e{transform:matrix(-0.093334,0.231924,-0.231924,-0.093334,0,0);-ms-transform:matrix(-0.093334,0.231924,-0.231924,-0.093334,0,0);-webkit-transform:matrix(-0.093334,0.231924,-0.231924,-0.093334,0,0);}
.mb{transform:matrix(-0.076376,-0.238048,0.238048,-0.076376,0,0);-ms-transform:matrix(-0.076376,-0.238048,0.238048,-0.076376,0,0);-webkit-transform:matrix(-0.076376,-0.238048,0.238048,-0.076376,0,0);}
.m2d{transform:matrix(-0.071562,0.239539,-0.239539,-0.071562,0,0);-ms-transform:matrix(-0.071562,0.239539,-0.239539,-0.071562,0,0);-webkit-transform:matrix(-0.071562,0.239539,-0.239539,-0.071562,0,0);}
.mc{transform:matrix(-0.051677,-0.244601,0.244601,-0.051677,0,0);-ms-transform:matrix(-0.051677,-0.244601,0.244601,-0.051677,0,0);-webkit-transform:matrix(-0.051677,-0.244601,0.244601,-0.051677,0,0);}
.m2c{transform:matrix(-0.038917,0.246952,-0.246952,-0.038917,0,0);-ms-transform:matrix(-0.038917,0.246952,-0.246952,-0.038917,0,0);-webkit-transform:matrix(-0.038917,0.246952,-0.246952,-0.038917,0,0);}
.md{transform:matrix(-0.026414,-0.248601,0.248601,-0.026414,0,0);-ms-transform:matrix(-0.026414,-0.248601,0.248601,-0.026414,0,0);-webkit-transform:matrix(-0.026414,-0.248601,0.248601,-0.026414,0,0);}
.m2b{transform:matrix(-0.010419,0.249783,-0.249783,-0.010419,0,0);-ms-transform:matrix(-0.010419,0.249783,-0.249783,-0.010419,0,0);-webkit-transform:matrix(-0.010419,0.249783,-0.249783,-0.010419,0,0);}
.md0{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);}
.me{transform:matrix(0.006570,-0.249914,0.249914,0.006570,0,0);-ms-transform:matrix(0.006570,-0.249914,0.249914,0.006570,0,0);-webkit-transform:matrix(0.006570,-0.249914,0.249914,0.006570,0,0);}
.m2a{transform:matrix(0.010540,0.249778,-0.249778,0.010540,0,0);-ms-transform:matrix(0.010540,0.249778,-0.249778,0.010540,0,0);-webkit-transform:matrix(0.010540,0.249778,-0.249778,0.010540,0,0);}
.m29{transform:matrix(0.024153,0.248830,-0.248830,0.024153,0,0);-ms-transform:matrix(0.024153,0.248830,-0.248830,0.024153,0,0);-webkit-transform:matrix(0.024153,0.248830,-0.248830,0.024153,0,0);}
.mf{transform:matrix(0.042014,-0.246444,0.246444,0.042014,0,0);-ms-transform:matrix(0.042014,-0.246444,0.246444,0.042014,0,0);-webkit-transform:matrix(0.042014,-0.246444,0.246444,0.042014,0,0);}
.m28{transform:matrix(0.050334,0.244881,-0.244881,0.050334,0,0);-ms-transform:matrix(0.050334,0.244881,-0.244881,0.050334,0,0);-webkit-transform:matrix(0.050334,0.244881,-0.244881,0.050334,0,0);}
.m27{transform:matrix(0.074244,0.238721,-0.238721,0.074244,0,0);-ms-transform:matrix(0.074244,0.238721,-0.238721,0.074244,0,0);-webkit-transform:matrix(0.074244,0.238721,-0.238721,0.074244,0,0);}
.m10{transform:matrix(0.074327,-0.238695,0.238695,0.074327,0,0);-ms-transform:matrix(0.074327,-0.238695,0.238695,0.074327,0,0);-webkit-transform:matrix(0.074327,-0.238695,0.238695,0.074327,0,0);}
.m26{transform:matrix(0.092733,0.232165,-0.232165,0.092733,0,0);-ms-transform:matrix(0.092733,0.232165,-0.232165,0.092733,0,0);-webkit-transform:matrix(0.092733,0.232165,-0.232165,0.092733,0,0);}
.m11{transform:matrix(0.105322,-0.226732,0.226732,0.105322,0,0);-ms-transform:matrix(0.105322,-0.226732,0.226732,0.105322,0,0);-webkit-transform:matrix(0.105322,-0.226732,0.226732,0.105322,0,0);}
.m25{transform:matrix(0.117865,0.220472,-0.220472,0.117865,0,0);-ms-transform:matrix(0.117865,0.220472,-0.220472,0.117865,0,0);-webkit-transform:matrix(0.117865,0.220472,-0.220472,0.117865,0,0);}
.m12{transform:matrix(0.134453,-0.210766,0.210766,0.134453,0,0);-ms-transform:matrix(0.134453,-0.210766,0.210766,0.134453,0,0);-webkit-transform:matrix(0.134453,-0.210766,0.210766,0.134453,0,0);}
.m24{transform:matrix(0.140424,0.206836,-0.206836,0.140424,0,0);-ms-transform:matrix(0.140424,0.206836,-0.206836,0.140424,0,0);-webkit-transform:matrix(0.140424,0.206836,-0.206836,0.140424,0,0);}
.m13{transform:matrix(0.153116,-0.197625,0.197625,0.153116,0,0);-ms-transform:matrix(0.153116,-0.197625,0.197625,0.153116,0,0);-webkit-transform:matrix(0.153116,-0.197625,0.197625,0.153116,0,0);}
.m23{transform:matrix(0.162876,0.189661,-0.189661,0.162876,0,0);-ms-transform:matrix(0.162876,0.189661,-0.189661,0.162876,0,0);-webkit-transform:matrix(0.162876,0.189661,-0.189661,0.162876,0,0);}
.m14{transform:matrix(0.171384,-0.182010,0.182010,0.171384,0,0);-ms-transform:matrix(0.171384,-0.182010,0.182010,0.171384,0,0);-webkit-transform:matrix(0.171384,-0.182010,0.182010,0.171384,0,0);}
.m22{transform:matrix(0.184981,0.168172,-0.168172,0.184981,0,0);-ms-transform:matrix(0.184981,0.168172,-0.168172,0.184981,0,0);-webkit-transform:matrix(0.184981,0.168172,-0.168172,0.184981,0,0);}
.m15{transform:matrix(0.192731,-0.159232,0.159232,0.192731,0,0);-ms-transform:matrix(0.192731,-0.159232,0.159232,0.192731,0,0);-webkit-transform:matrix(0.192731,-0.159232,0.159232,0.192731,0,0);}
.m21{transform:matrix(0.199727,0.150364,-0.150364,0.199727,0,0);-ms-transform:matrix(0.199727,0.150364,-0.150364,0.199727,0,0);-webkit-transform:matrix(0.199727,0.150364,-0.150364,0.199727,0,0);}
.m16{transform:matrix(0.207101,-0.140033,0.140033,0.207101,0,0);-ms-transform:matrix(0.207101,-0.140033,0.140033,0.207101,0,0);-webkit-transform:matrix(0.207101,-0.140033,0.140033,0.207101,0,0);}
.m20{transform:matrix(0.214328,0.128699,-0.128699,0.214328,0,0);-ms-transform:matrix(0.214328,0.128699,-0.128699,0.214328,0,0);-webkit-transform:matrix(0.214328,0.128699,-0.128699,0.214328,0,0);}
.m17{transform:matrix(0.220649,-0.117533,0.117533,0.220649,0,0);-ms-transform:matrix(0.220649,-0.117533,0.117533,0.220649,0,0);-webkit-transform:matrix(0.220649,-0.117533,0.117533,0.220649,0,0);}
.m1f{transform:matrix(0.227920,0.102726,-0.102726,0.227920,0,0);-ms-transform:matrix(0.227920,0.102726,-0.102726,0.227920,0,0);-webkit-transform:matrix(0.227920,0.102726,-0.102726,0.227920,0,0);}
.m18{transform:matrix(0.235113,-0.084981,0.084981,0.235113,0,0);-ms-transform:matrix(0.235113,-0.084981,0.084981,0.235113,0,0);-webkit-transform:matrix(0.235113,-0.084981,0.084981,0.235113,0,0);}
.m1e{transform:matrix(0.237578,0.077823,-0.077823,0.237578,0,0);-ms-transform:matrix(0.237578,0.077823,-0.077823,0.237578,0,0);-webkit-transform:matrix(0.237578,0.077823,-0.077823,0.237578,0,0);}
.mb9{transform:matrix(0.242074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242074,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.243788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243788,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.244334,-0.052924,0.052924,0.244334,0,0);-ms-transform:matrix(0.244334,-0.052924,0.052924,0.244334,0,0);-webkit-transform:matrix(0.244334,-0.052924,0.052924,0.244334,0,0);}
.mba{transform:matrix(0.244807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244807,0.000000,0.000000,0.250000,0,0);}
.mb7{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);}
.me9{transform:matrix(0.245432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245432,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246056,0.044231,-0.044231,0.246056,0,0);-ms-transform:matrix(0.246056,0.044231,-0.044231,0.246056,0,0);-webkit-transform:matrix(0.246056,0.044231,-0.044231,0.246056,0,0);}
.m40{transform:matrix(0.246174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246174,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.246624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246624,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.246626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246626,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.247432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247432,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247633,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247921,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.247929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247929,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248086,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248153,-0.030334,0.030334,0.248153,0,0);-ms-transform:matrix(0.248153,-0.030334,0.030334,0.248153,0,0);-webkit-transform:matrix(0.248153,-0.030334,0.030334,0.248153,0,0);}
.m1{transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248198,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248434,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248434,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248434,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248571,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248633,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248721,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248724,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.248748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248748,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248769,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248810,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,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);}
.ma0{transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249060,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249166,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249190,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249226,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);}
.m49{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);}
.m58{transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249346,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249358,0.017908,-0.017908,0.249358,0,0);-ms-transform:matrix(0.249358,0.017908,-0.017908,0.249358,0,0);-webkit-transform:matrix(0.249358,0.017908,-0.017908,0.249358,0,0);}
.mbf{transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249386,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249407,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249414,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.249453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249453,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249508,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249607,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249612,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.mb0{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249647,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249681,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249695,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.mce{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);}
.m85{transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.m91{transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249842,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.ma6{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);}
.m75{transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249988,-0.002433,0.002433,0.249988,0,0);-ms-transform:matrix(0.249988,-0.002433,0.002433,0.249988,0,0);-webkit-transform:matrix(0.249988,-0.002433,0.002433,0.249988,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);}
.m59{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.mad{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);}
.m97{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250129,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250236,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250245,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250290,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250367,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250367,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250367,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250411,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250412,0.000000,0.000000,0.250000,0,0);}
.m7a{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);}
.ma7{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250562,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250681,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250681,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250681,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250721,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.250726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250726,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.250739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250739,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250767,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250804,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250804,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250804,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250887,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250890,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250898,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250933,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251010,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251016,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251040,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251236,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251302,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251381,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251433,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251536,0.000000,0.000000,0.250000,0,0);}
.md8{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);}
.mc5{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);}
.mcb{transform:matrix(0.251657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251657,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251663,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251671,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251688,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251786,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251910,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.252079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252079,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252197,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252443,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252536,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252621,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252821,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252834,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253167,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.253588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253588,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.253669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253669,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253790,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253945,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.255421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255421,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.255512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255512,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255755,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.255883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255883,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.257086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257086,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.v4{vertical-align:-15.996000px;}
.v5{vertical-align:-12.756000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:9.600000px;}
.v3{vertical-align:16.017000px;}
.v1{vertical-align:18.000000px;}
.v6{vertical-align:31.980000px;}
.v7{vertical-align:40.020000px;}
.ls1{letter-spacing:-34.104000px;}
.ls2{letter-spacing:-6.426000px;}
.ls26{letter-spacing:-1.482000px;}
.ls25{letter-spacing:-1.425000px;}
.ls27{letter-spacing:-1.254000px;}
.ls24{letter-spacing:-1.140000px;}
.ls66{letter-spacing:-1.083000px;}
.ls44{letter-spacing:-0.882000px;}
.ls64{letter-spacing:-0.798000px;}
.ls11{letter-spacing:-0.630000px;}
.ls62{letter-spacing:-0.570000px;}
.ls42{letter-spacing:-0.504000px;}
.ls67{letter-spacing:-0.456000px;}
.ls2a{letter-spacing:-0.420000px;}
.ls65{letter-spacing:-0.399000px;}
.ls43{letter-spacing:-0.378000px;}
.ls15{letter-spacing:-0.342000px;}
.ls36{letter-spacing:-0.315000px;}
.ls61{letter-spacing:-0.285000px;}
.ls12{letter-spacing:-0.252000px;}
.ls16{letter-spacing:-0.228000px;}
.ls37{letter-spacing:-0.189000px;}
.ls28{letter-spacing:-0.171000px;}
.ls14{letter-spacing:-0.126000px;}
.ls63{letter-spacing:-0.114000px;}
.ls3{letter-spacing:-0.084000px;}
.ls13{letter-spacing:-0.063000px;}
.ls10{letter-spacing:-0.057000px;}
.ls0{letter-spacing:0.000000px;}
.ls57{letter-spacing:0.000450px;}
.ls2c{letter-spacing:0.003096px;}
.ls2d{letter-spacing:0.012000px;}
.ls32{letter-spacing:0.031500px;}
.ls5{letter-spacing:0.057000px;}
.ls9{letter-spacing:0.063000px;}
.ls33{letter-spacing:0.084000px;}
.lsa{letter-spacing:0.094500px;}
.ls5a{letter-spacing:0.114000px;}
.lsc{letter-spacing:0.126000px;}
.ls2f{letter-spacing:0.132300px;}
.ls23{letter-spacing:0.135000px;}
.ls31{letter-spacing:0.157500px;}
.ls35{letter-spacing:0.168000px;}
.ls59{letter-spacing:0.171000px;}
.lsb{letter-spacing:0.189000px;}
.lsd{letter-spacing:0.220500px;}
.ls4{letter-spacing:0.228000px;}
.ls7{letter-spacing:0.252000px;}
.ls8{letter-spacing:0.315000px;}
.ls5c{letter-spacing:0.376200px;}
.ls5b{letter-spacing:0.376713px;}
.ls29{letter-spacing:0.378000px;}
.ls5d{letter-spacing:0.399000px;}
.ls30{letter-spacing:0.441000px;}
.ls48{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.513000px;}
.ls4b{letter-spacing:0.535500px;}
.ls53{letter-spacing:0.567000px;}
.ls5f{letter-spacing:0.627000px;}
.lse{letter-spacing:0.630000px;}
.ls5e{letter-spacing:0.637968px;}
.ls3c{letter-spacing:0.661500px;}
.ls3b{letter-spacing:0.693000px;}
.ls39{letter-spacing:0.756000px;}
.ls1e{letter-spacing:0.819000px;}
.ls4e{letter-spacing:0.850500px;}
.ls6{letter-spacing:0.882000px;}
.ls60{letter-spacing:0.883500px;}
.ls68{letter-spacing:0.912000px;}
.ls2b{letter-spacing:0.913500px;}
.ls18{letter-spacing:0.945000px;}
.ls4a{letter-spacing:1.006425px;}
.ls49{letter-spacing:1.006800px;}
.ls1d{letter-spacing:1.008000px;}
.ls2e{letter-spacing:1.071000px;}
.ls1c{letter-spacing:1.102500px;}
.ls3a{letter-spacing:1.134000px;}
.ls1a{letter-spacing:1.197000px;}
.ls51{letter-spacing:1.251600px;}
.ls38{letter-spacing:1.260000px;}
.ls17{letter-spacing:1.291500px;}
.ls19{letter-spacing:1.323000px;}
.ls54{letter-spacing:1.334199px;}
.ls3d{letter-spacing:1.386000px;}
.ls50{letter-spacing:1.397098px;}
.ls4f{letter-spacing:1.397694px;}
.ls1f{letter-spacing:1.449000px;}
.ls20{letter-spacing:1.508805px;}
.ls21{letter-spacing:1.512000px;}
.ls1b{letter-spacing:1.575000px;}
.ls56{letter-spacing:1.701000px;}
.ls4d{letter-spacing:1.795500px;}
.ls22{letter-spacing:1.827000px;}
.ls4c{letter-spacing:1.890000px;}
.ls52{letter-spacing:3.064934px;}
.ls58{letter-spacing:3.105600px;}
.ls55{letter-spacing:5.251592px;}
.ls3e{letter-spacing:242.614800px;}
.ls46{letter-spacing:403.320000px;}
.ls45{letter-spacing:431.100000px;}
.ls34{letter-spacing:528.030600px;}
.ls40{letter-spacing:562.680000px;}
.ls41{letter-spacing:563.760000px;}
.ls3f{letter-spacing:807.120000px;}
.ls47{letter-spacing:917.460000px;}
.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;}
}
.wsb9{word-spacing:-917.520000px;}
.wsba{word-spacing:-431.100000px;}
.wsbb{word-spacing:-403.320000px;}
.ws1{word-spacing:-121.128000px;}
.ws0{word-spacing:-48.000000px;}
.wsc2{word-spacing:-17.640000px;}
.wsc3{word-spacing:-17.545500px;}
.wsd0{word-spacing:-17.451000px;}
.ws57{word-spacing:-17.262000px;}
.wsc4{word-spacing:-17.199000px;}
.wsa6{word-spacing:-17.136000px;}
.ws58{word-spacing:-17.073000px;}
.wsa7{word-spacing:-16.947000px;}
.ws7a{word-spacing:-16.821000px;}
.wsbe{word-spacing:-16.758000px;}
.ws56{word-spacing:-16.695000px;}
.ws1c{word-spacing:-16.632000px;}
.wsa5{word-spacing:-16.569000px;}
.wsa2{word-spacing:-16.443000px;}
.wsc1{word-spacing:-16.317000px;}
.wsbf{word-spacing:-16.254000px;}
.wsa3{word-spacing:-16.191000px;}
.ws1d{word-spacing:-16.065000px;}
.ws20{word-spacing:-15.939000px;}
.ws1e{word-spacing:-15.813000px;}
.ws1f{word-spacing:-15.750000px;}
.wsa8{word-spacing:-15.687000px;}
.wsb8{word-spacing:-15.246000px;}
.wsd6{word-spacing:-15.133500px;}
.ws52{word-spacing:-15.000000px;}
.wsb{word-spacing:-14.250000px;}
.wsd1{word-spacing:-14.136000px;}
.wsd5{word-spacing:-13.794000px;}
.wsd2{word-spacing:-13.680000px;}
.wsd{word-spacing:-13.500000px;}
.wsd3{word-spacing:-13.452000px;}
.ws7{word-spacing:-13.344000px;}
.wsc0{word-spacing:-12.818925px;}
.wsa4{word-spacing:-12.757500px;}
.wsc6{word-spacing:-11.844000px;}
.ws51{word-spacing:-11.812500px;}
.ws5{word-spacing:-11.676000px;}
.wsa{word-spacing:-11.592000px;}
.ws53{word-spacing:-11.250000px;}
.ws7b{word-spacing:-11.157300px;}
.ws4{word-spacing:-11.088000px;}
.wsd4{word-spacing:-11.063700px;}
.ws3{word-spacing:-11.004000px;}
.ws54{word-spacing:-10.687500px;}
.ws8{word-spacing:-9.340800px;}
.ws6{word-spacing:-8.757000px;}
.wscc{word-spacing:-4.914000px;}
.ws2b{word-spacing:-4.032000px;}
.ws2a{word-spacing:-3.969000px;}
.ws36{word-spacing:-3.906000px;}
.ws77{word-spacing:-3.843000px;}
.ws2d{word-spacing:-3.780000px;}
.ws93{word-spacing:-3.717000px;}
.ws8e{word-spacing:-3.654000px;}
.ws24{word-spacing:-3.591000px;}
.ws50{word-spacing:-3.534000px;}
.wsad{word-spacing:-3.528000px;}
.ws1a{word-spacing:-3.477000px;}
.ws3e{word-spacing:-3.465000px;}
.ws61{word-spacing:-3.363000px;}
.wsae{word-spacing:-3.339000px;}
.ws38{word-spacing:-3.276000px;}
.ws7e{word-spacing:-3.150000px;}
.ws4e{word-spacing:-3.135000px;}
.ws4c{word-spacing:-3.024000px;}
.wsdc{word-spacing:-2.964000px;}
.wsc8{word-spacing:-2.961000px;}
.ws91{word-spacing:-2.898000px;}
.ws5a{word-spacing:-2.835000px;}
.wsab{word-spacing:-2.772000px;}
.wsb4{word-spacing:-2.709000px;}
.ws10{word-spacing:-2.679000px;}
.ws68{word-spacing:-2.646000px;}
.ws48{word-spacing:-2.583000px;}
.wsb6{word-spacing:-2.520000px;}
.ws60{word-spacing:-2.451000px;}
.ws43{word-spacing:-2.394000px;}
.wsde{word-spacing:-2.337000px;}
.ws45{word-spacing:-2.331000px;}
.ws83{word-spacing:-2.268000px;}
.ws33{word-spacing:-2.205000px;}
.wsce{word-spacing:-2.184000px;}
.ws46{word-spacing:-2.142000px;}
.wse2{word-spacing:-2.109000px;}
.ws6b{word-spacing:-2.079000px;}
.ws62{word-spacing:-2.052000px;}
.ws9a{word-spacing:-2.016000px;}
.ws29{word-spacing:-1.995000px;}
.ws63{word-spacing:-1.953000px;}
.wsd9{word-spacing:-1.938000px;}
.wscd{word-spacing:-1.890000px;}
.wsc9{word-spacing:-1.827000px;}
.wse7{word-spacing:-1.824000px;}
.wsbd{word-spacing:-1.806000px;}
.ws2e{word-spacing:-1.701000px;}
.ws34{word-spacing:-1.638000px;}
.ws67{word-spacing:-1.575000px;}
.wsbc{word-spacing:-1.554000px;}
.ws16{word-spacing:-1.539000px;}
.ws6c{word-spacing:-1.512000px;}
.wsf{word-spacing:-1.482000px;}
.ws42{word-spacing:-1.449000px;}
.wsb2{word-spacing:-1.386000px;}
.ws3a{word-spacing:-1.260000px;}
.ws9d{word-spacing:-1.218000px;}
.ws3c{word-spacing:-1.197000px;}
.ws7f{word-spacing:-1.134000px;}
.ws9f{word-spacing:-1.071000px;}
.ws79{word-spacing:-1.050000px;}
.ws65{word-spacing:-1.008000px;}
.ws4a{word-spacing:-0.945000px;}
.wse5{word-spacing:-0.912000px;}
.ws80{word-spacing:-0.882000px;}
.ws4f{word-spacing:-0.855000px;}
.wsd8{word-spacing:-0.819000px;}
.ws15{word-spacing:-0.798000px;}
.wsb7{word-spacing:-0.756000px;}
.ws6f{word-spacing:-0.693000px;}
.ws12{word-spacing:-0.684000px;}
.ws69{word-spacing:-0.630000px;}
.ws5e{word-spacing:-0.627000px;}
.ws70{word-spacing:-0.567000px;}
.wsdf{word-spacing:-0.513000px;}
.ws2c{word-spacing:-0.504000px;}
.ws39{word-spacing:-0.441000px;}
.ws99{word-spacing:-0.378000px;}
.ws22{word-spacing:-0.342000px;}
.ws2f{word-spacing:-0.315000px;}
.ws18{word-spacing:-0.285000px;}
.ws90{word-spacing:-0.252000px;}
.ws3d{word-spacing:-0.189000px;}
.ws9e{word-spacing:-0.168000px;}
.ws5b{word-spacing:-0.135000px;}
.ws37{word-spacing:-0.126000px;}
.wse3{word-spacing:-0.114000px;}
.wsc{word-spacing:-0.096000px;}
.ws9b{word-spacing:-0.084000px;}
.ws55{word-spacing:-0.057000px;}
.ws59{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.ws4b{word-spacing:0.063000px;}
.wse{word-spacing:0.084000px;}
.ws13{word-spacing:0.114000px;}
.ws31{word-spacing:0.126000px;}
.ws11{word-spacing:0.171000px;}
.ws7d{word-spacing:0.189000px;}
.ws26{word-spacing:0.228000px;}
.ws7c{word-spacing:0.252000px;}
.ws28{word-spacing:0.285000px;}
.ws3f{word-spacing:0.315000px;}
.ws19{word-spacing:0.342000px;}
.ws6a{word-spacing:0.378000px;}
.ws73{word-spacing:0.420000px;}
.ws76{word-spacing:0.441000px;}
.ws17{word-spacing:0.456000px;}
.ws95{word-spacing:0.504000px;}
.wsca{word-spacing:0.567000px;}
.wsda{word-spacing:0.570000px;}
.wsaa{word-spacing:0.630000px;}
.ws66{word-spacing:0.756000px;}
.wse1{word-spacing:0.855000px;}
.wsb1{word-spacing:0.882000px;}
.wse4{word-spacing:0.912000px;}
.ws64{word-spacing:0.945000px;}
.ws32{word-spacing:1.008000px;}
.ws5d{word-spacing:1.026000px;}
.ws35{word-spacing:1.071000px;}
.ws25{word-spacing:1.083000px;}
.ws98{word-spacing:1.134000px;}
.wsd7{word-spacing:1.197000px;}
.ws14{word-spacing:1.254000px;}
.wsb5{word-spacing:1.260000px;}
.ws92{word-spacing:1.323000px;}
.wscb{word-spacing:1.386000px;}
.ws23{word-spacing:1.482000px;}
.ws5f{word-spacing:1.539000px;}
.ws97{word-spacing:1.575000px;}
.wsc7{word-spacing:1.638000px;}
.ws8a{word-spacing:1.701000px;}
.ws81{word-spacing:1.764000px;}
.ws27{word-spacing:1.767000px;}
.wsa1{word-spacing:1.806000px;}
.ws47{word-spacing:1.827000px;}
.ws72{word-spacing:1.890000px;}
.wsdb{word-spacing:1.938000px;}
.ws94{word-spacing:2.016000px;}
.ws8d{word-spacing:2.079000px;}
.ws96{word-spacing:2.142000px;}
.ws6e{word-spacing:2.331000px;}
.ws5c{word-spacing:2.394000px;}
.ws78{word-spacing:2.457000px;}
.wsa9{word-spacing:2.520000px;}
.ws41{word-spacing:2.583000px;}
.ws8b{word-spacing:2.646000px;}
.wsa0{word-spacing:2.709000px;}
.wse0{word-spacing:2.736000px;}
.ws4d{word-spacing:2.772000px;}
.ws30{word-spacing:2.835000px;}
.wscf{word-spacing:2.856000px;}
.ws9c{word-spacing:2.898000px;}
.wsb0{word-spacing:2.961000px;}
.wsb3{word-spacing:3.024000px;}
.ws49{word-spacing:3.087000px;}
.wsdd{word-spacing:3.135000px;}
.ws44{word-spacing:3.213000px;}
.wsac{word-spacing:3.276000px;}
.wsaf{word-spacing:3.339000px;}
.wse6{word-spacing:3.477000px;}
.ws82{word-spacing:3.528000px;}
.ws21{word-spacing:3.534000px;}
.ws40{word-spacing:3.591000px;}
.ws84{word-spacing:3.717000px;}
.ws8f{word-spacing:3.780000px;}
.ws71{word-spacing:3.843000px;}
.ws3b{word-spacing:3.906000px;}
.ws8c{word-spacing:3.969000px;}
.ws6d{word-spacing:5.418000px;}
.ws9{word-spacing:6.426000px;}
.wsc5{word-spacing:84.588000px;}
.ws89{word-spacing:103.961400px;}
.ws85{word-spacing:130.649400px;}
.ws86{word-spacing:130.650000px;}
.ws88{word-spacing:170.681400px;}
.ws87{word-spacing:200.057400px;}
.ws75{word-spacing:225.589800px;}
.ws74{word-spacing:228.277800px;}
.ws1b{word-spacing:2339.068800px;}
._4c{margin-left:-387.060000px;}
._e{margin-left:-18.319800px;}
._c{margin-left:-14.244300px;}
._1{margin-left:-10.407600px;}
._38{margin-left:-8.851500px;}
._a{margin-left:-7.704000px;}
._3{margin-left:-6.426000px;}
._9{margin-left:-5.074200px;}
._8{margin-left:-3.931200px;}
._5{margin-left:-2.062200px;}
._4{margin-left:-1.024200px;}
._6{width:1.890000px;}
._0{width:3.116400px;}
._2{width:4.939200px;}
._15{width:5.939463px;}
._1e{width:56.101800px;}
._1f{width:58.789800px;}
._21{width:64.790400px;}
._26{width:69.446400px;}
._37{width:75.147600px;}
._1d{width:80.101800px;}
._1c{width:82.789800px;}
._1b{width:88.789800px;}
._4f{width:91.728000px;}
._4e{width:94.794000px;}
._25{width:96.133800px;}
._4d{width:98.154000px;}
._10{width:104.709000px;}
._b{width:113.823300px;}
._11{width:117.819000px;}
._39{width:123.666000px;}
._41{width:125.071500px;}
._14{width:128.736900px;}
._27{width:130.164600px;}
._13{width:139.536000px;}
._12{width:141.128700px;}
._3a{width:143.994000px;}
._24{width:149.053800px;}
._42{width:157.822200px;}
._f{width:162.615300px;}
._1a{width:166.573800px;}
._3b{width:170.682000px;}
._43{width:175.608000px;}
._4b{width:179.065200px;}
._19{width:188.317800px;}
._28{width:190.885800px;}
._d{width:192.066000px;}
._3c{width:197.369400px;}
._20{width:203.917200px;}
._2f{width:205.083600px;}
._18{width:211.429800px;}
._3d{width:213.401400px;}
._22{width:219.637200px;}
._46{width:225.704400px;}
._17{width:227.461800px;}
._23{width:233.173800px;}
._16{width:234.541800px;}
._4a{width:243.567000px;}
._45{width:253.270800px;}
._2c{width:269.019600px;}
._48{width:279.959400px;}
._30{width:293.019600px;}
._49{width:295.991400px;}
._34{width:299.211600px;}
._7{width:321.996600px;}
._36{width:323.211600px;}
._35{width:348.123600px;}
._2b{width:354.363600px;}
._2a{width:433.467600px;}
._47{width:437.017200px;}
._3e{width:443.502600px;}
._44{width:517.033200px;}
._2d{width:520.587600px;}
._3f{width:525.390600px;}
._32{width:529.515600px;}
._31{width:531.291600px;}
._2e{width:535.755600px;}
._33{width:544.587600px;}
._29{width:561.435600px;}
._40{width:636.040200px;}
.fc2{color:rgb(35,80,169);}
.fc1{color:rgb(195,25,58);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs43{font-size:27.984000px;}
.fs37{font-size:31.500000px;}
.fs38{font-size:33.600000px;}
.fs3a{font-size:36.000000px;}
.fs36{font-size:42.000000px;}
.fs42{font-size:42.750000px;}
.fs44{font-size:44.100000px;}
.fs41{font-size:45.000000px;}
.fs40{font-size:47.250000px;}
.fs1{font-size:48.000000px;}
.fs3c{font-size:51.000000px;}
.fs3e{font-size:54.000000px;}
.fs3b{font-size:57.000000px;}
.fs39{font-size:60.000000px;}
.fs3f{font-size:63.000000px;}
.fs16{font-size:83.099393px;}
.fsb{font-size:83.099449px;}
.fs8{font-size:83.099456px;}
.fs17{font-size:83.099474px;}
.fs28{font-size:83.099483px;}
.fs19{font-size:83.099493px;}
.fs3{font-size:83.099498px;}
.fs21{font-size:83.099507px;}
.fse{font-size:83.099512px;}
.fs22{font-size:83.099535px;}
.fs15{font-size:83.099538px;}
.fsd{font-size:83.099540px;}
.fs34{font-size:83.099562px;}
.fs1b{font-size:83.099585px;}
.fs29{font-size:83.099596px;}
.fs30{font-size:83.099604px;}
.fs35{font-size:83.099612px;}
.fs18{font-size:83.099623px;}
.fs2b{font-size:83.099627px;}
.fs2a{font-size:83.099639px;}
.fs27{font-size:83.099645px;}
.fs20{font-size:83.099682px;}
.fs2f{font-size:83.099686px;}
.fs12{font-size:83.099697px;}
.fsc{font-size:83.099702px;}
.fs1f{font-size:83.099707px;}
.fs23{font-size:83.099717px;}
.fs25{font-size:83.099723px;}
.fs1c{font-size:83.099736px;}
.fs33{font-size:83.099746px;}
.fs26{font-size:83.099751px;}
.fs13{font-size:83.099772px;}
.fs7{font-size:83.099781px;}
.fs2e{font-size:83.099811px;}
.fs11{font-size:83.099826px;}
.fs5{font-size:83.099839px;}
.fs6{font-size:83.099849px;}
.fs1d{font-size:83.099872px;}
.fs31{font-size:83.099882px;}
.fs14{font-size:83.099884px;}
.fsa{font-size:83.099891px;}
.fsf{font-size:83.099904px;}
.fs10{font-size:83.099920px;}
.fs1e{font-size:83.099946px;}
.fs9{font-size:83.099952px;}
.fs2d{font-size:83.099959px;}
.fs24{font-size:83.099984px;}
.fs32{font-size:83.100009px;}
.fs1a{font-size:83.100028px;}
.fs2c{font-size:83.100035px;}
.fs4{font-size:83.100080px;}
.fs3d{font-size:96.000000px;}
.fs0{font-size:102.000000px;}
.fs2{font-size:588.000000px;}
.y0{bottom:0.000000px;}
.y11b{bottom:3.230850px;}
.y1a5{bottom:5.771700px;}
.y1a8{bottom:22.688700px;}
.y8a{bottom:53.145300px;}
.y69{bottom:53.318100px;}
.y68{bottom:53.318250px;}
.y3{bottom:104.486100px;}
.y39{bottom:104.905800px;}
.y38{bottom:105.849600px;}
.y37{bottom:108.071100px;}
.y4{bottom:108.766800px;}
.y36{bottom:110.073000px;}
.y5{bottom:112.500450px;}
.y1b1{bottom:114.503700px;}
.y1af{bottom:114.503850px;}
.y35{bottom:114.997200px;}
.y34{bottom:120.182400px;}
.y6{bottom:122.591100px;}
.y193{bottom:125.325450px;}
.yc2{bottom:126.047400px;}
.y10b{bottom:126.047550px;}
.ydb{bottom:126.056100px;}
.y33{bottom:127.723350px;}
.y7{bottom:130.760850px;}
.y8{bottom:136.842450px;}
.y32{bottom:136.875450px;}
.yda{bottom:140.937900px;}
.y9{bottom:141.471150px;}
.yc1{bottom:143.985150px;}
.y10a{bottom:143.985300px;}
.y31{bottom:145.813050px;}
.y43{bottom:148.818900px;}
.ya{bottom:150.858900px;}
.yd9{bottom:155.819850px;}
.yb{bottom:155.931300px;}
.y30{bottom:157.774950px;}
.yc{bottom:160.654950px;}
.y42{bottom:160.818900px;}
.yc0{bottom:161.922900px;}
.y109{bottom:161.923050px;}
.y2f{bottom:162.600600px;}
.y7b{bottom:165.318900px;}
.yd8{bottom:170.701650px;}
.yd{bottom:170.803650px;}
.y89{bottom:172.818900px;}
.y2e{bottom:173.196150px;}
.ye{bottom:177.976350px;}
.ybf{bottom:179.860650px;}
.y108{bottom:179.860800px;}
.y7a{bottom:181.818900px;}
.y41{bottom:181.922850px;}
.y88{bottom:184.818900px;}
.yd7{bottom:185.583600px;}
.y2d{bottom:185.673900px;}
.yf{bottom:188.890050px;}
.y2c{bottom:193.312200px;}
.y40{bottom:193.922850px;}
.y87{bottom:196.818900px;}
.ybe{bottom:197.798400px;}
.y107{bottom:197.798550px;}
.y79{bottom:198.318900px;}
.y2b{bottom:198.481500px;}
.yd6{bottom:200.465400px;}
.y10{bottom:201.672750px;}
.y2a{bottom:205.260600px;}
.y3f{bottom:205.922850px;}
.y86{bottom:208.818900px;}
.y11{bottom:214.087050px;}
.y78{bottom:214.818900px;}
.yd5{bottom:215.347350px;}
.ybd{bottom:215.736150px;}
.y106{bottom:215.736300px;}
.y29{bottom:217.237800px;}
.y3e{bottom:217.922850px;}
.y28{bottom:222.115200px;}
.y12{bottom:224.487450px;}
.y27{bottom:230.149950px;}
.yd4{bottom:230.229300px;}
.y77{bottom:231.318900px;}
.y13d{bottom:232.800600px;}
.y105{bottom:233.674050px;}
.y3d{bottom:234.174750px;}
.y13{bottom:235.914900px;}
.y26{bottom:239.901150px;}
.yd3{bottom:245.111100px;}
.y14{bottom:245.205900px;}
.y25{bottom:246.295500px;}
.y13c{bottom:246.350550px;}
.y3c{bottom:246.774750px;}
.y76{bottom:247.818900px;}
.y15{bottom:249.388500px;}
.ybc{bottom:251.611650px;}
.y24{bottom:255.611400px;}
.y16{bottom:257.860950px;}
.y13b{bottom:259.900500px;}
.yd2{bottom:259.993050px;}
.y23{bottom:262.369200px;}
.y75{bottom:264.318900px;}
.y17{bottom:264.855000px;}
.y22{bottom:265.864350px;}
.y3b{bottom:267.878700px;}
.y18{bottom:268.327200px;}
.y104{bottom:269.549550px;}
.y21{bottom:272.535600px;}
.y13a{bottom:273.510300px;}
.y19{bottom:274.283550px;}
.yd1{bottom:274.874850px;}
.y20{bottom:275.692050px;}
.y1a{bottom:278.543100px;}
.y1f{bottom:279.148050px;}
.y1a1{bottom:280.467450px;}
.y3a{bottom:280.478700px;}
.y1b{bottom:280.771200px;}
.y74{bottom:280.818900px;}
.y1e{bottom:281.611650px;}
.y1c{bottom:281.677350px;}
.y1d{bottom:281.734800px;}
.y139{bottom:287.060250px;}
.y103{bottom:287.487300px;}
.yd0{bottom:289.756800px;}
.y1a0{bottom:293.223300px;}
.y73{bottom:297.318900px;}
.y138{bottom:300.610200px;}
.ycf{bottom:304.638750px;}
.ybb{bottom:305.424900px;}
.y102{bottom:305.425050px;}
.y19f{bottom:305.979150px;}
.y72{bottom:313.818900px;}
.y137{bottom:314.160150px;}
.y114{bottom:314.354850px;}
.y19e{bottom:318.735150px;}
.yce{bottom:319.520550px;}
.yba{bottom:323.362650px;}
.y101{bottom:323.362800px;}
.y14d{bottom:326.512800px;}
.y136{bottom:327.710100px;}
.y17c{bottom:328.408350px;}
.y71{bottom:330.318900px;}
.y141{bottom:335.976600px;}
.y17b{bottom:341.164200px;}
.y135{bottom:341.260050px;}
.yb9{bottom:341.300400px;}
.y100{bottom:341.300550px;}
.y70{bottom:346.818900px;}
.y134{bottom:354.869700px;}
.yb8{bottom:359.238150px;}
.ycd{bottom:359.238300px;}
.y6f{bottom:363.318900px;}
.y133{bottom:368.419650px;}
.yb7{bottom:377.175900px;}
.ycc{bottom:377.176050px;}
.y192{bottom:381.330450px;}
.y132{bottom:382.029450px;}
.y1f4{bottom:392.419800px;}
.yb6{bottom:395.113650px;}
.yff{bottom:395.113800px;}
.y131{bottom:395.639400px;}
.y6e{bottom:397.449900px;}
.y19c{bottom:403.937850px;}
.y1f3{bottom:407.301750px;}
.y6d{bottom:408.699900px;}
.y151{bottom:409.160400px;}
.y130{bottom:409.249200px;}
.yb5{bottom:413.051400px;}
.yfe{bottom:413.051550px;}
.y67{bottom:419.940150px;}
.y6c{bottom:419.949900px;}
.y150{bottom:421.916250px;}
.y1f2{bottom:422.183550px;}
.y12f{bottom:422.799150px;}
.yb4{bottom:430.989150px;}
.yfd{bottom:430.989300px;}
.y6b{bottom:431.199900px;}
.y66{bottom:436.192050px;}
.y12e{bottom:436.349100px;}
.y65{bottom:448.192050px;}
.yb3{bottom:448.926900px;}
.ycb{bottom:448.927050px;}
.y12d{bottom:449.898900px;}
.y6a{bottom:463.709700px;}
.y1f1{bottom:466.829250px;}
.yb2{bottom:466.864650px;}
.yca{bottom:466.864800px;}
.y64{bottom:477.199950px;}
.y1f0{bottom:481.711050px;}
.y12c{bottom:484.705800px;}
.yb1{bottom:484.802400px;}
.yc9{bottom:484.802550px;}
.y63{bottom:493.452000px;}
.y1ef{bottom:496.593000px;}
.yfc{bottom:499.707600px;}
.yb0{bottom:502.740150px;}
.yc8{bottom:502.740300px;}
.y1ee{bottom:511.474950px;}
.y19d{bottom:516.182850px;}
.y12b{bottom:517.161000px;}
.yaf{bottom:520.677900px;}
.yc7{bottom:520.678050px;}
.y62{bottom:522.459750px;}
.y19b{bottom:526.187850px;}
.y1ed{bottom:526.356750px;}
.yfb{bottom:526.495050px;}
.y12a{bottom:537.088800px;}
.yae{bottom:538.615650px;}
.y112{bottom:538.615800px;}
.y61{bottom:538.711800px;}
.y1ec{bottom:541.238700px;}
.yfa{bottom:541.377000px;}
.y60{bottom:554.963700px;}
.y1eb{bottom:556.120500px;}
.y178{bottom:556.207650px;}
.yf9{bottom:556.258800px;}
.yad{bottom:556.553400px;}
.y111{bottom:556.553550px;}
.y177{bottom:568.963500px;}
.y1ea{bottom:571.002450px;}
.yf8{bottom:571.140750px;}
.y5f{bottom:571.215750px;}
.y129{bottom:572.171700px;}
.yac{bottom:574.491150px;}
.y110{bottom:574.491300px;}
.y176{bottom:581.719350px;}
.y1e9{bottom:585.884400px;}
.yf7{bottom:586.022550px;}
.y5e{bottom:587.467650px;}
.yab{bottom:592.428900px;}
.y10f{bottom:592.429050px;}
.y175{bottom:594.475200px;}
.y1e8{bottom:600.766200px;}
.yf6{bottom:600.904500px;}
.y128{bottom:604.626900px;}
.yaa{bottom:610.366650px;}
.y10e{bottom:610.366800px;}
.y1e7{bottom:615.648150px;}
.yf5{bottom:615.786450px;}
.y127{bottom:618.176850px;}
.y19a{bottom:621.692850px;}
.ya9{bottom:628.304400px;}
.y10d{bottom:628.304550px;}
.y174{bottom:630.128100px;}
.y1e6{bottom:630.530100px;}
.y126{bottom:638.104650px;}
.yf4{bottom:642.573750px;}
.y173{bottom:643.678050px;}
.y1e5{bottom:645.411900px;}
.ya8{bottom:646.242150px;}
.yc6{bottom:646.242300px;}
.y172{bottom:657.227850px;}
.yf3{bottom:657.455700px;}
.y1e4{bottom:660.293850px;}
.ya7{bottom:664.179900px;}
.yc5{bottom:664.180050px;}
.y171{bottom:670.777800px;}
.yf2{bottom:672.337500px;}
.y1e3{bottom:675.175650px;}
.y125{bottom:681.503850px;}
.ya6{bottom:682.117650px;}
.y10c{bottom:682.117800px;}
.y199{bottom:684.510750px;}
.yf1{bottom:687.219450px;}
.y1e2{bottom:690.057600px;}
.y170{bottom:690.705750px;}
.y124{bottom:694.259700px;}
.y14f{bottom:696.067800px;}
.y198{bottom:697.266600px;}
.ya5{bottom:700.055400px;}
.y186{bottom:700.055550px;}
.yf0{bottom:702.101400px;}
.y16f{bottom:704.255700px;}
.y1e1{bottom:704.939550px;}
.y197{bottom:710.022450px;}
.y16e{bottom:717.805650px;}
.ya4{bottom:717.993150px;}
.y185{bottom:717.993300px;}
.y1e0{bottom:719.821350px;}
.y196{bottom:722.778450px;}
.yef{bottom:728.888700px;}
.y5d{bottom:729.742200px;}
.y123{bottom:730.006800px;}
.y16d{bottom:731.355600px;}
.y1df{bottom:734.703300px;}
.yc4{bottom:735.930900px;}
.y184{bottom:735.931050px;}
.y83{bottom:738.079800px;}
.y122{bottom:742.762650px;}
.y14c{bottom:743.742900px;}
.yee{bottom:743.770650px;}
.y17a{bottom:744.038400px;}
.y5c{bottom:744.742200px;}
.y16c{bottom:744.905400px;}
.y1de{bottom:749.585100px;}
.y191{bottom:749.835000px;}
.ya3{bottom:753.868650px;}
.yc3{bottom:753.868800px;}
.y121{bottom:755.518650px;}
.y14b{bottom:756.498750px;}
.y179{bottom:756.794250px;}
.y16b{bottom:758.455500px;}
.yed{bottom:758.652450px;}
.y1dd{bottom:764.467050px;}
.y120{bottom:768.274500px;}
.y14a{bottom:769.254600px;}
.y183{bottom:771.806550px;}
.y16a{bottom:772.005300px;}
.yec{bottom:773.534400px;}
.y82{bottom:775.591500px;}
.y5b{bottom:776.750100px;}
.y1dc{bottom:779.348850px;}
.y11f{bottom:781.030500px;}
.y1bf{bottom:782.518650px;}
.y169{bottom:785.555250px;}
.yeb{bottom:788.416200px;}
.y5a{bottom:789.350100px;}
.y182{bottom:789.744300px;}
.y81{bottom:792.091500px;}
.y140{bottom:792.787500px;}
.y11e{bottom:793.786350px;}
.y1db{bottom:794.230800px;}
.y1be{bottom:795.274500px;}
.y168{bottom:799.105200px;}
.y59{bottom:801.950100px;}
.yea{bottom:803.298150px;}
.y149{bottom:804.923100px;}
.y148{bottom:804.929100px;}
.y181{bottom:807.682050px;}
.y1bd{bottom:808.030500px;}
.y80{bottom:808.591500px;}
.y1da{bottom:809.112600px;}
.y167{bottom:812.655150px;}
.y58{bottom:814.550100px;}
.ye9{bottom:818.180100px;}
.y1bc{bottom:820.786350px;}
.y113{bottom:821.692500px;}
.y1d9{bottom:823.994550px;}
.y180{bottom:825.619800px;}
.y166{bottom:826.205100px;}
.y57{bottom:827.150100px;}
.y11c{bottom:828.919350px;}
.ye8{bottom:833.061900px;}
.y1d8{bottom:838.876500px;}
.y56{bottom:839.750100px;}
.y165{bottom:839.755050px;}
.y7f{bottom:840.481350px;}
.y17f{bottom:843.557550px;}
.y11a{bottom:846.665100px;}
.y1a4{bottom:846.793500px;}
.y1b0{bottom:847.266000px;}
.y55{bottom:852.350100px;}
.y164{bottom:853.305000px;}
.y1d7{bottom:853.758300px;}
.y7e{bottom:856.981350px;}
.y146{bottom:857.645100px;}
.ye7{bottom:859.849350px;}
.y144{bottom:861.017100px;}
.y17e{bottom:861.495300px;}
.y54{bottom:864.950100px;}
.y163{bottom:866.854950px;}
.y9c{bottom:867.747600px;}
.ya2{bottom:867.747750px;}
.y1d6{bottom:868.640250px;}
.y1a7{bottom:869.482200px;}
.y1b3{bottom:869.954700px;}
.y145{bottom:870.953100px;}
.y7d{bottom:873.481350px;}
.y53{bottom:877.550100px;}
.y17d{bottom:879.433050px;}
.ya1{bottom:879.747750px;}
.y162{bottom:880.404750px;}
.y1d5{bottom:883.522200px;}
.y9b{bottom:884.247600px;}
.ye6{bottom:886.636800px;}
.y7c{bottom:889.981350px;}
.y52{bottom:890.150100px;}
.y119{bottom:890.381100px;}
.ya0{bottom:891.747750px;}
.y161{bottom:893.954700px;}
.y1c5{bottom:897.370800px;}
.y1d4{bottom:898.404000px;}
.y9a{bottom:900.747600px;}
.y51{bottom:902.750100px;}
.y9f{bottom:903.747750px;}
.y1a3{bottom:905.431200px;}
.y1bb{bottom:905.903700px;}
.y160{bottom:907.504650px;}
.y1d3{bottom:913.285950px;}
.y1a6{bottom:914.107200px;}
.y1b2{bottom:914.579700px;}
.y1c4{bottom:915.308550px;}
.y50{bottom:915.350100px;}
.y9e{bottom:915.747750px;}
.y99{bottom:917.247600px;}
.y15f{bottom:921.054600px;}
.y118{bottom:921.797100px;}
.ye5{bottom:921.928200px;}
.y1a2{bottom:925.315200px;}
.y1ba{bottom:925.787700px;}
.y9d{bottom:927.747750px;}
.y4f{bottom:927.950100px;}
.y1d2{bottom:928.167900px;}
.y1c3{bottom:933.246300px;}
.y98{bottom:933.747600px;}
.y15e{bottom:934.604550px;}
.y4e{bottom:940.550100px;}
.y190{bottom:940.862700px;}
.y1d1{bottom:943.049700px;}
.y15d{bottom:948.154500px;}
.y1a9{bottom:949.357350px;}
.y1b4{bottom:949.828200px;}
.y97{bottom:950.247750px;}
.ye4{bottom:951.184050px;}
.y4d{bottom:953.150250px;}
.y13f{bottom:953.267100px;}
.y18f{bottom:954.412650px;}
.y1d0{bottom:957.931650px;}
.y15c{bottom:961.704450px;}
.y4c{bottom:965.750250px;}
.y96{bottom:966.747750px;}
.ye3{bottom:969.121800px;}
.y1cf{bottom:972.813600px;}
.y18e{bottom:974.400450px;}
.y15b{bottom:975.254400px;}
.y4b{bottom:978.350250px;}
.y95{bottom:983.247750px;}
.y1aa{bottom:985.855350px;}
.y1b5{bottom:986.326200px;}
.y1c2{bottom:987.059550px;}
.y1ce{bottom:987.695400px;}
.y18d{bottom:987.950250px;}
.y147{bottom:988.145100px;}
.y15a{bottom:988.804350px;}
.y85{bottom:989.007900px;}
.y4a{bottom:990.950250px;}
.y117{bottom:993.425100px;}
.y94{bottom:999.747750px;}
.y18c{bottom:1001.500350px;}
.y159{bottom:1002.354150px;}
.y1cd{bottom:1002.577200px;}
.y49{bottom:1003.550100px;}
.ye2{bottom:1004.997300px;}
.y195{bottom:1013.160300px;}
.y115{bottom:1013.297100px;}
.y18b{bottom:1015.050150px;}
.y158{bottom:1015.904250px;}
.y93{bottom:1016.247750px;}
.y1cc{bottom:1017.459150px;}
.y84{bottom:1019.007900px;}
.y1ab{bottom:1021.103850px;}
.y1b6{bottom:1021.574700px;}
.y1c1{bottom:1022.935050px;}
.y18a{bottom:1028.600250px;}
.y157{bottom:1029.454050px;}
.y1cb{bottom:1032.341100px;}
.y92{bottom:1032.747750px;}
.y48{bottom:1033.158000px;}
.y1{bottom:1035.993000px;}
.y194{bottom:1039.665300px;}
.ye1{bottom:1040.872800px;}
.y189{bottom:1042.150050px;}
.y156{bottom:1043.004150px;}
.y1ca{bottom:1047.222900px;}
.y91{bottom:1049.247750px;}
.y188{bottom:1055.700000px;}
.y1ac{bottom:1056.950850px;}
.y1b7{bottom:1057.421700px;}
.ye0{bottom:1058.810550px;}
.y1c9{bottom:1062.104850px;}
.y47{bottom:1062.765900px;}
.y155{bottom:1062.931950px;}
.y90{bottom:1065.747750px;}
.y116{bottom:1067.297100px;}
.y187{bottom:1075.687800px;}
.ydf{bottom:1076.748300px;}
.y1c8{bottom:1076.986650px;}
.y8f{bottom:1082.247750px;}
.y2{bottom:1086.378000px;}
.y1c7{bottom:1091.868600px;}
.y1ad{bottom:1092.199350px;}
.y46{bottom:1092.373800px;}
.y1b8{bottom:1092.670200px;}
.y11d{bottom:1093.672350px;}
.yde{bottom:1094.685900px;}
.y8e{bottom:1098.747750px;}
.y143{bottom:1105.889100px;}
.y154{bottom:1106.518650px;}
.y1c6{bottom:1106.750550px;}
.y13e{bottom:1109.639100px;}
.y1c0{bottom:1112.623800px;}
.y8d{bottom:1115.247750px;}
.y153{bottom:1119.274500px;}
.y14e{bottom:1119.817800px;}
.y45{bottom:1121.981700px;}
.y142{bottom:1124.768100px;}
.y1ae{bottom:1128.203850px;}
.y1b9{bottom:1128.674700px;}
.ydd{bottom:1130.561550px;}
.y8c{bottom:1131.747750px;}
.y152{bottom:1132.030500px;}
.y44{bottom:1134.581700px;}
.y8b{bottom:1202.244000px;}
.ydc{bottom:1202.244150px;}
.h51{height:20.456304px;}
.h4a{height:26.316000px;}
.h3c{height:28.296000px;}
.h59{height:30.702000px;}
.h38{height:30.828000px;}
.h53{height:31.531500px;}
.h37{height:33.012000px;}
.h45{height:34.320000px;}
.h49{height:34.322286px;}
.h4f{height:35.088000px;}
.h4c{height:35.370000px;}
.h5c{height:35.952750px;}
.h50{height:36.473304px;}
.h3a{height:37.728000px;}
.h39{height:38.136000px;}
.h44{height:38.610000px;}
.h41{height:40.086000px;}
.h3e{height:40.755000px;}
.h3f{height:40.757714px;}
.h54{height:42.840000px;}
.h3b{height:42.900000px;}
.h40{height:43.860000px;}
.h46{height:45.045000px;}
.h47{height:45.048000px;}
.h43{height:46.872000px;}
.h4d{height:47.937000px;}
.h3d{height:49.476000px;}
.h4b{height:50.460000px;}
.h48{height:52.983000px;}
.h5b{height:54.684000px;}
.h17{height:61.161153px;}
.hc{height:61.161194px;}
.h9{height:61.161199px;}
.h18{height:61.161213px;}
.h29{height:61.161219px;}
.h1a{height:61.161227px;}
.h4{height:61.161230px;}
.h22{height:61.161237px;}
.hf{height:61.161241px;}
.h23{height:61.161258px;}
.h16{height:61.161260px;}
.he{height:61.161262px;}
.h35{height:61.161278px;}
.h1c{height:61.161295px;}
.h2a{height:61.161303px;}
.h31{height:61.161309px;}
.h36{height:61.161315px;}
.h19{height:61.161322px;}
.h2c{height:61.161325px;}
.h2b{height:61.161334px;}
.h28{height:61.161339px;}
.h21{height:61.161366px;}
.h30{height:61.161369px;}
.h13{height:61.161377px;}
.hd{height:61.161380px;}
.h20{height:61.161385px;}
.h24{height:61.161392px;}
.h26{height:61.161396px;}
.h1d{height:61.161406px;}
.h34{height:61.161413px;}
.h27{height:61.161417px;}
.h14{height:61.161432px;}
.h8{height:61.161439px;}
.h2f{height:61.161461px;}
.h12{height:61.161472px;}
.h6{height:61.161481px;}
.h7{height:61.161489px;}
.h1e{height:61.161506px;}
.h32{height:61.161513px;}
.h15{height:61.161515px;}
.hb{height:61.161520px;}
.h10{height:61.161530px;}
.h11{height:61.161541px;}
.h1f{height:61.161561px;}
.ha{height:61.161565px;}
.h2e{height:61.161570px;}
.h25{height:61.161588px;}
.h33{height:61.161607px;}
.h1b{height:61.161620px;}
.h2d{height:61.161626px;}
.h5{height:61.161659px;}
.h42{height:70.176000px;}
.h2{height:74.868000px;}
.h56{height:75.840000px;}
.h57{height:83.880000px;}
.h5a{height:294.813000px;}
.h58{height:295.285500px;}
.h4e{height:324.639000px;}
.h52{height:349.291500px;}
.h55{height:399.685500px;}
.h3{height:431.592000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:232.200000px;}
.w2{width:317.751000px;}
.w5{width:363.193500px;}
.w6{width:363.973500px;}
.w3{width:482.940000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x66{left:6.553350px;}
.x6f{left:10.283550px;}
.x67{left:14.053350px;}
.x2{left:42.519750px;}
.xf{left:70.080900px;}
.xe{left:71.328300px;}
.xd{left:72.966600px;}
.x2d{left:74.409450px;}
.xc{left:76.163700px;}
.xb{left:78.330450px;}
.xa{left:80.868150px;}
.x3f{left:83.475900px;}
.x53{left:85.219950px;}
.x9{left:86.590800px;}
.x56{left:88.519350px;}
.x8{left:90.302400px;}
.x62{left:92.283600px;}
.x6e{left:93.525750px;}
.x7{left:95.731200px;}
.x10{left:98.048400px;}
.x6c{left:99.363750px;}
.x6{left:104.799750px;}
.x11{left:106.682250px;}
.x2e{left:108.425100px;}
.x12{left:111.461400px;}
.x30{left:116.929200px;}
.x5{left:120.702600px;}
.x13{left:122.570850px;}
.x3a{left:129.685050px;}
.x4{left:130.945500px;}
.x54{left:132.259800px;}
.x14{left:134.420250px;}
.x47{left:135.758100px;}
.x46{left:140.475000px;}
.x15{left:145.286550px;}
.x3{left:149.047950px;}
.x16{left:150.331650px;}
.x17{left:162.590550px;}
.x40{left:166.100850px;}
.x18{left:167.725350px;}
.x2c{left:169.649850px;}
.x3b{left:170.825700px;}
.x2b{left:174.735000px;}
.x55{left:176.211750px;}
.x49{left:178.426200px;}
.x19{left:181.090050px;}
.x2a{left:184.476000px;}
.x3e{left:185.864700px;}
.x57{left:188.468550px;}
.x29{left:190.102200px;}
.x1a{left:191.448900px;}
.x3d{left:193.654350px;}
.x3c{left:197.272050px;}
.x1b{left:198.837000px;}
.x28{left:201.274950px;}
.x59{left:204.987000px;}
.x1c{left:209.637450px;}
.x1d{left:214.480200px;}
.x27{left:219.043800px;}
.x1e{left:222.056400px;}
.x26{left:227.697750px;}
.x1f{left:229.927350px;}
.x20{left:234.402150px;}
.x21{left:239.561250px;}
.x5f{left:241.285200px;}
.x22{left:242.710800px;}
.x23{left:244.428000px;}
.x25{left:245.460600px;}
.x24{left:246.758100px;}
.x32{left:275.314950px;}
.x6b{left:301.282950px;}
.x58{left:324.162750px;}
.x65{left:330.357000px;}
.x61{left:332.625150px;}
.x68{left:336.910350px;}
.x6d{left:350.770800px;}
.x31{left:381.472800px;}
.x5b{left:392.591700px;}
.x39{left:399.674250px;}
.x5e{left:408.541200px;}
.x6a{left:420.911550px;}
.x41{left:430.792650px;}
.x69{left:454.405350px;}
.x42{left:457.086600px;}
.x73{left:468.511050px;}
.x43{left:469.842450px;}
.x45{left:473.496900px;}
.x48{left:478.918500px;}
.x52{left:482.806050px;}
.x72{left:488.644200px;}
.x35{left:490.732350px;}
.x74{left:491.748750px;}
.x4c{left:511.915200px;}
.x70{left:519.898500px;}
.x4f{left:524.731200px;}
.x5d{left:528.913200px;}
.x44{left:533.622000px;}
.x75{left:540.458250px;}
.x34{left:543.134100px;}
.x60{left:553.285200px;}
.x4b{left:558.631200px;}
.x76{left:564.230100px;}
.x4d{left:591.979200px;}
.x5a{left:593.687550px;}
.x63{left:597.204900px;}
.x64{left:598.608750px;}
.x5c{left:612.698700px;}
.x38{left:614.979900px;}
.x77{left:619.060500px;}
.x78{left:649.201950px;}
.x7a{left:667.427400px;}
.x37{left:671.295450px;}
.x79{left:673.540350px;}
.x4a{left:680.095200px;}
.x71{left:681.403050px;}
.x33{left:682.650150px;}
.x1{left:696.890550px;}
.x50{left:698.107200px;}
.x36{left:729.637500px;}
.x51{left:732.719700px;}
.x4e{left:766.267200px;}
.x2f{left:794.302350px;}
@media print{
.v4{vertical-align:-14.218667pt;}
.v5{vertical-align:-11.338667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:8.533333pt;}
.v3{vertical-align:14.237333pt;}
.v1{vertical-align:16.000000pt;}
.v6{vertical-align:28.426667pt;}
.v7{vertical-align:35.573333pt;}
.ls1{letter-spacing:-30.314667pt;}
.ls2{letter-spacing:-5.712000pt;}
.ls26{letter-spacing:-1.317333pt;}
.ls25{letter-spacing:-1.266667pt;}
.ls27{letter-spacing:-1.114667pt;}
.ls24{letter-spacing:-1.013333pt;}
.ls66{letter-spacing:-0.962667pt;}
.ls44{letter-spacing:-0.784000pt;}
.ls64{letter-spacing:-0.709333pt;}
.ls11{letter-spacing:-0.560000pt;}
.ls62{letter-spacing:-0.506667pt;}
.ls42{letter-spacing:-0.448000pt;}
.ls67{letter-spacing:-0.405333pt;}
.ls2a{letter-spacing:-0.373333pt;}
.ls65{letter-spacing:-0.354667pt;}
.ls43{letter-spacing:-0.336000pt;}
.ls15{letter-spacing:-0.304000pt;}
.ls36{letter-spacing:-0.280000pt;}
.ls61{letter-spacing:-0.253333pt;}
.ls12{letter-spacing:-0.224000pt;}
.ls16{letter-spacing:-0.202667pt;}
.ls37{letter-spacing:-0.168000pt;}
.ls28{letter-spacing:-0.152000pt;}
.ls14{letter-spacing:-0.112000pt;}
.ls63{letter-spacing:-0.101333pt;}
.ls3{letter-spacing:-0.074667pt;}
.ls13{letter-spacing:-0.056000pt;}
.ls10{letter-spacing:-0.050667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls57{letter-spacing:0.000400pt;}
.ls2c{letter-spacing:0.002752pt;}
.ls2d{letter-spacing:0.010667pt;}
.ls32{letter-spacing:0.028000pt;}
.ls5{letter-spacing:0.050667pt;}
.ls9{letter-spacing:0.056000pt;}
.ls33{letter-spacing:0.074667pt;}
.lsa{letter-spacing:0.084000pt;}
.ls5a{letter-spacing:0.101333pt;}
.lsc{letter-spacing:0.112000pt;}
.ls2f{letter-spacing:0.117600pt;}
.ls23{letter-spacing:0.120000pt;}
.ls31{letter-spacing:0.140000pt;}
.ls35{letter-spacing:0.149333pt;}
.ls59{letter-spacing:0.152000pt;}
.lsb{letter-spacing:0.168000pt;}
.lsd{letter-spacing:0.196000pt;}
.ls4{letter-spacing:0.202667pt;}
.ls7{letter-spacing:0.224000pt;}
.ls8{letter-spacing:0.280000pt;}
.ls5c{letter-spacing:0.334400pt;}
.ls5b{letter-spacing:0.334856pt;}
.ls29{letter-spacing:0.336000pt;}
.ls5d{letter-spacing:0.354667pt;}
.ls30{letter-spacing:0.392000pt;}
.ls48{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.456000pt;}
.ls4b{letter-spacing:0.476000pt;}
.ls53{letter-spacing:0.504000pt;}
.ls5f{letter-spacing:0.557333pt;}
.lse{letter-spacing:0.560000pt;}
.ls5e{letter-spacing:0.567083pt;}
.ls3c{letter-spacing:0.588000pt;}
.ls3b{letter-spacing:0.616000pt;}
.ls39{letter-spacing:0.672000pt;}
.ls1e{letter-spacing:0.728000pt;}
.ls4e{letter-spacing:0.756000pt;}
.ls6{letter-spacing:0.784000pt;}
.ls60{letter-spacing:0.785333pt;}
.ls68{letter-spacing:0.810667pt;}
.ls2b{letter-spacing:0.812000pt;}
.ls18{letter-spacing:0.840000pt;}
.ls4a{letter-spacing:0.894600pt;}
.ls49{letter-spacing:0.894933pt;}
.ls1d{letter-spacing:0.896000pt;}
.ls2e{letter-spacing:0.952000pt;}
.ls1c{letter-spacing:0.980000pt;}
.ls3a{letter-spacing:1.008000pt;}
.ls1a{letter-spacing:1.064000pt;}
.ls51{letter-spacing:1.112533pt;}
.ls38{letter-spacing:1.120000pt;}
.ls17{letter-spacing:1.148000pt;}
.ls19{letter-spacing:1.176000pt;}
.ls54{letter-spacing:1.185955pt;}
.ls3d{letter-spacing:1.232000pt;}
.ls50{letter-spacing:1.241865pt;}
.ls4f{letter-spacing:1.242395pt;}
.ls1f{letter-spacing:1.288000pt;}
.ls20{letter-spacing:1.341160pt;}
.ls21{letter-spacing:1.344000pt;}
.ls1b{letter-spacing:1.400000pt;}
.ls56{letter-spacing:1.512000pt;}
.ls4d{letter-spacing:1.596000pt;}
.ls22{letter-spacing:1.624000pt;}
.ls4c{letter-spacing:1.680000pt;}
.ls52{letter-spacing:2.724386pt;}
.ls58{letter-spacing:2.760533pt;}
.ls55{letter-spacing:4.668082pt;}
.ls3e{letter-spacing:215.657600pt;}
.ls46{letter-spacing:358.506667pt;}
.ls45{letter-spacing:383.200000pt;}
.ls34{letter-spacing:469.360533pt;}
.ls40{letter-spacing:500.160000pt;}
.ls41{letter-spacing:501.120000pt;}
.ls3f{letter-spacing:717.440000pt;}
.ls47{letter-spacing:815.520000pt;}
.wsb9{word-spacing:-815.573333pt;}
.wsba{word-spacing:-383.200000pt;}
.wsbb{word-spacing:-358.506667pt;}
.ws1{word-spacing:-107.669333pt;}
.ws0{word-spacing:-42.666667pt;}
.wsc2{word-spacing:-15.680000pt;}
.wsc3{word-spacing:-15.596000pt;}
.wsd0{word-spacing:-15.512000pt;}
.ws57{word-spacing:-15.344000pt;}
.wsc4{word-spacing:-15.288000pt;}
.wsa6{word-spacing:-15.232000pt;}
.ws58{word-spacing:-15.176000pt;}
.wsa7{word-spacing:-15.064000pt;}
.ws7a{word-spacing:-14.952000pt;}
.wsbe{word-spacing:-14.896000pt;}
.ws56{word-spacing:-14.840000pt;}
.ws1c{word-spacing:-14.784000pt;}
.wsa5{word-spacing:-14.728000pt;}
.wsa2{word-spacing:-14.616000pt;}
.wsc1{word-spacing:-14.504000pt;}
.wsbf{word-spacing:-14.448000pt;}
.wsa3{word-spacing:-14.392000pt;}
.ws1d{word-spacing:-14.280000pt;}
.ws20{word-spacing:-14.168000pt;}
.ws1e{word-spacing:-14.056000pt;}
.ws1f{word-spacing:-14.000000pt;}
.wsa8{word-spacing:-13.944000pt;}
.wsb8{word-spacing:-13.552000pt;}
.wsd6{word-spacing:-13.452000pt;}
.ws52{word-spacing:-13.333333pt;}
.wsb{word-spacing:-12.666667pt;}
.wsd1{word-spacing:-12.565333pt;}
.wsd5{word-spacing:-12.261333pt;}
.wsd2{word-spacing:-12.160000pt;}
.wsd{word-spacing:-12.000000pt;}
.wsd3{word-spacing:-11.957333pt;}
.ws7{word-spacing:-11.861333pt;}
.wsc0{word-spacing:-11.394600pt;}
.wsa4{word-spacing:-11.340000pt;}
.wsc6{word-spacing:-10.528000pt;}
.ws51{word-spacing:-10.500000pt;}
.ws5{word-spacing:-10.378667pt;}
.wsa{word-spacing:-10.304000pt;}
.ws53{word-spacing:-10.000000pt;}
.ws7b{word-spacing:-9.917600pt;}
.ws4{word-spacing:-9.856000pt;}
.wsd4{word-spacing:-9.834400pt;}
.ws3{word-spacing:-9.781333pt;}
.ws54{word-spacing:-9.500000pt;}
.ws8{word-spacing:-8.302933pt;}
.ws6{word-spacing:-7.784000pt;}
.wscc{word-spacing:-4.368000pt;}
.ws2b{word-spacing:-3.584000pt;}
.ws2a{word-spacing:-3.528000pt;}
.ws36{word-spacing:-3.472000pt;}
.ws77{word-spacing:-3.416000pt;}
.ws2d{word-spacing:-3.360000pt;}
.ws93{word-spacing:-3.304000pt;}
.ws8e{word-spacing:-3.248000pt;}
.ws24{word-spacing:-3.192000pt;}
.ws50{word-spacing:-3.141333pt;}
.wsad{word-spacing:-3.136000pt;}
.ws1a{word-spacing:-3.090667pt;}
.ws3e{word-spacing:-3.080000pt;}
.ws61{word-spacing:-2.989333pt;}
.wsae{word-spacing:-2.968000pt;}
.ws38{word-spacing:-2.912000pt;}
.ws7e{word-spacing:-2.800000pt;}
.ws4e{word-spacing:-2.786667pt;}
.ws4c{word-spacing:-2.688000pt;}
.wsdc{word-spacing:-2.634667pt;}
.wsc8{word-spacing:-2.632000pt;}
.ws91{word-spacing:-2.576000pt;}
.ws5a{word-spacing:-2.520000pt;}
.wsab{word-spacing:-2.464000pt;}
.wsb4{word-spacing:-2.408000pt;}
.ws10{word-spacing:-2.381333pt;}
.ws68{word-spacing:-2.352000pt;}
.ws48{word-spacing:-2.296000pt;}
.wsb6{word-spacing:-2.240000pt;}
.ws60{word-spacing:-2.178667pt;}
.ws43{word-spacing:-2.128000pt;}
.wsde{word-spacing:-2.077333pt;}
.ws45{word-spacing:-2.072000pt;}
.ws83{word-spacing:-2.016000pt;}
.ws33{word-spacing:-1.960000pt;}
.wsce{word-spacing:-1.941333pt;}
.ws46{word-spacing:-1.904000pt;}
.wse2{word-spacing:-1.874667pt;}
.ws6b{word-spacing:-1.848000pt;}
.ws62{word-spacing:-1.824000pt;}
.ws9a{word-spacing:-1.792000pt;}
.ws29{word-spacing:-1.773333pt;}
.ws63{word-spacing:-1.736000pt;}
.wsd9{word-spacing:-1.722667pt;}
.wscd{word-spacing:-1.680000pt;}
.wsc9{word-spacing:-1.624000pt;}
.wse7{word-spacing:-1.621333pt;}
.wsbd{word-spacing:-1.605333pt;}
.ws2e{word-spacing:-1.512000pt;}
.ws34{word-spacing:-1.456000pt;}
.ws67{word-spacing:-1.400000pt;}
.wsbc{word-spacing:-1.381333pt;}
.ws16{word-spacing:-1.368000pt;}
.ws6c{word-spacing:-1.344000pt;}
.wsf{word-spacing:-1.317333pt;}
.ws42{word-spacing:-1.288000pt;}
.wsb2{word-spacing:-1.232000pt;}
.ws3a{word-spacing:-1.120000pt;}
.ws9d{word-spacing:-1.082667pt;}
.ws3c{word-spacing:-1.064000pt;}
.ws7f{word-spacing:-1.008000pt;}
.ws9f{word-spacing:-0.952000pt;}
.ws79{word-spacing:-0.933333pt;}
.ws65{word-spacing:-0.896000pt;}
.ws4a{word-spacing:-0.840000pt;}
.wse5{word-spacing:-0.810667pt;}
.ws80{word-spacing:-0.784000pt;}
.ws4f{word-spacing:-0.760000pt;}
.wsd8{word-spacing:-0.728000pt;}
.ws15{word-spacing:-0.709333pt;}
.wsb7{word-spacing:-0.672000pt;}
.ws6f{word-spacing:-0.616000pt;}
.ws12{word-spacing:-0.608000pt;}
.ws69{word-spacing:-0.560000pt;}
.ws5e{word-spacing:-0.557333pt;}
.ws70{word-spacing:-0.504000pt;}
.wsdf{word-spacing:-0.456000pt;}
.ws2c{word-spacing:-0.448000pt;}
.ws39{word-spacing:-0.392000pt;}
.ws99{word-spacing:-0.336000pt;}
.ws22{word-spacing:-0.304000pt;}
.ws2f{word-spacing:-0.280000pt;}
.ws18{word-spacing:-0.253333pt;}
.ws90{word-spacing:-0.224000pt;}
.ws3d{word-spacing:-0.168000pt;}
.ws9e{word-spacing:-0.149333pt;}
.ws5b{word-spacing:-0.120000pt;}
.ws37{word-spacing:-0.112000pt;}
.wse3{word-spacing:-0.101333pt;}
.wsc{word-spacing:-0.085333pt;}
.ws9b{word-spacing:-0.074667pt;}
.ws55{word-spacing:-0.050667pt;}
.ws59{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.056000pt;}
.wse{word-spacing:0.074667pt;}
.ws13{word-spacing:0.101333pt;}
.ws31{word-spacing:0.112000pt;}
.ws11{word-spacing:0.152000pt;}
.ws7d{word-spacing:0.168000pt;}
.ws26{word-spacing:0.202667pt;}
.ws7c{word-spacing:0.224000pt;}
.ws28{word-spacing:0.253333pt;}
.ws3f{word-spacing:0.280000pt;}
.ws19{word-spacing:0.304000pt;}
.ws6a{word-spacing:0.336000pt;}
.ws73{word-spacing:0.373333pt;}
.ws76{word-spacing:0.392000pt;}
.ws17{word-spacing:0.405333pt;}
.ws95{word-spacing:0.448000pt;}
.wsca{word-spacing:0.504000pt;}
.wsda{word-spacing:0.506667pt;}
.wsaa{word-spacing:0.560000pt;}
.ws66{word-spacing:0.672000pt;}
.wse1{word-spacing:0.760000pt;}
.wsb1{word-spacing:0.784000pt;}
.wse4{word-spacing:0.810667pt;}
.ws64{word-spacing:0.840000pt;}
.ws32{word-spacing:0.896000pt;}
.ws5d{word-spacing:0.912000pt;}
.ws35{word-spacing:0.952000pt;}
.ws25{word-spacing:0.962667pt;}
.ws98{word-spacing:1.008000pt;}
.wsd7{word-spacing:1.064000pt;}
.ws14{word-spacing:1.114667pt;}
.wsb5{word-spacing:1.120000pt;}
.ws92{word-spacing:1.176000pt;}
.wscb{word-spacing:1.232000pt;}
.ws23{word-spacing:1.317333pt;}
.ws5f{word-spacing:1.368000pt;}
.ws97{word-spacing:1.400000pt;}
.wsc7{word-spacing:1.456000pt;}
.ws8a{word-spacing:1.512000pt;}
.ws81{word-spacing:1.568000pt;}
.ws27{word-spacing:1.570667pt;}
.wsa1{word-spacing:1.605333pt;}
.ws47{word-spacing:1.624000pt;}
.ws72{word-spacing:1.680000pt;}
.wsdb{word-spacing:1.722667pt;}
.ws94{word-spacing:1.792000pt;}
.ws8d{word-spacing:1.848000pt;}
.ws96{word-spacing:1.904000pt;}
.ws6e{word-spacing:2.072000pt;}
.ws5c{word-spacing:2.128000pt;}
.ws78{word-spacing:2.184000pt;}
.wsa9{word-spacing:2.240000pt;}
.ws41{word-spacing:2.296000pt;}
.ws8b{word-spacing:2.352000pt;}
.wsa0{word-spacing:2.408000pt;}
.wse0{word-spacing:2.432000pt;}
.ws4d{word-spacing:2.464000pt;}
.ws30{word-spacing:2.520000pt;}
.wscf{word-spacing:2.538667pt;}
.ws9c{word-spacing:2.576000pt;}
.wsb0{word-spacing:2.632000pt;}
.wsb3{word-spacing:2.688000pt;}
.ws49{word-spacing:2.744000pt;}
.wsdd{word-spacing:2.786667pt;}
.ws44{word-spacing:2.856000pt;}
.wsac{word-spacing:2.912000pt;}
.wsaf{word-spacing:2.968000pt;}
.wse6{word-spacing:3.090667pt;}
.ws82{word-spacing:3.136000pt;}
.ws21{word-spacing:3.141333pt;}
.ws40{word-spacing:3.192000pt;}
.ws84{word-spacing:3.304000pt;}
.ws8f{word-spacing:3.360000pt;}
.ws71{word-spacing:3.416000pt;}
.ws3b{word-spacing:3.472000pt;}
.ws8c{word-spacing:3.528000pt;}
.ws6d{word-spacing:4.816000pt;}
.ws9{word-spacing:5.712000pt;}
.wsc5{word-spacing:75.189333pt;}
.ws89{word-spacing:92.410133pt;}
.ws85{word-spacing:116.132800pt;}
.ws86{word-spacing:116.133333pt;}
.ws88{word-spacing:151.716800pt;}
.ws87{word-spacing:177.828800pt;}
.ws75{word-spacing:200.524267pt;}
.ws74{word-spacing:202.913600pt;}
.ws1b{word-spacing:2079.172267pt;}
._4c{margin-left:-344.053333pt;}
._e{margin-left:-16.284267pt;}
._c{margin-left:-12.661600pt;}
._1{margin-left:-9.251200pt;}
._38{margin-left:-7.868000pt;}
._a{margin-left:-6.848000pt;}
._3{margin-left:-5.712000pt;}
._9{margin-left:-4.510400pt;}
._8{margin-left:-3.494400pt;}
._5{margin-left:-1.833067pt;}
._4{margin-left:-0.910400pt;}
._6{width:1.680000pt;}
._0{width:2.770133pt;}
._2{width:4.390400pt;}
._15{width:5.279522pt;}
._1e{width:49.868267pt;}
._1f{width:52.257600pt;}
._21{width:57.591467pt;}
._26{width:61.730133pt;}
._37{width:66.797867pt;}
._1d{width:71.201600pt;}
._1c{width:73.590933pt;}
._1b{width:78.924267pt;}
._4f{width:81.536000pt;}
._4e{width:84.261333pt;}
._25{width:85.452267pt;}
._4d{width:87.248000pt;}
._10{width:93.074667pt;}
._b{width:101.176267pt;}
._11{width:104.728000pt;}
._39{width:109.925333pt;}
._41{width:111.174667pt;}
._14{width:114.432800pt;}
._27{width:115.701867pt;}
._13{width:124.032000pt;}
._12{width:125.447733pt;}
._3a{width:127.994667pt;}
._24{width:132.492267pt;}
._42{width:140.286400pt;}
._f{width:144.546933pt;}
._1a{width:148.065600pt;}
._3b{width:151.717333pt;}
._43{width:156.096000pt;}
._4b{width:159.169067pt;}
._19{width:167.393600pt;}
._28{width:169.676267pt;}
._d{width:170.725333pt;}
._3c{width:175.439467pt;}
._20{width:181.259733pt;}
._2f{width:182.296533pt;}
._18{width:187.937600pt;}
._3d{width:189.690133pt;}
._22{width:195.233067pt;}
._46{width:200.626133pt;}
._17{width:202.188267pt;}
._23{width:207.265600pt;}
._16{width:208.481600pt;}
._4a{width:216.504000pt;}
._45{width:225.129600pt;}
._2c{width:239.128533pt;}
._48{width:248.852800pt;}
._30{width:260.461867pt;}
._49{width:263.103467pt;}
._34{width:265.965867pt;}
._7{width:286.219200pt;}
._36{width:287.299200pt;}
._35{width:309.443200pt;}
._2b{width:314.989867pt;}
._2a{width:385.304533pt;}
._47{width:388.459733pt;}
._3e{width:394.224533pt;}
._44{width:459.585067pt;}
._2d{width:462.744533pt;}
._3f{width:467.013867pt;}
._32{width:470.680533pt;}
._31{width:472.259200pt;}
._2e{width:476.227200pt;}
._33{width:484.077867pt;}
._29{width:499.053867pt;}
._40{width:565.369067pt;}
.fs43{font-size:24.874667pt;}
.fs37{font-size:28.000000pt;}
.fs38{font-size:29.866667pt;}
.fs3a{font-size:32.000000pt;}
.fs36{font-size:37.333333pt;}
.fs42{font-size:38.000000pt;}
.fs44{font-size:39.200000pt;}
.fs41{font-size:40.000000pt;}
.fs40{font-size:42.000000pt;}
.fs1{font-size:42.666667pt;}
.fs3c{font-size:45.333333pt;}
.fs3e{font-size:48.000000pt;}
.fs3b{font-size:50.666667pt;}
.fs39{font-size:53.333333pt;}
.fs3f{font-size:56.000000pt;}
.fs16{font-size:73.866127pt;}
.fsb{font-size:73.866177pt;}
.fs8{font-size:73.866183pt;}
.fs17{font-size:73.866200pt;}
.fs28{font-size:73.866207pt;}
.fs19{font-size:73.866216pt;}
.fs3{font-size:73.866220pt;}
.fs21{font-size:73.866229pt;}
.fse{font-size:73.866233pt;}
.fs22{font-size:73.866253pt;}
.fs15{font-size:73.866256pt;}
.fsd{font-size:73.866258pt;}
.fs34{font-size:73.866277pt;}
.fs1b{font-size:73.866298pt;}
.fs29{font-size:73.866308pt;}
.fs30{font-size:73.866315pt;}
.fs35{font-size:73.866322pt;}
.fs18{font-size:73.866331pt;}
.fs2b{font-size:73.866335pt;}
.fs2a{font-size:73.866346pt;}
.fs27{font-size:73.866351pt;}
.fs20{font-size:73.866384pt;}
.fs2f{font-size:73.866387pt;}
.fs12{font-size:73.866397pt;}
.fsc{font-size:73.866401pt;}
.fs1f{font-size:73.866407pt;}
.fs23{font-size:73.866415pt;}
.fs25{font-size:73.866420pt;}
.fs1c{font-size:73.866432pt;}
.fs33{font-size:73.866441pt;}
.fs26{font-size:73.866445pt;}
.fs13{font-size:73.866464pt;}
.fs7{font-size:73.866472pt;}
.fs2e{font-size:73.866498pt;}
.fs11{font-size:73.866512pt;}
.fs5{font-size:73.866523pt;}
.fs6{font-size:73.866533pt;}
.fs1d{font-size:73.866553pt;}
.fs31{font-size:73.866561pt;}
.fs14{font-size:73.866564pt;}
.fsa{font-size:73.866570pt;}
.fsf{font-size:73.866582pt;}
.fs10{font-size:73.866596pt;}
.fs1e{font-size:73.866619pt;}
.fs9{font-size:73.866624pt;}
.fs2d{font-size:73.866630pt;}
.fs24{font-size:73.866652pt;}
.fs32{font-size:73.866675pt;}
.fs1a{font-size:73.866691pt;}
.fs2c{font-size:73.866698pt;}
.fs4{font-size:73.866738pt;}
.fs3d{font-size:85.333333pt;}
.fs0{font-size:90.666667pt;}
.fs2{font-size:522.666667pt;}
.y0{bottom:0.000000pt;}
.y11b{bottom:2.871867pt;}
.y1a5{bottom:5.130400pt;}
.y1a8{bottom:20.167733pt;}
.y8a{bottom:47.240267pt;}
.y69{bottom:47.393867pt;}
.y68{bottom:47.394000pt;}
.y3{bottom:92.876533pt;}
.y39{bottom:93.249600pt;}
.y38{bottom:94.088533pt;}
.y37{bottom:96.063200pt;}
.y4{bottom:96.681600pt;}
.y36{bottom:97.842667pt;}
.y5{bottom:100.000400pt;}
.y1b1{bottom:101.781067pt;}
.y1af{bottom:101.781200pt;}
.y35{bottom:102.219733pt;}
.y34{bottom:106.828800pt;}
.y6{bottom:108.969867pt;}
.y193{bottom:111.400400pt;}
.yc2{bottom:112.042133pt;}
.y10b{bottom:112.042267pt;}
.ydb{bottom:112.049867pt;}
.y33{bottom:113.531867pt;}
.y7{bottom:116.231867pt;}
.y8{bottom:121.637733pt;}
.y32{bottom:121.667067pt;}
.yda{bottom:125.278133pt;}
.y9{bottom:125.752133pt;}
.yc1{bottom:127.986800pt;}
.y10a{bottom:127.986933pt;}
.y31{bottom:129.611600pt;}
.y43{bottom:132.283467pt;}
.ya{bottom:134.096800pt;}
.yd9{bottom:138.506533pt;}
.yb{bottom:138.605600pt;}
.y30{bottom:140.244400pt;}
.yc{bottom:142.804400pt;}
.y42{bottom:142.950133pt;}
.yc0{bottom:143.931467pt;}
.y109{bottom:143.931600pt;}
.y2f{bottom:144.533867pt;}
.y7b{bottom:146.950133pt;}
.yd8{bottom:151.734800pt;}
.yd{bottom:151.825467pt;}
.y89{bottom:153.616800pt;}
.y2e{bottom:153.952133pt;}
.ye{bottom:158.201200pt;}
.ybf{bottom:159.876133pt;}
.y108{bottom:159.876267pt;}
.y7a{bottom:161.616800pt;}
.y41{bottom:161.709200pt;}
.y88{bottom:164.283467pt;}
.yd7{bottom:164.963200pt;}
.y2d{bottom:165.043467pt;}
.yf{bottom:167.902267pt;}
.y2c{bottom:171.833067pt;}
.y40{bottom:172.375867pt;}
.y87{bottom:174.950133pt;}
.ybe{bottom:175.820800pt;}
.y107{bottom:175.820933pt;}
.y79{bottom:176.283467pt;}
.y2b{bottom:176.428000pt;}
.yd6{bottom:178.191467pt;}
.y10{bottom:179.264667pt;}
.y2a{bottom:182.453867pt;}
.y3f{bottom:183.042533pt;}
.y86{bottom:185.616800pt;}
.y11{bottom:190.299600pt;}
.y78{bottom:190.950133pt;}
.yd5{bottom:191.419867pt;}
.ybd{bottom:191.765467pt;}
.y106{bottom:191.765600pt;}
.y29{bottom:193.100267pt;}
.y3e{bottom:193.709200pt;}
.y28{bottom:197.435733pt;}
.y12{bottom:199.544400pt;}
.y27{bottom:204.577733pt;}
.yd4{bottom:204.648267pt;}
.y77{bottom:205.616800pt;}
.y13d{bottom:206.933867pt;}
.y105{bottom:207.710267pt;}
.y3d{bottom:208.155333pt;}
.y13{bottom:209.702133pt;}
.y26{bottom:213.245467pt;}
.yd3{bottom:217.876533pt;}
.y14{bottom:217.960800pt;}
.y25{bottom:218.929333pt;}
.y13c{bottom:218.978267pt;}
.y3c{bottom:219.355333pt;}
.y76{bottom:220.283467pt;}
.y15{bottom:221.678667pt;}
.ybc{bottom:223.654800pt;}
.y24{bottom:227.210133pt;}
.y16{bottom:229.209733pt;}
.y13b{bottom:231.022667pt;}
.yd2{bottom:231.104933pt;}
.y23{bottom:233.217067pt;}
.y75{bottom:234.950133pt;}
.y17{bottom:235.426667pt;}
.y22{bottom:236.323867pt;}
.y3b{bottom:238.114400pt;}
.y18{bottom:238.513067pt;}
.y104{bottom:239.599600pt;}
.y21{bottom:242.253867pt;}
.y13a{bottom:243.120267pt;}
.y19{bottom:243.807600pt;}
.yd1{bottom:244.333200pt;}
.y20{bottom:245.059600pt;}
.y1a{bottom:247.593867pt;}
.y1f{bottom:248.131600pt;}
.y1a1{bottom:249.304400pt;}
.y3a{bottom:249.314400pt;}
.y1b{bottom:249.574400pt;}
.y74{bottom:249.616800pt;}
.y1e{bottom:250.321467pt;}
.y1c{bottom:250.379867pt;}
.y1d{bottom:250.430933pt;}
.y139{bottom:255.164667pt;}
.y103{bottom:255.544267pt;}
.yd0{bottom:257.561600pt;}
.y1a0{bottom:260.642933pt;}
.y73{bottom:264.283467pt;}
.y138{bottom:267.209067pt;}
.ycf{bottom:270.790000pt;}
.ybb{bottom:271.488800pt;}
.y102{bottom:271.488933pt;}
.y19f{bottom:271.981467pt;}
.y72{bottom:278.950133pt;}
.y137{bottom:279.253467pt;}
.y114{bottom:279.426533pt;}
.y19e{bottom:283.320133pt;}
.yce{bottom:284.018267pt;}
.yba{bottom:287.433467pt;}
.y101{bottom:287.433600pt;}
.y14d{bottom:290.233600pt;}
.y136{bottom:291.297867pt;}
.y17c{bottom:291.918533pt;}
.y71{bottom:293.616800pt;}
.y141{bottom:298.645867pt;}
.y17b{bottom:303.257067pt;}
.y135{bottom:303.342267pt;}
.yb9{bottom:303.378133pt;}
.y100{bottom:303.378267pt;}
.y70{bottom:308.283467pt;}
.y134{bottom:315.439733pt;}
.yb8{bottom:319.322800pt;}
.ycd{bottom:319.322933pt;}
.y6f{bottom:322.950133pt;}
.y133{bottom:327.484133pt;}
.yb7{bottom:335.267467pt;}
.ycc{bottom:335.267600pt;}
.y192{bottom:338.960400pt;}
.y132{bottom:339.581733pt;}
.y1f4{bottom:348.817600pt;}
.yb6{bottom:351.212133pt;}
.yff{bottom:351.212267pt;}
.y131{bottom:351.679467pt;}
.y6e{bottom:353.288800pt;}
.y19c{bottom:359.055867pt;}
.y1f3{bottom:362.046000pt;}
.y6d{bottom:363.288800pt;}
.y151{bottom:363.698133pt;}
.y130{bottom:363.777067pt;}
.yb5{bottom:367.156800pt;}
.yfe{bottom:367.156933pt;}
.y67{bottom:373.280133pt;}
.y6c{bottom:373.288800pt;}
.y150{bottom:375.036667pt;}
.y1f2{bottom:375.274267pt;}
.y12f{bottom:375.821467pt;}
.yb4{bottom:383.101467pt;}
.yfd{bottom:383.101600pt;}
.y6b{bottom:383.288800pt;}
.y66{bottom:387.726267pt;}
.y12e{bottom:387.865867pt;}
.y65{bottom:398.392933pt;}
.yb3{bottom:399.046133pt;}
.ycb{bottom:399.046267pt;}
.y12d{bottom:399.910133pt;}
.y6a{bottom:412.186400pt;}
.y1f1{bottom:414.959333pt;}
.yb2{bottom:414.990800pt;}
.yca{bottom:414.990933pt;}
.y64{bottom:424.177733pt;}
.y1f0{bottom:428.187600pt;}
.y12c{bottom:430.849600pt;}
.yb1{bottom:430.935467pt;}
.yc9{bottom:430.935600pt;}
.y63{bottom:438.624000pt;}
.y1ef{bottom:441.416000pt;}
.yfc{bottom:444.184533pt;}
.yb0{bottom:446.880133pt;}
.yc8{bottom:446.880267pt;}
.y1ee{bottom:454.644400pt;}
.y19d{bottom:458.829200pt;}
.y12b{bottom:459.698667pt;}
.yaf{bottom:462.824800pt;}
.yc7{bottom:462.824933pt;}
.y62{bottom:464.408667pt;}
.y19b{bottom:467.722533pt;}
.y1ed{bottom:467.872667pt;}
.yfb{bottom:467.995600pt;}
.y12a{bottom:477.412267pt;}
.yae{bottom:478.769467pt;}
.y112{bottom:478.769600pt;}
.y61{bottom:478.854933pt;}
.y1ec{bottom:481.101067pt;}
.yfa{bottom:481.224000pt;}
.y60{bottom:493.301067pt;}
.y1eb{bottom:494.329333pt;}
.y178{bottom:494.406800pt;}
.yf9{bottom:494.452267pt;}
.yad{bottom:494.714133pt;}
.y111{bottom:494.714267pt;}
.y177{bottom:505.745333pt;}
.y1ea{bottom:507.557733pt;}
.yf8{bottom:507.680667pt;}
.y5f{bottom:507.747333pt;}
.y129{bottom:508.597067pt;}
.yac{bottom:510.658800pt;}
.y110{bottom:510.658933pt;}
.y176{bottom:517.083867pt;}
.y1e9{bottom:520.786133pt;}
.yf7{bottom:520.908933pt;}
.y5e{bottom:522.193467pt;}
.yab{bottom:526.603467pt;}
.y10f{bottom:526.603600pt;}
.y175{bottom:528.422400pt;}
.y1e8{bottom:534.014400pt;}
.yf6{bottom:534.137333pt;}
.y128{bottom:537.446133pt;}
.yaa{bottom:542.548133pt;}
.y10e{bottom:542.548267pt;}
.y1e7{bottom:547.242800pt;}
.yf5{bottom:547.365733pt;}
.y127{bottom:549.490533pt;}
.y19a{bottom:552.615867pt;}
.ya9{bottom:558.492800pt;}
.y10d{bottom:558.492933pt;}
.y174{bottom:560.113867pt;}
.y1e6{bottom:560.471200pt;}
.y126{bottom:567.204133pt;}
.yf4{bottom:571.176667pt;}
.y173{bottom:572.158267pt;}
.y1e5{bottom:573.699467pt;}
.ya8{bottom:574.437467pt;}
.yc6{bottom:574.437600pt;}
.y172{bottom:584.202533pt;}
.yf3{bottom:584.405067pt;}
.y1e4{bottom:586.927867pt;}
.ya7{bottom:590.382133pt;}
.yc5{bottom:590.382267pt;}
.y171{bottom:596.246933pt;}
.yf2{bottom:597.633333pt;}
.y1e3{bottom:600.156133pt;}
.y125{bottom:605.781200pt;}
.ya6{bottom:606.326800pt;}
.y10c{bottom:606.326933pt;}
.y199{bottom:608.454000pt;}
.yf1{bottom:610.861733pt;}
.y1e2{bottom:613.384533pt;}
.y170{bottom:613.960667pt;}
.y124{bottom:617.119733pt;}
.y14f{bottom:618.726933pt;}
.y198{bottom:619.792533pt;}
.ya5{bottom:622.271467pt;}
.y186{bottom:622.271600pt;}
.yf0{bottom:624.090133pt;}
.y16f{bottom:626.005067pt;}
.y1e1{bottom:626.612933pt;}
.y197{bottom:631.131067pt;}
.y16e{bottom:638.049467pt;}
.ya4{bottom:638.216133pt;}
.y185{bottom:638.216267pt;}
.y1e0{bottom:639.841200pt;}
.y196{bottom:642.469733pt;}
.yef{bottom:647.901067pt;}
.y5d{bottom:648.659733pt;}
.y123{bottom:648.894933pt;}
.y16d{bottom:650.093867pt;}
.y1df{bottom:653.069600pt;}
.yc4{bottom:654.160800pt;}
.y184{bottom:654.160933pt;}
.y83{bottom:656.070933pt;}
.y122{bottom:660.233467pt;}
.y14c{bottom:661.104800pt;}
.yee{bottom:661.129467pt;}
.y17a{bottom:661.367467pt;}
.y5c{bottom:661.993067pt;}
.y16c{bottom:662.138133pt;}
.y1de{bottom:666.297867pt;}
.y191{bottom:666.520000pt;}
.ya3{bottom:670.105467pt;}
.yc3{bottom:670.105600pt;}
.y121{bottom:671.572133pt;}
.y14b{bottom:672.443333pt;}
.y179{bottom:672.706000pt;}
.y16b{bottom:674.182667pt;}
.yed{bottom:674.357733pt;}
.y1dd{bottom:679.526267pt;}
.y120{bottom:682.910667pt;}
.y14a{bottom:683.781867pt;}
.y183{bottom:686.050267pt;}
.y16a{bottom:686.226933pt;}
.yec{bottom:687.586133pt;}
.y82{bottom:689.414667pt;}
.y5b{bottom:690.444533pt;}
.y1dc{bottom:692.754533pt;}
.y11f{bottom:694.249333pt;}
.y1bf{bottom:695.572133pt;}
.y169{bottom:698.271333pt;}
.yeb{bottom:700.814400pt;}
.y5a{bottom:701.644533pt;}
.y182{bottom:701.994933pt;}
.y81{bottom:704.081333pt;}
.y140{bottom:704.700000pt;}
.y11e{bottom:705.587867pt;}
.y1db{bottom:705.982933pt;}
.y1be{bottom:706.910667pt;}
.y168{bottom:710.315733pt;}
.y59{bottom:712.844533pt;}
.yea{bottom:714.042800pt;}
.y149{bottom:715.487200pt;}
.y148{bottom:715.492533pt;}
.y181{bottom:717.939600pt;}
.y1bd{bottom:718.249333pt;}
.y80{bottom:718.748000pt;}
.y1da{bottom:719.211200pt;}
.y167{bottom:722.360133pt;}
.y58{bottom:724.044533pt;}
.ye9{bottom:727.271200pt;}
.y1bc{bottom:729.587867pt;}
.y113{bottom:730.393333pt;}
.y1d9{bottom:732.439600pt;}
.y180{bottom:733.884267pt;}
.y166{bottom:734.404533pt;}
.y57{bottom:735.244533pt;}
.y11c{bottom:736.817200pt;}
.ye8{bottom:740.499467pt;}
.y1d8{bottom:745.668000pt;}
.y56{bottom:746.444533pt;}
.y165{bottom:746.448933pt;}
.y7f{bottom:747.094533pt;}
.y17f{bottom:749.828933pt;}
.y11a{bottom:752.591200pt;}
.y1a4{bottom:752.705333pt;}
.y1b0{bottom:753.125333pt;}
.y55{bottom:757.644533pt;}
.y164{bottom:758.493333pt;}
.y1d7{bottom:758.896267pt;}
.y7e{bottom:761.761200pt;}
.y146{bottom:762.351200pt;}
.ye7{bottom:764.310533pt;}
.y144{bottom:765.348533pt;}
.y17e{bottom:765.773600pt;}
.y54{bottom:768.844533pt;}
.y163{bottom:770.537733pt;}
.y9c{bottom:771.331200pt;}
.ya2{bottom:771.331333pt;}
.y1d6{bottom:772.124667pt;}
.y1a7{bottom:772.873067pt;}
.y1b3{bottom:773.293067pt;}
.y145{bottom:774.180533pt;}
.y7d{bottom:776.427867pt;}
.y53{bottom:780.044533pt;}
.y17d{bottom:781.718267pt;}
.ya1{bottom:781.998000pt;}
.y162{bottom:782.582000pt;}
.y1d5{bottom:785.353067pt;}
.y9b{bottom:785.997867pt;}
.ye6{bottom:788.121600pt;}
.y7c{bottom:791.094533pt;}
.y52{bottom:791.244533pt;}
.y119{bottom:791.449867pt;}
.ya0{bottom:792.664667pt;}
.y161{bottom:794.626400pt;}
.y1c5{bottom:797.662933pt;}
.y1d4{bottom:798.581333pt;}
.y9a{bottom:800.664533pt;}
.y51{bottom:802.444533pt;}
.y9f{bottom:803.331333pt;}
.y1a3{bottom:804.827733pt;}
.y1bb{bottom:805.247733pt;}
.y160{bottom:806.670800pt;}
.y1d3{bottom:811.809733pt;}
.y1a6{bottom:812.539733pt;}
.y1b2{bottom:812.959733pt;}
.y1c4{bottom:813.607600pt;}
.y50{bottom:813.644533pt;}
.y9e{bottom:813.998000pt;}
.y99{bottom:815.331200pt;}
.y15f{bottom:818.715200pt;}
.y118{bottom:819.375200pt;}
.ye5{bottom:819.491733pt;}
.y1a2{bottom:822.502400pt;}
.y1ba{bottom:822.922400pt;}
.y9d{bottom:824.664667pt;}
.y4f{bottom:824.844533pt;}
.y1d2{bottom:825.038133pt;}
.y1c3{bottom:829.552267pt;}
.y98{bottom:829.997867pt;}
.y15e{bottom:830.759600pt;}
.y4e{bottom:836.044533pt;}
.y190{bottom:836.322400pt;}
.y1d1{bottom:838.266400pt;}
.y15d{bottom:842.804000pt;}
.y1a9{bottom:843.873200pt;}
.y1b4{bottom:844.291733pt;}
.y97{bottom:844.664667pt;}
.ye4{bottom:845.496933pt;}
.y4d{bottom:847.244667pt;}
.y13f{bottom:847.348533pt;}
.y18f{bottom:848.366800pt;}
.y1d0{bottom:851.494800pt;}
.y15c{bottom:854.848400pt;}
.y4c{bottom:858.444667pt;}
.y96{bottom:859.331333pt;}
.ye3{bottom:861.441600pt;}
.y1cf{bottom:864.723200pt;}
.y18e{bottom:866.133733pt;}
.y15b{bottom:866.892800pt;}
.y4b{bottom:869.644667pt;}
.y95{bottom:873.998000pt;}
.y1aa{bottom:876.315867pt;}
.y1b5{bottom:876.734400pt;}
.y1c2{bottom:877.386267pt;}
.y1ce{bottom:877.951467pt;}
.y18d{bottom:878.178000pt;}
.y147{bottom:878.351200pt;}
.y15a{bottom:878.937200pt;}
.y85{bottom:879.118133pt;}
.y4a{bottom:880.844667pt;}
.y117{bottom:883.044533pt;}
.y94{bottom:888.664667pt;}
.y18c{bottom:890.222533pt;}
.y159{bottom:890.981467pt;}
.y1cd{bottom:891.179733pt;}
.y49{bottom:892.044533pt;}
.ye2{bottom:893.330933pt;}
.y195{bottom:900.586933pt;}
.y115{bottom:900.708533pt;}
.y18b{bottom:902.266800pt;}
.y158{bottom:903.026000pt;}
.y93{bottom:903.331333pt;}
.y1cc{bottom:904.408133pt;}
.y84{bottom:905.784800pt;}
.y1ab{bottom:907.647867pt;}
.y1b6{bottom:908.066400pt;}
.y1c1{bottom:909.275600pt;}
.y18a{bottom:914.311333pt;}
.y157{bottom:915.070267pt;}
.y1cb{bottom:917.636533pt;}
.y92{bottom:917.998000pt;}
.y48{bottom:918.362667pt;}
.y1{bottom:920.882667pt;}
.y194{bottom:924.146933pt;}
.ye1{bottom:925.220267pt;}
.y189{bottom:926.355600pt;}
.y156{bottom:927.114800pt;}
.y1ca{bottom:930.864800pt;}
.y91{bottom:932.664667pt;}
.y188{bottom:938.400000pt;}
.y1ac{bottom:939.511867pt;}
.y1b7{bottom:939.930400pt;}
.ye0{bottom:941.164933pt;}
.y1c9{bottom:944.093200pt;}
.y47{bottom:944.680800pt;}
.y155{bottom:944.828400pt;}
.y90{bottom:947.331333pt;}
.y116{bottom:948.708533pt;}
.y187{bottom:956.166933pt;}
.ydf{bottom:957.109600pt;}
.y1c8{bottom:957.321467pt;}
.y8f{bottom:961.998000pt;}
.y2{bottom:965.669333pt;}
.y1c7{bottom:970.549867pt;}
.y1ad{bottom:970.843867pt;}
.y46{bottom:970.998933pt;}
.y1b8{bottom:971.262400pt;}
.y11d{bottom:972.153200pt;}
.yde{bottom:973.054133pt;}
.y8e{bottom:976.664667pt;}
.y143{bottom:983.012533pt;}
.y154{bottom:983.572133pt;}
.y1c6{bottom:983.778267pt;}
.y13e{bottom:986.345867pt;}
.y1c0{bottom:988.998933pt;}
.y8d{bottom:991.331333pt;}
.y153{bottom:994.910667pt;}
.y14e{bottom:995.393600pt;}
.y45{bottom:997.317067pt;}
.y142{bottom:999.793867pt;}
.y1ae{bottom:1002.847867pt;}
.y1b9{bottom:1003.266400pt;}
.ydd{bottom:1004.943600pt;}
.y8c{bottom:1005.998000pt;}
.y152{bottom:1006.249333pt;}
.y44{bottom:1008.517067pt;}
.y8b{bottom:1068.661333pt;}
.ydc{bottom:1068.661467pt;}
.h51{height:18.183381pt;}
.h4a{height:23.392000pt;}
.h3c{height:25.152000pt;}
.h59{height:27.290667pt;}
.h38{height:27.402667pt;}
.h53{height:28.028000pt;}
.h37{height:29.344000pt;}
.h45{height:30.506667pt;}
.h49{height:30.508698pt;}
.h4f{height:31.189333pt;}
.h4c{height:31.440000pt;}
.h5c{height:31.958000pt;}
.h50{height:32.420715pt;}
.h3a{height:33.536000pt;}
.h39{height:33.898667pt;}
.h44{height:34.320000pt;}
.h41{height:35.632000pt;}
.h3e{height:36.226667pt;}
.h3f{height:36.229079pt;}
.h54{height:38.080000pt;}
.h3b{height:38.133333pt;}
.h40{height:38.986667pt;}
.h46{height:40.040000pt;}
.h47{height:40.042667pt;}
.h43{height:41.664000pt;}
.h4d{height:42.610667pt;}
.h3d{height:43.978667pt;}
.h4b{height:44.853333pt;}
.h48{height:47.096000pt;}
.h5b{height:48.608000pt;}
.h17{height:54.365470pt;}
.hc{height:54.365506pt;}
.h9{height:54.365511pt;}
.h18{height:54.365523pt;}
.h29{height:54.365528pt;}
.h1a{height:54.365535pt;}
.h4{height:54.365538pt;}
.h22{height:54.365544pt;}
.hf{height:54.365548pt;}
.h23{height:54.365562pt;}
.h16{height:54.365565pt;}
.he{height:54.365566pt;}
.h35{height:54.365580pt;}
.h1c{height:54.365595pt;}
.h2a{height:54.365603pt;}
.h31{height:54.365608pt;}
.h36{height:54.365613pt;}
.h19{height:54.365620pt;}
.h2c{height:54.365622pt;}
.h2b{height:54.365630pt;}
.h28{height:54.365634pt;}
.h21{height:54.365659pt;}
.h30{height:54.365661pt;}
.h13{height:54.365668pt;}
.hd{height:54.365671pt;}
.h20{height:54.365675pt;}
.h24{height:54.365682pt;}
.h26{height:54.365685pt;}
.h1d{height:54.365694pt;}
.h34{height:54.365700pt;}
.h27{height:54.365704pt;}
.h14{height:54.365718pt;}
.h8{height:54.365723pt;}
.h2f{height:54.365743pt;}
.h12{height:54.365753pt;}
.h6{height:54.365761pt;}
.h7{height:54.365768pt;}
.h1e{height:54.365783pt;}
.h32{height:54.365789pt;}
.h15{height:54.365791pt;}
.hb{height:54.365796pt;}
.h10{height:54.365804pt;}
.h11{height:54.365814pt;}
.h1f{height:54.365832pt;}
.ha{height:54.365835pt;}
.h2e{height:54.365840pt;}
.h25{height:54.365856pt;}
.h33{height:54.365873pt;}
.h1b{height:54.365885pt;}
.h2d{height:54.365889pt;}
.h5{height:54.365919pt;}
.h42{height:62.378667pt;}
.h2{height:66.549333pt;}
.h56{height:67.413333pt;}
.h57{height:74.560000pt;}
.h5a{height:262.056000pt;}
.h58{height:262.476000pt;}
.h4e{height:288.568000pt;}
.h52{height:310.481333pt;}
.h55{height:355.276000pt;}
.h3{height:383.637333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:206.400000pt;}
.w2{width:282.445333pt;}
.w5{width:322.838667pt;}
.w6{width:323.532000pt;}
.w3{width:429.280000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x66{left:5.825200pt;}
.x6f{left:9.140933pt;}
.x67{left:12.491867pt;}
.x2{left:37.795333pt;}
.xf{left:62.294133pt;}
.xe{left:63.402933pt;}
.xd{left:64.859200pt;}
.x2d{left:66.141733pt;}
.xc{left:67.701067pt;}
.xb{left:69.627067pt;}
.xa{left:71.882800pt;}
.x3f{left:74.200800pt;}
.x53{left:75.751067pt;}
.x9{left:76.969600pt;}
.x56{left:78.683867pt;}
.x8{left:80.268800pt;}
.x62{left:82.029867pt;}
.x6e{left:83.134000pt;}
.x7{left:85.094400pt;}
.x10{left:87.154133pt;}
.x6c{left:88.323333pt;}
.x6{left:93.155333pt;}
.x11{left:94.828667pt;}
.x2e{left:96.377867pt;}
.x12{left:99.076800pt;}
.x30{left:103.937067pt;}
.x5{left:107.291200pt;}
.x13{left:108.951867pt;}
.x3a{left:115.275600pt;}
.x4{left:116.396000pt;}
.x54{left:117.564267pt;}
.x14{left:119.484667pt;}
.x47{left:120.673867pt;}
.x46{left:124.866667pt;}
.x15{left:129.143600pt;}
.x3{left:132.487067pt;}
.x16{left:133.628133pt;}
.x17{left:144.524933pt;}
.x40{left:147.645200pt;}
.x18{left:149.089200pt;}
.x2c{left:150.799867pt;}
.x3b{left:151.845067pt;}
.x2b{left:155.320000pt;}
.x55{left:156.632667pt;}
.x49{left:158.601067pt;}
.x19{left:160.968933pt;}
.x2a{left:163.978667pt;}
.x3e{left:165.213067pt;}
.x57{left:167.527600pt;}
.x29{left:168.979733pt;}
.x1a{left:170.176800pt;}
.x3d{left:172.137200pt;}
.x3c{left:175.352933pt;}
.x1b{left:176.744000pt;}
.x28{left:178.911067pt;}
.x59{left:182.210667pt;}
.x1c{left:186.344400pt;}
.x1d{left:190.649067pt;}
.x27{left:194.705600pt;}
.x1e{left:197.383467pt;}
.x26{left:202.398000pt;}
.x1f{left:204.379867pt;}
.x20{left:208.357467pt;}
.x21{left:212.943333pt;}
.x5f{left:214.475733pt;}
.x22{left:215.742933pt;}
.x23{left:217.269333pt;}
.x25{left:218.187200pt;}
.x24{left:219.340533pt;}
.x32{left:244.724400pt;}
.x6b{left:267.807067pt;}
.x58{left:288.144667pt;}
.x65{left:293.650667pt;}
.x61{left:295.666800pt;}
.x68{left:299.475867pt;}
.x6d{left:311.796267pt;}
.x31{left:339.086933pt;}
.x5b{left:348.970400pt;}
.x39{left:355.266000pt;}
.x5e{left:363.147733pt;}
.x6a{left:374.143600pt;}
.x41{left:382.926800pt;}
.x69{left:403.915867pt;}
.x42{left:406.299200pt;}
.x73{left:416.454267pt;}
.x43{left:417.637733pt;}
.x45{left:420.886133pt;}
.x48{left:425.705333pt;}
.x52{left:429.160933pt;}
.x72{left:434.350400pt;}
.x35{left:436.206533pt;}
.x74{left:437.110000pt;}
.x4c{left:455.035733pt;}
.x70{left:462.132000pt;}
.x4f{left:466.427733pt;}
.x5d{left:470.145067pt;}
.x44{left:474.330667pt;}
.x75{left:480.407333pt;}
.x34{left:482.785867pt;}
.x60{left:491.809067pt;}
.x4b{left:496.561067pt;}
.x76{left:501.537867pt;}
.x4d{left:526.203733pt;}
.x5a{left:527.722267pt;}
.x63{left:530.848800pt;}
.x64{left:532.096667pt;}
.x5c{left:544.621067pt;}
.x38{left:546.648800pt;}
.x77{left:550.276000pt;}
.x78{left:577.068400pt;}
.x7a{left:593.268800pt;}
.x37{left:596.707067pt;}
.x79{left:598.702533pt;}
.x4a{left:604.529067pt;}
.x71{left:605.691600pt;}
.x33{left:606.800133pt;}
.x1{left:619.458267pt;}
.x50{left:620.539733pt;}
.x36{left:648.566667pt;}
.x51{left:651.306400pt;}
.x4e{left:681.126400pt;}
.x2f{left:706.046533pt;}
}




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