
    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_8b777b46349d599327ae8747.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.058000;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_6556fe8e2f3204a77ebb6b2f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959633;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_82c59ad4d70c157d8b2e4cf5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.131000;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_56d0aa7d017f90759695419c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.038000;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_c4727bc00619da1fa80988cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_e32f2115908a1762db764f79.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.965385;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_f72804479f05dee350bb09c8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.679000;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_3a505149787ffa380b25daeb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.964000;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_a537c58eba48629ca00287d4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003000;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_0c016824ca3782fba9542df2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.038000;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_d62c3e6149435bff539a777f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967000;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_85eb6fd161d9bb681625d482.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.881836;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_9bf1a81ad116861bbdef857a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.954000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_77e84125a09668ca7be14f4e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.848145;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_daa28c1940ef5a913aca8789.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m25{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);}
.m73{transform:matrix(0.235616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235616,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236916,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.237273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237273,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237275,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.238084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238084,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.238632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238632,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.238791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238791,0.000000,0.000000,0.250000,0,0);}
.m6e{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);}
.m6b{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.241309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241309,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.242682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242682,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.242782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242782,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242825,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.242882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242882,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243035,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.243266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243266,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243650,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.244092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244092,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.244177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244177,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244445,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.244727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244727,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.244759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244759,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.244809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244809,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.244837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244837,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m31{transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245075,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.245093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245093,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245236,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.245341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245341,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.245584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245584,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245661,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.245708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245708,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.245723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245723,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.245814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245814,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.245857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245857,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245927,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246247,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246616,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246618,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246768,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.246791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246791,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246944,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246991,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.247014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247014,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.247116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247116,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247233,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247291,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247361,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.247380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247380,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247395,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247421,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247430,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247564,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247673,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247770,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247830,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247903,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247939,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247955,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248026,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248402,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248558,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248602,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248605,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248735,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248802,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248825,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248941,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249127,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249134,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249295,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249484,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249583,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249687,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,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);}
.m5{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250059,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250476,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250544,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250714,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250889,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251091,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251177,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251389,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251416,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251497,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251520,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251605,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251645,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251761,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251797,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251842,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251964,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252037,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.252039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252039,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252095,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252439,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.252527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252527,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252589,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.252625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252625,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252643,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252742,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252747,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252748,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.252819,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252819,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252819,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252873,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252882,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252900,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252959,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253018,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253022,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253032,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.253039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253039,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253084,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.253127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253127,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253182,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.253272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253272,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.253345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253345,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253475,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253481,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253711,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253752,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.253884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253884,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253939,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253967,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.254018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254018,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254068,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.254116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254116,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.254143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254143,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254157,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.254243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254243,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.254248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254248,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.254341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254341,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254522,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.254566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254566,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.254689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254689,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254797,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255130,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255225,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255239,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255245,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.255543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255543,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255545,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.255586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255586,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.255823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255823,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255881,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255961,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.255997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255997,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256220,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.256352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256352,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.256366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256366,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.256384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256384,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.256445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256445,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.256657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256657,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.256658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256658,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.256709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256709,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.256743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256743,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.256759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256759,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256952,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.978000px;}
.v3{vertical-align:-1.586400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls4d{letter-spacing:-0.924000px;}
.ls3f{letter-spacing:-0.858000px;}
.ls39{letter-spacing:-0.792000px;}
.ls58{letter-spacing:-0.780000px;}
.ls34{letter-spacing:-0.726000px;}
.ls56{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.702000px;}
.ls31{letter-spacing:-0.660000px;}
.ls57{letter-spacing:-0.600000px;}
.ls32{letter-spacing:-0.528000px;}
.ls35{letter-spacing:-0.423258px;}
.ls1a{letter-spacing:-0.396000px;}
.ls33{letter-spacing:-0.384780px;}
.ls19{letter-spacing:-0.264000px;}
.ls55{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.198000px;}
.ls50{letter-spacing:-0.180000px;}
.ls1b{letter-spacing:-0.162000px;}
.lsd{letter-spacing:-0.132000px;}
.ls4e{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.114000px;}
.ls28{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.066000px;}
.ls4f{letter-spacing:-0.060000px;}
.ls5{letter-spacing:-0.057000px;}
.ls26{letter-spacing:-0.054000px;}
.ls1{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls30{letter-spacing:0.000026px;}
.ls9{letter-spacing:0.000360px;}
.ls12{letter-spacing:0.000600px;}
.ls40{letter-spacing:0.001800px;}
.ls1d{letter-spacing:0.026400px;}
.ls52{letter-spacing:0.030000px;}
.ls1c{letter-spacing:0.033000px;}
.ls25{letter-spacing:0.038478px;}
.ls13{letter-spacing:0.054000px;}
.ls3{letter-spacing:0.057000px;}
.ls8{letter-spacing:0.066000px;}
.ls10{letter-spacing:0.068112px;}
.ls37{letter-spacing:0.068152px;}
.ls24{letter-spacing:0.076956px;}
.ls23{letter-spacing:0.079871px;}
.ls20{letter-spacing:0.081000px;}
.ls4b{letter-spacing:0.090000px;}
.ls43{letter-spacing:0.099000px;}
.ls11{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.111405px;}
.ls2c{letter-spacing:0.111409px;}
.ls4{letter-spacing:0.114000px;}
.ls4c{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.132000px;}
.ls3a{letter-spacing:0.153912px;}
.lsc{letter-spacing:0.162000px;}
.ls41{letter-spacing:0.165000px;}
.ls2{letter-spacing:0.171000px;}
.ls4a{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.295800px;}
.ls17{letter-spacing:0.296400px;}
.ls15{letter-spacing:0.310800px;}
.ls49{letter-spacing:0.330000px;}
.ls47{letter-spacing:0.396000px;}
.ls48{letter-spacing:0.594000px;}
.ls14{letter-spacing:1.093800px;}
.ls3d{letter-spacing:1.332000px;}
.ls3e{letter-spacing:1.332600px;}
.ls29{letter-spacing:1.513200px;}
.ls44{letter-spacing:2.007600px;}
.ls2a{letter-spacing:2.171351px;}
.ls3b{letter-spacing:2.187448px;}
.ls3c{letter-spacing:2.188044px;}
.ls36{letter-spacing:2.207594px;}
.ls21{letter-spacing:2.211855px;}
.ls18{letter-spacing:2.229402px;}
.ls2e{letter-spacing:2.237782px;}
.ls2d{letter-spacing:2.238373px;}
.ls1e{letter-spacing:2.275437px;}
.ls1f{letter-spacing:2.276023px;}
.ls22{letter-spacing:2.427057px;}
.ls38{letter-spacing:2.431048px;}
.ls2b{letter-spacing:2.451858px;}
.ls42{letter-spacing:2.916592px;}
.ls46{letter-spacing:2.990179px;}
.ls45{letter-spacing:2.990770px;}
.ls54{letter-spacing:104.055600px;}
.ls53{letter-spacing:104.735699px;}
.ls51{letter-spacing:107.158424px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws38{word-spacing:-66.000000px;}
.ws1e{word-spacing:-14.586000px;}
.ws16{word-spacing:-14.454000px;}
.ws39{word-spacing:-13.200000px;}
.ws4{word-spacing:-12.597000px;}
.ws32{word-spacing:-12.540000px;}
.ws5{word-spacing:-12.483000px;}
.ws3{word-spacing:-12.426000px;}
.ws25{word-spacing:-11.934000px;}
.ws35{word-spacing:-11.826000px;}
.ws22{word-spacing:-11.772000px;}
.ws27{word-spacing:-11.718000px;}
.ws24{word-spacing:-11.124000px;}
.ws17{word-spacing:-10.962000px;}
.ws18{word-spacing:-10.908000px;}
.ws26{word-spacing:-10.881000px;}
.ws21{word-spacing:-10.854000px;}
.wsc{word-spacing:-10.800000px;}
.ws23{word-spacing:-10.746000px;}
.ws2c{word-spacing:-10.692000px;}
.ws0{word-spacing:-9.600000px;}
.ws1f{word-spacing:-8.503638px;}
.ws20{word-spacing:-8.465160px;}
.wsb{word-spacing:-8.426682px;}
.ws2b{word-spacing:-8.003424px;}
.ws37{word-spacing:-2.214000px;}
.ws49{word-spacing:-0.594000px;}
.ws48{word-spacing:-0.396000px;}
.ws4a{word-spacing:-0.330000px;}
.ws13{word-spacing:-0.264000px;}
.ws12{word-spacing:-0.198000px;}
.ws4c{word-spacing:-0.180000px;}
.ws8{word-spacing:-0.171000px;}
.ws14{word-spacing:-0.162000px;}
.ws34{word-spacing:-0.153912px;}
.wsd{word-spacing:-0.132000px;}
.ws4e{word-spacing:-0.120000px;}
.wsa{word-spacing:-0.114000px;}
.ws1b{word-spacing:-0.108000px;}
.wse{word-spacing:-0.066000px;}
.ws54{word-spacing:-0.060000px;}
.ws9{word-spacing:-0.057000px;}
.ws1c{word-spacing:-0.054000px;}
.ws15{word-spacing:-0.039000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:0.048000px;}
.ws28{word-spacing:0.054000px;}
.ws6{word-spacing:0.057000px;}
.ws4f{word-spacing:0.060000px;}
.ws10{word-spacing:0.066000px;}
.ws2a{word-spacing:0.108000px;}
.ws7{word-spacing:0.114000px;}
.ws4d{word-spacing:0.120000px;}
.wsf{word-spacing:0.132000px;}
.ws1d{word-spacing:0.162000px;}
.ws50{word-spacing:0.180000px;}
.ws11{word-spacing:0.198000px;}
.ws51{word-spacing:0.240000px;}
.ws19{word-spacing:0.264000px;}
.ws2f{word-spacing:0.384780px;}
.ws1a{word-spacing:0.396000px;}
.ws2e{word-spacing:0.528000px;}
.ws53{word-spacing:0.600000px;}
.ws2d{word-spacing:0.660000px;}
.ws29{word-spacing:0.702000px;}
.ws52{word-spacing:0.720000px;}
.ws30{word-spacing:0.726000px;}
.ws55{word-spacing:0.780000px;}
.ws33{word-spacing:0.792000px;}
.ws36{word-spacing:0.858000px;}
.ws4b{word-spacing:0.924000px;}
.ws31{word-spacing:2.214000px;}
.ws40{word-spacing:29.851800px;}
.ws3f{word-spacing:34.225800px;}
.ws46{word-spacing:38.275800px;}
.ws3d{word-spacing:47.887800px;}
.ws3e{word-spacing:55.663800px;}
.ws3a{word-spacing:76.615800px;}
.ws3b{word-spacing:89.035800px;}
.ws43{word-spacing:121.705800px;}
.ws45{word-spacing:121.759800px;}
.ws41{word-spacing:124.783800px;}
.ws42{word-spacing:130.399800px;}
.ws3c{word-spacing:191.716800px;}
.ws44{word-spacing:265.642800px;}
.ws47{word-spacing:513.199200px;}
._3{margin-left:-6.624000px;}
._a{margin-left:-4.673100px;}
._5{margin-left:-3.657300px;}
._0{margin-left:-2.496000px;}
._2{margin-left:-1.320000px;}
._4{width:1.784100px;}
._6{width:2.932800px;}
._1{width:4.085400px;}
._8{width:12.790431px;}
._7{width:19.310878px;}
._b{width:39.204000px;}
._e{width:46.819800px;}
._9{width:62.106000px;}
._19{width:65.017800px;}
._26{width:77.776200px;}
._25{width:86.955600px;}
._1c{width:118.648200px;}
._c{width:119.815800px;}
._15{width:132.586800px;}
._29{width:162.407400px;}
._18{width:171.289800px;}
._d{width:197.155800px;}
._17{width:221.740800px;}
._13{width:225.667800px;}
._10{width:229.354800px;}
._f{width:233.620800px;}
._23{width:241.228200px;}
._12{width:242.368800px;}
._16{width:248.740800px;}
._11{width:294.625800px;}
._14{width:320.653800px;}
._24{width:339.148800px;}
._1f{width:343.396200px;}
._21{width:344.908200px;}
._22{width:378.685200px;}
._1a{width:402.580200px;}
._1b{width:412.489200px;}
._1e{width:480.367200px;}
._27{width:533.873400px;}
._20{width:559.531200px;}
._1d{width:571.978200px;}
._2a{width:670.709400px;}
._28{width:800.487000px;}
._2c{width:819.387000px;}
._2b{width:1172.130600px;}
.fc1{color:rgb(167,165,166);}
.fc2{color:rgb(38,38,38);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs7{font-size:39.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs5{font-size:365.010000px;}
.y0{bottom:0.000000px;}
.y132{bottom:91.639350px;}
.y58{bottom:106.299150px;}
.yc2{bottom:106.299300px;}
.y1bb{bottom:111.138750px;}
.y34{bottom:117.658650px;}
.y192{bottom:125.097300px;}
.y57{bottom:125.799150px;}
.yc1{bottom:125.799300px;}
.y16e{bottom:128.427300px;}
.y12a{bottom:128.799150px;}
.yf0{bottom:129.057750px;}
.y1ba{bottom:129.888750px;}
.yd0{bottom:134.949450px;}
.y33{bottom:136.408650px;}
.y191{bottom:143.895300px;}
.y56{bottom:145.299150px;}
.yc0{bottom:145.299300px;}
.y1b9{bottom:148.638750px;}
.y16d{bottom:150.555300px;}
.yef{bottom:151.816500px;}
.y14f{bottom:152.134500px;}
.y32{bottom:155.158650px;}
.ycf{bottom:157.449450px;}
.y190{bottom:162.693450px;}
.y55{bottom:164.799150px;}
.ybf{bottom:164.799300px;}
.y10a{bottom:165.067500px;}
.y1b8{bottom:167.388750px;}
.y129{bottom:172.559100px;}
.y16c{bottom:172.683450px;}
.y31{bottom:173.908650px;}
.yee{bottom:174.575100px;}
.y14e{bottom:174.634500px;}
.yce{bottom:179.949450px;}
.y18f{bottom:181.491600px;}
.y54{bottom:184.299150px;}
.ybe{bottom:184.299300px;}
.y1b7{bottom:186.138750px;}
.y109{bottom:187.567500px;}
.y30{bottom:192.658650px;}
.y14d{bottom:197.134500px;}
.yed{bottom:197.333700px;}
.y128{bottom:197.811000px;}
.y18e{bottom:200.289750px;}
.y53{bottom:203.799150px;}
.ybd{bottom:203.799300px;}
.y138{bottom:204.575400px;}
.y1b6{bottom:204.888750px;}
.y108{bottom:210.067500px;}
.ycd{bottom:210.953400px;}
.y2f{bottom:211.408650px;}
.y16b{bottom:216.071400px;}
.y127{bottom:216.274350px;}
.y117{bottom:218.571450px;}
.y18d{bottom:219.087750px;}
.y14c{bottom:219.634500px;}
.yec{bottom:220.092300px;}
.y52{bottom:223.299150px;}
.ybc{bottom:223.299300px;}
.y1b5{bottom:223.638750px;}
.y137{bottom:227.075400px;}
.y2e{bottom:230.158650px;}
.y126{bottom:232.474350px;}
.y107{bottom:232.567500px;}
.ycc{bottom:233.453400px;}
.y18c{bottom:237.885900px;}
.y16a{bottom:239.574150px;}
.y116{bottom:241.071450px;}
.y14b{bottom:242.134500px;}
.y1b4{bottom:242.388750px;}
.y51{bottom:242.799150px;}
.ybb{bottom:242.799300px;}
.yeb{bottom:242.851050px;}
.y2d{bottom:248.908650px;}
.y136{bottom:249.575400px;}
.y125{bottom:250.937700px;}
.y106{bottom:255.067500px;}
.ycb{bottom:255.953400px;}
.y18b{bottom:256.684050px;}
.y1b3{bottom:261.138750px;}
.y74{bottom:262.299150px;}
.y169{bottom:262.587000px;}
.y115{bottom:263.571450px;}
.y14a{bottom:264.634500px;}
.yea{bottom:265.609650px;}
.y2c{bottom:267.658650px;}
.y124{bottom:269.401050px;}
.y135{bottom:272.075400px;}
.y18a{bottom:275.482200px;}
.y105{bottom:277.567500px;}
.yca{bottom:278.453400px;}
.y1b2{bottom:279.888750px;}
.y73{bottom:281.799150px;}
.yba{bottom:284.329350px;}
.y50{bottom:285.333300px;}
.y168{bottom:285.599700px;}
.y114{bottom:286.071450px;}
.y2b{bottom:286.408650px;}
.y149{bottom:287.134500px;}
.y123{bottom:287.864400px;}
.ye9{bottom:288.368250px;}
.y189{bottom:294.280200px;}
.y134{bottom:294.575400px;}
.y1b1{bottom:298.638750px;}
.y104{bottom:300.067500px;}
.yc9{bottom:300.953400px;}
.y72{bottom:301.299150px;}
.y2a{bottom:305.158650px;}
.y122{bottom:306.327750px;}
.yb9{bottom:306.679350px;}
.y4f{bottom:307.983300px;}
.y113{bottom:308.571450px;}
.y167{bottom:308.612400px;}
.y148{bottom:309.634500px;}
.ye8{bottom:311.126850px;}
.y188{bottom:313.078350px;}
.y1b0{bottom:317.388750px;}
.y71{bottom:320.799150px;}
.y103{bottom:322.567500px;}
.y29{bottom:323.908650px;}
.y121{bottom:324.791100px;}
.ya1{bottom:325.579350px;}
.yb8{bottom:329.029350px;}
.y4d{bottom:330.633300px;}
.y112{bottom:331.071450px;}
.y166{bottom:331.625100px;}
.y187{bottom:331.876500px;}
.y147{bottom:332.134500px;}
.ye7{bottom:333.885450px;}
.y133{bottom:334.945800px;}
.y4e{bottom:336.127800px;}
.y1af{bottom:336.138750px;}
.y70{bottom:340.299150px;}
.yc8{bottom:340.461300px;}
.y120{bottom:340.991100px;}
.y28{bottom:342.658650px;}
.y102{bottom:345.067500px;}
.ya0{bottom:348.079350px;}
.y186{bottom:350.674650px;}
.yb7{bottom:351.379350px;}
.y4c{bottom:353.283300px;}
.y111{bottom:353.571450px;}
.y165{bottom:354.637800px;}
.y1ae{bottom:354.888750px;}
.ye6{bottom:356.644200px;}
.y11f{bottom:359.454450px;}
.y6f{bottom:359.799150px;}
.y27{bottom:361.408650px;}
.yc7{bottom:362.961300px;}
.y7d{bottom:363.183300px;}
.y101{bottom:367.567500px;}
.y185{bottom:369.472650px;}
.y9f{bottom:370.579350px;}
.y146{bottom:371.642400px;}
.y1ad{bottom:373.638750px;}
.yb6{bottom:373.729350px;}
.y4b{bottom:375.933300px;}
.y164{bottom:377.253900px;}
.y11e{bottom:377.917800px;}
.y6e{bottom:379.299150px;}
.ye5{bottom:379.402800px;}
.y26{bottom:380.158650px;}
.y7c{bottom:385.383300px;}
.yc6{bottom:385.461300px;}
.y13f{bottom:387.601500px;}
.y184{bottom:388.270800px;}
.y88{bottom:390.877800px;}
.y1ac{bottom:392.388750px;}
.y110{bottom:393.079350px;}
.y145{bottom:394.142400px;}
.yb5{bottom:396.079350px;}
.y11d{bottom:396.381150px;}
.y6d{bottom:398.799150px;}
.y25{bottom:398.908650px;}
.ye4{bottom:402.161400px;}
.y183{bottom:407.068950px;}
.y100{bottom:407.075400px;}
.y4a{bottom:407.087250px;}
.y7b{bottom:407.583300px;}
.yc5{bottom:407.961300px;}
.yc{bottom:409.846350px;}
.y9e{bottom:410.087250px;}
.y13e{bottom:410.101500px;}
.y1ab{bottom:411.138750px;}
.y163{bottom:412.079100px;}
.y11c{bottom:414.844500px;}
.y10f{bottom:415.579350px;}
.y144{bottom:416.642400px;}
.y24{bottom:417.658650px;}
.y6c{bottom:418.299150px;}
.yb4{bottom:418.429350px;}
.ye3{bottom:424.920000px;}
.y182{bottom:425.866950px;}
.y131{bottom:427.449450px;}
.y9{bottom:428.876250px;}
.yff{bottom:429.575400px;}
.y49{bottom:429.737250px;}
.y7a{bottom:429.783300px;}
.y1aa{bottom:429.888750px;}
.yc4{bottom:430.461300px;}
.y9d{bottom:432.587250px;}
.y13d{bottom:432.601500px;}
.y11b{bottom:433.307850px;}
.y162{bottom:434.207250px;}
.y23{bottom:436.408650px;}
.y10e{bottom:438.079350px;}
.y143{bottom:439.142400px;}
.yb3{bottom:440.779350px;}
.y181{bottom:444.665100px;}
.y8{bottom:446.876250px;}
.ye2{bottom:447.678750px;}
.y1a9{bottom:448.638750px;}
.y130{bottom:449.949450px;}
.y79{bottom:451.983300px;}
.yfe{bottom:452.075400px;}
.y48{bottom:452.387250px;}
.yc3{bottom:452.961300px;}
.y9c{bottom:455.087250px;}
.y13c{bottom:455.101500px;}
.y22{bottom:455.158650px;}
.y161{bottom:456.335250px;}
.y6b{bottom:460.487250px;}
.y10d{bottom:460.579350px;}
.yb2{bottom:463.129350px;}
.y180{bottom:463.463250px;}
.y11a{bottom:466.027200px;}
.y1a8{bottom:467.388750px;}
.ye1{bottom:470.437350px;}
.y12f{bottom:472.449450px;}
.y21{bottom:473.908650px;}
.y78{bottom:474.183300px;}
.yfd{bottom:474.575400px;}
.y47{bottom:475.037250px;}
.y9b{bottom:477.587250px;}
.y13b{bottom:477.601500px;}
.y160{bottom:478.463400px;}
.y17f{bottom:482.261400px;}
.y6a{bottom:482.687250px;}
.y10c{bottom:483.079350px;}
.yb1{bottom:485.479350px;}
.y1a7{bottom:486.138750px;}
.y119{bottom:488.527200px;}
.ye0{bottom:493.195950px;}
.y142{bottom:493.228350px;}
.y12e{bottom:494.949450px;}
.y77{bottom:496.383300px;}
.yfc{bottom:497.075400px;}
.y46{bottom:497.687250px;}
.yb{bottom:497.995350px;}
.y9a{bottom:500.087250px;}
.y13a{bottom:500.101500px;}
.y15f{bottom:500.591550px;}
.y17e{bottom:501.059400px;}
.y69{bottom:504.887250px;}
.y1a6{bottom:504.888750px;}
.y20{bottom:505.414500px;}
.y10b{bottom:505.579350px;}
.yd1{bottom:507.047250px;}
.y141{bottom:507.628350px;}
.yb0{bottom:507.829350px;}
.y118{bottom:511.027200px;}
.y12d{bottom:517.449450px;}
.y76{bottom:518.583300px;}
.yfb{bottom:519.575400px;}
.y17d{bottom:519.857550px;}
.y45{bottom:520.337250px;}
.y98{bottom:522.587250px;}
.y139{bottom:522.601500px;}
.y15e{bottom:522.719550px;}
.y1a5{bottom:523.638750px;}
.y1f{bottom:524.164500px;}
.ydf{bottom:524.458500px;}
.y68{bottom:527.087250px;}
.y7{bottom:527.655150px;}
.y99{bottom:528.081750px;}
.yaf{bottom:530.179350px;}
.y17c{bottom:538.655700px;}
.y75{bottom:540.783300px;}
.yfa{bottom:542.075400px;}
.y1a4{bottom:542.388750px;}
.y1e{bottom:542.914500px;}
.y44{bottom:542.987250px;}
.y15d{bottom:544.847700px;}
.y97{bottom:545.087250px;}
.y6{bottom:545.655150px;}
.yde{bottom:547.217100px;}
.y67{bottom:549.287250px;}
.yae{bottom:552.529350px;}
.y17b{bottom:557.453850px;}
.y1a3{bottom:561.138750px;}
.y12c{bottom:561.209250px;}
.y1d{bottom:561.664500px;}
.y87{bottom:562.983300px;}
.y12b{bottom:563.489850px;}
.yf9{bottom:564.575400px;}
.y43{bottom:565.637250px;}
.y15c{bottom:566.975700px;}
.y96{bottom:567.587250px;}
.y5{bottom:568.151250px;}
.ydd{bottom:569.975700px;}
.y66{bottom:571.487250px;}
.yad{bottom:574.879350px;}
.y17a{bottom:576.251850px;}
.y1a2{bottom:579.888750px;}
.y1c{bottom:580.414500px;}
.y140{bottom:582.623700px;}
.y86{bottom:585.183300px;}
.yf8{bottom:587.075400px;}
.y42{bottom:588.287250px;}
.y95{bottom:590.087250px;}
.ydc{bottom:592.734300px;}
.y65{bottom:593.687250px;}
.y179{bottom:595.050000px;}
.yac{bottom:597.229350px;}
.y1a1{bottom:598.638750px;}
.y1b{bottom:599.164500px;}
.y85{bottom:607.383300px;}
.y15b{bottom:610.363650px;}
.y41{bottom:610.937250px;}
.y94{bottom:612.587250px;}
.ydb{bottom:615.493050px;}
.y64{bottom:615.887250px;}
.y1a0{bottom:617.388750px;}
.y1a{bottom:617.914500px;}
.yf7{bottom:626.583300px;}
.y84{bottom:629.583300px;}
.y15a{bottom:633.469650px;}
.y40{bottom:633.587250px;}
.y178{bottom:634.606050px;}
.y93{bottom:635.087250px;}
.y19f{bottom:636.138750px;}
.yab{bottom:636.587250px;}
.y19{bottom:636.664500px;}
.y63{bottom:638.087250px;}
.yda{bottom:638.251650px;}
.yf6{bottom:649.083300px;}
.y83{bottom:651.783300px;}
.y19e{bottom:654.888750px;}
.y18{bottom:655.414500px;}
.y159{bottom:655.689000px;}
.y3f{bottom:656.237250px;}
.y177{bottom:657.154200px;}
.y92{bottom:657.587250px;}
.yaa{bottom:658.937250px;}
.y62{bottom:660.287250px;}
.yd9{bottom:661.010250px;}
.yf5{bottom:671.583300px;}
.y19d{bottom:673.638750px;}
.y82{bottom:673.983300px;}
.y17{bottom:674.164500px;}
.y158{bottom:677.908200px;}
.y3e{bottom:678.887250px;}
.y176{bottom:679.702200px;}
.y90{bottom:680.087250px;}
.ya9{bottom:681.287250px;}
.y61{bottom:682.487250px;}
.yd8{bottom:683.768850px;}
.y91{bottom:685.581750px;}
.y19c{bottom:692.388750px;}
.y16{bottom:692.914500px;}
.yf4{bottom:694.083300px;}
.y81{bottom:696.183300px;}
.y157{bottom:700.127400px;}
.y3d{bottom:701.537250px;}
.y175{bottom:702.250350px;}
.y8f{bottom:702.587250px;}
.ya8{bottom:703.637250px;}
.y60{bottom:704.687250px;}
.yd7{bottom:706.527600px;}
.y19b{bottom:711.138750px;}
.y15{bottom:711.664500px;}
.yf3{bottom:716.583300px;}
.y80{bottom:718.383300px;}
.y156{bottom:722.346750px;}
.y3c{bottom:724.187250px;}
.y174{bottom:724.798500px;}
.y8e{bottom:725.087250px;}
.ya7{bottom:725.987250px;}
.y5f{bottom:726.887250px;}
.y19a{bottom:729.888750px;}
.y14{bottom:730.414500px;}
.yf2{bottom:739.083300px;}
.y7f{bottom:740.583300px;}
.y155{bottom:744.565950px;}
.yd6{bottom:746.294100px;}
.y3b{bottom:746.837250px;}
.y173{bottom:747.346500px;}
.y8d{bottom:747.587250px;}
.ya6{bottom:748.337250px;}
.y199{bottom:748.638750px;}
.y5e{bottom:749.087250px;}
.y13{bottom:749.164500px;}
.yf1{bottom:761.583300px;}
.y7e{bottom:762.783300px;}
.y4{bottom:766.528200px;}
.y154{bottom:766.785150px;}
.y198{bottom:767.388750px;}
.y12{bottom:767.914500px;}
.yd5{bottom:769.052700px;}
.y3a{bottom:769.487250px;}
.y172{bottom:769.894650px;}
.y8c{bottom:770.087250px;}
.ya5{bottom:770.687250px;}
.y5d{bottom:771.287250px;}
.y197{bottom:786.138750px;}
.y11{bottom:786.664500px;}
.y153{bottom:789.004500px;}
.y3{bottom:789.028200px;}
.yd4{bottom:791.811300px;}
.y39{bottom:792.137250px;}
.y171{bottom:792.442800px;}
.y8b{bottom:792.587250px;}
.ya4{bottom:793.037250px;}
.y5c{bottom:793.487250px;}
.y196{bottom:804.888750px;}
.y10{bottom:805.414500px;}
.y152{bottom:811.223700px;}
.yd3{bottom:814.569900px;}
.y36{bottom:814.787250px;}
.y170{bottom:814.990950px;}
.y8a{bottom:815.087250px;}
.ya3{bottom:815.387250px;}
.y5b{bottom:815.687250px;}
.y195{bottom:823.638750px;}
.yf{bottom:824.164500px;}
.y2{bottom:832.484250px;}
.y151{bottom:833.443050px;}
.yd2{bottom:837.328650px;}
.y38{bottom:837.437250px;}
.y16f{bottom:837.539100px;}
.y89{bottom:837.587250px;}
.ya2{bottom:837.737250px;}
.y5a{bottom:837.887250px;}
.y194{bottom:842.388750px;}
.ye{bottom:842.914500px;}
.y150{bottom:855.662250px;}
.y1{bottom:857.984250px;}
.y37{bottom:860.087250px;}
.y193{bottom:861.138750px;}
.yd{bottom:861.664500px;}
.y59{bottom:871.653600px;}
.y35{bottom:930.708000px;}
.ya{bottom:946.311000px;}
.hd{height:26.973078px;}
.h11{height:29.820450px;}
.hf{height:30.225000px;}
.h14{height:34.080000px;}
.h7{height:34.530462px;}
.h6{height:37.200000px;}
.h12{height:39.960000px;}
.he{height:41.850000px;}
.h5{height:42.768000px;}
.h13{height:42.930000px;}
.h9{height:44.175000px;}
.h8{height:45.315000px;}
.h15{height:46.500000px;}
.ha{height:50.760000px;}
.hc{height:51.150000px;}
.h10{height:51.798450px;}
.h3{height:52.470000px;}
.h2{height:62.010000px;}
.h4{height:62.040000px;}
.hb{height:255.872010px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x13{left:40.790550px;}
.x3{left:42.849300px;}
.x4{left:102.192900px;}
.x1{left:106.299150px;}
.x14{left:110.498550px;}
.x27{left:135.531450px;}
.x2{left:136.569750px;}
.x1c{left:141.681450px;}
.x6{left:155.196900px;}
.x5{left:164.609550px;}
.x22{left:172.888650px;}
.x23{left:185.274900px;}
.x20{left:186.327900px;}
.x24{left:187.529400px;}
.x1f{left:195.042150px;}
.x21{left:196.756650px;}
.x25{left:197.843400px;}
.x28{left:198.873450px;}
.x12{left:200.301450px;}
.x17{left:201.975450px;}
.x26{left:205.109700px;}
.x1b{left:206.451300px;}
.x1d{left:212.715450px;}
.x1a{left:229.593450px;}
.x1e{left:231.465450px;}
.x18{left:242.007450px;}
.x15{left:277.383450px;}
.x16{left:356.943150px;}
.xb{left:379.303050px;}
.xc{left:388.164450px;}
.x7{left:409.354500px;}
.x8{left:414.105450px;}
.xd{left:428.450250px;}
.xe{left:437.311650px;}
.xf{left:553.156650px;}
.x10{left:562.712100px;}
.x11{left:589.747500px;}
.x19{left:636.660000px;}
.x9{left:638.138400px;}
.xa{left:645.842550px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v3{vertical-align:-1.410133pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls4d{letter-spacing:-0.821333pt;}
.ls3f{letter-spacing:-0.762667pt;}
.ls39{letter-spacing:-0.704000pt;}
.ls58{letter-spacing:-0.693333pt;}
.ls34{letter-spacing:-0.645333pt;}
.ls56{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.624000pt;}
.ls31{letter-spacing:-0.586667pt;}
.ls57{letter-spacing:-0.533333pt;}
.ls32{letter-spacing:-0.469333pt;}
.ls35{letter-spacing:-0.376229pt;}
.ls1a{letter-spacing:-0.352000pt;}
.ls33{letter-spacing:-0.342027pt;}
.ls19{letter-spacing:-0.234667pt;}
.ls55{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.176000pt;}
.ls50{letter-spacing:-0.160000pt;}
.ls1b{letter-spacing:-0.144000pt;}
.lsd{letter-spacing:-0.117333pt;}
.ls4e{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.101333pt;}
.ls28{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.058667pt;}
.ls4f{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:-0.050667pt;}
.ls26{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls30{letter-spacing:0.000023pt;}
.ls9{letter-spacing:0.000320pt;}
.ls12{letter-spacing:0.000533pt;}
.ls40{letter-spacing:0.001600pt;}
.ls1d{letter-spacing:0.023467pt;}
.ls52{letter-spacing:0.026667pt;}
.ls1c{letter-spacing:0.029333pt;}
.ls25{letter-spacing:0.034203pt;}
.ls13{letter-spacing:0.048000pt;}
.ls3{letter-spacing:0.050667pt;}
.ls8{letter-spacing:0.058667pt;}
.ls10{letter-spacing:0.060544pt;}
.ls37{letter-spacing:0.060580pt;}
.ls24{letter-spacing:0.068405pt;}
.ls23{letter-spacing:0.070997pt;}
.ls20{letter-spacing:0.072000pt;}
.ls4b{letter-spacing:0.080000pt;}
.ls43{letter-spacing:0.088000pt;}
.ls11{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.099026pt;}
.ls2c{letter-spacing:0.099031pt;}
.ls4{letter-spacing:0.101333pt;}
.ls4c{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.117333pt;}
.ls3a{letter-spacing:0.136811pt;}
.lsc{letter-spacing:0.144000pt;}
.ls41{letter-spacing:0.146667pt;}
.ls2{letter-spacing:0.152000pt;}
.ls4a{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.262933pt;}
.ls17{letter-spacing:0.263467pt;}
.ls15{letter-spacing:0.276267pt;}
.ls49{letter-spacing:0.293333pt;}
.ls47{letter-spacing:0.352000pt;}
.ls48{letter-spacing:0.528000pt;}
.ls14{letter-spacing:0.972267pt;}
.ls3d{letter-spacing:1.184000pt;}
.ls3e{letter-spacing:1.184533pt;}
.ls29{letter-spacing:1.345067pt;}
.ls44{letter-spacing:1.784533pt;}
.ls2a{letter-spacing:1.930090pt;}
.ls3b{letter-spacing:1.944398pt;}
.ls3c{letter-spacing:1.944928pt;}
.ls36{letter-spacing:1.962306pt;}
.ls21{letter-spacing:1.966093pt;}
.ls18{letter-spacing:1.981690pt;}
.ls2e{letter-spacing:1.989140pt;}
.ls2d{letter-spacing:1.989665pt;}
.ls1e{letter-spacing:2.022610pt;}
.ls1f{letter-spacing:2.023131pt;}
.ls22{letter-spacing:2.157384pt;}
.ls38{letter-spacing:2.160932pt;}
.ls2b{letter-spacing:2.179429pt;}
.ls42{letter-spacing:2.592526pt;}
.ls46{letter-spacing:2.657937pt;}
.ls45{letter-spacing:2.658462pt;}
.ls54{letter-spacing:92.493867pt;}
.ls53{letter-spacing:93.098399pt;}
.ls51{letter-spacing:95.251932pt;}
.ws38{word-spacing:-58.666667pt;}
.ws1e{word-spacing:-12.965333pt;}
.ws16{word-spacing:-12.848000pt;}
.ws39{word-spacing:-11.733333pt;}
.ws4{word-spacing:-11.197333pt;}
.ws32{word-spacing:-11.146667pt;}
.ws5{word-spacing:-11.096000pt;}
.ws3{word-spacing:-11.045333pt;}
.ws25{word-spacing:-10.608000pt;}
.ws35{word-spacing:-10.512000pt;}
.ws22{word-spacing:-10.464000pt;}
.ws27{word-spacing:-10.416000pt;}
.ws24{word-spacing:-9.888000pt;}
.ws17{word-spacing:-9.744000pt;}
.ws18{word-spacing:-9.696000pt;}
.ws26{word-spacing:-9.672000pt;}
.ws21{word-spacing:-9.648000pt;}
.wsc{word-spacing:-9.600000pt;}
.ws23{word-spacing:-9.552000pt;}
.ws2c{word-spacing:-9.504000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws1f{word-spacing:-7.558789pt;}
.ws20{word-spacing:-7.524587pt;}
.wsb{word-spacing:-7.490384pt;}
.ws2b{word-spacing:-7.114155pt;}
.ws37{word-spacing:-1.968000pt;}
.ws49{word-spacing:-0.528000pt;}
.ws48{word-spacing:-0.352000pt;}
.ws4a{word-spacing:-0.293333pt;}
.ws13{word-spacing:-0.234667pt;}
.ws12{word-spacing:-0.176000pt;}
.ws4c{word-spacing:-0.160000pt;}
.ws8{word-spacing:-0.152000pt;}
.ws14{word-spacing:-0.144000pt;}
.ws34{word-spacing:-0.136811pt;}
.wsd{word-spacing:-0.117333pt;}
.ws4e{word-spacing:-0.106667pt;}
.wsa{word-spacing:-0.101333pt;}
.ws1b{word-spacing:-0.096000pt;}
.wse{word-spacing:-0.058667pt;}
.ws54{word-spacing:-0.053333pt;}
.ws9{word-spacing:-0.050667pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws15{word-spacing:-0.034667pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:0.042667pt;}
.ws28{word-spacing:0.048000pt;}
.ws6{word-spacing:0.050667pt;}
.ws4f{word-spacing:0.053333pt;}
.ws10{word-spacing:0.058667pt;}
.ws2a{word-spacing:0.096000pt;}
.ws7{word-spacing:0.101333pt;}
.ws4d{word-spacing:0.106667pt;}
.wsf{word-spacing:0.117333pt;}
.ws1d{word-spacing:0.144000pt;}
.ws50{word-spacing:0.160000pt;}
.ws11{word-spacing:0.176000pt;}
.ws51{word-spacing:0.213333pt;}
.ws19{word-spacing:0.234667pt;}
.ws2f{word-spacing:0.342027pt;}
.ws1a{word-spacing:0.352000pt;}
.ws2e{word-spacing:0.469333pt;}
.ws53{word-spacing:0.533333pt;}
.ws2d{word-spacing:0.586667pt;}
.ws29{word-spacing:0.624000pt;}
.ws52{word-spacing:0.640000pt;}
.ws30{word-spacing:0.645333pt;}
.ws55{word-spacing:0.693333pt;}
.ws33{word-spacing:0.704000pt;}
.ws36{word-spacing:0.762667pt;}
.ws4b{word-spacing:0.821333pt;}
.ws31{word-spacing:1.968000pt;}
.ws40{word-spacing:26.534933pt;}
.ws3f{word-spacing:30.422933pt;}
.ws46{word-spacing:34.022933pt;}
.ws3d{word-spacing:42.566933pt;}
.ws3e{word-spacing:49.478933pt;}
.ws3a{word-spacing:68.102933pt;}
.ws3b{word-spacing:79.142933pt;}
.ws43{word-spacing:108.182933pt;}
.ws45{word-spacing:108.230933pt;}
.ws41{word-spacing:110.918933pt;}
.ws42{word-spacing:115.910933pt;}
.ws3c{word-spacing:170.414933pt;}
.ws44{word-spacing:236.126933pt;}
.ws47{word-spacing:456.177067pt;}
._3{margin-left:-5.888000pt;}
._a{margin-left:-4.153867pt;}
._5{margin-left:-3.250933pt;}
._0{margin-left:-2.218667pt;}
._2{margin-left:-1.173333pt;}
._4{width:1.585867pt;}
._6{width:2.606933pt;}
._1{width:3.631467pt;}
._8{width:11.369272pt;}
._7{width:17.165225pt;}
._b{width:34.848000pt;}
._e{width:41.617600pt;}
._9{width:55.205333pt;}
._19{width:57.793600pt;}
._26{width:69.134400pt;}
._25{width:77.293867pt;}
._1c{width:105.465067pt;}
._c{width:106.502933pt;}
._15{width:117.854933pt;}
._29{width:144.362133pt;}
._18{width:152.257600pt;}
._d{width:175.249600pt;}
._17{width:197.102933pt;}
._13{width:200.593600pt;}
._10{width:203.870933pt;}
._f{width:207.662933pt;}
._23{width:214.425067pt;}
._12{width:215.438933pt;}
._16{width:221.102933pt;}
._11{width:261.889600pt;}
._14{width:285.025600pt;}
._24{width:301.465600pt;}
._1f{width:305.241067pt;}
._21{width:306.585067pt;}
._22{width:336.609067pt;}
._1a{width:357.849067pt;}
._1b{width:366.657067pt;}
._1e{width:426.993067pt;}
._27{width:474.554133pt;}
._20{width:497.361067pt;}
._1d{width:508.425067pt;}
._2a{width:596.186133pt;}
._28{width:711.544000pt;}
._2c{width:728.344000pt;}
._2b{width:1041.893867pt;}
.fs6{font-size:34.202667pt;}
.fs7{font-size:34.666667pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs5{font-size:324.453333pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:81.457200pt;}
.y58{bottom:94.488133pt;}
.yc2{bottom:94.488267pt;}
.y1bb{bottom:98.790000pt;}
.y34{bottom:104.585467pt;}
.y192{bottom:111.197600pt;}
.y57{bottom:111.821467pt;}
.yc1{bottom:111.821600pt;}
.y16e{bottom:114.157600pt;}
.y12a{bottom:114.488133pt;}
.yf0{bottom:114.718000pt;}
.y1ba{bottom:115.456667pt;}
.yd0{bottom:119.955067pt;}
.y33{bottom:121.252133pt;}
.y191{bottom:127.906933pt;}
.y56{bottom:129.154800pt;}
.yc0{bottom:129.154933pt;}
.y1b9{bottom:132.123333pt;}
.y16d{bottom:133.826933pt;}
.yef{bottom:134.948000pt;}
.y14f{bottom:135.230667pt;}
.y32{bottom:137.918800pt;}
.ycf{bottom:139.955067pt;}
.y190{bottom:144.616400pt;}
.y55{bottom:146.488133pt;}
.ybf{bottom:146.488267pt;}
.y10a{bottom:146.726667pt;}
.y1b8{bottom:148.790000pt;}
.y129{bottom:153.385867pt;}
.y16c{bottom:153.496400pt;}
.y31{bottom:154.585467pt;}
.yee{bottom:155.177867pt;}
.y14e{bottom:155.230667pt;}
.yce{bottom:159.955067pt;}
.y18f{bottom:161.325867pt;}
.y54{bottom:163.821467pt;}
.ybe{bottom:163.821600pt;}
.y1b7{bottom:165.456667pt;}
.y109{bottom:166.726667pt;}
.y30{bottom:171.252133pt;}
.y14d{bottom:175.230667pt;}
.yed{bottom:175.407733pt;}
.y128{bottom:175.832000pt;}
.y18e{bottom:178.035333pt;}
.y53{bottom:181.154800pt;}
.ybd{bottom:181.154933pt;}
.y138{bottom:181.844800pt;}
.y1b6{bottom:182.123333pt;}
.y108{bottom:186.726667pt;}
.ycd{bottom:187.514133pt;}
.y2f{bottom:187.918800pt;}
.y16b{bottom:192.063467pt;}
.y127{bottom:192.243867pt;}
.y117{bottom:194.285733pt;}
.y18d{bottom:194.744667pt;}
.y14c{bottom:195.230667pt;}
.yec{bottom:195.637600pt;}
.y52{bottom:198.488133pt;}
.ybc{bottom:198.488267pt;}
.y1b5{bottom:198.790000pt;}
.y137{bottom:201.844800pt;}
.y2e{bottom:204.585467pt;}
.y126{bottom:206.643867pt;}
.y107{bottom:206.726667pt;}
.ycc{bottom:207.514133pt;}
.y18c{bottom:211.454133pt;}
.y16a{bottom:212.954800pt;}
.y116{bottom:214.285733pt;}
.y14b{bottom:215.230667pt;}
.y1b4{bottom:215.456667pt;}
.y51{bottom:215.821467pt;}
.ybb{bottom:215.821600pt;}
.yeb{bottom:215.867600pt;}
.y2d{bottom:221.252133pt;}
.y136{bottom:221.844800pt;}
.y125{bottom:223.055733pt;}
.y106{bottom:226.726667pt;}
.ycb{bottom:227.514133pt;}
.y18b{bottom:228.163600pt;}
.y1b3{bottom:232.123333pt;}
.y74{bottom:233.154800pt;}
.y169{bottom:233.410667pt;}
.y115{bottom:234.285733pt;}
.y14a{bottom:235.230667pt;}
.yea{bottom:236.097467pt;}
.y2c{bottom:237.918800pt;}
.y124{bottom:239.467600pt;}
.y135{bottom:241.844800pt;}
.y18a{bottom:244.873067pt;}
.y105{bottom:246.726667pt;}
.yca{bottom:247.514133pt;}
.y1b2{bottom:248.790000pt;}
.y73{bottom:250.488133pt;}
.yba{bottom:252.737200pt;}
.y50{bottom:253.629600pt;}
.y168{bottom:253.866400pt;}
.y114{bottom:254.285733pt;}
.y2b{bottom:254.585467pt;}
.y149{bottom:255.230667pt;}
.y123{bottom:255.879467pt;}
.ye9{bottom:256.327333pt;}
.y189{bottom:261.582400pt;}
.y134{bottom:261.844800pt;}
.y1b1{bottom:265.456667pt;}
.y104{bottom:266.726667pt;}
.yc9{bottom:267.514133pt;}
.y72{bottom:267.821467pt;}
.y2a{bottom:271.252133pt;}
.y122{bottom:272.291333pt;}
.yb9{bottom:272.603867pt;}
.y4f{bottom:273.762933pt;}
.y113{bottom:274.285733pt;}
.y167{bottom:274.322133pt;}
.y148{bottom:275.230667pt;}
.ye8{bottom:276.557200pt;}
.y188{bottom:278.291867pt;}
.y1b0{bottom:282.123333pt;}
.y71{bottom:285.154800pt;}
.y103{bottom:286.726667pt;}
.y29{bottom:287.918800pt;}
.y121{bottom:288.703200pt;}
.ya1{bottom:289.403867pt;}
.yb8{bottom:292.470533pt;}
.y4d{bottom:293.896267pt;}
.y112{bottom:294.285733pt;}
.y166{bottom:294.777867pt;}
.y187{bottom:295.001333pt;}
.y147{bottom:295.230667pt;}
.ye7{bottom:296.787067pt;}
.y133{bottom:297.729600pt;}
.y4e{bottom:298.780267pt;}
.y1af{bottom:298.790000pt;}
.y70{bottom:302.488133pt;}
.yc8{bottom:302.632267pt;}
.y120{bottom:303.103200pt;}
.y28{bottom:304.585467pt;}
.y102{bottom:306.726667pt;}
.ya0{bottom:309.403867pt;}
.y186{bottom:311.710800pt;}
.yb7{bottom:312.337200pt;}
.y4c{bottom:314.029600pt;}
.y111{bottom:314.285733pt;}
.y165{bottom:315.233600pt;}
.y1ae{bottom:315.456667pt;}
.ye6{bottom:317.017067pt;}
.y11f{bottom:319.515067pt;}
.y6f{bottom:319.821467pt;}
.y27{bottom:321.252133pt;}
.yc7{bottom:322.632267pt;}
.y7d{bottom:322.829600pt;}
.y101{bottom:326.726667pt;}
.y185{bottom:328.420133pt;}
.y9f{bottom:329.403867pt;}
.y146{bottom:330.348800pt;}
.y1ad{bottom:332.123333pt;}
.yb6{bottom:332.203867pt;}
.y4b{bottom:334.162933pt;}
.y164{bottom:335.336800pt;}
.y11e{bottom:335.926933pt;}
.y6e{bottom:337.154800pt;}
.ye5{bottom:337.246933pt;}
.y26{bottom:337.918800pt;}
.y7c{bottom:342.562933pt;}
.yc6{bottom:342.632267pt;}
.y13f{bottom:344.534667pt;}
.y184{bottom:345.129600pt;}
.y88{bottom:347.446933pt;}
.y1ac{bottom:348.790000pt;}
.y110{bottom:349.403867pt;}
.y145{bottom:350.348800pt;}
.yb5{bottom:352.070533pt;}
.y11d{bottom:352.338800pt;}
.y6d{bottom:354.488133pt;}
.y25{bottom:354.585467pt;}
.ye4{bottom:357.476800pt;}
.y183{bottom:361.839067pt;}
.y100{bottom:361.844800pt;}
.y4a{bottom:361.855333pt;}
.y7b{bottom:362.296267pt;}
.yc5{bottom:362.632267pt;}
.yc{bottom:364.307867pt;}
.y9e{bottom:364.522000pt;}
.y13e{bottom:364.534667pt;}
.y1ab{bottom:365.456667pt;}
.y163{bottom:366.292533pt;}
.y11c{bottom:368.750667pt;}
.y10f{bottom:369.403867pt;}
.y144{bottom:370.348800pt;}
.y24{bottom:371.252133pt;}
.y6c{bottom:371.821467pt;}
.yb4{bottom:371.937200pt;}
.ye3{bottom:377.706667pt;}
.y182{bottom:378.548400pt;}
.y131{bottom:379.955067pt;}
.y9{bottom:381.223333pt;}
.yff{bottom:381.844800pt;}
.y49{bottom:381.988667pt;}
.y7a{bottom:382.029600pt;}
.y1aa{bottom:382.123333pt;}
.yc4{bottom:382.632267pt;}
.y9d{bottom:384.522000pt;}
.y13d{bottom:384.534667pt;}
.y11b{bottom:385.162533pt;}
.y162{bottom:385.962000pt;}
.y23{bottom:387.918800pt;}
.y10e{bottom:389.403867pt;}
.y143{bottom:390.348800pt;}
.yb3{bottom:391.803867pt;}
.y181{bottom:395.257867pt;}
.y8{bottom:397.223333pt;}
.ye2{bottom:397.936667pt;}
.y1a9{bottom:398.790000pt;}
.y130{bottom:399.955067pt;}
.y79{bottom:401.762933pt;}
.yfe{bottom:401.844800pt;}
.y48{bottom:402.122000pt;}
.yc3{bottom:402.632267pt;}
.y9c{bottom:404.522000pt;}
.y13c{bottom:404.534667pt;}
.y22{bottom:404.585467pt;}
.y161{bottom:405.631333pt;}
.y6b{bottom:409.322000pt;}
.y10d{bottom:409.403867pt;}
.yb2{bottom:411.670533pt;}
.y180{bottom:411.967333pt;}
.y11a{bottom:414.246400pt;}
.y1a8{bottom:415.456667pt;}
.ye1{bottom:418.166533pt;}
.y12f{bottom:419.955067pt;}
.y21{bottom:421.252133pt;}
.y78{bottom:421.496267pt;}
.yfd{bottom:421.844800pt;}
.y47{bottom:422.255333pt;}
.y9b{bottom:424.522000pt;}
.y13b{bottom:424.534667pt;}
.y160{bottom:425.300800pt;}
.y17f{bottom:428.676800pt;}
.y6a{bottom:429.055333pt;}
.y10c{bottom:429.403867pt;}
.yb1{bottom:431.537200pt;}
.y1a7{bottom:432.123333pt;}
.y119{bottom:434.246400pt;}
.ye0{bottom:438.396400pt;}
.y142{bottom:438.425200pt;}
.y12e{bottom:439.955067pt;}
.y77{bottom:441.229600pt;}
.yfc{bottom:441.844800pt;}
.y46{bottom:442.388667pt;}
.yb{bottom:442.662533pt;}
.y9a{bottom:444.522000pt;}
.y13a{bottom:444.534667pt;}
.y15f{bottom:444.970267pt;}
.y17e{bottom:445.386133pt;}
.y69{bottom:448.788667pt;}
.y1a6{bottom:448.790000pt;}
.y20{bottom:449.257333pt;}
.y10b{bottom:449.403867pt;}
.yd1{bottom:450.708667pt;}
.y141{bottom:451.225200pt;}
.yb0{bottom:451.403867pt;}
.y118{bottom:454.246400pt;}
.y12d{bottom:459.955067pt;}
.y76{bottom:460.962933pt;}
.yfb{bottom:461.844800pt;}
.y17d{bottom:462.095600pt;}
.y45{bottom:462.522000pt;}
.y98{bottom:464.522000pt;}
.y139{bottom:464.534667pt;}
.y15e{bottom:464.639600pt;}
.y1a5{bottom:465.456667pt;}
.y1f{bottom:465.924000pt;}
.ydf{bottom:466.185333pt;}
.y68{bottom:468.522000pt;}
.y7{bottom:469.026800pt;}
.y99{bottom:469.406000pt;}
.yaf{bottom:471.270533pt;}
.y17c{bottom:478.805067pt;}
.y75{bottom:480.696267pt;}
.yfa{bottom:481.844800pt;}
.y1a4{bottom:482.123333pt;}
.y1e{bottom:482.590667pt;}
.y44{bottom:482.655333pt;}
.y15d{bottom:484.309067pt;}
.y97{bottom:484.522000pt;}
.y6{bottom:485.026800pt;}
.yde{bottom:486.415200pt;}
.y67{bottom:488.255333pt;}
.yae{bottom:491.137200pt;}
.y17b{bottom:495.514533pt;}
.y1a3{bottom:498.790000pt;}
.y12c{bottom:498.852667pt;}
.y1d{bottom:499.257333pt;}
.y87{bottom:500.429600pt;}
.y12b{bottom:500.879867pt;}
.yf9{bottom:501.844800pt;}
.y43{bottom:502.788667pt;}
.y15c{bottom:503.978400pt;}
.y96{bottom:504.522000pt;}
.y5{bottom:505.023333pt;}
.ydd{bottom:506.645067pt;}
.y66{bottom:507.988667pt;}
.yad{bottom:511.003867pt;}
.y17a{bottom:512.223867pt;}
.y1a2{bottom:515.456667pt;}
.y1c{bottom:515.924000pt;}
.y140{bottom:517.887733pt;}
.y86{bottom:520.162933pt;}
.yf8{bottom:521.844800pt;}
.y42{bottom:522.922000pt;}
.y95{bottom:524.522000pt;}
.ydc{bottom:526.874933pt;}
.y65{bottom:527.722000pt;}
.y179{bottom:528.933333pt;}
.yac{bottom:530.870533pt;}
.y1a1{bottom:532.123333pt;}
.y1b{bottom:532.590667pt;}
.y85{bottom:539.896267pt;}
.y15b{bottom:542.545467pt;}
.y41{bottom:543.055333pt;}
.y94{bottom:544.522000pt;}
.ydb{bottom:547.104933pt;}
.y64{bottom:547.455333pt;}
.y1a0{bottom:548.790000pt;}
.y1a{bottom:549.257333pt;}
.yf7{bottom:556.962933pt;}
.y84{bottom:559.629600pt;}
.y15a{bottom:563.084133pt;}
.y40{bottom:563.188667pt;}
.y178{bottom:564.094267pt;}
.y93{bottom:564.522000pt;}
.y19f{bottom:565.456667pt;}
.yab{bottom:565.855333pt;}
.y19{bottom:565.924000pt;}
.y63{bottom:567.188667pt;}
.yda{bottom:567.334800pt;}
.yf6{bottom:576.962933pt;}
.y83{bottom:579.362933pt;}
.y19e{bottom:582.123333pt;}
.y18{bottom:582.590667pt;}
.y159{bottom:582.834667pt;}
.y3f{bottom:583.322000pt;}
.y177{bottom:584.137067pt;}
.y92{bottom:584.522000pt;}
.yaa{bottom:585.722000pt;}
.y62{bottom:586.922000pt;}
.yd9{bottom:587.564667pt;}
.yf5{bottom:596.962933pt;}
.y19d{bottom:598.790000pt;}
.y82{bottom:599.096267pt;}
.y17{bottom:599.257333pt;}
.y158{bottom:602.585067pt;}
.y3e{bottom:603.455333pt;}
.y176{bottom:604.179733pt;}
.y90{bottom:604.522000pt;}
.ya9{bottom:605.588667pt;}
.y61{bottom:606.655333pt;}
.yd8{bottom:607.794533pt;}
.y91{bottom:609.406000pt;}
.y19c{bottom:615.456667pt;}
.y16{bottom:615.924000pt;}
.yf4{bottom:616.962933pt;}
.y81{bottom:618.829600pt;}
.y157{bottom:622.335467pt;}
.y3d{bottom:623.588667pt;}
.y175{bottom:624.222533pt;}
.y8f{bottom:624.522000pt;}
.ya8{bottom:625.455333pt;}
.y60{bottom:626.388667pt;}
.yd7{bottom:628.024533pt;}
.y19b{bottom:632.123333pt;}
.y15{bottom:632.590667pt;}
.yf3{bottom:636.962933pt;}
.y80{bottom:638.562933pt;}
.y156{bottom:642.086000pt;}
.y3c{bottom:643.722000pt;}
.y174{bottom:644.265333pt;}
.y8e{bottom:644.522000pt;}
.ya7{bottom:645.322000pt;}
.y5f{bottom:646.122000pt;}
.y19a{bottom:648.790000pt;}
.y14{bottom:649.257333pt;}
.yf2{bottom:656.962933pt;}
.y7f{bottom:658.296267pt;}
.y155{bottom:661.836400pt;}
.yd6{bottom:663.372533pt;}
.y3b{bottom:663.855333pt;}
.y173{bottom:664.308000pt;}
.y8d{bottom:664.522000pt;}
.ya6{bottom:665.188667pt;}
.y199{bottom:665.456667pt;}
.y5e{bottom:665.855333pt;}
.y13{bottom:665.924000pt;}
.yf1{bottom:676.962933pt;}
.y7e{bottom:678.029600pt;}
.y4{bottom:681.358400pt;}
.y154{bottom:681.586800pt;}
.y198{bottom:682.123333pt;}
.y12{bottom:682.590667pt;}
.yd5{bottom:683.602400pt;}
.y3a{bottom:683.988667pt;}
.y172{bottom:684.350800pt;}
.y8c{bottom:684.522000pt;}
.ya5{bottom:685.055333pt;}
.y5d{bottom:685.588667pt;}
.y197{bottom:698.790000pt;}
.y11{bottom:699.257333pt;}
.y153{bottom:701.337333pt;}
.y3{bottom:701.358400pt;}
.yd4{bottom:703.832267pt;}
.y39{bottom:704.122000pt;}
.y171{bottom:704.393600pt;}
.y8b{bottom:704.522000pt;}
.ya4{bottom:704.922000pt;}
.y5c{bottom:705.322000pt;}
.y196{bottom:715.456667pt;}
.y10{bottom:715.924000pt;}
.y152{bottom:721.087733pt;}
.yd3{bottom:724.062133pt;}
.y36{bottom:724.255333pt;}
.y170{bottom:724.436400pt;}
.y8a{bottom:724.522000pt;}
.ya3{bottom:724.788667pt;}
.y5b{bottom:725.055333pt;}
.y195{bottom:732.123333pt;}
.yf{bottom:732.590667pt;}
.y2{bottom:739.986000pt;}
.y151{bottom:740.838267pt;}
.yd2{bottom:744.292133pt;}
.y38{bottom:744.388667pt;}
.y16f{bottom:744.479200pt;}
.y89{bottom:744.522000pt;}
.ya2{bottom:744.655333pt;}
.y5a{bottom:744.788667pt;}
.y194{bottom:748.790000pt;}
.ye{bottom:749.257333pt;}
.y150{bottom:760.588667pt;}
.y1{bottom:762.652667pt;}
.y37{bottom:764.522000pt;}
.y193{bottom:765.456667pt;}
.yd{bottom:765.924000pt;}
.y59{bottom:774.803200pt;}
.y35{bottom:827.296000pt;}
.ya{bottom:841.165333pt;}
.hd{height:23.976069pt;}
.h11{height:26.507067pt;}
.hf{height:26.866667pt;}
.h14{height:30.293333pt;}
.h7{height:30.693744pt;}
.h6{height:33.066667pt;}
.h12{height:35.520000pt;}
.he{height:37.200000pt;}
.h5{height:38.016000pt;}
.h13{height:38.160000pt;}
.h9{height:39.266667pt;}
.h8{height:40.280000pt;}
.h15{height:41.333333pt;}
.ha{height:45.120000pt;}
.hc{height:45.466667pt;}
.h10{height:46.043067pt;}
.h3{height:46.640000pt;}
.h2{height:55.120000pt;}
.h4{height:55.146667pt;}
.hb{height:227.441787pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x13{left:36.258267pt;}
.x3{left:38.088267pt;}
.x4{left:90.838133pt;}
.x1{left:94.488133pt;}
.x14{left:98.220933pt;}
.x27{left:120.472400pt;}
.x2{left:121.395333pt;}
.x1c{left:125.939067pt;}
.x6{left:137.952800pt;}
.x5{left:146.319600pt;}
.x22{left:153.678800pt;}
.x23{left:164.688800pt;}
.x20{left:165.624800pt;}
.x24{left:166.692800pt;}
.x1f{left:173.370800pt;}
.x21{left:174.894800pt;}
.x25{left:175.860800pt;}
.x28{left:176.776400pt;}
.x12{left:178.045733pt;}
.x17{left:179.533733pt;}
.x26{left:182.319733pt;}
.x1b{left:183.512267pt;}
.x1d{left:189.080400pt;}
.x1a{left:204.083067pt;}
.x1e{left:205.747067pt;}
.x18{left:215.117733pt;}
.x15{left:246.563067pt;}
.x16{left:317.282800pt;}
.xb{left:337.158267pt;}
.xc{left:345.035067pt;}
.x7{left:363.870667pt;}
.x8{left:368.093733pt;}
.xd{left:380.844667pt;}
.xe{left:388.721467pt;}
.xf{left:491.694800pt;}
.x10{left:500.188533pt;}
.x11{left:524.220000pt;}
.x19{left:565.920000pt;}
.x9{left:567.234133pt;}
.xa{left:574.082267pt;}
}




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