
    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_9acb45176c0555507dd5074b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957000;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_e3d6853fd938f5a825d721c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_ecb4b25219f4f1cfd2d4e83c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.166000;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_6a434c67cb5fc16039bcd279.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_db161e3f91ce1950e7cad391.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093750;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_7088264e0b5c6a2a4a874a30.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_8a06656d0911e086bbae826f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.165000;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_aa56db914ab838ba0b988120.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.199900;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ea103e850f4c544ca3b37227.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6c968a733b82e499bb22c7b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.193000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ee491b0ddea8f2b3bd968065.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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;}
.m58{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);}
.m62{transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247542,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.247582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247582,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247626,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.247627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247627,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.247736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247736,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247927,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247935,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.247960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247960,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248061,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.248142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248142,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248155,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248173,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248202,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248248,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248261,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248395,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248490,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248493,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248525,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248561,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248564,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248575,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248595,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248616,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248624,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248702,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248703,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248741,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.ma3{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);}
.m7e{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248984,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249030,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249036,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249037,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.m95{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);}
.m60{transform:matrix(0.249109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249109,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249129,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249148,0.000000,0.000000,0.250000,0,0);}
.mb2{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);}
.m29{transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249227,0.000000,0.000000,0.250000,0,0);}
.m41{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);}
.m69{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249302,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249322,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249380,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249383,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249443,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249541,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249559,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249584,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249613,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249634,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m6b{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249761,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249781,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249816,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m83{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249889,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249907,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249911,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249966,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,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);}
.m40{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250048,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250052,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250077,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.ma9{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);}
.mc{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m3e{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250302,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250307,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250405,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250492,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250611,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250650,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250673,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250732,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250789,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250792,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250798,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250870,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250920,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250957,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.m8f{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);}
.m99{transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251042,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251074,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251154,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251452,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251511,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251570,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251578,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251608,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251755,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251793,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251793,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251793,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251947,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252018,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-21.978000px;}
.v1{vertical-align:-8.073000px;}
.v3{vertical-align:-1.380000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.380000px;}
.v2{vertical-align:8.073000px;}
.v7{vertical-align:19.980000px;}
.v5{vertical-align:21.999000px;}
.lse{letter-spacing:-5.400000px;}
.ls25{letter-spacing:-4.620000px;}
.ls27{letter-spacing:-4.356000px;}
.ls3b{letter-spacing:-3.630000px;}
.ls24{letter-spacing:-3.510000px;}
.lsa{letter-spacing:-3.300000px;}
.ls70{letter-spacing:-1.890000px;}
.lsf{letter-spacing:-1.650000px;}
.lsb{letter-spacing:-1.620000px;}
.ls6e{letter-spacing:-1.350000px;}
.ls4b{letter-spacing:-1.020000px;}
.ls45{letter-spacing:-0.840000px;}
.ls31{letter-spacing:-0.810000px;}
.ls4c{letter-spacing:-0.780000px;}
.ls6f{letter-spacing:-0.570000px;}
.ls57{letter-spacing:-0.540000px;}
.ls59{letter-spacing:-0.528000px;}
.ls2b{letter-spacing:-0.480000px;}
.ls4a{letter-spacing:-0.462000px;}
.ls68{letter-spacing:-0.399000px;}
.ls32{letter-spacing:-0.396000px;}
.ls43{letter-spacing:-0.346302px;}
.ls66{letter-spacing:-0.342000px;}
.ls18{letter-spacing:-0.330000px;}
.ls28{letter-spacing:-0.300000px;}
.ls62{letter-spacing:-0.285000px;}
.ls11{letter-spacing:-0.264000px;}
.ls2e{letter-spacing:-0.240000px;}
.ls3a{letter-spacing:-0.230868px;}
.ls60{letter-spacing:-0.228000px;}
.ls39{letter-spacing:-0.198000px;}
.ls2d{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.171000px;}
.ls58{letter-spacing:-0.153912px;}
.ls17{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.120000px;}
.ls44{letter-spacing:-0.115434px;}
.ls7{letter-spacing:-0.114000px;}
.ls52{letter-spacing:-0.076956px;}
.ls10{letter-spacing:-0.066000px;}
.ls1a{letter-spacing:-0.060000px;}
.ls8{letter-spacing:-0.057000px;}
.ls3f{letter-spacing:-0.038478px;}
.ls5{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.000240px;}
.ls35{letter-spacing:0.006600px;}
.ls2f{letter-spacing:0.035400px;}
.ls0{letter-spacing:0.057000px;}
.ls37{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.066000px;}
.ls29{letter-spacing:0.072600px;}
.ls5b{letter-spacing:0.114000px;}
.ls2c{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.132000px;}
.ls1e{letter-spacing:0.132918px;}
.ls6d{letter-spacing:0.142500px;}
.ls61{letter-spacing:0.171000px;}
.ls30{letter-spacing:0.180000px;}
.ls1d{letter-spacing:0.198000px;}
.ls5e{letter-spacing:0.228000px;}
.ls48{letter-spacing:0.240000px;}
.ls5f{letter-spacing:0.256500px;}
.ls26{letter-spacing:0.264000px;}
.ls49{letter-spacing:0.269346px;}
.ls42{letter-spacing:0.270000px;}
.ls38{letter-spacing:0.300000px;}
.ls5a{letter-spacing:0.313500px;}
.lsc{letter-spacing:0.330000px;}
.ls5c{letter-spacing:0.342000px;}
.ls15{letter-spacing:0.360000px;}
.ls53{letter-spacing:0.363000px;}
.ls20{letter-spacing:0.369600px;}
.ls1c{letter-spacing:0.396000px;}
.ls5d{letter-spacing:0.399000px;}
.ls16{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.429000px;}
.ls1f{letter-spacing:0.435600px;}
.ls69{letter-spacing:0.456000px;}
.ls46{letter-spacing:0.462000px;}
.ls21{letter-spacing:0.475200px;}
.ls23{letter-spacing:0.480000px;}
.ls65{letter-spacing:0.501600px;}
.ls6a{letter-spacing:0.513000px;}
.ls54{letter-spacing:0.528000px;}
.ls36{letter-spacing:0.534600px;}
.ls6c{letter-spacing:0.540000px;}
.ls14{letter-spacing:0.594000px;}
.ls6{letter-spacing:0.600000px;}
.ls47{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.712800px;}
.lsd{letter-spacing:0.720000px;}
.ls55{letter-spacing:0.726000px;}
.ls50{letter-spacing:0.780000px;}
.ls51{letter-spacing:0.912000px;}
.ls1b{letter-spacing:0.924000px;}
.ls56{letter-spacing:0.990000px;}
.ls67{letter-spacing:1.026000px;}
.ls3e{letter-spacing:1.080000px;}
.ls33{letter-spacing:1.188000px;}
.ls34{letter-spacing:1.260600px;}
.ls4{letter-spacing:1.350000px;}
.ls22{letter-spacing:1.460220px;}
.ls13{letter-spacing:1.584000px;}
.ls12{letter-spacing:1.848000px;}
.ls2a{letter-spacing:1.980000px;}
.ls3c{letter-spacing:3.405600px;}
.ls64{letter-spacing:3.613800px;}
.ls4e{letter-spacing:4.098600px;}
.ls3d{letter-spacing:4.507800px;}
.ls40{letter-spacing:4.884000px;}
.ls6b{letter-spacing:4.930500px;}
.ls41{letter-spacing:6.085200px;}
.ls63{letter-spacing:72.407100px;}
.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;}
}
.ws30{word-spacing:-66.000000px;}
.wsd3{word-spacing:-60.000000px;}
.wsd4{word-spacing:-59.880000px;}
.wsc7{word-spacing:-19.500000px;}
.ws1{word-spacing:-17.250000px;}
.wsda{word-spacing:-16.896000px;}
.wsdb{word-spacing:-16.863000px;}
.wsbe{word-spacing:-16.632000px;}
.ws70{word-spacing:-16.500000px;}
.wsa1{word-spacing:-16.302000px;}
.ws2f{word-spacing:-16.170000px;}
.wsad{word-spacing:-15.000000px;}
.ws81{word-spacing:-14.760000px;}
.wsc9{word-spacing:-14.700000px;}
.wsc6{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws52{word-spacing:-13.464000px;}
.wsaf{word-spacing:-13.068000px;}
.ws4f{word-spacing:-12.870000px;}
.ws83{word-spacing:-12.804000px;}
.ws2d{word-spacing:-12.798000px;}
.wsdc{word-spacing:-12.720000px;}
.wsc8{word-spacing:-12.600000px;}
.ws84{word-spacing:-12.480000px;}
.ws95{word-spacing:-12.420000px;}
.wsbf{word-spacing:-12.360000px;}
.wse0{word-spacing:-12.258000px;}
.wsf5{word-spacing:-11.970000px;}
.wsfa{word-spacing:-11.913000px;}
.wsb1{word-spacing:-11.760000px;}
.ws31{word-spacing:-11.700000px;}
.wsc0{word-spacing:-11.580000px;}
.ws118{word-spacing:-11.448000px;}
.wsf{word-spacing:-11.220000px;}
.ws2{word-spacing:-11.178000px;}
.wsfb{word-spacing:-11.115000px;}
.ws6f{word-spacing:-10.560000px;}
.ws51{word-spacing:-9.504000px;}
.ws50{word-spacing:-9.240000px;}
.wsbd{word-spacing:-8.349726px;}
.ws2e{word-spacing:-8.080380px;}
.wsb0{word-spacing:-7.964946px;}
.wse1{word-spacing:-7.926468px;}
.ws46{word-spacing:-3.366000px;}
.ws5b{word-spacing:-3.300000px;}
.wse2{word-spacing:-3.168000px;}
.ws67{word-spacing:-3.102000px;}
.wsca{word-spacing:-3.036000px;}
.ws112{word-spacing:-3.021000px;}
.wsd6{word-spacing:-3.000000px;}
.ws5e{word-spacing:-2.970000px;}
.ws44{word-spacing:-2.838000px;}
.ws18{word-spacing:-2.772000px;}
.ws107{word-spacing:-2.736000px;}
.wsdd{word-spacing:-2.706000px;}
.ws98{word-spacing:-2.640000px;}
.ws113{word-spacing:-2.622000px;}
.ws6b{word-spacing:-2.580000px;}
.ws5a{word-spacing:-2.574000px;}
.ws4b{word-spacing:-2.520000px;}
.ws1f{word-spacing:-2.508000px;}
.wsf7{word-spacing:-2.451000px;}
.ws53{word-spacing:-2.442000px;}
.ws6{word-spacing:-2.394000px;}
.ws78{word-spacing:-2.376000px;}
.ws4a{word-spacing:-2.340000px;}
.wsa4{word-spacing:-2.310000px;}
.wsfd{word-spacing:-2.280000px;}
.ws79{word-spacing:-2.244000px;}
.wsed{word-spacing:-2.223000px;}
.wsd1{word-spacing:-2.220000px;}
.ws15{word-spacing:-2.178000px;}
.ws2c{word-spacing:-2.160000px;}
.ws17{word-spacing:-2.112000px;}
.ws6e{word-spacing:-2.100000px;}
.ws1b{word-spacing:-2.046000px;}
.ws73{word-spacing:-1.980000px;}
.ws87{word-spacing:-1.914000px;}
.wsb9{word-spacing:-1.860000px;}
.wsb4{word-spacing:-1.848000px;}
.ws77{word-spacing:-1.782000px;}
.ws115{word-spacing:-1.767000px;}
.ws6d{word-spacing:-1.740000px;}
.ws19{word-spacing:-1.716000px;}
.ws11a{word-spacing:-1.710000px;}
.wsa3{word-spacing:-1.650000px;}
.wsae{word-spacing:-1.620000px;}
.ws5{word-spacing:-1.596000px;}
.ws8c{word-spacing:-1.584000px;}
.ws41{word-spacing:-1.518000px;}
.wsff{word-spacing:-1.482000px;}
.wsa5{word-spacing:-1.452000px;}
.ws117{word-spacing:-1.425000px;}
.ws24{word-spacing:-1.386000px;}
.ws94{word-spacing:-1.380000px;}
.ws116{word-spacing:-1.368000px;}
.wsd{word-spacing:-1.350000px;}
.ws6c{word-spacing:-1.320000px;}
.ws103{word-spacing:-1.311000px;}
.ws40{word-spacing:-1.254000px;}
.ws102{word-spacing:-1.197000px;}
.ws54{word-spacing:-1.188000px;}
.ws93{word-spacing:-1.140000px;}
.ws9c{word-spacing:-1.122000px;}
.ws92{word-spacing:-1.080000px;}
.wsa6{word-spacing:-1.056000px;}
.ws11c{word-spacing:-1.026000px;}
.ws56{word-spacing:-0.990000px;}
.wseb{word-spacing:-0.969000px;}
.ws38{word-spacing:-0.924000px;}
.wsea{word-spacing:-0.912000px;}
.ws4d{word-spacing:-0.900000px;}
.ws1e{word-spacing:-0.858000px;}
.wsb7{word-spacing:-0.840000px;}
.ws106{word-spacing:-0.798000px;}
.ws25{word-spacing:-0.792000px;}
.wscb{word-spacing:-0.780000px;}
.ws105{word-spacing:-0.741000px;}
.wsdf{word-spacing:-0.726000px;}
.ws28{word-spacing:-0.720000px;}
.ws42{word-spacing:-0.660000px;}
.ws4c{word-spacing:-0.600000px;}
.wsb{word-spacing:-0.594000px;}
.wsee{word-spacing:-0.570000px;}
.ws1c{word-spacing:-0.528000px;}
.wsc3{word-spacing:-0.480000px;}
.ws9{word-spacing:-0.462000px;}
.ws60{word-spacing:-0.396000px;}
.wscd{word-spacing:-0.360000px;}
.wse9{word-spacing:-0.342000px;}
.ws10{word-spacing:-0.330000px;}
.ws7f{word-spacing:-0.300000px;}
.wsf1{word-spacing:-0.285000px;}
.ws43{word-spacing:-0.264000px;}
.ws7e{word-spacing:-0.240000px;}
.wsf6{word-spacing:-0.228000px;}
.wsb6{word-spacing:-0.198000px;}
.wsc5{word-spacing:-0.180000px;}
.wsf2{word-spacing:-0.171000px;}
.ws3f{word-spacing:-0.132000px;}
.ws80{word-spacing:-0.120000px;}
.wsec{word-spacing:-0.114000px;}
.wsa9{word-spacing:-0.066000px;}
.ws108{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.wsa7{word-spacing:0.038478px;}
.ws111{word-spacing:0.057000px;}
.ws8e{word-spacing:0.060000px;}
.ws1d{word-spacing:0.066000px;}
.wsd8{word-spacing:0.076956px;}
.wsf4{word-spacing:0.114000px;}
.ws91{word-spacing:0.120000px;}
.ws59{word-spacing:0.132000px;}
.wse7{word-spacing:0.171000px;}
.wsa2{word-spacing:0.198000px;}
.wsef{word-spacing:0.228000px;}
.ws9a{word-spacing:0.230868px;}
.ws13{word-spacing:0.264000px;}
.ws101{word-spacing:0.285000px;}
.ws36{word-spacing:0.330000px;}
.wsb2{word-spacing:0.346302px;}
.ws8f{word-spacing:0.360000px;}
.ws3c{word-spacing:0.396000px;}
.ws2a{word-spacing:0.462000px;}
.wsab{word-spacing:0.480000px;}
.ws3e{word-spacing:0.528000px;}
.wsac{word-spacing:0.540000px;}
.ws114{word-spacing:0.570000px;}
.ws9b{word-spacing:0.594000px;}
.ws62{word-spacing:0.660000px;}
.wsb3{word-spacing:0.726000px;}
.ws61{word-spacing:0.792000px;}
.ws5d{word-spacing:0.858000px;}
.ws10b{word-spacing:0.912000px;}
.ws5c{word-spacing:0.924000px;}
.ws104{word-spacing:0.969000px;}
.ws14{word-spacing:0.990000px;}
.wscf{word-spacing:1.020000px;}
.ws109{word-spacing:1.026000px;}
.ws8d{word-spacing:1.056000px;}
.ws10a{word-spacing:1.083000px;}
.ws8a{word-spacing:1.122000px;}
.ws10d{word-spacing:1.140000px;}
.ws3a{word-spacing:1.188000px;}
.ws9f{word-spacing:1.200000px;}
.ws3b{word-spacing:1.254000px;}
.wsb5{word-spacing:1.320000px;}
.ws4{word-spacing:1.368000px;}
.ws2b{word-spacing:1.386000px;}
.ws58{word-spacing:1.452000px;}
.ws11d{word-spacing:1.482000px;}
.ws12{word-spacing:1.518000px;}
.wsd7{word-spacing:1.560000px;}
.ws11{word-spacing:1.584000px;}
.ws6a{word-spacing:1.620000px;}
.ws3d{word-spacing:1.650000px;}
.ws120{word-spacing:1.653000px;}
.wsfe{word-spacing:1.710000px;}
.ws9e{word-spacing:1.716000px;}
.wsce{word-spacing:1.740000px;}
.ws10e{word-spacing:1.767000px;}
.ws57{word-spacing:1.782000px;}
.ws32{word-spacing:1.848000px;}
.ws10c{word-spacing:1.881000px;}
.ws37{word-spacing:1.914000px;}
.ws69{word-spacing:1.920000px;}
.ws10f{word-spacing:1.938000px;}
.ws26{word-spacing:1.980000px;}
.ws68{word-spacing:2.040000px;}
.ws5f{word-spacing:2.046000px;}
.ws11e{word-spacing:2.052000px;}
.ws16{word-spacing:2.112000px;}
.ws7d{word-spacing:2.160000px;}
.ws86{word-spacing:2.178000px;}
.wsbb{word-spacing:2.280000px;}
.ws9d{word-spacing:2.310000px;}
.wsf8{word-spacing:2.337000px;}
.ws23{word-spacing:2.376000px;}
.wsd5{word-spacing:2.400000px;}
.ws71{word-spacing:2.442000px;}
.ws119{word-spacing:2.451000px;}
.ws66{word-spacing:2.508000px;}
.wsba{word-spacing:2.520000px;}
.wse5{word-spacing:2.565000px;}
.wsde{word-spacing:2.574000px;}
.ws7c{word-spacing:2.580000px;}
.ws88{word-spacing:2.640000px;}
.ws89{word-spacing:2.706000px;}
.ws76{word-spacing:2.772000px;}
.wse6{word-spacing:2.793000px;}
.ws64{word-spacing:2.838000px;}
.ws72{word-spacing:2.904000px;}
.ws7a{word-spacing:2.940000px;}
.ws96{word-spacing:2.970000px;}
.ws33{word-spacing:3.036000px;}
.ws8b{word-spacing:3.102000px;}
.wsc1{word-spacing:3.168000px;}
.ws90{word-spacing:3.180000px;}
.wsaa{word-spacing:3.234000px;}
.ws49{word-spacing:3.240000px;}
.wsa{word-spacing:3.300000px;}
.ws21{word-spacing:3.366000px;}
.ws27{word-spacing:3.432000px;}
.wsf3{word-spacing:3.477000px;}
.ws7b{word-spacing:3.480000px;}
.wse3{word-spacing:3.498000px;}
.ws22{word-spacing:3.564000px;}
.ws34{word-spacing:3.630000px;}
.wse8{word-spacing:3.648000px;}
.ws29{word-spacing:3.696000px;}
.wsfc{word-spacing:3.705000px;}
.ws74{word-spacing:3.762000px;}
.wsd0{word-spacing:3.780000px;}
.ws85{word-spacing:3.828000px;}
.ws11b{word-spacing:3.876000px;}
.ws47{word-spacing:3.894000px;}
.ws7{word-spacing:3.933000px;}
.ws39{word-spacing:3.960000px;}
.ws97{word-spacing:4.026000px;}
.ws48{word-spacing:4.140000px;}
.ws35{word-spacing:4.158000px;}
.wsa8{word-spacing:4.224000px;}
.ws63{word-spacing:4.290000px;}
.ws20{word-spacing:4.356000px;}
.ws45{word-spacing:4.422000px;}
.wsc{word-spacing:4.488000px;}
.ws8{word-spacing:4.554000px;}
.ws1a{word-spacing:4.620000px;}
.ws99{word-spacing:4.686000px;}
.wscc{word-spacing:4.818000px;}
.ws75{word-spacing:5.412000px;}
.ws65{word-spacing:5.478000px;}
.ws55{word-spacing:6.138000px;}
.wsc2{word-spacing:6.900000px;}
.wsc4{word-spacing:7.140000px;}
.wsb8{word-spacing:28.740000px;}
.ws100{word-spacing:81.909000px;}
.wsf0{word-spacing:90.630000px;}
.wsf9{word-spacing:1350.387000px;}
.wsa0{word-spacing:1350.603000px;}
.wsd2{word-spacing:1353.465000px;}
.wsd9{word-spacing:1354.653000px;}
.wse4{word-spacing:1354.869000px;}
.ws110{word-spacing:1357.947000px;}
.wsbc{word-spacing:1359.783000px;}
.ws82{word-spacing:1361.349000px;}
.ws11f{word-spacing:1362.159000px;}
.ws4e{word-spacing:1369.233000px;}
.wse{word-spacing:1373.715000px;}
._19{margin-left:-2620.566000px;}
._f{margin-left:-2619.216000px;}
._3f{margin-left:-2617.866000px;}
._34{margin-left:-92.340000px;}
._27{margin-left:-31.320000px;}
._1b{margin-left:-20.141100px;}
._b{margin-left:-18.231300px;}
._d{margin-left:-16.289100px;}
._24{margin-left:-14.869800px;}
._11{margin-left:-13.723800px;}
._1a{margin-left:-12.221100px;}
._12{margin-left:-10.345800px;}
._3{margin-left:-8.129400px;}
._a{margin-left:-6.555000px;}
._6{margin-left:-5.229600px;}
._4{margin-left:-3.580200px;}
._2{margin-left:-2.050200px;}
._0{margin-left:-1.020000px;}
._1{width:1.009800px;}
._8{width:2.033100px;}
._5{width:3.129300px;}
._7{width:4.305300px;}
._c{width:5.425200px;}
._9{width:6.816000px;}
._10{width:8.016000px;}
._38{width:11.560200px;}
._2b{width:13.332000px;}
._26{width:16.771500px;}
._29{width:22.620000px;}
._22{width:24.300000px;}
._28{width:26.280000px;}
._25{width:28.260000px;}
._2c{width:29.580000px;}
._1c{width:31.020000px;}
._20{width:32.220000px;}
._23{width:33.300000px;}
._1f{width:34.560000px;}
._2a{width:35.940000px;}
._21{width:38.100000px;}
._1e{width:42.480000px;}
._2d{width:45.780000px;}
._1d{width:47.280000px;}
._3c{width:51.357000px;}
._18{width:53.280000px;}
._13{width:54.360000px;}
._3e{width:56.829000px;}
._17{width:58.800000px;}
._14{width:62.340000px;}
._15{width:64.200000px;}
._16{width:66.420000px;}
._33{width:67.545000px;}
._40{width:69.597000px;}
._e{width:70.620000px;}
._3a{width:71.763000px;}
._3d{width:73.131000px;}
._35{width:75.411000px;}
._41{width:77.463000px;}
._2f{width:79.173000px;}
._3b{width:80.541000px;}
._31{width:82.308000px;}
._30{width:83.904000px;}
._2e{width:86.013000px;}
._37{width:88.293000px;}
._32{width:89.376000px;}
._36{width:91.314000px;}
._39{width:102.486000px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs7{font-size:38.478000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:69.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:102.897750px;}
.y89{bottom:102.897900px;}
.y66{bottom:102.898050px;}
.yaf{bottom:102.898200px;}
.y1e{bottom:103.833150px;}
.y1c0{bottom:107.315250px;}
.y137{bottom:116.352150px;}
.y19c{bottom:118.461750px;}
.y46{bottom:120.897750px;}
.y88{bottom:120.897900px;}
.y65{bottom:120.898050px;}
.yae{bottom:120.898200px;}
.y1bf{bottom:124.865250px;}
.y1d{bottom:125.348100px;}
.y182{bottom:129.111300px;}
.y136{bottom:133.908150px;}
.y19b{bottom:136.017750px;}
.y15a{bottom:138.163350px;}
.yde{bottom:138.897900px;}
.y64{bottom:138.898050px;}
.y9c{bottom:138.898200px;}
.y1be{bottom:144.525450px;}
.y181{bottom:146.667300px;}
.y1c{bottom:146.863050px;}
.y135{bottom:153.587400px;}
.y19a{bottom:155.697000px;}
.y63{bottom:156.898050px;}
.y9b{bottom:156.898200px;}
.y159{bottom:157.820250px;}
.y1bd{bottom:162.081450px;}
.y180{bottom:164.217300px;}
.yf4{bottom:168.375900px;}
.y1b{bottom:168.378000px;}
.y87{bottom:174.898050px;}
.y9a{bottom:174.898200px;}
.y62{bottom:174.898500px;}
.y1bc{bottom:181.760700px;}
.y17f{bottom:181.767300px;}
.y45{bottom:189.890850px;}
.yf3{bottom:189.891900px;}
.y86{bottom:192.898050px;}
.y99{bottom:192.898200px;}
.y61{bottom:192.898500px;}
.y134{bottom:192.939300px;}
.y199{bottom:195.055500px;}
.y158{bottom:197.178750px;}
.y17e{bottom:201.430800px;}
.y85{bottom:210.898050px;}
.y98{bottom:210.898200px;}
.y60{bottom:210.898500px;}
.yed{bottom:211.395450px;}
.y44{bottom:211.406850px;}
.yf2{bottom:211.407900px;}
.y133{bottom:212.615250px;}
.y157{bottom:214.734750px;}
.y10f{bottom:218.409450px;}
.y1bb{bottom:221.119200px;}
.y83{bottom:228.898050px;}
.yad{bottom:228.898200px;}
.y5f{bottom:228.898500px;}
.y132{bottom:230.165250px;}
.yec{bottom:232.911450px;}
.yd9{bottom:232.921800px;}
.y43{bottom:232.922850px;}
.y84{bottom:233.893050px;}
.y156{bottom:234.414000px;}
.y10e{bottom:235.959450px;}
.y1ba{bottom:238.669350px;}
.y17d{bottom:240.789300px;}
.y82{bottom:246.898200px;}
.y5e{bottom:246.898500px;}
.y131{bottom:249.841350px;}
.y155{bottom:254.093250px;}
.yeb{bottom:254.427450px;}
.yf1{bottom:254.431650px;}
.yfc{bottom:254.434800px;}
.yd4{bottom:254.437800px;}
.y10d{bottom:255.603450px;}
.y1b9{bottom:258.322950px;}
.y17c{bottom:258.345300px;}
.y81{bottom:264.898200px;}
.yac{bottom:264.898500px;}
.y130{bottom:267.391350px;}
.y154{bottom:271.643250px;}
.y17b{bottom:275.895300px;}
.yea{bottom:275.943450px;}
.yf0{bottom:275.947650px;}
.y97{bottom:275.948700px;}
.yfb{bottom:275.950800px;}
.y42{bottom:275.952900px;}
.yd3{bottom:281.447400px;}
.y1a{bottom:282.200100px;}
.y80{bottom:282.898200px;}
.yab{bottom:282.898500px;}
.y12f{bottom:287.054250px;}
.y198{bottom:289.193250px;}
.y153{bottom:291.291000px;}
.y17a{bottom:293.445300px;}
.y10c{bottom:294.961950px;}
.ye9{bottom:297.459450px;}
.yd8{bottom:297.463650px;}
.y96{bottom:297.464700px;}
.yd2{bottom:297.466800px;}
.y5d{bottom:297.467850px;}
.y1b8{bottom:297.681450px;}
.yaa{bottom:300.898500px;}
.y19{bottom:305.901600px;}
.y197{bottom:306.743250px;}
.y179{bottom:313.108650px;}
.y10b{bottom:314.641200px;}
.y1b7{bottom:315.237450px;}
.yd1{bottom:318.973350px;}
.ye8{bottom:318.975450px;}
.yba{bottom:318.978600px;}
.yd7{bottom:318.979650px;}
.y7f{bottom:318.980700px;}
.y41{bottom:318.982800px;}
.ydd{bottom:324.477150px;}
.y12e{bottom:326.412750px;}
.y152{bottom:330.649500px;}
.y1b6{bottom:334.916700px;}
.y1d4{bottom:339.925350px;}
.yd0{bottom:340.489350px;}
.ye7{bottom:340.491450px;}
.yb9{bottom:340.494600px;}
.yd6{bottom:340.495650px;}
.y7e{bottom:340.496700px;}
.y40{bottom:340.497750px;}
.y12d{bottom:346.092000px;}
.y151{bottom:350.328750px;}
.y178{bottom:352.467150px;}
.y18{bottom:353.304600px;}
.y10a{bottom:353.999700px;}
.y1d3{bottom:357.923100px;}
.ycf{bottom:362.005350px;}
.ye6{bottom:362.007450px;}
.yb8{bottom:362.010600px;}
.y7d{bottom:362.011650px;}
.y3f{bottom:362.012700px;}
.y12c{bottom:365.771250px;}
.y177{bottom:370.023150px;}
.y109{bottom:371.555700px;}
.y1b5{bottom:374.275200px;}
.y17{bottom:377.006100px;}
.y12b{bottom:383.321250px;}
.yce{bottom:383.521350px;}
.ye5{bottom:383.523450px;}
.yfa{bottom:383.524500px;}
.ya9{bottom:383.525550px;}
.yb7{bottom:383.526600px;}
.y3e{bottom:383.527650px;}
.y150{bottom:389.687250px;}
.y176{bottom:389.699100px;}
.y108{bottom:391.234950px;}
.y1b4{bottom:391.825200px;}
.y16{bottom:400.707600px;}
.y196{bottom:402.965550px;}
.y12a{bottom:402.990600px;}
.y3d{bottom:405.024900px;}
.y95{bottom:405.037350px;}
.ye4{bottom:405.039450px;}
.yf9{bottom:405.040500px;}
.y5c{bottom:405.041550px;}
.y7c{bottom:405.042600px;}
.y14f{bottom:407.243250px;}
.y175{bottom:407.249250px;}
.yc6{bottom:410.537100px;}
.y1b3{bottom:411.478800px;}
.y1d2{bottom:414.053850px;}
.y195{bottom:420.521550px;}
.y15{bottom:424.409100px;}
.y14e{bottom:424.799250px;}
.y3c{bottom:426.540900px;}
.y94{bottom:426.553350px;}
.ye3{bottom:426.555450px;}
.yf8{bottom:426.556500px;}
.y5b{bottom:426.557550px;}
.y174{bottom:426.925200px;}
.y107{bottom:430.593450px;}
.y1d1{bottom:433.733100px;}
.y194{bottom:440.200800px;}
.y129{bottom:442.349100px;}
.y173{bottom:444.475200px;}
.y3b{bottom:448.056900px;}
.y7b{bottom:448.066200px;}
.y93{bottom:448.069350px;}
.ye2{bottom:448.071450px;}
.ya8{bottom:448.072500px;}
.y14{bottom:448.110600px;}
.y106{bottom:448.143300px;}
.y1b2{bottom:450.837300px;}
.y193{bottom:459.880050px;}
.y128{bottom:459.899250px;}
.y14d{bottom:461.993100px;}
.y172{bottom:464.126550px;}
.y105{bottom:467.784000px;}
.y1b1{bottom:468.393300px;}
.y3a{bottom:469.572900px;}
.y7a{bottom:469.582200px;}
.ye1{bottom:469.584300px;}
.y92{bottom:469.585350px;}
.ydc{bottom:469.586400px;}
.y5a{bottom:469.587450px;}
.y13{bottom:471.812100px;}
.y1d0{bottom:473.091600px;}
.y127{bottom:479.527200px;}
.y192{bottom:479.559300px;}
.y171{bottom:481.682550px;}
.y1b0{bottom:488.072550px;}
.y39{bottom:491.088900px;}
.y79{bottom:491.098200px;}
.ya7{bottom:491.100300px;}
.y91{bottom:491.101350px;}
.ydb{bottom:491.102400px;}
.y1cf{bottom:492.770850px;}
.y12{bottom:495.513600px;}
.y126{bottom:497.083200px;}
.y170{bottom:499.238550px;}
.y14c{bottom:501.351600px;}
.y104{bottom:507.142500px;}
.y38{bottom:512.604900px;}
.y59{bottom:512.608050px;}
.y78{bottom:512.614200px;}
.ya6{bottom:512.616300px;}
.y90{bottom:512.617350px;}
.y125{bottom:516.762450px;}
.y16f{bottom:518.917800px;}
.y11{bottom:519.215100px;}
.y14b{bottom:521.030850px;}
.y103{bottom:526.821750px;}
.y1af{bottom:527.431050px;}
.y1ce{bottom:532.129350px;}
.y37{bottom:534.120900px;}
.y58{bottom:534.124050px;}
.yda{bottom:534.129300px;}
.y77{bottom:534.130200px;}
.ya5{bottom:534.131250px;}
.y8f{bottom:534.132300px;}
.y16e{bottom:536.473800px;}
.yb6{bottom:539.626800px;}
.y1ae{bottom:544.981050px;}
.y1cd{bottom:549.685350px;}
.y36{bottom:555.636900px;}
.y57{bottom:555.640050px;}
.ycd{bottom:555.644250px;}
.y8e{bottom:555.645300px;}
.y76{bottom:555.646200px;}
.ya4{bottom:555.647250px;}
.y124{bottom:556.120950px;}
.y16d{bottom:556.153050px;}
.y14a{bottom:560.389350px;}
.y1ad{bottom:562.531050px;}
.y102{bottom:566.180250px;}
.y10{bottom:566.618100px;}
.y1cc{bottom:569.364600px;}
.y16c{bottom:573.703050px;}
.y123{bottom:575.800200px;}
.y35{bottom:577.152900px;}
.y56{bottom:577.156050px;}
.ye0{bottom:577.159200px;}
.ycc{bottom:577.160250px;}
.y8d{bottom:577.161300px;}
.y75{bottom:577.162200px;}
.y149{bottom:577.945350px;}
.y1ac{bottom:580.030950px;}
.y101{bottom:585.859500px;}
.yf{bottom:590.319600px;}
.y16b{bottom:593.379150px;}
.y191{bottom:595.505100px;}
.y148{bottom:597.624600px;}
.y34{bottom:598.668900px;}
.y55{bottom:598.672050px;}
.yd5{bottom:598.675200px;}
.ya3{bottom:598.676250px;}
.y74{bottom:598.677300px;}
.y1ab{bottom:599.710200px;}
.y1cb{bottom:608.723100px;}
.y190{bottom:613.055100px;}
.y122{bottom:615.158700px;}
.y33{bottom:620.184900px;}
.y54{bottom:620.188050px;}
.ya2{bottom:620.190150px;}
.yc5{bottom:620.191200px;}
.y73{bottom:620.192250px;}
.y100{bottom:625.218000px;}
.y1ca{bottom:628.402350px;}
.y18f{bottom:630.605100px;}
.y16a{bottom:632.731050px;}
.y121{bottom:634.837950px;}
.y147{bottom:636.983100px;}
.y1aa{bottom:639.068700px;}
.y32{bottom:641.700900px;}
.y53{bottom:641.704050px;}
.y8c{bottom:641.706150px;}
.y72{bottom:641.707200px;}
.yff{bottom:642.774000px;}
.y18e{bottom:650.281050px;}
.y169{bottom:652.368900px;}
.y146{bottom:654.532950px;}
.ye{bottom:656.539200px;}
.y1a9{bottom:656.624700px;}
.yfe{bottom:662.453250px;}
.y31{bottom:663.216900px;}
.y71{bottom:663.217950px;}
.y52{bottom:663.220050px;}
.y8b{bottom:663.222150px;}
.y1c9{bottom:667.760850px;}
.y18d{bottom:667.831050px;}
.y145{bottom:674.193300px;}
.y120{bottom:674.196450px;}
.yd{bottom:674.539200px;}
.y1a8{bottom:676.303950px;}
.yef{bottom:684.730800px;}
.y30{bottom:684.732900px;}
.y70{bottom:684.733950px;}
.yc4{bottom:684.735000px;}
.y51{bottom:684.736050px;}
.y8a{bottom:684.737100px;}
.y1c8{bottom:687.440100px;}
.y18c{bottom:687.490800px;}
.y168{bottom:691.727400px;}
.y144{bottom:691.749300px;}
.y1a7{bottom:693.859950px;}
.y11f{bottom:693.875700px;}
.yb5{bottom:706.246800px;}
.y2f{bottom:706.248900px;}
.y6f{bottom:706.249950px;}
.yc3{bottom:706.251000px;}
.y50{bottom:706.252050px;}
.y167{bottom:709.283400px;}
.yfd{bottom:709.767000px;}
.y143{bottom:711.428550px;}
.y11e{bottom:711.431700px;}
.y1a6{bottom:713.539200px;}
.y1c7{bottom:726.798600px;}
.y18b{bottom:726.849300px;}
.yb4{bottom:727.762800px;}
.y2e{bottom:727.764900px;}
.y6e{bottom:727.765950px;}
.y4f{bottom:727.767000px;}
.y166{bottom:728.962650px;}
.y11d{bottom:731.110950px;}
.yc{bottom:735.058950px;}
.y1c6{bottom:744.354600px;}
.y18a{bottom:746.528550px;}
.y11c{bottom:748.660950px;}
.ycb{bottom:749.275800px;}
.y4e{bottom:749.277750px;}
.yb3{bottom:749.278800px;}
.y2d{bottom:749.280900px;}
.y6d{bottom:749.281950px;}
.y142{bottom:750.787050px;}
.y1a5{bottom:752.897700px;}
.yb{bottom:753.058950px;}
.y1c5{bottom:764.033850px;}
.y165{bottom:768.321150px;}
.y11b{bottom:768.330450px;}
.y141{bottom:768.337050px;}
.y1a4{bottom:770.453700px;}
.yca{bottom:770.791800px;}
.y4d{bottom:770.793750px;}
.yb2{bottom:770.794800px;}
.yc2{bottom:770.795850px;}
.y2c{bottom:770.796900px;}
.ya{bottom:771.058950px;}
.y164{bottom:785.877150px;}
.y189{bottom:785.887050px;}
.y140{bottom:787.984650px;}
.y1a3{bottom:788.009700px;}
.y9{bottom:789.058950px;}
.yc9{bottom:792.307800px;}
.y4c{bottom:792.309750px;}
.yb1{bottom:792.310800px;}
.y2b{bottom:792.311850px;}
.y1c4{bottom:803.392350px;}
.y188{bottom:803.436900px;}
.y163{bottom:805.556400px;}
.y8{bottom:807.058950px;}
.y11a{bottom:807.688950px;}
.yf7{bottom:813.821700px;}
.yc8{bottom:813.823800px;}
.y4b{bottom:813.825750px;}
.y2a{bottom:813.826800px;}
.y1c3{bottom:823.071600px;}
.y187{bottom:823.106400px;}
.y7{bottom:825.058950px;}
.y119{bottom:825.238950px;}
.y13f{bottom:827.343150px;}
.yf6{bottom:835.337700px;}
.y6c{bottom:835.338600px;}
.y29{bottom:835.339800px;}
.y4a{bottom:835.341750px;}
.y6{bottom:843.061200px;}
.y1a2{bottom:844.874100px;}
.y118{bottom:844.892550px;}
.y13e{bottom:844.899150px;}
.y162{bottom:844.914900px;}
.yc1{bottom:856.850550px;}
.yf5{bottom:856.853700px;}
.y6b{bottom:856.854600px;}
.y28{bottom:856.855800px;}
.y49{bottom:856.856850px;}
.y5{bottom:861.058950px;}
.ydf{bottom:862.351350px;}
.y1c2{bottom:862.430100px;}
.y161{bottom:862.464900px;}
.y13d{bottom:864.578400px;}
.yc0{bottom:878.366550px;}
.ya1{bottom:878.367450px;}
.yee{bottom:878.369700px;}
.y6a{bottom:878.370600px;}
.y27{bottom:878.371800px;}
.y4{bottom:879.058950px;}
.y1c1{bottom:879.986100px;}
.y186{bottom:880.014900px;}
.y160{bottom:882.109350px;}
.y1a1{bottom:884.232600px;}
.y117{bottom:884.251050px;}
.y13c{bottom:884.257650px;}
.y185{bottom:899.665350px;}
.yb0{bottom:899.880450px;}
.ybf{bottom:899.882550px;}
.ya0{bottom:899.883450px;}
.y69{bottom:899.885700px;}
.y26{bottom:899.886600px;}
.y1a0{bottom:901.788600px;}
.y116{bottom:901.807050px;}
.y13b{bottom:901.813650px;}
.yc7{bottom:905.381250px;}
.y25{bottom:921.396450px;}
.ybe{bottom:921.398550px;}
.y9f{bottom:921.399450px;}
.y48{bottom:921.401700px;}
.y15f{bottom:921.467850px;}
.y115{bottom:921.486300px;}
.y13a{bottom:921.492900px;}
.y15e{bottom:939.023850px;}
.y139{bottom:939.042900px;}
.y24{bottom:942.912450px;}
.ybd{bottom:942.914550px;}
.y9e{bottom:942.915450px;}
.y68{bottom:942.916650px;}
.y3{bottom:948.082650px;}
.y184{bottom:956.579850px;}
.y15d{bottom:958.703100px;}
.y138{bottom:958.712400px;}
.y19f{bottom:960.826350px;}
.y114{bottom:960.844800px;}
.y23{bottom:964.428450px;}
.ybc{bottom:964.430550px;}
.y67{bottom:964.431450px;}
.y183{bottom:976.259100px;}
.y19e{bottom:978.382350px;}
.y113{bottom:978.394800px;}
.y22{bottom:985.944450px;}
.y9d{bottom:985.946550px;}
.y19d{bottom:995.938350px;}
.y2{bottom:997.585350px;}
.y15c{bottom:998.061600px;}
.y112{bottom:998.070900px;}
.y21{bottom:1007.460450px;}
.ybb{bottom:1007.461500px;}
.y15b{bottom:1015.617600px;}
.y111{bottom:1015.620900px;}
.y1{bottom:1026.094350px;}
.y20{bottom:1028.976450px;}
.y110{bottom:1035.296850px;}
.y1f{bottom:1082.225850px;}
.h10{height:31.482000px;}
.h15{height:34.630200px;}
.h4{height:44.100000px;}
.h9{height:50.868000px;}
.h5{height:51.300000px;}
.h1b{height:52.611000px;}
.hb{height:52.920000px;}
.hc{height:54.000000px;}
.h8{height:59.400000px;}
.he{height:59.403600px;}
.hd{height:59.404200px;}
.h11{height:59.407800px;}
.h13{height:59.408400px;}
.h1a{height:59.412000px;}
.h17{height:59.412600px;}
.h12{height:59.416800px;}
.ha{height:59.421000px;}
.h14{height:59.424600px;}
.hf{height:59.425200px;}
.h18{height:59.437800px;}
.h6{height:60.442383px;}
.h7{height:60.711914px;}
.h16{height:60.918000px;}
.h19{height:67.824000px;}
.h3{height:73.476000px;}
.h2{height:74.970000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xf{left:67.672050px;}
.xe{left:70.388100px;}
.xa{left:72.283500px;}
.x20{left:73.494900px;}
.x7{left:76.481250px;}
.x1{left:77.543850px;}
.x3{left:79.567050px;}
.x2{left:81.496350px;}
.x12{left:95.313150px;}
.x16{left:96.873750px;}
.xb{left:98.029350px;}
.xd{left:105.716400px;}
.x15{left:106.802100px;}
.x26{left:122.529450px;}
.x23{left:123.610350px;}
.x25{left:131.033400px;}
.x24{left:132.225000px;}
.x1e{left:221.691450px;}
.x1f{left:230.672850px;}
.x4{left:244.496250px;}
.x1c{left:283.926300px;}
.x1d{left:293.445150px;}
.x10{left:301.989450px;}
.x11{left:306.196050px;}
.x1a{left:326.022600px;}
.x1b{left:335.016450px;}
.x9{left:336.714750px;}
.x17{left:507.967050px;}
.x18{left:517.567950px;}
.x21{left:623.043300px;}
.x8{left:627.187500px;}
.x22{left:632.277300px;}
.x5{left:663.119250px;}
.x6{left:689.253000px;}
.x13{left:696.916050px;}
.x14{left:705.986100px;}
.xc{left:720.781200px;}
.x19{left:723.602850px;}
@media print{
.v6{vertical-align:-19.536000pt;}
.v1{vertical-align:-7.176000pt;}
.v3{vertical-align:-1.226667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.226667pt;}
.v2{vertical-align:7.176000pt;}
.v7{vertical-align:17.760000pt;}
.v5{vertical-align:19.554667pt;}
.lse{letter-spacing:-4.800000pt;}
.ls25{letter-spacing:-4.106667pt;}
.ls27{letter-spacing:-3.872000pt;}
.ls3b{letter-spacing:-3.226667pt;}
.ls24{letter-spacing:-3.120000pt;}
.lsa{letter-spacing:-2.933333pt;}
.ls70{letter-spacing:-1.680000pt;}
.lsf{letter-spacing:-1.466667pt;}
.lsb{letter-spacing:-1.440000pt;}
.ls6e{letter-spacing:-1.200000pt;}
.ls4b{letter-spacing:-0.906667pt;}
.ls45{letter-spacing:-0.746667pt;}
.ls31{letter-spacing:-0.720000pt;}
.ls4c{letter-spacing:-0.693333pt;}
.ls6f{letter-spacing:-0.506667pt;}
.ls57{letter-spacing:-0.480000pt;}
.ls59{letter-spacing:-0.469333pt;}
.ls2b{letter-spacing:-0.426667pt;}
.ls4a{letter-spacing:-0.410667pt;}
.ls68{letter-spacing:-0.354667pt;}
.ls32{letter-spacing:-0.352000pt;}
.ls43{letter-spacing:-0.307824pt;}
.ls66{letter-spacing:-0.304000pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls28{letter-spacing:-0.266667pt;}
.ls62{letter-spacing:-0.253333pt;}
.ls11{letter-spacing:-0.234667pt;}
.ls2e{letter-spacing:-0.213333pt;}
.ls3a{letter-spacing:-0.205216pt;}
.ls60{letter-spacing:-0.202667pt;}
.ls39{letter-spacing:-0.176000pt;}
.ls2d{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.152000pt;}
.ls58{letter-spacing:-0.136811pt;}
.ls17{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.106667pt;}
.ls44{letter-spacing:-0.102608pt;}
.ls7{letter-spacing:-0.101333pt;}
.ls52{letter-spacing:-0.068405pt;}
.ls10{letter-spacing:-0.058667pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls3f{letter-spacing:-0.034203pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.000213pt;}
.ls35{letter-spacing:0.005867pt;}
.ls2f{letter-spacing:0.031467pt;}
.ls0{letter-spacing:0.050667pt;}
.ls37{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.058667pt;}
.ls29{letter-spacing:0.064533pt;}
.ls5b{letter-spacing:0.101333pt;}
.ls2c{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.117333pt;}
.ls1e{letter-spacing:0.118150pt;}
.ls6d{letter-spacing:0.126667pt;}
.ls61{letter-spacing:0.152000pt;}
.ls30{letter-spacing:0.160000pt;}
.ls1d{letter-spacing:0.176000pt;}
.ls5e{letter-spacing:0.202667pt;}
.ls48{letter-spacing:0.213333pt;}
.ls5f{letter-spacing:0.228000pt;}
.ls26{letter-spacing:0.234667pt;}
.ls49{letter-spacing:0.239419pt;}
.ls42{letter-spacing:0.240000pt;}
.ls38{letter-spacing:0.266667pt;}
.ls5a{letter-spacing:0.278667pt;}
.lsc{letter-spacing:0.293333pt;}
.ls5c{letter-spacing:0.304000pt;}
.ls15{letter-spacing:0.320000pt;}
.ls53{letter-spacing:0.322667pt;}
.ls20{letter-spacing:0.328533pt;}
.ls1c{letter-spacing:0.352000pt;}
.ls5d{letter-spacing:0.354667pt;}
.ls16{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.381333pt;}
.ls1f{letter-spacing:0.387200pt;}
.ls69{letter-spacing:0.405333pt;}
.ls46{letter-spacing:0.410667pt;}
.ls21{letter-spacing:0.422400pt;}
.ls23{letter-spacing:0.426667pt;}
.ls65{letter-spacing:0.445867pt;}
.ls6a{letter-spacing:0.456000pt;}
.ls54{letter-spacing:0.469333pt;}
.ls36{letter-spacing:0.475200pt;}
.ls6c{letter-spacing:0.480000pt;}
.ls14{letter-spacing:0.528000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls47{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.633600pt;}
.lsd{letter-spacing:0.640000pt;}
.ls55{letter-spacing:0.645333pt;}
.ls50{letter-spacing:0.693333pt;}
.ls51{letter-spacing:0.810667pt;}
.ls1b{letter-spacing:0.821333pt;}
.ls56{letter-spacing:0.880000pt;}
.ls67{letter-spacing:0.912000pt;}
.ls3e{letter-spacing:0.960000pt;}
.ls33{letter-spacing:1.056000pt;}
.ls34{letter-spacing:1.120533pt;}
.ls4{letter-spacing:1.200000pt;}
.ls22{letter-spacing:1.297973pt;}
.ls13{letter-spacing:1.408000pt;}
.ls12{letter-spacing:1.642667pt;}
.ls2a{letter-spacing:1.760000pt;}
.ls3c{letter-spacing:3.027200pt;}
.ls64{letter-spacing:3.212267pt;}
.ls4e{letter-spacing:3.643200pt;}
.ls3d{letter-spacing:4.006933pt;}
.ls40{letter-spacing:4.341333pt;}
.ls6b{letter-spacing:4.382667pt;}
.ls41{letter-spacing:5.409067pt;}
.ls63{letter-spacing:64.361867pt;}
.ws30{word-spacing:-58.666667pt;}
.wsd3{word-spacing:-53.333333pt;}
.wsd4{word-spacing:-53.226667pt;}
.wsc7{word-spacing:-17.333333pt;}
.ws1{word-spacing:-15.333333pt;}
.wsda{word-spacing:-15.018667pt;}
.wsdb{word-spacing:-14.989333pt;}
.wsbe{word-spacing:-14.784000pt;}
.ws70{word-spacing:-14.666667pt;}
.wsa1{word-spacing:-14.490667pt;}
.ws2f{word-spacing:-14.373333pt;}
.wsad{word-spacing:-13.333333pt;}
.ws81{word-spacing:-13.120000pt;}
.wsc9{word-spacing:-13.066667pt;}
.wsc6{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws52{word-spacing:-11.968000pt;}
.wsaf{word-spacing:-11.616000pt;}
.ws4f{word-spacing:-11.440000pt;}
.ws83{word-spacing:-11.381333pt;}
.ws2d{word-spacing:-11.376000pt;}
.wsdc{word-spacing:-11.306667pt;}
.wsc8{word-spacing:-11.200000pt;}
.ws84{word-spacing:-11.093333pt;}
.ws95{word-spacing:-11.040000pt;}
.wsbf{word-spacing:-10.986667pt;}
.wse0{word-spacing:-10.896000pt;}
.wsf5{word-spacing:-10.640000pt;}
.wsfa{word-spacing:-10.589333pt;}
.wsb1{word-spacing:-10.453333pt;}
.ws31{word-spacing:-10.400000pt;}
.wsc0{word-spacing:-10.293333pt;}
.ws118{word-spacing:-10.176000pt;}
.wsf{word-spacing:-9.973333pt;}
.ws2{word-spacing:-9.936000pt;}
.wsfb{word-spacing:-9.880000pt;}
.ws6f{word-spacing:-9.386667pt;}
.ws51{word-spacing:-8.448000pt;}
.ws50{word-spacing:-8.213333pt;}
.wsbd{word-spacing:-7.421979pt;}
.ws2e{word-spacing:-7.182560pt;}
.wsb0{word-spacing:-7.079952pt;}
.wse1{word-spacing:-7.045749pt;}
.ws46{word-spacing:-2.992000pt;}
.ws5b{word-spacing:-2.933333pt;}
.wse2{word-spacing:-2.816000pt;}
.ws67{word-spacing:-2.757333pt;}
.wsca{word-spacing:-2.698667pt;}
.ws112{word-spacing:-2.685333pt;}
.wsd6{word-spacing:-2.666667pt;}
.ws5e{word-spacing:-2.640000pt;}
.ws44{word-spacing:-2.522667pt;}
.ws18{word-spacing:-2.464000pt;}
.ws107{word-spacing:-2.432000pt;}
.wsdd{word-spacing:-2.405333pt;}
.ws98{word-spacing:-2.346667pt;}
.ws113{word-spacing:-2.330667pt;}
.ws6b{word-spacing:-2.293333pt;}
.ws5a{word-spacing:-2.288000pt;}
.ws4b{word-spacing:-2.240000pt;}
.ws1f{word-spacing:-2.229333pt;}
.wsf7{word-spacing:-2.178667pt;}
.ws53{word-spacing:-2.170667pt;}
.ws6{word-spacing:-2.128000pt;}
.ws78{word-spacing:-2.112000pt;}
.ws4a{word-spacing:-2.080000pt;}
.wsa4{word-spacing:-2.053333pt;}
.wsfd{word-spacing:-2.026667pt;}
.ws79{word-spacing:-1.994667pt;}
.wsed{word-spacing:-1.976000pt;}
.wsd1{word-spacing:-1.973333pt;}
.ws15{word-spacing:-1.936000pt;}
.ws2c{word-spacing:-1.920000pt;}
.ws17{word-spacing:-1.877333pt;}
.ws6e{word-spacing:-1.866667pt;}
.ws1b{word-spacing:-1.818667pt;}
.ws73{word-spacing:-1.760000pt;}
.ws87{word-spacing:-1.701333pt;}
.wsb9{word-spacing:-1.653333pt;}
.wsb4{word-spacing:-1.642667pt;}
.ws77{word-spacing:-1.584000pt;}
.ws115{word-spacing:-1.570667pt;}
.ws6d{word-spacing:-1.546667pt;}
.ws19{word-spacing:-1.525333pt;}
.ws11a{word-spacing:-1.520000pt;}
.wsa3{word-spacing:-1.466667pt;}
.wsae{word-spacing:-1.440000pt;}
.ws5{word-spacing:-1.418667pt;}
.ws8c{word-spacing:-1.408000pt;}
.ws41{word-spacing:-1.349333pt;}
.wsff{word-spacing:-1.317333pt;}
.wsa5{word-spacing:-1.290667pt;}
.ws117{word-spacing:-1.266667pt;}
.ws24{word-spacing:-1.232000pt;}
.ws94{word-spacing:-1.226667pt;}
.ws116{word-spacing:-1.216000pt;}
.wsd{word-spacing:-1.200000pt;}
.ws6c{word-spacing:-1.173333pt;}
.ws103{word-spacing:-1.165333pt;}
.ws40{word-spacing:-1.114667pt;}
.ws102{word-spacing:-1.064000pt;}
.ws54{word-spacing:-1.056000pt;}
.ws93{word-spacing:-1.013333pt;}
.ws9c{word-spacing:-0.997333pt;}
.ws92{word-spacing:-0.960000pt;}
.wsa6{word-spacing:-0.938667pt;}
.ws11c{word-spacing:-0.912000pt;}
.ws56{word-spacing:-0.880000pt;}
.wseb{word-spacing:-0.861333pt;}
.ws38{word-spacing:-0.821333pt;}
.wsea{word-spacing:-0.810667pt;}
.ws4d{word-spacing:-0.800000pt;}
.ws1e{word-spacing:-0.762667pt;}
.wsb7{word-spacing:-0.746667pt;}
.ws106{word-spacing:-0.709333pt;}
.ws25{word-spacing:-0.704000pt;}
.wscb{word-spacing:-0.693333pt;}
.ws105{word-spacing:-0.658667pt;}
.wsdf{word-spacing:-0.645333pt;}
.ws28{word-spacing:-0.640000pt;}
.ws42{word-spacing:-0.586667pt;}
.ws4c{word-spacing:-0.533333pt;}
.wsb{word-spacing:-0.528000pt;}
.wsee{word-spacing:-0.506667pt;}
.ws1c{word-spacing:-0.469333pt;}
.wsc3{word-spacing:-0.426667pt;}
.ws9{word-spacing:-0.410667pt;}
.ws60{word-spacing:-0.352000pt;}
.wscd{word-spacing:-0.320000pt;}
.wse9{word-spacing:-0.304000pt;}
.ws10{word-spacing:-0.293333pt;}
.ws7f{word-spacing:-0.266667pt;}
.wsf1{word-spacing:-0.253333pt;}
.ws43{word-spacing:-0.234667pt;}
.ws7e{word-spacing:-0.213333pt;}
.wsf6{word-spacing:-0.202667pt;}
.wsb6{word-spacing:-0.176000pt;}
.wsc5{word-spacing:-0.160000pt;}
.wsf2{word-spacing:-0.152000pt;}
.ws3f{word-spacing:-0.117333pt;}
.ws80{word-spacing:-0.106667pt;}
.wsec{word-spacing:-0.101333pt;}
.wsa9{word-spacing:-0.058667pt;}
.ws108{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.wsa7{word-spacing:0.034203pt;}
.ws111{word-spacing:0.050667pt;}
.ws8e{word-spacing:0.053333pt;}
.ws1d{word-spacing:0.058667pt;}
.wsd8{word-spacing:0.068405pt;}
.wsf4{word-spacing:0.101333pt;}
.ws91{word-spacing:0.106667pt;}
.ws59{word-spacing:0.117333pt;}
.wse7{word-spacing:0.152000pt;}
.wsa2{word-spacing:0.176000pt;}
.wsef{word-spacing:0.202667pt;}
.ws9a{word-spacing:0.205216pt;}
.ws13{word-spacing:0.234667pt;}
.ws101{word-spacing:0.253333pt;}
.ws36{word-spacing:0.293333pt;}
.wsb2{word-spacing:0.307824pt;}
.ws8f{word-spacing:0.320000pt;}
.ws3c{word-spacing:0.352000pt;}
.ws2a{word-spacing:0.410667pt;}
.wsab{word-spacing:0.426667pt;}
.ws3e{word-spacing:0.469333pt;}
.wsac{word-spacing:0.480000pt;}
.ws114{word-spacing:0.506667pt;}
.ws9b{word-spacing:0.528000pt;}
.ws62{word-spacing:0.586667pt;}
.wsb3{word-spacing:0.645333pt;}
.ws61{word-spacing:0.704000pt;}
.ws5d{word-spacing:0.762667pt;}
.ws10b{word-spacing:0.810667pt;}
.ws5c{word-spacing:0.821333pt;}
.ws104{word-spacing:0.861333pt;}
.ws14{word-spacing:0.880000pt;}
.wscf{word-spacing:0.906667pt;}
.ws109{word-spacing:0.912000pt;}
.ws8d{word-spacing:0.938667pt;}
.ws10a{word-spacing:0.962667pt;}
.ws8a{word-spacing:0.997333pt;}
.ws10d{word-spacing:1.013333pt;}
.ws3a{word-spacing:1.056000pt;}
.ws9f{word-spacing:1.066667pt;}
.ws3b{word-spacing:1.114667pt;}
.wsb5{word-spacing:1.173333pt;}
.ws4{word-spacing:1.216000pt;}
.ws2b{word-spacing:1.232000pt;}
.ws58{word-spacing:1.290667pt;}
.ws11d{word-spacing:1.317333pt;}
.ws12{word-spacing:1.349333pt;}
.wsd7{word-spacing:1.386667pt;}
.ws11{word-spacing:1.408000pt;}
.ws6a{word-spacing:1.440000pt;}
.ws3d{word-spacing:1.466667pt;}
.ws120{word-spacing:1.469333pt;}
.wsfe{word-spacing:1.520000pt;}
.ws9e{word-spacing:1.525333pt;}
.wsce{word-spacing:1.546667pt;}
.ws10e{word-spacing:1.570667pt;}
.ws57{word-spacing:1.584000pt;}
.ws32{word-spacing:1.642667pt;}
.ws10c{word-spacing:1.672000pt;}
.ws37{word-spacing:1.701333pt;}
.ws69{word-spacing:1.706667pt;}
.ws10f{word-spacing:1.722667pt;}
.ws26{word-spacing:1.760000pt;}
.ws68{word-spacing:1.813333pt;}
.ws5f{word-spacing:1.818667pt;}
.ws11e{word-spacing:1.824000pt;}
.ws16{word-spacing:1.877333pt;}
.ws7d{word-spacing:1.920000pt;}
.ws86{word-spacing:1.936000pt;}
.wsbb{word-spacing:2.026667pt;}
.ws9d{word-spacing:2.053333pt;}
.wsf8{word-spacing:2.077333pt;}
.ws23{word-spacing:2.112000pt;}
.wsd5{word-spacing:2.133333pt;}
.ws71{word-spacing:2.170667pt;}
.ws119{word-spacing:2.178667pt;}
.ws66{word-spacing:2.229333pt;}
.wsba{word-spacing:2.240000pt;}
.wse5{word-spacing:2.280000pt;}
.wsde{word-spacing:2.288000pt;}
.ws7c{word-spacing:2.293333pt;}
.ws88{word-spacing:2.346667pt;}
.ws89{word-spacing:2.405333pt;}
.ws76{word-spacing:2.464000pt;}
.wse6{word-spacing:2.482667pt;}
.ws64{word-spacing:2.522667pt;}
.ws72{word-spacing:2.581333pt;}
.ws7a{word-spacing:2.613333pt;}
.ws96{word-spacing:2.640000pt;}
.ws33{word-spacing:2.698667pt;}
.ws8b{word-spacing:2.757333pt;}
.wsc1{word-spacing:2.816000pt;}
.ws90{word-spacing:2.826667pt;}
.wsaa{word-spacing:2.874667pt;}
.ws49{word-spacing:2.880000pt;}
.wsa{word-spacing:2.933333pt;}
.ws21{word-spacing:2.992000pt;}
.ws27{word-spacing:3.050667pt;}
.wsf3{word-spacing:3.090667pt;}
.ws7b{word-spacing:3.093333pt;}
.wse3{word-spacing:3.109333pt;}
.ws22{word-spacing:3.168000pt;}
.ws34{word-spacing:3.226667pt;}
.wse8{word-spacing:3.242667pt;}
.ws29{word-spacing:3.285333pt;}
.wsfc{word-spacing:3.293333pt;}
.ws74{word-spacing:3.344000pt;}
.wsd0{word-spacing:3.360000pt;}
.ws85{word-spacing:3.402667pt;}
.ws11b{word-spacing:3.445333pt;}
.ws47{word-spacing:3.461333pt;}
.ws7{word-spacing:3.496000pt;}
.ws39{word-spacing:3.520000pt;}
.ws97{word-spacing:3.578667pt;}
.ws48{word-spacing:3.680000pt;}
.ws35{word-spacing:3.696000pt;}
.wsa8{word-spacing:3.754667pt;}
.ws63{word-spacing:3.813333pt;}
.ws20{word-spacing:3.872000pt;}
.ws45{word-spacing:3.930667pt;}
.wsc{word-spacing:3.989333pt;}
.ws8{word-spacing:4.048000pt;}
.ws1a{word-spacing:4.106667pt;}
.ws99{word-spacing:4.165333pt;}
.wscc{word-spacing:4.282667pt;}
.ws75{word-spacing:4.810667pt;}
.ws65{word-spacing:4.869333pt;}
.ws55{word-spacing:5.456000pt;}
.wsc2{word-spacing:6.133333pt;}
.wsc4{word-spacing:6.346667pt;}
.wsb8{word-spacing:25.546667pt;}
.ws100{word-spacing:72.808000pt;}
.wsf0{word-spacing:80.560000pt;}
.wsf9{word-spacing:1200.344000pt;}
.wsa0{word-spacing:1200.536000pt;}
.wsd2{word-spacing:1203.080000pt;}
.wsd9{word-spacing:1204.136000pt;}
.wse4{word-spacing:1204.328000pt;}
.ws110{word-spacing:1207.064000pt;}
.wsbc{word-spacing:1208.696000pt;}
.ws82{word-spacing:1210.088000pt;}
.ws11f{word-spacing:1210.808000pt;}
.ws4e{word-spacing:1217.096000pt;}
.wse{word-spacing:1221.080000pt;}
._19{margin-left:-2329.392000pt;}
._f{margin-left:-2328.192000pt;}
._3f{margin-left:-2326.992000pt;}
._34{margin-left:-82.080000pt;}
._27{margin-left:-27.840000pt;}
._1b{margin-left:-17.903200pt;}
._b{margin-left:-16.205600pt;}
._d{margin-left:-14.479200pt;}
._24{margin-left:-13.217600pt;}
._11{margin-left:-12.198933pt;}
._1a{margin-left:-10.863200pt;}
._12{margin-left:-9.196267pt;}
._3{margin-left:-7.226133pt;}
._a{margin-left:-5.826667pt;}
._6{margin-left:-4.648533pt;}
._4{margin-left:-3.182400pt;}
._2{margin-left:-1.822400pt;}
._0{margin-left:-0.906667pt;}
._1{width:0.897600pt;}
._8{width:1.807200pt;}
._5{width:2.781600pt;}
._7{width:3.826933pt;}
._c{width:4.822400pt;}
._9{width:6.058667pt;}
._10{width:7.125333pt;}
._38{width:10.275733pt;}
._2b{width:11.850667pt;}
._26{width:14.908000pt;}
._29{width:20.106667pt;}
._22{width:21.600000pt;}
._28{width:23.360000pt;}
._25{width:25.120000pt;}
._2c{width:26.293333pt;}
._1c{width:27.573333pt;}
._20{width:28.640000pt;}
._23{width:29.600000pt;}
._1f{width:30.720000pt;}
._2a{width:31.946667pt;}
._21{width:33.866667pt;}
._1e{width:37.760000pt;}
._2d{width:40.693333pt;}
._1d{width:42.026667pt;}
._3c{width:45.650667pt;}
._18{width:47.360000pt;}
._13{width:48.320000pt;}
._3e{width:50.514667pt;}
._17{width:52.266667pt;}
._14{width:55.413333pt;}
._15{width:57.066667pt;}
._16{width:59.040000pt;}
._33{width:60.040000pt;}
._40{width:61.864000pt;}
._e{width:62.773333pt;}
._3a{width:63.789333pt;}
._3d{width:65.005333pt;}
._35{width:67.032000pt;}
._41{width:68.856000pt;}
._2f{width:70.376000pt;}
._3b{width:71.592000pt;}
._31{width:73.162667pt;}
._30{width:74.581333pt;}
._2e{width:76.456000pt;}
._37{width:78.482667pt;}
._32{width:79.445333pt;}
._36{width:81.168000pt;}
._39{width:91.098667pt;}
.fs9{font-size:31.093333pt;}
.fs7{font-size:34.202667pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:61.333333pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:91.464667pt;}
.y89{bottom:91.464800pt;}
.y66{bottom:91.464933pt;}
.yaf{bottom:91.465067pt;}
.y1e{bottom:92.296133pt;}
.y1c0{bottom:95.391333pt;}
.y137{bottom:103.424133pt;}
.y19c{bottom:105.299333pt;}
.y46{bottom:107.464667pt;}
.y88{bottom:107.464800pt;}
.y65{bottom:107.464933pt;}
.yae{bottom:107.465067pt;}
.y1bf{bottom:110.991333pt;}
.y1d{bottom:111.420533pt;}
.y182{bottom:114.765600pt;}
.y136{bottom:119.029467pt;}
.y19b{bottom:120.904667pt;}
.y15a{bottom:122.811867pt;}
.yde{bottom:123.464800pt;}
.y64{bottom:123.464933pt;}
.y9c{bottom:123.465067pt;}
.y1be{bottom:128.467067pt;}
.y181{bottom:130.370933pt;}
.y1c{bottom:130.544933pt;}
.y135{bottom:136.522133pt;}
.y19a{bottom:138.397333pt;}
.y63{bottom:139.464933pt;}
.y9b{bottom:139.465067pt;}
.y159{bottom:140.284667pt;}
.y1bd{bottom:144.072400pt;}
.y180{bottom:145.970933pt;}
.yf4{bottom:149.667467pt;}
.y1b{bottom:149.669333pt;}
.y87{bottom:155.464933pt;}
.y9a{bottom:155.465067pt;}
.y62{bottom:155.465333pt;}
.y1bc{bottom:161.565067pt;}
.y17f{bottom:161.570933pt;}
.y45{bottom:168.791867pt;}
.yf3{bottom:168.792800pt;}
.y86{bottom:171.464933pt;}
.y99{bottom:171.465067pt;}
.y61{bottom:171.465333pt;}
.y134{bottom:171.501600pt;}
.y199{bottom:173.382667pt;}
.y158{bottom:175.270000pt;}
.y17e{bottom:179.049600pt;}
.y85{bottom:187.464933pt;}
.y98{bottom:187.465067pt;}
.y60{bottom:187.465333pt;}
.yed{bottom:187.907067pt;}
.y44{bottom:187.917200pt;}
.yf2{bottom:187.918133pt;}
.y133{bottom:188.991333pt;}
.y157{bottom:190.875333pt;}
.y10f{bottom:194.141733pt;}
.y1bb{bottom:196.550400pt;}
.y83{bottom:203.464933pt;}
.yad{bottom:203.465067pt;}
.y5f{bottom:203.465333pt;}
.y132{bottom:204.591333pt;}
.yec{bottom:207.032400pt;}
.yd9{bottom:207.041600pt;}
.y43{bottom:207.042533pt;}
.y84{bottom:207.904933pt;}
.y156{bottom:208.368000pt;}
.y10e{bottom:209.741733pt;}
.y1ba{bottom:212.150533pt;}
.y17d{bottom:214.034933pt;}
.y82{bottom:219.465067pt;}
.y5e{bottom:219.465333pt;}
.y131{bottom:222.081200pt;}
.y155{bottom:225.860667pt;}
.yeb{bottom:226.157733pt;}
.yf1{bottom:226.161467pt;}
.yfc{bottom:226.164267pt;}
.yd4{bottom:226.166933pt;}
.y10d{bottom:227.203067pt;}
.y1b9{bottom:229.620400pt;}
.y17c{bottom:229.640267pt;}
.y81{bottom:235.465067pt;}
.yac{bottom:235.465333pt;}
.y130{bottom:237.681200pt;}
.y154{bottom:241.460667pt;}
.y17b{bottom:245.240267pt;}
.yea{bottom:245.283067pt;}
.yf0{bottom:245.286800pt;}
.y97{bottom:245.287733pt;}
.yfb{bottom:245.289600pt;}
.y42{bottom:245.291467pt;}
.yd3{bottom:250.175467pt;}
.y1a{bottom:250.844533pt;}
.y80{bottom:251.465067pt;}
.yab{bottom:251.465333pt;}
.y12f{bottom:255.159333pt;}
.y198{bottom:257.060667pt;}
.y153{bottom:258.925333pt;}
.y17a{bottom:260.840267pt;}
.y10c{bottom:262.188400pt;}
.ye9{bottom:264.408400pt;}
.yd8{bottom:264.412133pt;}
.y96{bottom:264.413067pt;}
.yd2{bottom:264.414933pt;}
.y5d{bottom:264.415867pt;}
.y1b8{bottom:264.605733pt;}
.yaa{bottom:267.465333pt;}
.y19{bottom:271.912533pt;}
.y197{bottom:272.660667pt;}
.y179{bottom:278.318800pt;}
.y10b{bottom:279.681067pt;}
.y1b7{bottom:280.211067pt;}
.yd1{bottom:283.531867pt;}
.ye8{bottom:283.533733pt;}
.yba{bottom:283.536533pt;}
.yd7{bottom:283.537467pt;}
.y7f{bottom:283.538400pt;}
.y41{bottom:283.540267pt;}
.ydd{bottom:288.424133pt;}
.y12e{bottom:290.144667pt;}
.y152{bottom:293.910667pt;}
.y1b6{bottom:297.703733pt;}
.y1d4{bottom:302.155867pt;}
.yd0{bottom:302.657200pt;}
.ye7{bottom:302.659067pt;}
.yb9{bottom:302.661867pt;}
.yd6{bottom:302.662800pt;}
.y7e{bottom:302.663733pt;}
.y40{bottom:302.664667pt;}
.y12d{bottom:307.637333pt;}
.y151{bottom:311.403333pt;}
.y178{bottom:313.304133pt;}
.y18{bottom:314.048533pt;}
.y10a{bottom:314.666400pt;}
.y1d3{bottom:318.153867pt;}
.ycf{bottom:321.782533pt;}
.ye6{bottom:321.784400pt;}
.yb8{bottom:321.787200pt;}
.y7d{bottom:321.788133pt;}
.y3f{bottom:321.789067pt;}
.y12c{bottom:325.130000pt;}
.y177{bottom:328.909467pt;}
.y109{bottom:330.271733pt;}
.y1b5{bottom:332.689067pt;}
.y17{bottom:335.116533pt;}
.y12b{bottom:340.730000pt;}
.yce{bottom:340.907867pt;}
.ye5{bottom:340.909733pt;}
.yfa{bottom:340.910667pt;}
.ya9{bottom:340.911600pt;}
.yb7{bottom:340.912533pt;}
.y3e{bottom:340.913467pt;}
.y150{bottom:346.388667pt;}
.y176{bottom:346.399200pt;}
.y108{bottom:347.764400pt;}
.y1b4{bottom:348.289067pt;}
.y16{bottom:356.184533pt;}
.y196{bottom:358.191600pt;}
.y12a{bottom:358.213867pt;}
.y3d{bottom:360.022133pt;}
.y95{bottom:360.033200pt;}
.ye4{bottom:360.035067pt;}
.yf9{bottom:360.036000pt;}
.y5c{bottom:360.036933pt;}
.y7c{bottom:360.037867pt;}
.y14f{bottom:361.994000pt;}
.y175{bottom:361.999333pt;}
.yc6{bottom:364.921867pt;}
.y1b3{bottom:365.758933pt;}
.y1d2{bottom:368.047867pt;}
.y195{bottom:373.796933pt;}
.y15{bottom:377.252533pt;}
.y14e{bottom:377.599333pt;}
.y3c{bottom:379.147467pt;}
.y94{bottom:379.158533pt;}
.ye3{bottom:379.160400pt;}
.yf8{bottom:379.161333pt;}
.y5b{bottom:379.162267pt;}
.y174{bottom:379.489067pt;}
.y107{bottom:382.749733pt;}
.y1d1{bottom:385.540533pt;}
.y194{bottom:391.289600pt;}
.y129{bottom:393.199200pt;}
.y173{bottom:395.089067pt;}
.y3b{bottom:398.272800pt;}
.y7b{bottom:398.281067pt;}
.y93{bottom:398.283867pt;}
.ye2{bottom:398.285733pt;}
.ya8{bottom:398.286667pt;}
.y14{bottom:398.320533pt;}
.y106{bottom:398.349600pt;}
.y1b2{bottom:400.744267pt;}
.y193{bottom:408.782267pt;}
.y128{bottom:408.799333pt;}
.y14d{bottom:410.660533pt;}
.y172{bottom:412.556933pt;}
.y105{bottom:415.808000pt;}
.y1b1{bottom:416.349600pt;}
.y3a{bottom:417.398133pt;}
.y7a{bottom:417.406400pt;}
.ye1{bottom:417.408267pt;}
.y92{bottom:417.409200pt;}
.ydc{bottom:417.410133pt;}
.y5a{bottom:417.411067pt;}
.y13{bottom:419.388533pt;}
.y1d0{bottom:420.525867pt;}
.y127{bottom:426.246400pt;}
.y192{bottom:426.274933pt;}
.y171{bottom:428.162267pt;}
.y1b0{bottom:433.842267pt;}
.y39{bottom:436.523467pt;}
.y79{bottom:436.531733pt;}
.ya7{bottom:436.533600pt;}
.y91{bottom:436.534533pt;}
.ydb{bottom:436.535467pt;}
.y1cf{bottom:438.018533pt;}
.y12{bottom:440.456533pt;}
.y126{bottom:441.851733pt;}
.y170{bottom:443.767600pt;}
.y14c{bottom:445.645867pt;}
.y104{bottom:450.793333pt;}
.y38{bottom:455.648800pt;}
.y59{bottom:455.651600pt;}
.y78{bottom:455.657067pt;}
.ya6{bottom:455.658933pt;}
.y90{bottom:455.659867pt;}
.y125{bottom:459.344400pt;}
.y16f{bottom:461.260267pt;}
.y11{bottom:461.524533pt;}
.y14b{bottom:463.138533pt;}
.y103{bottom:468.286000pt;}
.y1af{bottom:468.827600pt;}
.y1ce{bottom:473.003867pt;}
.y37{bottom:474.774133pt;}
.y58{bottom:474.776933pt;}
.yda{bottom:474.781600pt;}
.y77{bottom:474.782400pt;}
.ya5{bottom:474.783333pt;}
.y8f{bottom:474.784267pt;}
.y16e{bottom:476.865600pt;}
.yb6{bottom:479.668267pt;}
.y1ae{bottom:484.427600pt;}
.y1cd{bottom:488.609200pt;}
.y36{bottom:493.899467pt;}
.y57{bottom:493.902267pt;}
.ycd{bottom:493.906000pt;}
.y8e{bottom:493.906933pt;}
.y76{bottom:493.907733pt;}
.ya4{bottom:493.908667pt;}
.y124{bottom:494.329733pt;}
.y16d{bottom:494.358267pt;}
.y14a{bottom:498.123867pt;}
.y1ad{bottom:500.027600pt;}
.y102{bottom:503.271333pt;}
.y10{bottom:503.660533pt;}
.y1cc{bottom:506.101867pt;}
.y16c{bottom:509.958267pt;}
.y123{bottom:511.822400pt;}
.y35{bottom:513.024800pt;}
.y56{bottom:513.027600pt;}
.ye0{bottom:513.030400pt;}
.ycc{bottom:513.031333pt;}
.y8d{bottom:513.032267pt;}
.y75{bottom:513.033067pt;}
.y149{bottom:513.729200pt;}
.y1ac{bottom:515.583067pt;}
.y101{bottom:520.764000pt;}
.yf{bottom:524.728533pt;}
.y16b{bottom:527.448133pt;}
.y191{bottom:529.337867pt;}
.y148{bottom:531.221867pt;}
.y34{bottom:532.150133pt;}
.y55{bottom:532.152933pt;}
.yd5{bottom:532.155733pt;}
.ya3{bottom:532.156667pt;}
.y74{bottom:532.157600pt;}
.y1ab{bottom:533.075733pt;}
.y1cb{bottom:541.087200pt;}
.y190{bottom:544.937867pt;}
.y122{bottom:546.807733pt;}
.y33{bottom:551.275467pt;}
.y54{bottom:551.278267pt;}
.ya2{bottom:551.280133pt;}
.yc5{bottom:551.281067pt;}
.y73{bottom:551.282000pt;}
.y100{bottom:555.749333pt;}
.y1ca{bottom:558.579867pt;}
.y18f{bottom:560.537867pt;}
.y16a{bottom:562.427600pt;}
.y121{bottom:564.300400pt;}
.y147{bottom:566.207200pt;}
.y1aa{bottom:568.061067pt;}
.y32{bottom:570.400800pt;}
.y53{bottom:570.403600pt;}
.y8c{bottom:570.405467pt;}
.y72{bottom:570.406400pt;}
.yff{bottom:571.354667pt;}
.y18e{bottom:578.027600pt;}
.y169{bottom:579.883467pt;}
.y146{bottom:581.807067pt;}
.ye{bottom:583.590400pt;}
.y1a9{bottom:583.666400pt;}
.yfe{bottom:588.847333pt;}
.y31{bottom:589.526133pt;}
.y71{bottom:589.527067pt;}
.y52{bottom:589.528933pt;}
.y8b{bottom:589.530800pt;}
.y1c9{bottom:593.565200pt;}
.y18d{bottom:593.627600pt;}
.y145{bottom:599.282933pt;}
.y120{bottom:599.285733pt;}
.yd{bottom:599.590400pt;}
.y1a8{bottom:601.159067pt;}
.yef{bottom:608.649600pt;}
.y30{bottom:608.651467pt;}
.y70{bottom:608.652400pt;}
.yc4{bottom:608.653333pt;}
.y51{bottom:608.654267pt;}
.y8a{bottom:608.655200pt;}
.y1c8{bottom:611.057867pt;}
.y18c{bottom:611.102933pt;}
.y168{bottom:614.868800pt;}
.y144{bottom:614.888267pt;}
.y1a7{bottom:616.764400pt;}
.y11f{bottom:616.778400pt;}
.yb5{bottom:627.774933pt;}
.y2f{bottom:627.776800pt;}
.y6f{bottom:627.777733pt;}
.yc3{bottom:627.778667pt;}
.y50{bottom:627.779600pt;}
.y167{bottom:630.474133pt;}
.yfd{bottom:630.904000pt;}
.y143{bottom:632.380933pt;}
.y11e{bottom:632.383733pt;}
.y1a6{bottom:634.257067pt;}
.y1c7{bottom:646.043200pt;}
.y18b{bottom:646.088267pt;}
.yb4{bottom:646.900267pt;}
.y2e{bottom:646.902133pt;}
.y6e{bottom:646.903067pt;}
.y4f{bottom:646.904000pt;}
.y166{bottom:647.966800pt;}
.y11d{bottom:649.876400pt;}
.yc{bottom:653.385733pt;}
.y1c6{bottom:661.648533pt;}
.y18a{bottom:663.580933pt;}
.y11c{bottom:665.476400pt;}
.ycb{bottom:666.022933pt;}
.y4e{bottom:666.024667pt;}
.yb3{bottom:666.025600pt;}
.y2d{bottom:666.027467pt;}
.y6d{bottom:666.028400pt;}
.y142{bottom:667.366267pt;}
.y1a5{bottom:669.242400pt;}
.yb{bottom:669.385733pt;}
.y1c5{bottom:679.141200pt;}
.y165{bottom:682.952133pt;}
.y11b{bottom:682.960400pt;}
.y141{bottom:682.966267pt;}
.y1a4{bottom:684.847733pt;}
.yca{bottom:685.148267pt;}
.y4d{bottom:685.150000pt;}
.yb2{bottom:685.150933pt;}
.yc2{bottom:685.151867pt;}
.y2c{bottom:685.152800pt;}
.ya{bottom:685.385733pt;}
.y164{bottom:698.557467pt;}
.y189{bottom:698.566267pt;}
.y140{bottom:700.430800pt;}
.y1a3{bottom:700.453067pt;}
.y9{bottom:701.385733pt;}
.yc9{bottom:704.273600pt;}
.y4c{bottom:704.275333pt;}
.yb1{bottom:704.276267pt;}
.y2b{bottom:704.277200pt;}
.y1c4{bottom:714.126533pt;}
.y188{bottom:714.166133pt;}
.y163{bottom:716.050133pt;}
.y8{bottom:717.385733pt;}
.y11a{bottom:717.945733pt;}
.yf7{bottom:723.397067pt;}
.yc8{bottom:723.398933pt;}
.y4b{bottom:723.400667pt;}
.y2a{bottom:723.401600pt;}
.y1c3{bottom:731.619200pt;}
.y187{bottom:731.650133pt;}
.y7{bottom:733.385733pt;}
.y119{bottom:733.545733pt;}
.y13f{bottom:735.416133pt;}
.yf6{bottom:742.522400pt;}
.y6c{bottom:742.523200pt;}
.y29{bottom:742.524267pt;}
.y4a{bottom:742.526000pt;}
.y6{bottom:749.387733pt;}
.y1a2{bottom:750.999200pt;}
.y118{bottom:751.015600pt;}
.y13e{bottom:751.021467pt;}
.y162{bottom:751.035467pt;}
.yc1{bottom:761.644933pt;}
.yf5{bottom:761.647733pt;}
.y6b{bottom:761.648533pt;}
.y28{bottom:761.649600pt;}
.y49{bottom:761.650533pt;}
.y5{bottom:765.385733pt;}
.ydf{bottom:766.534533pt;}
.y1c2{bottom:766.604533pt;}
.y161{bottom:766.635467pt;}
.y13d{bottom:768.514133pt;}
.yc0{bottom:780.770267pt;}
.ya1{bottom:780.771067pt;}
.yee{bottom:780.773067pt;}
.y6a{bottom:780.773867pt;}
.y27{bottom:780.774933pt;}
.y4{bottom:781.385733pt;}
.y1c1{bottom:782.209867pt;}
.y186{bottom:782.235467pt;}
.y160{bottom:784.097200pt;}
.y1a1{bottom:785.984533pt;}
.y117{bottom:786.000933pt;}
.y13c{bottom:786.006800pt;}
.y185{bottom:799.702533pt;}
.yb0{bottom:799.893733pt;}
.ybf{bottom:799.895600pt;}
.ya0{bottom:799.896400pt;}
.y69{bottom:799.898400pt;}
.y26{bottom:799.899200pt;}
.y1a0{bottom:801.589867pt;}
.y116{bottom:801.606267pt;}
.y13b{bottom:801.612133pt;}
.yc7{bottom:804.783333pt;}
.y25{bottom:819.019067pt;}
.ybe{bottom:819.020933pt;}
.y9f{bottom:819.021733pt;}
.y48{bottom:819.023733pt;}
.y15f{bottom:819.082533pt;}
.y115{bottom:819.098933pt;}
.y13a{bottom:819.104800pt;}
.y15e{bottom:834.687867pt;}
.y139{bottom:834.704800pt;}
.y24{bottom:838.144400pt;}
.ybd{bottom:838.146267pt;}
.y9e{bottom:838.147067pt;}
.y68{bottom:838.148133pt;}
.y3{bottom:842.740133pt;}
.y184{bottom:850.293200pt;}
.y15d{bottom:852.180533pt;}
.y138{bottom:852.188800pt;}
.y19f{bottom:854.067867pt;}
.y114{bottom:854.084267pt;}
.y23{bottom:857.269733pt;}
.ybc{bottom:857.271600pt;}
.y67{bottom:857.272400pt;}
.y183{bottom:867.785867pt;}
.y19e{bottom:869.673200pt;}
.y113{bottom:869.684267pt;}
.y22{bottom:876.395067pt;}
.y9d{bottom:876.396933pt;}
.y19d{bottom:885.278533pt;}
.y2{bottom:886.742533pt;}
.y15c{bottom:887.165867pt;}
.y112{bottom:887.174133pt;}
.y21{bottom:895.520400pt;}
.ybb{bottom:895.521333pt;}
.y15b{bottom:902.771200pt;}
.y111{bottom:902.774133pt;}
.y1{bottom:912.083867pt;}
.y20{bottom:914.645733pt;}
.y110{bottom:920.263867pt;}
.y1f{bottom:961.978533pt;}
.h10{height:27.984000pt;}
.h15{height:30.782400pt;}
.h4{height:39.200000pt;}
.h9{height:45.216000pt;}
.h5{height:45.600000pt;}
.h1b{height:46.765333pt;}
.hb{height:47.040000pt;}
.hc{height:48.000000pt;}
.h8{height:52.800000pt;}
.he{height:52.803200pt;}
.hd{height:52.803733pt;}
.h11{height:52.806933pt;}
.h13{height:52.807467pt;}
.h1a{height:52.810667pt;}
.h17{height:52.811200pt;}
.h12{height:52.814933pt;}
.ha{height:52.818667pt;}
.h14{height:52.821867pt;}
.hf{height:52.822400pt;}
.h18{height:52.833600pt;}
.h6{height:53.726562pt;}
.h7{height:53.966146pt;}
.h16{height:54.149333pt;}
.h19{height:60.288000pt;}
.h3{height:65.312000pt;}
.h2{height:66.640000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xf{left:60.152933pt;}
.xe{left:62.567200pt;}
.xa{left:64.252000pt;}
.x20{left:65.328800pt;}
.x7{left:67.983333pt;}
.x1{left:68.927867pt;}
.x3{left:70.726267pt;}
.x2{left:72.441200pt;}
.x12{left:84.722800pt;}
.x16{left:86.110000pt;}
.xb{left:87.137200pt;}
.xd{left:93.970133pt;}
.x15{left:94.935200pt;}
.x26{left:108.915067pt;}
.x23{left:109.875867pt;}
.x25{left:116.474133pt;}
.x24{left:117.533333pt;}
.x1e{left:197.059067pt;}
.x1f{left:205.042533pt;}
.x4{left:217.330000pt;}
.x1c{left:252.378933pt;}
.x1d{left:260.840133pt;}
.x10{left:268.435067pt;}
.x11{left:272.174267pt;}
.x1a{left:289.797867pt;}
.x1b{left:297.792400pt;}
.x9{left:299.302000pt;}
.x17{left:451.526267pt;}
.x18{left:460.060400pt;}
.x21{left:553.816267pt;}
.x8{left:557.500000pt;}
.x22{left:562.024267pt;}
.x5{left:589.439333pt;}
.x6{left:612.669333pt;}
.x13{left:619.480933pt;}
.x14{left:627.543200pt;}
.xc{left:640.694400pt;}
.x19{left:643.202533pt;}
}




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