
    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_c642e23477bd58c7e17126c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.148000;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_5491326740d37472d7f35cc4.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_90decfdca9f399cdab190298.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_23620bcc6ed3fadf49751079.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.200900;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_d16708f666e4c05d38ef9894.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_940c20d8c694e363b0e73631.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.184000;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_1cad7117242157236171636b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5da3d5664fa0f682ade083c8.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b55bf450099e5bee52e0f757.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.184000;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_d16708f666e4c05d38ef9894.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m5a{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m20{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);}
.m34{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247716,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247761,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247811,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247827,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247877,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247916,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248378,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248445,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248486,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248545,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248764,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248809,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248861,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248934,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m38{transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249089,0.000000,0.000000,0.250000,0,0);}
.m51{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);}
.m8{transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249175,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249348,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.m40{transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249368,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m21{transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249400,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249432,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249459,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);}
.m53{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);}
.m41{transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249636,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249722,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m9{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.m4d{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);}
.m29{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m47{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);}
.m1e{transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249886,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249959,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m4{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249984,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);}
.m4a{transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250145,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250273,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250491,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250516,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250530,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250636,0.000000,0.000000,0.250000,0,0);}
.m5b{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);}
.m58{transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250802,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250809,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250867,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m28{transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251057,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251095,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251259,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.m14{transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251655,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m5c{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);}
.v2{vertical-align:-21.978000px;}
.v4{vertical-align:-18.981000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.981000px;}
.v1{vertical-align:21.978000px;}
.v5{vertical-align:30.000000px;}
.v6{vertical-align:60.000000px;}
.ls12{letter-spacing:-6.336000px;}
.ls1b{letter-spacing:-5.760000px;}
.ls1d{letter-spacing:-3.300000px;}
.ls23{letter-spacing:-3.240000px;}
.ls29{letter-spacing:-2.280000px;}
.ls3b{letter-spacing:-2.256000px;}
.ls3c{letter-spacing:-1.248000px;}
.ls14{letter-spacing:-1.200000px;}
.ls3a{letter-spacing:-0.960000px;}
.ls9{letter-spacing:-0.858000px;}
.ls25{letter-spacing:-0.840000px;}
.ls48{letter-spacing:-0.570000px;}
.ls1e{letter-spacing:-0.528000px;}
.ls3d{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.462000px;}
.ls45{letter-spacing:-0.399000px;}
.ls19{letter-spacing:-0.396000px;}
.ls47{letter-spacing:-0.342000px;}
.ls18{letter-spacing:-0.330000px;}
.ls44{letter-spacing:-0.285000px;}
.ls39{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.264000px;}
.ls1a{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.230868px;}
.ls7{letter-spacing:-0.198000px;}
.ls5{letter-spacing:-0.132000px;}
.ls26{letter-spacing:-0.120000px;}
.ls8{letter-spacing:-0.115434px;}
.ls46{letter-spacing:-0.114000px;}
.ls6{letter-spacing:-0.066000px;}
.ls13{letter-spacing:-0.060000px;}
.ls43{letter-spacing:-0.057000px;}
.ls1f{letter-spacing:-0.038478px;}
.ls3{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.000162px;}
.ls2f{letter-spacing:0.002400px;}
.ls1{letter-spacing:0.066000px;}
.ls28{letter-spacing:0.076956px;}
.ls22{letter-spacing:0.099000px;}
.ls2c{letter-spacing:0.115434px;}
.ls11{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.132000px;}
.ls3e{letter-spacing:0.171000px;}
.lsf{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.264000px;}
.ls2a{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.330000px;}
.ls27{letter-spacing:0.396000px;}
.ls10{letter-spacing:0.462000px;}
.ls4{letter-spacing:0.600000px;}
.ls16{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.726000px;}
.lse{letter-spacing:0.792000px;}
.ls15{letter-spacing:0.810000px;}
.ls3f{letter-spacing:0.912000px;}
.ls2d{letter-spacing:0.990000px;}
.lsb{letter-spacing:1.080000px;}
.ls42{letter-spacing:1.214100px;}
.ls40{letter-spacing:1.259700px;}
.ls2{letter-spacing:1.350000px;}
.ls41{letter-spacing:1.396500px;}
.ls2e{letter-spacing:4.620000px;}
.ls38{letter-spacing:126.816000px;}
.ls33{letter-spacing:163.152000px;}
.ls30{letter-spacing:184.416000px;}
.ls35{letter-spacing:249.264000px;}
.ls36{letter-spacing:250.320000px;}
.ls37{letter-spacing:250.368000px;}
.ls34{letter-spacing:258.432000px;}
.ls32{letter-spacing:302.784000px;}
.ls31{letter-spacing:634.416000px;}
.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;}
}
.ws2{word-spacing:-16.632000px;}
.ws5a{word-spacing:-16.302000px;}
.ws119{word-spacing:-14.148000px;}
.wsa7{word-spacing:-14.058000px;}
.ws93{word-spacing:-13.992000px;}
.wsb5{word-spacing:-13.926000px;}
.ws52{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws61{word-spacing:-13.794000px;}
.ws3{word-spacing:-13.728000px;}
.ws4{word-spacing:-13.662000px;}
.ws37{word-spacing:-13.608000px;}
.ws20{word-spacing:-13.530000px;}
.ws6e{word-spacing:-13.464000px;}
.wsa4{word-spacing:-13.068000px;}
.ws92{word-spacing:-13.002000px;}
.ws5d{word-spacing:-12.936000px;}
.ws3a{word-spacing:-12.870000px;}
.ws3d{word-spacing:-12.840000px;}
.ws72{word-spacing:-12.804000px;}
.ws91{word-spacing:-12.798000px;}
.ws71{word-spacing:-12.672000px;}
.ws21{word-spacing:-12.600000px;}
.wsb9{word-spacing:-12.528000px;}
.ws3b{word-spacing:-12.474000px;}
.ws1{word-spacing:-11.970000px;}
.ws3c{word-spacing:-11.700000px;}
.wsa2{word-spacing:-11.685000px;}
.ws88{word-spacing:-11.580000px;}
.ws36{word-spacing:-11.400000px;}
.ws107{word-spacing:-11.115000px;}
.ws5b{word-spacing:-10.560000px;}
.ws7d{word-spacing:-10.098000px;}
.wsc2{word-spacing:-9.120000px;}
.wsa6{word-spacing:-8.195814px;}
.ws1f{word-spacing:-8.080380px;}
.ws5c{word-spacing:-8.041902px;}
.ws5{word-spacing:-7.964946px;}
.ws73{word-spacing:-7.849512px;}
.ws1e{word-spacing:-7.524000px;}
.ws74{word-spacing:-7.345800px;}
.ws108{word-spacing:-6.978510px;}
.ws3e{word-spacing:-6.840000px;}
.ws69{word-spacing:-6.812355px;}
.ws60{word-spacing:-3.630000px;}
.ws12{word-spacing:-3.432000px;}
.wsa8{word-spacing:-3.300000px;}
.ws80{word-spacing:-2.904000px;}
.ws24{word-spacing:-2.838000px;}
.wsf{word-spacing:-2.772000px;}
.wsaa{word-spacing:-2.706000px;}
.ws112{word-spacing:-2.679000px;}
.ws4a{word-spacing:-2.640000px;}
.ws6a{word-spacing:-2.574000px;}
.ws118{word-spacing:-2.565000px;}
.ws4f{word-spacing:-2.520000px;}
.ws99{word-spacing:-2.508000px;}
.ws51{word-spacing:-2.460000px;}
.ws114{word-spacing:-2.451000px;}
.ws1b{word-spacing:-2.442000px;}
.ws10c{word-spacing:-2.394000px;}
.ws9a{word-spacing:-2.376000px;}
.wsb3{word-spacing:-2.310000px;}
.ws77{word-spacing:-2.244000px;}
.ws17{word-spacing:-2.178000px;}
.ws13{word-spacing:-2.112000px;}
.ws55{word-spacing:-2.046000px;}
.ws2f{word-spacing:-1.980000px;}
.ws4e{word-spacing:-1.848000px;}
.ws46{word-spacing:-1.782000px;}
.wsb1{word-spacing:-1.716000px;}
.ws7{word-spacing:-1.653000px;}
.wsb2{word-spacing:-1.650000px;}
.ws45{word-spacing:-1.584000px;}
.ws68{word-spacing:-1.560000px;}
.ws30{word-spacing:-1.518000px;}
.ws2b{word-spacing:-1.452000px;}
.ws29{word-spacing:-1.386000px;}
.ws1c{word-spacing:-1.350000px;}
.ws57{word-spacing:-1.320000px;}
.wsc{word-spacing:-1.311000px;}
.ws56{word-spacing:-1.254000px;}
.wsb8{word-spacing:-1.188000px;}
.wsa0{word-spacing:-1.140000px;}
.ws4b{word-spacing:-1.122000px;}
.ws8{word-spacing:-1.083000px;}
.ws16{word-spacing:-1.056000px;}
.ws41{word-spacing:-0.990000px;}
.ws79{word-spacing:-0.924000px;}
.ws3f{word-spacing:-0.858000px;}
.ws83{word-spacing:-0.840000px;}
.ws6f{word-spacing:-0.792000px;}
.ws82{word-spacing:-0.780000px;}
.ws2d{word-spacing:-0.726000px;}
.ws26{word-spacing:-0.720000px;}
.ws10e{word-spacing:-0.684000px;}
.ws23{word-spacing:-0.660000px;}
.wsd{word-spacing:-0.627000px;}
.ws8a{word-spacing:-0.594000px;}
.ws38{word-spacing:-0.570000px;}
.ws8b{word-spacing:-0.528000px;}
.ws34{word-spacing:-0.420000px;}
.ws7c{word-spacing:-0.396000px;}
.ws44{word-spacing:-0.330000px;}
.ws62{word-spacing:-0.264000px;}
.ws98{word-spacing:-0.198000px;}
.wsb6{word-spacing:-0.132000px;}
.ws96{word-spacing:-0.076956px;}
.ws65{word-spacing:-0.066000px;}
.ws6c{word-spacing:-0.060000px;}
.ws106{word-spacing:-0.057000px;}
.ws6{word-spacing:0.000000px;}
.ws10d{word-spacing:0.057000px;}
.ws32{word-spacing:0.060000px;}
.ws10{word-spacing:0.066000px;}
.ws90{word-spacing:0.120000px;}
.ws22{word-spacing:0.132000px;}
.ws11{word-spacing:0.198000px;}
.ws95{word-spacing:0.264000px;}
.ws15{word-spacing:0.330000px;}
.ws43{word-spacing:0.396000px;}
.ws113{word-spacing:0.399000px;}
.ws50{word-spacing:0.420000px;}
.ws8d{word-spacing:0.462000px;}
.ws9d{word-spacing:0.594000px;}
.ws8e{word-spacing:0.660000px;}
.ws2a{word-spacing:0.726000px;}
.wse{word-spacing:0.792000px;}
.ws84{word-spacing:0.840000px;}
.ws9{word-spacing:0.912000px;}
.ws7b{word-spacing:0.924000px;}
.ws9f{word-spacing:0.960000px;}
.ws5e{word-spacing:0.990000px;}
.ws86{word-spacing:1.020000px;}
.ws25{word-spacing:1.056000px;}
.ws18{word-spacing:1.188000px;}
.ws8f{word-spacing:1.254000px;}
.ws54{word-spacing:1.320000px;}
.ws81{word-spacing:1.386000px;}
.ws76{word-spacing:1.452000px;}
.ws115{word-spacing:1.482000px;}
.ws97{word-spacing:1.518000px;}
.ws4c{word-spacing:1.584000px;}
.ws7f{word-spacing:1.650000px;}
.ws67{word-spacing:1.782000px;}
.ws10a{word-spacing:1.824000px;}
.wsab{word-spacing:1.848000px;}
.ws14{word-spacing:1.914000px;}
.wsb7{word-spacing:1.980000px;}
.wsa{word-spacing:1.995000px;}
.wsb0{word-spacing:2.046000px;}
.ws78{word-spacing:2.112000px;}
.ws10b{word-spacing:2.166000px;}
.ws53{word-spacing:2.178000px;}
.ws64{word-spacing:2.244000px;}
.wsa3{word-spacing:2.280000px;}
.ws27{word-spacing:2.310000px;}
.ws49{word-spacing:2.376000px;}
.ws109{word-spacing:2.394000px;}
.ws110{word-spacing:2.451000px;}
.ws19{word-spacing:2.574000px;}
.ws75{word-spacing:2.640000px;}
.wsb{word-spacing:2.679000px;}
.ws89{word-spacing:2.706000px;}
.ws7e{word-spacing:2.772000px;}
.ws70{word-spacing:2.838000px;}
.ws85{word-spacing:2.880000px;}
.ws5f{word-spacing:2.904000px;}
.ws117{word-spacing:2.907000px;}
.ws9c{word-spacing:2.970000px;}
.ws116{word-spacing:3.078000px;}
.ws31{word-spacing:3.168000px;}
.ws35{word-spacing:3.180000px;}
.ws2e{word-spacing:3.234000px;}
.ws8c{word-spacing:3.300000px;}
.ws9e{word-spacing:3.366000px;}
.wsa9{word-spacing:3.432000px;}
.ws7a{word-spacing:3.498000px;}
.ws6b{word-spacing:3.564000px;}
.ws40{word-spacing:3.630000px;}
.ws58{word-spacing:3.696000px;}
.wsac{word-spacing:3.762000px;}
.wsad{word-spacing:3.828000px;}
.ws10f{word-spacing:3.933000px;}
.ws42{word-spacing:3.960000px;}
.ws63{word-spacing:4.026000px;}
.ws4d{word-spacing:4.092000px;}
.ws33{word-spacing:4.140000px;}
.ws66{word-spacing:4.158000px;}
.ws48{word-spacing:4.224000px;}
.ws47{word-spacing:4.290000px;}
.ws28{word-spacing:4.422000px;}
.ws94{word-spacing:4.488000px;}
.ws1a{word-spacing:4.554000px;}
.ws2c{word-spacing:4.620000px;}
.ws9b{word-spacing:4.818000px;}
.ws111{word-spacing:6.156000px;}
.wsae{word-spacing:6.402000px;}
.wsbb{word-spacing:19.632000px;}
.wse4{word-spacing:29.520000px;}
.wsd1{word-spacing:30.672000px;}
.wsca{word-spacing:31.632000px;}
.wse6{word-spacing:32.064000px;}
.wse7{word-spacing:36.672000px;}
.wsbd{word-spacing:52.992000px;}
.wsed{word-spacing:54.624000px;}
.wsf1{word-spacing:54.768000px;}
.wsf0{word-spacing:55.056000px;}
.wseb{word-spacing:55.632000px;}
.wse1{word-spacing:55.776000px;}
.wsea{word-spacing:56.544000px;}
.wsec{word-spacing:57.264000px;}
.wsee{word-spacing:57.552000px;}
.wsf2{word-spacing:58.272000px;}
.wsd4{word-spacing:60.144000px;}
.wsf3{word-spacing:60.528000px;}
.wsd9{word-spacing:70.848000px;}
.wscc{word-spacing:74.976000px;}
.wsdc{word-spacing:76.560000px;}
.wsc5{word-spacing:83.904000px;}
.wsdb{word-spacing:88.320000px;}
.wsc1{word-spacing:93.792000px;}
.wse2{word-spacing:98.400000px;}
.wsba{word-spacing:99.504000px;}
.wsfa{word-spacing:104.016000px;}
.wsfd{word-spacing:104.208000px;}
.wsfc{word-spacing:104.496000px;}
.wsf6{word-spacing:104.832000px;}
.wsf8{word-spacing:105.072000px;}
.wsf7{word-spacing:105.936000px;}
.wsfb{word-spacing:106.032000px;}
.wsf9{word-spacing:106.656000px;}
.wsfe{word-spacing:107.472000px;}
.wsf5{word-spacing:108.048000px;}
.ws104{word-spacing:108.912000px;}
.wsf4{word-spacing:109.200000px;}
.ws100{word-spacing:109.728000px;}
.ws102{word-spacing:109.920000px;}
.ws105{word-spacing:110.640000px;}
.ws101{word-spacing:110.832000px;}
.wse3{word-spacing:111.072000px;}
.ws103{word-spacing:111.552000px;}
.wsff{word-spacing:112.896000px;}
.wsc4{word-spacing:113.424000px;}
.wsc6{word-spacing:114.144000px;}
.wsce{word-spacing:114.240000px;}
.wsc8{word-spacing:114.816000px;}
.wsd2{word-spacing:114.864000px;}
.wsde{word-spacing:118.176000px;}
.wse5{word-spacing:118.992000px;}
.wsda{word-spacing:119.328000px;}
.wsd5{word-spacing:120.384000px;}
.wse8{word-spacing:121.152000px;}
.wsd7{word-spacing:121.488000px;}
.wsbe{word-spacing:122.352000px;}
.wsdf{word-spacing:124.080000px;}
.wsbf{word-spacing:147.120000px;}
.wsd3{word-spacing:155.184000px;}
.wsdd{word-spacing:160.800000px;}
.wsd8{word-spacing:161.088000px;}
.wscd{word-spacing:161.664000px;}
.wsd6{word-spacing:162.384000px;}
.wsc7{word-spacing:163.296000px;}
.wscb{word-spacing:164.160000px;}
.wsc9{word-spacing:164.400000px;}
.wse0{word-spacing:165.120000px;}
.wsef{word-spacing:181.440000px;}
.wsc3{word-spacing:187.392000px;}
.wscf{word-spacing:214.464000px;}
.wsbc{word-spacing:386.064000px;}
.wsc0{word-spacing:540.480000px;}
.wsd0{word-spacing:601.296000px;}
.ws11b{word-spacing:1876.501800px;}
.ws1d{word-spacing:1891.189800px;}
.wsa1{word-spacing:1893.187800px;}
.ws59{word-spacing:1894.051800px;}
.ws6d{word-spacing:1895.239800px;}
.ws87{word-spacing:1895.455800px;}
.wsaf{word-spacing:1896.049800px;}
.wse9{word-spacing:1897.453800px;}
.wsb4{word-spacing:1897.507800px;}
.ws39{word-spacing:1897.939800px;}
.ws11a{word-spacing:1899.883800px;}
.wsa5{word-spacing:1900.207800px;}
._11{margin-left:-2619.756000px;}
._1f{margin-left:-2618.676000px;}
._20{margin-left:-21.702000px;}
._17{margin-left:-19.272000px;}
._b{margin-left:-17.923200px;}
._1a{margin-left:-16.912200px;}
._9{margin-left:-15.598800px;}
._c{margin-left:-13.992000px;}
._12{margin-left:-12.803400px;}
._19{margin-left:-10.571400px;}
._3{margin-left:-9.360000px;}
._8{margin-left:-7.330800px;}
._7{margin-left:-6.234600px;}
._4{margin-left:-4.500000px;}
._1{margin-left:-3.090600px;}
._0{margin-left:-1.530000px;}
._2{width:1.030200px;}
._e{width:2.151600px;}
._5{width:3.718800px;}
._6{width:4.845000px;}
._a{width:5.926800px;}
._15{width:7.195200px;}
._d{width:9.203400px;}
._16{width:10.530000px;}
._1b{width:16.980000px;}
._1d{width:21.540000px;}
._1e{width:25.560000px;}
._1c{width:30.300000px;}
._24{width:33.865200px;}
._14{width:35.940000px;}
._18{width:39.300000px;}
._10{width:43.020000px;}
._13{width:45.360000px;}
._f{width:51.360000px;}
._64{width:55.578000px;}
._61{width:56.874000px;}
._23{width:59.336400px;}
._30{width:60.720000px;}
._67{width:64.938000px;}
._73{width:73.674000px;}
._33{width:75.210000px;}
._4e{width:76.314000px;}
._38{width:78.564000px;}
._4b{width:88.266000px;}
._58{width:101.502600px;}
._5a{width:102.547200px;}
._5e{width:104.688000px;}
._7a{width:116.976000px;}
._7e{width:118.080000px;}
._76{width:120.192000px;}
._3d{width:125.388600px;}
._34{width:126.588600px;}
._22{width:131.712000px;}
._2f{width:133.254600px;}
._37{width:140.143200px;}
._4f{width:142.338600px;}
._4d{width:145.279200px;}
._26{width:150.030000px;}
._50{width:153.120000px;}
._21{width:155.328000px;}
._41{width:156.948000px;}
._2a{width:158.544600px;}
._88{width:160.752000px;}
._55{width:162.828000px;}
._2c{width:164.304000px;}
._29{width:166.260000px;}
._32{width:167.472600px;}
._42{width:169.236000px;}
._35{width:171.108000px;}
._27{width:172.842000px;}
._5d{width:174.852000px;}
._51{width:176.010600px;}
._48{width:177.859200px;}
._5c{width:179.148600px;}
._3b{width:180.714600px;}
._28{width:182.064600px;}
._3e{width:183.792600px;}
._65{width:185.802000px;}
._71{width:186.810000px;}
._7d{width:188.364600px;}
._6c{width:189.444000px;}
._6f{width:191.850000px;}
._84{width:193.932600px;}
._8a{width:197.196600px;}
._79{width:198.870600px;}
._4c{width:200.880600px;}
._31{width:213.786000px;}
._47{width:214.842000px;}
._2e{width:215.904000px;}
._2d{width:217.302600px;}
._54{width:219.210000px;}
._52{width:221.471400px;}
._2b{width:228.576000px;}
._57{width:237.066000px;}
._39{width:239.568600px;}
._36{width:241.536000px;}
._45{width:243.528000px;}
._49{width:266.880000px;}
._3a{width:267.954600px;}
._43{width:269.887200px;}
._46{width:306.709800px;}
._56{width:356.316600px;}
._4a{width:357.810600px;}
._44{width:360.300600px;}
._3f{width:372.720000px;}
._25{width:429.120000px;}
._40{width:462.234000px;}
._68{width:479.754000px;}
._69{width:536.880000px;}
._62{width:549.930000px;}
._5f{width:559.584000px;}
._74{width:563.418000px;}
._77{width:569.760000px;}
._85{width:574.080000px;}
._81{width:579.408000px;}
._78{width:585.216000px;}
._86{width:587.808000px;}
._82{width:592.080000px;}
._66{width:602.112000px;}
._63{width:604.656000px;}
._7b{width:609.984000px;}
._7f{width:611.040000px;}
._87{width:614.064000px;}
._75{width:617.760000px;}
._80{width:619.776000px;}
._7c{width:628.512000px;}
._3c{width:634.368000px;}
._59{width:638.208000px;}
._53{width:640.272000px;}
._6a{width:666.270000px;}
._83{width:711.024000px;}
._5b{width:713.424000px;}
._72{width:721.104000px;}
._6b{width:722.544000px;}
._70{width:723.984000px;}
._6e{width:726.000000px;}
._8b{width:727.872000px;}
._6d{width:729.360000px;}
._8c{width:731.376000px;}
._89{width:732.384000px;}
._60{width:806.928000px;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:33.231000px;}
.fs9{font-size:34.980000px;}
.fs6{font-size:38.478000px;}
.fsa{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y172{bottom:81.865950px;}
.y170{bottom:88.669050px;}
.y15e{bottom:89.413650px;}
.yc7{bottom:89.716500px;}
.y48{bottom:89.716650px;}
.y26{bottom:89.719350px;}
.y17d{bottom:94.163400px;}
.y130{bottom:95.037450px;}
.yfd{bottom:95.416050px;}
.yfc{bottom:95.428050px;}
.y100{bottom:95.500050px;}
.yfa{bottom:95.572050px;}
.y101{bottom:95.680050px;}
.yf8{bottom:95.692050px;}
.y106{bottom:95.812050px;}
.y107{bottom:95.872050px;}
.ye1{bottom:95.884050px;}
.yfb{bottom:95.932050px;}
.y104{bottom:95.956050px;}
.ye3{bottom:96.052050px;}
.yf9{bottom:96.076050px;}
.y105{bottom:96.256050px;}
.yef{bottom:96.316050px;}
.yf6{bottom:96.328050px;}
.y102{bottom:96.460050px;}
.yf4{bottom:96.496050px;}
.ye9{bottom:97.084050px;}
.y177{bottom:97.885200px;}
.y4c{bottom:98.156550px;}
.y171{bottom:99.863700px;}
.y16f{bottom:106.666800px;}
.yde{bottom:106.912050px;}
.y15d{bottom:107.411400px;}
.y16d{bottom:107.454150px;}
.y47{bottom:107.716650px;}
.yb2{bottom:108.621750px;}
.y25{bottom:109.700850px;}
.y17c{bottom:112.161150px;}
.y176{bottom:115.882950px;}
.y4b{bottom:116.154300px;}
.y15c{bottom:125.409150px;}
.y16c{bottom:125.451900px;}
.y46{bottom:125.716650px;}
.yb1{bottom:126.621750px;}
.y24{bottom:129.685050px;}
.ydd{bottom:129.687750px;}
.y17b{bottom:130.158900px;}
.y12f{bottom:131.145450px;}
.y175{bottom:133.880700px;}
.yaf{bottom:135.073200px;}
.y15b{bottom:143.406900px;}
.y16b{bottom:143.449650px;}
.y45{bottom:143.716650px;}
.yb0{bottom:144.619500px;}
.ydc{bottom:149.669250px;}
.y23{bottom:149.672100px;}
.yc6{bottom:149.674800px;}
.y6c{bottom:149.696850px;}
.yae{bottom:153.073200px;}
.y12e{bottom:153.897450px;}
.y15a{bottom:161.404650px;}
.y16a{bottom:161.447400px;}
.y44{bottom:161.716650px;}
.y22{bottom:169.653600px;}
.yc2{bottom:169.656300px;}
.y6b{bottom:169.678350px;}
.yad{bottom:171.073200px;}
.ye4{bottom:171.232050px;}
.y12d{bottom:176.649450px;}
.y159{bottom:179.402400px;}
.y169{bottom:179.445150px;}
.y62{bottom:179.716650px;}
.yac{bottom:189.070950px;}
.y21{bottom:189.637800px;}
.y83{bottom:189.640500px;}
.y7e{bottom:189.643350px;}
.y6a{bottom:189.659850px;}
.y61{bottom:197.716650px;}
.y12c{bottom:199.401450px;}
.y82{bottom:209.622000px;}
.y7d{bottom:209.624850px;}
.yab{bottom:209.627550px;}
.y20{bottom:209.630400px;}
.y69{bottom:209.641350px;}
.y158{bottom:215.397900px;}
.y168{bottom:215.440650px;}
.y60{bottom:215.716650px;}
.y12b{bottom:222.153450px;}
.y7c{bottom:229.606350px;}
.yaa{bottom:229.609050px;}
.y1f{bottom:229.611900px;}
.y68{bottom:229.622850px;}
.y157{bottom:233.395650px;}
.y167{bottom:233.438400px;}
.y5f{bottom:233.716650px;}
.y85{bottom:235.195950px;}
.y12a{bottom:244.905450px;}
.y7b{bottom:249.590550px;}
.y1e{bottom:249.593400px;}
.y43{bottom:249.598800px;}
.yd5{bottom:249.601650px;}
.y67{bottom:249.604350px;}
.ybe{bottom:249.607050px;}
.y156{bottom:251.393400px;}
.y166{bottom:251.436150px;}
.y5e{bottom:251.716650px;}
.y84{bottom:253.193700px;}
.y9d{bottom:259.228350px;}
.yc5{bottom:265.496550px;}
.y129{bottom:267.657450px;}
.y155{bottom:269.391150px;}
.y165{bottom:269.433900px;}
.y1d{bottom:269.574900px;}
.ya9{bottom:269.577600px;}
.y42{bottom:269.580300px;}
.yd4{bottom:269.583150px;}
.y66{bottom:269.585850px;}
.ybd{bottom:269.588550px;}
.yc4{bottom:283.494300px;}
.y154{bottom:287.388900px;}
.y164{bottom:287.431650px;}
.y1c{bottom:289.559100px;}
.y41{bottom:289.561800px;}
.yd3{bottom:289.564650px;}
.y65{bottom:289.567350px;}
.ybc{bottom:289.570050px;}
.y128{bottom:290.409450px;}
.yc3{bottom:301.492050px;}
.y40{bottom:309.543300px;}
.yd2{bottom:309.546150px;}
.y1b{bottom:309.548850px;}
.ybb{bottom:309.551550px;}
.y127{bottom:313.161450px;}
.ya8{bottom:315.037800px;}
.y153{bottom:323.384400px;}
.y163{bottom:323.427150px;}
.y3f{bottom:329.527650px;}
.y1a{bottom:329.530350px;}
.y7a{bottom:329.533050px;}
.y126{bottom:335.913450px;}
.y152{bottom:341.382150px;}
.y162{bottom:341.424900px;}
.yc1{bottom:348.747900px;}
.y19{bottom:349.511850px;}
.y79{bottom:349.514550px;}
.y125{bottom:358.665450px;}
.y151{bottom:359.379900px;}
.y161{bottom:359.422650px;}
.yc0{bottom:366.747900px;}
.y18{bottom:369.496050px;}
.yba{bottom:369.501600px;}
.y90{bottom:374.990550px;}
.y150{bottom:377.377650px;}
.y160{bottom:377.420400px;}
.y124{bottom:381.417450px;}
.ybf{bottom:384.745650px;}
.y81{bottom:385.954800px;}
.y17{bottom:389.480400px;}
.yb9{bottom:389.483100px;}
.ydb{bottom:389.485950px;}
.y14f{bottom:395.375400px;}
.y15f{bottom:395.418150px;}
.y80{bottom:403.952550px;}
.y123{bottom:404.169450px;}
.y16{bottom:409.464600px;}
.yda{bottom:409.467450px;}
.ya7{bottom:409.472850px;}
.y5d{bottom:409.475700px;}
.y7f{bottom:421.950300px;}
.y122{bottom:426.921450px;}
.y15{bottom:429.448950px;}
.yd9{bottom:429.451650px;}
.ya6{bottom:429.454350px;}
.y5c{bottom:429.457200px;}
.y8f{bottom:429.465450px;}
.y14e{bottom:445.790700px;}
.y14{bottom:449.433150px;}
.y3e{bottom:449.435850px;}
.y5b{bottom:449.438700px;}
.y8e{bottom:449.446950px;}
.y121{bottom:449.673450px;}
.yb8{bottom:463.183350px;}
.y14d{bottom:464.690700px;}
.y13{bottom:469.417350px;}
.y5a{bottom:469.420200px;}
.y8d{bottom:469.428450px;}
.y120{bottom:472.425450px;}
.yb7{bottom:481.181100px;}
.ydf{bottom:481.864050px;}
.y14c{bottom:485.721150px;}
.y12{bottom:489.401700px;}
.y78{bottom:489.404400px;}
.y64{bottom:489.407100px;}
.y8c{bottom:489.409950px;}
.y17a{bottom:494.379900px;}
.y11f{bottom:495.177450px;}
.y14b{bottom:504.616650px;}
.y3d{bottom:509.385900px;}
.y59{bottom:509.391450px;}
.y179{bottom:512.377650px;}
.y11e{bottom:517.929450px;}
.y14a{bottom:523.516650px;}
.y11{bottom:529.370100px;}
.y58{bottom:529.372950px;}
.y178{bottom:530.375400px;}
.y11d{bottom:540.681450px;}
.y149{bottom:544.542600px;}
.y3c{bottom:549.354450px;}
.yd8{bottom:549.357150px;}
.y57{bottom:549.362700px;}
.yfe{bottom:551.308050px;}
.y11c{bottom:563.433450px;}
.y148{bottom:563.442600px;}
.ye2{bottom:565.264050px;}
.y77{bottom:569.338650px;}
.y3b{bottom:569.341350px;}
.y56{bottom:569.344200px;}
.y147{bottom:582.335550px;}
.y11b{bottom:586.185450px;}
.ya5{bottom:589.322850px;}
.y3a{bottom:589.325700px;}
.yd1{bottom:589.333950px;}
.y63{bottom:589.991400px;}
.y16e{bottom:600.240150px;}
.y4a{bottom:602.150550px;}
.y146{bottom:603.368550px;}
.y10{bottom:607.041450px;}
.y11a{bottom:608.937450px;}
.y39{bottom:609.307200px;}
.y76{bottom:609.309900px;}
.y8b{bottom:609.312600px;}
.yd0{bottom:609.315450px;}
.y174{bottom:615.487950px;}
.y49{bottom:620.148300px;}
.y145{bottom:622.268550px;}
.yf{bottom:625.039200px;}
.y38{bottom:629.291400px;}
.y8a{bottom:629.294100px;}
.ycf{bottom:629.296950px;}
.y119{bottom:631.689450px;}
.y173{bottom:633.485700px;}
.ye0{bottom:635.596050px;}
.ye{bottom:643.039200px;}
.y144{bottom:643.294500px;}
.y75{bottom:649.275600px;}
.yce{bottom:649.278450px;}
.y55{bottom:649.281150px;}
.y37{bottom:649.286700px;}
.y118{bottom:654.441450px;}
.y143{bottom:662.194500px;}
.y74{bottom:669.259950px;}
.y54{bottom:669.262650px;}
.y36{bottom:669.268200px;}
.y117{bottom:677.193450px;}
.yf0{bottom:678.232050px;}
.yff{bottom:681.700050px;}
.ye6{bottom:681.796050px;}
.yeb{bottom:682.300050px;}
.y142{bottom:683.225250px;}
.ye5{bottom:683.440050px;}
.yea{bottom:687.844050px;}
.y53{bottom:689.244150px;}
.y35{bottom:689.249700px;}
.y116{bottom:699.945450px;}
.yf1{bottom:700.276050px;}
.y141{bottom:702.120750px;}
.yd{bottom:703.572450px;}
.yf5{bottom:704.104050px;}
.yd7{bottom:704.584650px;}
.y52{bottom:709.228350px;}
.y34{bottom:709.231200px;}
.yc{bottom:721.570200px;}
.yd6{bottom:722.582400px;}
.y115{bottom:722.697450px;}
.y140{bottom:723.139500px;}
.y73{bottom:729.073200px;}
.y33{bottom:729.212700px;}
.y9c{bottom:729.215400px;}
.ya4{bottom:729.226500px;}
.y103{bottom:734.332050px;}
.yf7{bottom:736.528050px;}
.yb{bottom:739.567950px;}
.y13f{bottom:744.172500px;}
.y114{bottom:745.449450px;}
.y72{bottom:747.070950px;}
.y89{bottom:749.199750px;}
.y51{bottom:749.202450px;}
.ya3{bottom:749.208000px;}
.y9b{bottom:749.213400px;}
.ya{bottom:757.565700px;}
.yf2{bottom:757.876050px;}
.y13e{bottom:763.072500px;}
.y113{bottom:768.201450px;}
.y32{bottom:769.181250px;}
.y9a{bottom:769.194900px;}
.ye7{bottom:769.720050px;}
.y9{bottom:775.563450px;}
.y13d{bottom:784.114650px;}
.y50{bottom:789.165450px;}
.ya2{bottom:789.171000px;}
.y99{bottom:789.176400px;}
.ycd{bottom:789.190200px;}
.y112{bottom:790.953450px;}
.y8{bottom:793.561200px;}
.yec{bottom:797.512050px;}
.y13c{bottom:803.010150px;}
.y4f{bottom:809.149650px;}
.ya1{bottom:809.152500px;}
.y98{bottom:809.157900px;}
.ycc{bottom:809.171700px;}
.y7{bottom:811.558950px;}
.y111{bottom:813.705450px;}
.y13b{bottom:821.905650px;}
.ya0{bottom:829.134000px;}
.y97{bottom:829.139400px;}
.y31{bottom:829.142100px;}
.ycb{bottom:829.153200px;}
.y6{bottom:829.558950px;}
.y110{bottom:836.457450px;}
.y13a{bottom:842.931000px;}
.y88{bottom:849.118200px;}
.y96{bottom:849.120900px;}
.y30{bottom:849.123600px;}
.yca{bottom:849.134700px;}
.y10f{bottom:859.209450px;}
.y139{bottom:861.826500px;}
.y95{bottom:869.102400px;}
.y2f{bottom:869.105100px;}
.y9f{bottom:869.107950px;}
.yc9{bottom:869.116200px;}
.y138{bottom:880.722000px;}
.y10e{bottom:881.961450px;}
.y2e{bottom:889.086600px;}
.y9e{bottom:889.089450px;}
.yc8{bottom:889.097700px;}
.y5{bottom:898.579650px;}
.y137{bottom:899.617500px;}
.y10d{bottom:904.713450px;}
.y2d{bottom:909.070950px;}
.y87{bottom:909.073650px;}
.y94{bottom:909.079200px;}
.y71{bottom:909.087450px;}
.y136{bottom:920.650500px;}
.y4{bottom:921.082650px;}
.y10c{bottom:927.465450px;}
.y2c{bottom:929.055150px;}
.y93{bottom:929.060700px;}
.y4e{bottom:929.063400px;}
.y70{bottom:929.068950px;}
.y135{bottom:939.550500px;}
.y2b{bottom:949.039350px;}
.y92{bottom:949.042200px;}
.y4d{bottom:949.044900px;}
.yb6{bottom:949.047600px;}
.y6f{bottom:949.050450px;}
.y10b{bottom:950.217450px;}
.y134{bottom:958.447950px;}
.yed{bottom:962.380050px;}
.ye8{bottom:962.560050px;}
.y91{bottom:969.023700px;}
.y2a{bottom:969.026400px;}
.yb5{bottom:969.029100px;}
.y6e{bottom:969.031950px;}
.y3{bottom:969.076350px;}
.yee{bottom:972.064050px;}
.yf3{bottom:972.220050px;}
.y10a{bottom:972.969450px;}
.y133{bottom:979.480950px;}
.y29{bottom:989.007900px;}
.yb4{bottom:989.010600px;}
.y86{bottom:989.013450px;}
.y109{bottom:995.721450px;}
.y2{bottom:997.585350px;}
.y132{bottom:998.376450px;}
.yb3{bottom:1008.992100px;}
.y6d{bottom:1008.994950px;}
.y108{bottom:1024.101450px;}
.y1{bottom:1026.094350px;}
.y28{bottom:1028.976450px;}
.y131{bottom:1034.284350px;}
.y27{bottom:1082.225850px;}
.hf{height:34.630200px;}
.h13{height:43.200000px;}
.h15{height:43.872000px;}
.h8{height:50.868000px;}
.h5{height:51.300000px;}
.hc{height:52.098000px;}
.hb{height:54.000000px;}
.h4{height:55.560000px;}
.h7{height:59.400000px;}
.ha{height:60.312600px;}
.he{height:60.313200px;}
.h9{height:60.324000px;}
.hd{height:62.172000px;}
.h6{height:66.672000px;}
.h12{height:73.200000px;}
.h3{height:73.476000px;}
.h10{height:73.872000px;}
.h2{height:94.452000px;}
.h14{height:103.200000px;}
.h11{height:103.872000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x7{left:69.601500px;}
.xa{left:71.234100px;}
.x5{left:72.283500px;}
.x3{left:78.104550px;}
.x1{left:79.660950px;}
.x2{left:81.343950px;}
.x36{left:82.783050px;}
.x35{left:89.119050px;}
.x6{left:93.073500px;}
.xb{left:94.130100px;}
.x4{left:101.445300px;}
.x9{left:102.937950px;}
.x13{left:109.414200px;}
.x14{left:134.422200px;}
.x15{left:141.922200px;}
.x18{left:159.430200px;}
.x16{left:174.430200px;}
.x17{left:181.930200px;}
.x19{left:189.430200px;}
.x1b{left:206.938200px;}
.x1d{left:214.438200px;}
.x1a{left:221.938200px;}
.x1e{left:229.438200px;}
.x1c{left:236.938200px;}
.x20{left:254.446200px;}
.x1f{left:269.446200px;}
.x21{left:284.446200px;}
.x22{left:309.454200px;}
.x23{left:316.954200px;}
.x24{left:341.962200px;}
.x25{left:349.462200px;}
.x26{left:368.842200px;}
.x27{left:390.106200px;}
.x28{left:411.370200px;}
.x29{left:432.634200px;}
.xf{left:444.917250px;}
.x10{left:453.859650px;}
.x11{left:468.917850px;}
.x12{left:477.860400px;}
.x37{left:479.616450px;}
.x2a{left:480.778200px;}
.x2b{left:488.278200px;}
.x2c{left:507.658200px;}
.x2d{left:528.922200px;}
.x2e{left:555.802200px;}
.x2f{left:563.302200px;}
.x30{left:582.682200px;}
.x31{left:603.946200px;}
.x32{left:625.210200px;}
.x33{left:646.474200px;}
.xc{left:715.300500px;}
.x8{left:718.540350px;}
.xd{left:726.394800px;}
.x34{left:732.459150px;}
.xe{left:734.222100px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v4{vertical-align:-16.872000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.872000pt;}
.v1{vertical-align:19.536000pt;}
.v5{vertical-align:26.666667pt;}
.v6{vertical-align:53.333333pt;}
.ls12{letter-spacing:-5.632000pt;}
.ls1b{letter-spacing:-5.120000pt;}
.ls1d{letter-spacing:-2.933333pt;}
.ls23{letter-spacing:-2.880000pt;}
.ls29{letter-spacing:-2.026667pt;}
.ls3b{letter-spacing:-2.005333pt;}
.ls3c{letter-spacing:-1.109333pt;}
.ls14{letter-spacing:-1.066667pt;}
.ls3a{letter-spacing:-0.853333pt;}
.ls9{letter-spacing:-0.762667pt;}
.ls25{letter-spacing:-0.746667pt;}
.ls48{letter-spacing:-0.506667pt;}
.ls1e{letter-spacing:-0.469333pt;}
.ls3d{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.410667pt;}
.ls45{letter-spacing:-0.354667pt;}
.ls19{letter-spacing:-0.352000pt;}
.ls47{letter-spacing:-0.304000pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls44{letter-spacing:-0.253333pt;}
.ls39{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.234667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.205216pt;}
.ls7{letter-spacing:-0.176000pt;}
.ls5{letter-spacing:-0.117333pt;}
.ls26{letter-spacing:-0.106667pt;}
.ls8{letter-spacing:-0.102608pt;}
.ls46{letter-spacing:-0.101333pt;}
.ls6{letter-spacing:-0.058667pt;}
.ls13{letter-spacing:-0.053333pt;}
.ls43{letter-spacing:-0.050667pt;}
.ls1f{letter-spacing:-0.034203pt;}
.ls3{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.000144pt;}
.ls2f{letter-spacing:0.002133pt;}
.ls1{letter-spacing:0.058667pt;}
.ls28{letter-spacing:0.068405pt;}
.ls22{letter-spacing:0.088000pt;}
.ls2c{letter-spacing:0.102608pt;}
.ls11{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.117333pt;}
.ls3e{letter-spacing:0.152000pt;}
.lsf{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.234667pt;}
.ls2a{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.293333pt;}
.ls27{letter-spacing:0.352000pt;}
.ls10{letter-spacing:0.410667pt;}
.ls4{letter-spacing:0.533333pt;}
.ls16{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.645333pt;}
.lse{letter-spacing:0.704000pt;}
.ls15{letter-spacing:0.720000pt;}
.ls3f{letter-spacing:0.810667pt;}
.ls2d{letter-spacing:0.880000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls42{letter-spacing:1.079200pt;}
.ls40{letter-spacing:1.119733pt;}
.ls2{letter-spacing:1.200000pt;}
.ls41{letter-spacing:1.241333pt;}
.ls2e{letter-spacing:4.106667pt;}
.ls38{letter-spacing:112.725333pt;}
.ls33{letter-spacing:145.024000pt;}
.ls30{letter-spacing:163.925333pt;}
.ls35{letter-spacing:221.568000pt;}
.ls36{letter-spacing:222.506667pt;}
.ls37{letter-spacing:222.549333pt;}
.ls34{letter-spacing:229.717333pt;}
.ls32{letter-spacing:269.141333pt;}
.ls31{letter-spacing:563.925333pt;}
.ws2{word-spacing:-14.784000pt;}
.ws5a{word-spacing:-14.490667pt;}
.ws119{word-spacing:-12.576000pt;}
.wsa7{word-spacing:-12.496000pt;}
.ws93{word-spacing:-12.437333pt;}
.wsb5{word-spacing:-12.378667pt;}
.ws52{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws61{word-spacing:-12.261333pt;}
.ws3{word-spacing:-12.202667pt;}
.ws4{word-spacing:-12.144000pt;}
.ws37{word-spacing:-12.096000pt;}
.ws20{word-spacing:-12.026667pt;}
.ws6e{word-spacing:-11.968000pt;}
.wsa4{word-spacing:-11.616000pt;}
.ws92{word-spacing:-11.557333pt;}
.ws5d{word-spacing:-11.498667pt;}
.ws3a{word-spacing:-11.440000pt;}
.ws3d{word-spacing:-11.413333pt;}
.ws72{word-spacing:-11.381333pt;}
.ws91{word-spacing:-11.376000pt;}
.ws71{word-spacing:-11.264000pt;}
.ws21{word-spacing:-11.200000pt;}
.wsb9{word-spacing:-11.136000pt;}
.ws3b{word-spacing:-11.088000pt;}
.ws1{word-spacing:-10.640000pt;}
.ws3c{word-spacing:-10.400000pt;}
.wsa2{word-spacing:-10.386667pt;}
.ws88{word-spacing:-10.293333pt;}
.ws36{word-spacing:-10.133333pt;}
.ws107{word-spacing:-9.880000pt;}
.ws5b{word-spacing:-9.386667pt;}
.ws7d{word-spacing:-8.976000pt;}
.wsc2{word-spacing:-8.106667pt;}
.wsa6{word-spacing:-7.285168pt;}
.ws1f{word-spacing:-7.182560pt;}
.ws5c{word-spacing:-7.148357pt;}
.ws5{word-spacing:-7.079952pt;}
.ws73{word-spacing:-6.977344pt;}
.ws1e{word-spacing:-6.688000pt;}
.ws74{word-spacing:-6.529600pt;}
.ws108{word-spacing:-6.203120pt;}
.ws3e{word-spacing:-6.080000pt;}
.ws69{word-spacing:-6.055427pt;}
.ws60{word-spacing:-3.226667pt;}
.ws12{word-spacing:-3.050667pt;}
.wsa8{word-spacing:-2.933333pt;}
.ws80{word-spacing:-2.581333pt;}
.ws24{word-spacing:-2.522667pt;}
.wsf{word-spacing:-2.464000pt;}
.wsaa{word-spacing:-2.405333pt;}
.ws112{word-spacing:-2.381333pt;}
.ws4a{word-spacing:-2.346667pt;}
.ws6a{word-spacing:-2.288000pt;}
.ws118{word-spacing:-2.280000pt;}
.ws4f{word-spacing:-2.240000pt;}
.ws99{word-spacing:-2.229333pt;}
.ws51{word-spacing:-2.186667pt;}
.ws114{word-spacing:-2.178667pt;}
.ws1b{word-spacing:-2.170667pt;}
.ws10c{word-spacing:-2.128000pt;}
.ws9a{word-spacing:-2.112000pt;}
.wsb3{word-spacing:-2.053333pt;}
.ws77{word-spacing:-1.994667pt;}
.ws17{word-spacing:-1.936000pt;}
.ws13{word-spacing:-1.877333pt;}
.ws55{word-spacing:-1.818667pt;}
.ws2f{word-spacing:-1.760000pt;}
.ws4e{word-spacing:-1.642667pt;}
.ws46{word-spacing:-1.584000pt;}
.wsb1{word-spacing:-1.525333pt;}
.ws7{word-spacing:-1.469333pt;}
.wsb2{word-spacing:-1.466667pt;}
.ws45{word-spacing:-1.408000pt;}
.ws68{word-spacing:-1.386667pt;}
.ws30{word-spacing:-1.349333pt;}
.ws2b{word-spacing:-1.290667pt;}
.ws29{word-spacing:-1.232000pt;}
.ws1c{word-spacing:-1.200000pt;}
.ws57{word-spacing:-1.173333pt;}
.wsc{word-spacing:-1.165333pt;}
.ws56{word-spacing:-1.114667pt;}
.wsb8{word-spacing:-1.056000pt;}
.wsa0{word-spacing:-1.013333pt;}
.ws4b{word-spacing:-0.997333pt;}
.ws8{word-spacing:-0.962667pt;}
.ws16{word-spacing:-0.938667pt;}
.ws41{word-spacing:-0.880000pt;}
.ws79{word-spacing:-0.821333pt;}
.ws3f{word-spacing:-0.762667pt;}
.ws83{word-spacing:-0.746667pt;}
.ws6f{word-spacing:-0.704000pt;}
.ws82{word-spacing:-0.693333pt;}
.ws2d{word-spacing:-0.645333pt;}
.ws26{word-spacing:-0.640000pt;}
.ws10e{word-spacing:-0.608000pt;}
.ws23{word-spacing:-0.586667pt;}
.wsd{word-spacing:-0.557333pt;}
.ws8a{word-spacing:-0.528000pt;}
.ws38{word-spacing:-0.506667pt;}
.ws8b{word-spacing:-0.469333pt;}
.ws34{word-spacing:-0.373333pt;}
.ws7c{word-spacing:-0.352000pt;}
.ws44{word-spacing:-0.293333pt;}
.ws62{word-spacing:-0.234667pt;}
.ws98{word-spacing:-0.176000pt;}
.wsb6{word-spacing:-0.117333pt;}
.ws96{word-spacing:-0.068405pt;}
.ws65{word-spacing:-0.058667pt;}
.ws6c{word-spacing:-0.053333pt;}
.ws106{word-spacing:-0.050667pt;}
.ws6{word-spacing:0.000000pt;}
.ws10d{word-spacing:0.050667pt;}
.ws32{word-spacing:0.053333pt;}
.ws10{word-spacing:0.058667pt;}
.ws90{word-spacing:0.106667pt;}
.ws22{word-spacing:0.117333pt;}
.ws11{word-spacing:0.176000pt;}
.ws95{word-spacing:0.234667pt;}
.ws15{word-spacing:0.293333pt;}
.ws43{word-spacing:0.352000pt;}
.ws113{word-spacing:0.354667pt;}
.ws50{word-spacing:0.373333pt;}
.ws8d{word-spacing:0.410667pt;}
.ws9d{word-spacing:0.528000pt;}
.ws8e{word-spacing:0.586667pt;}
.ws2a{word-spacing:0.645333pt;}
.wse{word-spacing:0.704000pt;}
.ws84{word-spacing:0.746667pt;}
.ws9{word-spacing:0.810667pt;}
.ws7b{word-spacing:0.821333pt;}
.ws9f{word-spacing:0.853333pt;}
.ws5e{word-spacing:0.880000pt;}
.ws86{word-spacing:0.906667pt;}
.ws25{word-spacing:0.938667pt;}
.ws18{word-spacing:1.056000pt;}
.ws8f{word-spacing:1.114667pt;}
.ws54{word-spacing:1.173333pt;}
.ws81{word-spacing:1.232000pt;}
.ws76{word-spacing:1.290667pt;}
.ws115{word-spacing:1.317333pt;}
.ws97{word-spacing:1.349333pt;}
.ws4c{word-spacing:1.408000pt;}
.ws7f{word-spacing:1.466667pt;}
.ws67{word-spacing:1.584000pt;}
.ws10a{word-spacing:1.621333pt;}
.wsab{word-spacing:1.642667pt;}
.ws14{word-spacing:1.701333pt;}
.wsb7{word-spacing:1.760000pt;}
.wsa{word-spacing:1.773333pt;}
.wsb0{word-spacing:1.818667pt;}
.ws78{word-spacing:1.877333pt;}
.ws10b{word-spacing:1.925333pt;}
.ws53{word-spacing:1.936000pt;}
.ws64{word-spacing:1.994667pt;}
.wsa3{word-spacing:2.026667pt;}
.ws27{word-spacing:2.053333pt;}
.ws49{word-spacing:2.112000pt;}
.ws109{word-spacing:2.128000pt;}
.ws110{word-spacing:2.178667pt;}
.ws19{word-spacing:2.288000pt;}
.ws75{word-spacing:2.346667pt;}
.wsb{word-spacing:2.381333pt;}
.ws89{word-spacing:2.405333pt;}
.ws7e{word-spacing:2.464000pt;}
.ws70{word-spacing:2.522667pt;}
.ws85{word-spacing:2.560000pt;}
.ws5f{word-spacing:2.581333pt;}
.ws117{word-spacing:2.584000pt;}
.ws9c{word-spacing:2.640000pt;}
.ws116{word-spacing:2.736000pt;}
.ws31{word-spacing:2.816000pt;}
.ws35{word-spacing:2.826667pt;}
.ws2e{word-spacing:2.874667pt;}
.ws8c{word-spacing:2.933333pt;}
.ws9e{word-spacing:2.992000pt;}
.wsa9{word-spacing:3.050667pt;}
.ws7a{word-spacing:3.109333pt;}
.ws6b{word-spacing:3.168000pt;}
.ws40{word-spacing:3.226667pt;}
.ws58{word-spacing:3.285333pt;}
.wsac{word-spacing:3.344000pt;}
.wsad{word-spacing:3.402667pt;}
.ws10f{word-spacing:3.496000pt;}
.ws42{word-spacing:3.520000pt;}
.ws63{word-spacing:3.578667pt;}
.ws4d{word-spacing:3.637333pt;}
.ws33{word-spacing:3.680000pt;}
.ws66{word-spacing:3.696000pt;}
.ws48{word-spacing:3.754667pt;}
.ws47{word-spacing:3.813333pt;}
.ws28{word-spacing:3.930667pt;}
.ws94{word-spacing:3.989333pt;}
.ws1a{word-spacing:4.048000pt;}
.ws2c{word-spacing:4.106667pt;}
.ws9b{word-spacing:4.282667pt;}
.ws111{word-spacing:5.472000pt;}
.wsae{word-spacing:5.690667pt;}
.wsbb{word-spacing:17.450667pt;}
.wse4{word-spacing:26.240000pt;}
.wsd1{word-spacing:27.264000pt;}
.wsca{word-spacing:28.117333pt;}
.wse6{word-spacing:28.501333pt;}
.wse7{word-spacing:32.597333pt;}
.wsbd{word-spacing:47.104000pt;}
.wsed{word-spacing:48.554667pt;}
.wsf1{word-spacing:48.682667pt;}
.wsf0{word-spacing:48.938667pt;}
.wseb{word-spacing:49.450667pt;}
.wse1{word-spacing:49.578667pt;}
.wsea{word-spacing:50.261333pt;}
.wsec{word-spacing:50.901333pt;}
.wsee{word-spacing:51.157333pt;}
.wsf2{word-spacing:51.797333pt;}
.wsd4{word-spacing:53.461333pt;}
.wsf3{word-spacing:53.802667pt;}
.wsd9{word-spacing:62.976000pt;}
.wscc{word-spacing:66.645333pt;}
.wsdc{word-spacing:68.053333pt;}
.wsc5{word-spacing:74.581333pt;}
.wsdb{word-spacing:78.506667pt;}
.wsc1{word-spacing:83.370667pt;}
.wse2{word-spacing:87.466667pt;}
.wsba{word-spacing:88.448000pt;}
.wsfa{word-spacing:92.458667pt;}
.wsfd{word-spacing:92.629333pt;}
.wsfc{word-spacing:92.885333pt;}
.wsf6{word-spacing:93.184000pt;}
.wsf8{word-spacing:93.397333pt;}
.wsf7{word-spacing:94.165333pt;}
.wsfb{word-spacing:94.250667pt;}
.wsf9{word-spacing:94.805333pt;}
.wsfe{word-spacing:95.530667pt;}
.wsf5{word-spacing:96.042667pt;}
.ws104{word-spacing:96.810667pt;}
.wsf4{word-spacing:97.066667pt;}
.ws100{word-spacing:97.536000pt;}
.ws102{word-spacing:97.706667pt;}
.ws105{word-spacing:98.346667pt;}
.ws101{word-spacing:98.517333pt;}
.wse3{word-spacing:98.730667pt;}
.ws103{word-spacing:99.157333pt;}
.wsff{word-spacing:100.352000pt;}
.wsc4{word-spacing:100.821333pt;}
.wsc6{word-spacing:101.461333pt;}
.wsce{word-spacing:101.546667pt;}
.wsc8{word-spacing:102.058667pt;}
.wsd2{word-spacing:102.101333pt;}
.wsde{word-spacing:105.045333pt;}
.wse5{word-spacing:105.770667pt;}
.wsda{word-spacing:106.069333pt;}
.wsd5{word-spacing:107.008000pt;}
.wse8{word-spacing:107.690667pt;}
.wsd7{word-spacing:107.989333pt;}
.wsbe{word-spacing:108.757333pt;}
.wsdf{word-spacing:110.293333pt;}
.wsbf{word-spacing:130.773333pt;}
.wsd3{word-spacing:137.941333pt;}
.wsdd{word-spacing:142.933333pt;}
.wsd8{word-spacing:143.189333pt;}
.wscd{word-spacing:143.701333pt;}
.wsd6{word-spacing:144.341333pt;}
.wsc7{word-spacing:145.152000pt;}
.wscb{word-spacing:145.920000pt;}
.wsc9{word-spacing:146.133333pt;}
.wse0{word-spacing:146.773333pt;}
.wsef{word-spacing:161.280000pt;}
.wsc3{word-spacing:166.570667pt;}
.wscf{word-spacing:190.634667pt;}
.wsbc{word-spacing:343.168000pt;}
.wsc0{word-spacing:480.426667pt;}
.wsd0{word-spacing:534.485333pt;}
.ws11b{word-spacing:1668.001600pt;}
.ws1d{word-spacing:1681.057600pt;}
.wsa1{word-spacing:1682.833600pt;}
.ws59{word-spacing:1683.601600pt;}
.ws6d{word-spacing:1684.657600pt;}
.ws87{word-spacing:1684.849600pt;}
.wsaf{word-spacing:1685.377600pt;}
.wse9{word-spacing:1686.625600pt;}
.wsb4{word-spacing:1686.673600pt;}
.ws39{word-spacing:1687.057600pt;}
.ws11a{word-spacing:1688.785600pt;}
.wsa5{word-spacing:1689.073600pt;}
._11{margin-left:-2328.672000pt;}
._1f{margin-left:-2327.712000pt;}
._20{margin-left:-19.290667pt;}
._17{margin-left:-17.130667pt;}
._b{margin-left:-15.931733pt;}
._1a{margin-left:-15.033067pt;}
._9{margin-left:-13.865600pt;}
._c{margin-left:-12.437333pt;}
._12{margin-left:-11.380800pt;}
._19{margin-left:-9.396800pt;}
._3{margin-left:-8.320000pt;}
._8{margin-left:-6.516267pt;}
._7{margin-left:-5.541867pt;}
._4{margin-left:-4.000000pt;}
._1{margin-left:-2.747200pt;}
._0{margin-left:-1.360000pt;}
._2{width:0.915733pt;}
._e{width:1.912533pt;}
._5{width:3.305600pt;}
._6{width:4.306667pt;}
._a{width:5.268267pt;}
._15{width:6.395733pt;}
._d{width:8.180800pt;}
._16{width:9.360000pt;}
._1b{width:15.093333pt;}
._1d{width:19.146667pt;}
._1e{width:22.720000pt;}
._1c{width:26.933333pt;}
._24{width:30.102400pt;}
._14{width:31.946667pt;}
._18{width:34.933333pt;}
._10{width:38.240000pt;}
._13{width:40.320000pt;}
._f{width:45.653333pt;}
._64{width:49.402667pt;}
._61{width:50.554667pt;}
._23{width:52.743467pt;}
._30{width:53.973333pt;}
._67{width:57.722667pt;}
._73{width:65.488000pt;}
._33{width:66.853333pt;}
._4e{width:67.834667pt;}
._38{width:69.834667pt;}
._4b{width:78.458667pt;}
._58{width:90.224533pt;}
._5a{width:91.153067pt;}
._5e{width:93.056000pt;}
._7a{width:103.978667pt;}
._7e{width:104.960000pt;}
._76{width:106.837333pt;}
._3d{width:111.456533pt;}
._34{width:112.523200pt;}
._22{width:117.077333pt;}
._2f{width:118.448533pt;}
._37{width:124.571733pt;}
._4f{width:126.523200pt;}
._4d{width:129.137067pt;}
._26{width:133.360000pt;}
._50{width:136.106667pt;}
._21{width:138.069333pt;}
._41{width:139.509333pt;}
._2a{width:140.928533pt;}
._88{width:142.890667pt;}
._55{width:144.736000pt;}
._2c{width:146.048000pt;}
._29{width:147.786667pt;}
._32{width:148.864533pt;}
._42{width:150.432000pt;}
._35{width:152.096000pt;}
._27{width:153.637333pt;}
._5d{width:155.424000pt;}
._51{width:156.453867pt;}
._48{width:158.097067pt;}
._5c{width:159.243200pt;}
._3b{width:160.635200pt;}
._28{width:161.835200pt;}
._3e{width:163.371200pt;}
._65{width:165.157333pt;}
._71{width:166.053333pt;}
._7d{width:167.435200pt;}
._6c{width:168.394667pt;}
._6f{width:170.533333pt;}
._84{width:172.384533pt;}
._8a{width:175.285867pt;}
._79{width:176.773867pt;}
._4c{width:178.560533pt;}
._31{width:190.032000pt;}
._47{width:190.970667pt;}
._2e{width:191.914667pt;}
._2d{width:193.157867pt;}
._54{width:194.853333pt;}
._52{width:196.863467pt;}
._2b{width:203.178667pt;}
._57{width:210.725333pt;}
._39{width:212.949867pt;}
._36{width:214.698667pt;}
._45{width:216.469333pt;}
._49{width:237.226667pt;}
._3a{width:238.181867pt;}
._43{width:239.899733pt;}
._46{width:272.630933pt;}
._56{width:316.725867pt;}
._4a{width:318.053867pt;}
._44{width:320.267200pt;}
._3f{width:331.306667pt;}
._25{width:381.440000pt;}
._40{width:410.874667pt;}
._68{width:426.448000pt;}
._69{width:477.226667pt;}
._62{width:488.826667pt;}
._5f{width:497.408000pt;}
._74{width:500.816000pt;}
._77{width:506.453333pt;}
._85{width:510.293333pt;}
._81{width:515.029333pt;}
._78{width:520.192000pt;}
._86{width:522.496000pt;}
._82{width:526.293333pt;}
._66{width:535.210667pt;}
._63{width:537.472000pt;}
._7b{width:542.208000pt;}
._7f{width:543.146667pt;}
._87{width:545.834667pt;}
._75{width:549.120000pt;}
._80{width:550.912000pt;}
._7c{width:558.677333pt;}
._3c{width:563.882667pt;}
._59{width:567.296000pt;}
._53{width:569.130667pt;}
._6a{width:592.240000pt;}
._83{width:632.021333pt;}
._5b{width:634.154667pt;}
._72{width:640.981333pt;}
._6b{width:642.261333pt;}
._70{width:643.541333pt;}
._6e{width:645.333333pt;}
._8b{width:646.997333pt;}
._6d{width:648.320000pt;}
._8c{width:650.112000pt;}
._89{width:651.008000pt;}
._60{width:717.269333pt;}
.fs8{font-size:29.538667pt;}
.fs9{font-size:31.093333pt;}
.fs6{font-size:34.202667pt;}
.fsa{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y172{bottom:72.769733pt;}
.y170{bottom:78.816933pt;}
.y15e{bottom:79.478800pt;}
.yc7{bottom:79.748000pt;}
.y48{bottom:79.748133pt;}
.y26{bottom:79.750533pt;}
.y17d{bottom:83.700800pt;}
.y130{bottom:84.477733pt;}
.yfd{bottom:84.814267pt;}
.yfc{bottom:84.824933pt;}
.y100{bottom:84.888933pt;}
.yfa{bottom:84.952933pt;}
.y101{bottom:85.048933pt;}
.yf8{bottom:85.059600pt;}
.y106{bottom:85.166267pt;}
.y107{bottom:85.219600pt;}
.ye1{bottom:85.230267pt;}
.yfb{bottom:85.272933pt;}
.y104{bottom:85.294267pt;}
.ye3{bottom:85.379600pt;}
.yf9{bottom:85.400933pt;}
.y105{bottom:85.560933pt;}
.yef{bottom:85.614267pt;}
.yf6{bottom:85.624933pt;}
.y102{bottom:85.742267pt;}
.yf4{bottom:85.774267pt;}
.ye9{bottom:86.296933pt;}
.y177{bottom:87.009067pt;}
.y4c{bottom:87.250267pt;}
.y171{bottom:88.767733pt;}
.y16f{bottom:94.814933pt;}
.yde{bottom:95.032933pt;}
.y15d{bottom:95.476800pt;}
.y16d{bottom:95.514800pt;}
.y47{bottom:95.748133pt;}
.yb2{bottom:96.552667pt;}
.y25{bottom:97.511867pt;}
.y17c{bottom:99.698800pt;}
.y176{bottom:103.007067pt;}
.y4b{bottom:103.248267pt;}
.y15c{bottom:111.474800pt;}
.y16c{bottom:111.512800pt;}
.y46{bottom:111.748133pt;}
.yb1{bottom:112.552667pt;}
.y24{bottom:115.275600pt;}
.ydd{bottom:115.278000pt;}
.y17b{bottom:115.696800pt;}
.y12f{bottom:116.573733pt;}
.y175{bottom:119.005067pt;}
.yaf{bottom:120.065067pt;}
.y15b{bottom:127.472800pt;}
.y16b{bottom:127.510800pt;}
.y45{bottom:127.748133pt;}
.yb0{bottom:128.550667pt;}
.ydc{bottom:133.039333pt;}
.y23{bottom:133.041867pt;}
.yc6{bottom:133.044267pt;}
.y6c{bottom:133.063867pt;}
.yae{bottom:136.065067pt;}
.y12e{bottom:136.797733pt;}
.y15a{bottom:143.470800pt;}
.y16a{bottom:143.508800pt;}
.y44{bottom:143.748133pt;}
.y22{bottom:150.803200pt;}
.yc2{bottom:150.805600pt;}
.y6b{bottom:150.825200pt;}
.yad{bottom:152.065067pt;}
.ye4{bottom:152.206267pt;}
.y12d{bottom:157.021733pt;}
.y159{bottom:159.468800pt;}
.y169{bottom:159.506800pt;}
.y62{bottom:159.748133pt;}
.yac{bottom:168.063067pt;}
.y21{bottom:168.566933pt;}
.y83{bottom:168.569333pt;}
.y7e{bottom:168.571867pt;}
.y6a{bottom:168.586533pt;}
.y61{bottom:175.748133pt;}
.y12c{bottom:177.245733pt;}
.y82{bottom:186.330667pt;}
.y7d{bottom:186.333200pt;}
.yab{bottom:186.335600pt;}
.y20{bottom:186.338133pt;}
.y69{bottom:186.347867pt;}
.y158{bottom:191.464800pt;}
.y168{bottom:191.502800pt;}
.y60{bottom:191.748133pt;}
.y12b{bottom:197.469733pt;}
.y7c{bottom:204.094533pt;}
.yaa{bottom:204.096933pt;}
.y1f{bottom:204.099467pt;}
.y68{bottom:204.109200pt;}
.y157{bottom:207.462800pt;}
.y167{bottom:207.500800pt;}
.y5f{bottom:207.748133pt;}
.y85{bottom:209.063067pt;}
.y12a{bottom:217.693733pt;}
.y7b{bottom:221.858267pt;}
.y1e{bottom:221.860800pt;}
.y43{bottom:221.865600pt;}
.yd5{bottom:221.868133pt;}
.y67{bottom:221.870533pt;}
.ybe{bottom:221.872933pt;}
.y156{bottom:223.460800pt;}
.y166{bottom:223.498800pt;}
.y5e{bottom:223.748133pt;}
.y84{bottom:225.061067pt;}
.y9d{bottom:230.425200pt;}
.yc5{bottom:235.996933pt;}
.y129{bottom:237.917733pt;}
.y155{bottom:239.458800pt;}
.y165{bottom:239.496800pt;}
.y1d{bottom:239.622133pt;}
.ya9{bottom:239.624533pt;}
.y42{bottom:239.626933pt;}
.yd4{bottom:239.629467pt;}
.y66{bottom:239.631867pt;}
.ybd{bottom:239.634267pt;}
.yc4{bottom:251.994933pt;}
.y154{bottom:255.456800pt;}
.y164{bottom:255.494800pt;}
.y1c{bottom:257.385867pt;}
.y41{bottom:257.388267pt;}
.yd3{bottom:257.390800pt;}
.y65{bottom:257.393200pt;}
.ybc{bottom:257.395600pt;}
.y128{bottom:258.141733pt;}
.yc3{bottom:267.992933pt;}
.y40{bottom:275.149600pt;}
.yd2{bottom:275.152133pt;}
.y1b{bottom:275.154533pt;}
.ybb{bottom:275.156933pt;}
.y127{bottom:278.365733pt;}
.ya8{bottom:280.033600pt;}
.y153{bottom:287.452800pt;}
.y163{bottom:287.490800pt;}
.y3f{bottom:292.913467pt;}
.y1a{bottom:292.915867pt;}
.y7a{bottom:292.918267pt;}
.y126{bottom:298.589733pt;}
.y152{bottom:303.450800pt;}
.y162{bottom:303.488800pt;}
.yc1{bottom:309.998133pt;}
.y19{bottom:310.677200pt;}
.y79{bottom:310.679600pt;}
.y125{bottom:318.813733pt;}
.y151{bottom:319.448800pt;}
.y161{bottom:319.486800pt;}
.yc0{bottom:325.998133pt;}
.y18{bottom:328.440933pt;}
.yba{bottom:328.445867pt;}
.y90{bottom:333.324933pt;}
.y150{bottom:335.446800pt;}
.y160{bottom:335.484800pt;}
.y124{bottom:339.037733pt;}
.ybf{bottom:341.996133pt;}
.y81{bottom:343.070933pt;}
.y17{bottom:346.204800pt;}
.yb9{bottom:346.207200pt;}
.ydb{bottom:346.209733pt;}
.y14f{bottom:351.444800pt;}
.y15f{bottom:351.482800pt;}
.y80{bottom:359.068933pt;}
.y123{bottom:359.261733pt;}
.y16{bottom:363.968533pt;}
.yda{bottom:363.971067pt;}
.ya7{bottom:363.975867pt;}
.y5d{bottom:363.978400pt;}
.y7f{bottom:375.066933pt;}
.y122{bottom:379.485733pt;}
.y15{bottom:381.732400pt;}
.yd9{bottom:381.734800pt;}
.ya6{bottom:381.737200pt;}
.y5c{bottom:381.739733pt;}
.y8f{bottom:381.747067pt;}
.y14e{bottom:396.258400pt;}
.y14{bottom:399.496133pt;}
.y3e{bottom:399.498533pt;}
.y5b{bottom:399.501067pt;}
.y8e{bottom:399.508400pt;}
.y121{bottom:399.709733pt;}
.yb8{bottom:411.718533pt;}
.y14d{bottom:413.058400pt;}
.y13{bottom:417.259867pt;}
.y5a{bottom:417.262400pt;}
.y8d{bottom:417.269733pt;}
.y120{bottom:419.933733pt;}
.yb7{bottom:427.716533pt;}
.ydf{bottom:428.323600pt;}
.y14c{bottom:431.752133pt;}
.y12{bottom:435.023733pt;}
.y78{bottom:435.026133pt;}
.y64{bottom:435.028533pt;}
.y8c{bottom:435.031067pt;}
.y17a{bottom:439.448800pt;}
.y11f{bottom:440.157733pt;}
.y14b{bottom:448.548133pt;}
.y3d{bottom:452.787467pt;}
.y59{bottom:452.792400pt;}
.y179{bottom:455.446800pt;}
.y11e{bottom:460.381733pt;}
.y14a{bottom:465.348133pt;}
.y11{bottom:470.551200pt;}
.y58{bottom:470.553733pt;}
.y178{bottom:471.444800pt;}
.y11d{bottom:480.605733pt;}
.y149{bottom:484.037867pt;}
.y3c{bottom:488.315067pt;}
.yd8{bottom:488.317467pt;}
.y57{bottom:488.322400pt;}
.yfe{bottom:490.051600pt;}
.y11c{bottom:500.829733pt;}
.y148{bottom:500.837867pt;}
.ye2{bottom:502.456933pt;}
.y77{bottom:506.078800pt;}
.y3b{bottom:506.081200pt;}
.y56{bottom:506.083733pt;}
.y147{bottom:517.631600pt;}
.y11b{bottom:521.053733pt;}
.ya5{bottom:523.842533pt;}
.y3a{bottom:523.845067pt;}
.yd1{bottom:523.852400pt;}
.y63{bottom:524.436800pt;}
.y16e{bottom:533.546800pt;}
.y4a{bottom:535.244933pt;}
.y146{bottom:536.327600pt;}
.y10{bottom:539.592400pt;}
.y11a{bottom:541.277733pt;}
.y39{bottom:541.606400pt;}
.y76{bottom:541.608800pt;}
.y8b{bottom:541.611200pt;}
.yd0{bottom:541.613733pt;}
.y174{bottom:547.100400pt;}
.y49{bottom:551.242933pt;}
.y145{bottom:553.127600pt;}
.yf{bottom:555.590400pt;}
.y38{bottom:559.370133pt;}
.y8a{bottom:559.372533pt;}
.ycf{bottom:559.375067pt;}
.y119{bottom:561.501733pt;}
.y173{bottom:563.098400pt;}
.ye0{bottom:564.974267pt;}
.ye{bottom:571.590400pt;}
.y144{bottom:571.817333pt;}
.y75{bottom:577.133867pt;}
.yce{bottom:577.136400pt;}
.y55{bottom:577.138800pt;}
.y37{bottom:577.143733pt;}
.y118{bottom:581.725733pt;}
.y143{bottom:588.617333pt;}
.y74{bottom:594.897733pt;}
.y54{bottom:594.900133pt;}
.y36{bottom:594.905067pt;}
.y117{bottom:601.949733pt;}
.yf0{bottom:602.872933pt;}
.yff{bottom:605.955600pt;}
.ye6{bottom:606.040933pt;}
.yeb{bottom:606.488933pt;}
.y142{bottom:607.311333pt;}
.ye5{bottom:607.502267pt;}
.yea{bottom:611.416933pt;}
.y53{bottom:612.661467pt;}
.y35{bottom:612.666400pt;}
.y116{bottom:622.173733pt;}
.yf1{bottom:622.467600pt;}
.y141{bottom:624.107333pt;}
.yd{bottom:625.397733pt;}
.yf5{bottom:625.870267pt;}
.yd7{bottom:626.297467pt;}
.y52{bottom:630.425200pt;}
.y34{bottom:630.427733pt;}
.yc{bottom:641.395733pt;}
.yd6{bottom:642.295467pt;}
.y115{bottom:642.397733pt;}
.y140{bottom:642.790667pt;}
.y73{bottom:648.065067pt;}
.y33{bottom:648.189067pt;}
.y9c{bottom:648.191467pt;}
.ya4{bottom:648.201333pt;}
.y103{bottom:652.739600pt;}
.yf7{bottom:654.691600pt;}
.yb{bottom:657.393733pt;}
.y13f{bottom:661.486667pt;}
.y114{bottom:662.621733pt;}
.y72{bottom:664.063067pt;}
.y89{bottom:665.955333pt;}
.y51{bottom:665.957733pt;}
.ya3{bottom:665.962667pt;}
.y9b{bottom:665.967467pt;}
.ya{bottom:673.391733pt;}
.yf2{bottom:673.667600pt;}
.y13e{bottom:678.286667pt;}
.y113{bottom:682.845733pt;}
.y32{bottom:683.716667pt;}
.y9a{bottom:683.728800pt;}
.ye7{bottom:684.195600pt;}
.y9{bottom:689.389733pt;}
.y13d{bottom:696.990800pt;}
.y50{bottom:701.480400pt;}
.ya2{bottom:701.485333pt;}
.y99{bottom:701.490133pt;}
.ycd{bottom:701.502400pt;}
.y112{bottom:703.069733pt;}
.y8{bottom:705.387733pt;}
.yec{bottom:708.899600pt;}
.y13c{bottom:713.786800pt;}
.y4f{bottom:719.244133pt;}
.ya1{bottom:719.246667pt;}
.y98{bottom:719.251467pt;}
.ycc{bottom:719.263733pt;}
.y7{bottom:721.385733pt;}
.y111{bottom:723.293733pt;}
.y13b{bottom:730.582800pt;}
.ya0{bottom:737.008000pt;}
.y97{bottom:737.012800pt;}
.y31{bottom:737.015200pt;}
.ycb{bottom:737.025067pt;}
.y6{bottom:737.385733pt;}
.y110{bottom:743.517733pt;}
.y13a{bottom:749.272000pt;}
.y88{bottom:754.771733pt;}
.y96{bottom:754.774133pt;}
.y30{bottom:754.776533pt;}
.yca{bottom:754.786400pt;}
.y10f{bottom:763.741733pt;}
.y139{bottom:766.068000pt;}
.y95{bottom:772.535467pt;}
.y2f{bottom:772.537867pt;}
.y9f{bottom:772.540400pt;}
.yc9{bottom:772.547733pt;}
.y138{bottom:782.864000pt;}
.y10e{bottom:783.965733pt;}
.y2e{bottom:790.299200pt;}
.y9e{bottom:790.301733pt;}
.yc8{bottom:790.309067pt;}
.y5{bottom:798.737467pt;}
.y137{bottom:799.660000pt;}
.y10d{bottom:804.189733pt;}
.y2d{bottom:808.063067pt;}
.y87{bottom:808.065467pt;}
.y94{bottom:808.070400pt;}
.y71{bottom:808.077733pt;}
.y136{bottom:818.356000pt;}
.y4{bottom:818.740133pt;}
.y10c{bottom:824.413733pt;}
.y2c{bottom:825.826800pt;}
.y93{bottom:825.831733pt;}
.y4e{bottom:825.834133pt;}
.y70{bottom:825.839067pt;}
.y135{bottom:835.156000pt;}
.y2b{bottom:843.590533pt;}
.y92{bottom:843.593067pt;}
.y4d{bottom:843.595467pt;}
.yb6{bottom:843.597867pt;}
.y6f{bottom:843.600400pt;}
.y10b{bottom:844.637733pt;}
.y134{bottom:851.953733pt;}
.yed{bottom:855.448933pt;}
.ye8{bottom:855.608933pt;}
.y91{bottom:861.354400pt;}
.y2a{bottom:861.356800pt;}
.yb5{bottom:861.359200pt;}
.y6e{bottom:861.361733pt;}
.y3{bottom:861.401200pt;}
.yee{bottom:864.056933pt;}
.yf3{bottom:864.195600pt;}
.y10a{bottom:864.861733pt;}
.y133{bottom:870.649733pt;}
.y29{bottom:879.118133pt;}
.yb4{bottom:879.120533pt;}
.y86{bottom:879.123067pt;}
.y109{bottom:885.085733pt;}
.y2{bottom:886.742533pt;}
.y132{bottom:887.445733pt;}
.yb3{bottom:896.881867pt;}
.y6d{bottom:896.884400pt;}
.y108{bottom:910.312400pt;}
.y1{bottom:912.083867pt;}
.y28{bottom:914.645733pt;}
.y131{bottom:919.363867pt;}
.y27{bottom:961.978533pt;}
.hf{height:30.782400pt;}
.h13{height:38.400000pt;}
.h15{height:38.997333pt;}
.h8{height:45.216000pt;}
.h5{height:45.600000pt;}
.hc{height:46.309333pt;}
.hb{height:48.000000pt;}
.h4{height:49.386667pt;}
.h7{height:52.800000pt;}
.ha{height:53.611200pt;}
.he{height:53.611733pt;}
.h9{height:53.621333pt;}
.hd{height:55.264000pt;}
.h6{height:59.264000pt;}
.h12{height:65.066667pt;}
.h3{height:65.312000pt;}
.h10{height:65.664000pt;}
.h2{height:83.957333pt;}
.h14{height:91.733333pt;}
.h11{height:92.330667pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x7{left:61.868000pt;}
.xa{left:63.319200pt;}
.x5{left:64.252000pt;}
.x3{left:69.426267pt;}
.x1{left:70.809733pt;}
.x2{left:72.305733pt;}
.x36{left:73.584933pt;}
.x35{left:79.216933pt;}
.x6{left:82.732000pt;}
.xb{left:83.671200pt;}
.x4{left:90.173600pt;}
.x9{left:91.500400pt;}
.x13{left:97.257067pt;}
.x14{left:119.486400pt;}
.x15{left:126.153067pt;}
.x18{left:141.715733pt;}
.x16{left:155.049067pt;}
.x17{left:161.715733pt;}
.x19{left:168.382400pt;}
.x1b{left:183.945067pt;}
.x1d{left:190.611733pt;}
.x1a{left:197.278400pt;}
.x1e{left:203.945067pt;}
.x1c{left:210.611733pt;}
.x20{left:226.174400pt;}
.x1f{left:239.507733pt;}
.x21{left:252.841067pt;}
.x22{left:275.070400pt;}
.x23{left:281.737067pt;}
.x24{left:303.966400pt;}
.x25{left:310.633067pt;}
.x26{left:327.859733pt;}
.x27{left:346.761067pt;}
.x28{left:365.662400pt;}
.x29{left:384.563733pt;}
.xf{left:395.482000pt;}
.x10{left:403.430800pt;}
.x11{left:416.815867pt;}
.x12{left:424.764800pt;}
.x37{left:426.325733pt;}
.x2a{left:427.358400pt;}
.x2b{left:434.025067pt;}
.x2c{left:451.251733pt;}
.x2d{left:470.153067pt;}
.x2e{left:494.046400pt;}
.x2f{left:500.713067pt;}
.x30{left:517.939733pt;}
.x31{left:536.841067pt;}
.x32{left:555.742400pt;}
.x33{left:574.643733pt;}
.xc{left:635.822667pt;}
.x8{left:638.702533pt;}
.xd{left:645.684267pt;}
.x34{left:651.074800pt;}
.xe{left:652.641867pt;}
}




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