
    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_c4358378d3a2a154889c7ce2.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_726457c43d620a4472be2560.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.924633;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_e61a2e337824ae7ac65eaa17.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_d6d7a796fc1619a7f61a2c9e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_b53d6b0842396390ee53215c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d40bc577cc473d1f1b9e841c.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_b94b43e80fd11797ede42ff7.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_9dbc9f7b1ed028773fb6e2a2.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b06a0f175f860c691a2a69e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.125000;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_b66afd1d58a07ed372a8172a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_22ca9ea827127c3317a928c3.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f68099f67276fec28676ed2c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.948000;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_76c63b3d85e83e3ad3501333.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.164000;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_daa28c1940ef5a913aca8789.woff2')format("woff");}.ffe{font-family:ffe;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);}
.m9d{transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237057,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.238568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238568,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.240593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240593,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.240814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240814,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.242068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242068,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.242089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242089,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.242582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242582,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242800,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.242995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242995,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.243293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243293,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243305,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.243316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243316,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.243327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243327,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.243445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243445,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.243632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243632,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.243708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243708,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.243734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243734,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.243764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243764,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.243961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243961,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.244122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244122,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.244289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244289,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.244344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244344,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.244516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244516,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.244708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244708,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244795,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244930,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.244982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244982,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245145,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.245248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245248,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245330,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245335,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.245441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245441,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245507,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245550,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.245664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245664,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245730,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.245736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245736,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.246141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246141,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.246180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246180,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.246207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246207,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246264,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246286,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246318,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.246322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246322,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246612,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246614,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.246652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246652,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.246691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246691,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.246752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246752,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246793,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.246816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246816,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.247041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247041,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.247082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247082,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247139,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247189,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.247264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247264,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);}
.m103{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);}
.mfd{transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247443,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.247484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247484,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.247539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247539,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247581,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.247609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247609,0.000000,0.000000,0.250000,0,0);}
.mae{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);}
.md5{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247836,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247966,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248232,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248323,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248389,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248398,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248516,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248585,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248598,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248770,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248789,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248833,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248973,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249263,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249285,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249319,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249445,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249457,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249498,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249520,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m7d{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);}
.m7{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249739,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249764,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);}
.mb5{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);}
.m78{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.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);}
.m66{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250197,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250295,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250297,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250331,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250366,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250484,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m91{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);}
.mec{transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250568,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250657,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250690,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m118{transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250764,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250907,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250939,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250952,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251027,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251043,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251045,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251105,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251148,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);}
.m57{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);}
.m19{transform:matrix(0.251311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251311,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251320,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251377,0.000000,0.000000,0.250000,0,0);}
.mc0{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);}
.m94{transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251466,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251495,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251739,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251781,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251860,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251884,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252355,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252452,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.252464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252464,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252520,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252523,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.252623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252623,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252645,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252780,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252807,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252875,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252885,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m21{transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252950,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.253048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253048,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253053,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.253088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253088,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253093,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253107,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.253139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253139,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253170,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.253257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253257,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253320,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253323,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.253489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253489,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253722,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.253739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253739,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.253839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253839,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253943,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254070,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.254134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254134,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254170,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.254230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254230,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254298,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254337,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.254447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254447,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.254577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254577,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.254584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254584,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.254718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254718,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.254736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254736,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254745,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.254761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254761,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.254772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254772,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.254777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254777,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.254882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254882,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.255127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255127,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.255148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255148,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255195,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.255202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255202,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.255393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255393,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255507,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255595,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255625,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.255693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255693,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.255732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255732,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255739,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255930,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.256114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256114,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.256606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256606,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.256617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256617,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m99{transform:matrix(0.256802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256802,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.256984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256984,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.256986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256986,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257168,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.257419,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257419,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257419,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.257461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257461,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls19{letter-spacing:-0.858000px;}
.ls25{letter-spacing:-0.792000px;}
.ls18{letter-spacing:-0.726000px;}
.ls17{letter-spacing:-0.660000px;}
.ls24{letter-spacing:-0.594000px;}
.ls1a{letter-spacing:-0.528000px;}
.ls2a{letter-spacing:-0.462000px;}
.ls1{letter-spacing:-0.396000px;}
.ls23{letter-spacing:-0.384780px;}
.ls32{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.264000px;}
.ls7{letter-spacing:-0.240000px;}
.ls21{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.198000px;}
.ls33{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.162000px;}
.ls28{letter-spacing:-0.153912px;}
.ls10{letter-spacing:-0.132000px;}
.ls22{letter-spacing:-0.108000px;}
.ls2{letter-spacing:-0.096000px;}
.ls2b{letter-spacing:-0.076956px;}
.lsf{letter-spacing:-0.066000px;}
.ls6{letter-spacing:-0.060000px;}
.ls12{letter-spacing:-0.054000px;}
.ls26{letter-spacing:-0.038478px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000360px;}
.ls30{letter-spacing:0.030000px;}
.ls1c{letter-spacing:0.033000px;}
.lsc{letter-spacing:0.054000px;}
.ls3{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.066000px;}
.lsd{letter-spacing:0.081000px;}
.ls2f{letter-spacing:0.090000px;}
.ls1d{letter-spacing:0.099000px;}
.lsb{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.120000px;}
.ls13{letter-spacing:0.132000px;}
.ls20{letter-spacing:0.135000px;}
.ls2e{letter-spacing:0.150000px;}
.ls1e{letter-spacing:0.162000px;}
.ls29{letter-spacing:0.165000px;}
.ls5{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.198000px;}
.ls16{letter-spacing:0.216000px;}
.ls27{letter-spacing:0.231000px;}
.ls31{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.264000px;}
.ls1b{letter-spacing:0.330000px;}
.ls1f{letter-spacing:2.402655px;}
.ls2c{letter-spacing:102.603200px;}
.ls2d{letter-spacing:104.055600px;}
.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;}
}
.ws1b{word-spacing:-14.454000px;}
.ws27{word-spacing:-13.464000px;}
.ws39{word-spacing:-13.332000px;}
.wsd{word-spacing:-13.266000px;}
.wse{word-spacing:-13.200000px;}
.ws4{word-spacing:-13.140000px;}
.ws36{word-spacing:-13.134000px;}
.ws1f{word-spacing:-13.068000px;}
.ws37{word-spacing:-13.002000px;}
.ws7{word-spacing:-12.900000px;}
.ws20{word-spacing:-12.540000px;}
.ws30{word-spacing:-12.408000px;}
.ws3e{word-spacing:-12.180000px;}
.ws6{word-spacing:-12.120000px;}
.ws40{word-spacing:-12.060000px;}
.ws5{word-spacing:-12.000000px;}
.ws2a{word-spacing:-11.880000px;}
.ws31{word-spacing:-11.772000px;}
.ws3f{word-spacing:-11.760000px;}
.ws3a{word-spacing:-11.664000px;}
.ws3b{word-spacing:-11.610000px;}
.ws2f{word-spacing:-11.520000px;}
.ws29{word-spacing:-10.962000px;}
.wsf{word-spacing:-10.800000px;}
.ws28{word-spacing:-10.638000px;}
.ws0{word-spacing:-9.600000px;}
.ws21{word-spacing:-8.426682px;}
.ws35{word-spacing:-8.388204px;}
.ws3c{word-spacing:-8.349726px;}
.ws38{word-spacing:-8.272770px;}
.ws2{word-spacing:-4.026000px;}
.ws2b{word-spacing:-0.330000px;}
.ws1d{word-spacing:-0.264000px;}
.ws43{word-spacing:-0.240000px;}
.ws26{word-spacing:-0.216000px;}
.ws15{word-spacing:-0.198000px;}
.wsc{word-spacing:-0.180000px;}
.ws2d{word-spacing:-0.162000px;}
.ws1c{word-spacing:-0.132000px;}
.wsa{word-spacing:-0.120000px;}
.ws17{word-spacing:-0.108000px;}
.ws13{word-spacing:-0.066000px;}
.ws9{word-spacing:-0.060000px;}
.ws18{word-spacing:-0.054000px;}
.ws1a{word-spacing:-0.039000px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:0.054000px;}
.ws8{word-spacing:0.060000px;}
.ws12{word-spacing:0.066000px;}
.ws3{word-spacing:0.096000px;}
.ws2e{word-spacing:0.108000px;}
.ws14{word-spacing:0.132000px;}
.ws16{word-spacing:0.162000px;}
.ws42{word-spacing:0.180000px;}
.ws1e{word-spacing:0.198000px;}
.ws2c{word-spacing:0.216000px;}
.wsb{word-spacing:0.240000px;}
.ws11{word-spacing:0.264000px;}
.ws41{word-spacing:0.300000px;}
.ws32{word-spacing:0.384780px;}
.ws10{word-spacing:0.396000px;}
.ws3d{word-spacing:0.462000px;}
.ws25{word-spacing:0.528000px;}
.ws33{word-spacing:0.594000px;}
.ws22{word-spacing:0.660000px;}
.ws23{word-spacing:0.726000px;}
.ws34{word-spacing:0.792000px;}
.ws24{word-spacing:0.858000px;}
._5{margin-left:-6.624000px;}
._1{margin-left:-5.616000px;}
._2{margin-left:-4.242000px;}
._4{margin-left:-3.204000px;}
._0{margin-left:-2.028000px;}
._3{margin-left:-1.027800px;}
._6{width:1.476000px;}
._7{width:2.628000px;}
._8{width:4.108065px;}
._9{width:5.126243px;}
.fc1{color:rgb(167,165,166);}
.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:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs5{font-size:363.030000px;}
.y0{bottom:0.000000px;}
.y71{bottom:106.299150px;}
.y4f{bottom:106.299300px;}
.y13b{bottom:120.699150px;}
.y175{bottom:125.506650px;}
.y88{bottom:125.799150px;}
.y4e{bottom:125.799300px;}
.y70{bottom:128.625900px;}
.y149{bottom:128.799150px;}
.yf8{bottom:129.592500px;}
.y18c{bottom:139.638750px;}
.y174{bottom:144.714000px;}
.y87{bottom:145.299150px;}
.y4d{bottom:145.299300px;}
.y6f{bottom:150.952500px;}
.y148{bottom:151.299150px;}
.yf7{bottom:152.885850px;}
.y18b{bottom:159.138750px;}
.y11d{bottom:163.827450px;}
.y173{bottom:163.921350px;}
.y86{bottom:164.799150px;}
.y4c{bottom:164.799300px;}
.y127{bottom:168.079350px;}
.y6e{bottom:173.279250px;}
.y147{bottom:173.799150px;}
.yf6{bottom:176.179200px;}
.yca{bottom:176.583300px;}
.y18a{bottom:178.638750px;}
.y172{bottom:183.128700px;}
.yad{bottom:183.223500px;}
.y85{bottom:184.299150px;}
.y4b{bottom:184.299300px;}
.y150{bottom:185.087250px;}
.y11c{bottom:186.327450px;}
.yee{bottom:187.727100px;}
.y126{bottom:190.579350px;}
.y6d{bottom:195.605850px;}
.y146{bottom:196.299150px;}
.y189{bottom:198.138750px;}
.yf5{bottom:199.472550px;}
.y171{bottom:202.336050px;}
.y84{bottom:203.799150px;}
.y4a{bottom:203.799300px;}
.yc9{bottom:204.679350px;}
.yac{bottom:205.273500px;}
.y115{bottom:206.779350px;}
.y14f{bottom:207.587250px;}
.y11b{bottom:208.827450px;}
.yed{bottom:209.927100px;}
.y125{bottom:213.079350px;}
.y188{bottom:217.638750px;}
.y6c{bottom:217.932600px;}
.y145{bottom:218.799150px;}
.y170{bottom:221.543400px;}
.yf4{bottom:222.765900px;}
.y83{bottom:223.299150px;}
.y49{bottom:223.299300px;}
.ye6{bottom:225.887250px;}
.yab{bottom:227.323500px;}
.yc8{bottom:227.479350px;}
.y114{bottom:229.504350px;}
.y14e{bottom:230.087250px;}
.y11a{bottom:231.327450px;}
.yec{bottom:232.127100px;}
.y124{bottom:235.579350px;}
.y187{bottom:237.138750px;}
.y6b{bottom:240.259200px;}
.y16f{bottom:240.750750px;}
.y82{bottom:242.799150px;}
.y48{bottom:242.799300px;}
.yf3{bottom:246.059250px;}
.ye5{bottom:248.537250px;}
.yaa{bottom:249.373500px;}
.yc7{bottom:250.279350px;}
.y113{bottom:252.229350px;}
.y14d{bottom:252.587250px;}
.y119{bottom:253.827450px;}
.yeb{bottom:254.327100px;}
.y186{bottom:256.638750px;}
.y123{bottom:258.079350px;}
.y16e{bottom:259.958250px;}
.y144{bottom:261.309450px;}
.y81{bottom:262.299150px;}
.y47{bottom:262.299300px;}
.y6a{bottom:262.585950px;}
.yf2{bottom:269.352600px;}
.ye4{bottom:271.187250px;}
.ya9{bottom:271.423500px;}
.yc6{bottom:273.079350px;}
.y112{bottom:274.954350px;}
.y14c{bottom:275.087250px;}
.y143{bottom:275.709450px;}
.y185{bottom:276.138750px;}
.y118{bottom:276.327450px;}
.yea{bottom:276.527100px;}
.y16d{bottom:279.165600px;}
.y122{bottom:280.579350px;}
.ya0{bottom:281.799150px;}
.y46{bottom:281.799300px;}
.y29{bottom:282.882750px;}
.y69{bottom:284.912550px;}
.yf1{bottom:292.645950px;}
.ya8{bottom:293.473500px;}
.ye3{bottom:293.837250px;}
.y184{bottom:295.638750px;}
.yc5{bottom:295.879350px;}
.y14b{bottom:297.587250px;}
.y111{bottom:297.679350px;}
.y16c{bottom:298.372950px;}
.ye9{bottom:298.727100px;}
.y117{bottom:298.827450px;}
.y9f{bottom:301.299150px;}
.y45{bottom:301.299300px;}
.y28{bottom:302.382750px;}
.y80{bottom:303.079350px;}
.y68{bottom:307.239300px;}
.y183{bottom:315.138750px;}
.ya7{bottom:315.523500px;}
.yf0{bottom:315.939300px;}
.ye2{bottom:316.487250px;}
.y16b{bottom:317.580300px;}
.yc4{bottom:318.679350px;}
.y14a{bottom:320.087250px;}
.y110{bottom:320.404350px;}
.y9e{bottom:320.799150px;}
.y44{bottom:320.799450px;}
.ye8{bottom:320.927100px;}
.y27{bottom:321.882750px;}
.y139{bottom:322.706250px;}
.y7f{bottom:325.579350px;}
.y67{bottom:329.565900px;}
.y182{bottom:334.638750px;}
.y16a{bottom:336.787650px;}
.ya6{bottom:337.573500px;}
.ye1{bottom:339.137250px;}
.y9d{bottom:340.299150px;}
.y43{bottom:340.299450px;}
.y26{bottom:341.382750px;}
.yc3{bottom:341.479350px;}
.y116{bottom:342.587250px;}
.y10f{bottom:343.129350px;}
.ye7{bottom:343.577100px;}
.y138{bottom:345.206250px;}
.y7e{bottom:348.079350px;}
.y66{bottom:351.892650px;}
.y181{bottom:354.138750px;}
.y169{bottom:355.995000px;}
.y42{bottom:359.799450px;}
.y25{bottom:360.882750px;}
.ye0{bottom:361.787250px;}
.yc2{bottom:364.279350px;}
.y129{bottom:365.087250px;}
.y10e{bottom:365.854350px;}
.y137{bottom:367.706250px;}
.yf9{bottom:370.025250px;}
.y7d{bottom:370.579350px;}
.y180{bottom:373.638750px;}
.y65{bottom:374.219250px;}
.y168{bottom:375.202350px;}
.y41{bottom:379.299600px;}
.y24{bottom:380.382750px;}
.ya5{bottom:380.883300px;}
.ydf{bottom:384.437250px;}
.y9c{bottom:385.579350px;}
.yc1{bottom:387.079350px;}
.y128{bottom:387.587250px;}
.y10d{bottom:388.579350px;}
.y136{bottom:390.206250px;}
.y7c{bottom:393.079350px;}
.y17f{bottom:393.138750px;}
.y167{bottom:394.409700px;}
.y64{bottom:396.546000px;}
.yef{bottom:397.663050px;}
.y40{bottom:398.799600px;}
.y23{bottom:399.882750px;}
.yde{bottom:407.087250px;}
.y9b{bottom:408.454350px;}
.yb{bottom:409.846350px;}
.yc0{bottom:409.879350px;}
.y121{bottom:410.087250px;}
.y10c{bottom:411.304350px;}
.y17e{bottom:412.638750px;}
.y135{bottom:412.706250px;}
.y166{bottom:413.617200px;}
.y7b{bottom:415.579350px;}
.y3f{bottom:418.299600px;}
.y63{bottom:418.872600px;}
.y22{bottom:419.382750px;}
.y8{bottom:428.876250px;}
.ydd{bottom:429.737250px;}
.y9a{bottom:431.329350px;}
.y17d{bottom:432.138750px;}
.y120{bottom:432.587250px;}
.ybf{bottom:432.679350px;}
.y165{bottom:432.824550px;}
.y10b{bottom:434.029350px;}
.y134{bottom:435.206250px;}
.y3e{bottom:437.799600px;}
.y7a{bottom:438.079350px;}
.y21{bottom:438.882750px;}
.y62{bottom:441.199200px;}
.y7{bottom:446.876250px;}
.y17c{bottom:451.638750px;}
.y164{bottom:452.031900px;}
.ydc{bottom:452.387250px;}
.y99{bottom:454.204350px;}
.y11f{bottom:455.087250px;}
.ybe{bottom:455.479350px;}
.y10a{bottom:456.754350px;}
.y3d{bottom:457.299600px;}
.y133{bottom:457.706250px;}
.y20{bottom:458.382750px;}
.y79{bottom:460.579350px;}
.y61{bottom:463.525950px;}
.y17b{bottom:471.138750px;}
.y163{bottom:471.239250px;}
.ydb{bottom:475.037250px;}
.y98{bottom:477.079350px;}
.y11e{bottom:477.587250px;}
.y1f{bottom:477.882750px;}
.ybd{bottom:478.279350px;}
.y109{bottom:479.479350px;}
.y132{bottom:480.206250px;}
.y78{bottom:483.079350px;}
.y60{bottom:485.852550px;}
.y162{bottom:490.446600px;}
.y17a{bottom:490.638750px;}
.y1e{bottom:497.382750px;}
.yda{bottom:497.687250px;}
.ya{bottom:497.995350px;}
.y97{bottom:499.954350px;}
.y3c{bottom:500.087250px;}
.ybc{bottom:501.079350px;}
.y108{bottom:502.204350px;}
.y131{bottom:502.706250px;}
.y77{bottom:505.579350px;}
.y5f{bottom:508.179300px;}
.y161{bottom:509.653950px;}
.y141{bottom:510.053850px;}
.y179{bottom:510.138750px;}
.y1d{bottom:516.882750px;}
.yd9{bottom:520.337250px;}
.y3b{bottom:522.587250px;}
.y96{bottom:522.829350px;}
.ybb{bottom:523.879350px;}
.y130{bottom:525.206250px;}
.y6{bottom:527.655150px;}
.y76{bottom:528.079350px;}
.y160{bottom:528.861450px;}
.y178{bottom:529.638750px;}
.y5e{bottom:530.506050px;}
.y140{bottom:532.553850px;}
.y1c{bottom:536.382750px;}
.y107{bottom:541.937250px;}
.yd8{bottom:542.987250px;}
.y3a{bottom:545.087250px;}
.y5{bottom:545.655150px;}
.y95{bottom:545.704350px;}
.yba{bottom:546.679350px;}
.y12f{bottom:547.706250px;}
.y15f{bottom:548.068800px;}
.y177{bottom:549.138750px;}
.y75{bottom:550.579350px;}
.y5d{bottom:552.832650px;}
.y13f{bottom:555.053850px;}
.y1b{bottom:555.882750px;}
.y106{bottom:564.662250px;}
.yd7{bottom:565.637250px;}
.y15e{bottom:567.276150px;}
.y39{bottom:567.587250px;}
.y4{bottom:568.151250px;}
.y94{bottom:568.579350px;}
.y176{bottom:568.638750px;}
.yb9{bottom:569.479350px;}
.y12e{bottom:570.206250px;}
.y74{bottom:573.079350px;}
.y5c{bottom:575.159250px;}
.y13e{bottom:577.553850px;}
.y15d{bottom:586.483500px;}
.y105{bottom:587.387250px;}
.y1a{bottom:588.138750px;}
.yd6{bottom:588.287250px;}
.y38{bottom:590.087250px;}
.y93{bottom:591.454350px;}
.yb8{bottom:592.279350px;}
.y12d{bottom:592.706250px;}
.y73{bottom:595.579350px;}
.y13d{bottom:600.053850px;}
.y15c{bottom:605.690850px;}
.y19{bottom:607.638750px;}
.y104{bottom:610.112250px;}
.yd5{bottom:610.937250px;}
.y37{bottom:612.587250px;}
.y5b{bottom:614.493750px;}
.yb7{bottom:615.079350px;}
.y12c{bottom:615.206250px;}
.y72{bottom:618.079350px;}
.y13c{bottom:622.553850px;}
.y15b{bottom:624.898200px;}
.y18{bottom:627.138750px;}
.y92{bottom:631.337250px;}
.y103{bottom:632.837250px;}
.yd4{bottom:633.587250px;}
.y36{bottom:635.087250px;}
.y5a{bottom:636.820500px;}
.y12b{bottom:637.706250px;}
.yb6{bottom:637.879350px;}
.y15a{bottom:644.105550px;}
.y17{bottom:646.638750px;}
.y91{bottom:654.212250px;}
.y102{bottom:655.562250px;}
.yd3{bottom:656.237250px;}
.y35{bottom:657.587250px;}
.y59{bottom:659.147250px;}
.y12a{bottom:660.206250px;}
.yb5{bottom:660.679350px;}
.y159{bottom:663.313050px;}
.y16{bottom:666.138750px;}
.y142{bottom:670.851900px;}
.y90{bottom:677.087250px;}
.y101{bottom:678.287250px;}
.yd2{bottom:678.887250px;}
.y34{bottom:680.087250px;}
.y58{bottom:681.473850px;}
.y158{bottom:682.520400px;}
.yb4{bottom:683.479350px;}
.y15{bottom:685.638750px;}
.y8f{bottom:699.962250px;}
.y100{bottom:701.012250px;}
.yd1{bottom:701.537250px;}
.y157{bottom:701.727750px;}
.y32{bottom:702.587250px;}
.y57{bottom:703.800450px;}
.y14{bottom:705.138750px;}
.yb3{bottom:706.279350px;}
.y33{bottom:708.081750px;}
.y13a{bottom:713.371650px;}
.y156{bottom:720.935100px;}
.y8e{bottom:722.837250px;}
.yff{bottom:723.737250px;}
.yd0{bottom:724.187250px;}
.y13{bottom:724.638750px;}
.y31{bottom:725.087250px;}
.y56{bottom:726.127200px;}
.yb2{bottom:729.079350px;}
.y155{bottom:740.142450px;}
.y12{bottom:744.138750px;}
.y8d{bottom:745.712250px;}
.yfe{bottom:746.462250px;}
.ycf{bottom:746.837250px;}
.y30{bottom:747.587250px;}
.y55{bottom:748.453800px;}
.yb1{bottom:751.879350px;}
.y154{bottom:759.349800px;}
.y11{bottom:763.638750px;}
.y8c{bottom:768.587250px;}
.yfd{bottom:769.187250px;}
.yce{bottom:769.487250px;}
.y2f{bottom:770.087250px;}
.y54{bottom:770.780550px;}
.ya4{bottom:771.887250px;}
.y153{bottom:778.557150px;}
.y10{bottom:783.138750px;}
.y3{bottom:789.028200px;}
.y8b{bottom:791.462250px;}
.yb0{bottom:791.687250px;}
.yfc{bottom:791.912250px;}
.ycd{bottom:792.137250px;}
.y2e{bottom:792.587250px;}
.y53{bottom:793.107300px;}
.ya3{bottom:793.937250px;}
.y152{bottom:797.764650px;}
.yf{bottom:802.638750px;}
.y8a{bottom:814.337250px;}
.yaf{bottom:814.487250px;}
.yfb{bottom:814.637250px;}
.ycc{bottom:814.787250px;}
.y2b{bottom:815.087250px;}
.y52{bottom:815.433900px;}
.ya2{bottom:815.987250px;}
.ye{bottom:822.138750px;}
.y2{bottom:832.484250px;}
.y89{bottom:837.212250px;}
.yae{bottom:837.287250px;}
.yfa{bottom:837.362250px;}
.y151{bottom:837.429900px;}
.ycb{bottom:837.437250px;}
.y2d{bottom:837.587250px;}
.y51{bottom:837.760500px;}
.ya1{bottom:838.037250px;}
.yd{bottom:841.638750px;}
.y1{bottom:857.984250px;}
.y2c{bottom:860.087250px;}
.yc{bottom:861.138750px;}
.y50{bottom:871.653600px;}
.y2a{bottom:930.708000px;}
.y9{bottom:946.311000px;}
.hc{height:33.168036px;}
.he{height:33.618000px;}
.h7{height:34.530462px;}
.h6{height:41.376000px;}
.h5{height:42.768000px;}
.hf{height:44.160000px;}
.hd{height:46.548000px;}
.h9{height:48.870000px;}
.h8{height:51.720000px;}
.h3{height:52.470000px;}
.hb{height:56.892000px;}
.h4{height:59.730000px;}
.h2{height:62.010000px;}
.ha{height:312.931860px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x3{left:44.482650px;}
.xd{left:45.589800px;}
.x4{left:104.302500px;}
.x1{left:106.299150px;}
.x11{left:118.857450px;}
.x13{left:121.227450px;}
.x2{left:136.569750px;}
.xe{left:137.937450px;}
.xc{left:143.691450px;}
.x5{left:171.372300px;}
.x14{left:180.417450px;}
.x9{left:184.503450px;}
.xf{left:212.205300px;}
.x15{left:258.651450px;}
.xa{left:265.431300px;}
.x12{left:300.861450px;}
.x10{left:589.392300px;}
.x6{left:590.720850px;}
.x7{left:640.264500px;}
.xb{left:641.958900px;}
.x8{left:645.842550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls19{letter-spacing:-0.762667pt;}
.ls25{letter-spacing:-0.704000pt;}
.ls18{letter-spacing:-0.645333pt;}
.ls17{letter-spacing:-0.586667pt;}
.ls24{letter-spacing:-0.528000pt;}
.ls1a{letter-spacing:-0.469333pt;}
.ls2a{letter-spacing:-0.410667pt;}
.ls1{letter-spacing:-0.352000pt;}
.ls23{letter-spacing:-0.342027pt;}
.ls32{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.234667pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.176000pt;}
.ls33{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls28{letter-spacing:-0.136811pt;}
.ls10{letter-spacing:-0.117333pt;}
.ls22{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:-0.085333pt;}
.ls2b{letter-spacing:-0.068405pt;}
.lsf{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:-0.053333pt;}
.ls12{letter-spacing:-0.048000pt;}
.ls26{letter-spacing:-0.034203pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000320pt;}
.ls30{letter-spacing:0.026667pt;}
.ls1c{letter-spacing:0.029333pt;}
.lsc{letter-spacing:0.048000pt;}
.ls3{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.058667pt;}
.lsd{letter-spacing:0.072000pt;}
.ls2f{letter-spacing:0.080000pt;}
.ls1d{letter-spacing:0.088000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls13{letter-spacing:0.117333pt;}
.ls20{letter-spacing:0.120000pt;}
.ls2e{letter-spacing:0.133333pt;}
.ls1e{letter-spacing:0.144000pt;}
.ls29{letter-spacing:0.146667pt;}
.ls5{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.176000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls27{letter-spacing:0.205333pt;}
.ls31{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.234667pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls1f{letter-spacing:2.135693pt;}
.ls2c{letter-spacing:91.202845pt;}
.ls2d{letter-spacing:92.493867pt;}
.ws1b{word-spacing:-12.848000pt;}
.ws27{word-spacing:-11.968000pt;}
.ws39{word-spacing:-11.850667pt;}
.wsd{word-spacing:-11.792000pt;}
.wse{word-spacing:-11.733333pt;}
.ws4{word-spacing:-11.680000pt;}
.ws36{word-spacing:-11.674667pt;}
.ws1f{word-spacing:-11.616000pt;}
.ws37{word-spacing:-11.557333pt;}
.ws7{word-spacing:-11.466667pt;}
.ws20{word-spacing:-11.146667pt;}
.ws30{word-spacing:-11.029333pt;}
.ws3e{word-spacing:-10.826667pt;}
.ws6{word-spacing:-10.773333pt;}
.ws40{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.666667pt;}
.ws2a{word-spacing:-10.560000pt;}
.ws31{word-spacing:-10.464000pt;}
.ws3f{word-spacing:-10.453333pt;}
.ws3a{word-spacing:-10.368000pt;}
.ws3b{word-spacing:-10.320000pt;}
.ws2f{word-spacing:-10.240000pt;}
.ws29{word-spacing:-9.744000pt;}
.wsf{word-spacing:-9.600000pt;}
.ws28{word-spacing:-9.456000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws21{word-spacing:-7.490384pt;}
.ws35{word-spacing:-7.456181pt;}
.ws3c{word-spacing:-7.421979pt;}
.ws38{word-spacing:-7.353573pt;}
.ws2{word-spacing:-3.578667pt;}
.ws2b{word-spacing:-0.293333pt;}
.ws1d{word-spacing:-0.234667pt;}
.ws43{word-spacing:-0.213333pt;}
.ws26{word-spacing:-0.192000pt;}
.ws15{word-spacing:-0.176000pt;}
.wsc{word-spacing:-0.160000pt;}
.ws2d{word-spacing:-0.144000pt;}
.ws1c{word-spacing:-0.117333pt;}
.wsa{word-spacing:-0.106667pt;}
.ws17{word-spacing:-0.096000pt;}
.ws13{word-spacing:-0.058667pt;}
.ws9{word-spacing:-0.053333pt;}
.ws18{word-spacing:-0.048000pt;}
.ws1a{word-spacing:-0.034667pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:0.048000pt;}
.ws8{word-spacing:0.053333pt;}
.ws12{word-spacing:0.058667pt;}
.ws3{word-spacing:0.085333pt;}
.ws2e{word-spacing:0.096000pt;}
.ws14{word-spacing:0.117333pt;}
.ws16{word-spacing:0.144000pt;}
.ws42{word-spacing:0.160000pt;}
.ws1e{word-spacing:0.176000pt;}
.ws2c{word-spacing:0.192000pt;}
.wsb{word-spacing:0.213333pt;}
.ws11{word-spacing:0.234667pt;}
.ws41{word-spacing:0.266667pt;}
.ws32{word-spacing:0.342027pt;}
.ws10{word-spacing:0.352000pt;}
.ws3d{word-spacing:0.410667pt;}
.ws25{word-spacing:0.469333pt;}
.ws33{word-spacing:0.528000pt;}
.ws22{word-spacing:0.586667pt;}
.ws23{word-spacing:0.645333pt;}
.ws34{word-spacing:0.704000pt;}
.ws24{word-spacing:0.762667pt;}
._5{margin-left:-5.888000pt;}
._1{margin-left:-4.992000pt;}
._2{margin-left:-3.770667pt;}
._4{margin-left:-2.848000pt;}
._0{margin-left:-1.802667pt;}
._3{margin-left:-0.913600pt;}
._6{width:1.312000pt;}
._7{width:2.336000pt;}
._8{width:3.651614pt;}
._9{width:4.556660pt;}
.fs6{font-size:34.202667pt;}
.fs7{font-size:34.666667pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs5{font-size:322.693333pt;}
.y0{bottom:0.000000pt;}
.y71{bottom:94.488133pt;}
.y4f{bottom:94.488267pt;}
.y13b{bottom:107.288133pt;}
.y175{bottom:111.561467pt;}
.y88{bottom:111.821467pt;}
.y4e{bottom:111.821600pt;}
.y70{bottom:114.334133pt;}
.y149{bottom:114.488133pt;}
.yf8{bottom:115.193333pt;}
.y18c{bottom:124.123333pt;}
.y174{bottom:128.634667pt;}
.y87{bottom:129.154800pt;}
.y4d{bottom:129.154933pt;}
.y6f{bottom:134.180000pt;}
.y148{bottom:134.488133pt;}
.yf7{bottom:135.898533pt;}
.y18b{bottom:141.456667pt;}
.y11d{bottom:145.624400pt;}
.y173{bottom:145.707867pt;}
.y86{bottom:146.488133pt;}
.y4c{bottom:146.488267pt;}
.y127{bottom:149.403867pt;}
.y6e{bottom:154.026000pt;}
.y147{bottom:154.488133pt;}
.yf6{bottom:156.603733pt;}
.yca{bottom:156.962933pt;}
.y18a{bottom:158.790000pt;}
.y172{bottom:162.781067pt;}
.yad{bottom:162.865333pt;}
.y85{bottom:163.821467pt;}
.y4b{bottom:163.821600pt;}
.y150{bottom:164.522000pt;}
.y11c{bottom:165.624400pt;}
.yee{bottom:166.868533pt;}
.y126{bottom:169.403867pt;}
.y6d{bottom:173.871867pt;}
.y146{bottom:174.488133pt;}
.y189{bottom:176.123333pt;}
.yf5{bottom:177.308933pt;}
.y171{bottom:179.854267pt;}
.y84{bottom:181.154800pt;}
.y4a{bottom:181.154933pt;}
.yc9{bottom:181.937200pt;}
.yac{bottom:182.465333pt;}
.y115{bottom:183.803867pt;}
.y14f{bottom:184.522000pt;}
.y11b{bottom:185.624400pt;}
.yed{bottom:186.601867pt;}
.y125{bottom:189.403867pt;}
.y188{bottom:193.456667pt;}
.y6c{bottom:193.717867pt;}
.y145{bottom:194.488133pt;}
.y170{bottom:196.927467pt;}
.yf4{bottom:198.014133pt;}
.y83{bottom:198.488133pt;}
.y49{bottom:198.488267pt;}
.ye6{bottom:200.788667pt;}
.yab{bottom:202.065333pt;}
.yc8{bottom:202.203867pt;}
.y114{bottom:204.003867pt;}
.y14e{bottom:204.522000pt;}
.y11a{bottom:205.624400pt;}
.yec{bottom:206.335200pt;}
.y124{bottom:209.403867pt;}
.y187{bottom:210.790000pt;}
.y6b{bottom:213.563733pt;}
.y16f{bottom:214.000667pt;}
.y82{bottom:215.821467pt;}
.y48{bottom:215.821600pt;}
.yf3{bottom:218.719333pt;}
.ye5{bottom:220.922000pt;}
.yaa{bottom:221.665333pt;}
.yc7{bottom:222.470533pt;}
.y113{bottom:224.203867pt;}
.y14d{bottom:224.522000pt;}
.y119{bottom:225.624400pt;}
.yeb{bottom:226.068533pt;}
.y186{bottom:228.123333pt;}
.y123{bottom:229.403867pt;}
.y16e{bottom:231.074000pt;}
.y144{bottom:232.275067pt;}
.y81{bottom:233.154800pt;}
.y47{bottom:233.154933pt;}
.y6a{bottom:233.409733pt;}
.yf2{bottom:239.424533pt;}
.ye4{bottom:241.055333pt;}
.ya9{bottom:241.265333pt;}
.yc6{bottom:242.737200pt;}
.y112{bottom:244.403867pt;}
.y14c{bottom:244.522000pt;}
.y143{bottom:245.075067pt;}
.y185{bottom:245.456667pt;}
.y118{bottom:245.624400pt;}
.yea{bottom:245.801867pt;}
.y16d{bottom:248.147200pt;}
.y122{bottom:249.403867pt;}
.ya0{bottom:250.488133pt;}
.y46{bottom:250.488267pt;}
.y29{bottom:251.451333pt;}
.y69{bottom:253.255600pt;}
.yf1{bottom:260.129733pt;}
.ya8{bottom:260.865333pt;}
.ye3{bottom:261.188667pt;}
.y184{bottom:262.790000pt;}
.yc5{bottom:263.003867pt;}
.y14b{bottom:264.522000pt;}
.y111{bottom:264.603867pt;}
.y16c{bottom:265.220400pt;}
.ye9{bottom:265.535200pt;}
.y117{bottom:265.624400pt;}
.y9f{bottom:267.821467pt;}
.y45{bottom:267.821600pt;}
.y28{bottom:268.784667pt;}
.y80{bottom:269.403867pt;}
.y68{bottom:273.101600pt;}
.y183{bottom:280.123333pt;}
.ya7{bottom:280.465333pt;}
.yf0{bottom:280.834933pt;}
.ye2{bottom:281.322000pt;}
.y16b{bottom:282.293600pt;}
.yc4{bottom:283.270533pt;}
.y14a{bottom:284.522000pt;}
.y110{bottom:284.803867pt;}
.y9e{bottom:285.154800pt;}
.y44{bottom:285.155067pt;}
.ye8{bottom:285.268533pt;}
.y27{bottom:286.118000pt;}
.y139{bottom:286.850000pt;}
.y7f{bottom:289.403867pt;}
.y67{bottom:292.947467pt;}
.y182{bottom:297.456667pt;}
.y16a{bottom:299.366800pt;}
.ya6{bottom:300.065333pt;}
.ye1{bottom:301.455333pt;}
.y9d{bottom:302.488133pt;}
.y43{bottom:302.488400pt;}
.y26{bottom:303.451333pt;}
.yc3{bottom:303.537200pt;}
.y116{bottom:304.522000pt;}
.y10f{bottom:305.003867pt;}
.ye7{bottom:305.401867pt;}
.y138{bottom:306.850000pt;}
.y7e{bottom:309.403867pt;}
.y66{bottom:312.793467pt;}
.y181{bottom:314.790000pt;}
.y169{bottom:316.440000pt;}
.y42{bottom:319.821733pt;}
.y25{bottom:320.784667pt;}
.ye0{bottom:321.588667pt;}
.yc2{bottom:323.803867pt;}
.y129{bottom:324.522000pt;}
.y10e{bottom:325.203867pt;}
.y137{bottom:326.850000pt;}
.yf9{bottom:328.911333pt;}
.y7d{bottom:329.403867pt;}
.y180{bottom:332.123333pt;}
.y65{bottom:332.639333pt;}
.y168{bottom:333.513200pt;}
.y41{bottom:337.155200pt;}
.y24{bottom:338.118000pt;}
.ya5{bottom:338.562933pt;}
.ydf{bottom:341.722000pt;}
.y9c{bottom:342.737200pt;}
.yc1{bottom:344.070533pt;}
.y128{bottom:344.522000pt;}
.y10d{bottom:345.403867pt;}
.y136{bottom:346.850000pt;}
.y7c{bottom:349.403867pt;}
.y17f{bottom:349.456667pt;}
.y167{bottom:350.586400pt;}
.y64{bottom:352.485333pt;}
.yef{bottom:353.478267pt;}
.y40{bottom:354.488533pt;}
.y23{bottom:355.451333pt;}
.yde{bottom:361.855333pt;}
.y9b{bottom:363.070533pt;}
.yb{bottom:364.307867pt;}
.yc0{bottom:364.337200pt;}
.y121{bottom:364.522000pt;}
.y10c{bottom:365.603867pt;}
.y17e{bottom:366.790000pt;}
.y135{bottom:366.850000pt;}
.y166{bottom:367.659733pt;}
.y7b{bottom:369.403867pt;}
.y3f{bottom:371.821867pt;}
.y63{bottom:372.331200pt;}
.y22{bottom:372.784667pt;}
.y8{bottom:381.223333pt;}
.ydd{bottom:381.988667pt;}
.y9a{bottom:383.403867pt;}
.y17d{bottom:384.123333pt;}
.y120{bottom:384.522000pt;}
.ybf{bottom:384.603867pt;}
.y165{bottom:384.732933pt;}
.y10b{bottom:385.803867pt;}
.y134{bottom:386.850000pt;}
.y3e{bottom:389.155200pt;}
.y7a{bottom:389.403867pt;}
.y21{bottom:390.118000pt;}
.y62{bottom:392.177067pt;}
.y7{bottom:397.223333pt;}
.y17c{bottom:401.456667pt;}
.y164{bottom:401.806133pt;}
.ydc{bottom:402.122000pt;}
.y99{bottom:403.737200pt;}
.y11f{bottom:404.522000pt;}
.ybe{bottom:404.870533pt;}
.y10a{bottom:406.003867pt;}
.y3d{bottom:406.488533pt;}
.y133{bottom:406.850000pt;}
.y20{bottom:407.451333pt;}
.y79{bottom:409.403867pt;}
.y61{bottom:412.023067pt;}
.y17b{bottom:418.790000pt;}
.y163{bottom:418.879333pt;}
.ydb{bottom:422.255333pt;}
.y98{bottom:424.070533pt;}
.y11e{bottom:424.522000pt;}
.y1f{bottom:424.784667pt;}
.ybd{bottom:425.137200pt;}
.y109{bottom:426.203867pt;}
.y132{bottom:426.850000pt;}
.y78{bottom:429.403867pt;}
.y60{bottom:431.868933pt;}
.y162{bottom:435.952533pt;}
.y17a{bottom:436.123333pt;}
.y1e{bottom:442.118000pt;}
.yda{bottom:442.388667pt;}
.ya{bottom:442.662533pt;}
.y97{bottom:444.403867pt;}
.y3c{bottom:444.522000pt;}
.ybc{bottom:445.403867pt;}
.y108{bottom:446.403867pt;}
.y131{bottom:446.850000pt;}
.y77{bottom:449.403867pt;}
.y5f{bottom:451.714933pt;}
.y161{bottom:453.025733pt;}
.y141{bottom:453.381200pt;}
.y179{bottom:453.456667pt;}
.y1d{bottom:459.451333pt;}
.yd9{bottom:462.522000pt;}
.y3b{bottom:464.522000pt;}
.y96{bottom:464.737200pt;}
.ybb{bottom:465.670533pt;}
.y130{bottom:466.850000pt;}
.y6{bottom:469.026800pt;}
.y76{bottom:469.403867pt;}
.y160{bottom:470.099067pt;}
.y178{bottom:470.790000pt;}
.y5e{bottom:471.560933pt;}
.y140{bottom:473.381200pt;}
.y1c{bottom:476.784667pt;}
.y107{bottom:481.722000pt;}
.yd8{bottom:482.655333pt;}
.y3a{bottom:484.522000pt;}
.y5{bottom:485.026800pt;}
.y95{bottom:485.070533pt;}
.yba{bottom:485.937200pt;}
.y12f{bottom:486.850000pt;}
.y15f{bottom:487.172267pt;}
.y177{bottom:488.123333pt;}
.y75{bottom:489.403867pt;}
.y5d{bottom:491.406800pt;}
.y13f{bottom:493.381200pt;}
.y1b{bottom:494.118000pt;}
.y106{bottom:501.922000pt;}
.yd7{bottom:502.788667pt;}
.y15e{bottom:504.245467pt;}
.y39{bottom:504.522000pt;}
.y4{bottom:505.023333pt;}
.y94{bottom:505.403867pt;}
.y176{bottom:505.456667pt;}
.yb9{bottom:506.203867pt;}
.y12e{bottom:506.850000pt;}
.y74{bottom:509.403867pt;}
.y5c{bottom:511.252667pt;}
.y13e{bottom:513.381200pt;}
.y15d{bottom:521.318667pt;}
.y105{bottom:522.122000pt;}
.y1a{bottom:522.790000pt;}
.yd6{bottom:522.922000pt;}
.y38{bottom:524.522000pt;}
.y93{bottom:525.737200pt;}
.yb8{bottom:526.470533pt;}
.y12d{bottom:526.850000pt;}
.y73{bottom:529.403867pt;}
.y13d{bottom:533.381200pt;}
.y15c{bottom:538.391867pt;}
.y19{bottom:540.123333pt;}
.y104{bottom:542.322000pt;}
.yd5{bottom:543.055333pt;}
.y37{bottom:544.522000pt;}
.y5b{bottom:546.216667pt;}
.yb7{bottom:546.737200pt;}
.y12c{bottom:546.850000pt;}
.y72{bottom:549.403867pt;}
.y13c{bottom:553.381200pt;}
.y15b{bottom:555.465067pt;}
.y18{bottom:557.456667pt;}
.y92{bottom:561.188667pt;}
.y103{bottom:562.522000pt;}
.yd4{bottom:563.188667pt;}
.y36{bottom:564.522000pt;}
.y5a{bottom:566.062667pt;}
.y12b{bottom:566.850000pt;}
.yb6{bottom:567.003867pt;}
.y15a{bottom:572.538267pt;}
.y17{bottom:574.790000pt;}
.y91{bottom:581.522000pt;}
.y102{bottom:582.722000pt;}
.yd3{bottom:583.322000pt;}
.y35{bottom:584.522000pt;}
.y59{bottom:585.908667pt;}
.y12a{bottom:586.850000pt;}
.yb5{bottom:587.270533pt;}
.y159{bottom:589.611600pt;}
.y16{bottom:592.123333pt;}
.y142{bottom:596.312800pt;}
.y90{bottom:601.855333pt;}
.y101{bottom:602.922000pt;}
.yd2{bottom:603.455333pt;}
.y34{bottom:604.522000pt;}
.y58{bottom:605.754533pt;}
.y158{bottom:606.684800pt;}
.yb4{bottom:607.537200pt;}
.y15{bottom:609.456667pt;}
.y8f{bottom:622.188667pt;}
.y100{bottom:623.122000pt;}
.yd1{bottom:623.588667pt;}
.y157{bottom:623.758000pt;}
.y32{bottom:624.522000pt;}
.y57{bottom:625.600400pt;}
.y14{bottom:626.790000pt;}
.yb3{bottom:627.803867pt;}
.y33{bottom:629.406000pt;}
.y13a{bottom:634.108133pt;}
.y156{bottom:640.831200pt;}
.y8e{bottom:642.522000pt;}
.yff{bottom:643.322000pt;}
.yd0{bottom:643.722000pt;}
.y13{bottom:644.123333pt;}
.y31{bottom:644.522000pt;}
.y56{bottom:645.446400pt;}
.yb2{bottom:648.070533pt;}
.y155{bottom:657.904400pt;}
.y12{bottom:661.456667pt;}
.y8d{bottom:662.855333pt;}
.yfe{bottom:663.522000pt;}
.ycf{bottom:663.855333pt;}
.y30{bottom:664.522000pt;}
.y55{bottom:665.292267pt;}
.yb1{bottom:668.337200pt;}
.y154{bottom:674.977600pt;}
.y11{bottom:678.790000pt;}
.y8c{bottom:683.188667pt;}
.yfd{bottom:683.722000pt;}
.yce{bottom:683.988667pt;}
.y2f{bottom:684.522000pt;}
.y54{bottom:685.138267pt;}
.ya4{bottom:686.122000pt;}
.y153{bottom:692.050800pt;}
.y10{bottom:696.123333pt;}
.y3{bottom:701.358400pt;}
.y8b{bottom:703.522000pt;}
.yb0{bottom:703.722000pt;}
.yfc{bottom:703.922000pt;}
.ycd{bottom:704.122000pt;}
.y2e{bottom:704.522000pt;}
.y53{bottom:704.984267pt;}
.ya3{bottom:705.722000pt;}
.y152{bottom:709.124133pt;}
.yf{bottom:713.456667pt;}
.y8a{bottom:723.855333pt;}
.yaf{bottom:723.988667pt;}
.yfb{bottom:724.122000pt;}
.ycc{bottom:724.255333pt;}
.y2b{bottom:724.522000pt;}
.y52{bottom:724.830133pt;}
.ya2{bottom:725.322000pt;}
.ye{bottom:730.790000pt;}
.y2{bottom:739.986000pt;}
.y89{bottom:744.188667pt;}
.yae{bottom:744.255333pt;}
.yfa{bottom:744.322000pt;}
.y151{bottom:744.382133pt;}
.ycb{bottom:744.388667pt;}
.y2d{bottom:744.522000pt;}
.y51{bottom:744.676000pt;}
.ya1{bottom:744.922000pt;}
.yd{bottom:748.123333pt;}
.y1{bottom:762.652667pt;}
.y2c{bottom:764.522000pt;}
.yc{bottom:765.456667pt;}
.y50{bottom:774.803200pt;}
.y2a{bottom:827.296000pt;}
.y9{bottom:841.165333pt;}
.hc{height:29.482699pt;}
.he{height:29.882667pt;}
.h7{height:30.693744pt;}
.h6{height:36.778667pt;}
.h5{height:38.016000pt;}
.hf{height:39.253333pt;}
.hd{height:41.376000pt;}
.h9{height:43.440000pt;}
.h8{height:45.973333pt;}
.h3{height:46.640000pt;}
.hb{height:50.570667pt;}
.h4{height:53.093333pt;}
.h2{height:55.120000pt;}
.ha{height:278.161653pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x3{left:39.540133pt;}
.xd{left:40.524267pt;}
.x4{left:92.713333pt;}
.x1{left:94.488133pt;}
.x11{left:105.651067pt;}
.x13{left:107.757733pt;}
.x2{left:121.395333pt;}
.xe{left:122.611067pt;}
.xc{left:127.725733pt;}
.x5{left:152.330933pt;}
.x14{left:160.371067pt;}
.x9{left:164.003067pt;}
.xf{left:188.626933pt;}
.x15{left:229.912400pt;}
.xa{left:235.938933pt;}
.x12{left:267.432400pt;}
.x10{left:523.904267pt;}
.x6{left:525.085200pt;}
.x7{left:569.124000pt;}
.xb{left:570.630133pt;}
.x8{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; }
  