
    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_e32c3681258d19d5c5f6079c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.996000;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_3f212d82bf47767a45ef4ac6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128000;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_493a16e5bd60051f1d6e1c6c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2279ed15c1e24630fa46a511.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128000;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_f1d4b56527c17212fb421400.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128000;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_cdfc5f880e5aee5667d2c066.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128000;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_f1d4b56527c17212fb421400.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128000;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_a8e7f2c5ef43f2dd675408fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666000;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;}
.m24{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);}
.mac{transform:matrix(0.247527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247527,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247538,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247563,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247570,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247580,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247615,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247620,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247645,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247710,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247760,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247813,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247823,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247828,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247922,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247930,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247944,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247947,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247993,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248063,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);}
.m5d{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);}
.m25{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248262,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248303,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248352,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248497,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248499,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248520,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248530,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.248546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248546,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m4{transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248588,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248613,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248695,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248785,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248797,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248860,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248863,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248864,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.me5{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248930,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249053,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249107,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249122,0.000000,0.000000,0.250000,0,0);}
.m80{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);}
.mca{transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249158,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249198,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249210,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.ma6{transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249305,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249345,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249350,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249388,0.000000,0.000000,0.250000,0,0);}
.mb1{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);}
.m1a{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249557,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m56{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);}
.m57{transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249580,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249585,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249588,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249590,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249594,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249648,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249652,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249702,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249777,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249815,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249818,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249820,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249828,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249860,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249908,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.mbf{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);}
.mcd{transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249940,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249942,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249965,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,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);}
.m6b{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250043,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250128,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.mf8{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);}
.m40{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250265,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250292,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250348,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250375,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250393,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250395,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250437,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.mea{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);}
.m8b{transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250477,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250522,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m74{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);}
.m1d{transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250572,0.000000,0.000000,0.250000,0,0);}
.mf3{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);}
.m15{transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250638,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250663,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250702,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250713,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250715,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250717,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250752,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250823,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250855,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250912,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251025,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.md4{transform:matrix(0.251051,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251051,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251051,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251060,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251120,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251140,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251408,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);}
.m95{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);}
.m100{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);}
.m101{transform:matrix(0.251497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251497,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251525,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251560,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251580,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251622,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251658,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251680,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251752,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251872,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251928,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251994,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252022,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252135,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252335,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252485,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252498,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.ls23{letter-spacing:-0.960000px;}
.ls2c{letter-spacing:-0.660000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls1e{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.480000px;}
.ls1d{letter-spacing:-0.420000px;}
.ls1a{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.314820px;}
.ls2b{letter-spacing:-0.300000px;}
.ls12{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.180000px;}
.lsa{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.120000px;}
.ls1f{letter-spacing:-0.104940px;}
.ls9{letter-spacing:-0.083952px;}
.ls20{letter-spacing:-0.069960px;}
.ls13{letter-spacing:-0.060000px;}
.ls2a{letter-spacing:-0.048000px;}
.ls29{letter-spacing:-0.027984px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.048000px;}
.lsb{letter-spacing:0.055968px;}
.ls0{letter-spacing:0.060000px;}
.ls28{letter-spacing:0.069960px;}
.lsc{letter-spacing:0.096000px;}
.ls14{letter-spacing:0.111936px;}
.ls27{letter-spacing:0.119400px;}
.ls1{letter-spacing:0.120000px;}
.ls19{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.150000px;}
.lsf{letter-spacing:0.170590px;}
.ls5{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.192000px;}
.ls26{letter-spacing:0.210000px;}
.ls2{letter-spacing:0.240000px;}
.ls16{letter-spacing:0.270000px;}
.lse{letter-spacing:0.300000px;}
.ls4{letter-spacing:0.330000px;}
.ls15{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.780000px;}
.ls21{letter-spacing:1.610400px;}
.ls17{letter-spacing:2.443568px;}
.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;}
}
.ws2d{word-spacing:-12.360000px;}
.ws5d{word-spacing:-12.240000px;}
.ws4a{word-spacing:-12.180000px;}
.ws66{word-spacing:-12.120000px;}
.ws0{word-spacing:-12.060000px;}
.ws15{word-spacing:-12.000000px;}
.ws3a{word-spacing:-11.940000px;}
.ws57{word-spacing:-11.460000px;}
.ws72{word-spacing:-9.840000px;}
.ws3d{word-spacing:-9.744000px;}
.ws3{word-spacing:-9.600000px;}
.ws59{word-spacing:-8.640000px;}
.ws69{word-spacing:-7.065960px;}
.ws1{word-spacing:-6.996000px;}
.ws51{word-spacing:-6.926040px;}
.ws58{word-spacing:-6.681180px;}
.ws4{word-spacing:-5.652768px;}
.ws16{word-spacing:-5.596800px;}
.ws2{word-spacing:-5.512848px;}
.ws2b{word-spacing:-1.920000px;}
.wsc{word-spacing:-1.860000px;}
.wsb{word-spacing:-1.800000px;}
.ws43{word-spacing:-1.740000px;}
.ws60{word-spacing:-1.620000px;}
.ws44{word-spacing:-1.560000px;}
.ws4b{word-spacing:-1.500000px;}
.ws56{word-spacing:-1.488000px;}
.ws5b{word-spacing:-1.440000px;}
.ws3f{word-spacing:-1.380000px;}
.ws17{word-spacing:-1.320000px;}
.ws20{word-spacing:-1.260000px;}
.ws63{word-spacing:-1.200000px;}
.ws30{word-spacing:-1.140000px;}
.ws3e{word-spacing:-1.020000px;}
.ws47{word-spacing:-0.960000px;}
.ws70{word-spacing:-0.900000px;}
.ws61{word-spacing:-0.840000px;}
.ws41{word-spacing:-0.780000px;}
.ws6a{word-spacing:-0.720000px;}
.ws54{word-spacing:-0.660000px;}
.ws6d{word-spacing:-0.624000px;}
.ws71{word-spacing:-0.600000px;}
.ws6f{word-spacing:-0.540000px;}
.ws48{word-spacing:-0.480000px;}
.ws5e{word-spacing:-0.420000px;}
.ws25{word-spacing:-0.360000px;}
.ws1d{word-spacing:-0.300000px;}
.ws26{word-spacing:-0.240000px;}
.ws22{word-spacing:-0.192000px;}
.ws7{word-spacing:-0.180000px;}
.ws49{word-spacing:-0.144000px;}
.wsd{word-spacing:-0.120000px;}
.ws21{word-spacing:-0.111936px;}
.ws13{word-spacing:-0.096000px;}
.ws18{word-spacing:-0.060000px;}
.ws74{word-spacing:-0.055968px;}
.ws23{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws6b{word-spacing:0.027984px;}
.ws6c{word-spacing:0.048000px;}
.ws1e{word-spacing:0.060000px;}
.ws5f{word-spacing:0.069960px;}
.ws53{word-spacing:0.104940px;}
.wsa{word-spacing:0.120000px;}
.ws12{word-spacing:0.144000px;}
.ws8{word-spacing:0.180000px;}
.ws2f{word-spacing:0.240000px;}
.ws3b{word-spacing:0.300000px;}
.ws31{word-spacing:0.360000px;}
.ws11{word-spacing:0.420000px;}
.ws4f{word-spacing:0.480000px;}
.ws2a{word-spacing:0.540000px;}
.ws3c{word-spacing:0.600000px;}
.ws62{word-spacing:0.660000px;}
.ws39{word-spacing:0.720000px;}
.ws27{word-spacing:0.780000px;}
.ws10{word-spacing:0.840000px;}
.ws1c{word-spacing:0.900000px;}
.ws73{word-spacing:0.960000px;}
.ws19{word-spacing:1.020000px;}
.ws65{word-spacing:1.056000px;}
.ws33{word-spacing:1.080000px;}
.ws34{word-spacing:1.140000px;}
.ws52{word-spacing:1.200000px;}
.ws4d{word-spacing:1.260000px;}
.ws29{word-spacing:1.320000px;}
.ws14{word-spacing:1.344000px;}
.ws40{word-spacing:1.380000px;}
.ws5c{word-spacing:1.488000px;}
.ws42{word-spacing:1.500000px;}
.ws6e{word-spacing:1.560000px;}
.ws28{word-spacing:1.620000px;}
.ws24{word-spacing:1.632000px;}
.ws4c{word-spacing:1.680000px;}
.ws38{word-spacing:1.740000px;}
.ws1a{word-spacing:1.800000px;}
.ws2e{word-spacing:1.860000px;}
.ws2c{word-spacing:1.920000px;}
.ws50{word-spacing:1.980000px;}
.ws1f{word-spacing:2.040000px;}
.ws55{word-spacing:2.100000px;}
.ws5a{word-spacing:2.220000px;}
.ws35{word-spacing:2.280000px;}
.ws6{word-spacing:2.340000px;}
.ws9{word-spacing:2.400000px;}
.ws37{word-spacing:2.460000px;}
.ws64{word-spacing:2.640000px;}
.ws46{word-spacing:2.700000px;}
.ws4e{word-spacing:2.820000px;}
.ws1b{word-spacing:2.940000px;}
.ws32{word-spacing:3.120000px;}
.ws67{word-spacing:3.180000px;}
.wsf{word-spacing:3.240000px;}
.ws36{word-spacing:3.600000px;}
.ws68{word-spacing:4.740000px;}
.wse{word-spacing:5.280000px;}
.ws45{word-spacing:5.760000px;}
._a{margin-left:-8.400000px;}
._1{margin-left:-6.000000px;}
._7{margin-left:-4.968600px;}
._2{margin-left:-3.918600px;}
._6{margin-left:-2.911200px;}
._0{margin-left:-1.894200px;}
._3{width:1.062600px;}
._4{width:2.532000px;}
._5{width:4.248000px;}
._9{width:6.378000px;}
._8{width:7.702200px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.984000px;}
.fs3{font-size:34.980000px;}
.fs0{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y54{bottom:50.226900px;}
.y2b{bottom:54.502500px;}
.y28{bottom:86.740050px;}
.y51{bottom:86.740200px;}
.y76{bottom:86.740350px;}
.ya9{bottom:90.736350px;}
.y27{bottom:101.740050px;}
.y75{bottom:101.740350px;}
.ya8{bottom:101.740500px;}
.y26{bottom:105.736050px;}
.y50{bottom:105.736200px;}
.y74{bottom:105.736350px;}
.yc0{bottom:105.736500px;}
.ya2{bottom:107.276850px;}
.y100{bottom:107.380650px;}
.y105{bottom:113.782950px;}
.y25{bottom:116.740050px;}
.y4f{bottom:116.740200px;}
.y125{bottom:116.740350px;}
.y73{bottom:116.740500px;}
.yc5{bottom:116.740650px;}
.y80{bottom:120.736350px;}
.y7f{bottom:120.736500px;}
.ybf{bottom:120.736650px;}
.ya1{bottom:127.813500px;}
.y11d{bottom:128.021100px;}
.y24{bottom:131.740050px;}
.y4e{bottom:131.740200px;}
.y72{bottom:131.740500px;}
.ybb{bottom:131.740650px;}
.y104{bottom:134.032950px;}
.y71{bottom:135.736500px;}
.yc4{bottom:135.736650px;}
.ybe{bottom:135.736800px;}
.y114{bottom:140.517150px;}
.yff{bottom:145.029000px;}
.y23{bottom:146.740050px;}
.y4d{bottom:146.740200px;}
.yba{bottom:146.740650px;}
.ya0{bottom:148.350300px;}
.y11c{bottom:148.661700px;}
.y22{bottom:150.736050px;}
.y103{bottom:154.282950px;}
.y7e{bottom:157.525050px;}
.y113{bottom:160.767150px;}
.y21{bottom:161.740050px;}
.y4c{bottom:161.740200px;}
.yb9{bottom:161.740650px;}
.yfe{bottom:165.669600px;}
.y4b{bottom:165.736200px;}
.y9f{bottom:168.886950px;}
.y123{bottom:169.302150px;}
.y102{bottom:174.532950px;}
.y20{bottom:176.740050px;}
.y70{bottom:177.775050px;}
.y1f{bottom:180.736050px;}
.yb8{bottom:180.736650px;}
.ya7{bottom:181.017150px;}
.ybd{bottom:182.770050px;}
.yfd{bottom:186.310050px;}
.y9e{bottom:189.423750px;}
.y122{bottom:189.942600px;}
.ydf{bottom:191.540850px;}
.y101{bottom:194.782950px;}
.yb7{bottom:195.736800px;}
.y6f{bottom:198.025050px;}
.ya6{bottom:201.267150px;}
.yfc{bottom:206.950500px;}
.y9d{bottom:209.960400px;}
.yde{bottom:211.790850px;}
.y1e{bottom:214.504200px;}
.y4a{bottom:215.032950px;}
.y6e{bottom:218.275050px;}
.ya5{bottom:221.517150px;}
.yfb{bottom:227.591100px;}
.y9c{bottom:230.497200px;}
.ydd{bottom:232.040850px;}
.y1d{bottom:234.754200px;}
.y49{bottom:235.282950px;}
.y6d{bottom:238.525050px;}
.y112{bottom:241.767150px;}
.yfa{bottom:248.231550px;}
.y9b{bottom:251.033850px;}
.ydc{bottom:252.290850px;}
.y1c{bottom:255.004200px;}
.y48{bottom:255.532950px;}
.y6c{bottom:258.775050px;}
.y111{bottom:262.017150px;}
.yf9{bottom:268.872000px;}
.y9a{bottom:271.570500px;}
.ydb{bottom:272.540850px;}
.y1b{bottom:275.254200px;}
.y47{bottom:275.782950px;}
.y6b{bottom:279.025050px;}
.y110{bottom:282.267150px;}
.yf8{bottom:289.512600px;}
.y99{bottom:292.107300px;}
.yda{bottom:292.790850px;}
.y1a{bottom:295.504200px;}
.y46{bottom:296.032950px;}
.y6a{bottom:299.275050px;}
.y10f{bottom:302.517150px;}
.ybc{bottom:304.270050px;}
.yf7{bottom:310.153050px;}
.y98{bottom:312.643950px;}
.yd9{bottom:313.040850px;}
.y19{bottom:315.754200px;}
.y45{bottom:316.282950px;}
.y69{bottom:319.525050px;}
.y10e{bottom:322.767150px;}
.yf6{bottom:330.793500px;}
.y97{bottom:333.180750px;}
.yd8{bottom:333.290850px;}
.y17{bottom:336.004200px;}
.y44{bottom:336.532950px;}
.y68{bottom:339.775050px;}
.y18{bottom:340.999200px;}
.y10d{bottom:343.017150px;}
.yd3{bottom:350.188500px;}
.yf5{bottom:351.434100px;}
.yd7{bottom:353.540850px;}
.y96{bottom:353.717400px;}
.y16{bottom:356.254200px;}
.y43{bottom:356.782950px;}
.y67{bottom:360.025050px;}
.y10c{bottom:363.267150px;}
.y11b{bottom:368.442000px;}
.yd2{bottom:370.725300px;}
.yf4{bottom:372.074550px;}
.yd6{bottom:373.790850px;}
.y95{bottom:374.254050px;}
.y15{bottom:376.504200px;}
.y42{bottom:377.032950px;}
.y66{bottom:380.275050px;}
.y10b{bottom:383.517150px;}
.yb6{bottom:385.270050px;}
.y11a{bottom:389.082450px;}
.yd1{bottom:391.261950px;}
.yd5{bottom:394.040850px;}
.y94{bottom:394.790850px;}
.y14{bottom:396.754200px;}
.y7d{bottom:397.282950px;}
.yb5{bottom:400.525050px;}
.y10a{bottom:403.767150px;}
.yf3{bottom:409.722900px;}
.yd0{bottom:411.798750px;}
.y41{bottom:414.290850px;}
.y93{bottom:415.327500px;}
.y13{bottom:417.004200px;}
.y65{bottom:417.532950px;}
.yb4{bottom:420.775050px;}
.y109{bottom:424.017150px;}
.y121{bottom:426.730800px;}
.yf2{bottom:430.363350px;}
.ycf{bottom:432.335400px;}
.y40{bottom:434.540850px;}
.y12{bottom:437.254200px;}
.y64{bottom:437.782950px;}
.yb3{bottom:441.025050px;}
.y120{bottom:447.371250px;}
.yf1{bottom:451.003950px;}
.y92{bottom:452.872200px;}
.y3f{bottom:454.790850px;}
.y11{bottom:457.504200px;}
.y63{bottom:458.032950px;}
.yb2{bottom:461.275050px;}
.y11f{bottom:468.011850px;}
.yf0{bottom:471.644400px;}
.yce{bottom:473.408850px;}
.y3e{bottom:475.040850px;}
.y62{bottom:478.282950px;}
.yb1{bottom:481.525050px;}
.y11e{bottom:488.652300px;}
.y91{bottom:490.416750px;}
.yef{bottom:492.284850px;}
.ycd{bottom:493.945650px;}
.y10{bottom:494.762100px;}
.y3d{bottom:495.290850px;}
.y61{bottom:498.532950px;}
.yc3{bottom:501.775050px;}
.y119{bottom:509.292750px;}
.y90{bottom:510.953400px;}
.yee{bottom:512.925450px;}
.ycc{bottom:514.482300px;}
.yf{bottom:515.012100px;}
.y3c{bottom:515.540850px;}
.y60{bottom:518.782950px;}
.yc2{bottom:522.025050px;}
.y118{bottom:529.933350px;}
.y8f{bottom:531.490200px;}
.ye{bottom:535.262100px;}
.y3b{bottom:535.790850px;}
.y5f{bottom:539.032950px;}
.y124{bottom:540.785850px;}
.yc1{bottom:542.275050px;}
.yed{bottom:550.573800px;}
.y8e{bottom:552.026850px;}
.yd4{bottom:552.798750px;}
.yd{bottom:555.512100px;}
.y3a{bottom:556.040850px;}
.y5e{bottom:559.282950px;}
.y108{bottom:562.525050px;}
.yec{bottom:571.214250px;}
.y8d{bottom:572.563500px;}
.y7b{bottom:573.048750px;}
.yc{bottom:575.762100px;}
.y39{bottom:576.290850px;}
.y7c{bottom:578.043750px;}
.y5d{bottom:579.532950px;}
.y107{bottom:582.775050px;}
.yeb{bottom:591.854850px;}
.y8c{bottom:593.100300px;}
.y7a{bottom:593.298750px;}
.yb{bottom:596.012100px;}
.y38{bottom:596.540850px;}
.y5c{bottom:599.782950px;}
.y106{bottom:603.025050px;}
.yea{bottom:612.495300px;}
.y79{bottom:613.548750px;}
.y8b{bottom:613.636950px;}
.y9{bottom:616.262100px;}
.y37{bottom:616.790850px;}
.yb0{bottom:620.032950px;}
.ya{bottom:621.257100px;}
.ye9{bottom:633.135750px;}
.y78{bottom:633.798750px;}
.y8a{bottom:634.173750px;}
.y8{bottom:636.512100px;}
.y36{bottom:637.040850px;}
.yaf{bottom:640.282950px;}
.ye8{bottom:653.776350px;}
.y77{bottom:654.048750px;}
.y89{bottom:654.710400px;}
.y7{bottom:656.762100px;}
.y5b{bottom:657.290850px;}
.yae{bottom:660.532950px;}
.y35{bottom:674.298750px;}
.ye7{bottom:674.416800px;}
.ycb{bottom:675.247050px;}
.y6{bottom:677.012100px;}
.y5a{bottom:677.540850px;}
.yad{bottom:680.782950px;}
.y117{bottom:691.424700px;}
.y88{bottom:692.254950px;}
.y34{bottom:694.548750px;}
.ye6{bottom:695.057400px;}
.yca{bottom:695.783850px;}
.y59{bottom:697.790850px;}
.yac{bottom:701.032950px;}
.ya4{bottom:702.785850px;}
.y116{bottom:712.065150px;}
.y87{bottom:712.791750px;}
.y33{bottom:714.798750px;}
.ye5{bottom:715.697850px;}
.yc9{bottom:716.320500px;}
.y58{bottom:718.040850px;}
.yab{bottom:721.282950px;}
.y115{bottom:732.705750px;}
.y86{bottom:733.328400px;}
.y32{bottom:735.048750px;}
.yc8{bottom:736.857300px;}
.y57{bottom:738.290850px;}
.yaa{bottom:741.532950px;}
.ye4{bottom:753.346200px;}
.y85{bottom:753.865200px;}
.y31{bottom:755.298750px;}
.yc7{bottom:757.393950px;}
.y56{bottom:758.540850px;}
.ye3{bottom:773.986650px;}
.y84{bottom:774.401850px;}
.y30{bottom:775.548750px;}
.yc6{bottom:777.930750px;}
.y55{bottom:778.790850px;}
.y5{bottom:786.553500px;}
.ye2{bottom:794.627250px;}
.y83{bottom:794.938500px;}
.y2f{bottom:795.798750px;}
.ya3{bottom:799.040850px;}
.y4{bottom:807.553500px;}
.ye1{bottom:815.267700px;}
.y82{bottom:815.475300px;}
.y2e{bottom:816.048750px;}
.ye0{bottom:835.908300px;}
.y81{bottom:836.011950px;}
.y2d{bottom:836.298750px;}
.y2c{bottom:856.548750px;}
.y3{bottom:880.653450px;}
.y2{bottom:880.653600px;}
.y1{bottom:893.253600px;}
.y2a{bottom:898.288950px;}
.y53{bottom:898.290300px;}
.y29{bottom:898.309800px;}
.y52{bottom:898.311150px;}
.hc{height:23.450592px;}
.h9{height:24.240000px;}
.h7{height:24.695880px;}
.h2{height:29.652000px;}
.ha{height:33.888000px;}
.hb{height:34.032000px;}
.he{height:35.196000px;}
.hd{height:40.224000px;}
.h4{height:42.360000px;}
.h6{height:42.540000px;}
.h8{height:44.675880px;}
.hf{height:49.293240px;}
.h5{height:50.280000px;}
.h3{height:60.336000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x9{left:114.803100px;}
.x2{left:170.078700px;}
.x8{left:180.491100px;}
.x11{left:183.754800px;}
.xb{left:267.833700px;}
.xc{left:276.238200px;}
.x12{left:294.147600px;}
.x13{left:302.453250px;}
.x3{left:319.630200px;}
.x4{left:323.841150px;}
.xa{left:331.354500px;}
.x5{left:346.961550px;}
.x6{left:351.220500px;}
.xf{left:385.243800px;}
.x10{left:393.568950px;}
.x1{left:441.664650px;}
.xd{left:529.656900px;}
.xe{left:537.959550px;}
.x7{left:570.754950px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.ls23{letter-spacing:-0.853333pt;}
.ls2c{letter-spacing:-0.586667pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls1e{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.426667pt;}
.ls1d{letter-spacing:-0.373333pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.279840pt;}
.ls2b{letter-spacing:-0.266667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.160000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.106667pt;}
.ls1f{letter-spacing:-0.093280pt;}
.ls9{letter-spacing:-0.074624pt;}
.ls20{letter-spacing:-0.062187pt;}
.ls13{letter-spacing:-0.053333pt;}
.ls2a{letter-spacing:-0.042667pt;}
.ls29{letter-spacing:-0.024875pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.042667pt;}
.lsb{letter-spacing:0.049749pt;}
.ls0{letter-spacing:0.053333pt;}
.ls28{letter-spacing:0.062187pt;}
.lsc{letter-spacing:0.085333pt;}
.ls14{letter-spacing:0.099499pt;}
.ls27{letter-spacing:0.106133pt;}
.ls1{letter-spacing:0.106667pt;}
.ls19{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.133333pt;}
.lsf{letter-spacing:0.151636pt;}
.ls5{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.170667pt;}
.ls26{letter-spacing:0.186667pt;}
.ls2{letter-spacing:0.213333pt;}
.ls16{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.266667pt;}
.ls4{letter-spacing:0.293333pt;}
.ls15{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.693333pt;}
.ls21{letter-spacing:1.431467pt;}
.ls17{letter-spacing:2.172061pt;}
.ws2d{word-spacing:-10.986667pt;}
.ws5d{word-spacing:-10.880000pt;}
.ws4a{word-spacing:-10.826667pt;}
.ws66{word-spacing:-10.773333pt;}
.ws0{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.666667pt;}
.ws3a{word-spacing:-10.613333pt;}
.ws57{word-spacing:-10.186667pt;}
.ws72{word-spacing:-8.746667pt;}
.ws3d{word-spacing:-8.661333pt;}
.ws3{word-spacing:-8.533333pt;}
.ws59{word-spacing:-7.680000pt;}
.ws69{word-spacing:-6.280853pt;}
.ws1{word-spacing:-6.218667pt;}
.ws51{word-spacing:-6.156480pt;}
.ws58{word-spacing:-5.938827pt;}
.ws4{word-spacing:-5.024683pt;}
.ws16{word-spacing:-4.974933pt;}
.ws2{word-spacing:-4.900309pt;}
.ws2b{word-spacing:-1.706667pt;}
.wsc{word-spacing:-1.653333pt;}
.wsb{word-spacing:-1.600000pt;}
.ws43{word-spacing:-1.546667pt;}
.ws60{word-spacing:-1.440000pt;}
.ws44{word-spacing:-1.386667pt;}
.ws4b{word-spacing:-1.333333pt;}
.ws56{word-spacing:-1.322667pt;}
.ws5b{word-spacing:-1.280000pt;}
.ws3f{word-spacing:-1.226667pt;}
.ws17{word-spacing:-1.173333pt;}
.ws20{word-spacing:-1.120000pt;}
.ws63{word-spacing:-1.066667pt;}
.ws30{word-spacing:-1.013333pt;}
.ws3e{word-spacing:-0.906667pt;}
.ws47{word-spacing:-0.853333pt;}
.ws70{word-spacing:-0.800000pt;}
.ws61{word-spacing:-0.746667pt;}
.ws41{word-spacing:-0.693333pt;}
.ws6a{word-spacing:-0.640000pt;}
.ws54{word-spacing:-0.586667pt;}
.ws6d{word-spacing:-0.554667pt;}
.ws71{word-spacing:-0.533333pt;}
.ws6f{word-spacing:-0.480000pt;}
.ws48{word-spacing:-0.426667pt;}
.ws5e{word-spacing:-0.373333pt;}
.ws25{word-spacing:-0.320000pt;}
.ws1d{word-spacing:-0.266667pt;}
.ws26{word-spacing:-0.213333pt;}
.ws22{word-spacing:-0.170667pt;}
.ws7{word-spacing:-0.160000pt;}
.ws49{word-spacing:-0.128000pt;}
.wsd{word-spacing:-0.106667pt;}
.ws21{word-spacing:-0.099499pt;}
.ws13{word-spacing:-0.085333pt;}
.ws18{word-spacing:-0.053333pt;}
.ws74{word-spacing:-0.049749pt;}
.ws23{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.024875pt;}
.ws6c{word-spacing:0.042667pt;}
.ws1e{word-spacing:0.053333pt;}
.ws5f{word-spacing:0.062187pt;}
.ws53{word-spacing:0.093280pt;}
.wsa{word-spacing:0.106667pt;}
.ws12{word-spacing:0.128000pt;}
.ws8{word-spacing:0.160000pt;}
.ws2f{word-spacing:0.213333pt;}
.ws3b{word-spacing:0.266667pt;}
.ws31{word-spacing:0.320000pt;}
.ws11{word-spacing:0.373333pt;}
.ws4f{word-spacing:0.426667pt;}
.ws2a{word-spacing:0.480000pt;}
.ws3c{word-spacing:0.533333pt;}
.ws62{word-spacing:0.586667pt;}
.ws39{word-spacing:0.640000pt;}
.ws27{word-spacing:0.693333pt;}
.ws10{word-spacing:0.746667pt;}
.ws1c{word-spacing:0.800000pt;}
.ws73{word-spacing:0.853333pt;}
.ws19{word-spacing:0.906667pt;}
.ws65{word-spacing:0.938667pt;}
.ws33{word-spacing:0.960000pt;}
.ws34{word-spacing:1.013333pt;}
.ws52{word-spacing:1.066667pt;}
.ws4d{word-spacing:1.120000pt;}
.ws29{word-spacing:1.173333pt;}
.ws14{word-spacing:1.194667pt;}
.ws40{word-spacing:1.226667pt;}
.ws5c{word-spacing:1.322667pt;}
.ws42{word-spacing:1.333333pt;}
.ws6e{word-spacing:1.386667pt;}
.ws28{word-spacing:1.440000pt;}
.ws24{word-spacing:1.450667pt;}
.ws4c{word-spacing:1.493333pt;}
.ws38{word-spacing:1.546667pt;}
.ws1a{word-spacing:1.600000pt;}
.ws2e{word-spacing:1.653333pt;}
.ws2c{word-spacing:1.706667pt;}
.ws50{word-spacing:1.760000pt;}
.ws1f{word-spacing:1.813333pt;}
.ws55{word-spacing:1.866667pt;}
.ws5a{word-spacing:1.973333pt;}
.ws35{word-spacing:2.026667pt;}
.ws6{word-spacing:2.080000pt;}
.ws9{word-spacing:2.133333pt;}
.ws37{word-spacing:2.186667pt;}
.ws64{word-spacing:2.346667pt;}
.ws46{word-spacing:2.400000pt;}
.ws4e{word-spacing:2.506667pt;}
.ws1b{word-spacing:2.613333pt;}
.ws32{word-spacing:2.773333pt;}
.ws67{word-spacing:2.826667pt;}
.wsf{word-spacing:2.880000pt;}
.ws36{word-spacing:3.200000pt;}
.ws68{word-spacing:4.213333pt;}
.wse{word-spacing:4.693333pt;}
.ws45{word-spacing:5.120000pt;}
._a{margin-left:-7.466667pt;}
._1{margin-left:-5.333333pt;}
._7{margin-left:-4.416533pt;}
._2{margin-left:-3.483200pt;}
._6{margin-left:-2.587733pt;}
._0{margin-left:-1.683733pt;}
._3{width:0.944533pt;}
._4{width:2.250667pt;}
._5{width:3.776000pt;}
._9{width:5.669333pt;}
._8{width:6.846400pt;}
.fs4{font-size:24.874667pt;}
.fs3{font-size:31.093333pt;}
.fs0{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y54{bottom:44.646133pt;}
.y2b{bottom:48.446667pt;}
.y28{bottom:77.102267pt;}
.y51{bottom:77.102400pt;}
.y76{bottom:77.102533pt;}
.ya9{bottom:80.654533pt;}
.y27{bottom:90.435600pt;}
.y75{bottom:90.435867pt;}
.ya8{bottom:90.436000pt;}
.y26{bottom:93.987600pt;}
.y50{bottom:93.987733pt;}
.y74{bottom:93.987867pt;}
.yc0{bottom:93.988000pt;}
.ya2{bottom:95.357200pt;}
.y100{bottom:95.449467pt;}
.y105{bottom:101.140400pt;}
.y25{bottom:103.768933pt;}
.y4f{bottom:103.769067pt;}
.y125{bottom:103.769200pt;}
.y73{bottom:103.769333pt;}
.yc5{bottom:103.769467pt;}
.y80{bottom:107.321200pt;}
.y7f{bottom:107.321333pt;}
.ybf{bottom:107.321467pt;}
.ya1{bottom:113.612000pt;}
.y11d{bottom:113.796533pt;}
.y24{bottom:117.102267pt;}
.y4e{bottom:117.102400pt;}
.y72{bottom:117.102667pt;}
.ybb{bottom:117.102800pt;}
.y104{bottom:119.140400pt;}
.y71{bottom:120.654667pt;}
.yc4{bottom:120.654800pt;}
.ybe{bottom:120.654933pt;}
.y114{bottom:124.904133pt;}
.yff{bottom:128.914667pt;}
.y23{bottom:130.435600pt;}
.y4d{bottom:130.435733pt;}
.yba{bottom:130.436133pt;}
.ya0{bottom:131.866933pt;}
.y11c{bottom:132.143733pt;}
.y22{bottom:133.987600pt;}
.y103{bottom:137.140400pt;}
.y7e{bottom:140.022267pt;}
.y113{bottom:142.904133pt;}
.y21{bottom:143.768933pt;}
.y4c{bottom:143.769067pt;}
.yb9{bottom:143.769467pt;}
.yfe{bottom:147.261867pt;}
.y4b{bottom:147.321067pt;}
.y9f{bottom:150.121733pt;}
.y123{bottom:150.490800pt;}
.y102{bottom:155.140400pt;}
.y20{bottom:157.102267pt;}
.y70{bottom:158.022267pt;}
.y1f{bottom:160.654267pt;}
.yb8{bottom:160.654800pt;}
.ya7{bottom:160.904133pt;}
.ybd{bottom:162.462267pt;}
.yfd{bottom:165.608933pt;}
.y9e{bottom:168.376667pt;}
.y122{bottom:168.837867pt;}
.ydf{bottom:170.258533pt;}
.y101{bottom:173.140400pt;}
.yb7{bottom:173.988267pt;}
.y6f{bottom:176.022267pt;}
.ya6{bottom:178.904133pt;}
.yfc{bottom:183.956000pt;}
.y9d{bottom:186.631467pt;}
.yde{bottom:188.258533pt;}
.y1e{bottom:190.670400pt;}
.y4a{bottom:191.140400pt;}
.y6e{bottom:194.022267pt;}
.ya5{bottom:196.904133pt;}
.yfb{bottom:202.303200pt;}
.y9c{bottom:204.886400pt;}
.ydd{bottom:206.258533pt;}
.y1d{bottom:208.670400pt;}
.y49{bottom:209.140400pt;}
.y6d{bottom:212.022267pt;}
.y112{bottom:214.904133pt;}
.yfa{bottom:220.650267pt;}
.y9b{bottom:223.141200pt;}
.ydc{bottom:224.258533pt;}
.y1c{bottom:226.670400pt;}
.y48{bottom:227.140400pt;}
.y6c{bottom:230.022267pt;}
.y111{bottom:232.904133pt;}
.yf9{bottom:238.997333pt;}
.y9a{bottom:241.396000pt;}
.ydb{bottom:242.258533pt;}
.y1b{bottom:244.670400pt;}
.y47{bottom:245.140400pt;}
.y6b{bottom:248.022267pt;}
.y110{bottom:250.904133pt;}
.yf8{bottom:257.344533pt;}
.y99{bottom:259.650933pt;}
.yda{bottom:260.258533pt;}
.y1a{bottom:262.670400pt;}
.y46{bottom:263.140400pt;}
.y6a{bottom:266.022267pt;}
.y10f{bottom:268.904133pt;}
.ybc{bottom:270.462267pt;}
.yf7{bottom:275.691600pt;}
.y98{bottom:277.905733pt;}
.yd9{bottom:278.258533pt;}
.y19{bottom:280.670400pt;}
.y45{bottom:281.140400pt;}
.y69{bottom:284.022267pt;}
.y10e{bottom:286.904133pt;}
.yf6{bottom:294.038667pt;}
.y97{bottom:296.160667pt;}
.yd8{bottom:296.258533pt;}
.y17{bottom:298.670400pt;}
.y44{bottom:299.140400pt;}
.y68{bottom:302.022267pt;}
.y18{bottom:303.110400pt;}
.y10d{bottom:304.904133pt;}
.yd3{bottom:311.278667pt;}
.yf5{bottom:312.385867pt;}
.yd7{bottom:314.258533pt;}
.y96{bottom:314.415467pt;}
.y16{bottom:316.670400pt;}
.y43{bottom:317.140400pt;}
.y67{bottom:320.022267pt;}
.y10c{bottom:322.904133pt;}
.y11b{bottom:327.504000pt;}
.yd2{bottom:329.533600pt;}
.yf4{bottom:330.732933pt;}
.yd6{bottom:332.258533pt;}
.y95{bottom:332.670267pt;}
.y15{bottom:334.670400pt;}
.y42{bottom:335.140400pt;}
.y66{bottom:338.022267pt;}
.y10b{bottom:340.904133pt;}
.yb6{bottom:342.462267pt;}
.y11a{bottom:345.851067pt;}
.yd1{bottom:347.788400pt;}
.yd5{bottom:350.258533pt;}
.y94{bottom:350.925200pt;}
.y14{bottom:352.670400pt;}
.y7d{bottom:353.140400pt;}
.yb5{bottom:356.022267pt;}
.y10a{bottom:358.904133pt;}
.yf3{bottom:364.198133pt;}
.yd0{bottom:366.043333pt;}
.y41{bottom:368.258533pt;}
.y93{bottom:369.180000pt;}
.y13{bottom:370.670400pt;}
.y65{bottom:371.140400pt;}
.yb4{bottom:374.022267pt;}
.y109{bottom:376.904133pt;}
.y121{bottom:379.316267pt;}
.yf2{bottom:382.545200pt;}
.ycf{bottom:384.298133pt;}
.y40{bottom:386.258533pt;}
.y12{bottom:388.670400pt;}
.y64{bottom:389.140400pt;}
.yb3{bottom:392.022267pt;}
.y120{bottom:397.663333pt;}
.yf1{bottom:400.892400pt;}
.y92{bottom:402.553067pt;}
.y3f{bottom:404.258533pt;}
.y11{bottom:406.670400pt;}
.y63{bottom:407.140400pt;}
.yb2{bottom:410.022267pt;}
.y11f{bottom:416.010533pt;}
.yf0{bottom:419.239467pt;}
.yce{bottom:420.807867pt;}
.y3e{bottom:422.258533pt;}
.y62{bottom:425.140400pt;}
.yb1{bottom:428.022267pt;}
.y11e{bottom:434.357600pt;}
.y91{bottom:435.926000pt;}
.yef{bottom:437.586533pt;}
.ycd{bottom:439.062800pt;}
.y10{bottom:439.788533pt;}
.y3d{bottom:440.258533pt;}
.y61{bottom:443.140400pt;}
.yc3{bottom:446.022267pt;}
.y119{bottom:452.704667pt;}
.y90{bottom:454.180800pt;}
.yee{bottom:455.933733pt;}
.ycc{bottom:457.317600pt;}
.yf{bottom:457.788533pt;}
.y3c{bottom:458.258533pt;}
.y60{bottom:461.140400pt;}
.yc2{bottom:464.022267pt;}
.y118{bottom:471.051867pt;}
.y8f{bottom:472.435733pt;}
.ye{bottom:475.788533pt;}
.y3b{bottom:476.258533pt;}
.y5f{bottom:479.140400pt;}
.y124{bottom:480.698533pt;}
.yc1{bottom:482.022267pt;}
.yed{bottom:489.398933pt;}
.y8e{bottom:490.690533pt;}
.yd4{bottom:491.376667pt;}
.yd{bottom:493.788533pt;}
.y3a{bottom:494.258533pt;}
.y5e{bottom:497.140400pt;}
.y108{bottom:500.022267pt;}
.yec{bottom:507.746000pt;}
.y8d{bottom:508.945333pt;}
.y7b{bottom:509.376667pt;}
.yc{bottom:511.788533pt;}
.y39{bottom:512.258533pt;}
.y7c{bottom:513.816667pt;}
.y5d{bottom:515.140400pt;}
.y107{bottom:518.022267pt;}
.yeb{bottom:526.093200pt;}
.y8c{bottom:527.200267pt;}
.y7a{bottom:527.376667pt;}
.yb{bottom:529.788533pt;}
.y38{bottom:530.258533pt;}
.y5c{bottom:533.140400pt;}
.y106{bottom:536.022267pt;}
.yea{bottom:544.440267pt;}
.y79{bottom:545.376667pt;}
.y8b{bottom:545.455067pt;}
.y9{bottom:547.788533pt;}
.y37{bottom:548.258533pt;}
.yb0{bottom:551.140400pt;}
.ya{bottom:552.228533pt;}
.ye9{bottom:562.787333pt;}
.y78{bottom:563.376667pt;}
.y8a{bottom:563.710000pt;}
.y8{bottom:565.788533pt;}
.y36{bottom:566.258533pt;}
.yaf{bottom:569.140400pt;}
.ye8{bottom:581.134533pt;}
.y77{bottom:581.376667pt;}
.y89{bottom:581.964800pt;}
.y7{bottom:583.788533pt;}
.y5b{bottom:584.258533pt;}
.yae{bottom:587.140400pt;}
.y35{bottom:599.376667pt;}
.ye7{bottom:599.481600pt;}
.ycb{bottom:600.219600pt;}
.y6{bottom:601.788533pt;}
.y5a{bottom:602.258533pt;}
.yad{bottom:605.140400pt;}
.y117{bottom:614.599733pt;}
.y88{bottom:615.337733pt;}
.y34{bottom:617.376667pt;}
.ye6{bottom:617.828800pt;}
.yca{bottom:618.474533pt;}
.y59{bottom:620.258533pt;}
.yac{bottom:623.140400pt;}
.ya4{bottom:624.698533pt;}
.y116{bottom:632.946800pt;}
.y87{bottom:633.592667pt;}
.y33{bottom:635.376667pt;}
.ye5{bottom:636.175867pt;}
.yc9{bottom:636.729333pt;}
.y58{bottom:638.258533pt;}
.yab{bottom:641.140400pt;}
.y115{bottom:651.294000pt;}
.y86{bottom:651.847467pt;}
.y32{bottom:653.376667pt;}
.yc8{bottom:654.984267pt;}
.y57{bottom:656.258533pt;}
.yaa{bottom:659.140400pt;}
.ye4{bottom:669.641067pt;}
.y85{bottom:670.102400pt;}
.y31{bottom:671.376667pt;}
.yc7{bottom:673.239067pt;}
.y56{bottom:674.258533pt;}
.ye3{bottom:687.988133pt;}
.y84{bottom:688.357200pt;}
.y30{bottom:689.376667pt;}
.yc6{bottom:691.494000pt;}
.y55{bottom:692.258533pt;}
.y5{bottom:699.158667pt;}
.ye2{bottom:706.335333pt;}
.y83{bottom:706.612000pt;}
.y2f{bottom:707.376667pt;}
.ya3{bottom:710.258533pt;}
.y4{bottom:717.825333pt;}
.ye1{bottom:724.682400pt;}
.y82{bottom:724.866933pt;}
.y2e{bottom:725.376667pt;}
.ye0{bottom:743.029600pt;}
.y81{bottom:743.121733pt;}
.y2d{bottom:743.376667pt;}
.y2c{bottom:761.376667pt;}
.y3{bottom:782.803067pt;}
.y2{bottom:782.803200pt;}
.y1{bottom:794.003200pt;}
.y2a{bottom:798.479067pt;}
.y53{bottom:798.480267pt;}
.y29{bottom:798.497600pt;}
.y52{bottom:798.498800pt;}
.hc{height:20.844971pt;}
.h9{height:21.546667pt;}
.h7{height:21.951893pt;}
.h2{height:26.357333pt;}
.ha{height:30.122667pt;}
.hb{height:30.250667pt;}
.he{height:31.285333pt;}
.hd{height:35.754667pt;}
.h4{height:37.653333pt;}
.h6{height:37.813333pt;}
.h8{height:39.711893pt;}
.hf{height:43.816213pt;}
.h5{height:44.693333pt;}
.h3{height:53.632000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x9{left:102.047200pt;}
.x2{left:151.181067pt;}
.x8{left:160.436533pt;}
.x11{left:163.337600pt;}
.xb{left:238.074400pt;}
.xc{left:245.545067pt;}
.x12{left:261.464533pt;}
.x13{left:268.847333pt;}
.x3{left:284.115733pt;}
.x4{left:287.858800pt;}
.xa{left:294.537333pt;}
.x5{left:308.410267pt;}
.x6{left:312.196000pt;}
.xf{left:342.438933pt;}
.x10{left:349.839067pt;}
.x1{left:392.590800pt;}
.xd{left:470.806133pt;}
.xe{left:478.186267pt;}
.x7{left:507.337733pt;}
}




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