
    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_114b21294e78ba04e3ddfd2d.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_aa94009aff71d44cc568fee5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.875000;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_7dc816322faac6de6211fffa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959189;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_2694f57b046a703a6c5f90b7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958636;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_50a61c6b9c3522cf99bca50c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2308d56d923db8eb003137df.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ea3ecfb9a151b1b7782df91b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.846000;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_d59caf7c3a89e0628a68f703.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6c455bf113ae9b0982137f1f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956000;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_36996feafb1be9c263c855d9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_29683644ee2500755a374b00.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7dfa80e88ec1f4f6aa2b0d5b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5d890281b5b9a79d77afc0e3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family: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;}
.m23{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);}
.m9a{transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238770,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.239331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239331,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240880,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.241136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241136,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.241523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241523,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.241798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241798,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.242202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242202,0.000000,0.000000,0.250000,0,0);}
.m95{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);}
.m50{transform:matrix(0.242623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242623,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.242686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242686,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.242793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242793,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.242859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242859,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243439,0.000000,0.000000,0.250000,0,0);}
.ma4{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);}
.ma5{transform:matrix(0.243447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243447,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.243711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243711,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.243859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243859,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.244034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244034,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.244220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244220,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.244223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244223,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244240,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.244580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244580,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.244622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244622,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.244782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244782,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.244814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244814,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.244852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244852,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.244944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244944,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244998,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.245241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245241,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.245473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245473,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.245547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245547,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.245597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245597,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.245602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245602,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245648,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.245706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245706,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245764,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245814,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.245887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245887,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245889,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.245918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245918,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245975,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.245984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245984,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246041,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246234,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246280,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246366,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246430,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246477,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246517,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.246610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246610,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.246648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246648,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246664,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.246728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246728,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246783,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246859,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246953,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.246961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246961,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246983,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247052,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247078,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247132,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247458,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.247464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247464,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247466,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m39{transform:matrix(0.247508,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247508,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247508,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247561,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247592,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247597,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247961,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248036,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248134,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248136,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248297,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248318,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248405,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248589,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248667,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248757,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248807,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248843,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248961,0.000000,0.000000,0.250000,0,0);}
.m74{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);}
.m3d{transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249136,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249314,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249315,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m3e{transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249409,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m7f{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);}
.md8{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);}
.m7a{transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249667,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249719,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249728,0.000000,0.000000,0.250000,0,0);}
.m61{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);}
.m40{transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249902,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249991,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m65{transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);}
.mde{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);}
.mc{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250216,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250291,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.md4{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);}
.m5e{transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250686,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250786,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.250842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250842,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250844,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250882,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250886,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250918,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250980,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251115,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251182,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m6a{transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);}
.m7d{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);}
.mcc{transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251400,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251530,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251614,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251628,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251717,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251798,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251811,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252005,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252266,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252358,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252414,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252466,0.000000,0.000000,0.250000,0,0);}
.mb6{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);}
.m4c{transform:matrix(0.252514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252514,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252670,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252698,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252763,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252864,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253016,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.253111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253111,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253147,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253227,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253327,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.253357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253357,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253528,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.253559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253559,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253747,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.253814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253814,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253925,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253995,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.254034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254034,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.254052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254052,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.254068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254068,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254235,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254284,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254291,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254352,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.254498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254498,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254514,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.254593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254593,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254645,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254650,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254702,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254970,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.255447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255447,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.md1{transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255780,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.255857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255857,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255861,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256030,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.256093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256093,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.256402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256402,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257043,0.000000,0.000000,0.250000,0,0);}
.m92{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);}
.v4{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.981000px;}
.v3{vertical-align:21.978000px;}
.v1{vertical-align:180.000000px;}
.ls16{letter-spacing:-0.924000px;}
.ls30{letter-spacing:-0.858000px;}
.ls54{letter-spacing:-0.840000px;}
.ls17{letter-spacing:-0.792000px;}
.ls53{letter-spacing:-0.780000px;}
.ls20{letter-spacing:-0.756000px;}
.ls14{letter-spacing:-0.726000px;}
.ls4e{letter-spacing:-0.720000px;}
.ls21{letter-spacing:-0.702000px;}
.ls15{letter-spacing:-0.660000px;}
.ls18{letter-spacing:-0.648000px;}
.ls35{letter-spacing:-0.627000px;}
.ls4c{letter-spacing:-0.600000px;}
.ls33{letter-spacing:-0.594000px;}
.ls37{letter-spacing:-0.540000px;}
.ls2f{letter-spacing:-0.528000px;}
.ls36{letter-spacing:-0.486000px;}
.ls4d{letter-spacing:-0.480000px;}
.ls31{letter-spacing:-0.461736px;}
.ls42{letter-spacing:-0.423258px;}
.ls4b{letter-spacing:-0.420000px;}
.ls32{letter-spacing:-0.384780px;}
.ls4f{letter-spacing:-0.360000px;}
.ls4a{letter-spacing:-0.346302px;}
.ls3b{letter-spacing:-0.330000px;}
.ls50{letter-spacing:-0.300000px;}
.ls2{letter-spacing:-0.264000px;}
.ls26{letter-spacing:-0.198000px;}
.ls9{letter-spacing:-0.180000px;}
.ls2d{letter-spacing:-0.162000px;}
.ls1{letter-spacing:-0.156000px;}
.ls2c{letter-spacing:-0.153912px;}
.ls1e{letter-spacing:-0.132000px;}
.ls7{letter-spacing:-0.120000px;}
.ls3e{letter-spacing:-0.114000px;}
.ls1f{letter-spacing:-0.108000px;}
.ls47{letter-spacing:-0.076956px;}
.ls10{letter-spacing:-0.066000px;}
.ls8{letter-spacing:-0.060000px;}
.ls3f{letter-spacing:-0.057000px;}
.ls11{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.000042px;}
.ls19{letter-spacing:0.000360px;}
.ls2a{letter-spacing:0.026613px;}
.ls2b{letter-spacing:0.027000px;}
.ls5{letter-spacing:0.030000px;}
.ls1a{letter-spacing:0.033000px;}
.ls3a{letter-spacing:0.038478px;}
.lsd{letter-spacing:0.054000px;}
.lsc{letter-spacing:0.057000px;}
.ls3{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.066000px;}
.ls38{letter-spacing:0.066268px;}
.ls1b{letter-spacing:0.073912px;}
.ls12{letter-spacing:0.074800px;}
.ls27{letter-spacing:0.099000px;}
.lsf{letter-spacing:0.108000px;}
.ls40{letter-spacing:0.114000px;}
.ls4{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.132000px;}
.ls25{letter-spacing:0.162000px;}
.ls28{letter-spacing:0.165000px;}
.ls24{letter-spacing:0.167658px;}
.ls6{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.198000px;}
.ls46{letter-spacing:0.216000px;}
.ls2e{letter-spacing:0.228000px;}
.ls45{letter-spacing:0.243000px;}
.ls44{letter-spacing:0.264000px;}
.ls48{letter-spacing:0.270000px;}
.ls39{letter-spacing:0.330000px;}
.ls3c{letter-spacing:0.456000px;}
.lse{letter-spacing:1.093200px;}
.ls1d{letter-spacing:1.596600px;}
.ls34{letter-spacing:1.864619px;}
.ls3d{letter-spacing:2.100000px;}
.ls41{letter-spacing:2.244000px;}
.ls29{letter-spacing:2.383802px;}
.ls1c{letter-spacing:2.416843px;}
.ls13{letter-spacing:2.418057px;}
.ls23{letter-spacing:2.483022px;}
.ls49{letter-spacing:2.491533px;}
.ls51{letter-spacing:103.205701px;}
.ls52{letter-spacing:103.272039px;}
.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;}
}
.wsc{word-spacing:-79.503570px;}
.ws23{word-spacing:-14.454000px;}
.ws3f{word-spacing:-13.794000px;}
.ws4b{word-spacing:-13.530000px;}
.ws31{word-spacing:-13.398000px;}
.ws2a{word-spacing:-13.332000px;}
.ws33{word-spacing:-13.299000px;}
.wsf{word-spacing:-13.266000px;}
.wsd{word-spacing:-13.200000px;}
.ws5{word-spacing:-13.140000px;}
.wse{word-spacing:-13.134000px;}
.ws29{word-spacing:-13.068000px;}
.ws50{word-spacing:-13.002000px;}
.ws32{word-spacing:-12.936000px;}
.ws3d{word-spacing:-12.606000px;}
.ws1c{word-spacing:-12.540000px;}
.ws44{word-spacing:-12.483000px;}
.ws4f{word-spacing:-12.474000px;}
.ws3e{word-spacing:-12.408000px;}
.ws37{word-spacing:-12.342000px;}
.ws2d{word-spacing:-11.988000px;}
.ws34{word-spacing:-11.880000px;}
.ws13{word-spacing:-11.826000px;}
.ws2b{word-spacing:-11.772000px;}
.ws40{word-spacing:-11.718000px;}
.ws5d{word-spacing:-11.580000px;}
.ws64{word-spacing:-11.460000px;}
.ws43{word-spacing:-11.400000px;}
.ws14{word-spacing:-10.908000px;}
.ws11{word-spacing:-10.854000px;}
.ws10{word-spacing:-10.800000px;}
.ws2c{word-spacing:-10.746000px;}
.ws51{word-spacing:-10.692000px;}
.ws47{word-spacing:-10.260000px;}
.ws24{word-spacing:-10.098000px;}
.ws0{word-spacing:-9.600000px;}
.ws1d{word-spacing:-8.426682px;}
.ws35{word-spacing:-8.272770px;}
.ws3c{word-spacing:-8.041902px;}
.ws38{word-spacing:-7.964946px;}
.ws45{word-spacing:-7.277589px;}
.ws56{word-spacing:-2.244000px;}
.ws52{word-spacing:-0.456000px;}
.ws4d{word-spacing:-0.330000px;}
.ws5a{word-spacing:-0.270000px;}
.ws58{word-spacing:-0.264000px;}
.ws39{word-spacing:-0.228000px;}
.ws5b{word-spacing:-0.216000px;}
.ws17{word-spacing:-0.198000px;}
.ws9{word-spacing:-0.180000px;}
.ws30{word-spacing:-0.162000px;}
.ws2f{word-spacing:-0.132000px;}
.ws8{word-spacing:-0.120000px;}
.ws55{word-spacing:-0.114000px;}
.ws1a{word-spacing:-0.108000px;}
.ws16{word-spacing:-0.066000px;}
.ws6{word-spacing:-0.060000px;}
.ws18{word-spacing:-0.057000px;}
.ws12{word-spacing:-0.054000px;}
.ws1b{word-spacing:-0.039000px;}
.ws4c{word-spacing:-0.038478px;}
.ws1{word-spacing:0.000000px;}
.ws19{word-spacing:0.054000px;}
.ws54{word-spacing:0.057000px;}
.wsa{word-spacing:0.060000px;}
.ws15{word-spacing:0.066000px;}
.ws59{word-spacing:0.076956px;}
.ws26{word-spacing:0.108000px;}
.ws53{word-spacing:0.114000px;}
.ws7{word-spacing:0.120000px;}
.ws25{word-spacing:0.132000px;}
.ws2{word-spacing:0.156000px;}
.ws36{word-spacing:0.162000px;}
.wsb{word-spacing:0.180000px;}
.ws2e{word-spacing:0.198000px;}
.ws3{word-spacing:0.264000px;}
.ws63{word-spacing:0.300000px;}
.ws4e{word-spacing:0.330000px;}
.ws5c{word-spacing:0.346302px;}
.ws62{word-spacing:0.360000px;}
.ws42{word-spacing:0.384780px;}
.ws5e{word-spacing:0.420000px;}
.ws57{word-spacing:0.423258px;}
.ws46{word-spacing:0.432000px;}
.ws60{word-spacing:0.480000px;}
.ws49{word-spacing:0.486000px;}
.ws3a{word-spacing:0.528000px;}
.ws4a{word-spacing:0.540000px;}
.ws41{word-spacing:0.594000px;}
.ws5f{word-spacing:0.600000px;}
.ws48{word-spacing:0.627000px;}
.ws22{word-spacing:0.648000px;}
.ws1f{word-spacing:0.660000px;}
.ws61{word-spacing:0.720000px;}
.ws1e{word-spacing:0.726000px;}
.ws28{word-spacing:0.756000px;}
.ws65{word-spacing:0.780000px;}
.ws21{word-spacing:0.792000px;}
.ws66{word-spacing:0.840000px;}
.ws3b{word-spacing:0.858000px;}
.ws20{word-spacing:0.924000px;}
.ws4{word-spacing:1.632000px;}
.ws27{word-spacing:2.322000px;}
._9{margin-left:-11.826000px;}
._8{margin-left:-10.799400px;}
._a{margin-left:-7.465200px;}
._3{margin-left:-6.146400px;}
._4{margin-left:-5.142600px;}
._0{margin-left:-4.134000px;}
._1{margin-left:-2.340000px;}
._5{margin-left:-1.308000px;}
._6{width:1.802400px;}
._7{width:2.971200px;}
._2{width:4.056000px;}
._b{width:5.158765px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:33.231000px;}
.fs6{font-size:38.478000px;}
.fs9{font-size:39.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:57.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;}
.ycd{bottom:106.299150px;}
.y54{bottom:106.299300px;}
.y78{bottom:106.299450px;}
.y1d8{bottom:120.138750px;}
.ye6{bottom:125.799150px;}
.y53{bottom:125.799300px;}
.y114{bottom:125.799450px;}
.y77{bottom:125.799600px;}
.y1c4{bottom:126.015300px;}
.y32{bottom:126.882750px;}
.ycc{bottom:129.141300px;}
.y1d7{bottom:139.638750px;}
.y19e{bottom:145.299150px;}
.y52{bottom:145.299300px;}
.y90{bottom:145.299450px;}
.y76{bottom:145.299600px;}
.y1c3{bottom:145.731450px;}
.y31{bottom:146.382750px;}
.ycb{bottom:151.983300px;}
.y1d6{bottom:159.138750px;}
.y19d{bottom:164.799150px;}
.y51{bottom:164.799300px;}
.y8f{bottom:164.799450px;}
.y12a{bottom:164.799600px;}
.y1c2{bottom:165.447600px;}
.y30{bottom:165.882750px;}
.y194{bottom:168.563550px;}
.ye5{bottom:169.071450px;}
.yca{bottom:174.825450px;}
.y1d5{bottom:178.638750px;}
.y19c{bottom:184.299150px;}
.y50{bottom:184.299450px;}
.y8e{bottom:184.299600px;}
.y129{bottom:184.299750px;}
.y1a1{bottom:185.087250px;}
.y1c1{bottom:185.163600px;}
.y2f{bottom:185.382750px;}
.y149{bottom:187.129350px;}
.y75{bottom:188.902800px;}
.y193{bottom:191.063550px;}
.ye4{bottom:191.571450px;}
.yc9{bottom:197.667450px;}
.y1d4{bottom:198.138750px;}
.y4f{bottom:203.799450px;}
.yac{bottom:203.799600px;}
.y8d{bottom:203.799750px;}
.y1c0{bottom:204.879750px;}
.y2e{bottom:204.882750px;}
.y1a0{bottom:207.587250px;}
.y148{bottom:209.179350px;}
.y74{bottom:210.952800px;}
.y192{bottom:213.563550px;}
.ye3{bottom:214.071450px;}
.y1d3{bottom:217.638750px;}
.yc8{bottom:220.509450px;}
.y4e{bottom:223.299450px;}
.y113{bottom:223.299600px;}
.y8c{bottom:223.299750px;}
.y2d{bottom:224.382750px;}
.y1bf{bottom:224.595900px;}
.y19a{bottom:230.087250px;}
.y147{bottom:231.229350px;}
.y73{bottom:233.002650px;}
.y19b{bottom:235.581750px;}
.y191{bottom:236.063550px;}
.ye2{bottom:236.571450px;}
.y1d2{bottom:237.138750px;}
.y4d{bottom:242.799450px;}
.y112{bottom:242.799750px;}
.y8b{bottom:242.799900px;}
.yc7{bottom:243.351600px;}
.y2c{bottom:243.882750px;}
.y1be{bottom:244.312050px;}
.yab{bottom:246.512250px;}
.y199{bottom:252.587250px;}
.y146{bottom:253.279350px;}
.y72{bottom:255.052800px;}
.y1d1{bottom:256.638750px;}
.y190{bottom:258.563550px;}
.ye1{bottom:259.071450px;}
.y4c{bottom:262.299450px;}
.y111{bottom:262.299750px;}
.y8a{bottom:262.299900px;}
.y2b{bottom:263.382750px;}
.y10e{bottom:264.004350px;}
.y1bd{bottom:264.028050px;}
.y15d{bottom:264.563550px;}
.y101{bottom:264.737250px;}
.yc6{bottom:266.193600px;}
.yaa{bottom:269.237250px;}
.y10f{bottom:269.498850px;}
.y198{bottom:275.087250px;}
.y145{bottom:275.329350px;}
.y1d0{bottom:276.138750px;}
.y71{bottom:277.102650px;}
.y18f{bottom:281.063550px;}
.ye0{bottom:281.571450px;}
.y179{bottom:281.799750px;}
.y89{bottom:281.799900px;}
.y2a{bottom:282.882750px;}
.y1bc{bottom:283.744200px;}
.y10d{bottom:286.654350px;}
.y100{bottom:286.787250px;}
.yc5{bottom:289.035750px;}
.ya9{bottom:291.962250px;}
.y15c{bottom:295.567500px;}
.y1cf{bottom:295.638750px;}
.y144{bottom:297.379350px;}
.y197{bottom:297.587250px;}
.y70{bottom:299.152800px;}
.y178{bottom:301.299750px;}
.y88{bottom:301.300050px;}
.y29{bottom:302.382750px;}
.y1bb{bottom:303.460350px;}
.y18e{bottom:303.563550px;}
.ydf{bottom:304.071450px;}
.yff{bottom:308.837250px;}
.y10c{bottom:309.154350px;}
.yc4{bottom:311.877750px;}
.ya8{bottom:314.687250px;}
.y15b{bottom:314.767500px;}
.y1ce{bottom:315.138750px;}
.y143{bottom:319.429350px;}
.y196{bottom:320.087250px;}
.y177{bottom:320.799900px;}
.y87{bottom:320.800050px;}
.y6f{bottom:321.202800px;}
.y28{bottom:321.882750px;}
.y128{bottom:322.567500px;}
.y1ba{bottom:323.176500px;}
.yde{bottom:326.571450px;}
.yfe{bottom:330.887250px;}
.y10b{bottom:331.654350px;}
.y4b{bottom:333.321450px;}
.y15a{bottom:333.967500px;}
.y18d{bottom:334.567500px;}
.y1cd{bottom:334.638750px;}
.yc3{bottom:334.719750px;}
.ya7{bottom:337.412250px;}
.y176{bottom:340.299900px;}
.y110{bottom:340.300050px;}
.y27{bottom:341.382750px;}
.y142{bottom:341.479350px;}
.y195{bottom:342.587250px;}
.y127{bottom:342.817500px;}
.y1b9{bottom:342.892650px;}
.y6e{bottom:343.252650px;}
.ydd{bottom:349.071450px;}
.yfd{bottom:352.937250px;}
.y159{bottom:353.167500px;}
.y4a{bottom:353.571450px;}
.y1cc{bottom:354.138750px;}
.y10a{bottom:354.154350px;}
.y18c{bottom:354.217500px;}
.yc2{bottom:357.561900px;}
.ya6{bottom:360.137250px;}
.y26{bottom:360.882750px;}
.y1b8{bottom:362.608650px;}
.y126{bottom:363.067500px;}
.y141{bottom:363.529350px;}
.y86{bottom:365.087250px;}
.y6d{bottom:365.302800px;}
.ydc{bottom:371.571450px;}
.y1cb{bottom:373.638750px;}
.y49{bottom:373.821450px;}
.y18b{bottom:373.867500px;}
.yfc{bottom:374.987250px;}
.y109{bottom:376.654350px;}
.y174{bottom:379.102650px;}
.y25{bottom:380.382750px;}
.yc1{bottom:380.403900px;}
.y158{bottom:380.871450px;}
.y1b7{bottom:382.324800px;}
.ya5{bottom:382.862250px;}
.y125{bottom:383.317500px;}
.y175{bottom:384.597150px;}
.y140{bottom:385.579350px;}
.y6c{bottom:387.352650px;}
.y85{bottom:387.587250px;}
.y1ca{bottom:393.138750px;}
.y18a{bottom:393.517500px;}
.y48{bottom:394.071450px;}
.yfb{bottom:397.037250px;}
.y108{bottom:399.154350px;}
.y24{bottom:399.882750px;}
.y157{bottom:400.071450px;}
.y173{bottom:401.602650px;}
.y1b6{bottom:402.040950px;}
.yc0{bottom:403.246050px;}
.ya4{bottom:405.587250px;}
.y13f{bottom:407.629350px;}
.y6b{bottom:409.402800px;}
.yc{bottom:409.846350px;}
.y84{bottom:410.087250px;}
.y124{bottom:412.071450px;}
.y1c9{bottom:412.638750px;}
.y19f{bottom:415.581750px;}
.ydb{bottom:416.571450px;}
.yfa{bottom:419.087250px;}
.y156{bottom:419.271450px;}
.y23{bottom:419.382750px;}
.y107{bottom:421.654350px;}
.y189{bottom:421.671450px;}
.y1b5{bottom:421.757100px;}
.y47{bottom:422.825400px;}
.y172{bottom:424.102650px;}
.ybf{bottom:426.088050px;}
.ya3{bottom:428.312250px;}
.y9{bottom:428.876250px;}
.y13e{bottom:429.679350px;}
.y6a{bottom:431.452800px;}
.y1c8{bottom:432.138750px;}
.y123{bottom:432.321450px;}
.y83{bottom:432.587250px;}
.y155{bottom:438.471450px;}
.y22{bottom:438.882750px;}
.yda{bottom:439.071450px;}
.yf9{bottom:441.137250px;}
.y188{bottom:441.321450px;}
.y1b4{bottom:441.473100px;}
.y46{bottom:443.075400px;}
.y106{bottom:444.154350px;}
.y171{bottom:446.602650px;}
.y8{bottom:446.876250px;}
.ybe{bottom:448.930050px;}
.ya2{bottom:451.037250px;}
.y1c7{bottom:451.638750px;}
.y13d{bottom:451.729350px;}
.y122{bottom:452.571450px;}
.y69{bottom:453.502650px;}
.y82{bottom:455.087250px;}
.y21{bottom:458.382750px;}
.y187{bottom:460.971450px;}
.y1b3{bottom:461.189250px;}
.yd9{bottom:461.571450px;}
.yf8{bottom:463.187250px;}
.y45{bottom:463.325400px;}
.y154{bottom:466.175400px;}
.y170{bottom:469.102650px;}
.y1c6{bottom:471.138750px;}
.ybd{bottom:471.772200px;}
.y121{bottom:472.821450px;}
.ya1{bottom:473.762250px;}
.y13c{bottom:473.779350px;}
.y105{bottom:475.158300px;}
.y68{bottom:475.552800px;}
.y81{bottom:477.587250px;}
.y20{bottom:477.882750px;}
.y186{bottom:480.621450px;}
.y1b2{bottom:480.905400px;}
.y44{bottom:483.575400px;}
.yd8{bottom:484.071450px;}
.yf7{bottom:485.237250px;}
.y153{bottom:485.375400px;}
.y1c5{bottom:490.638750px;}
.y16f{bottom:491.602800px;}
.ybc{bottom:494.614200px;}
.y104{bottom:495.408300px;}
.y13b{bottom:495.829350px;}
.ya0{bottom:496.487250px;}
.y67{bottom:497.602800px;}
.yb{bottom:497.995350px;}
.y80{bottom:500.087250px;}
.y1b1{bottom:500.621550px;}
.y120{bottom:501.575400px;}
.yd7{bottom:506.571450px;}
.yf6{bottom:507.287250px;}
.y185{bottom:508.775400px;}
.y1f{bottom:510.138750px;}
.y43{bottom:512.329350px;}
.y152{bottom:513.079350px;}
.y16e{bottom:514.102800px;}
.y103{bottom:515.658300px;}
.ybb{bottom:517.456350px;}
.y9f{bottom:519.212250px;}
.y66{bottom:519.652800px;}
.y1b0{bottom:520.337550px;}
.y11f{bottom:521.825400px;}
.y7f{bottom:522.587250px;}
.y13a{bottom:526.383300px;}
.y7{bottom:527.655150px;}
.y184{bottom:528.425400px;}
.yf5{bottom:529.337250px;}
.y1e{bottom:529.638750px;}
.y151{bottom:532.279350px;}
.y42{bottom:534.829350px;}
.y102{bottom:535.908300px;}
.y16c{bottom:536.602800px;}
.yd6{bottom:537.575400px;}
.y1af{bottom:540.053700px;}
.yba{bottom:540.298350px;}
.y65{bottom:541.702650px;}
.y9e{bottom:541.937250px;}
.y11e{bottom:542.075400px;}
.y16d{bottom:542.097300px;}
.y7e{bottom:545.087250px;}
.y6{bottom:545.655150px;}
.y139{bottom:546.633300px;}
.y183{bottom:548.075400px;}
.y1d{bottom:549.138750px;}
.yf4{bottom:551.387250px;}
.y150{bottom:551.479350px;}
.y41{bottom:557.329350px;}
.yd5{bottom:557.825400px;}
.y16b{bottom:559.102800px;}
.y1ae{bottom:559.769850px;}
.y11d{bottom:562.325400px;}
.yb9{bottom:563.140350px;}
.y64{bottom:563.752650px;}
.y9d{bottom:564.662250px;}
.y138{bottom:566.883300px;}
.y7d{bottom:567.587250px;}
.y182{bottom:567.725400px;}
.y5{bottom:568.151250px;}
.y1c{bottom:568.638750px;}
.y14f{bottom:570.679350px;}
.yf3{bottom:573.437250px;}
.yd4{bottom:578.075400px;}
.y1ad{bottom:579.486000px;}
.y16a{bottom:581.602800px;}
.y63{bottom:585.802800px;}
.yb8{bottom:585.982500px;}
.y137{bottom:587.133300px;}
.y9c{bottom:587.387250px;}
.y1b{bottom:588.138750px;}
.y40{bottom:588.333300px;}
.y7c{bottom:590.087250px;}
.y11c{bottom:591.079350px;}
.yf2{bottom:595.487250px;}
.y181{bottom:595.879350px;}
.yd3{bottom:598.325400px;}
.y14e{bottom:598.383300px;}
.y1ac{bottom:599.202000px;}
.y169{bottom:604.102800px;}
.y1a{bottom:607.638750px;}
.y62{bottom:607.852800px;}
.y3f{bottom:608.583300px;}
.yb7{bottom:608.824500px;}
.y9b{bottom:610.112250px;}
.y11b{bottom:611.329350px;}
.y7b{bottom:612.587250px;}
.y180{bottom:615.529350px;}
.y136{bottom:615.887250px;}
.yf1{bottom:617.537250px;}
.y14d{bottom:617.583300px;}
.y1ab{bottom:618.918150px;}
.yd2{bottom:627.079350px;}
.y19{bottom:627.138750px;}
.y3e{bottom:628.833300px;}
.y11a{bottom:631.579350px;}
.yb6{bottom:631.666650px;}
.y9a{bottom:632.837250px;}
.y7a{bottom:635.087250px;}
.y168{bottom:635.106600px;}
.y17f{bottom:635.179350px;}
.y14c{bottom:636.783300px;}
.y135{bottom:638.087250px;}
.y61{bottom:638.406600px;}
.y1aa{bottom:638.634300px;}
.yf0{bottom:639.587250px;}
.y18{bottom:646.638750px;}
.y119{bottom:651.829350px;}
.y167{bottom:654.156600px;}
.yb5{bottom:654.508650px;}
.y17e{bottom:654.829350px;}
.y99{bottom:655.562250px;}
.y14b{bottom:655.983300px;}
.y60{bottom:657.156600px;}
.y3d{bottom:657.587250px;}
.yd1{bottom:658.083300px;}
.y134{bottom:660.287250px;}
.yef{bottom:661.637250px;}
.y17{bottom:666.138750px;}
.y166{bottom:673.206600px;}
.y5f{bottom:675.906600px;}
.yb4{bottom:677.350650px;}
.y98{bottom:678.287250px;}
.yd0{bottom:678.333300px;}
.y1a9{bottom:678.358350px;}
.y3c{bottom:680.087250px;}
.y118{bottom:680.583300px;}
.y133{bottom:682.487250px;}
.y17d{bottom:682.983300px;}
.yee{bottom:683.687250px;}
.y16{bottom:685.638750px;}
.y165{bottom:692.256750px;}
.y5e{bottom:694.656600px;}
.ycf{bottom:698.583300px;}
.yb3{bottom:700.192800px;}
.y117{bottom:700.833300px;}
.y97{bottom:701.012250px;}
.y1a8{bottom:701.074350px;}
.y3b{bottom:702.587250px;}
.y17c{bottom:702.633300px;}
.y132{bottom:704.687250px;}
.y15{bottom:705.138750px;}
.yed{bottom:705.737250px;}
.yce{bottom:718.833300px;}
.y164{bottom:719.810550px;}
.y116{bottom:721.083300px;}
.y5d{bottom:721.910550px;}
.y17b{bottom:722.283300px;}
.yb2{bottom:723.034800px;}
.y96{bottom:723.737250px;}
.y1a7{bottom:723.790500px;}
.y14{bottom:724.638750px;}
.y39{bottom:725.087250px;}
.y131{bottom:726.887250px;}
.yec{bottom:727.787250px;}
.y3a{bottom:730.581750px;}
.y163{bottom:738.860550px;}
.y5c{bottom:740.660550px;}
.y115{bottom:741.333300px;}
.y17a{bottom:741.933300px;}
.y13{bottom:744.138750px;}
.yb1{bottom:745.876950px;}
.y95{bottom:746.462250px;}
.y1a6{bottom:746.506650px;}
.y38{bottom:747.587250px;}
.y130{bottom:749.087250px;}
.yeb{bottom:749.837250px;}
.y14a{bottom:755.331750px;}
.y162{bottom:757.910550px;}
.y5b{bottom:759.410550px;}
.y12{bottom:763.638750px;}
.y4{bottom:766.622250px;}
.yb0{bottom:768.718950px;}
.y94{bottom:769.187250px;}
.y1a5{bottom:769.222800px;}
.y37{bottom:770.087250px;}
.y12f{bottom:771.287250px;}
.yea{bottom:771.887250px;}
.y161{bottom:776.960700px;}
.y5a{bottom:778.160550px;}
.y11{bottom:783.138750px;}
.y3{bottom:789.122250px;}
.yaf{bottom:791.560950px;}
.y93{bottom:791.912250px;}
.y1a4{bottom:791.938800px;}
.y36{bottom:792.587250px;}
.y12e{bottom:793.487250px;}
.ye9{bottom:793.937250px;}
.y10{bottom:802.638750px;}
.y160{bottom:804.514500px;}
.y59{bottom:805.414500px;}
.yae{bottom:814.403100px;}
.y92{bottom:814.637250px;}
.y1a3{bottom:814.654950px;}
.y34{bottom:815.087250px;}
.y12c{bottom:815.687250px;}
.ye8{bottom:815.987250px;}
.y12d{bottom:821.181750px;}
.yf{bottom:822.138750px;}
.y15f{bottom:823.564500px;}
.y58{bottom:824.164500px;}
.y2{bottom:832.484250px;}
.yad{bottom:837.245250px;}
.y91{bottom:837.362250px;}
.y1a2{bottom:837.371100px;}
.y35{bottom:837.587250px;}
.y12b{bottom:837.887250px;}
.ye7{bottom:838.037250px;}
.ye{bottom:841.638750px;}
.y15e{bottom:842.614500px;}
.y57{bottom:842.914500px;}
.y1{bottom:857.984250px;}
.y79{bottom:860.087250px;}
.yd{bottom:861.138750px;}
.y56{bottom:861.664500px;}
.y55{bottom:871.653600px;}
.y33{bottom:930.708000px;}
.ya{bottom:946.311000px;}
.hc{height:33.168036px;}
.h11{height:33.618000px;}
.h7{height:34.080000px;}
.h5{height:34.494545px;}
.h12{height:39.960000px;}
.h6{height:41.376000px;}
.he{height:42.180000px;}
.h15{height:42.275931px;}
.h10{height:42.930000px;}
.h16{height:44.400000px;}
.h14{height:46.266000px;}
.hf{height:46.548000px;}
.h13{height:47.626122px;}
.hd{height:49.134000px;}
.h9{height:50.736000px;}
.h8{height:51.720000px;}
.h3{height:52.470000px;}
.hb{height:56.892000px;}
.h2{height:62.010000px;}
.h4{height:62.010667px;}
.ha{height:254.484030px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x3{left:41.566800px;}
.x16{left:43.058550px;}
.x4{left:103.848750px;}
.x1{left:106.299150px;}
.x2{left:136.569750px;}
.xc{left:142.510050px;}
.xd{left:151.830150px;}
.x12{left:157.337550px;}
.x5{left:162.750300px;}
.x13{left:166.416600px;}
.x6{left:258.651450px;}
.x7{left:263.323350px;}
.xa{left:424.726950px;}
.xb{left:433.574400px;}
.x15{left:523.261200px;}
.xe{left:532.773900px;}
.xf{left:541.635450px;}
.x10{left:586.385400px;}
.x11{left:595.275600px;}
.x8{left:637.220400px;}
.x17{left:638.347500px;}
.x14{left:639.427650px;}
.x9{left:645.842550px;}
@media print{
.v4{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.872000pt;}
.v3{vertical-align:19.536000pt;}
.v1{vertical-align:160.000000pt;}
.ls16{letter-spacing:-0.821333pt;}
.ls30{letter-spacing:-0.762667pt;}
.ls54{letter-spacing:-0.746667pt;}
.ls17{letter-spacing:-0.704000pt;}
.ls53{letter-spacing:-0.693333pt;}
.ls20{letter-spacing:-0.672000pt;}
.ls14{letter-spacing:-0.645333pt;}
.ls4e{letter-spacing:-0.640000pt;}
.ls21{letter-spacing:-0.624000pt;}
.ls15{letter-spacing:-0.586667pt;}
.ls18{letter-spacing:-0.576000pt;}
.ls35{letter-spacing:-0.557333pt;}
.ls4c{letter-spacing:-0.533333pt;}
.ls33{letter-spacing:-0.528000pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls2f{letter-spacing:-0.469333pt;}
.ls36{letter-spacing:-0.432000pt;}
.ls4d{letter-spacing:-0.426667pt;}
.ls31{letter-spacing:-0.410432pt;}
.ls42{letter-spacing:-0.376229pt;}
.ls4b{letter-spacing:-0.373333pt;}
.ls32{letter-spacing:-0.342027pt;}
.ls4f{letter-spacing:-0.320000pt;}
.ls4a{letter-spacing:-0.307824pt;}
.ls3b{letter-spacing:-0.293333pt;}
.ls50{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:-0.234667pt;}
.ls26{letter-spacing:-0.176000pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls2d{letter-spacing:-0.144000pt;}
.ls1{letter-spacing:-0.138667pt;}
.ls2c{letter-spacing:-0.136811pt;}
.ls1e{letter-spacing:-0.117333pt;}
.ls7{letter-spacing:-0.106667pt;}
.ls3e{letter-spacing:-0.101333pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls47{letter-spacing:-0.068405pt;}
.ls10{letter-spacing:-0.058667pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls3f{letter-spacing:-0.050667pt;}
.ls11{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.000037pt;}
.ls19{letter-spacing:0.000320pt;}
.ls2a{letter-spacing:0.023656pt;}
.ls2b{letter-spacing:0.024000pt;}
.ls5{letter-spacing:0.026667pt;}
.ls1a{letter-spacing:0.029333pt;}
.ls3a{letter-spacing:0.034203pt;}
.lsd{letter-spacing:0.048000pt;}
.lsc{letter-spacing:0.050667pt;}
.ls3{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.058667pt;}
.ls38{letter-spacing:0.058905pt;}
.ls1b{letter-spacing:0.065700pt;}
.ls12{letter-spacing:0.066489pt;}
.ls27{letter-spacing:0.088000pt;}
.lsf{letter-spacing:0.096000pt;}
.ls40{letter-spacing:0.101333pt;}
.ls4{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.117333pt;}
.ls25{letter-spacing:0.144000pt;}
.ls28{letter-spacing:0.146667pt;}
.ls24{letter-spacing:0.149030pt;}
.ls6{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.176000pt;}
.ls46{letter-spacing:0.192000pt;}
.ls2e{letter-spacing:0.202667pt;}
.ls45{letter-spacing:0.216000pt;}
.ls44{letter-spacing:0.234667pt;}
.ls48{letter-spacing:0.240000pt;}
.ls39{letter-spacing:0.293333pt;}
.ls3c{letter-spacing:0.405333pt;}
.lse{letter-spacing:0.971733pt;}
.ls1d{letter-spacing:1.419200pt;}
.ls34{letter-spacing:1.657439pt;}
.ls3d{letter-spacing:1.866667pt;}
.ls41{letter-spacing:1.994667pt;}
.ls29{letter-spacing:2.118936pt;}
.ls1c{letter-spacing:2.148304pt;}
.ls13{letter-spacing:2.149384pt;}
.ls23{letter-spacing:2.207131pt;}
.ls49{letter-spacing:2.214696pt;}
.ls51{letter-spacing:91.738401pt;}
.ls52{letter-spacing:91.797368pt;}
.wsc{word-spacing:-70.669840pt;}
.ws23{word-spacing:-12.848000pt;}
.ws3f{word-spacing:-12.261333pt;}
.ws4b{word-spacing:-12.026667pt;}
.ws31{word-spacing:-11.909333pt;}
.ws2a{word-spacing:-11.850667pt;}
.ws33{word-spacing:-11.821333pt;}
.wsf{word-spacing:-11.792000pt;}
.wsd{word-spacing:-11.733333pt;}
.ws5{word-spacing:-11.680000pt;}
.wse{word-spacing:-11.674667pt;}
.ws29{word-spacing:-11.616000pt;}
.ws50{word-spacing:-11.557333pt;}
.ws32{word-spacing:-11.498667pt;}
.ws3d{word-spacing:-11.205333pt;}
.ws1c{word-spacing:-11.146667pt;}
.ws44{word-spacing:-11.096000pt;}
.ws4f{word-spacing:-11.088000pt;}
.ws3e{word-spacing:-11.029333pt;}
.ws37{word-spacing:-10.970667pt;}
.ws2d{word-spacing:-10.656000pt;}
.ws34{word-spacing:-10.560000pt;}
.ws13{word-spacing:-10.512000pt;}
.ws2b{word-spacing:-10.464000pt;}
.ws40{word-spacing:-10.416000pt;}
.ws5d{word-spacing:-10.293333pt;}
.ws64{word-spacing:-10.186667pt;}
.ws43{word-spacing:-10.133333pt;}
.ws14{word-spacing:-9.696000pt;}
.ws11{word-spacing:-9.648000pt;}
.ws10{word-spacing:-9.600000pt;}
.ws2c{word-spacing:-9.552000pt;}
.ws51{word-spacing:-9.504000pt;}
.ws47{word-spacing:-9.120000pt;}
.ws24{word-spacing:-8.976000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws1d{word-spacing:-7.490384pt;}
.ws35{word-spacing:-7.353573pt;}
.ws3c{word-spacing:-7.148357pt;}
.ws38{word-spacing:-7.079952pt;}
.ws45{word-spacing:-6.468968pt;}
.ws56{word-spacing:-1.994667pt;}
.ws52{word-spacing:-0.405333pt;}
.ws4d{word-spacing:-0.293333pt;}
.ws5a{word-spacing:-0.240000pt;}
.ws58{word-spacing:-0.234667pt;}
.ws39{word-spacing:-0.202667pt;}
.ws5b{word-spacing:-0.192000pt;}
.ws17{word-spacing:-0.176000pt;}
.ws9{word-spacing:-0.160000pt;}
.ws30{word-spacing:-0.144000pt;}
.ws2f{word-spacing:-0.117333pt;}
.ws8{word-spacing:-0.106667pt;}
.ws55{word-spacing:-0.101333pt;}
.ws1a{word-spacing:-0.096000pt;}
.ws16{word-spacing:-0.058667pt;}
.ws6{word-spacing:-0.053333pt;}
.ws18{word-spacing:-0.050667pt;}
.ws12{word-spacing:-0.048000pt;}
.ws1b{word-spacing:-0.034667pt;}
.ws4c{word-spacing:-0.034203pt;}
.ws1{word-spacing:0.000000pt;}
.ws19{word-spacing:0.048000pt;}
.ws54{word-spacing:0.050667pt;}
.wsa{word-spacing:0.053333pt;}
.ws15{word-spacing:0.058667pt;}
.ws59{word-spacing:0.068405pt;}
.ws26{word-spacing:0.096000pt;}
.ws53{word-spacing:0.101333pt;}
.ws7{word-spacing:0.106667pt;}
.ws25{word-spacing:0.117333pt;}
.ws2{word-spacing:0.138667pt;}
.ws36{word-spacing:0.144000pt;}
.wsb{word-spacing:0.160000pt;}
.ws2e{word-spacing:0.176000pt;}
.ws3{word-spacing:0.234667pt;}
.ws63{word-spacing:0.266667pt;}
.ws4e{word-spacing:0.293333pt;}
.ws5c{word-spacing:0.307824pt;}
.ws62{word-spacing:0.320000pt;}
.ws42{word-spacing:0.342027pt;}
.ws5e{word-spacing:0.373333pt;}
.ws57{word-spacing:0.376229pt;}
.ws46{word-spacing:0.384000pt;}
.ws60{word-spacing:0.426667pt;}
.ws49{word-spacing:0.432000pt;}
.ws3a{word-spacing:0.469333pt;}
.ws4a{word-spacing:0.480000pt;}
.ws41{word-spacing:0.528000pt;}
.ws5f{word-spacing:0.533333pt;}
.ws48{word-spacing:0.557333pt;}
.ws22{word-spacing:0.576000pt;}
.ws1f{word-spacing:0.586667pt;}
.ws61{word-spacing:0.640000pt;}
.ws1e{word-spacing:0.645333pt;}
.ws28{word-spacing:0.672000pt;}
.ws65{word-spacing:0.693333pt;}
.ws21{word-spacing:0.704000pt;}
.ws66{word-spacing:0.746667pt;}
.ws3b{word-spacing:0.762667pt;}
.ws20{word-spacing:0.821333pt;}
.ws4{word-spacing:1.450667pt;}
.ws27{word-spacing:2.064000pt;}
._9{margin-left:-10.512000pt;}
._8{margin-left:-9.599467pt;}
._a{margin-left:-6.635733pt;}
._3{margin-left:-5.463467pt;}
._4{margin-left:-4.571200pt;}
._0{margin-left:-3.674667pt;}
._1{margin-left:-2.080000pt;}
._5{margin-left:-1.162667pt;}
._6{width:1.602133pt;}
._7{width:2.641067pt;}
._2{width:3.605333pt;}
._b{width:4.585569pt;}
.fs8{font-size:29.538667pt;}
.fs6{font-size:34.202667pt;}
.fs9{font-size:34.666667pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs5{font-size:322.693333pt;}
.y0{bottom:0.000000pt;}
.ycd{bottom:94.488133pt;}
.y54{bottom:94.488267pt;}
.y78{bottom:94.488400pt;}
.y1d8{bottom:106.790000pt;}
.ye6{bottom:111.821467pt;}
.y53{bottom:111.821600pt;}
.y114{bottom:111.821733pt;}
.y77{bottom:111.821867pt;}
.y1c4{bottom:112.013600pt;}
.y32{bottom:112.784667pt;}
.ycc{bottom:114.792267pt;}
.y1d7{bottom:124.123333pt;}
.y19e{bottom:129.154800pt;}
.y52{bottom:129.154933pt;}
.y90{bottom:129.155067pt;}
.y76{bottom:129.155200pt;}
.y1c3{bottom:129.539067pt;}
.y31{bottom:130.118000pt;}
.ycb{bottom:135.096267pt;}
.y1d6{bottom:141.456667pt;}
.y19d{bottom:146.488133pt;}
.y51{bottom:146.488267pt;}
.y8f{bottom:146.488400pt;}
.y12a{bottom:146.488533pt;}
.y1c2{bottom:147.064533pt;}
.y30{bottom:147.451333pt;}
.y194{bottom:149.834267pt;}
.ye5{bottom:150.285733pt;}
.yca{bottom:155.400400pt;}
.y1d5{bottom:158.790000pt;}
.y19c{bottom:163.821467pt;}
.y50{bottom:163.821733pt;}
.y8e{bottom:163.821867pt;}
.y129{bottom:163.822000pt;}
.y1a1{bottom:164.522000pt;}
.y1c1{bottom:164.589867pt;}
.y2f{bottom:164.784667pt;}
.y149{bottom:166.337200pt;}
.y75{bottom:167.913600pt;}
.y193{bottom:169.834267pt;}
.ye4{bottom:170.285733pt;}
.yc9{bottom:175.704400pt;}
.y1d4{bottom:176.123333pt;}
.y4f{bottom:181.155067pt;}
.yac{bottom:181.155200pt;}
.y8d{bottom:181.155333pt;}
.y1c0{bottom:182.115333pt;}
.y2e{bottom:182.118000pt;}
.y1a0{bottom:184.522000pt;}
.y148{bottom:185.937200pt;}
.y74{bottom:187.513600pt;}
.y192{bottom:189.834267pt;}
.ye3{bottom:190.285733pt;}
.y1d3{bottom:193.456667pt;}
.yc8{bottom:196.008400pt;}
.y4e{bottom:198.488400pt;}
.y113{bottom:198.488533pt;}
.y8c{bottom:198.488667pt;}
.y2d{bottom:199.451333pt;}
.y1bf{bottom:199.640800pt;}
.y19a{bottom:204.522000pt;}
.y147{bottom:205.537200pt;}
.y73{bottom:207.113467pt;}
.y19b{bottom:209.406000pt;}
.y191{bottom:209.834267pt;}
.ye2{bottom:210.285733pt;}
.y1d2{bottom:210.790000pt;}
.y4d{bottom:215.821733pt;}
.y112{bottom:215.822000pt;}
.y8b{bottom:215.822133pt;}
.yc7{bottom:216.312533pt;}
.y2c{bottom:216.784667pt;}
.y1be{bottom:217.166267pt;}
.yab{bottom:219.122000pt;}
.y199{bottom:224.522000pt;}
.y146{bottom:225.137200pt;}
.y72{bottom:226.713600pt;}
.y1d1{bottom:228.123333pt;}
.y190{bottom:229.834267pt;}
.ye1{bottom:230.285733pt;}
.y4c{bottom:233.155067pt;}
.y111{bottom:233.155333pt;}
.y8a{bottom:233.155467pt;}
.y2b{bottom:234.118000pt;}
.y10e{bottom:234.670533pt;}
.y1bd{bottom:234.691600pt;}
.y15d{bottom:235.167600pt;}
.y101{bottom:235.322000pt;}
.yc6{bottom:236.616533pt;}
.yaa{bottom:239.322000pt;}
.y10f{bottom:239.554533pt;}
.y198{bottom:244.522000pt;}
.y145{bottom:244.737200pt;}
.y1d0{bottom:245.456667pt;}
.y71{bottom:246.313467pt;}
.y18f{bottom:249.834267pt;}
.ye0{bottom:250.285733pt;}
.y179{bottom:250.488667pt;}
.y89{bottom:250.488800pt;}
.y2a{bottom:251.451333pt;}
.y1bc{bottom:252.217067pt;}
.y10d{bottom:254.803867pt;}
.y100{bottom:254.922000pt;}
.yc5{bottom:256.920667pt;}
.ya9{bottom:259.522000pt;}
.y15c{bottom:262.726667pt;}
.y1cf{bottom:262.790000pt;}
.y144{bottom:264.337200pt;}
.y197{bottom:264.522000pt;}
.y70{bottom:265.913600pt;}
.y178{bottom:267.822000pt;}
.y88{bottom:267.822267pt;}
.y29{bottom:268.784667pt;}
.y1bb{bottom:269.742533pt;}
.y18e{bottom:269.834267pt;}
.ydf{bottom:270.285733pt;}
.yff{bottom:274.522000pt;}
.y10c{bottom:274.803867pt;}
.yc4{bottom:277.224667pt;}
.ya8{bottom:279.722000pt;}
.y15b{bottom:279.793333pt;}
.y1ce{bottom:280.123333pt;}
.y143{bottom:283.937200pt;}
.y196{bottom:284.522000pt;}
.y177{bottom:285.155467pt;}
.y87{bottom:285.155600pt;}
.y6f{bottom:285.513600pt;}
.y28{bottom:286.118000pt;}
.y128{bottom:286.726667pt;}
.y1ba{bottom:287.268000pt;}
.yde{bottom:290.285733pt;}
.yfe{bottom:294.122000pt;}
.y10b{bottom:294.803867pt;}
.y4b{bottom:296.285733pt;}
.y15a{bottom:296.860000pt;}
.y18d{bottom:297.393333pt;}
.y1cd{bottom:297.456667pt;}
.yc3{bottom:297.528667pt;}
.ya7{bottom:299.922000pt;}
.y176{bottom:302.488800pt;}
.y110{bottom:302.488933pt;}
.y27{bottom:303.451333pt;}
.y142{bottom:303.537200pt;}
.y195{bottom:304.522000pt;}
.y127{bottom:304.726667pt;}
.y1b9{bottom:304.793467pt;}
.y6e{bottom:305.113467pt;}
.ydd{bottom:310.285733pt;}
.yfd{bottom:313.722000pt;}
.y159{bottom:313.926667pt;}
.y4a{bottom:314.285733pt;}
.y1cc{bottom:314.790000pt;}
.y10a{bottom:314.803867pt;}
.y18c{bottom:314.860000pt;}
.yc2{bottom:317.832800pt;}
.ya6{bottom:320.122000pt;}
.y26{bottom:320.784667pt;}
.y1b8{bottom:322.318800pt;}
.y126{bottom:322.726667pt;}
.y141{bottom:323.137200pt;}
.y86{bottom:324.522000pt;}
.y6d{bottom:324.713600pt;}
.ydc{bottom:330.285733pt;}
.y1cb{bottom:332.123333pt;}
.y49{bottom:332.285733pt;}
.y18b{bottom:332.326667pt;}
.yfc{bottom:333.322000pt;}
.y109{bottom:334.803867pt;}
.y174{bottom:336.980133pt;}
.y25{bottom:338.118000pt;}
.yc1{bottom:338.136800pt;}
.y158{bottom:338.552400pt;}
.y1b7{bottom:339.844267pt;}
.ya5{bottom:340.322000pt;}
.y125{bottom:340.726667pt;}
.y175{bottom:341.864133pt;}
.y140{bottom:342.737200pt;}
.y6c{bottom:344.313467pt;}
.y85{bottom:344.522000pt;}
.y1ca{bottom:349.456667pt;}
.y18a{bottom:349.793333pt;}
.y48{bottom:350.285733pt;}
.yfb{bottom:352.922000pt;}
.y108{bottom:354.803867pt;}
.y24{bottom:355.451333pt;}
.y157{bottom:355.619067pt;}
.y173{bottom:356.980133pt;}
.y1b6{bottom:357.369733pt;}
.yc0{bottom:358.440933pt;}
.ya4{bottom:360.522000pt;}
.y13f{bottom:362.337200pt;}
.y6b{bottom:363.913600pt;}
.yc{bottom:364.307867pt;}
.y84{bottom:364.522000pt;}
.y124{bottom:366.285733pt;}
.y1c9{bottom:366.790000pt;}
.y19f{bottom:369.406000pt;}
.ydb{bottom:370.285733pt;}
.yfa{bottom:372.522000pt;}
.y156{bottom:372.685733pt;}
.y23{bottom:372.784667pt;}
.y107{bottom:374.803867pt;}
.y189{bottom:374.819067pt;}
.y1b5{bottom:374.895200pt;}
.y47{bottom:375.844800pt;}
.y172{bottom:376.980133pt;}
.ybf{bottom:378.744933pt;}
.ya3{bottom:380.722000pt;}
.y9{bottom:381.223333pt;}
.y13e{bottom:381.937200pt;}
.y6a{bottom:383.513600pt;}
.y1c8{bottom:384.123333pt;}
.y123{bottom:384.285733pt;}
.y83{bottom:384.522000pt;}
.y155{bottom:389.752400pt;}
.y22{bottom:390.118000pt;}
.yda{bottom:390.285733pt;}
.yf9{bottom:392.122000pt;}
.y188{bottom:392.285733pt;}
.y1b4{bottom:392.420533pt;}
.y46{bottom:393.844800pt;}
.y106{bottom:394.803867pt;}
.y171{bottom:396.980133pt;}
.y8{bottom:397.223333pt;}
.ybe{bottom:399.048933pt;}
.ya2{bottom:400.922000pt;}
.y1c7{bottom:401.456667pt;}
.y13d{bottom:401.537200pt;}
.y122{bottom:402.285733pt;}
.y69{bottom:403.113467pt;}
.y82{bottom:404.522000pt;}
.y21{bottom:407.451333pt;}
.y187{bottom:409.752400pt;}
.y1b3{bottom:409.946000pt;}
.yd9{bottom:410.285733pt;}
.yf8{bottom:411.722000pt;}
.y45{bottom:411.844800pt;}
.y154{bottom:414.378133pt;}
.y170{bottom:416.980133pt;}
.y1c6{bottom:418.790000pt;}
.ybd{bottom:419.353067pt;}
.y121{bottom:420.285733pt;}
.ya1{bottom:421.122000pt;}
.y13c{bottom:421.137200pt;}
.y105{bottom:422.362933pt;}
.y68{bottom:422.713600pt;}
.y81{bottom:424.522000pt;}
.y20{bottom:424.784667pt;}
.y186{bottom:427.219067pt;}
.y1b2{bottom:427.471467pt;}
.y44{bottom:429.844800pt;}
.yd8{bottom:430.285733pt;}
.yf7{bottom:431.322000pt;}
.y153{bottom:431.444800pt;}
.y1c5{bottom:436.123333pt;}
.y16f{bottom:436.980267pt;}
.ybc{bottom:439.657067pt;}
.y104{bottom:440.362933pt;}
.y13b{bottom:440.737200pt;}
.ya0{bottom:441.322000pt;}
.y67{bottom:442.313600pt;}
.yb{bottom:442.662533pt;}
.y80{bottom:444.522000pt;}
.y1b1{bottom:444.996933pt;}
.y120{bottom:445.844800pt;}
.yd7{bottom:450.285733pt;}
.yf6{bottom:450.922000pt;}
.y185{bottom:452.244800pt;}
.y1f{bottom:453.456667pt;}
.y43{bottom:455.403867pt;}
.y152{bottom:456.070533pt;}
.y16e{bottom:456.980267pt;}
.y103{bottom:458.362933pt;}
.ybb{bottom:459.961200pt;}
.y9f{bottom:461.522000pt;}
.y66{bottom:461.913600pt;}
.y1b0{bottom:462.522267pt;}
.y11f{bottom:463.844800pt;}
.y7f{bottom:464.522000pt;}
.y13a{bottom:467.896267pt;}
.y7{bottom:469.026800pt;}
.y184{bottom:469.711467pt;}
.yf5{bottom:470.522000pt;}
.y1e{bottom:470.790000pt;}
.y151{bottom:473.137200pt;}
.y42{bottom:475.403867pt;}
.y102{bottom:476.362933pt;}
.y16c{bottom:476.980267pt;}
.yd6{bottom:477.844800pt;}
.y1af{bottom:480.047733pt;}
.yba{bottom:480.265200pt;}
.y65{bottom:481.513467pt;}
.y9e{bottom:481.722000pt;}
.y11e{bottom:481.844800pt;}
.y16d{bottom:481.864267pt;}
.y7e{bottom:484.522000pt;}
.y6{bottom:485.026800pt;}
.y139{bottom:485.896267pt;}
.y183{bottom:487.178133pt;}
.y1d{bottom:488.123333pt;}
.yf4{bottom:490.122000pt;}
.y150{bottom:490.203867pt;}
.y41{bottom:495.403867pt;}
.yd5{bottom:495.844800pt;}
.y16b{bottom:496.980267pt;}
.y1ae{bottom:497.573200pt;}
.y11d{bottom:499.844800pt;}
.yb9{bottom:500.569200pt;}
.y64{bottom:501.113467pt;}
.y9d{bottom:501.922000pt;}
.y138{bottom:503.896267pt;}
.y7d{bottom:504.522000pt;}
.y182{bottom:504.644800pt;}
.y5{bottom:505.023333pt;}
.y1c{bottom:505.456667pt;}
.y14f{bottom:507.270533pt;}
.yf3{bottom:509.722000pt;}
.yd4{bottom:513.844800pt;}
.y1ad{bottom:515.098667pt;}
.y16a{bottom:516.980267pt;}
.y63{bottom:520.713600pt;}
.yb8{bottom:520.873333pt;}
.y137{bottom:521.896267pt;}
.y9c{bottom:522.122000pt;}
.y1b{bottom:522.790000pt;}
.y40{bottom:522.962933pt;}
.y7c{bottom:524.522000pt;}
.y11c{bottom:525.403867pt;}
.yf2{bottom:529.322000pt;}
.y181{bottom:529.670533pt;}
.yd3{bottom:531.844800pt;}
.y14e{bottom:531.896267pt;}
.y1ac{bottom:532.624000pt;}
.y169{bottom:536.980267pt;}
.y1a{bottom:540.123333pt;}
.y62{bottom:540.313600pt;}
.y3f{bottom:540.962933pt;}
.yb7{bottom:541.177333pt;}
.y9b{bottom:542.322000pt;}
.y11b{bottom:543.403867pt;}
.y7b{bottom:544.522000pt;}
.y180{bottom:547.137200pt;}
.y136{bottom:547.455333pt;}
.yf1{bottom:548.922000pt;}
.y14d{bottom:548.962933pt;}
.y1ab{bottom:550.149467pt;}
.yd2{bottom:557.403867pt;}
.y19{bottom:557.456667pt;}
.y3e{bottom:558.962933pt;}
.y11a{bottom:561.403867pt;}
.yb6{bottom:561.481467pt;}
.y9a{bottom:562.522000pt;}
.y7a{bottom:564.522000pt;}
.y168{bottom:564.539200pt;}
.y17f{bottom:564.603867pt;}
.y14c{bottom:566.029600pt;}
.y135{bottom:567.188667pt;}
.y61{bottom:567.472533pt;}
.y1aa{bottom:567.674933pt;}
.yf0{bottom:568.522000pt;}
.y18{bottom:574.790000pt;}
.y119{bottom:579.403867pt;}
.y167{bottom:581.472533pt;}
.yb5{bottom:581.785467pt;}
.y17e{bottom:582.070533pt;}
.y99{bottom:582.722000pt;}
.y14b{bottom:583.096267pt;}
.y60{bottom:584.139200pt;}
.y3d{bottom:584.522000pt;}
.yd1{bottom:584.962933pt;}
.y134{bottom:586.922000pt;}
.yef{bottom:588.122000pt;}
.y17{bottom:592.123333pt;}
.y166{bottom:598.405867pt;}
.y5f{bottom:600.805867pt;}
.yb4{bottom:602.089467pt;}
.y98{bottom:602.922000pt;}
.yd0{bottom:602.962933pt;}
.y1a9{bottom:602.985200pt;}
.y3c{bottom:604.522000pt;}
.y118{bottom:604.962933pt;}
.y133{bottom:606.655333pt;}
.y17d{bottom:607.096267pt;}
.yee{bottom:607.722000pt;}
.y16{bottom:609.456667pt;}
.y165{bottom:615.339333pt;}
.y5e{bottom:617.472533pt;}
.ycf{bottom:620.962933pt;}
.yb3{bottom:622.393600pt;}
.y117{bottom:622.962933pt;}
.y97{bottom:623.122000pt;}
.y1a8{bottom:623.177200pt;}
.y3b{bottom:624.522000pt;}
.y17c{bottom:624.562933pt;}
.y132{bottom:626.388667pt;}
.y15{bottom:626.790000pt;}
.yed{bottom:627.322000pt;}
.yce{bottom:638.962933pt;}
.y164{bottom:639.831600pt;}
.y116{bottom:640.962933pt;}
.y5d{bottom:641.698267pt;}
.y17b{bottom:642.029600pt;}
.yb2{bottom:642.697600pt;}
.y96{bottom:643.322000pt;}
.y1a7{bottom:643.369333pt;}
.y14{bottom:644.123333pt;}
.y39{bottom:644.522000pt;}
.y131{bottom:646.122000pt;}
.yec{bottom:646.922000pt;}
.y3a{bottom:649.406000pt;}
.y163{bottom:656.764933pt;}
.y5c{bottom:658.364933pt;}
.y115{bottom:658.962933pt;}
.y17a{bottom:659.496267pt;}
.y13{bottom:661.456667pt;}
.yb1{bottom:663.001733pt;}
.y95{bottom:663.522000pt;}
.y1a6{bottom:663.561467pt;}
.y38{bottom:664.522000pt;}
.y130{bottom:665.855333pt;}
.yeb{bottom:666.522000pt;}
.y14a{bottom:671.406000pt;}
.y162{bottom:673.698267pt;}
.y5b{bottom:675.031600pt;}
.y12{bottom:678.790000pt;}
.y4{bottom:681.442000pt;}
.yb0{bottom:683.305733pt;}
.y94{bottom:683.722000pt;}
.y1a5{bottom:683.753600pt;}
.y37{bottom:684.522000pt;}
.y12f{bottom:685.588667pt;}
.yea{bottom:686.122000pt;}
.y161{bottom:690.631733pt;}
.y5a{bottom:691.698267pt;}
.y11{bottom:696.123333pt;}
.y3{bottom:701.442000pt;}
.yaf{bottom:703.609733pt;}
.y93{bottom:703.922000pt;}
.y1a4{bottom:703.945600pt;}
.y36{bottom:704.522000pt;}
.y12e{bottom:705.322000pt;}
.ye9{bottom:705.722000pt;}
.y10{bottom:713.456667pt;}
.y160{bottom:715.124000pt;}
.y59{bottom:715.924000pt;}
.yae{bottom:723.913867pt;}
.y92{bottom:724.122000pt;}
.y1a3{bottom:724.137733pt;}
.y34{bottom:724.522000pt;}
.y12c{bottom:725.055333pt;}
.ye8{bottom:725.322000pt;}
.y12d{bottom:729.939333pt;}
.yf{bottom:730.790000pt;}
.y15f{bottom:732.057333pt;}
.y58{bottom:732.590667pt;}
.y2{bottom:739.986000pt;}
.yad{bottom:744.218000pt;}
.y91{bottom:744.322000pt;}
.y1a2{bottom:744.329867pt;}
.y35{bottom:744.522000pt;}
.y12b{bottom:744.788667pt;}
.ye7{bottom:744.922000pt;}
.ye{bottom:748.123333pt;}
.y15e{bottom:748.990667pt;}
.y57{bottom:749.257333pt;}
.y1{bottom:762.652667pt;}
.y79{bottom:764.522000pt;}
.yd{bottom:765.456667pt;}
.y56{bottom:765.924000pt;}
.y55{bottom:774.803200pt;}
.y33{bottom:827.296000pt;}
.ya{bottom:841.165333pt;}
.hc{height:29.482699pt;}
.h11{height:29.882667pt;}
.h7{height:30.293333pt;}
.h5{height:30.661818pt;}
.h12{height:35.520000pt;}
.h6{height:36.778667pt;}
.he{height:37.493333pt;}
.h15{height:37.578605pt;}
.h10{height:38.160000pt;}
.h16{height:39.466667pt;}
.h14{height:41.125333pt;}
.hf{height:41.376000pt;}
.h13{height:42.334331pt;}
.hd{height:43.674667pt;}
.h9{height:45.098667pt;}
.h8{height:45.973333pt;}
.h3{height:46.640000pt;}
.hb{height:50.570667pt;}
.h2{height:55.120000pt;}
.h4{height:55.120593pt;}
.ha{height:226.208027pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x3{left:36.948267pt;}
.x16{left:38.274267pt;}
.x4{left:92.310000pt;}
.x1{left:94.488133pt;}
.x2{left:121.395333pt;}
.xc{left:126.675600pt;}
.xd{left:134.960133pt;}
.x12{left:139.855600pt;}
.x5{left:144.666933pt;}
.x13{left:147.925867pt;}
.x6{left:229.912400pt;}
.x7{left:234.065200pt;}
.xa{left:377.535067pt;}
.xb{left:385.399467pt;}
.x15{left:465.121067pt;}
.xe{left:473.576800pt;}
.xf{left:481.453733pt;}
.x10{left:521.231467pt;}
.x11{left:529.133867pt;}
.x8{left:566.418133pt;}
.x17{left:567.420000pt;}
.x14{left:568.380133pt;}
.x9{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; }
  