
    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_59d3df962a01a3688b6a96f8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_0eef2d945d0c21ee44ebbd32.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.132812;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_4f97f4ad59fefd4b4b7b2a36.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136719;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_348eced032c3da18ccb69385.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128906;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_e8da75696505aebdf7c30140.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.969881;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_a30a157c12aebe7d3795acaa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.970703;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_5bf1d48fe890893a52112d99.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.026367;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_a66d8c2b28f9c7cf9fca35a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.970703;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_ff2a093fbdd673bf21aee743.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.136719;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_92bc5359d84c16fcde20bc43.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.857000;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_b0ac453c968ed0eb0d184cf5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.898000;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_92bc5359d84c16fcde20bc43.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.857000;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_b0ac453c968ed0eb0d184cf5.woff2')format("woff");}.fff{font-family:fff;line-height:0.898000;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_5cdb431d4c255a068cc94294.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958556;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_fc73804342a1de9178b7c9f9.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.973633;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;}
.m88{transform:matrix(0.000000,-0.241834,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.241834,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.241834,0.250000,0.000000,0,0);}
.m89{transform:matrix(0.000000,-0.249300,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249300,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249300,0.250000,0.000000,0,0);}
.mb{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);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.240898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240898,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.242621,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242621,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242621,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.242685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242685,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.243533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243533,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243581,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.244204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244204,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.244688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244688,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m1d{transform:matrix(0.245115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245115,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.245427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245427,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.245581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245581,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245679,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.245956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245956,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246004,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246092,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246113,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.246263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246263,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246463,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.246563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246563,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246569,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.246696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246696,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.246708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246708,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246927,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.247002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247002,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.247063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247063,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.247104,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247104,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247104,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247346,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247450,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.247488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247488,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247544,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247610,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247613,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247756,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.247758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247758,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247852,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247898,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247942,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.247948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247948,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248058,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248098,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248177,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248219,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248333,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248504,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248519,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248560,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248590,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248646,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248679,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.mae{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);}
.m2{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248781,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248837,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248912,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248971,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249006,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249029,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249069,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249119,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249192,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249242,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249410,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249515,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249537,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249544,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);}
.m77{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);}
.ma9{transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249731,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249783,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249873,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.mc{transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250069,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250154,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250162,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250181,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250204,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250221,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250269,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250354,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250358,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m4a{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);}
.m5{transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250560,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250613,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250640,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250667,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250692,0.000000,0.000000,0.250000,0,0);}
.m9d{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);}
.m9e{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250746,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250781,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250783,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250860,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);}
.m90{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);}
.m7f{transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250969,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251038,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251085,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251121,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251188,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251269,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251331,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251356,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251373,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251542,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251673,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251733,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251802,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251808,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251881,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251898,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251925,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251983,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252042,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252071,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252110,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.252198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252198,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252277,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252304,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252517,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252535,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252600,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.252677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252677,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.252708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252708,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252870,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253029,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.253181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253181,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.253287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253287,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253515,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.253579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253579,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.253608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253608,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253615,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253690,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.253698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253698,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253783,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.254048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254048,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254083,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254325,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.254977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254977,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m1{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);}
.v3{vertical-align:-33.883200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.976000px;}
.v1{vertical-align:31.968000px;}
.v4{vertical-align:35.007600px;}
.ls46{letter-spacing:-2.880000px;}
.ls44{letter-spacing:-2.520000px;}
.ls45{letter-spacing:-2.376000px;}
.ls13{letter-spacing:-1.728000px;}
.ls39{letter-spacing:-1.656000px;}
.ls3b{letter-spacing:-1.584000px;}
.ls38{letter-spacing:-1.512000px;}
.ls3a{letter-spacing:-1.440000px;}
.ls2f{letter-spacing:-1.224000px;}
.ls2d{letter-spacing:-1.152000px;}
.ls2c{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.008000px;}
.ls34{letter-spacing:-0.936000px;}
.ls33{letter-spacing:-0.900000px;}
.ls23{letter-spacing:-0.864000px;}
.ls36{letter-spacing:-0.816000px;}
.ls22{letter-spacing:-0.792000px;}
.ls10{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.630000px;}
.ls24{letter-spacing:-0.504000px;}
.ls11{letter-spacing:-0.480000px;}
.ls1a{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.288000px;}
.ls27{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.210000px;}
.ls19{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.066000px;}
.ls37{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.060000px;}
.ls17{letter-spacing:0.072000px;}
.ls18{letter-spacing:0.144000px;}
.ls32{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.300000px;}
.ls29{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.391146px;}
.ls1c{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.456000px;}
.lsb{letter-spacing:0.480000px;}
.ls26{letter-spacing:0.504000px;}
.ls2e{letter-spacing:0.576000px;}
.ls1e{letter-spacing:0.600000px;}
.ls28{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.660000px;}
.ls25{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.840000px;}
.lsa{letter-spacing:1.890000px;}
.ls48{letter-spacing:2.148570px;}
.ls12{letter-spacing:2.520000px;}
.ls8{letter-spacing:2.706000px;}
.ls14{letter-spacing:2.940000px;}
.ls3{letter-spacing:3.360000px;}
.ls2{letter-spacing:3.780000px;}
.ls1{letter-spacing:4.200000px;}
.ls30{letter-spacing:6.120000px;}
.ls1f{letter-spacing:37.500000px;}
.ls3f{letter-spacing:105.363600px;}
.ls42{letter-spacing:105.364200px;}
.ls41{letter-spacing:105.517200px;}
.ls31{letter-spacing:105.543600px;}
.ls3d{letter-spacing:117.156000px;}
.ls3e{letter-spacing:117.156600px;}
.ls43{letter-spacing:117.309000px;}
.ls40{letter-spacing:117.462000px;}
.ls35{letter-spacing:149.931000px;}
.ls3c{letter-spacing:172.795200px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws92{word-spacing:-183.211200px;}
.ws6c{word-spacing:-161.835000px;}
.wsd8{word-spacing:-127.572000px;}
.ws5a{word-spacing:-116.703600px;}
.ws1d{word-spacing:-105.840000px;}
.ws34{word-spacing:-37.500000px;}
.ws1{word-spacing:-34.080000px;}
.ws4{word-spacing:-30.672000px;}
.ws3c{word-spacing:-24.437537px;}
.ws32{word-spacing:-24.341246px;}
.ws26{word-spacing:-23.856000px;}
.ws1e{word-spacing:-20.376000px;}
.ws3d{word-spacing:-18.144000px;}
.wsdb{word-spacing:-18.000000px;}
.ws27{word-spacing:-17.928000px;}
.wsb7{word-spacing:-17.856000px;}
.wsb9{word-spacing:-17.784000px;}
.wsb8{word-spacing:-17.640000px;}
.wsdc{word-spacing:-17.496000px;}
.ws33{word-spacing:-17.280000px;}
.wsdd{word-spacing:-16.434000px;}
.ws24{word-spacing:-15.408000px;}
.ws54{word-spacing:-14.880000px;}
.ws5{word-spacing:-14.700000px;}
.ws23{word-spacing:-13.968000px;}
.ws9{word-spacing:-12.432000px;}
.wsa{word-spacing:-11.952000px;}
.ws6f{word-spacing:-11.904000px;}
.ws58{word-spacing:-11.160000px;}
.ws6a{word-spacing:-11.088000px;}
.ws94{word-spacing:-10.416000px;}
.ws3e{word-spacing:-10.410048px;}
.ws21{word-spacing:-7.632000px;}
.wsd{word-spacing:-4.092000px;}
.ws25{word-spacing:-3.096000px;}
.ws10{word-spacing:-2.904000px;}
.ws22{word-spacing:-2.592000px;}
.ws1f{word-spacing:-2.520000px;}
.ws2{word-spacing:-2.040000px;}
.ws37{word-spacing:-1.872000px;}
.ws3{word-spacing:-1.836000px;}
.ws28{word-spacing:-1.800000px;}
.ws3f{word-spacing:-1.728000px;}
.wsda{word-spacing:-1.656000px;}
.ws6{word-spacing:-1.632000px;}
.wse{word-spacing:-1.584000px;}
.ws67{word-spacing:-1.512000px;}
.ws7{word-spacing:-1.500000px;}
.ws56{word-spacing:-1.440000px;}
.ws35{word-spacing:-1.428000px;}
.ws39{word-spacing:-1.368000px;}
.ws8e{word-spacing:-1.320000px;}
.ws13{word-spacing:-1.296000px;}
.wsb{word-spacing:-1.254000px;}
.ws20{word-spacing:-1.224000px;}
.ws30{word-spacing:-1.152000px;}
.wsba{word-spacing:-1.080000px;}
.ws49{word-spacing:-1.008000px;}
.ws11{word-spacing:-0.918000px;}
.ws52{word-spacing:-0.864000px;}
.ws51{word-spacing:-0.792000px;}
.ws40{word-spacing:-0.720000px;}
.ws3a{word-spacing:-0.648000px;}
.ws55{word-spacing:-0.576000px;}
.ws41{word-spacing:-0.504000px;}
.ws1b{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.432000px;}
.ws47{word-spacing:-0.360000px;}
.ws2b{word-spacing:-0.288000px;}
.ws45{word-spacing:-0.240000px;}
.wsbb{word-spacing:-0.216000px;}
.wsf{word-spacing:-0.198000px;}
.ws66{word-spacing:-0.180000px;}
.ws48{word-spacing:-0.144000px;}
.ws3b{word-spacing:-0.115271px;}
.ws31{word-spacing:-0.114817px;}
.ws2a{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
.ws8a{word-spacing:0.060000px;}
.ws53{word-spacing:0.072000px;}
.ws12{word-spacing:0.144000px;}
.ws50{word-spacing:0.216000px;}
.ws42{word-spacing:0.288000px;}
.ws36{word-spacing:0.360000px;}
.ws2d{word-spacing:0.432000px;}
.ws1c{word-spacing:0.480000px;}
.ws38{word-spacing:0.504000px;}
.ws43{word-spacing:0.576000px;}
.ws4b{word-spacing:0.648000px;}
.ws19{word-spacing:0.720000px;}
.ws2e{word-spacing:0.792000px;}
.ws4c{word-spacing:0.864000px;}
.ws65{word-spacing:0.900000px;}
.ws57{word-spacing:1.008000px;}
.ws4d{word-spacing:1.080000px;}
.ws4f{word-spacing:1.152000px;}
.wsbc{word-spacing:1.296000px;}
.ws46{word-spacing:1.440000px;}
.ws18{word-spacing:1.488000px;}
.ws8{word-spacing:1.500000px;}
.ws8b{word-spacing:1.512000px;}
.ws8d{word-spacing:1.584000px;}
.ws8c{word-spacing:1.656000px;}
.ws2f{word-spacing:1.728000px;}
.ws29{word-spacing:1.800000px;}
.ws17{word-spacing:1.920000px;}
.wsd9{word-spacing:2.376000px;}
.ws1a{word-spacing:4.080000px;}
.ws15{word-spacing:6.174000px;}
.ws16{word-spacing:7.476000px;}
.wsc{word-spacing:8.184000px;}
.ws14{word-spacing:18.690000px;}
.ws62{word-spacing:34.983600px;}
.ws5f{word-spacing:47.618400px;}
.ws61{word-spacing:47.638800px;}
.ws64{word-spacing:47.639400px;}
.ws88{word-spacing:54.563400px;}
.ws7d{word-spacing:56.480400px;}
.ws5c{word-spacing:57.796800px;}
.wsb4{word-spacing:59.176200px;}
.ws97{word-spacing:59.176800px;}
.wsa1{word-spacing:59.177400px;}
.wscb{word-spacing:59.532000px;}
.wsd3{word-spacing:59.532600px;}
.ws9d{word-spacing:59.636400px;}
.wsd5{word-spacing:59.685000px;}
.ws5d{word-spacing:60.273600px;}
.ws5e{word-spacing:60.274200px;}
.wscf{word-spacing:60.571800px;}
.ws7c{word-spacing:61.167600px;}
.ws7b{word-spacing:61.189800px;}
.ws89{word-spacing:61.190400px;}
.ws73{word-spacing:61.418400px;}
.ws75{word-spacing:61.419000px;}
.ws70{word-spacing:63.102000px;}
.ws80{word-spacing:63.460800px;}
.ws63{word-spacing:66.996000px;}
.ws76{word-spacing:68.039400px;}
.ws7a{word-spacing:68.040000px;}
.ws79{word-spacing:68.045400px;}
.ws72{word-spacing:68.046000px;}
.ws5b{word-spacing:69.093600px;}
.ws77{word-spacing:70.087800px;}
.wsb2{word-spacing:70.158000px;}
.wsa3{word-spacing:70.158600px;}
.ws9f{word-spacing:70.159200px;}
.wsae{word-spacing:70.173000px;}
.wsa0{word-spacing:70.173600px;}
.wsb3{word-spacing:70.174200px;}
.ws85{word-spacing:70.316400px;}
.wsa8{word-spacing:70.318800px;}
.wsb5{word-spacing:70.449600px;}
.wsab{word-spacing:70.464000px;}
.wsa7{word-spacing:70.618200px;}
.wsd0{word-spacing:71.323800px;}
.wsc7{word-spacing:71.324400px;}
.wsca{word-spacing:71.343600px;}
.wsc2{word-spacing:71.344200px;}
.wsd4{word-spacing:71.497200px;}
.wsd1{word-spacing:71.630400px;}
.wsc8{word-spacing:72.364200px;}
.ws9e{word-spacing:73.576200px;}
.wsad{word-spacing:73.576800px;}
.wsb1{word-spacing:73.577400px;}
.ws9a{word-spacing:73.614000px;}
.wsa5{word-spacing:73.614600px;}
.ws96{word-spacing:73.722000px;}
.wsb0{word-spacing:73.759800px;}
.wsa2{word-spacing:74.073600px;}
.ws95{word-spacing:74.074200px;}
.ws71{word-spacing:74.666400px;}
.ws74{word-spacing:74.667000px;}
.ws81{word-spacing:76.937400px;}
.ws83{word-spacing:76.943400px;}
.ws60{word-spacing:79.651800px;}
.wsa6{word-spacing:81.154800px;}
.ws99{word-spacing:81.155400px;}
.ws9b{word-spacing:81.156000px;}
.wsac{word-spacing:81.446400px;}
.wsd2{word-spacing:83.116200px;}
.wsbf{word-spacing:83.136000px;}
.wsc4{word-spacing:83.136600px;}
.wsc9{word-spacing:83.289000px;}
.wscc{word-spacing:83.442000px;}
.ws82{word-spacing:83.564400px;}
.wsc0{word-spacing:84.156000px;}
.ws9c{word-spacing:84.558000px;}
.ws98{word-spacing:84.558600px;}
.wsaf{word-spacing:84.559200px;}
.wsa9{word-spacing:84.610800px;}
.wsa4{word-spacing:84.611400px;}
.wsb6{word-spacing:84.703800px;}
.wsaa{word-spacing:88.014600px;}
.wsc3{word-spacing:92.938800px;}
.wsc1{word-spacing:94.927800px;}
.wsc5{word-spacing:94.928400px;}
.wsd7{word-spacing:94.947600px;}
.wsc6{word-spacing:94.948200px;}
.wscd{word-spacing:95.080800px;}
.wsd6{word-spacing:95.101200px;}
.wsce{word-spacing:95.233800px;}
.wsbe{word-spacing:106.740000px;}
.ws6d{word-spacing:111.050400px;}
.ws6e{word-spacing:111.051000px;}
.ws78{word-spacing:112.702200px;}
.ws84{word-spacing:119.574600px;}
.ws7f{word-spacing:126.201600px;}
.ws87{word-spacing:126.430200px;}
.ws86{word-spacing:133.051200px;}
.ws6b{word-spacing:138.026400px;}
.ws93{word-spacing:138.775200px;}
.ws7e{word-spacing:139.678200px;}
.ws68{word-spacing:147.984000px;}
.ws8f{word-spacing:148.978200px;}
.ws91{word-spacing:162.379200px;}
.wsbd{word-spacing:226.361400px;}
.ws4e{word-spacing:232.272000px;}
.ws59{word-spacing:968.427900px;}
.ws4a{word-spacing:1021.968000px;}
.ws69{word-spacing:1338.698400px;}
.ws90{word-spacing:1517.517000px;}
.ws44{word-spacing:1985.472000px;}
._8{margin-left:-2128.380000px;}
._9{margin-left:-1672.584000px;}
._4{margin-left:-32.292000px;}
._d{margin-left:-29.583600px;}
._b{margin-left:-26.518909px;}
._19{margin-left:-17.825606px;}
._2b{margin-left:-15.120000px;}
._c{margin-left:-13.626600px;}
._3{margin-left:-10.236000px;}
._a{margin-left:-8.832000px;}
._2{margin-left:-6.960000px;}
._7{margin-left:-5.448000px;}
._0{margin-left:-4.416000px;}
._6{margin-left:-2.760000px;}
._1{margin-left:-1.668000px;}
._5{width:1.284000px;}
._f{width:3.079200px;}
._e{width:4.612800px;}
._10{width:6.022800px;}
._14{width:9.995353px;}
._16{width:11.943600px;}
._12{width:13.357200px;}
._1d{width:14.423939px;}
._18{width:22.594764px;}
._11{width:23.992800px;}
._1f{width:25.004654px;}
._1b{width:27.478200px;}
._17{width:50.587103px;}
._26{width:51.722453px;}
._27{width:58.457117px;}
._1a{width:60.334200px;}
._2a{width:68.956800px;}
._13{width:71.223611px;}
._34{width:72.576952px;}
._15{width:74.068448px;}
._20{width:78.849633px;}
._2f{width:79.944000px;}
._39{width:81.586800px;}
._43{width:82.748400px;}
._38{width:83.820600px;}
._2e{width:86.571600px;}
._32{width:88.846200px;}
._29{width:90.813000px;}
._3b{width:91.905000px;}
._28{width:92.910600px;}
._3a{width:94.293600px;}
._30{width:95.468400px;}
._3c{width:98.221800px;}
._37{width:99.333600px;}
._41{width:103.713600px;}
._40{width:104.731800px;}
._3e{width:105.823800px;}
._42{width:115.450200px;}
._3f{width:117.462000px;}
._2d{width:136.455000px;}
._31{width:138.105600px;}
._33{width:151.581600px;}
._36{width:161.440200px;}
._21{width:231.834421px;}
._24{width:243.692935px;}
._23{width:247.358106px;}
._1e{width:258.443943px;}
._1c{width:259.462200px;}
._22{width:387.911584px;}
._3d{width:1086.984600px;}
._2c{width:1348.573800px;}
._35{width:1520.525400px;}
._25{width:1686.096000px;}
.fcb{color:rgb(156,0,6);}
.fca{color:rgb(0,112,192);}
.fc4{color:rgb(77,74,74);}
.fc7{color:rgb(41,62,117);}
.fc3{color:rgb(44,85,174);}
.fc9{color:rgb(0,97,0);}
.fc2{color:transparent;}
.fc1{color:rgb(26,53,107);}
.fc8{color:rgb(57,53,54);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fs18{font-size:45.000000px;}
.fsf{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs9{font-size:55.968000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs19{font-size:78.000000px;}
.fs10{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fsc{font-size:111.956400px;}
.fsd{font-size:111.957000px;}
.fs11{font-size:114.817200px;}
.fs16{font-size:115.271400px;}
.fs6{font-size:120.000000px;}
.fse{font-size:123.152400px;}
.fs13{font-size:138.000000px;}
.fs12{font-size:149.262600px;}
.fs17{font-size:149.853000px;}
.fs14{font-size:150.000000px;}
.fs5{font-size:432.000000px;}
.y0{bottom:0.000000px;}
.yc0{bottom:14.666550px;}
.yc2{bottom:26.542350px;}
.y9b{bottom:28.125000px;}
.y243{bottom:53.350500px;}
.y5{bottom:66.525004px;}
.y37{bottom:72.283500px;}
.y242{bottom:77.350500px;}
.y19e{bottom:77.375250px;}
.y170{bottom:81.076800px;}
.y13c{bottom:81.719400px;}
.ybe{bottom:85.039500px;}
.y173{bottom:89.291400px;}
.y1a3{bottom:89.665950px;}
.y1a1{bottom:89.666100px;}
.y19f{bottom:89.666250px;}
.y36{bottom:90.283500px;}
.yfe{bottom:92.917350px;}
.y19d{bottom:94.925250px;}
.y4{bottom:97.125005px;}
.y241{bottom:101.350500px;}
.ybd{bottom:103.039500px;}
.y13b{bottom:103.971450px;}
.y16f{bottom:104.326800px;}
.y35{bottom:108.283500px;}
.y19c{bottom:112.475250px;}
.yfd{bottom:116.917350px;}
.y1a4{bottom:119.054550px;}
.y172{bottom:119.055150px;}
.y177{bottom:119.055300px;}
.y171{bottom:119.371500px;}
.y1ea{bottom:119.545200px;}
.y240{bottom:125.350500px;}
.y16e{bottom:127.576800px;}
.y19b{bottom:130.025250px;}
.y34{bottom:130.535700px;}
.y1fe{bottom:137.063400px;}
.y21{bottom:139.264499px;}
.yfc{bottom:140.917350px;}
.y11b{bottom:142.486950px;}
.y1e9{bottom:143.545200px;}
.y19a{bottom:147.575250px;}
.y33{bottom:148.535700px;}
.y16d{bottom:150.826800px;}
.y1a5{bottom:156.810900px;}
.y178{bottom:156.811650px;}
.y1fd{bottom:160.763400px;}
.y1a2{bottom:161.019600px;}
.yfb{bottom:164.917350px;}
.y199{bottom:165.125250px;}
.y176{bottom:165.269100px;}
.y11a{bottom:166.036950px;}
.y23f{bottom:166.358250px;}
.y32{bottom:166.535700px;}
.y1e8{bottom:167.545200px;}
.y16c{bottom:174.076800px;}
.ybb{bottom:174.171300px;}
.y1bd{bottom:179.444850px;}
.ybc{bottom:180.165300px;}
.ye0{bottom:183.413400px;}
.y31{bottom:184.535700px;}
.y7c{bottom:186.433800px;}
.yfa{bottom:188.917350px;}
.y23e{bottom:190.358250px;}
.y1e7{bottom:191.545200px;}
.y18{bottom:196.933500px;}
.y1fc{bottom:197.219400px;}
.y16b{bottom:197.326800px;}
.yba{bottom:198.171300px;}
.y1bc{bottom:203.444850px;}
.y7b{bottom:204.433800px;}
.y119{bottom:206.594850px;}
.ydf{bottom:207.413400px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y5b{bottom:209.865150px;}
.yf9{bottom:212.917350px;}
.y1a0{bottom:215.041350px;}
.y1e6{bottom:215.545200px;}
.y175{bottom:218.912550px;}
.y1fb{bottom:220.919250px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.yb9{bottom:222.171300px;}
.y23d{bottom:222.862200px;}
.y21a{bottom:223.717350px;}
.y13a{bottom:224.052750px;}
.y198{bottom:225.194850px;}
.y5a{bottom:226.065150px;}
.y1bb{bottom:227.444850px;}
.y118{bottom:230.594850px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y16a{bottom:237.584700px;}
.y7a{bottom:239.441700px;}
.y1e5{bottom:239.545200px;}
.yb8{bottom:246.171300px;}
.y23c{bottom:246.862200px;}
.y219{bottom:247.417350px;}
.y139{bottom:248.052750px;}
.yde{bottom:248.421300px;}
.y196{bottom:249.194850px;}
.y1ba{bottom:251.444850px;}
.yf8{bottom:253.925100px;}
.y117{bottom:254.594850px;}
.y197{bottom:255.188850px;}
.y1fa{bottom:257.375100px;}
.y79{bottom:257.441700px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y169{bottom:260.834700px;}
.y218{bottom:271.117350px;}
.y138{bottom:272.052750px;}
.ydd{bottom:272.421300px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y195{bottom:273.194850px;}
.y78{bottom:275.441700px;}
.y1b9{bottom:275.444850px;}
.y116{bottom:278.594850px;}
.y23b{bottom:279.366150px;}
.y1e4{bottom:280.553100px;}
.y1f9{bottom:281.075250px;}
.y168{bottom:284.084700px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yb7{bottom:287.179200px;}
.y77{bottom:293.441700px;}
.yf7{bottom:294.933000px;}
.y137{bottom:296.052750px;}
.ydc{bottom:296.421300px;}
.y194{bottom:296.444850px;}
.y1b8{bottom:299.444850px;}
.y1e3{bottom:301.553100px;}
.y115{bottom:302.594850px;}
.y23a{bottom:303.366150px;}
.y1f8{bottom:304.775250px;}
.y59{bottom:306.044700px;}
.y167{bottom:307.334700px;}
.y217{bottom:307.573200px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yf6{bottom:318.933000px;}
.y193{bottom:319.694850px;}
.y136{bottom:320.052750px;}
.ydb{bottom:320.421300px;}
.y58{bottom:322.244700px;}
.y1e2{bottom:322.553100px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y1b7{bottom:323.444850px;}
.y114{bottom:326.594850px;}
.y76{bottom:328.449600px;}
.y216{bottom:331.273200px;}
.y239{bottom:335.870100px;}
.y57{bottom:338.444700px;}
.y1f7{bottom:341.231100px;}
.yf5{bottom:342.933000px;}
.y1e1{bottom:343.553100px;}
.y135{bottom:344.052750px;}
.yb6{bottom:345.194850px;}
.y166{bottom:347.592450px;}
.yf{bottom:348.133500px;}
.y113{bottom:350.594850px;}
.y238{bottom:359.870100px;}
.y192{bottom:359.952750px;}
.yda{bottom:361.429200px;}
.y75{bottom:363.457500px;}
.y1b6{bottom:364.452750px;}
.y1f6{bottom:364.931100px;}
.y56{bottom:367.400550px;}
.y215{bottom:367.729200px;}
.y134{bottom:368.052750px;}
.y165{bottom:368.592450px;}
.yb5{bottom:369.194850px;}
.y1e0{bottom:378.959550px;}
.y74{bottom:381.457500px;}
.y191{bottom:383.202750px;}
.y55{bottom:383.600550px;}
.y237{bottom:383.870100px;}
.yf4{bottom:383.940900px;}
.ye{bottom:386.785499px;}
.y1b5{bottom:388.452750px;}
.y1f5{bottom:388.631100px;}
.y164{bottom:389.592450px;}
.y214{bottom:391.429200px;}
.y1dd{bottom:391.589700px;}
.y112{bottom:391.602750px;}
.yb4{bottom:393.194850px;}
.y1df{bottom:397.889700px;}
.yd9{bottom:402.437100px;}
.y1dc{bottom:404.189700px;}
.y190{bottom:406.452750px;}
.y236{bottom:407.870100px;}
.yf3{bottom:407.940900px;}
.yd{bottom:408.044999px;}
.y133{bottom:409.060650px;}
.y163{bottom:410.592450px;}
.y1b4{bottom:412.452750px;}
.y54{bottom:412.556550px;}
.y111{bottom:415.152750px;}
.y73{bottom:416.465400px;}
.y1de{bottom:416.819850px;}
.yb3{bottom:417.194850px;}
.y1f4{bottom:425.086950px;}
.yd8{bottom:426.437100px;}
.y213{bottom:427.885050px;}
.y53{bottom:428.756400px;}
.y18f{bottom:429.702750px;}
.y235{bottom:431.870100px;}
.yf2{bottom:431.940900px;}
.y132{bottom:433.060650px;}
.y1db{bottom:435.750000px;}
.y1b3{bottom:436.452750px;}
.y110{bottom:438.702750px;}
.y72{bottom:439.369200px;}
.y162{bottom:440.471550px;}
.y1f3{bottom:448.786950px;}
.yd7{bottom:450.437100px;}
.y15f{bottom:450.663000px;}
.y212{bottom:451.585050px;}
.y18e{bottom:452.952750px;}
.y1d9{bottom:454.680000px;}
.y234{bottom:455.870100px;}
.yf1{bottom:455.940900px;}
.y131{bottom:457.060650px;}
.y161{bottom:457.413000px;}
.y52{bottom:457.712400px;}
.yb2{bottom:458.202750px;}
.y1b2{bottom:460.452750px;}
.y10f{bottom:462.252750px;}
.y15e{bottom:464.163000px;}
.y1f2{bottom:472.486950px;}
.y1da{bottom:473.610150px;}
.y51{bottom:473.912400px;}
.y160{bottom:474.354450px;}
.yd6{bottom:474.437100px;}
.y18d{bottom:476.202750px;}
.y233{bottom:479.870100px;}
.yf0{bottom:479.940900px;}
.y130{bottom:481.060650px;}
.yb1{bottom:482.202750px;}
.y1b1{bottom:484.452750px;}
.y10e{bottom:485.802750px;}
.y211{bottom:488.040900px;}
.y15d{bottom:491.295750px;}
.y1d8{bottom:492.540300px;}
.y18c{bottom:499.452750px;}
.y99{bottom:499.990200px;}
.yc{bottom:502.864502px;}
.y50{bottom:502.868250px;}
.y232{bottom:503.870100px;}
.yef{bottom:503.940900px;}
.y12f{bottom:505.060650px;}
.yb0{bottom:506.202750px;}
.y15c{bottom:508.237200px;}
.y15a{bottom:508.237350px;}
.y10d{bottom:509.352750px;}
.y1d6{bottom:511.470450px;}
.y210{bottom:512.040900px;}
.y1f1{bottom:513.194850px;}
.yd5{bottom:515.444850px;}
.y4f{bottom:519.068250px;}
.yb{bottom:520.864502px;}
.y15b{bottom:525.178650px;}
.y1b0{bottom:525.460650px;}
.yee{bottom:527.940900px;}
.y12e{bottom:529.060650px;}
.yaf{bottom:530.202750px;}
.y1d7{bottom:530.400450px;}
.y10c{bottom:532.902750px;}
.y4e{bottom:535.268250px;}
.y231{bottom:536.374050px;}
.ya{bottom:538.864499px;}
.yd4{bottom:539.444850px;}
.y18b{bottom:539.710650px;}
.y98{bottom:540.998100px;}
.y159{bottom:542.120100px;}
.y20f{bottom:548.796900px;}
.y1d5{bottom:549.330600px;}
.y1af{bottom:549.460650px;}
.yae{bottom:554.202750px;}
.y10b{bottom:556.452750px;}
.y9{bottom:556.864499px;}
.y157{bottom:559.061550px;}
.y230{bottom:560.374050px;}
.y18a{bottom:562.960650px;}
.yd3{bottom:563.444850px;}
.y4d{bottom:564.224250px;}
.y97{bottom:564.998100px;}
.y1d3{bottom:568.260750px;}
.yed{bottom:568.948800px;}
.y12d{bottom:570.068550px;}
.y1f0{bottom:571.210650px;}
.y20e{bottom:572.496900px;}
.y1ae{bottom:573.460650px;}
.y28{bottom:575.167050px;}
.y158{bottom:576.003000px;}
.yad{bottom:578.202750px;}
.y4c{bottom:580.424250px;}
.y22f{bottom:584.374050px;}
.y189{bottom:586.210650px;}
.y1d4{bottom:587.190900px;}
.yd2{bottom:587.444850px;}
.y96{bottom:588.998100px;}
.y156{bottom:592.944450px;}
.y12c{bottom:594.068550px;}
.y1ef{bottom:595.210650px;}
.yec{bottom:595.948800px;}
.y4b{bottom:596.624250px;}
.y10a{bottom:597.010650px;}
.y1ad{bottom:597.460650px;}
.yac{bottom:602.202750px;}
.y1d2{bottom:606.121050px;}
.y22e{bottom:608.374050px;}
.y20d{bottom:608.952750px;}
.y188{bottom:609.460650px;}
.y154{bottom:609.885900px;}
.yd1{bottom:611.444850px;}
.y27{bottom:611.818950px;}
.y95{bottom:612.998100px;}
.y12b{bottom:618.068550px;}
.y1ee{bottom:619.210650px;}
.yeb{bottom:619.948800px;}
.y109{bottom:620.560650px;}
.y1ac{bottom:621.460650px;}
.y1d0{bottom:625.051050px;}
.y4a{bottom:625.580100px;}
.yab{bottom:626.202750px;}
.y155{bottom:626.827350px;}
.y7d{bottom:628.072650px;}
.y22d{bottom:632.374050px;}
.y20c{bottom:632.652750px;}
.y187{bottom:632.710650px;}
.y94{bottom:636.998100px;}
.y49{bottom:641.780100px;}
.y12a{bottom:642.068550px;}
.y1ed{bottom:643.210650px;}
.y153{bottom:643.768800px;}
.yea{bottom:643.948800px;}
.y1d1{bottom:643.981200px;}
.y108{bottom:644.110650px;}
.y1ab{bottom:645.460650px;}
.y8{bottom:645.510000px;}
.yaa{bottom:650.202750px;}
.yd0{bottom:652.452750px;}
.y22c{bottom:656.374050px;}
.y152{bottom:660.710100px;}
.y150{bottom:660.710250px;}
.y93{bottom:660.998100px;}
.y1cf{bottom:662.911350px;}
.y129{bottom:666.068550px;}
.y7{bottom:666.771000px;}
.y1ec{bottom:667.210650px;}
.y107{bottom:667.660650px;}
.ye9{bottom:667.948800px;}
.y20b{bottom:669.108600px;}
.y48{bottom:670.735950px;}
.y186{bottom:672.968550px;}
.ya9{bottom:674.202750px;}
.ycf{bottom:676.452750px;}
.y151{bottom:677.651700px;}
.y22b{bottom:680.374050px;}
.y1cd{bottom:681.841500px;}
.y92{bottom:684.998100px;}
.y1aa{bottom:686.468550px;}
.y47{bottom:686.935950px;}
.y128{bottom:690.068550px;}
.y1eb{bottom:691.210650px;}
.y20a{bottom:692.808600px;}
.y14f{bottom:694.593000px;}
.y185{bottom:696.218550px;}
.yce{bottom:700.452750px;}
.y1ce{bottom:700.771650px;}
.y46{bottom:703.135950px;}
.y22a{bottom:704.374050px;}
.y106{bottom:708.218550px;}
.y91{bottom:708.998100px;}
.y1a9{bottom:710.468550px;}
.y14e{bottom:711.534450px;}
.y14c{bottom:711.534600px;}
.y127{bottom:714.068550px;}
.ya8{bottom:715.210650px;}
.y209{bottom:716.508600px;}
.ye8{bottom:719.456700px;}
.y184{bottom:719.468550px;}
.y1cc{bottom:719.701650px;}
.ycd{bottom:724.452750px;}
.y6{bottom:726.298500px;}
.y71{bottom:727.369350px;}
.y229{bottom:728.374050px;}
.y14d{bottom:728.475900px;}
.y45{bottom:732.091950px;}
.y105{bottom:732.218550px;}
.y1a8{bottom:734.468550px;}
.y126{bottom:738.068550px;}
.y1ca{bottom:738.631800px;}
.ya7{bottom:739.210650px;}
.y30{bottom:740.168550px;}
.y208{bottom:740.208600px;}
.y70{bottom:741.769200px;}
.y183{bottom:742.718550px;}
.y14b{bottom:745.417350px;}
.y44{bottom:748.291950px;}
.y228{bottom:752.374050px;}
.y3{bottom:752.599495px;}
.y90{bottom:753.997950px;}
.y6f{bottom:756.169350px;}
.y104{bottom:756.218550px;}
.y1cb{bottom:757.561950px;}
.ye7{bottom:758.468550px;}
.y125{bottom:762.068550px;}
.y149{bottom:762.358800px;}
.ya6{bottom:763.210650px;}
.y207{bottom:763.908750px;}
.ycc{bottom:765.460650px;}
.y182{bottom:765.968550px;}
.y6e{bottom:770.569350px;}
.y2f{bottom:773.220450px;}
.y227{bottom:776.374050px;}
.y1c9{bottom:776.492100px;}
.y43{bottom:777.247800px;}
.y14a{bottom:779.300250px;}
.y103{bottom:780.218550px;}
.ye6{bottom:782.468550px;}
.y124{bottom:786.068550px;}
.ya5{bottom:787.210650px;}
.y206{bottom:787.608600px;}
.y181{bottom:789.218550px;}
.ycb{bottom:789.460650px;}
.y42{bottom:793.447800px;}
.y6d{bottom:793.473300px;}
.y1c8{bottom:795.422100px;}
.y1c6{bottom:795.422250px;}
.y148{bottom:796.241700px;}
.y226{bottom:800.374050px;}
.y102{bottom:804.218550px;}
.ye5{bottom:806.468550px;}
.ya4{bottom:811.210650px;}
.y180{bottom:812.468550px;}
.y146{bottom:813.183150px;}
.yca{bottom:813.460650px;}
.y1c7{bottom:814.352400px;}
.y8f{bottom:816.006000px;}
.y205{bottom:824.064450px;}
.y225{bottom:824.374050px;}
.y123{bottom:827.076450px;}
.y101{bottom:828.218550px;}
.y147{bottom:830.124600px;}
.ye4{bottom:830.468550px;}
.y1c5{bottom:833.282400px;}
.y6c{bottom:834.481050px;}
.ya3{bottom:835.210650px;}
.yc9{bottom:837.460650px;}
.y84{bottom:842.255400px;}
.y41{bottom:843.653850px;}
.y2e{bottom:844.540200px;}
.y145{bottom:847.066050px;}
.y204{bottom:847.764600px;}
.y26{bottom:848.580750px;}
.y122{bottom:850.626300px;}
.y1c3{bottom:852.212550px;}
.y100{bottom:852.218550px;}
.y17f{bottom:852.726450px;}
.ye3{bottom:854.468550px;}
.y224{bottom:856.878000px;}
.y8e{bottom:857.013750px;}
.ya2{bottom:859.210650px;}
.y6b{bottom:859.987650px;}
.yc8{bottom:861.460650px;}
.y143{bottom:864.007350px;}
.y40{bottom:867.653850px;}
.y1c4{bottom:871.142700px;}
.y121{bottom:874.176300px;}
.y17e{bottom:875.976450px;}
.yff{bottom:876.218550px;}
.y2d{bottom:876.940200px;}
.ye2{bottom:878.468550px;}
.y2{bottom:879.369000px;}
.y83{bottom:880.863300px;}
.y223{bottom:880.878000px;}
.y144{bottom:880.948950px;}
.y8d{bottom:881.013750px;}
.y203{bottom:884.220450px;}
.y25{bottom:884.580750px;}
.y6a{bottom:888.455550px;}
.y1c2{bottom:890.072700px;}
.y3f{bottom:891.653850px;}
.y1a7{bottom:895.476450px;}
.y120{bottom:897.726450px;}
.y142{bottom:897.890250px;}
.y17d{bottom:899.226450px;}
.ya1{bottom:900.218550px;}
.y69{bottom:901.055550px;}
.yc7{bottom:902.468550px;}
.y222{bottom:904.878000px;}
.y8c{bottom:905.013750px;}
.y202{bottom:907.920450px;}
.y1c0{bottom:909.003000px;}
.y2c{bottom:909.340200px;}
.y140{bottom:914.831700px;}
.y3e{bottom:915.653850px;}
.y82{bottom:919.471200px;}
.y1a6{bottom:919.476450px;}
.y24{bottom:920.580750px;}
.y11f{bottom:921.276450px;}
.y68{bottom:922.159500px;}
.y17c{bottom:922.476450px;}
.ya0{bottom:924.218550px;}
.yc6{bottom:926.468550px;}
.y1c1{bottom:927.933000px;}
.y8b{bottom:929.013750px;}
.y201{bottom:931.620450px;}
.y141{bottom:931.773150px;}
.y67{bottom:934.759500px;}
.y221{bottom:937.381950px;}
.y3d{bottom:939.653850px;}
.y2b{bottom:941.740200px;}
.ye1{bottom:943.476450px;}
.y11e{bottom:944.826450px;}
.y1bf{bottom:945.587550px;}
.y17b{bottom:945.726450px;}
.y9f{bottom:948.218550px;}
.y13f{bottom:948.714600px;}
.y8a{bottom:953.013750px;}
.y1be{bottom:953.776950px;}
.y66{bottom:955.863450px;}
.y23{bottom:956.580750px;}
.y13d{bottom:957.185250px;}
.y81{bottom:958.079100px;}
.y174{bottom:960.723000px;}
.y220{bottom:961.381950px;}
.y3c{bottom:963.653850px;}
.y13e{bottom:965.656050px;}
.y1{bottom:966.726000px;}
.yc5{bottom:967.476450px;}
.y200{bottom:968.076450px;}
.y11d{bottom:968.376300px;}
.y65{bottom:968.463450px;}
.y17a{bottom:968.976450px;}
.y9e{bottom:972.218550px;}
.y89{bottom:977.013750px;}
.y64{bottom:981.063450px;}
.y21f{bottom:985.381950px;}
.y3b{bottom:987.653850px;}
.yc4{bottom:991.476450px;}
.y1ff{bottom:991.776450px;}
.y11c{bottom:991.926300px;}
.y179{bottom:992.226450px;}
.y63{bottom:993.663450px;}
.y80{bottom:996.686850px;}
.y88{bottom:1001.013750px;}
.y9d{bottom:1013.226450px;}
.y62{bottom:1014.767400px;}
.yc3{bottom:1015.476450px;}
.y21e{bottom:1017.885900px;}
.y87{bottom:1025.013750px;}
.y7f{bottom:1035.294750px;}
.y21d{bottom:1041.885900px;}
.y61{bottom:1047.580500px;}
.y86{bottom:1049.013750px;}
.y2a{bottom:1059.354300px;}
.y247{bottom:1068.967350px;}
.y22{bottom:1070.834700px;}
.y7e{bottom:1073.902650px;}
.y29{bottom:1083.354300px;}
.y60{bottom:1086.979800px;}
.y21c{bottom:1087.145700px;}
.y246{bottom:1092.367350px;}
.y85{bottom:1094.013750px;}
.ybf{bottom:1096.191000px;}
.y5f{bottom:1104.979800px;}
.y9a{bottom:1110.857550px;}
.yc1{bottom:1112.310750px;}
.y245{bottom:1115.767350px;}
.y5e{bottom:1122.979800px;}
.y3a{bottom:1127.437800px;}
.y21b{bottom:1132.405500px;}
.y244{bottom:1139.167350px;}
.y39{bottom:1149.937800px;}
.y5d{bottom:1157.987700px;}
.y9c{bottom:1185.292350px;}
.y5c{bottom:1187.842800px;}
.y38{bottom:1194.271650px;}
.h1b{height:31.930664px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h1a{height:33.468750px;}
.h22{height:38.081742px;}
.h1c{height:38.103516px;}
.h26{height:40.825195px;}
.h19{height:43.546875px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h15{height:48.726562px;}
.h16{height:48.752930px;}
.h2b{height:50.176758px;}
.h2c{height:50.242526px;}
.h11{height:54.433594px;}
.h2{height:55.152000px;}
.h2d{height:58.500000px;}
.h13{height:59.554688px;}
.h2a{height:59.586914px;}
.h14{height:59.876953px;}
.h12{height:64.968750px;}
.h25{height:65.003906px;}
.h1d{height:65.320312px;}
.h29{height:70.861716px;}
.h28{height:73.111716px;}
.h1e{height:75.796875px;}
.h5{height:78.132000px;}
.h27{height:78.554475px;}
.h10{height:86.671875px;}
.he{height:87.093750px;}
.hd{height:97.453125px;}
.hf{height:97.505859px;}
.h17{height:101.078366px;}
.h1f{height:104.483820px;}
.h24{height:104.897100px;}
.hc{height:108.281250px;}
.h20{height:109.968750px;}
.h18{height:111.185931px;}
.h4{height:119.055004px;}
.h21{height:135.351562px;}
.h23{height:166.644000px;}
.hb{height:389.812500px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:1.059000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x25{left:-409.083600px;}
.x0{left:0.000000px;}
.x21{left:54.030450px;}
.x13{left:59.542050px;}
.x26{left:92.399550px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x31{left:110.926200px;}
.x2c{left:113.305800px;}
.x7a{left:114.803250px;}
.x36{left:119.799150px;}
.x1f{left:139.668300px;}
.x22{left:140.684100px;}
.x37{left:143.799150px;}
.x29{left:148.818900px;}
.x2a{left:174.330750px;}
.x35{left:178.071300px;}
.x5a{left:182.060850px;}
.x38{left:183.186000px;}
.x1d{left:184.721550px;}
.x32{left:187.251600px;}
.x7d{left:188.691000px;}
.x5b{left:190.250250px;}
.x39{left:191.937900px;}
.x4{left:203.484001px;}
.x5d{left:207.804450px;}
.x3b{left:209.441850px;}
.x2e{left:217.523550px;}
.x5c{left:225.033750px;}
.x3a{left:226.945800px;}
.x34{left:233.702250px;}
.x7b{left:239.059500px;}
.x5e{left:242.263050px;}
.x3c{left:244.449750px;}
.x12{left:259.369950px;}
.xa{left:261.728550px;}
.x2b{left:263.270250px;}
.x1e{left:271.591950px;}
.x5f{left:276.721800px;}
.x8{left:280.176750px;}
.x7{left:288.277350px;}
.x60{left:293.951100px;}
.x3d{left:296.961600px;}
.x62{left:311.180400px;}
.x3f{left:314.465550px;}
.x11{left:322.323150px;}
.x61{left:328.409700px;}
.x3e{left:331.969500px;}
.xf{left:341.846550px;}
.x63{left:345.639000px;}
.x40{left:349.473450px;}
.x65{left:362.868300px;}
.x42{left:366.977400px;}
.xe{left:369.914400px;}
.xb{left:375.555600px;}
.x64{left:380.097750px;}
.x41{left:384.481350px;}
.x6{left:396.368100px;}
.x43{left:401.985300px;}
.x67{left:414.556350px;}
.x44{left:419.489250px;}
.xd{left:422.055600px;}
.x30{left:426.758100px;}
.x2f{left:428.210850px;}
.x66{left:431.785650px;}
.x27{left:436.318050px;}
.x20{left:437.770800px;}
.x68{left:449.015100px;}
.x7e{left:451.988550px;}
.x3{left:454.959000px;}
.x33{left:459.405000px;}
.x69{left:466.244250px;}
.x16{left:471.968400px;}
.x19{left:476.220450px;}
.x18{left:481.389750px;}
.x1c{left:482.733900px;}
.x1a{left:484.724250px;}
.x45{left:489.504900px;}
.x17{left:491.489700px;}
.x6a{left:500.703000px;}
.x2d{left:504.157500px;}
.x46{left:507.009000px;}
.x6c{left:517.932150px;}
.x48{left:524.512800px;}
.x6b{left:535.161600px;}
.x47{left:542.016750px;}
.x5{left:543.198150px;}
.x23{left:544.603500px;}
.x24{left:550.526700px;}
.x6d{left:552.390900px;}
.x49{left:559.520700px;}
.x9{left:562.525350px;}
.x6e{left:569.620200px;}
.xc{left:571.668900px;}
.x4b{left:577.024650px;}
.x15{left:581.246700px;}
.x14{left:586.237050px;}
.x10{left:592.427100px;}
.x4a{left:594.528600px;}
.x6f{left:604.078800px;}
.x4c{left:612.032550px;}
.x71{left:621.308100px;}
.x4e{left:629.536500px;}
.x70{left:638.537550px;}
.x4d{left:647.040450px;}
.x72{left:655.766850px;}
.x4f{left:664.544400px;}
.x58{left:669.504750px;}
.x75{left:672.996150px;}
.x59{left:675.425550px;}
.x7c{left:679.428300px;}
.x52{left:682.048350px;}
.x73{left:683.925450px;}
.x76{left:690.225450px;}
.x50{left:692.352150px;}
.x74{left:696.525450px;}
.x53{left:699.552300px;}
.x51{left:706.752300px;}
.x54{left:717.056100px;}
.x28{left:723.172200px;}
.x77{left:742.010850px;}
.x55{left:751.187100px;}
.x78{left:763.010850px;}
.x56{left:772.187100px;}
.x1b{left:780.647700px;}
.x79{left:784.010700px;}
.x57{left:793.187100px;}
@media print{
.v3{vertical-align:-30.118400pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.312000pt;}
.v1{vertical-align:28.416000pt;}
.v4{vertical-align:31.117867pt;}
.ls46{letter-spacing:-2.560000pt;}
.ls44{letter-spacing:-2.240000pt;}
.ls45{letter-spacing:-2.112000pt;}
.ls13{letter-spacing:-1.536000pt;}
.ls39{letter-spacing:-1.472000pt;}
.ls3b{letter-spacing:-1.408000pt;}
.ls38{letter-spacing:-1.344000pt;}
.ls3a{letter-spacing:-1.280000pt;}
.ls2f{letter-spacing:-1.088000pt;}
.ls2d{letter-spacing:-1.024000pt;}
.ls2c{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.896000pt;}
.ls34{letter-spacing:-0.832000pt;}
.ls33{letter-spacing:-0.800000pt;}
.ls23{letter-spacing:-0.768000pt;}
.ls36{letter-spacing:-0.725333pt;}
.ls22{letter-spacing:-0.704000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.560000pt;}
.ls24{letter-spacing:-0.448000pt;}
.ls11{letter-spacing:-0.426667pt;}
.ls1a{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.256000pt;}
.ls27{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.186667pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.058667pt;}
.ls37{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053333pt;}
.ls17{letter-spacing:0.064000pt;}
.ls18{letter-spacing:0.128000pt;}
.ls32{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.266667pt;}
.ls29{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.347686pt;}
.ls1c{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.405333pt;}
.lsb{letter-spacing:0.426667pt;}
.ls26{letter-spacing:0.448000pt;}
.ls2e{letter-spacing:0.512000pt;}
.ls1e{letter-spacing:0.533333pt;}
.ls28{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.586667pt;}
.ls25{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.746667pt;}
.lsa{letter-spacing:1.680000pt;}
.ls48{letter-spacing:1.909840pt;}
.ls12{letter-spacing:2.240000pt;}
.ls8{letter-spacing:2.405333pt;}
.ls14{letter-spacing:2.613333pt;}
.ls3{letter-spacing:2.986667pt;}
.ls2{letter-spacing:3.360000pt;}
.ls1{letter-spacing:3.733333pt;}
.ls30{letter-spacing:5.440000pt;}
.ls1f{letter-spacing:33.333333pt;}
.ls3f{letter-spacing:93.656533pt;}
.ls42{letter-spacing:93.657067pt;}
.ls41{letter-spacing:93.793067pt;}
.ls31{letter-spacing:93.816533pt;}
.ls3d{letter-spacing:104.138667pt;}
.ls3e{letter-spacing:104.139200pt;}
.ls43{letter-spacing:104.274667pt;}
.ls40{letter-spacing:104.410667pt;}
.ls35{letter-spacing:133.272000pt;}
.ls3c{letter-spacing:153.595733pt;}
.ws92{word-spacing:-162.854400pt;}
.ws6c{word-spacing:-143.853333pt;}
.wsd8{word-spacing:-113.397333pt;}
.ws5a{word-spacing:-103.736533pt;}
.ws1d{word-spacing:-94.080000pt;}
.ws34{word-spacing:-33.333333pt;}
.ws1{word-spacing:-30.293333pt;}
.ws4{word-spacing:-27.264000pt;}
.ws3c{word-spacing:-21.722255pt;}
.ws32{word-spacing:-21.636663pt;}
.ws26{word-spacing:-21.205333pt;}
.ws1e{word-spacing:-18.112000pt;}
.ws3d{word-spacing:-16.128000pt;}
.wsdb{word-spacing:-16.000000pt;}
.ws27{word-spacing:-15.936000pt;}
.wsb7{word-spacing:-15.872000pt;}
.wsb9{word-spacing:-15.808000pt;}
.wsb8{word-spacing:-15.680000pt;}
.wsdc{word-spacing:-15.552000pt;}
.ws33{word-spacing:-15.360000pt;}
.wsdd{word-spacing:-14.608000pt;}
.ws24{word-spacing:-13.696000pt;}
.ws54{word-spacing:-13.226667pt;}
.ws5{word-spacing:-13.066667pt;}
.ws23{word-spacing:-12.416000pt;}
.ws9{word-spacing:-11.050667pt;}
.wsa{word-spacing:-10.624000pt;}
.ws6f{word-spacing:-10.581333pt;}
.ws58{word-spacing:-9.920000pt;}
.ws6a{word-spacing:-9.856000pt;}
.ws94{word-spacing:-9.258667pt;}
.ws3e{word-spacing:-9.253376pt;}
.ws21{word-spacing:-6.784000pt;}
.wsd{word-spacing:-3.637333pt;}
.ws25{word-spacing:-2.752000pt;}
.ws10{word-spacing:-2.581333pt;}
.ws22{word-spacing:-2.304000pt;}
.ws1f{word-spacing:-2.240000pt;}
.ws2{word-spacing:-1.813333pt;}
.ws37{word-spacing:-1.664000pt;}
.ws3{word-spacing:-1.632000pt;}
.ws28{word-spacing:-1.600000pt;}
.ws3f{word-spacing:-1.536000pt;}
.wsda{word-spacing:-1.472000pt;}
.ws6{word-spacing:-1.450667pt;}
.wse{word-spacing:-1.408000pt;}
.ws67{word-spacing:-1.344000pt;}
.ws7{word-spacing:-1.333333pt;}
.ws56{word-spacing:-1.280000pt;}
.ws35{word-spacing:-1.269333pt;}
.ws39{word-spacing:-1.216000pt;}
.ws8e{word-spacing:-1.173333pt;}
.ws13{word-spacing:-1.152000pt;}
.wsb{word-spacing:-1.114667pt;}
.ws20{word-spacing:-1.088000pt;}
.ws30{word-spacing:-1.024000pt;}
.wsba{word-spacing:-0.960000pt;}
.ws49{word-spacing:-0.896000pt;}
.ws11{word-spacing:-0.816000pt;}
.ws52{word-spacing:-0.768000pt;}
.ws51{word-spacing:-0.704000pt;}
.ws40{word-spacing:-0.640000pt;}
.ws3a{word-spacing:-0.576000pt;}
.ws55{word-spacing:-0.512000pt;}
.ws41{word-spacing:-0.448000pt;}
.ws1b{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.384000pt;}
.ws47{word-spacing:-0.320000pt;}
.ws2b{word-spacing:-0.256000pt;}
.ws45{word-spacing:-0.213333pt;}
.wsbb{word-spacing:-0.192000pt;}
.wsf{word-spacing:-0.176000pt;}
.ws66{word-spacing:-0.160000pt;}
.ws48{word-spacing:-0.128000pt;}
.ws3b{word-spacing:-0.102463pt;}
.ws31{word-spacing:-0.102060pt;}
.ws2a{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.053333pt;}
.ws53{word-spacing:0.064000pt;}
.ws12{word-spacing:0.128000pt;}
.ws50{word-spacing:0.192000pt;}
.ws42{word-spacing:0.256000pt;}
.ws36{word-spacing:0.320000pt;}
.ws2d{word-spacing:0.384000pt;}
.ws1c{word-spacing:0.426667pt;}
.ws38{word-spacing:0.448000pt;}
.ws43{word-spacing:0.512000pt;}
.ws4b{word-spacing:0.576000pt;}
.ws19{word-spacing:0.640000pt;}
.ws2e{word-spacing:0.704000pt;}
.ws4c{word-spacing:0.768000pt;}
.ws65{word-spacing:0.800000pt;}
.ws57{word-spacing:0.896000pt;}
.ws4d{word-spacing:0.960000pt;}
.ws4f{word-spacing:1.024000pt;}
.wsbc{word-spacing:1.152000pt;}
.ws46{word-spacing:1.280000pt;}
.ws18{word-spacing:1.322667pt;}
.ws8{word-spacing:1.333333pt;}
.ws8b{word-spacing:1.344000pt;}
.ws8d{word-spacing:1.408000pt;}
.ws8c{word-spacing:1.472000pt;}
.ws2f{word-spacing:1.536000pt;}
.ws29{word-spacing:1.600000pt;}
.ws17{word-spacing:1.706667pt;}
.wsd9{word-spacing:2.112000pt;}
.ws1a{word-spacing:3.626667pt;}
.ws15{word-spacing:5.488000pt;}
.ws16{word-spacing:6.645333pt;}
.wsc{word-spacing:7.274667pt;}
.ws14{word-spacing:16.613333pt;}
.ws62{word-spacing:31.096533pt;}
.ws5f{word-spacing:42.327467pt;}
.ws61{word-spacing:42.345600pt;}
.ws64{word-spacing:42.346133pt;}
.ws88{word-spacing:48.500800pt;}
.ws7d{word-spacing:50.204800pt;}
.ws5c{word-spacing:51.374933pt;}
.wsb4{word-spacing:52.601067pt;}
.ws97{word-spacing:52.601600pt;}
.wsa1{word-spacing:52.602133pt;}
.wscb{word-spacing:52.917333pt;}
.wsd3{word-spacing:52.917867pt;}
.ws9d{word-spacing:53.010133pt;}
.wsd5{word-spacing:53.053333pt;}
.ws5d{word-spacing:53.576533pt;}
.ws5e{word-spacing:53.577067pt;}
.wscf{word-spacing:53.841600pt;}
.ws7c{word-spacing:54.371200pt;}
.ws7b{word-spacing:54.390933pt;}
.ws89{word-spacing:54.391467pt;}
.ws73{word-spacing:54.594133pt;}
.ws75{word-spacing:54.594667pt;}
.ws70{word-spacing:56.090667pt;}
.ws80{word-spacing:56.409600pt;}
.ws63{word-spacing:59.552000pt;}
.ws76{word-spacing:60.479467pt;}
.ws7a{word-spacing:60.480000pt;}
.ws79{word-spacing:60.484800pt;}
.ws72{word-spacing:60.485333pt;}
.ws5b{word-spacing:61.416533pt;}
.ws77{word-spacing:62.300267pt;}
.wsb2{word-spacing:62.362667pt;}
.wsa3{word-spacing:62.363200pt;}
.ws9f{word-spacing:62.363733pt;}
.wsae{word-spacing:62.376000pt;}
.wsa0{word-spacing:62.376533pt;}
.wsb3{word-spacing:62.377067pt;}
.ws85{word-spacing:62.503467pt;}
.wsa8{word-spacing:62.505600pt;}
.wsb5{word-spacing:62.621867pt;}
.wsab{word-spacing:62.634667pt;}
.wsa7{word-spacing:62.771733pt;}
.wsd0{word-spacing:63.398933pt;}
.wsc7{word-spacing:63.399467pt;}
.wsca{word-spacing:63.416533pt;}
.wsc2{word-spacing:63.417067pt;}
.wsd4{word-spacing:63.553067pt;}
.wsd1{word-spacing:63.671467pt;}
.wsc8{word-spacing:64.323733pt;}
.ws9e{word-spacing:65.401067pt;}
.wsad{word-spacing:65.401600pt;}
.wsb1{word-spacing:65.402133pt;}
.ws9a{word-spacing:65.434667pt;}
.wsa5{word-spacing:65.435200pt;}
.ws96{word-spacing:65.530667pt;}
.wsb0{word-spacing:65.564267pt;}
.wsa2{word-spacing:65.843200pt;}
.ws95{word-spacing:65.843733pt;}
.ws71{word-spacing:66.370133pt;}
.ws74{word-spacing:66.370667pt;}
.ws81{word-spacing:68.388800pt;}
.ws83{word-spacing:68.394133pt;}
.ws60{word-spacing:70.801600pt;}
.wsa6{word-spacing:72.137600pt;}
.ws99{word-spacing:72.138133pt;}
.ws9b{word-spacing:72.138667pt;}
.wsac{word-spacing:72.396800pt;}
.wsd2{word-spacing:73.881067pt;}
.wsbf{word-spacing:73.898667pt;}
.wsc4{word-spacing:73.899200pt;}
.wsc9{word-spacing:74.034667pt;}
.wscc{word-spacing:74.170667pt;}
.ws82{word-spacing:74.279467pt;}
.wsc0{word-spacing:74.805333pt;}
.ws9c{word-spacing:75.162667pt;}
.ws98{word-spacing:75.163200pt;}
.wsaf{word-spacing:75.163733pt;}
.wsa9{word-spacing:75.209600pt;}
.wsa4{word-spacing:75.210133pt;}
.wsb6{word-spacing:75.292267pt;}
.wsaa{word-spacing:78.235200pt;}
.wsc3{word-spacing:82.612267pt;}
.wsc1{word-spacing:84.380267pt;}
.wsc5{word-spacing:84.380800pt;}
.wsd7{word-spacing:84.397867pt;}
.wsc6{word-spacing:84.398400pt;}
.wscd{word-spacing:84.516267pt;}
.wsd6{word-spacing:84.534400pt;}
.wsce{word-spacing:84.652267pt;}
.wsbe{word-spacing:94.880000pt;}
.ws6d{word-spacing:98.711467pt;}
.ws6e{word-spacing:98.712000pt;}
.ws78{word-spacing:100.179733pt;}
.ws84{word-spacing:106.288533pt;}
.ws7f{word-spacing:112.179200pt;}
.ws87{word-spacing:112.382400pt;}
.ws86{word-spacing:118.267733pt;}
.ws6b{word-spacing:122.690133pt;}
.ws93{word-spacing:123.355733pt;}
.ws7e{word-spacing:124.158400pt;}
.ws68{word-spacing:131.541333pt;}
.ws8f{word-spacing:132.425067pt;}
.ws91{word-spacing:144.337067pt;}
.wsbd{word-spacing:201.210133pt;}
.ws4e{word-spacing:206.464000pt;}
.ws59{word-spacing:860.824800pt;}
.ws4a{word-spacing:908.416000pt;}
.ws69{word-spacing:1189.954133pt;}
.ws90{word-spacing:1348.904000pt;}
.ws44{word-spacing:1764.864000pt;}
._8{margin-left:-1891.893333pt;}
._9{margin-left:-1486.741333pt;}
._4{margin-left:-28.704000pt;}
._d{margin-left:-26.296533pt;}
._b{margin-left:-23.572364pt;}
._19{margin-left:-15.844983pt;}
._2b{margin-left:-13.440000pt;}
._c{margin-left:-12.112533pt;}
._3{margin-left:-9.098667pt;}
._a{margin-left:-7.850667pt;}
._2{margin-left:-6.186667pt;}
._7{margin-left:-4.842667pt;}
._0{margin-left:-3.925333pt;}
._6{margin-left:-2.453333pt;}
._1{margin-left:-1.482667pt;}
._5{width:1.141333pt;}
._f{width:2.737067pt;}
._e{width:4.100267pt;}
._10{width:5.353600pt;}
._14{width:8.884758pt;}
._16{width:10.616533pt;}
._12{width:11.873067pt;}
._1d{width:12.821279pt;}
._18{width:20.084235pt;}
._11{width:21.326933pt;}
._1f{width:22.226359pt;}
._1b{width:24.425067pt;}
._17{width:44.966313pt;}
._26{width:45.975514pt;}
._27{width:51.961882pt;}
._1a{width:53.630400pt;}
._2a{width:61.294933pt;}
._13{width:63.309877pt;}
._34{width:64.512847pt;}
._15{width:65.838620pt;}
._20{width:70.088562pt;}
._2f{width:71.061333pt;}
._39{width:72.521600pt;}
._43{width:73.554133pt;}
._38{width:74.507200pt;}
._2e{width:76.952533pt;}
._32{width:78.974400pt;}
._29{width:80.722667pt;}
._3b{width:81.693333pt;}
._28{width:82.587200pt;}
._3a{width:83.816533pt;}
._30{width:84.860800pt;}
._3c{width:87.308267pt;}
._37{width:88.296533pt;}
._41{width:92.189867pt;}
._40{width:93.094933pt;}
._3e{width:94.065600pt;}
._42{width:102.622400pt;}
._3f{width:104.410667pt;}
._2d{width:121.293333pt;}
._31{width:122.760533pt;}
._33{width:134.739200pt;}
._36{width:143.502400pt;}
._21{width:206.075041pt;}
._24{width:216.615942pt;}
._23{width:219.873872pt;}
._1e{width:229.727949pt;}
._1c{width:230.633067pt;}
._22{width:344.810297pt;}
._3d{width:966.208533pt;}
._2c{width:1198.732267pt;}
._35{width:1351.578133pt;}
._25{width:1498.752000pt;}
.fs15{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fs18{font-size:40.000000pt;}
.fsf{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs9{font-size:49.749333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs19{font-size:69.333333pt;}
.fs10{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fsc{font-size:99.516800pt;}
.fsd{font-size:99.517333pt;}
.fs11{font-size:102.059733pt;}
.fs16{font-size:102.463467pt;}
.fs6{font-size:106.666667pt;}
.fse{font-size:109.468800pt;}
.fs13{font-size:122.666667pt;}
.fs12{font-size:132.677867pt;}
.fs17{font-size:133.202667pt;}
.fs14{font-size:133.333333pt;}
.fs5{font-size:384.000000pt;}
.y0{bottom:0.000000pt;}
.yc0{bottom:13.036933pt;}
.yc2{bottom:23.593200pt;}
.y9b{bottom:25.000000pt;}
.y243{bottom:47.422667pt;}
.y5{bottom:59.133337pt;}
.y37{bottom:64.252000pt;}
.y242{bottom:68.756000pt;}
.y19e{bottom:68.778000pt;}
.y170{bottom:72.068267pt;}
.y13c{bottom:72.639467pt;}
.ybe{bottom:75.590667pt;}
.y173{bottom:79.370133pt;}
.y1a3{bottom:79.703067pt;}
.y1a1{bottom:79.703200pt;}
.y19f{bottom:79.703333pt;}
.y36{bottom:80.252000pt;}
.yfe{bottom:82.593200pt;}
.y19d{bottom:84.378000pt;}
.y4{bottom:86.333337pt;}
.y241{bottom:90.089333pt;}
.ybd{bottom:91.590667pt;}
.y13b{bottom:92.419067pt;}
.y16f{bottom:92.734933pt;}
.y35{bottom:96.252000pt;}
.y19c{bottom:99.978000pt;}
.yfd{bottom:103.926533pt;}
.y1a4{bottom:105.826267pt;}
.y172{bottom:105.826800pt;}
.y177{bottom:105.826933pt;}
.y171{bottom:106.108000pt;}
.y1ea{bottom:106.262400pt;}
.y240{bottom:111.422667pt;}
.y16e{bottom:113.401600pt;}
.y19b{bottom:115.578000pt;}
.y34{bottom:116.031733pt;}
.y1fe{bottom:121.834133pt;}
.y21{bottom:123.790666pt;}
.yfc{bottom:125.259867pt;}
.y11b{bottom:126.655067pt;}
.y1e9{bottom:127.595733pt;}
.y19a{bottom:131.178000pt;}
.y33{bottom:132.031733pt;}
.y16d{bottom:134.068267pt;}
.y1a5{bottom:139.387467pt;}
.y178{bottom:139.388133pt;}
.y1fd{bottom:142.900800pt;}
.y1a2{bottom:143.128533pt;}
.yfb{bottom:146.593200pt;}
.y199{bottom:146.778000pt;}
.y176{bottom:146.905867pt;}
.y11a{bottom:147.588400pt;}
.y23f{bottom:147.874000pt;}
.y32{bottom:148.031733pt;}
.y1e8{bottom:148.929067pt;}
.y16c{bottom:154.734933pt;}
.ybb{bottom:154.818933pt;}
.y1bd{bottom:159.506533pt;}
.ybc{bottom:160.146933pt;}
.ye0{bottom:163.034133pt;}
.y31{bottom:164.031733pt;}
.y7c{bottom:165.718933pt;}
.yfa{bottom:167.926533pt;}
.y23e{bottom:169.207333pt;}
.y1e7{bottom:170.262400pt;}
.y18{bottom:175.052000pt;}
.y1fc{bottom:175.306133pt;}
.y16b{bottom:175.401600pt;}
.yba{bottom:176.152267pt;}
.y1bc{bottom:180.839867pt;}
.y7b{bottom:181.718933pt;}
.y119{bottom:183.639867pt;}
.ydf{bottom:184.367467pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y5b{bottom:186.546800pt;}
.yf9{bottom:189.259867pt;}
.y1a0{bottom:191.147867pt;}
.y1e6{bottom:191.595733pt;}
.y175{bottom:194.588933pt;}
.y1fb{bottom:196.372667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.yb9{bottom:197.485600pt;}
.y23d{bottom:198.099733pt;}
.y21a{bottom:198.859867pt;}
.y13a{bottom:199.158000pt;}
.y198{bottom:200.173200pt;}
.y5a{bottom:200.946800pt;}
.y1bb{bottom:202.173200pt;}
.y118{bottom:204.973200pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y16a{bottom:211.186400pt;}
.y7a{bottom:212.837067pt;}
.y1e5{bottom:212.929067pt;}
.yb8{bottom:218.818933pt;}
.y23c{bottom:219.433067pt;}
.y219{bottom:219.926533pt;}
.y139{bottom:220.491333pt;}
.yde{bottom:220.818933pt;}
.y196{bottom:221.506533pt;}
.y1ba{bottom:223.506533pt;}
.yf8{bottom:225.711200pt;}
.y117{bottom:226.306533pt;}
.y197{bottom:226.834533pt;}
.y1fa{bottom:228.777867pt;}
.y79{bottom:228.837067pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y169{bottom:231.853067pt;}
.y218{bottom:240.993200pt;}
.y138{bottom:241.824667pt;}
.ydd{bottom:242.152267pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y195{bottom:242.839867pt;}
.y78{bottom:244.837067pt;}
.y1b9{bottom:244.839867pt;}
.y116{bottom:247.639867pt;}
.y23b{bottom:248.325467pt;}
.y1e4{bottom:249.380533pt;}
.y1f9{bottom:249.844667pt;}
.y168{bottom:252.519733pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yb7{bottom:255.270400pt;}
.y77{bottom:260.837067pt;}
.yf7{bottom:262.162667pt;}
.y137{bottom:263.158000pt;}
.ydc{bottom:263.485600pt;}
.y194{bottom:263.506533pt;}
.y1b8{bottom:266.173200pt;}
.y1e3{bottom:268.047200pt;}
.y115{bottom:268.973200pt;}
.y23a{bottom:269.658800pt;}
.y1f8{bottom:270.911333pt;}
.y59{bottom:272.039733pt;}
.y167{bottom:273.186400pt;}
.y217{bottom:273.398400pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yf6{bottom:283.496000pt;}
.y193{bottom:284.173200pt;}
.y136{bottom:284.491333pt;}
.ydb{bottom:284.818933pt;}
.y58{bottom:286.439733pt;}
.y1e2{bottom:286.713867pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y1b7{bottom:287.506533pt;}
.y114{bottom:290.306533pt;}
.y76{bottom:291.955200pt;}
.y216{bottom:294.465067pt;}
.y239{bottom:298.551200pt;}
.y57{bottom:300.839733pt;}
.y1f7{bottom:303.316533pt;}
.yf5{bottom:304.829333pt;}
.y1e1{bottom:305.380533pt;}
.y135{bottom:305.824667pt;}
.yb6{bottom:306.839867pt;}
.y166{bottom:308.971067pt;}
.yf{bottom:309.452000pt;}
.y113{bottom:311.639867pt;}
.y238{bottom:319.884533pt;}
.y192{bottom:319.958000pt;}
.yda{bottom:321.270400pt;}
.y75{bottom:323.073333pt;}
.y1b6{bottom:323.958000pt;}
.y1f6{bottom:324.383200pt;}
.y56{bottom:326.578267pt;}
.y215{bottom:326.870400pt;}
.y134{bottom:327.158000pt;}
.y165{bottom:327.637733pt;}
.yb5{bottom:328.173200pt;}
.y1e0{bottom:336.852933pt;}
.y74{bottom:339.073333pt;}
.y191{bottom:340.624667pt;}
.y55{bottom:340.978267pt;}
.y237{bottom:341.217867pt;}
.yf4{bottom:341.280800pt;}
.ye{bottom:343.809333pt;}
.y1b5{bottom:345.291333pt;}
.y1f5{bottom:345.449867pt;}
.y164{bottom:346.304400pt;}
.y214{bottom:347.937067pt;}
.y1dd{bottom:348.079733pt;}
.y112{bottom:348.091333pt;}
.yb4{bottom:349.506533pt;}
.y1df{bottom:353.679733pt;}
.yd9{bottom:357.721867pt;}
.y1dc{bottom:359.279733pt;}
.y190{bottom:361.291333pt;}
.y236{bottom:362.551200pt;}
.yf3{bottom:362.614133pt;}
.yd{bottom:362.706666pt;}
.y133{bottom:363.609467pt;}
.y163{bottom:364.971067pt;}
.y1b4{bottom:366.624667pt;}
.y54{bottom:366.716933pt;}
.y111{bottom:369.024667pt;}
.y73{bottom:370.191467pt;}
.y1de{bottom:370.506533pt;}
.yb3{bottom:370.839867pt;}
.y1f4{bottom:377.855067pt;}
.yd8{bottom:379.055200pt;}
.y213{bottom:380.342267pt;}
.y53{bottom:381.116800pt;}
.y18f{bottom:381.958000pt;}
.y235{bottom:383.884533pt;}
.yf2{bottom:383.947467pt;}
.y132{bottom:384.942800pt;}
.y1db{bottom:387.333333pt;}
.y1b3{bottom:387.958000pt;}
.y110{bottom:389.958000pt;}
.y72{bottom:390.550400pt;}
.y162{bottom:391.530267pt;}
.y1f3{bottom:398.921733pt;}
.yd7{bottom:400.388533pt;}
.y15f{bottom:400.589333pt;}
.y212{bottom:401.408933pt;}
.y18e{bottom:402.624667pt;}
.y1d9{bottom:404.160000pt;}
.y234{bottom:405.217867pt;}
.yf1{bottom:405.280800pt;}
.y131{bottom:406.276133pt;}
.y161{bottom:406.589333pt;}
.y52{bottom:406.855467pt;}
.yb2{bottom:407.291333pt;}
.y1b2{bottom:409.291333pt;}
.y10f{bottom:410.891333pt;}
.y15e{bottom:412.589333pt;}
.y1f2{bottom:419.988400pt;}
.y1da{bottom:420.986800pt;}
.y51{bottom:421.255467pt;}
.y160{bottom:421.648400pt;}
.yd6{bottom:421.721867pt;}
.y18d{bottom:423.291333pt;}
.y233{bottom:426.551200pt;}
.yf0{bottom:426.614133pt;}
.y130{bottom:427.609467pt;}
.yb1{bottom:428.624667pt;}
.y1b1{bottom:430.624667pt;}
.y10e{bottom:431.824667pt;}
.y211{bottom:433.814133pt;}
.y15d{bottom:436.707333pt;}
.y1d8{bottom:437.813600pt;}
.y18c{bottom:443.958000pt;}
.y99{bottom:444.435733pt;}
.yc{bottom:446.990669pt;}
.y50{bottom:446.994000pt;}
.y232{bottom:447.884533pt;}
.yef{bottom:447.947467pt;}
.y12f{bottom:448.942800pt;}
.yb0{bottom:449.958000pt;}
.y15c{bottom:451.766400pt;}
.y15a{bottom:451.766533pt;}
.y10d{bottom:452.758000pt;}
.y1d6{bottom:454.640400pt;}
.y210{bottom:455.147467pt;}
.y1f1{bottom:456.173200pt;}
.yd5{bottom:458.173200pt;}
.y4f{bottom:461.394000pt;}
.yb{bottom:462.990669pt;}
.y15b{bottom:466.825467pt;}
.y1b0{bottom:467.076133pt;}
.yee{bottom:469.280800pt;}
.y12e{bottom:470.276133pt;}
.yaf{bottom:471.291333pt;}
.y1d7{bottom:471.467067pt;}
.y10c{bottom:473.691333pt;}
.y4e{bottom:475.794000pt;}
.y231{bottom:476.776933pt;}
.ya{bottom:478.990666pt;}
.yd4{bottom:479.506533pt;}
.y18b{bottom:479.742800pt;}
.y98{bottom:480.887200pt;}
.y159{bottom:481.884533pt;}
.y20f{bottom:487.819467pt;}
.y1d5{bottom:488.293867pt;}
.y1af{bottom:488.409467pt;}
.yae{bottom:492.624667pt;}
.y10b{bottom:494.624667pt;}
.y9{bottom:494.990666pt;}
.y157{bottom:496.943600pt;}
.y230{bottom:498.110267pt;}
.y18a{bottom:500.409467pt;}
.yd3{bottom:500.839867pt;}
.y4d{bottom:501.532667pt;}
.y97{bottom:502.220533pt;}
.y1d3{bottom:505.120667pt;}
.yed{bottom:505.732267pt;}
.y12d{bottom:506.727600pt;}
.y1f0{bottom:507.742800pt;}
.y20e{bottom:508.886133pt;}
.y1ae{bottom:509.742800pt;}
.y28{bottom:511.259600pt;}
.y158{bottom:512.002667pt;}
.yad{bottom:513.958000pt;}
.y4c{bottom:515.932667pt;}
.y22f{bottom:519.443600pt;}
.y189{bottom:521.076133pt;}
.y1d4{bottom:521.947467pt;}
.yd2{bottom:522.173200pt;}
.y96{bottom:523.553867pt;}
.y156{bottom:527.061733pt;}
.y12c{bottom:528.060933pt;}
.y1ef{bottom:529.076133pt;}
.yec{bottom:529.732267pt;}
.y4b{bottom:530.332667pt;}
.y10a{bottom:530.676133pt;}
.y1ad{bottom:531.076133pt;}
.yac{bottom:535.291333pt;}
.y1d2{bottom:538.774267pt;}
.y22e{bottom:540.776933pt;}
.y20d{bottom:541.291333pt;}
.y188{bottom:541.742800pt;}
.y154{bottom:542.120800pt;}
.yd1{bottom:543.506533pt;}
.y27{bottom:543.839067pt;}
.y95{bottom:544.887200pt;}
.y12b{bottom:549.394267pt;}
.y1ee{bottom:550.409467pt;}
.yeb{bottom:551.065600pt;}
.y109{bottom:551.609467pt;}
.y1ac{bottom:552.409467pt;}
.y1d0{bottom:555.600933pt;}
.y4a{bottom:556.071200pt;}
.yab{bottom:556.624667pt;}
.y155{bottom:557.179867pt;}
.y7d{bottom:558.286800pt;}
.y22d{bottom:562.110267pt;}
.y20c{bottom:562.358000pt;}
.y187{bottom:562.409467pt;}
.y94{bottom:566.220533pt;}
.y49{bottom:570.471200pt;}
.y12a{bottom:570.727600pt;}
.y1ed{bottom:571.742800pt;}
.y153{bottom:572.238933pt;}
.yea{bottom:572.398933pt;}
.y1d1{bottom:572.427733pt;}
.y108{bottom:572.542800pt;}
.y1ab{bottom:573.742800pt;}
.y8{bottom:573.786667pt;}
.yaa{bottom:577.958000pt;}
.yd0{bottom:579.958000pt;}
.y22c{bottom:583.443600pt;}
.y152{bottom:587.297867pt;}
.y150{bottom:587.298000pt;}
.y93{bottom:587.553867pt;}
.y1cf{bottom:589.254533pt;}
.y129{bottom:592.060933pt;}
.y7{bottom:592.685334pt;}
.y1ec{bottom:593.076133pt;}
.y107{bottom:593.476133pt;}
.ye9{bottom:593.732267pt;}
.y20b{bottom:594.763200pt;}
.y48{bottom:596.209733pt;}
.y186{bottom:598.194267pt;}
.ya9{bottom:599.291333pt;}
.ycf{bottom:601.291333pt;}
.y151{bottom:602.357067pt;}
.y22b{bottom:604.776933pt;}
.y1cd{bottom:606.081333pt;}
.y92{bottom:608.887200pt;}
.y1aa{bottom:610.194267pt;}
.y47{bottom:610.609733pt;}
.y128{bottom:613.394267pt;}
.y1eb{bottom:614.409467pt;}
.y20a{bottom:615.829867pt;}
.y14f{bottom:617.416000pt;}
.y185{bottom:618.860933pt;}
.yce{bottom:622.624667pt;}
.y1ce{bottom:622.908133pt;}
.y46{bottom:625.009733pt;}
.y22a{bottom:626.110267pt;}
.y106{bottom:629.527600pt;}
.y91{bottom:630.220533pt;}
.y1a9{bottom:631.527600pt;}
.y14e{bottom:632.475067pt;}
.y14c{bottom:632.475200pt;}
.y127{bottom:634.727600pt;}
.ya8{bottom:635.742800pt;}
.y209{bottom:636.896533pt;}
.ye8{bottom:639.517067pt;}
.y184{bottom:639.527600pt;}
.y1cc{bottom:639.734800pt;}
.ycd{bottom:643.958000pt;}
.y6{bottom:645.598667pt;}
.y71{bottom:646.550533pt;}
.y229{bottom:647.443600pt;}
.y14d{bottom:647.534133pt;}
.y45{bottom:650.748400pt;}
.y105{bottom:650.860933pt;}
.y1a8{bottom:652.860933pt;}
.y126{bottom:656.060933pt;}
.y1ca{bottom:656.561600pt;}
.ya7{bottom:657.076133pt;}
.y30{bottom:657.927600pt;}
.y208{bottom:657.963200pt;}
.y70{bottom:659.350400pt;}
.y183{bottom:660.194267pt;}
.y14b{bottom:662.593200pt;}
.y44{bottom:665.148400pt;}
.y228{bottom:668.776933pt;}
.y3{bottom:668.977329pt;}
.y90{bottom:670.220400pt;}
.y6f{bottom:672.150533pt;}
.y104{bottom:672.194267pt;}
.y1cb{bottom:673.388400pt;}
.ye7{bottom:674.194267pt;}
.y125{bottom:677.394267pt;}
.y149{bottom:677.652267pt;}
.ya6{bottom:678.409467pt;}
.y207{bottom:679.030000pt;}
.ycc{bottom:680.409467pt;}
.y182{bottom:680.860933pt;}
.y6e{bottom:684.950533pt;}
.y2f{bottom:687.307067pt;}
.y227{bottom:690.110267pt;}
.y1c9{bottom:690.215200pt;}
.y43{bottom:690.886933pt;}
.y14a{bottom:692.711333pt;}
.y103{bottom:693.527600pt;}
.ye6{bottom:695.527600pt;}
.y124{bottom:698.727600pt;}
.ya5{bottom:699.742800pt;}
.y206{bottom:700.096533pt;}
.y181{bottom:701.527600pt;}
.ycb{bottom:701.742800pt;}
.y42{bottom:705.286933pt;}
.y6d{bottom:705.309600pt;}
.y1c8{bottom:707.041867pt;}
.y1c6{bottom:707.042000pt;}
.y148{bottom:707.770400pt;}
.y226{bottom:711.443600pt;}
.y102{bottom:714.860933pt;}
.ye5{bottom:716.860933pt;}
.ya4{bottom:721.076133pt;}
.y180{bottom:722.194267pt;}
.y146{bottom:722.829467pt;}
.yca{bottom:723.076133pt;}
.y1c7{bottom:723.868800pt;}
.y8f{bottom:725.338667pt;}
.y205{bottom:732.501733pt;}
.y225{bottom:732.776933pt;}
.y123{bottom:735.179067pt;}
.y101{bottom:736.194267pt;}
.y147{bottom:737.888533pt;}
.ye4{bottom:738.194267pt;}
.y1c5{bottom:740.695467pt;}
.y6c{bottom:741.760933pt;}
.ya3{bottom:742.409467pt;}
.yc9{bottom:744.409467pt;}
.y84{bottom:748.671467pt;}
.y41{bottom:749.914533pt;}
.y2e{bottom:750.702400pt;}
.y145{bottom:752.947600pt;}
.y204{bottom:753.568533pt;}
.y26{bottom:754.294000pt;}
.y122{bottom:756.112267pt;}
.y1c3{bottom:757.522267pt;}
.y100{bottom:757.527600pt;}
.y17f{bottom:757.979067pt;}
.ye3{bottom:759.527600pt;}
.y224{bottom:761.669333pt;}
.y8e{bottom:761.790000pt;}
.ya2{bottom:763.742800pt;}
.y6b{bottom:764.433467pt;}
.yc8{bottom:765.742800pt;}
.y143{bottom:768.006533pt;}
.y40{bottom:771.247867pt;}
.y1c4{bottom:774.349067pt;}
.y121{bottom:777.045600pt;}
.y17e{bottom:778.645733pt;}
.yff{bottom:778.860933pt;}
.y2d{bottom:779.502400pt;}
.ye2{bottom:780.860933pt;}
.y2{bottom:781.661334pt;}
.y83{bottom:782.989600pt;}
.y223{bottom:783.002667pt;}
.y144{bottom:783.065733pt;}
.y8d{bottom:783.123333pt;}
.y203{bottom:785.973733pt;}
.y25{bottom:786.294000pt;}
.y6a{bottom:789.738267pt;}
.y1c2{bottom:791.175733pt;}
.y3f{bottom:792.581200pt;}
.y1a7{bottom:795.979067pt;}
.y120{bottom:797.979067pt;}
.y142{bottom:798.124667pt;}
.y17d{bottom:799.312400pt;}
.ya1{bottom:800.194267pt;}
.y69{bottom:800.938267pt;}
.yc7{bottom:802.194267pt;}
.y222{bottom:804.336000pt;}
.y8c{bottom:804.456667pt;}
.y202{bottom:807.040400pt;}
.y1c0{bottom:808.002667pt;}
.y2c{bottom:808.302400pt;}
.y140{bottom:813.183733pt;}
.y3e{bottom:813.914533pt;}
.y82{bottom:817.307733pt;}
.y1a6{bottom:817.312400pt;}
.y24{bottom:818.294000pt;}
.y11f{bottom:818.912400pt;}
.y68{bottom:819.697333pt;}
.y17c{bottom:819.979067pt;}
.ya0{bottom:821.527600pt;}
.yc6{bottom:823.527600pt;}
.y1c1{bottom:824.829333pt;}
.y8b{bottom:825.790000pt;}
.y201{bottom:828.107067pt;}
.y141{bottom:828.242800pt;}
.y67{bottom:830.897333pt;}
.y221{bottom:833.228400pt;}
.y3d{bottom:835.247867pt;}
.y2b{bottom:837.102400pt;}
.ye1{bottom:838.645733pt;}
.y11e{bottom:839.845733pt;}
.y1bf{bottom:840.522267pt;}
.y17b{bottom:840.645733pt;}
.y9f{bottom:842.860933pt;}
.y13f{bottom:843.301867pt;}
.y8a{bottom:847.123333pt;}
.y1be{bottom:847.801733pt;}
.y66{bottom:849.656400pt;}
.y23{bottom:850.294000pt;}
.y13d{bottom:850.831333pt;}
.y81{bottom:851.625867pt;}
.y174{bottom:853.976000pt;}
.y220{bottom:854.561733pt;}
.y3c{bottom:856.581200pt;}
.y13e{bottom:858.360933pt;}
.y1{bottom:859.312000pt;}
.yc5{bottom:859.979067pt;}
.y200{bottom:860.512400pt;}
.y11d{bottom:860.778933pt;}
.y65{bottom:860.856400pt;}
.y17a{bottom:861.312400pt;}
.y9e{bottom:864.194267pt;}
.y89{bottom:868.456667pt;}
.y64{bottom:872.056400pt;}
.y21f{bottom:875.895067pt;}
.y3b{bottom:877.914533pt;}
.yc4{bottom:881.312400pt;}
.y1ff{bottom:881.579067pt;}
.y11c{bottom:881.712267pt;}
.y179{bottom:881.979067pt;}
.y63{bottom:883.256400pt;}
.y80{bottom:885.943867pt;}
.y88{bottom:889.790000pt;}
.y9d{bottom:900.645733pt;}
.y62{bottom:902.015467pt;}
.yc3{bottom:902.645733pt;}
.y21e{bottom:904.787467pt;}
.y87{bottom:911.123333pt;}
.y7f{bottom:920.262000pt;}
.y21d{bottom:926.120800pt;}
.y61{bottom:931.182667pt;}
.y86{bottom:932.456667pt;}
.y2a{bottom:941.648267pt;}
.y247{bottom:950.193200pt;}
.y22{bottom:951.853067pt;}
.y7e{bottom:954.580133pt;}
.y29{bottom:962.981600pt;}
.y60{bottom:966.204267pt;}
.y21c{bottom:966.351733pt;}
.y246{bottom:970.993200pt;}
.y85{bottom:972.456667pt;}
.ybf{bottom:974.392000pt;}
.y5f{bottom:982.204267pt;}
.y9a{bottom:987.428933pt;}
.yc1{bottom:988.720667pt;}
.y245{bottom:991.793200pt;}
.y5e{bottom:998.204267pt;}
.y3a{bottom:1002.166933pt;}
.y21b{bottom:1006.582667pt;}
.y244{bottom:1012.593200pt;}
.y39{bottom:1022.166933pt;}
.y5d{bottom:1029.322400pt;}
.y9c{bottom:1053.593200pt;}
.y5c{bottom:1055.860267pt;}
.y38{bottom:1061.574800pt;}
.h1b{height:28.382812pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h1a{height:29.750000pt;}
.h22{height:33.850437pt;}
.h1c{height:33.869792pt;}
.h26{height:36.289062pt;}
.h19{height:38.708333pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h15{height:43.312500pt;}
.h16{height:43.335938pt;}
.h2b{height:44.601562pt;}
.h2c{height:44.660023pt;}
.h11{height:48.385417pt;}
.h2{height:49.024000pt;}
.h2d{height:52.000000pt;}
.h13{height:52.937500pt;}
.h2a{height:52.966146pt;}
.h14{height:53.223958pt;}
.h12{height:57.750000pt;}
.h25{height:57.781250pt;}
.h1d{height:58.062500pt;}
.h29{height:62.988192pt;}
.h28{height:64.988192pt;}
.h1e{height:67.375000pt;}
.h5{height:69.450667pt;}
.h27{height:69.826200pt;}
.h10{height:77.041667pt;}
.he{height:77.416667pt;}
.hd{height:86.625000pt;}
.hf{height:86.671875pt;}
.h17{height:89.847436pt;}
.h1f{height:92.874507pt;}
.h24{height:93.241867pt;}
.hc{height:96.250000pt;}
.h20{height:97.750000pt;}
.h18{height:98.831939pt;}
.h4{height:105.826671pt;}
.h21{height:120.312500pt;}
.h23{height:148.128000pt;}
.hb{height:346.500000pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:0.941333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x25{left:-363.629867pt;}
.x0{left:0.000000pt;}
.x21{left:48.027067pt;}
.x13{left:52.926267pt;}
.x26{left:82.132933pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x31{left:98.601067pt;}
.x2c{left:100.716267pt;}
.x7a{left:102.047333pt;}
.x36{left:106.488133pt;}
.x1f{left:124.149600pt;}
.x22{left:125.052533pt;}
.x37{left:127.821467pt;}
.x29{left:132.283467pt;}
.x2a{left:154.960667pt;}
.x35{left:158.285600pt;}
.x5a{left:161.831867pt;}
.x38{left:162.832000pt;}
.x1d{left:164.196933pt;}
.x32{left:166.445867pt;}
.x7d{left:167.725333pt;}
.x5b{left:169.111333pt;}
.x39{left:170.611467pt;}
.x4{left:180.874667pt;}
.x5d{left:184.715067pt;}
.x3b{left:186.170533pt;}
.x2e{left:193.354267pt;}
.x5c{left:200.030000pt;}
.x3a{left:201.729600pt;}
.x34{left:207.735333pt;}
.x7b{left:212.497333pt;}
.x5e{left:215.344933pt;}
.x3c{left:217.288667pt;}
.x12{left:230.551067pt;}
.xa{left:232.647600pt;}
.x2b{left:234.018000pt;}
.x1e{left:241.415067pt;}
.x5f{left:245.974933pt;}
.x8{left:249.046000pt;}
.x7{left:256.246533pt;}
.x60{left:261.289867pt;}
.x3d{left:263.965867pt;}
.x62{left:276.604800pt;}
.x3f{left:279.524933pt;}
.x11{left:286.509467pt;}
.x61{left:291.919733pt;}
.x3e{left:295.084000pt;}
.xf{left:303.863600pt;}
.x63{left:307.234667pt;}
.x40{left:310.643067pt;}
.x65{left:322.549600pt;}
.x42{left:326.202133pt;}
.xe{left:328.812800pt;}
.xb{left:333.827200pt;}
.x64{left:337.864667pt;}
.x41{left:341.761200pt;}
.x6{left:352.327200pt;}
.x43{left:357.320267pt;}
.x67{left:368.494533pt;}
.x44{left:372.879333pt;}
.xd{left:375.160533pt;}
.x30{left:379.340533pt;}
.x2f{left:380.631867pt;}
.x66{left:383.809467pt;}
.x27{left:387.838267pt;}
.x20{left:389.129600pt;}
.x68{left:399.124533pt;}
.x7e{left:401.767600pt;}
.x3{left:404.408000pt;}
.x33{left:408.360000pt;}
.x69{left:414.439333pt;}
.x16{left:419.527467pt;}
.x19{left:423.307067pt;}
.x18{left:427.902000pt;}
.x1c{left:429.096800pt;}
.x1a{left:430.866000pt;}
.x45{left:435.115467pt;}
.x17{left:436.879733pt;}
.x6a{left:445.069333pt;}
.x2d{left:448.140000pt;}
.x46{left:450.674667pt;}
.x6c{left:460.384133pt;}
.x48{left:466.233600pt;}
.x6b{left:475.699200pt;}
.x47{left:481.792667pt;}
.x5{left:482.842800pt;}
.x23{left:484.092000pt;}
.x24{left:489.357067pt;}
.x6d{left:491.014133pt;}
.x49{left:497.351733pt;}
.x9{left:500.022533pt;}
.x6e{left:506.329067pt;}
.xc{left:508.150133pt;}
.x4b{left:512.910800pt;}
.x15{left:516.663733pt;}
.x14{left:521.099600pt;}
.x10{left:526.601867pt;}
.x4a{left:528.469867pt;}
.x6f{left:536.958933pt;}
.x4c{left:544.028933pt;}
.x71{left:552.273867pt;}
.x4e{left:559.588000pt;}
.x70{left:567.588933pt;}
.x4d{left:575.147067pt;}
.x72{left:582.903867pt;}
.x4f{left:590.706133pt;}
.x58{left:595.115333pt;}
.x75{left:598.218800pt;}
.x59{left:600.378267pt;}
.x7c{left:603.936267pt;}
.x52{left:606.265200pt;}
.x73{left:607.933733pt;}
.x76{left:613.533733pt;}
.x50{left:615.424133pt;}
.x74{left:619.133733pt;}
.x53{left:621.824267pt;}
.x51{left:628.224267pt;}
.x54{left:637.383200pt;}
.x28{left:642.819733pt;}
.x77{left:659.565200pt;}
.x55{left:667.721867pt;}
.x78{left:678.231867pt;}
.x56{left:686.388533pt;}
.x1b{left:693.909067pt;}
.x79{left:696.898400pt;}
.x57{left:705.055200pt;}
}




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