
    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_c642073378b04e7576cca766.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179800;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_a936bf32a9cee47f8da37cfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.179800;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_c642073378b04e7576cca766.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.179800;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_653641adc1abb95b271e9c44.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.149902;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_c5097af46f2ca712556b00e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.174000;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_c642073378b04e7576cca766.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.179800;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_8416c6a3075722bd68af38f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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_eb1ac614a16851305f6fb14f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.149902;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;}
.m3c{transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.243753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243753,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.244356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244356,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245259,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.245644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245644,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245685,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.245976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245976,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.246144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246144,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.246253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246253,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.246391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246391,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.246438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246438,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.246462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246462,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246544,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.246641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246641,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246668,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246738,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.246741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246741,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246788,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.m61{transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246985,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246989,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247015,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247053,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.247124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247124,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.247138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247138,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.247147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247147,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247153,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.247174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247174,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247312,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247400,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247424,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247435,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247479,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.ma{transform:matrix(0.247506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247506,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247524,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247747,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.247753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247753,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247785,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247794,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247859,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247976,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.248021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248021,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248138,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248188,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248312,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248315,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248341,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248353,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248426,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248538,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248629,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248715,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248732,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248924,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248938,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248947,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249009,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249047,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249079,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249144,0.000000,0.000000,0.250000,0,0);}
.m88{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);}
.m4{transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249196,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249212,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249253,0.000000,0.000000,0.250000,0,0);}
.mba{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);}
.m5d{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.249306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249306,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.249403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249403,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249435,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);}
.mb2{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);}
.mc1{transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249471,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249553,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249734,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,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);}
.m50{transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250035,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250112,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m75{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);}
.m53{transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250203,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250209,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250253,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250268,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250362,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250374,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250376,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250388,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250453,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250472,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250521,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.md8{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);}
.me7{transform:matrix(0.250609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250609,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250612,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250624,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250629,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250694,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m13{transform:matrix(0.250806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250806,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250838,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.m91{transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250856,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250947,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251015,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251032,0.000000,0.000000,0.250000,0,0);}
.m39{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);}
.m52{transform:matrix(0.251176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251176,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251247,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.251324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251324,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251441,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251481,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251491,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251512,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251526,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251579,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251609,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251612,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251644,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.251703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251703,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251721,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251729,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251744,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251788,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251832,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251853,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251876,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251941,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251959,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252006,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252056,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.252059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252059,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252138,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.252221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252221,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252241,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252347,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252350,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.252394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252394,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.252424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252424,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252550,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252606,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252650,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252974,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.252994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252994,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.253026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253026,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253082,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.253174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253174,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253253,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.253353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253353,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253550,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253679,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.253703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253703,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.253718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253718,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.253724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253724,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253735,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.253779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253779,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.253803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253803,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.253829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253829,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.254026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254026,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.254041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254041,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254191,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.254212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254212,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.254253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254253,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254315,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254332,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254626,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254641,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.254709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254709,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254997,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.255294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255294,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.255356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255356,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.255379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255379,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.255612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255612,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.255706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255706,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.256291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256291,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.256397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256397,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.256447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256447,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.256997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256997,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.842400px;}
.v1{vertical-align:18.840000px;}
.v2{vertical-align:27.732600px;}
.ls2e{letter-spacing:-1.224000px;}
.ls2c{letter-spacing:-1.122000px;}
.ls21{letter-spacing:-0.612000px;}
.ls2f{letter-spacing:-0.561000px;}
.ls32{letter-spacing:-0.459000px;}
.ls1f{letter-spacing:-0.408000px;}
.ls25{letter-spacing:-0.357000px;}
.ls22{letter-spacing:-0.306000px;}
.ls14{letter-spacing:-0.255000px;}
.ls9{letter-spacing:-0.252000px;}
.ls1b{letter-spacing:-0.204000px;}
.ls15{letter-spacing:-0.153000px;}
.ls13{letter-spacing:-0.102000px;}
.ls1d{letter-spacing:-0.096000px;}
.ls1c{letter-spacing:-0.051000px;}
.lsb{letter-spacing:-0.042000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.024360px;}
.ls2a{letter-spacing:0.025500px;}
.ls18{letter-spacing:0.048000px;}
.ls12{letter-spacing:0.051000px;}
.ls19{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.076500px;}
.ls0{letter-spacing:0.078000px;}
.ls8{letter-spacing:0.097440px;}
.ls10{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.111000px;}
.ls6{letter-spacing:0.120000px;}
.ls29{letter-spacing:0.127500px;}
.ls1a{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.168000px;}
.ls28{letter-spacing:0.178500px;}
.lse{letter-spacing:0.204000px;}
.ls31{letter-spacing:0.224400px;}
.ls24{letter-spacing:0.255000px;}
.ls23{letter-spacing:0.280500px;}
.ls26{letter-spacing:0.306000px;}
.ls2b{letter-spacing:0.331500px;}
.lsf{letter-spacing:0.357000px;}
.ls16{letter-spacing:0.382500px;}
.ls1e{letter-spacing:0.408000px;}
.ls20{letter-spacing:0.459000px;}
.ls4{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.510000px;}
.ls3{letter-spacing:0.540000px;}
.ls30{letter-spacing:0.561000px;}
.ls33{letter-spacing:0.570000px;}
.ls27{letter-spacing:0.612000px;}
.ls7{letter-spacing:0.660000px;}
.ls2d{letter-spacing:0.663000px;}
.lsc{letter-spacing:0.840000px;}
.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;}
}
.ws70{word-spacing:-14.841000px;}
.ws69{word-spacing:-14.203500px;}
.ws61{word-spacing:-14.178000px;}
.ws59{word-spacing:-14.127000px;}
.ws5a{word-spacing:-14.025000px;}
.ws2{word-spacing:-13.968000px;}
.ws72{word-spacing:-13.566000px;}
.ws6f{word-spacing:-12.954000px;}
.ws0{word-spacing:-6.772080px;}
.ws71{word-spacing:-2.805000px;}
.ws8{word-spacing:-2.352000px;}
.ws36{word-spacing:-2.193000px;}
.ws23{word-spacing:-2.142000px;}
.ws27{word-spacing:-2.091000px;}
.ws43{word-spacing:-2.016000px;}
.ws21{word-spacing:-1.989000px;}
.ws2c{word-spacing:-1.938000px;}
.ws46{word-spacing:-1.887000px;}
.ws55{word-spacing:-1.836000px;}
.ws6d{word-spacing:-1.785000px;}
.ws19{word-spacing:-1.764000px;}
.ws28{word-spacing:-1.734000px;}
.ws10{word-spacing:-1.728000px;}
.ws5b{word-spacing:-1.683000px;}
.ws45{word-spacing:-1.632000px;}
.ws44{word-spacing:-1.581000px;}
.ws6b{word-spacing:-1.479000px;}
.ws5c{word-spacing:-1.428000px;}
.ws64{word-spacing:-1.326000px;}
.ws20{word-spacing:-1.275000px;}
.ws4c{word-spacing:-1.224000px;}
.ws57{word-spacing:-1.173000px;}
.ws4d{word-spacing:-1.122000px;}
.ws25{word-spacing:-1.071000px;}
.ws6{word-spacing:-1.056000px;}
.ws17{word-spacing:-1.008000px;}
.ws31{word-spacing:-0.918000px;}
.ws34{word-spacing:-0.867000px;}
.ws37{word-spacing:-0.840000px;}
.ws3a{word-spacing:-0.816000px;}
.ws5e{word-spacing:-0.765000px;}
.ws24{word-spacing:-0.714000px;}
.ws6a{word-spacing:-0.663000px;}
.ws3b{word-spacing:-0.612000px;}
.ws40{word-spacing:-0.561000px;}
.ws73{word-spacing:-0.510000px;}
.wsf{word-spacing:-0.480000px;}
.ws53{word-spacing:-0.459000px;}
.ws22{word-spacing:-0.408000px;}
.ws12{word-spacing:-0.384000px;}
.ws29{word-spacing:-0.357000px;}
.ws5{word-spacing:-0.336000px;}
.ws58{word-spacing:-0.306000px;}
.ws6e{word-spacing:-0.255000px;}
.ws4a{word-spacing:-0.204000px;}
.ws3f{word-spacing:-0.192000px;}
.ws56{word-spacing:-0.153000px;}
.ws3{word-spacing:-0.120000px;}
.ws2a{word-spacing:-0.102000px;}
.ws18{word-spacing:-0.097440px;}
.ws32{word-spacing:-0.051000px;}
.ws16{word-spacing:-0.048000px;}
.ws1a{word-spacing:-0.024360px;}
.ws1{word-spacing:0.000000px;}
.ws65{word-spacing:0.051000px;}
.ws63{word-spacing:0.102000px;}
.ws62{word-spacing:0.153000px;}
.ws9{word-spacing:0.192000px;}
.ws50{word-spacing:0.204000px;}
.ws52{word-spacing:0.255000px;}
.ws2b{word-spacing:0.306000px;}
.ws26{word-spacing:0.357000px;}
.ws51{word-spacing:0.459000px;}
.ws68{word-spacing:0.510000px;}
.ws3c{word-spacing:0.561000px;}
.ws4e{word-spacing:0.612000px;}
.ws2e{word-spacing:0.663000px;}
.ws48{word-spacing:0.714000px;}
.ws3d{word-spacing:0.765000px;}
.ws54{word-spacing:0.816000px;}
.ws38{word-spacing:0.867000px;}
.ws39{word-spacing:0.918000px;}
.ws4b{word-spacing:1.020000px;}
.ws1e{word-spacing:1.173000px;}
.ws2d{word-spacing:1.224000px;}
.ws30{word-spacing:1.275000px;}
.ws47{word-spacing:1.326000px;}
.ws5f{word-spacing:1.377000px;}
.ws1d{word-spacing:1.428000px;}
.ws15{word-spacing:1.440000px;}
.ws66{word-spacing:1.479000px;}
.ws42{word-spacing:1.488000px;}
.ws35{word-spacing:1.530000px;}
.ws6c{word-spacing:1.581000px;}
.ws5d{word-spacing:1.632000px;}
.ws49{word-spacing:1.683000px;}
.ws33{word-spacing:1.734000px;}
.ws4f{word-spacing:1.785000px;}
.wsa{word-spacing:1.872000px;}
.ws4{word-spacing:1.920000px;}
.ws67{word-spacing:1.938000px;}
.ws41{word-spacing:1.968000px;}
.ws1c{word-spacing:1.989000px;}
.ws3e{word-spacing:2.016000px;}
.ws60{word-spacing:2.040000px;}
.ws1f{word-spacing:2.091000px;}
.ws2f{word-spacing:2.142000px;}
.ws11{word-spacing:2.304000px;}
.ws13{word-spacing:2.880000px;}
.ws7{word-spacing:3.072000px;}
.wsc{word-spacing:3.408000px;}
.wsb{word-spacing:3.936000px;}
.wse{word-spacing:4.608000px;}
.wsd{word-spacing:4.752000px;}
.ws14{word-spacing:5.232000px;}
.ws75{word-spacing:518.415000px;}
.ws76{word-spacing:551.703000px;}
.ws74{word-spacing:565.440000px;}
.ws1b{word-spacing:1284.087600px;}
._b{margin-left:-42.534000px;}
._8{margin-left:-6.492900px;}
._1{margin-left:-4.968000px;}
._e{margin-left:-3.957000px;}
._0{margin-left:-2.886000px;}
._2{margin-left:-1.776242px;}
._7{width:1.122000px;}
._d{width:2.601000px;}
._f{width:3.671400px;}
._9{width:26.928000px;}
._c{width:39.678000px;}
._5{width:65.772000px;}
._4{width:77.952000px;}
._3{width:90.132000px;}
._6{width:749.424000px;}
._a{width:1188.648127px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:24.360000px;}
.fs2{font-size:27.840000px;}
.fs4{font-size:30.000000px;}
.fs0{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:48.720000px;}
.fsa{font-size:51.000000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs7{font-size:66.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.848300px;}
.y92{bottom:85.030950px;}
.y2b{bottom:85.039350px;}
.y280{bottom:85.041300px;}
.y238{bottom:85.055250px;}
.y19c{bottom:88.474500px;}
.y2a{bottom:97.376850px;}
.y237{bottom:100.049250px;}
.y200{bottom:100.074300px;}
.yfb{bottom:100.279200px;}
.yc4{bottom:100.307850px;}
.y167{bottom:100.566900px;}
.y133{bottom:100.612500px;}
.y132{bottom:100.617900px;}
.y91{bottom:100.764450px;}
.y29{bottom:100.841850px;}
.y5f{bottom:101.263050px;}
.y27f{bottom:101.785050px;}
.y19b{bottom:103.455750px;}
.y251{bottom:109.043850px;}
.y28{bottom:109.714350px;}
.y236{bottom:115.043250px;}
.yfa{bottom:115.519200px;}
.yc3{bottom:115.576500px;}
.y166{bottom:116.094300px;}
.y131{bottom:116.185650px;}
.y90{bottom:116.497950px;}
.y5e{bottom:117.486900px;}
.y19a{bottom:118.436850px;}
.y27e{bottom:118.528800px;}
.y250{bottom:124.025100px;}
.y27{bottom:125.516850px;}
.y1ff{bottom:127.882050px;}
.y235{bottom:130.037250px;}
.yf9{bottom:130.759050px;}
.yc2{bottom:130.845000px;}
.y165{bottom:131.619600px;}
.y130{bottom:131.758800px;}
.y8e{bottom:132.206550px;}
.y8f{bottom:132.227400px;}
.y199{bottom:133.418250px;}
.y5d{bottom:133.721400px;}
.y27d{bottom:135.272550px;}
.y26{bottom:137.854350px;}
.y24f{bottom:138.279600px;}
.y234{bottom:145.036650px;}
.yf8{bottom:145.998900px;}
.yc1{bottom:146.113350px;}
.y1cc{bottom:146.179350px;}
.y164{bottom:147.149100px;}
.y12f{bottom:147.331950px;}
.y12e{bottom:147.337350px;}
.y8d{bottom:147.940050px;}
.y198{bottom:148.399500px;}
.y25{bottom:150.191850px;}
.y24e{bottom:153.260850px;}
.y233{bottom:160.035900px;}
.yf7{bottom:161.242350px;}
.yc0{bottom:161.382000px;}
.y24{bottom:162.529350px;}
.y163{bottom:162.676500px;}
.y12d{bottom:162.905100px;}
.y197{bottom:163.380750px;}
.y8c{bottom:163.673550px;}
.y5c{bottom:166.947900px;}
.y24d{bottom:167.515350px;}
.y1fe{bottom:172.698300px;}
.y232{bottom:175.040550px;}
.yf6{bottom:176.478600px;}
.ybf{bottom:176.650500px;}
.y162{bottom:178.187250px;}
.y196{bottom:178.362000px;}
.y12c{bottom:178.478250px;}
.y8b{bottom:179.407050px;}
.y24c{bottom:182.496600px;}
.y5b{bottom:183.165900px;}
.y1fd{bottom:187.743300px;}
.y231{bottom:190.034550px;}
.y1cb{bottom:190.919100px;}
.yf5{bottom:191.718450px;}
.ybe{bottom:191.913150px;}
.y195{bottom:193.343250px;}
.y161{bottom:193.716750px;}
.y12b{bottom:194.051400px;}
.y8a{bottom:195.140550px;}
.y24b{bottom:196.751100px;}
.y5a{bottom:199.389600px;}
.y59{bottom:199.412400px;}
.y1fc{bottom:202.789350px;}
.y230{bottom:205.033800px;}
.y1ca{bottom:205.900350px;}
.yf4{bottom:206.965650px;}
.ybd{bottom:207.187650px;}
.y194{bottom:208.324500px;}
.y160{bottom:209.246250px;}
.y12a{bottom:209.624550px;}
.y129{bottom:209.629950px;}
.y89{bottom:210.874050px;}
.y23{bottom:211.295400px;}
.y24a{bottom:211.732350px;}
.y58{bottom:215.630400px;}
.y1fb{bottom:217.835400px;}
.y22f{bottom:220.048950px;}
.y1c9{bottom:220.881600px;}
.yf3{bottom:222.201900px;}
.y193{bottom:223.305750px;}
.y15f{bottom:224.775750px;}
.y128{bottom:225.197700px;}
.y249{bottom:225.986850px;}
.y88{bottom:226.603350px;}
.y22{bottom:226.835400px;}
.y57{bottom:231.848400px;}
.y1fa{bottom:232.881600px;}
.y22e{bottom:235.042950px;}
.y1c8{bottom:235.862850px;}
.yf2{bottom:237.438150px;}
.y192{bottom:238.287000px;}
.ybc{bottom:239.457900px;}
.y15e{bottom:240.305250px;}
.y127{bottom:240.770850px;}
.y248{bottom:240.968100px;}
.y87{bottom:242.332650px;}
.y21{bottom:246.623400px;}
.y1f9{bottom:247.928700px;}
.y56{bottom:248.066400px;}
.y22d{bottom:250.036950px;}
.y1c7{bottom:250.844100px;}
.yf1{bottom:252.678000px;}
.y191{bottom:253.268250px;}
.ybb{bottom:254.732400px;}
.y247{bottom:255.222600px;}
.y15d{bottom:255.834750px;}
.y126{bottom:256.344000px;}
.y86{bottom:258.062100px;}
.y20{bottom:262.163400px;}
.y1f8{bottom:262.973700px;}
.y55{bottom:264.284400px;}
.y22c{bottom:265.030950px;}
.y1c6{bottom:265.825350px;}
.yf0{bottom:267.917850px;}
.y190{bottom:268.249500px;}
.yba{bottom:270.000900px;}
.y246{bottom:270.203850px;}
.y15c{bottom:271.364250px;}
.y125{bottom:271.917000px;}
.y27c{bottom:275.331600px;}
.y1f{bottom:277.703400px;}
.y1f7{bottom:278.019750px;}
.y22b{bottom:280.030350px;}
.y54{bottom:280.508100px;}
.y1c5{bottom:280.806600px;}
.yef{bottom:283.172250px;}
.y18f{bottom:283.230750px;}
.y245{bottom:284.458350px;}
.y15b{bottom:286.893750px;}
.y124{bottom:287.490150px;}
.y27b{bottom:290.312850px;}
.y85{bottom:290.799150px;}
.y1f6{bottom:293.065800px;}
.y1e{bottom:293.243400px;}
.y22a{bottom:295.029600px;}
.y1c4{bottom:295.787850px;}
.y53{bottom:296.731800px;}
.yb9{bottom:298.012650px;}
.y18e{bottom:298.212000px;}
.yee{bottom:298.408500px;}
.y244{bottom:299.439600px;}
.y15a{bottom:302.423250px;}
.y123{bottom:303.063300px;}
.y27a{bottom:305.289600px;}
.y84{bottom:305.647350px;}
.y1f5{bottom:308.111850px;}
.y1d{bottom:308.783400px;}
.y229{bottom:310.034250px;}
.y1c3{bottom:310.769100px;}
.y52{bottom:312.955650px;}
.y18d{bottom:313.193250px;}
.yb8{bottom:313.287150px;}
.yed{bottom:313.644750px;}
.y243{bottom:313.694100px;}
.y159{bottom:317.950650px;}
.y122{bottom:318.636450px;}
.y279{bottom:320.270850px;}
.y83{bottom:320.495400px;}
.y1f4{bottom:323.157900px;}
.y1c{bottom:324.323400px;}
.y228{bottom:325.028250px;}
.y1c2{bottom:325.750350px;}
.y18c{bottom:328.174500px;}
.y242{bottom:328.675350px;}
.yec{bottom:328.881000px;}
.y51{bottom:329.179350px;}
.y158{bottom:333.478050px;}
.y121{bottom:334.209600px;}
.y278{bottom:334.525350px;}
.y82{bottom:335.343450px;}
.y1f3{bottom:338.205000px;}
.y1b{bottom:339.863400px;}
.y227{bottom:340.027500px;}
.y1c1{bottom:340.731600px;}
.y18b{bottom:343.155750px;}
.y241{bottom:343.652100px;}
.yeb{bottom:344.117250px;}
.y50{bottom:345.402900px;}
.y157{bottom:349.005450px;}
.y277{bottom:349.506600px;}
.y120{bottom:349.782750px;}
.y81{bottom:350.191500px;}
.y1f2{bottom:353.250000px;}
.y226{bottom:355.032150px;}
.y1a{bottom:355.403400px;}
.y1c0{bottom:355.712850px;}
.y240{bottom:357.906600px;}
.y18a{bottom:358.137000px;}
.yb7{bottom:358.320150px;}
.yea{bottom:359.357100px;}
.y4f{bottom:361.626750px;}
.y276{bottom:364.487850px;}
.y156{bottom:364.532850px;}
.y80{bottom:365.039550px;}
.y11f{bottom:365.355900px;}
.y1f1{bottom:368.296050px;}
.y225{bottom:370.026150px;}
.y1bf{bottom:370.694100px;}
.y23f{bottom:372.887850px;}
.y189{bottom:373.118250px;}
.yb6{bottom:373.594650px;}
.ye9{bottom:374.596950px;}
.y19{bottom:375.195450px;}
.y4e{bottom:377.850450px;}
.y275{bottom:379.464600px;}
.y7f{bottom:379.887750px;}
.y155{bottom:380.054100px;}
.y11e{bottom:380.934450px;}
.y1f0{bottom:383.343150px;}
.y224{bottom:385.025550px;}
.y1be{bottom:385.675350px;}
.y23e{bottom:387.869100px;}
.y188{bottom:388.099500px;}
.yb5{bottom:388.863150px;}
.ye8{bottom:389.836800px;}
.y274{bottom:393.719100px;}
.y4d{bottom:394.074150px;}
.y7e{bottom:394.735800px;}
.y154{bottom:395.583600px;}
.y11d{bottom:396.502200px;}
.y1ef{bottom:398.388150px;}
.y223{bottom:400.051200px;}
.y1bd{bottom:400.656600px;}
.y23d{bottom:402.850350px;}
.y187{bottom:403.080750px;}
.yb4{bottom:404.131650px;}
.ye7{bottom:405.076650px;}
.y18{bottom:405.339450px;}
.y273{bottom:408.700350px;}
.y4c{bottom:410.297850px;}
.y153{bottom:411.113100px;}
.y11c{bottom:412.075350px;}
.y1ee{bottom:413.434200px;}
.y222{bottom:415.045200px;}
.y1bc{bottom:415.637850px;}
.y23c{bottom:417.100350px;}
.y186{bottom:418.062000px;}
.yb3{bottom:419.382150px;}
.ye6{bottom:420.316650px;}
.y17{bottom:420.855450px;}
.y272{bottom:423.677100px;}
.y4b{bottom:426.527250px;}
.y7d{bottom:426.591750px;}
.y152{bottom:426.642600px;}
.y11b{bottom:427.648500px;}
.y1ed{bottom:428.480400px;}
.y221{bottom:430.039200px;}
.y1bb{bottom:430.619100px;}
.y23b{bottom:432.077100px;}
.y185{bottom:433.043250px;}
.yb2{bottom:434.656650px;}
.ye5{bottom:435.556500px;}
.y271{bottom:437.931600px;}
.y16{bottom:440.602650px;}
.y151{bottom:442.170000px;}
.y7c{bottom:442.321050px;}
.y4a{bottom:442.745250px;}
.y11a{bottom:443.227050px;}
.y1ec{bottom:443.526450px;}
.y220{bottom:445.033200px;}
.y1ba{bottom:445.600350px;}
.y23a{bottom:447.058350px;}
.y184{bottom:448.024500px;}
.yb1{bottom:449.931150px;}
.ye4{bottom:450.796350px;}
.y270{bottom:452.912850px;}
.y15{bottom:456.118650px;}
.y150{bottom:457.691100px;}
.y7b{bottom:458.050350px;}
.y1eb{bottom:458.572500px;}
.y119{bottom:458.794800px;}
.y49{bottom:458.968950px;}
.y21f{bottom:460.027200px;}
.y1b9{bottom:460.581600px;}
.y239{bottom:461.312850px;}
.y183{bottom:463.005750px;}
.yb0{bottom:465.205650px;}
.ye3{bottom:466.036200px;}
.y26f{bottom:467.889600px;}
.y14{bottom:471.634650px;}
.y14f{bottom:473.220600px;}
.y1ea{bottom:473.618550px;}
.y7a{bottom:473.779650px;}
.y118{bottom:474.367800px;}
.y21e{bottom:475.021200px;}
.y48{bottom:475.209900px;}
.y1b8{bottom:475.562850px;}
.y182{bottom:477.987000px;}
.yaf{bottom:480.474150px;}
.ye2{bottom:481.276050px;}
.y26e{bottom:482.144100px;}
.y13{bottom:487.140300px;}
.y1e9{bottom:488.665650px;}
.y14e{bottom:488.750100px;}
.y117{bottom:489.940950px;}
.y21d{bottom:490.020600px;}
.y1b7{bottom:490.544100px;}
.y47{bottom:491.427900px;}
.y181{bottom:492.968250px;}
.yae{bottom:495.742650px;}
.ye1{bottom:496.516050px;}
.y26d{bottom:497.125350px;}
.y12{bottom:502.647600px;}
.y1e8{bottom:503.710650px;}
.y14d{bottom:504.279600px;}
.y21c{bottom:505.025250px;}
.y116{bottom:505.524900px;}
.y1b6{bottom:505.525350px;}
.y79{bottom:506.521050px;}
.y46{bottom:507.645900px;}
.y180{bottom:507.949500px;}
.yad{bottom:511.011300px;}
.ye0{bottom:511.755900px;}
.y26c{bottom:512.097600px;}
.y11{bottom:518.163600px;}
.y1e7{bottom:518.756700px;}
.y14c{bottom:519.807150px;}
.y21b{bottom:520.019250px;}
.y1b5{bottom:520.506600px;}
.y115{bottom:521.092650px;}
.y78{bottom:521.365050px;}
.y17f{bottom:522.930750px;}
.y45{bottom:523.863900px;}
.yac{bottom:526.273800px;}
.y26b{bottom:526.352100px;}
.ydf{bottom:526.995750px;}
.y10{bottom:533.667600px;}
.y1e6{bottom:533.806950px;}
.y21a{bottom:535.018500px;}
.y14b{bottom:535.330350px;}
.y1b4{bottom:535.487850px;}
.y77{bottom:536.213100px;}
.y114{bottom:536.660400px;}
.y17e{bottom:537.912000px;}
.y44{bottom:540.087600px;}
.y26a{bottom:541.333350px;}
.yab{bottom:541.548300px;}
.yde{bottom:542.235600px;}
.y1e5{bottom:548.851950px;}
.yf{bottom:549.183600px;}
.y219{bottom:550.017750px;}
.y1b3{bottom:550.469100px;}
.y14a{bottom:550.859850px;}
.y76{bottom:551.061150px;}
.y113{bottom:552.233550px;}
.y17d{bottom:552.893250px;}
.y269{bottom:556.314600px;}
.y43{bottom:556.322700px;}
.yaa{bottom:556.816800px;}
.ydd{bottom:557.475450px;}
.y1e4{bottom:563.896950px;}
.ye{bottom:564.699600px;}
.y218{bottom:565.022400px;}
.y1b2{bottom:565.450350px;}
.y149{bottom:566.389350px;}
.y112{bottom:567.806700px;}
.y17c{bottom:567.874350px;}
.y268{bottom:570.569100px;}
.ya9{bottom:572.085300px;}
.y42{bottom:572.540700px;}
.ydc{bottom:572.715300px;}
.y1e3{bottom:578.941950px;}
.y217{bottom:580.016400px;}
.yd{bottom:580.215600px;}
.y1b1{bottom:580.431600px;}
.y148{bottom:581.916750px;}
.y17b{bottom:582.855750px;}
.y75{bottom:582.908700px;}
.y111{bottom:583.379850px;}
.y267{bottom:585.550350px;}
.ya8{bottom:587.353800px;}
.y41{bottom:588.758700px;}
.y1e2{bottom:593.986950px;}
.y216{bottom:595.015650px;}
.y1b0{bottom:595.412850px;}
.y147{bottom:597.444150px;}
.y17a{bottom:597.837000px;}
.y74{bottom:598.642200px;}
.y110{bottom:598.953000px;}
.y266{bottom:600.527100px;}
.ya7{bottom:602.622300px;}
.ydb{bottom:604.963050px;}
.yda{bottom:604.981200px;}
.y40{bottom:604.982400px;}
.y1e1{bottom:609.033000px;}
.y215{bottom:610.015050px;}
.y1af{bottom:610.394100px;}
.y179{bottom:612.818250px;}
.y146{bottom:612.969450px;}
.y73{bottom:614.375700px;}
.y10f{bottom:614.526150px;}
.y265{bottom:614.781600px;}
.yc{bottom:617.234100px;}
.ya6{bottom:617.890800px;}
.yd9{bottom:620.217450px;}
.y3f{bottom:621.206100px;}
.y1e0{bottom:624.079200px;}
.y214{bottom:625.014300px;}
.y1ae{bottom:625.375350px;}
.y178{bottom:627.799500px;}
.y145{bottom:628.498950px;}
.y264{bottom:629.762850px;}
.y72{bottom:630.105150px;}
.y10e{bottom:630.110100px;}
.ya5{bottom:633.159300px;}
.yb{bottom:633.434100px;}
.yd8{bottom:635.453700px;}
.y3e{bottom:637.429800px;}
.y1df{bottom:639.125250px;}
.y213{bottom:640.013700px;}
.y1ad{bottom:640.356600px;}
.y177{bottom:642.780600px;}
.y144{bottom:644.026500px;}
.y263{bottom:644.739600px;}
.y10d{bottom:645.677850px;}
.y71{bottom:645.834450px;}
.ya4{bottom:648.427800px;}
.yd7{bottom:650.689950px;}
.y3d{bottom:653.653500px;}
.y1de{bottom:654.172350px;}
.y212{bottom:655.034100px;}
.y1ac{bottom:655.337850px;}
.y176{bottom:657.762000px;}
.y262{bottom:658.994100px;}
.y143{bottom:659.553900px;}
.y10c{bottom:661.245600px;}
.y70{bottom:661.563750px;}
.ya3{bottom:663.696300px;}
.yd6{bottom:665.926200px;}
.ya{bottom:668.115900px;}
.y1dd{bottom:669.217350px;}
.y3c{bottom:669.877200px;}
.y211{bottom:670.028100px;}
.y1ab{bottom:670.319100px;}
.y175{bottom:672.743250px;}
.y261{bottom:673.975350px;}
.y142{bottom:675.081300px;}
.y10b{bottom:676.818750px;}
.y6f{bottom:677.288850px;}
.ya2{bottom:678.964800px;}
.yd5{bottom:681.162450px;}
.y1dc{bottom:684.263400px;}
.y9{bottom:684.315900px;}
.y210{bottom:685.022100px;}
.y1aa{bottom:685.300350px;}
.y3b{bottom:686.112450px;}
.y174{bottom:687.724500px;}
.y260{bottom:688.947600px;}
.y141{bottom:690.608700px;}
.y10a{bottom:692.391750px;}
.y6e{bottom:693.022350px;}
.ya1{bottom:694.233300px;}
.yd4{bottom:696.402300px;}
.yd3{bottom:696.405900px;}
.y1db{bottom:699.309450px;}
.y20f{bottom:700.016100px;}
.y1a9{bottom:700.281600px;}
.y3a{bottom:702.330450px;}
.y173{bottom:702.705750px;}
.y25f{bottom:703.202100px;}
.y140{bottom:706.122900px;}
.y109{bottom:707.975700px;}
.y6d{bottom:708.751800px;}
.ya0{bottom:709.501950px;}
.yd2{bottom:711.642150px;}
.y1da{bottom:714.355500px;}
.y20e{bottom:715.010100px;}
.y1a8{bottom:715.262850px;}
.y172{bottom:717.686850px;}
.y25e{bottom:718.183350px;}
.y39{bottom:718.548450px;}
.y8{bottom:718.997850px;}
.y13f{bottom:721.652400px;}
.y108{bottom:723.543450px;}
.y6c{bottom:724.481100px;}
.y9f{bottom:724.770300px;}
.yd1{bottom:726.882000px;}
.y1d9{bottom:729.401550px;}
.y20d{bottom:730.009500px;}
.y1a7{bottom:730.244100px;}
.y171{bottom:732.668100px;}
.y25d{bottom:733.164600px;}
.y38{bottom:734.772150px;}
.y7{bottom:735.197850px;}
.y13e{bottom:737.181900px;}
.y107{bottom:739.111200px;}
.y9e{bottom:740.032950px;}
.y6b{bottom:740.210400px;}
.yd0{bottom:742.136400px;}
.y1d8{bottom:744.447600px;}
.y20c{bottom:745.008750px;}
.y1a6{bottom:745.225350px;}
.y25c{bottom:747.419100px;}
.y170{bottom:747.649350px;}
.y37{bottom:750.995850px;}
.y13d{bottom:752.711400px;}
.y106{bottom:754.684350px;}
.y9d{bottom:755.307450px;}
.y6a{bottom:755.939700px;}
.ycf{bottom:757.372650px;}
.y1d7{bottom:759.493650px;}
.y20b{bottom:760.008000px;}
.y1a5{bottom:760.206600px;}
.y25b{bottom:762.400350px;}
.y16f{bottom:762.630600px;}
.y36{bottom:767.219550px;}
.y6{bottom:767.750700px;}
.y13c{bottom:768.240900px;}
.y105{bottom:770.257500px;}
.y9c{bottom:770.575950px;}
.y69{bottom:771.664950px;}
.yce{bottom:772.608900px;}
.y1d6{bottom:774.539850px;}
.y20a{bottom:775.012650px;}
.y1a4{bottom:775.187850px;}
.y25a{bottom:777.377100px;}
.y16e{bottom:777.611850px;}
.y35{bottom:783.460350px;}
.y13b{bottom:783.770400px;}
.y104{bottom:785.830650px;}
.y9b{bottom:785.844450px;}
.y68{bottom:787.398450px;}
.ycd{bottom:787.845150px;}
.y1d5{bottom:789.588000px;}
.y209{bottom:790.006650px;}
.y1a3{bottom:790.169100px;}
.y259{bottom:791.631600px;}
.y5{bottom:791.753700px;}
.y16d{bottom:792.593100px;}
.y34{bottom:799.678350px;}
.y9a{bottom:801.100950px;}
.y103{bottom:801.403800px;}
.ycc{bottom:803.081400px;}
.y67{bottom:803.127750px;}
.y1d4{bottom:804.633000px;}
.y208{bottom:805.006050px;}
.y1a2{bottom:805.150350px;}
.y258{bottom:806.612850px;}
.y16c{bottom:807.574350px;}
.y33{bottom:815.896350px;}
.y13a{bottom:816.308400px;}
.y99{bottom:816.375450px;}
.y102{bottom:816.976950px;}
.ycb{bottom:818.321250px;}
.y66{bottom:818.852850px;}
.y1d3{bottom:819.678000px;}
.y207{bottom:820.021200px;}
.y1a1{bottom:820.131600px;}
.y257{bottom:821.594100px;}
.y16b{bottom:822.566850px;}
.y98{bottom:831.649950px;}
.y139{bottom:831.835950px;}
.y32{bottom:832.114350px;}
.y101{bottom:832.550100px;}
.yca{bottom:833.564850px;}
.y65{bottom:834.586350px;}
.y1d2{bottom:834.724050px;}
.y206{bottom:835.015200px;}
.y1a0{bottom:835.112850px;}
.y256{bottom:836.570850px;}
.y97{bottom:846.918450px;}
.y138{bottom:847.363350px;}
.y100{bottom:848.123250px;}
.y31{bottom:848.338200px;}
.yc9{bottom:848.801100px;}
.y1d1{bottom:849.775350px;}
.y205{bottom:850.009200px;}
.y19f{bottom:850.094100px;}
.y16a{bottom:850.298100px;}
.y64{bottom:850.315650px;}
.y255{bottom:850.825350px;}
.y96{bottom:862.193100px;}
.y137{bottom:862.890750px;}
.yff{bottom:863.696250px;}
.yc8{bottom:864.040950px;}
.y30{bottom:864.572100px;}
.y1d0{bottom:864.820350px;}
.y204{bottom:865.003200px;}
.y19e{bottom:865.075350px;}
.y254{bottom:865.806600px;}
.y63{bottom:866.044950px;}
.y136{bottom:878.418150px;}
.yc7{bottom:879.280800px;}
.yfe{bottom:879.285600px;}
.y1cf{bottom:879.865350px;}
.y203{bottom:880.002450px;}
.y19d{bottom:880.056600px;}
.y253{bottom:880.787850px;}
.y2f{bottom:880.790100px;}
.y62{bottom:881.774250px;}
.y3{bottom:888.220350px;}
.y135{bottom:893.945550px;}
.y95{bottom:894.463350px;}
.yc6{bottom:894.520650px;}
.yfd{bottom:894.853350px;}
.y1ce{bottom:894.910350px;}
.y202{bottom:895.012350px;}
.y169{bottom:895.037850px;}
.y252{bottom:895.764600px;}
.y2e{bottom:897.008100px;}
.y61{bottom:897.505350px;}
.y134{bottom:909.472950px;}
.y94{bottom:909.731850px;}
.yc5{bottom:909.764100px;}
.y1cd{bottom:909.955350px;}
.y201{bottom:910.006350px;}
.y168{bottom:910.019100px;}
.yfc{bottom:910.421100px;}
.y93{bottom:925.000350px;}
.y2d{bottom:925.988850px;}
.y4{bottom:935.433150px;}
.y2{bottom:947.511750px;}
.y2c{bottom:969.502950px;}
.y60{bottom:969.659250px;}
.hf{height:23.872800px;}
.hd{height:27.300000px;}
.h5{height:29.400000px;}
.h2{height:38.220000px;}
.h12{height:40.534800px;}
.he{height:41.160000px;}
.hc{height:45.820312px;}
.h3{height:46.123200px;}
.h13{height:46.896000px;}
.h4{height:47.040000px;}
.ha{height:47.074800px;}
.hb{height:47.081400px;}
.h9{height:47.088000px;}
.h10{height:48.684082px;}
.h11{height:49.980000px;}
.h8{height:52.920000px;}
.h14{height:55.689000px;}
.h7{height:63.002930px;}
.h6{height:82.320000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x3{left:76.820550px;}
.xe{left:80.788050px;}
.x10{left:86.857050px;}
.xd{left:92.279550px;}
.x11{left:96.779550px;}
.xf{left:98.279550px;}
.x6{left:140.866500px;}
.x5{left:159.556500px;}
.xc{left:217.272900px;}
.x7{left:256.261800px;}
.xa{left:259.791300px;}
.xb{left:266.439150px;}
.x9{left:274.304250px;}
.x8{left:284.610150px;}
.x12{left:372.259800px;}
.x2{left:495.633450px;}
.x4{left:507.001050px;}
@media print{
.v4{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:14.082133pt;}
.v1{vertical-align:16.746667pt;}
.v2{vertical-align:24.651200pt;}
.ls2e{letter-spacing:-1.088000pt;}
.ls2c{letter-spacing:-0.997333pt;}
.ls21{letter-spacing:-0.544000pt;}
.ls2f{letter-spacing:-0.498667pt;}
.ls32{letter-spacing:-0.408000pt;}
.ls1f{letter-spacing:-0.362667pt;}
.ls25{letter-spacing:-0.317333pt;}
.ls22{letter-spacing:-0.272000pt;}
.ls14{letter-spacing:-0.226667pt;}
.ls9{letter-spacing:-0.224000pt;}
.ls1b{letter-spacing:-0.181333pt;}
.ls15{letter-spacing:-0.136000pt;}
.ls13{letter-spacing:-0.090667pt;}
.ls1d{letter-spacing:-0.085333pt;}
.ls1c{letter-spacing:-0.045333pt;}
.lsb{letter-spacing:-0.037333pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.021653pt;}
.ls2a{letter-spacing:0.022667pt;}
.ls18{letter-spacing:0.042667pt;}
.ls12{letter-spacing:0.045333pt;}
.ls19{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.068000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls8{letter-spacing:0.086613pt;}
.ls10{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.098667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls29{letter-spacing:0.113333pt;}
.ls1a{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.149333pt;}
.ls28{letter-spacing:0.158667pt;}
.lse{letter-spacing:0.181333pt;}
.ls31{letter-spacing:0.199467pt;}
.ls24{letter-spacing:0.226667pt;}
.ls23{letter-spacing:0.249333pt;}
.ls26{letter-spacing:0.272000pt;}
.ls2b{letter-spacing:0.294667pt;}
.lsf{letter-spacing:0.317333pt;}
.ls16{letter-spacing:0.340000pt;}
.ls1e{letter-spacing:0.362667pt;}
.ls20{letter-spacing:0.408000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.453333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls30{letter-spacing:0.498667pt;}
.ls33{letter-spacing:0.506667pt;}
.ls27{letter-spacing:0.544000pt;}
.ls7{letter-spacing:0.586667pt;}
.ls2d{letter-spacing:0.589333pt;}
.lsc{letter-spacing:0.746667pt;}
.ws70{word-spacing:-13.192000pt;}
.ws69{word-spacing:-12.625333pt;}
.ws61{word-spacing:-12.602667pt;}
.ws59{word-spacing:-12.557333pt;}
.ws5a{word-spacing:-12.466667pt;}
.ws2{word-spacing:-12.416000pt;}
.ws72{word-spacing:-12.058667pt;}
.ws6f{word-spacing:-11.514667pt;}
.ws0{word-spacing:-6.019627pt;}
.ws71{word-spacing:-2.493333pt;}
.ws8{word-spacing:-2.090667pt;}
.ws36{word-spacing:-1.949333pt;}
.ws23{word-spacing:-1.904000pt;}
.ws27{word-spacing:-1.858667pt;}
.ws43{word-spacing:-1.792000pt;}
.ws21{word-spacing:-1.768000pt;}
.ws2c{word-spacing:-1.722667pt;}
.ws46{word-spacing:-1.677333pt;}
.ws55{word-spacing:-1.632000pt;}
.ws6d{word-spacing:-1.586667pt;}
.ws19{word-spacing:-1.568000pt;}
.ws28{word-spacing:-1.541333pt;}
.ws10{word-spacing:-1.536000pt;}
.ws5b{word-spacing:-1.496000pt;}
.ws45{word-spacing:-1.450667pt;}
.ws44{word-spacing:-1.405333pt;}
.ws6b{word-spacing:-1.314667pt;}
.ws5c{word-spacing:-1.269333pt;}
.ws64{word-spacing:-1.178667pt;}
.ws20{word-spacing:-1.133333pt;}
.ws4c{word-spacing:-1.088000pt;}
.ws57{word-spacing:-1.042667pt;}
.ws4d{word-spacing:-0.997333pt;}
.ws25{word-spacing:-0.952000pt;}
.ws6{word-spacing:-0.938667pt;}
.ws17{word-spacing:-0.896000pt;}
.ws31{word-spacing:-0.816000pt;}
.ws34{word-spacing:-0.770667pt;}
.ws37{word-spacing:-0.746667pt;}
.ws3a{word-spacing:-0.725333pt;}
.ws5e{word-spacing:-0.680000pt;}
.ws24{word-spacing:-0.634667pt;}
.ws6a{word-spacing:-0.589333pt;}
.ws3b{word-spacing:-0.544000pt;}
.ws40{word-spacing:-0.498667pt;}
.ws73{word-spacing:-0.453333pt;}
.wsf{word-spacing:-0.426667pt;}
.ws53{word-spacing:-0.408000pt;}
.ws22{word-spacing:-0.362667pt;}
.ws12{word-spacing:-0.341333pt;}
.ws29{word-spacing:-0.317333pt;}
.ws5{word-spacing:-0.298667pt;}
.ws58{word-spacing:-0.272000pt;}
.ws6e{word-spacing:-0.226667pt;}
.ws4a{word-spacing:-0.181333pt;}
.ws3f{word-spacing:-0.170667pt;}
.ws56{word-spacing:-0.136000pt;}
.ws3{word-spacing:-0.106667pt;}
.ws2a{word-spacing:-0.090667pt;}
.ws18{word-spacing:-0.086613pt;}
.ws32{word-spacing:-0.045333pt;}
.ws16{word-spacing:-0.042667pt;}
.ws1a{word-spacing:-0.021653pt;}
.ws1{word-spacing:0.000000pt;}
.ws65{word-spacing:0.045333pt;}
.ws63{word-spacing:0.090667pt;}
.ws62{word-spacing:0.136000pt;}
.ws9{word-spacing:0.170667pt;}
.ws50{word-spacing:0.181333pt;}
.ws52{word-spacing:0.226667pt;}
.ws2b{word-spacing:0.272000pt;}
.ws26{word-spacing:0.317333pt;}
.ws51{word-spacing:0.408000pt;}
.ws68{word-spacing:0.453333pt;}
.ws3c{word-spacing:0.498667pt;}
.ws4e{word-spacing:0.544000pt;}
.ws2e{word-spacing:0.589333pt;}
.ws48{word-spacing:0.634667pt;}
.ws3d{word-spacing:0.680000pt;}
.ws54{word-spacing:0.725333pt;}
.ws38{word-spacing:0.770667pt;}
.ws39{word-spacing:0.816000pt;}
.ws4b{word-spacing:0.906667pt;}
.ws1e{word-spacing:1.042667pt;}
.ws2d{word-spacing:1.088000pt;}
.ws30{word-spacing:1.133333pt;}
.ws47{word-spacing:1.178667pt;}
.ws5f{word-spacing:1.224000pt;}
.ws1d{word-spacing:1.269333pt;}
.ws15{word-spacing:1.280000pt;}
.ws66{word-spacing:1.314667pt;}
.ws42{word-spacing:1.322667pt;}
.ws35{word-spacing:1.360000pt;}
.ws6c{word-spacing:1.405333pt;}
.ws5d{word-spacing:1.450667pt;}
.ws49{word-spacing:1.496000pt;}
.ws33{word-spacing:1.541333pt;}
.ws4f{word-spacing:1.586667pt;}
.wsa{word-spacing:1.664000pt;}
.ws4{word-spacing:1.706667pt;}
.ws67{word-spacing:1.722667pt;}
.ws41{word-spacing:1.749333pt;}
.ws1c{word-spacing:1.768000pt;}
.ws3e{word-spacing:1.792000pt;}
.ws60{word-spacing:1.813333pt;}
.ws1f{word-spacing:1.858667pt;}
.ws2f{word-spacing:1.904000pt;}
.ws11{word-spacing:2.048000pt;}
.ws13{word-spacing:2.560000pt;}
.ws7{word-spacing:2.730667pt;}
.wsc{word-spacing:3.029333pt;}
.wsb{word-spacing:3.498667pt;}
.wse{word-spacing:4.096000pt;}
.wsd{word-spacing:4.224000pt;}
.ws14{word-spacing:4.650667pt;}
.ws75{word-spacing:460.813333pt;}
.ws76{word-spacing:490.402667pt;}
.ws74{word-spacing:502.613333pt;}
.ws1b{word-spacing:1141.411200pt;}
._b{margin-left:-37.808000pt;}
._8{margin-left:-5.771467pt;}
._1{margin-left:-4.416000pt;}
._e{margin-left:-3.517333pt;}
._0{margin-left:-2.565333pt;}
._2{margin-left:-1.578882pt;}
._7{width:0.997333pt;}
._d{width:2.312000pt;}
._f{width:3.263467pt;}
._9{width:23.936000pt;}
._c{width:35.269333pt;}
._5{width:58.464000pt;}
._4{width:69.290667pt;}
._3{width:80.117333pt;}
._6{width:666.154667pt;}
._a{width:1056.576113pt;}
.fs9{font-size:21.653333pt;}
.fs2{font-size:24.746667pt;}
.fs4{font-size:26.666667pt;}
.fs0{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:43.306667pt;}
.fsa{font-size:45.333333pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs7{font-size:58.666667pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.976267pt;}
.y92{bottom:75.583067pt;}
.y2b{bottom:75.590533pt;}
.y280{bottom:75.592267pt;}
.y238{bottom:75.604667pt;}
.y19c{bottom:78.644000pt;}
.y2a{bottom:86.557200pt;}
.y237{bottom:88.932667pt;}
.y200{bottom:88.954933pt;}
.yfb{bottom:89.137067pt;}
.yc4{bottom:89.162533pt;}
.y167{bottom:89.392800pt;}
.y133{bottom:89.433333pt;}
.y132{bottom:89.438133pt;}
.y91{bottom:89.568400pt;}
.y29{bottom:89.637200pt;}
.y5f{bottom:90.011600pt;}
.y27f{bottom:90.475600pt;}
.y19b{bottom:91.960667pt;}
.y251{bottom:96.927867pt;}
.y28{bottom:97.523867pt;}
.y236{bottom:102.260667pt;}
.yfa{bottom:102.683733pt;}
.yc3{bottom:102.734667pt;}
.y166{bottom:103.194933pt;}
.y131{bottom:103.276133pt;}
.y90{bottom:103.553733pt;}
.y5e{bottom:104.432800pt;}
.y19a{bottom:105.277200pt;}
.y27e{bottom:105.358933pt;}
.y250{bottom:110.244533pt;}
.y27{bottom:111.570533pt;}
.y1ff{bottom:113.672933pt;}
.y235{bottom:115.588667pt;}
.yf9{bottom:116.230267pt;}
.yc2{bottom:116.306667pt;}
.y165{bottom:116.995200pt;}
.y130{bottom:117.118933pt;}
.y8e{bottom:117.516933pt;}
.y8f{bottom:117.535467pt;}
.y199{bottom:118.594000pt;}
.y5d{bottom:118.863467pt;}
.y27d{bottom:120.242267pt;}
.y26{bottom:122.537200pt;}
.y24f{bottom:122.915200pt;}
.y234{bottom:128.921467pt;}
.yf8{bottom:129.776800pt;}
.yc1{bottom:129.878533pt;}
.y1cc{bottom:129.937200pt;}
.y164{bottom:130.799200pt;}
.y12f{bottom:130.961733pt;}
.y12e{bottom:130.966533pt;}
.y8d{bottom:131.502267pt;}
.y198{bottom:131.910667pt;}
.y25{bottom:133.503867pt;}
.y24e{bottom:136.231867pt;}
.y233{bottom:142.254133pt;}
.yf7{bottom:143.326533pt;}
.yc0{bottom:143.450667pt;}
.y24{bottom:144.470533pt;}
.y163{bottom:144.601333pt;}
.y12d{bottom:144.804533pt;}
.y197{bottom:145.227333pt;}
.y8c{bottom:145.487600pt;}
.y5c{bottom:148.398133pt;}
.y24d{bottom:148.902533pt;}
.y1fe{bottom:153.509600pt;}
.y232{bottom:155.591600pt;}
.yf6{bottom:156.869867pt;}
.ybf{bottom:157.022667pt;}
.y162{bottom:158.388667pt;}
.y196{bottom:158.544000pt;}
.y12c{bottom:158.647333pt;}
.y8b{bottom:159.472933pt;}
.y24c{bottom:162.219200pt;}
.y5b{bottom:162.814133pt;}
.y1fd{bottom:166.882933pt;}
.y231{bottom:168.919600pt;}
.y1cb{bottom:169.705867pt;}
.yf5{bottom:170.416400pt;}
.ybe{bottom:170.589467pt;}
.y195{bottom:171.860667pt;}
.y161{bottom:172.192667pt;}
.y12b{bottom:172.490133pt;}
.y8a{bottom:173.458267pt;}
.y24b{bottom:174.889867pt;}
.y5a{bottom:177.235200pt;}
.y59{bottom:177.255467pt;}
.y1fc{bottom:180.257200pt;}
.y230{bottom:182.252267pt;}
.y1ca{bottom:183.022533pt;}
.yf4{bottom:183.969467pt;}
.ybd{bottom:184.166800pt;}
.y194{bottom:185.177333pt;}
.y160{bottom:185.996667pt;}
.y12a{bottom:186.332933pt;}
.y129{bottom:186.337733pt;}
.y89{bottom:187.443600pt;}
.y23{bottom:187.818133pt;}
.y24a{bottom:188.206533pt;}
.y58{bottom:191.671467pt;}
.y1fb{bottom:193.631467pt;}
.y22f{bottom:195.599067pt;}
.y1c9{bottom:196.339200pt;}
.yf3{bottom:197.512800pt;}
.y193{bottom:198.494000pt;}
.y15f{bottom:199.800667pt;}
.y128{bottom:200.175733pt;}
.y249{bottom:200.877200pt;}
.y88{bottom:201.425200pt;}
.y22{bottom:201.631467pt;}
.y57{bottom:206.087467pt;}
.y1fa{bottom:207.005867pt;}
.y22e{bottom:208.927067pt;}
.y1c8{bottom:209.655867pt;}
.yf2{bottom:211.056133pt;}
.y192{bottom:211.810667pt;}
.ybc{bottom:212.851467pt;}
.y15e{bottom:213.604667pt;}
.y127{bottom:214.018533pt;}
.y248{bottom:214.193867pt;}
.y87{bottom:215.406800pt;}
.y21{bottom:219.220800pt;}
.y1f9{bottom:220.381067pt;}
.y56{bottom:220.503467pt;}
.y22d{bottom:222.255067pt;}
.y1c7{bottom:222.972533pt;}
.yf1{bottom:224.602667pt;}
.y191{bottom:225.127333pt;}
.ybb{bottom:226.428800pt;}
.y247{bottom:226.864533pt;}
.y15d{bottom:227.408667pt;}
.y126{bottom:227.861333pt;}
.y86{bottom:229.388533pt;}
.y20{bottom:233.034133pt;}
.y1f8{bottom:233.754400pt;}
.y55{bottom:234.919467pt;}
.y22c{bottom:235.583067pt;}
.y1c6{bottom:236.289200pt;}
.yf0{bottom:238.149200pt;}
.y190{bottom:238.444000pt;}
.yba{bottom:240.000800pt;}
.y246{bottom:240.181200pt;}
.y15c{bottom:241.212667pt;}
.y125{bottom:241.704000pt;}
.y27c{bottom:244.739200pt;}
.y1f{bottom:246.847467pt;}
.y1f7{bottom:247.128667pt;}
.y22b{bottom:248.915867pt;}
.y54{bottom:249.340533pt;}
.y1c5{bottom:249.605867pt;}
.yef{bottom:251.708667pt;}
.y18f{bottom:251.760667pt;}
.y245{bottom:252.851867pt;}
.y15b{bottom:255.016667pt;}
.y124{bottom:255.546800pt;}
.y27b{bottom:258.055867pt;}
.y85{bottom:258.488133pt;}
.y1f6{bottom:260.502933pt;}
.y1e{bottom:260.660800pt;}
.y22a{bottom:262.248533pt;}
.y1c4{bottom:262.922533pt;}
.y53{bottom:263.761600pt;}
.yb9{bottom:264.900133pt;}
.y18e{bottom:265.077333pt;}
.yee{bottom:265.252000pt;}
.y244{bottom:266.168533pt;}
.y15a{bottom:268.820667pt;}
.y123{bottom:269.389600pt;}
.y27a{bottom:271.368533pt;}
.y84{bottom:271.686533pt;}
.y1f5{bottom:273.877200pt;}
.y1d{bottom:274.474133pt;}
.y229{bottom:275.586000pt;}
.y1c3{bottom:276.239200pt;}
.y52{bottom:278.182800pt;}
.y18d{bottom:278.394000pt;}
.yb8{bottom:278.477467pt;}
.yed{bottom:278.795333pt;}
.y243{bottom:278.839200pt;}
.y159{bottom:282.622800pt;}
.y122{bottom:283.232400pt;}
.y279{bottom:284.685200pt;}
.y83{bottom:284.884800pt;}
.y1f4{bottom:287.251467pt;}
.y1c{bottom:288.287467pt;}
.y228{bottom:288.914000pt;}
.y1c2{bottom:289.555867pt;}
.y18c{bottom:291.710667pt;}
.y242{bottom:292.155867pt;}
.yec{bottom:292.338667pt;}
.y51{bottom:292.603867pt;}
.y158{bottom:296.424933pt;}
.y121{bottom:297.075200pt;}
.y278{bottom:297.355867pt;}
.y82{bottom:298.083067pt;}
.y1f3{bottom:300.626667pt;}
.y1b{bottom:302.100800pt;}
.y227{bottom:302.246667pt;}
.y1c1{bottom:302.872533pt;}
.y18b{bottom:305.027333pt;}
.y241{bottom:305.468533pt;}
.yeb{bottom:305.882000pt;}
.y50{bottom:307.024800pt;}
.y157{bottom:310.227067pt;}
.y277{bottom:310.672533pt;}
.y120{bottom:310.918000pt;}
.y81{bottom:311.281333pt;}
.y1f2{bottom:314.000000pt;}
.y226{bottom:315.584133pt;}
.y1a{bottom:315.914133pt;}
.y1c0{bottom:316.189200pt;}
.y240{bottom:318.139200pt;}
.y18a{bottom:318.344000pt;}
.yb7{bottom:318.506800pt;}
.yea{bottom:319.428533pt;}
.y4f{bottom:321.446000pt;}
.y276{bottom:323.989200pt;}
.y156{bottom:324.029200pt;}
.y80{bottom:324.479600pt;}
.y11f{bottom:324.760800pt;}
.y1f1{bottom:327.374267pt;}
.y225{bottom:328.912133pt;}
.y1bf{bottom:329.505867pt;}
.y23f{bottom:331.455867pt;}
.y189{bottom:331.660667pt;}
.yb6{bottom:332.084133pt;}
.ye9{bottom:332.975067pt;}
.y19{bottom:333.507067pt;}
.y4e{bottom:335.867067pt;}
.y275{bottom:337.301867pt;}
.y7f{bottom:337.678000pt;}
.y155{bottom:337.825867pt;}
.y11e{bottom:338.608400pt;}
.y1f0{bottom:340.749467pt;}
.y224{bottom:342.244933pt;}
.y1be{bottom:342.822533pt;}
.y23e{bottom:344.772533pt;}
.y188{bottom:344.977333pt;}
.yb5{bottom:345.656133pt;}
.ye8{bottom:346.521600pt;}
.y274{bottom:349.972533pt;}
.y4d{bottom:350.288133pt;}
.y7e{bottom:350.876267pt;}
.y154{bottom:351.629867pt;}
.y11d{bottom:352.446400pt;}
.y1ef{bottom:354.122800pt;}
.y223{bottom:355.601067pt;}
.y1bd{bottom:356.139200pt;}
.y23d{bottom:358.089200pt;}
.y187{bottom:358.294000pt;}
.yb4{bottom:359.228133pt;}
.ye7{bottom:360.068133pt;}
.y18{bottom:360.301733pt;}
.y273{bottom:363.289200pt;}
.y4c{bottom:364.709200pt;}
.y153{bottom:365.433867pt;}
.y11c{bottom:366.289200pt;}
.y1ee{bottom:367.497067pt;}
.y222{bottom:368.929067pt;}
.y1bc{bottom:369.455867pt;}
.y23c{bottom:370.755867pt;}
.y186{bottom:371.610667pt;}
.yb3{bottom:372.784133pt;}
.ye6{bottom:373.614800pt;}
.y17{bottom:374.093733pt;}
.y272{bottom:376.601867pt;}
.y4b{bottom:379.135333pt;}
.y7d{bottom:379.192667pt;}
.y152{bottom:379.237867pt;}
.y11b{bottom:380.132000pt;}
.y1ed{bottom:380.871467pt;}
.y221{bottom:382.257067pt;}
.y1bb{bottom:382.772533pt;}
.y23b{bottom:384.068533pt;}
.y185{bottom:384.927333pt;}
.yb2{bottom:386.361467pt;}
.ye5{bottom:387.161333pt;}
.y271{bottom:389.272533pt;}
.y16{bottom:391.646800pt;}
.y151{bottom:393.040000pt;}
.y7c{bottom:393.174267pt;}
.y4a{bottom:393.551333pt;}
.y11a{bottom:393.979600pt;}
.y1ec{bottom:394.245733pt;}
.y220{bottom:395.585067pt;}
.y1ba{bottom:396.089200pt;}
.y23a{bottom:397.385200pt;}
.y184{bottom:398.244000pt;}
.yb1{bottom:399.938800pt;}
.ye4{bottom:400.707867pt;}
.y270{bottom:402.589200pt;}
.y15{bottom:405.438800pt;}
.y150{bottom:406.836533pt;}
.y7b{bottom:407.155867pt;}
.y1eb{bottom:407.620000pt;}
.y119{bottom:407.817600pt;}
.y49{bottom:407.972400pt;}
.y21f{bottom:408.913067pt;}
.y1b9{bottom:409.405867pt;}
.y239{bottom:410.055867pt;}
.y183{bottom:411.560667pt;}
.yb0{bottom:413.516133pt;}
.ye3{bottom:414.254400pt;}
.y26f{bottom:415.901867pt;}
.y14{bottom:419.230800pt;}
.y14f{bottom:420.640533pt;}
.y1ea{bottom:420.994267pt;}
.y7a{bottom:421.137467pt;}
.y118{bottom:421.660267pt;}
.y21e{bottom:422.241067pt;}
.y48{bottom:422.408800pt;}
.y1b8{bottom:422.722533pt;}
.y182{bottom:424.877333pt;}
.yaf{bottom:427.088133pt;}
.ye2{bottom:427.800933pt;}
.y26e{bottom:428.572533pt;}
.y13{bottom:433.013600pt;}
.y1e9{bottom:434.369467pt;}
.y14e{bottom:434.444533pt;}
.y117{bottom:435.503067pt;}
.y21d{bottom:435.573867pt;}
.y1b7{bottom:436.039200pt;}
.y47{bottom:436.824800pt;}
.y181{bottom:438.194000pt;}
.yae{bottom:440.660133pt;}
.ye1{bottom:441.347600pt;}
.y26d{bottom:441.889200pt;}
.y12{bottom:446.797867pt;}
.y1e8{bottom:447.742800pt;}
.y14d{bottom:448.248533pt;}
.y21c{bottom:448.911333pt;}
.y116{bottom:449.355467pt;}
.y1b6{bottom:449.355867pt;}
.y79{bottom:450.240933pt;}
.y46{bottom:451.240800pt;}
.y180{bottom:451.510667pt;}
.yad{bottom:454.232267pt;}
.ye0{bottom:454.894133pt;}
.y26c{bottom:455.197867pt;}
.y11{bottom:460.589867pt;}
.y1e7{bottom:461.117067pt;}
.y14c{bottom:462.050800pt;}
.y21b{bottom:462.239333pt;}
.y1b5{bottom:462.672533pt;}
.y115{bottom:463.193467pt;}
.y78{bottom:463.435600pt;}
.y17f{bottom:464.827333pt;}
.y45{bottom:465.656800pt;}
.yac{bottom:467.798933pt;}
.y26b{bottom:467.868533pt;}
.ydf{bottom:468.440667pt;}
.y10{bottom:474.371200pt;}
.y1e6{bottom:474.495067pt;}
.y21a{bottom:475.572000pt;}
.y14b{bottom:475.849200pt;}
.y1b4{bottom:475.989200pt;}
.y77{bottom:476.633867pt;}
.y114{bottom:477.031467pt;}
.y17e{bottom:478.144000pt;}
.y44{bottom:480.077867pt;}
.y26a{bottom:481.185200pt;}
.yab{bottom:481.376267pt;}
.yde{bottom:481.987200pt;}
.y1e5{bottom:487.868400pt;}
.yf{bottom:488.163200pt;}
.y219{bottom:488.904667pt;}
.y1b3{bottom:489.305867pt;}
.y14a{bottom:489.653200pt;}
.y76{bottom:489.832133pt;}
.y113{bottom:490.874267pt;}
.y17d{bottom:491.460667pt;}
.y269{bottom:494.501867pt;}
.y43{bottom:494.509067pt;}
.yaa{bottom:494.948267pt;}
.ydd{bottom:495.533733pt;}
.y1e4{bottom:501.241733pt;}
.ye{bottom:501.955200pt;}
.y218{bottom:502.242133pt;}
.y1b2{bottom:502.622533pt;}
.y149{bottom:503.457200pt;}
.y112{bottom:504.717067pt;}
.y17c{bottom:504.777200pt;}
.y268{bottom:507.172533pt;}
.ya9{bottom:508.520267pt;}
.y42{bottom:508.925067pt;}
.ydc{bottom:509.080267pt;}
.y1e3{bottom:514.615067pt;}
.y217{bottom:515.570133pt;}
.yd{bottom:515.747200pt;}
.y1b1{bottom:515.939200pt;}
.y148{bottom:517.259333pt;}
.y17b{bottom:518.094000pt;}
.y75{bottom:518.141067pt;}
.y111{bottom:518.559867pt;}
.y267{bottom:520.489200pt;}
.ya8{bottom:522.092267pt;}
.y41{bottom:523.341067pt;}
.y1e2{bottom:527.988400pt;}
.y216{bottom:528.902800pt;}
.y1b0{bottom:529.255867pt;}
.y147{bottom:531.061467pt;}
.y17a{bottom:531.410667pt;}
.y74{bottom:532.126400pt;}
.y110{bottom:532.402667pt;}
.y266{bottom:533.801867pt;}
.ya7{bottom:535.664267pt;}
.ydb{bottom:537.744933pt;}
.yda{bottom:537.761067pt;}
.y40{bottom:537.762133pt;}
.y1e1{bottom:541.362667pt;}
.y215{bottom:542.235600pt;}
.y1af{bottom:542.572533pt;}
.y179{bottom:544.727333pt;}
.y146{bottom:544.861733pt;}
.y73{bottom:546.111733pt;}
.y10f{bottom:546.245467pt;}
.y265{bottom:546.472533pt;}
.yc{bottom:548.652533pt;}
.ya6{bottom:549.236267pt;}
.yd9{bottom:551.304400pt;}
.y3f{bottom:552.183200pt;}
.y1e0{bottom:554.737067pt;}
.y214{bottom:555.568267pt;}
.y1ae{bottom:555.889200pt;}
.y178{bottom:558.044000pt;}
.y145{bottom:558.665733pt;}
.y264{bottom:559.789200pt;}
.y72{bottom:560.093467pt;}
.y10e{bottom:560.097867pt;}
.ya5{bottom:562.808267pt;}
.yb{bottom:563.052533pt;}
.yd8{bottom:564.847733pt;}
.y3e{bottom:566.604267pt;}
.y1df{bottom:568.111333pt;}
.y213{bottom:568.901067pt;}
.y1ad{bottom:569.205867pt;}
.y177{bottom:571.360533pt;}
.y144{bottom:572.468000pt;}
.y263{bottom:573.101867pt;}
.y10d{bottom:573.935867pt;}
.y71{bottom:574.075067pt;}
.ya4{bottom:576.380267pt;}
.yd7{bottom:578.391067pt;}
.y3d{bottom:581.025333pt;}
.y1de{bottom:581.486533pt;}
.y212{bottom:582.252533pt;}
.y1ac{bottom:582.522533pt;}
.y176{bottom:584.677333pt;}
.y262{bottom:585.772533pt;}
.y143{bottom:586.270133pt;}
.y10c{bottom:587.773867pt;}
.y70{bottom:588.056667pt;}
.ya3{bottom:589.952267pt;}
.yd6{bottom:591.934400pt;}
.ya{bottom:593.880800pt;}
.y1dd{bottom:594.859867pt;}
.y3c{bottom:595.446400pt;}
.y211{bottom:595.580533pt;}
.y1ab{bottom:595.839200pt;}
.y175{bottom:597.994000pt;}
.y261{bottom:599.089200pt;}
.y142{bottom:600.072267pt;}
.y10b{bottom:601.616667pt;}
.y6f{bottom:602.034533pt;}
.ya2{bottom:603.524267pt;}
.yd5{bottom:605.477733pt;}
.y1dc{bottom:608.234133pt;}
.y9{bottom:608.280800pt;}
.y210{bottom:608.908533pt;}
.y1aa{bottom:609.155867pt;}
.y3b{bottom:609.877733pt;}
.y174{bottom:611.310667pt;}
.y260{bottom:612.397867pt;}
.y141{bottom:613.874400pt;}
.y10a{bottom:615.459333pt;}
.y6e{bottom:616.019867pt;}
.ya1{bottom:617.096267pt;}
.yd4{bottom:619.024267pt;}
.yd3{bottom:619.027467pt;}
.y1db{bottom:621.608400pt;}
.y20f{bottom:622.236533pt;}
.y1a9{bottom:622.472533pt;}
.y3a{bottom:624.293733pt;}
.y173{bottom:624.627333pt;}
.y25f{bottom:625.068533pt;}
.y140{bottom:627.664800pt;}
.y109{bottom:629.311733pt;}
.y6d{bottom:630.001600pt;}
.ya0{bottom:630.668400pt;}
.yd2{bottom:632.570800pt;}
.y1da{bottom:634.982667pt;}
.y20e{bottom:635.564533pt;}
.y1a8{bottom:635.789200pt;}
.y172{bottom:637.943867pt;}
.y25e{bottom:638.385200pt;}
.y39{bottom:638.709733pt;}
.y8{bottom:639.109200pt;}
.y13f{bottom:641.468800pt;}
.y108{bottom:643.149733pt;}
.y6c{bottom:643.983200pt;}
.y9f{bottom:644.240267pt;}
.yd1{bottom:646.117333pt;}
.y1d9{bottom:648.356933pt;}
.y20d{bottom:648.897333pt;}
.y1a7{bottom:649.105867pt;}
.y171{bottom:651.260533pt;}
.y25d{bottom:651.701867pt;}
.y38{bottom:653.130800pt;}
.y7{bottom:653.509200pt;}
.y13e{bottom:655.272800pt;}
.y107{bottom:656.987733pt;}
.y9e{bottom:657.807067pt;}
.y6b{bottom:657.964800pt;}
.yd0{bottom:659.676800pt;}
.y1d8{bottom:661.731200pt;}
.y20c{bottom:662.230000pt;}
.y1a6{bottom:662.422533pt;}
.y25c{bottom:664.372533pt;}
.y170{bottom:664.577200pt;}
.y37{bottom:667.551867pt;}
.y13d{bottom:669.076800pt;}
.y106{bottom:670.830533pt;}
.y9d{bottom:671.384400pt;}
.y6a{bottom:671.946400pt;}
.ycf{bottom:673.220133pt;}
.y1d7{bottom:675.105467pt;}
.y20b{bottom:675.562667pt;}
.y1a5{bottom:675.739200pt;}
.y25b{bottom:677.689200pt;}
.y16f{bottom:677.893867pt;}
.y36{bottom:681.972933pt;}
.y6{bottom:682.445067pt;}
.y13c{bottom:682.880800pt;}
.y105{bottom:684.673333pt;}
.y9c{bottom:684.956400pt;}
.y69{bottom:685.924400pt;}
.yce{bottom:686.763467pt;}
.y1d6{bottom:688.479867pt;}
.y20a{bottom:688.900133pt;}
.y1a4{bottom:689.055867pt;}
.y25a{bottom:691.001867pt;}
.y16e{bottom:691.210533pt;}
.y35{bottom:696.409200pt;}
.y13b{bottom:696.684800pt;}
.y104{bottom:698.516133pt;}
.y9b{bottom:698.528400pt;}
.y68{bottom:699.909733pt;}
.ycd{bottom:700.306800pt;}
.y1d5{bottom:701.856000pt;}
.y209{bottom:702.228133pt;}
.y1a3{bottom:702.372533pt;}
.y259{bottom:703.672533pt;}
.y5{bottom:703.781067pt;}
.y16d{bottom:704.527200pt;}
.y34{bottom:710.825200pt;}
.y9a{bottom:712.089733pt;}
.y103{bottom:712.358933pt;}
.ycc{bottom:713.850133pt;}
.y67{bottom:713.891333pt;}
.y1d4{bottom:715.229333pt;}
.y208{bottom:715.560933pt;}
.y1a2{bottom:715.689200pt;}
.y258{bottom:716.989200pt;}
.y16c{bottom:717.843867pt;}
.y33{bottom:725.241200pt;}
.y13a{bottom:725.607467pt;}
.y99{bottom:725.667067pt;}
.y102{bottom:726.201733pt;}
.ycb{bottom:727.396667pt;}
.y66{bottom:727.869200pt;}
.y1d3{bottom:728.602667pt;}
.y207{bottom:728.907733pt;}
.y1a1{bottom:729.005867pt;}
.y257{bottom:730.305867pt;}
.y16b{bottom:731.170533pt;}
.y98{bottom:739.244400pt;}
.y139{bottom:739.409733pt;}
.y32{bottom:739.657200pt;}
.y101{bottom:740.044533pt;}
.yca{bottom:740.946533pt;}
.y65{bottom:741.854533pt;}
.y1d2{bottom:741.976933pt;}
.y206{bottom:742.235733pt;}
.y1a0{bottom:742.322533pt;}
.y256{bottom:743.618533pt;}
.y97{bottom:752.816400pt;}
.y138{bottom:753.211867pt;}
.y100{bottom:753.887333pt;}
.y31{bottom:754.078400pt;}
.yc9{bottom:754.489867pt;}
.y1d1{bottom:755.355867pt;}
.y205{bottom:755.563733pt;}
.y19f{bottom:755.639200pt;}
.y16a{bottom:755.820533pt;}
.y64{bottom:755.836133pt;}
.y255{bottom:756.289200pt;}
.y96{bottom:766.393867pt;}
.y137{bottom:767.014000pt;}
.yff{bottom:767.730000pt;}
.yc8{bottom:768.036400pt;}
.y30{bottom:768.508533pt;}
.y1d0{bottom:768.729200pt;}
.y204{bottom:768.891733pt;}
.y19e{bottom:768.955867pt;}
.y254{bottom:769.605867pt;}
.y63{bottom:769.817733pt;}
.y136{bottom:780.816133pt;}
.yc7{bottom:781.582933pt;}
.yfe{bottom:781.587200pt;}
.y1cf{bottom:782.102533pt;}
.y203{bottom:782.224400pt;}
.y19d{bottom:782.272533pt;}
.y253{bottom:782.922533pt;}
.y2f{bottom:782.924533pt;}
.y62{bottom:783.799333pt;}
.y3{bottom:789.529200pt;}
.y135{bottom:794.618267pt;}
.y95{bottom:795.078533pt;}
.yc6{bottom:795.129467pt;}
.yfd{bottom:795.425200pt;}
.y1ce{bottom:795.475867pt;}
.y202{bottom:795.566533pt;}
.y169{bottom:795.589200pt;}
.y252{bottom:796.235200pt;}
.y2e{bottom:797.340533pt;}
.y61{bottom:797.782533pt;}
.y134{bottom:808.420400pt;}
.y94{bottom:808.650533pt;}
.yc5{bottom:808.679200pt;}
.y1cd{bottom:808.849200pt;}
.y201{bottom:808.894533pt;}
.y168{bottom:808.905867pt;}
.yfc{bottom:809.263200pt;}
.y93{bottom:822.222533pt;}
.y2d{bottom:823.101200pt;}
.y4{bottom:831.496133pt;}
.y2{bottom:842.232667pt;}
.y2c{bottom:861.780400pt;}
.y60{bottom:861.919333pt;}
.hf{height:21.220267pt;}
.hd{height:24.266667pt;}
.h5{height:26.133333pt;}
.h2{height:33.973333pt;}
.h12{height:36.030933pt;}
.he{height:36.586667pt;}
.hc{height:40.729167pt;}
.h3{height:40.998400pt;}
.h13{height:41.685333pt;}
.h4{height:41.813333pt;}
.ha{height:41.844267pt;}
.hb{height:41.850133pt;}
.h9{height:41.856000pt;}
.h10{height:43.274740pt;}
.h11{height:44.426667pt;}
.h8{height:47.040000pt;}
.h14{height:49.501333pt;}
.h7{height:56.002604pt;}
.h6{height:73.173333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x3{left:68.284933pt;}
.xe{left:71.811600pt;}
.x10{left:77.206267pt;}
.xd{left:82.026267pt;}
.x11{left:86.026267pt;}
.xf{left:87.359600pt;}
.x6{left:125.214667pt;}
.x5{left:141.828000pt;}
.xc{left:193.131467pt;}
.x7{left:227.788267pt;}
.xa{left:230.925600pt;}
.xb{left:236.834800pt;}
.x9{left:243.826000pt;}
.x8{left:252.986800pt;}
.x12{left:330.897600pt;}
.x2{left:440.563067pt;}
.x4{left:450.667600pt;}
}




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