
    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_b66048d500550e7e4d6290f1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_2f3ee6d121fc3f89c9e82db4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_0f69103400e03266cdcfcd0f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_7cc524b4ecb4c3cc4a4ce56b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_5dd55812e9f59c47edf5ec8a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_22337125ec722f1c55877328.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_10b2805b4e1b7c090bc33992.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_87d2993c69078a5a0acf8ab7.woff')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_299175cd4e2d7adef2103841.woff')format("woff");}.ff9{font-family:ff9;line-height:0.934082;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_4aeaa5acd06e18c7cdae2444.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;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_8b0993d30de0a4a2c32db629.woff')format("woff");}.ffb{font-family:ffb;line-height:0.929199;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;}
.m8c{transform:matrix(0.000000,-0.249510,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249510,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249510,0.250000,0.000000,0,0);}
.m61{transform:matrix(0.156781,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156781,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156781,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.157756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157756,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.158711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158711,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.159311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159311,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.159594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159594,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.162191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162191,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.166103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166103,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.173047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173047,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.178113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178113,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.178211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178211,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.180064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180064,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.186581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186581,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196165,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198215,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.204643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204643,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.220562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220562,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.224911,0.000000,-0.074963,0.238496,0,0);-ms-transform:matrix(0.224911,0.000000,-0.074963,0.238496,0,0);-webkit-transform:matrix(0.224911,0.000000,-0.074963,0.238496,0,0);}
.m46{transform:matrix(0.225584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225584,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.227155,0.000000,-0.075711,0.238260,0,0);-ms-transform:matrix(0.227155,0.000000,-0.075711,0.238260,0,0);-webkit-transform:matrix(0.227155,0.000000,-0.075711,0.238260,0,0);}
.m7b{transform:matrix(0.230497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230497,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.231016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231016,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.233102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233102,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.233157,0.000000,-0.077711,0.237615,0,0);-ms-transform:matrix(0.233157,0.000000,-0.077711,0.237615,0,0);-webkit-transform:matrix(0.233157,0.000000,-0.077711,0.237615,0,0);}
.m47{transform:matrix(0.233469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233469,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.233982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233982,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.234121,0.000000,-0.078033,0.237510,0,0);-ms-transform:matrix(0.234121,0.000000,-0.078033,0.237510,0,0);-webkit-transform:matrix(0.234121,0.000000,-0.078033,0.237510,0,0);}
.m43{transform:matrix(0.235087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235087,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.235260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235260,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.235418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235418,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235745,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.235759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235759,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.236283,0.000000,-0.078753,0.237272,0,0);-ms-transform:matrix(0.236283,0.000000,-0.078753,0.237272,0,0);-webkit-transform:matrix(0.236283,0.000000,-0.078753,0.237272,0,0);}
.m45{transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237455,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.237461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237461,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.238348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238348,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239100,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.239193,0.000000,-0.079723,0.236948,0,0);-ms-transform:matrix(0.239193,0.000000,-0.079723,0.236948,0,0);-webkit-transform:matrix(0.239193,0.000000,-0.079723,0.236948,0,0);}
.m59{transform:matrix(0.239724,0.000000,-0.079900,0.236888,0,0);-ms-transform:matrix(0.239724,0.000000,-0.079900,0.236888,0,0);-webkit-transform:matrix(0.239724,0.000000,-0.079900,0.236888,0,0);}
.m11{transform:matrix(0.240050,0.000000,-0.080009,0.236851,0,0);-ms-transform:matrix(0.240050,0.000000,-0.080009,0.236851,0,0);-webkit-transform:matrix(0.240050,0.000000,-0.080009,0.236851,0,0);}
.mf{transform:matrix(0.240446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240446,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.240811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240811,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240960,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.241306,0.000000,-0.080427,0.236710,0,0);-ms-transform:matrix(0.241306,0.000000,-0.080427,0.236710,0,0);-webkit-transform:matrix(0.241306,0.000000,-0.080427,0.236710,0,0);}
.m2{transform:matrix(0.241363,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241363,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241363,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.242132,0.000000,-0.080703,0.236616,0,0);-ms-transform:matrix(0.242132,0.000000,-0.080703,0.236616,0,0);-webkit-transform:matrix(0.242132,0.000000,-0.080703,0.236616,0,0);}
.m4{transform:matrix(0.242312,0.000000,-0.080763,0.236595,0,0);-ms-transform:matrix(0.242312,0.000000,-0.080763,0.236595,0,0);-webkit-transform:matrix(0.242312,0.000000,-0.080763,0.236595,0,0);}
.m2f{transform:matrix(0.242462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242462,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.242650,0.000000,-0.080875,0.236557,0,0);-ms-transform:matrix(0.242650,0.000000,-0.080875,0.236557,0,0);-webkit-transform:matrix(0.242650,0.000000,-0.080875,0.236557,0,0);}
.m66{transform:matrix(0.243146,0.000000,-0.081041,0.236500,0,0);-ms-transform:matrix(0.243146,0.000000,-0.081041,0.236500,0,0);-webkit-transform:matrix(0.243146,0.000000,-0.081041,0.236500,0,0);}
.m25{transform:matrix(0.243331,0.000000,-0.081102,0.236479,0,0);-ms-transform:matrix(0.243331,0.000000,-0.081102,0.236479,0,0);-webkit-transform:matrix(0.243331,0.000000,-0.081102,0.236479,0,0);}
.m21{transform:matrix(0.243706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243706,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.243964,0.000000,-0.081313,0.236407,0,0);-ms-transform:matrix(0.243964,0.000000,-0.081313,0.236407,0,0);-webkit-transform:matrix(0.243964,0.000000,-0.081313,0.236407,0,0);}
.m6{transform:matrix(0.244529,0.000000,-0.081502,0.236342,0,0);-ms-transform:matrix(0.244529,0.000000,-0.081502,0.236342,0,0);-webkit-transform:matrix(0.244529,0.000000,-0.081502,0.236342,0,0);}
.m60{transform:matrix(0.244788,0.000000,-0.081588,0.236312,0,0);-ms-transform:matrix(0.244788,0.000000,-0.081588,0.236312,0,0);-webkit-transform:matrix(0.244788,0.000000,-0.081588,0.236312,0,0);}
.m48{transform:matrix(0.244937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244937,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.244948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244948,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245079,0.000000,-0.081685,0.236279,0,0);-ms-transform:matrix(0.245079,0.000000,-0.081685,0.236279,0,0);-webkit-transform:matrix(0.245079,0.000000,-0.081685,0.236279,0,0);}
.m70{transform:matrix(0.245177,0.000000,-0.081717,0.236267,0,0);-ms-transform:matrix(0.245177,0.000000,-0.081717,0.236267,0,0);-webkit-transform:matrix(0.245177,0.000000,-0.081717,0.236267,0,0);}
.mc{transform:matrix(0.245221,0.000000,-0.081732,0.236262,0,0);-ms-transform:matrix(0.245221,0.000000,-0.081732,0.236262,0,0);-webkit-transform:matrix(0.245221,0.000000,-0.081732,0.236262,0,0);}
.m38{transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245310,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.245494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245494,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245885,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245943,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246109,0.000000,-0.082028,0.236160,0,0);-ms-transform:matrix(0.246109,0.000000,-0.082028,0.236160,0,0);-webkit-transform:matrix(0.246109,0.000000,-0.082028,0.236160,0,0);}
.m76{transform:matrix(0.246247,0.000000,-0.082074,0.236144,0,0);-ms-transform:matrix(0.246247,0.000000,-0.082074,0.236144,0,0);-webkit-transform:matrix(0.246247,0.000000,-0.082074,0.236144,0,0);}
.m1c{transform:matrix(0.246433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246433,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246640,0.000000,-0.082205,0.236098,0,0);-ms-transform:matrix(0.246640,0.000000,-0.082205,0.236098,0,0);-webkit-transform:matrix(0.246640,0.000000,-0.082205,0.236098,0,0);}
.m4d{transform:matrix(0.246694,0.000000,-0.082223,0.236092,0,0);-ms-transform:matrix(0.246694,0.000000,-0.082223,0.236092,0,0);-webkit-transform:matrix(0.246694,0.000000,-0.082223,0.236092,0,0);}
.m7f{transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246772,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246969,0.000000,-0.082315,0.236060,0,0);-ms-transform:matrix(0.246969,0.000000,-0.082315,0.236060,0,0);-webkit-transform:matrix(0.246969,0.000000,-0.082315,0.236060,0,0);}
.m28{transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247011,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247145,0.000000,-0.082374,0.236039,0,0);-ms-transform:matrix(0.247145,0.000000,-0.082374,0.236039,0,0);-webkit-transform:matrix(0.247145,0.000000,-0.082374,0.236039,0,0);}
.m2d{transform:matrix(0.247164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247164,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247275,0.000000,-0.082417,0.236024,0,0);-ms-transform:matrix(0.247275,0.000000,-0.082417,0.236024,0,0);-webkit-transform:matrix(0.247275,0.000000,-0.082417,0.236024,0,0);}
.m2b{transform:matrix(0.247299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247299,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247344,0.000000,-0.082440,0.236016,0,0);-ms-transform:matrix(0.247344,0.000000,-0.082440,0.236016,0,0);-webkit-transform:matrix(0.247344,0.000000,-0.082440,0.236016,0,0);}
.m20{transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247460,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248730,0.000000,-0.082902,0.235854,0,0);-ms-transform:matrix(0.248730,0.000000,-0.082902,0.235854,0,0);-webkit-transform:matrix(0.248730,0.000000,-0.082902,0.235854,0,0);}
.m15{transform:matrix(0.248958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248958,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249183,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249266,0.000000,-0.083080,0.235792,0,0);-ms-transform:matrix(0.249266,0.000000,-0.083080,0.235792,0,0);-webkit-transform:matrix(0.249266,0.000000,-0.083080,0.235792,0,0);}
.m81{transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249490,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249871,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);}
.m8{transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250490,0.000000,0.000000,0.250000,0,0);}
.m8b{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);}
.m85{transform:matrix(0.250534,0.000000,-0.083503,0.235642,0,0);-ms-transform:matrix(0.250534,0.000000,-0.083503,0.235642,0,0);-webkit-transform:matrix(0.250534,0.000000,-0.083503,0.235642,0,0);}
.m53{transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252369,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252992,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253040,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.253303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253303,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.253364,0.000000,-0.084446,0.235306,0,0);-ms-transform:matrix(0.253364,0.000000,-0.084446,0.235306,0,0);-webkit-transform:matrix(0.253364,0.000000,-0.084446,0.235306,0,0);}
.m10{transform:matrix(0.253376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253376,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254854,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.255829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255829,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.256041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256041,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.256439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256439,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257025,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.257244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257244,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257677,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.257794,0.000000,-0.085923,0.234771,0,0);-ms-transform:matrix(0.257794,0.000000,-0.085923,0.234771,0,0);-webkit-transform:matrix(0.257794,0.000000,-0.085923,0.234771,0,0);}
.m68{transform:matrix(0.257992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257992,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.258661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258661,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.258967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258967,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259042,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.259312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259312,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.259427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259427,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.259480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259480,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259495,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.260341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260341,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.260406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260406,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.260408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260408,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.260412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260412,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.260532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260532,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.260696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260696,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.261163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261163,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.261226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261226,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.261349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261349,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.261554,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261554,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261554,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.261763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261763,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.261917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261917,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.261999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261999,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.262181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262181,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.262435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262435,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.263011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263011,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.263647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263647,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264212,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264286,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264980,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265799,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.265902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265902,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.265994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265994,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.267246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267246,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.269186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269186,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.274059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274059,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.276863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276863,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v11{vertical-align:-98.400000px;}
.v1{vertical-align:-97.200000px;}
.vb{vertical-align:-74.434249px;}
.vf{vertical-align:-55.701262px;}
.ve{vertical-align:-50.202438px;}
.va{vertical-align:-44.049360px;}
.v8{vertical-align:-32.917269px;}
.v3{vertical-align:-31.328616px;}
.v6{vertical-align:-18.000000px;}
.v7{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v4{vertical-align:19.042082px;}
.v9{vertical-align:30.000000px;}
.v5{vertical-align:36.000000px;}
.v10{vertical-align:49.368611px;}
.vd{vertical-align:72.120000px;}
.vc{vertical-align:84.000000px;}
.ls31{letter-spacing:-1.793969px;}
.ls59{letter-spacing:-1.449969px;}
.ls41{letter-spacing:-1.398815px;}
.ls98{letter-spacing:-1.216713px;}
.ls36{letter-spacing:-0.680304px;}
.lsac{letter-spacing:-0.640735px;}
.lsab{letter-spacing:-0.600000px;}
.ls2e{letter-spacing:-0.552000px;}
.ls2f{letter-spacing:-0.542034px;}
.lsaa{letter-spacing:-0.532021px;}
.ls5c{letter-spacing:-0.372000px;}
.ls47{letter-spacing:-0.220770px;}
.lsc{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.180000px;}
.lsa9{letter-spacing:0.414227px;}
.ls99{letter-spacing:0.434385px;}
.ls9a{letter-spacing:0.468219px;}
.lsa3{letter-spacing:0.552000px;}
.lsa{letter-spacing:0.600000px;}
.lsa8{letter-spacing:0.660000px;}
.lsa1{letter-spacing:0.732000px;}
.ls7a{letter-spacing:3.000000px;}
.ls53{letter-spacing:3.903329px;}
.ls56{letter-spacing:4.200000px;}
.ls3{letter-spacing:5.400000px;}
.lsa0{letter-spacing:5.460000px;}
.lsa2{letter-spacing:5.700000px;}
.ls54{letter-spacing:7.068486px;}
.ls6{letter-spacing:7.800000px;}
.ls9{letter-spacing:8.389584px;}
.lsb{letter-spacing:8.539958px;}
.ls1b{letter-spacing:9.000000px;}
.ls77{letter-spacing:9.051200px;}
.ls79{letter-spacing:9.756203px;}
.ls51{letter-spacing:10.200000px;}
.ls1f{letter-spacing:11.213718px;}
.ls6f{letter-spacing:11.400000px;}
.ls50{letter-spacing:11.460000px;}
.ls1{letter-spacing:13.860000px;}
.ls19{letter-spacing:15.000000px;}
.ls1a{letter-spacing:16.200000px;}
.ls76{letter-spacing:17.400000px;}
.ls1c{letter-spacing:18.600000px;}
.ls25{letter-spacing:18.687296px;}
.ls78{letter-spacing:19.789869px;}
.ls55{letter-spacing:19.826149px;}
.ls68{letter-spacing:22.591290px;}
.ls60{letter-spacing:23.704962px;}
.lse{letter-spacing:24.051020px;}
.ls10{letter-spacing:24.166372px;}
.ls75{letter-spacing:24.660000px;}
.ls2c{letter-spacing:24.951620px;}
.ls63{letter-spacing:26.473424px;}
.ls7b{letter-spacing:28.200000px;}
.ls57{letter-spacing:28.260000px;}
.ls52{letter-spacing:30.600000px;}
.ls1e{letter-spacing:31.283298px;}
.ls58{letter-spacing:31.660063px;}
.ls3a{letter-spacing:31.779644px;}
.ls94{letter-spacing:31.894997px;}
.ls87{letter-spacing:32.044975px;}
.ls66{letter-spacing:32.285999px;}
.lsd{letter-spacing:32.471760px;}
.ls22{letter-spacing:33.000000px;}
.ls9e{letter-spacing:33.971104px;}
.ls26{letter-spacing:34.200000px;}
.ls21{letter-spacing:36.370085px;}
.ls1d{letter-spacing:36.769819px;}
.lsa7{letter-spacing:40.218000px;}
.ls11{letter-spacing:40.424396px;}
.ls8a{letter-spacing:45.820475px;}
.ls8d{letter-spacing:46.256397px;}
.ls3b{letter-spacing:46.429426px;}
.ls7f{letter-spacing:47.250677px;}
.lsf{letter-spacing:47.409923px;}
.ls5{letter-spacing:48.823281px;}
.ls4e{letter-spacing:48.866624px;}
.ls9d{letter-spacing:50.978772px;}
.ls4{letter-spacing:53.143813px;}
.ls9f{letter-spacing:53.460039px;}
.ls8{letter-spacing:54.645054px;}
.ls13{letter-spacing:56.435866px;}
.ls12{letter-spacing:59.479872px;}
.ls7{letter-spacing:68.207711px;}
.ls5f{letter-spacing:73.720055px;}
.ls3c{letter-spacing:74.715365px;}
.ls5a{letter-spacing:78.103539px;}
.ls5b{letter-spacing:79.062210px;}
.ls62{letter-spacing:80.353385px;}
.ls7c{letter-spacing:81.481777px;}
.ls5e{letter-spacing:101.548031px;}
.ls7e{letter-spacing:106.905481px;}
.ls65{letter-spacing:109.705966px;}
.ls16{letter-spacing:109.918337px;}
.ls67{letter-spacing:117.612865px;}
.ls29{letter-spacing:117.827804px;}
.ls28{letter-spacing:120.486009px;}
.ls83{letter-spacing:132.735530px;}
.ls81{letter-spacing:133.820179px;}
.ls2b{letter-spacing:136.496474px;}
.ls61{letter-spacing:136.736737px;}
.ls5d{letter-spacing:138.015219px;}
.ls30{letter-spacing:139.111061px;}
.ls7d{letter-spacing:139.902503px;}
.ls18{letter-spacing:141.265418px;}
.ls64{letter-spacing:141.363626px;}
.ls15{letter-spacing:144.813047px;}
.ls4c{letter-spacing:147.301338px;}
.ls85{letter-spacing:148.160871px;}
.ls82{letter-spacing:148.302518px;}
.ls80{letter-spacing:149.174885px;}
.ls6e{letter-spacing:149.293286px;}
.ls96{letter-spacing:149.670013px;}
.ls27{letter-spacing:151.850146px;}
.ls4a{letter-spacing:151.862692px;}
.ls4b{letter-spacing:152.349236px;}
.ls46{letter-spacing:154.356232px;}
.ls14{letter-spacing:154.641723px;}
.ls48{letter-spacing:155.572594px;}
.ls42{letter-spacing:158.491860px;}
.ls44{letter-spacing:158.917587px;}
.ls45{letter-spacing:159.404131px;}
.ls49{letter-spacing:163.357305px;}
.ls17{letter-spacing:164.412242px;}
.ls2a{letter-spacing:164.528558px;}
.ls84{letter-spacing:168.134344px;}
.ls43{letter-spacing:170.412200px;}
.ls9b{letter-spacing:173.325686px;}
.ls32{letter-spacing:174.369190px;}
.ls33{letter-spacing:174.769119px;}
.ls95{letter-spacing:178.450490px;}
.ls37{letter-spacing:184.131858px;}
.ls4f{letter-spacing:184.539798px;}
.ls9c{letter-spacing:187.956025px;}
.ls4d{letter-spacing:188.543844px;}
.ls35{letter-spacing:195.108382px;}
.lsa4{letter-spacing:195.473026px;}
.ls39{letter-spacing:195.657669px;}
.ls71{letter-spacing:195.933074px;}
.ls24{letter-spacing:198.180978px;}
.ls23{letter-spacing:201.315857px;}
.ls34{letter-spacing:207.449059px;}
.ls3e{letter-spacing:214.223996px;}
.ls3d{letter-spacing:214.527515px;}
.ls38{letter-spacing:216.235458px;}
.ls2d{letter-spacing:235.088622px;}
.ls86{letter-spacing:241.296920px;}
.ls93{letter-spacing:257.529242px;}
.lsad{letter-spacing:260.394638px;}
.ls91{letter-spacing:262.233746px;}
.ls72{letter-spacing:263.210147px;}
.ls8c{letter-spacing:266.124405px;}
.ls8b{letter-spacing:268.124052px;}
.ls3f{letter-spacing:286.027329px;}
.ls70{letter-spacing:307.973650px;}
.ls40{letter-spacing:320.754440px;}
.ls73{letter-spacing:352.278224px;}
.ls6c{letter-spacing:359.564690px;}
.ls6b{letter-spacing:365.397380px;}
.ls6d{letter-spacing:369.580526px;}
.ls6a{letter-spacing:402.080448px;}
.ls69{letter-spacing:425.840253px;}
.ls89{letter-spacing:428.158092px;}
.ls88{letter-spacing:430.193616px;}
.ls8e{letter-spacing:441.122055px;}
.ls90{letter-spacing:442.096477px;}
.ls97{letter-spacing:491.056067px;}
.lsae{letter-spacing:502.360623px;}
.ls74{letter-spacing:515.413060px;}
.lsa5{letter-spacing:526.573425px;}
.ls8f{letter-spacing:545.446479px;}
.ls92{letter-spacing:726.798651px;}
.ls0{letter-spacing:924.930000px;}
.lsa6{letter-spacing:939.330000px;}
.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;}
}
.ws8c{word-spacing:-188.023673px;}
.ws4d{word-spacing:-109.779582px;}
.ws5d{word-spacing:-106.979097px;}
.ws44{word-spacing:-101.621501px;}
.ws1f{word-spacing:-74.789073px;}
.ws84{word-spacing:-69.880612px;}
.ws1{word-spacing:-42.221064px;}
.ws2{word-spacing:-40.498012px;}
.ws8f{word-spacing:-34.014097px;}
.ws19{word-spacing:-31.949446px;}
.ws82{word-spacing:-26.546516px;}
.ws88{word-spacing:-24.154243px;}
.ws86{word-spacing:-22.387243px;}
.ws97{word-spacing:-21.552000px;}
.ws93{word-spacing:-21.429915px;}
.ws0{word-spacing:-21.000000px;}
.ws43{word-spacing:-20.628000px;}
.ws96{word-spacing:-20.448000px;}
.ws3c{word-spacing:-19.807132px;}
.ws91{word-spacing:-19.397027px;}
.ws95{word-spacing:-17.923743px;}
.ws98{word-spacing:-16.450749px;}
.ws1e{word-spacing:-0.073708px;}
.ws12{word-spacing:-0.073616px;}
.ws42{word-spacing:-0.073470px;}
.wsf{word-spacing:-0.068299px;}
.ws3d{word-spacing:-0.067648px;}
.ws6{word-spacing:0.000000px;}
.ws8a{word-spacing:1.140174px;}
.ws39{word-spacing:1.373587px;}
.ws2c{word-spacing:1.940725px;}
.ws27{word-spacing:5.292514px;}
.ws5{word-spacing:15.125340px;}
.ws55{word-spacing:19.474037px;}
.ws1c{word-spacing:22.082273px;}
.ws37{word-spacing:22.837339px;}
.ws33{word-spacing:23.102118px;}
.ws41{word-spacing:23.151031px;}
.ws1a{word-spacing:23.200363px;}
.ws40{word-spacing:23.305371px;}
.ws65{word-spacing:23.650518px;}
.ws77{word-spacing:23.700629px;}
.ws68{word-spacing:24.007526px;}
.ws7a{word-spacing:24.038931px;}
.ws59{word-spacing:24.084950px;}
.ws6d{word-spacing:24.149582px;}
.ws50{word-spacing:24.440401px;}
.wsb{word-spacing:24.656080px;}
.ws22{word-spacing:25.182052px;}
.ws21{word-spacing:25.330619px;}
.ws25{word-spacing:25.402766px;}
.wsd{word-spacing:25.714543px;}
.ws38{word-spacing:25.891170px;}
.ws4{word-spacing:26.932366px;}
.ws1d{word-spacing:27.043797px;}
.ws11{word-spacing:27.086706px;}
.ws5f{word-spacing:27.396320px;}
.ws36{word-spacing:27.816410px;}
.ws4a{word-spacing:27.858407px;}
.ws8{word-spacing:28.012748px;}
.ws34{word-spacing:28.376236px;}
.ws2f{word-spacing:29.083958px;}
.ws54{word-spacing:29.505336px;}
.ws46{word-spacing:29.570688px;}
.ws75{word-spacing:29.643265px;}
.ws53{word-spacing:29.846833px;}
.ws79{word-spacing:29.978783px;}
.ws31{word-spacing:30.128626px;}
.ws67{word-spacing:30.186977px;}
.ws2a{word-spacing:30.272485px;}
.wsa{word-spacing:30.393228px;}
.ws9{word-spacing:30.529827px;}
.ws4e{word-spacing:30.568525px;}
.ws5a{word-spacing:30.712716px;}
.ws4b{word-spacing:31.105016px;}
.ws7c{word-spacing:31.385814px;}
.ws20{word-spacing:31.644702px;}
.ws24{word-spacing:31.716319px;}
.ws70{word-spacing:31.824469px;}
.wsc{word-spacing:31.959503px;}
.ws17{word-spacing:32.391143px;}
.ws3{word-spacing:32.642954px;}
.ws3a{word-spacing:32.767819px;}
.ws10{word-spacing:33.568995px;}
.ws49{word-spacing:34.340696px;}
.ws7{word-spacing:34.495036px;}
.ws29{word-spacing:36.564688px;}
.ws2e{word-spacing:36.844341px;}
.ws18{word-spacing:38.354058px;}
.ws16{word-spacing:38.795756px;}
.ws8d{word-spacing:47.895052px;}
.ws45{word-spacing:56.453163px;}
.ws3e{word-spacing:59.733519px;}
.ws3f{word-spacing:60.680596px;}
.ws48{word-spacing:61.244263px;}
.ws5c{word-spacing:62.396915px;}
.ws7f{word-spacing:63.783308px;}
.ws56{word-spacing:65.571670px;}
.ws52{word-spacing:65.967454px;}
.ws58{word-spacing:66.184489px;}
.ws5b{word-spacing:66.255836px;}
.ws5e{word-spacing:69.428041px;}
.ws14{word-spacing:71.621485px;}
.ws89{word-spacing:73.412544px;}
.ws3b{word-spacing:74.367438px;}
.ws81{word-spacing:78.018975px;}
.ws92{word-spacing:78.273859px;}
.ws47{word-spacing:80.691713px;}
.ws32{word-spacing:82.853720px;}
.ws1b{word-spacing:82.948287px;}
.ws90{word-spacing:83.666752px;}
.ws4c{word-spacing:85.015728px;}
.ws13{word-spacing:88.440401px;}
.ws15{word-spacing:90.885669px;}
.ws8b{word-spacing:93.198153px;}
.ws78{word-spacing:97.668965px;}
.ws8e{word-spacing:98.056824px;}
.ws57{word-spacing:102.885559px;}
.ws7d{word-spacing:104.590388px;}
.ws85{word-spacing:109.216268px;}
.ws94{word-spacing:111.448018px;}
.wse{word-spacing:119.817081px;}
.ws80{word-spacing:121.245107px;}
.ws87{word-spacing:121.465743px;}
.ws6f{word-spacing:121.529220px;}
.ws6a{word-spacing:122.239502px;}
.ws73{word-spacing:122.807727px;}
.ws6e{word-spacing:122.899708px;}
.ws69{word-spacing:123.729551px;}
.ws63{word-spacing:132.367481px;}
.ws2b{word-spacing:140.665682px;}
.ws30{word-spacing:141.644469px;}
.ws6c{word-spacing:147.670514px;}
.ws66{word-spacing:148.500357px;}
.ws51{word-spacing:169.208321px;}
.ws60{word-spacing:176.273688px;}
.ws28{word-spacing:196.589327px;}
.ws2d{word-spacing:197.730630px;}
.ws83{word-spacing:218.777244px;}
.ws9a{word-spacing:231.162046px;}
.ws62{word-spacing:240.582943px;}
.ws99{word-spacing:243.253073px;}
.ws76{word-spacing:249.659886px;}
.ws72{word-spacing:277.499409px;}
.ws4f{word-spacing:332.865283px;}
.ws61{word-spacing:370.138697px;}
.ws6b{word-spacing:400.786515px;}
.ws64{word-spacing:401.505004px;}
.ws7e{word-spacing:427.285500px;}
.ws71{word-spacing:427.512391px;}
.ws74{word-spacing:480.083380px;}
.ws7b{word-spacing:480.334133px;}
.ws26{word-spacing:524.507003px;}
.ws23{word-spacing:525.570388px;}
.ws35{word-spacing:860.875203px;}
._d6{margin-left:-1162.392238px;}
._d9{margin-left:-1135.873858px;}
._1c{margin-left:-979.182410px;}
._20{margin-left:-861.771384px;}
._34{margin-left:-795.622034px;}
._72{margin-left:-745.047106px;}
._e8{margin-left:-679.504342px;}
._6e{margin-left:-605.613663px;}
._e9{margin-left:-589.948692px;}
._98{margin-left:-531.522914px;}
._2b{margin-left:-530.242079px;}
._57{margin-left:-523.142333px;}
._40{margin-left:-501.521646px;}
._3d{margin-left:-429.026274px;}
._e6{margin-left:-392.720221px;}
._e7{margin-left:-388.841027px;}
._77{margin-left:-383.683637px;}
._af{margin-left:-331.151411px;}
._87{margin-left:-329.998758px;}
._3a{margin-left:-311.108343px;}
._81{margin-left:-299.332622px;}
._df{margin-left:-293.436526px;}
._e0{margin-left:-265.202806px;}
._76{margin-left:-257.343578px;}
._9b{margin-left:-253.505264px;}
._79{margin-left:-243.169305px;}
._e1{margin-left:-235.777973px;}
._8c{margin-left:-233.839594px;}
._b0{margin-left:-231.033021px;}
._7f{margin-left:-225.555905px;}
._30{margin-left:-223.034344px;}
._43{margin-left:-218.122394px;}
._26{margin-left:-206.827776px;}
._19{margin-left:-205.262006px;}
._18{margin-left:-195.983268px;}
._88{margin-left:-188.620091px;}
._7b{margin-left:-185.646414px;}
._75{margin-left:-180.476423px;}
._28{margin-left:-174.941640px;}
._82{margin-left:-161.911791px;}
._4d{margin-left:-151.381637px;}
._4c{margin-left:-145.624916px;}
._7c{margin-left:-132.732545px;}
._83{margin-left:-125.900205px;}
._27{margin-left:-118.503276px;}
._e2{margin-left:-110.054858px;}
._de{margin-left:-104.565568px;}
._7e{margin-left:-97.470281px;}
._7a{margin-left:-96.400632px;}
._7d{margin-left:-89.336698px;}
._e3{margin-left:-73.459318px;}
._31{margin-left:-70.150913px;}
._e4{margin-left:-56.583549px;}
._2{margin-left:-2.268000px;}
._1{margin-left:-1.092000px;}
._0{width:1.266000px;}
._7{width:2.568000px;}
._13{width:3.588000px;}
._f{width:4.794000px;}
._e{width:6.282000px;}
._10{width:7.446000px;}
._12{width:8.466000px;}
._17{width:9.540000px;}
._d{width:10.872000px;}
._4{width:12.120000px;}
._11{width:13.134000px;}
._5{width:14.256000px;}
._15{width:16.038000px;}
._16{width:17.070000px;}
._14{width:18.222000px;}
._2f{width:19.740000px;}
._6{width:22.596000px;}
._3{width:24.276000px;}
._24{width:25.800000px;}
._6c{width:26.816285px;}
._29{width:28.002750px;}
._45{width:29.070335px;}
._48{width:30.188424px;}
._50{width:31.496136px;}
._c{width:32.670000px;}
._39{width:33.768000px;}
._a{width:35.358000px;}
._b{width:36.384000px;}
._52{width:37.498511px;}
._8{width:38.796000px;}
._9{width:40.746000px;}
._38{width:42.289217px;}
._35{width:44.141299px;}
._ce{width:46.148825px;}
._eb{width:47.688000px;}
._ea{width:48.810000px;}
._db{width:52.242000px;}
._5f{width:53.283577px;}
._63{width:54.542018px;}
._c0{width:56.538433px;}
._53{width:57.600000px;}
._3e{width:59.423064px;}
._4b{width:60.600000px;}
._9a{width:61.606050px;}
._64{width:63.000000px;}
._70{width:64.130435px;}
._42{width:65.812914px;}
._80{width:66.994472px;}
._65{width:69.492456px;}
._33{width:70.533290px;}
._aa{width:72.047749px;}
._22{width:73.157258px;}
._78{width:74.222331px;}
._1e{width:75.245330px;}
._e5{width:76.944000px;}
._3c{width:81.253577px;}
._67{width:84.457791px;}
._68{width:89.060775px;}
._3b{width:90.467889px;}
._5a{width:93.006844px;}
._56{width:94.195278px;}
._99{width:95.247932px;}
._84{width:96.656956px;}
._2e{width:97.800000px;}
._54{width:99.028893px;}
._c9{width:100.293791px;}
._2c{width:101.412973px;}
._93{width:102.447816px;}
._44{width:103.800000px;}
._6a{width:106.200000px;}
._96{width:108.997612px;}
._37{width:111.124950px;}
._4f{width:112.182511px;}
._a6{width:114.324854px;}
._bd{width:115.812662px;}
._66{width:118.770948px;}
._2d{width:121.299172px;}
._36{width:123.240656px;}
._a5{width:125.764148px;}
._9e{width:127.125969px;}
._74{width:129.256685px;}
._a7{width:130.689111px;}
._5c{width:138.666558px;}
._1d{width:140.526759px;}
._9f{width:144.421092px;}
._a1{width:145.442458px;}
._d5{width:147.877583px;}
._95{width:148.949464px;}
._89{width:150.054225px;}
._23{width:151.407744px;}
._71{width:152.425963px;}
._60{width:154.858094px;}
._d2{width:156.367997px;}
._3f{width:160.092000px;}
._41{width:162.912727px;}
._a0{width:165.443599px;}
._51{width:168.920313px;}
._5e{width:171.077994px;}
._1f{width:172.320842px;}
._8a{width:174.790340px;}
._bb{width:176.678506px;}
._cb{width:179.400000px;}
._8f{width:180.920842px;}
._55{width:182.421897px;}
._6f{width:183.847487px;}
._c2{width:185.469850px;}
._46{width:187.280040px;}
._86{width:189.982749px;}
._25{width:191.400000px;}
._32{width:193.388095px;}
._2a{width:196.749211px;}
._a8{width:199.269266px;}
._cd{width:200.558946px;}
._49{width:202.374253px;}
._a2{width:206.484347px;}
._c6{width:208.954399px;}
._92{width:210.446992px;}
._4e{width:212.044261px;}
._1a{width:214.451240px;}
._ae{width:216.358829px;}
._59{width:217.366905px;}
._d1{width:218.405037px;}
._1b{width:219.820745px;}
._5d{width:221.765181px;}
._61{width:223.457985px;}
._58{width:228.413489px;}
._ba{width:232.580334px;}
._94{width:234.526915px;}
._47{width:237.733842px;}
._dc{width:240.192099px;}
._d7{width:242.022691px;}
._8d{width:245.991051px;}
._97{width:249.739082px;}
._4a{width:252.882271px;}
._73{width:260.305836px;}
._a4{width:263.410026px;}
._a3{width:268.040253px;}
._62{width:270.914273px;}
._ed{width:272.901176px;}
._69{width:274.156545px;}
._ee{width:276.251567px;}
._b3{width:282.562447px;}
._5b{width:284.673411px;}
._85{width:287.560492px;}
._8b{width:289.566850px;}
._b9{width:292.366301px;}
._9d{width:294.221377px;}
._ac{width:298.557419px;}
._9c{width:300.302475px;}
._b4{width:302.074087px;}
._6b{width:305.781382px;}
._c7{width:307.206080px;}
._bc{width:311.586186px;}
._21{width:312.693261px;}
._d8{width:317.505060px;}
._dd{width:322.697108px;}
._a9{width:326.835795px;}
._bf{width:330.982773px;}
._ad{width:340.939988px;}
._b7{width:352.186898px;}
._da{width:357.529091px;}
._6d{width:359.244776px;}
._c4{width:364.466927px;}
._d0{width:369.443675px;}
._90{width:406.907441px;}
._b6{width:417.289204px;}
._91{width:419.863028px;}
._ca{width:422.475628px;}
._b1{width:430.290301px;}
._8e{width:468.693351px;}
._ab{width:499.189781px;}
._b8{width:541.221503px;}
._b5{width:560.452216px;}
._c1{width:561.619837px;}
._c5{width:587.831234px;}
._d4{width:623.698468px;}
._be{width:635.613632px;}
._d3{width:685.972613px;}
._c8{width:688.813740px;}
._c3{width:690.873558px;}
._cc{width:692.090520px;}
._cf{width:699.291596px;}
._ec{width:843.330000px;}
._b2{width:844.743885px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs39{font-size:39.698350px;}
.fs1b{font-size:40.112071px;}
.fs4{font-size:40.730430px;}
.fs24{font-size:40.760798px;}
.fs3f{font-size:41.492137px;}
.fs36{font-size:42.033071px;}
.fs14{font-size:42.845598px;}
.fsa{font-size:42.992928px;}
.fs28{font-size:43.308577px;}
.fs23{font-size:53.334576px;}
.fs50{font-size:54.000000px;}
.fs52{font-size:59.175356px;}
.fs1{font-size:60.000000px;}
.fs55{font-size:61.742617px;}
.fs2b{font-size:66.387614px;}
.fs54{font-size:67.008409px;}
.fs31{font-size:67.648379px;}
.fs3a{font-size:68.091038px;}
.fs10{font-size:68.299390px;}
.fs1c{font-size:68.800658px;}
.fs32{font-size:69.523600px;}
.fs5{font-size:69.742189px;}
.fs7{font-size:69.880612px;}
.fs1a{font-size:69.913361px;}
.fs12{font-size:70.249336px;}
.fs17{font-size:70.959327px;}
.fsd{font-size:71.028182px;}
.fs4e{font-size:71.770214px;}
.fs53{font-size:72.011659px;}
.fs11{font-size:72.090948px;}
.fs37{font-size:72.095578px;}
.fs3b{font-size:72.343127px;}
.fs30{font-size:72.553598px;}
.fs2c{font-size:72.775931px;}
.fs9{font-size:72.920663px;}
.fs15{font-size:73.470122px;}
.fsb{font-size:73.616234px;}
.fs4c{font-size:73.619264px;}
.fs6{font-size:73.693521px;}
.fs1f{font-size:73.707691px;}
.fs35{font-size:73.848739px;}
.fs33{font-size:73.850682px;}
.fs2{font-size:73.855155px;}
.fs51{font-size:73.867108px;}
.fs49{font-size:73.871829px;}
.fs27{font-size:73.874335px;}
.fs1e{font-size:73.876060px;}
.fs8{font-size:73.918988px;}
.fs1d{font-size:73.976011px;}
.fs46{font-size:73.976953px;}
.fs48{font-size:73.981036px;}
.fs26{font-size:74.041980px;}
.fs45{font-size:74.106464px;}
.fs25{font-size:74.126228px;}
.fs22{font-size:74.277095px;}
.fs20{font-size:74.283339px;}
.fs41{font-size:75.016151px;}
.fs47{font-size:75.064550px;}
.fs42{font-size:75.082520px;}
.fs43{font-size:75.112253px;}
.fs40{font-size:75.142338px;}
.fsf{font-size:75.152994px;}
.fse{font-size:75.158209px;}
.fs4f{font-size:75.240486px;}
.fs3{font-size:75.800987px;}
.fs13{font-size:75.989211px;}
.fs38{font-size:76.066966px;}
.fs3c{font-size:76.086085px;}
.fs3d{font-size:76.173649px;}
.fs2f{font-size:76.381863px;}
.fs4b{font-size:76.539469px;}
.fs34{font-size:76.843492px;}
.fsc{font-size:77.170104px;}
.fs4d{font-size:77.243571px;}
.fs16{font-size:77.411334px;}
.fs19{font-size:77.487571px;}
.fs29{font-size:78.155098px;}
.fs18{font-size:80.892286px;}
.fs0{font-size:84.000000px;}
.fs2a{font-size:87.592638px;}
.fs2d{font-size:100.779174px;}
.fs21{font-size:101.633058px;}
.fs2e{font-size:104.435618px;}
.fs4a{font-size:104.593223px;}
.fs44{font-size:111.917367px;}
.fs3e{font-size:113.785834px;}
.y0{bottom:0.000000px;}
.y14c{bottom:2.567261px;}
.y28{bottom:3.576865px;}
.y40{bottom:3.772118px;}
.y80{bottom:3.944659px;}
.yb8{bottom:4.038752px;}
.y12f{bottom:4.081883px;}
.ye5{bottom:4.317385px;}
.y4c{bottom:4.389923px;}
.y2e{bottom:4.405172px;}
.y2b{bottom:4.440210px;}
.yc1{bottom:4.463978px;}
.yaa{bottom:4.546359px;}
.yd3{bottom:4.607088px;}
.y34{bottom:4.686856px;}
.yb1{bottom:4.723688px;}
.y4b{bottom:4.785858px;}
.ya5{bottom:4.932910px;}
.y25{bottom:4.953580px;}
.y14e{bottom:5.134521px;}
.ye4{bottom:5.734070px;}
.y69{bottom:6.441382px;}
.y64{bottom:6.614831px;}
.yd0{bottom:6.785509px;}
.y78{bottom:7.028295px;}
.yb9{bottom:7.390642px;}
.y48{bottom:7.424950px;}
.y55{bottom:7.516809px;}
.y58{bottom:7.678472px;}
.ydf{bottom:7.791630px;}
.y30{bottom:7.822900px;}
.y9b{bottom:7.859384px;}
.y51{bottom:7.934353px;}
.y11a{bottom:8.003283px;}
.y14a{bottom:8.344239px;}
.yae{bottom:8.350537px;}
.y39{bottom:8.389301px;}
.y97{bottom:8.668992px;}
.y2c{bottom:8.950209px;}
.y6d{bottom:9.447376px;}
.yb5{bottom:9.484361px;}
.y116{bottom:9.630003px;}
.ya0{bottom:9.668301px;}
.y98{bottom:9.864720px;}
.y9f{bottom:9.974055px;}
.ya1{bottom:11.349793px;}
.yf8{bottom:13.114450px;}
.yf6{bottom:15.158844px;}
.ye3{bottom:15.684532px;}
.y8a{bottom:15.757216px;}
.yd2{bottom:15.963305px;}
.y5f{bottom:16.163670px;}
.y50{bottom:16.200198px;}
.ycd{bottom:16.213699px;}
.ye2{bottom:16.460760px;}
.ydc{bottom:16.729240px;}
.y94{bottom:16.742130px;}
.y2a{bottom:16.782363px;}
.y7d{bottom:16.848123px;}
.y3e{bottom:17.697434px;}
.y103{bottom:17.766861px;}
.y7f{bottom:18.506935px;}
.y6a{bottom:19.903108px;}
.y65{bottom:20.294985px;}
.y148{bottom:20.552204px;}
.yce{bottom:20.891633px;}
.ydd{bottom:21.115344px;}
.y76{bottom:21.563536px;}
.yf7{bottom:25.665059px;}
.y104{bottom:28.122174px;}
.y89{bottom:28.260721px;}
.ydb{bottom:28.771900px;}
.y3f{bottom:28.908813px;}
.ycc{bottom:28.963133px;}
.y8b{bottom:28.987735px;}
.y93{bottom:29.879968px;}
.y7e{bottom:30.231136px;}
.ye1{bottom:30.626222px;}
.y68{bottom:30.775321px;}
.yd1{bottom:30.963333px;}
.y63{bottom:31.307325px;}
.yde{bottom:31.874029px;}
.ye0{bottom:32.077128px;}
.ycf{bottom:32.284526px;}
.y77{bottom:33.264209px;}
.y67{bottom:38.511670px;}
.y144{bottom:41.796286px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y3d{bottom:105.450000px;}
.yeb{bottom:105.750000px;}
.y145{bottom:106.138254px;}
.y41{bottom:123.337500px;}
.y95{bottom:125.437500px;}
.y92{bottom:125.550000px;}
.yec{bottom:126.637500px;}
.y3c{bottom:156.630000px;}
.yea{bottom:161.745000px;}
.y146{bottom:170.478938px;}
.y91{bottom:176.475000px;}
.y90{bottom:176.550000px;}
.y3b{bottom:180.675000px;}
.ye9{bottom:180.975000px;}
.ye8{bottom:181.050000px;}
.ye7{bottom:189.975000px;}
.y3a{bottom:204.975000px;}
.yda{bottom:209.550000px;}
.y8f{bottom:210.375000px;}
.y38{bottom:223.950000px;}
.y8e{bottom:229.275000px;}
.y8d{bottom:229.350000px;}
.y37{bottom:231.375000px;}
.ye6{bottom:231.975000px;}
.y147{bottom:234.827324px;}
.y36{bottom:256.275000px;}
.yd9{bottom:265.575000px;}
.y35{bottom:275.175000px;}
.y33{bottom:275.250000px;}
.y8c{bottom:277.275000px;}
.y88{bottom:277.350000px;}
.y32{bottom:284.175000px;}
.yd8{bottom:284.775000px;}
.yd7{bottom:284.850000px;}
.yd5{bottom:287.850000px;}
.yd6{bottom:292.275000px;}
.y31{bottom:308.775000px;}
.ycb{bottom:311.850000px;}
.y12b{bottom:323.475000px;}
.y29{bottom:328.050000px;}
.y2f{bottom:329.550000px;}
.y87{bottom:330.375000px;}
.yd4{bottom:332.820000px;}
.y2d{bottom:337.005000px;}
.y12a{bottom:343.320000px;}
.y129{bottom:343.350000px;}
.y128{bottom:347.820000px;}
.y85{bottom:349.320000px;}
.y84{bottom:349.350000px;}
.y26{bottom:357.120000px;}
.y24{bottom:357.150000px;}
.y27{bottom:358.650000px;}
.y23{bottom:361.620000px;}
.y86{bottom:367.320000px;}
.yca{bottom:367.905000px;}
.y127{bottom:371.820000px;}
.y22{bottom:385.905000px;}
.yc7{bottom:386.850000px;}
.y125{bottom:391.050000px;}
.yc9{bottom:391.350000px;}
.y126{bottom:392.550000px;}
.yc8{bottom:395.820000px;}
.y124{bottom:400.005000px;}
.y83{bottom:402.705000px;}
.y21{bottom:409.905000px;}
.yc5{bottom:415.650000px;}
.y123{bottom:420.450000px;}
.yc6{bottom:424.620000px;}
.y82{bottom:426.705000px;}
.y122{bottom:429.405000px;}
.y20{bottom:434.205000px;}
.y7c{bottom:445.650000px;}
.yc4{bottom:448.620000px;}
.y121{bottom:449.505000px;}
.y120{bottom:449.550000px;}
.y11f{bottom:454.005000px;}
.y1f{bottom:458.205000px;}
.y81{bottom:463.620000px;}
.yc2{bottom:467.550000px;}
.y11e{bottom:473.250000px;}
.yc3{bottom:475.005000px;}
.y142{bottom:481.320000px;}
.y11d{bottom:482.205000px;}
.y1e{bottom:482.505000px;}
.ybf{bottom:494.850000px;}
.y7b{bottom:499.005000px;}
.yc0{bottom:499.350000px;}
.ybe{bottom:503.850000px;}
.y141{bottom:506.250000px;}
.y1d{bottom:506.550000px;}
.y11c{bottom:506.850000px;}
.y7a{bottom:523.050000px;}
.ybc{bottom:523.350000px;}
.y140{bottom:530.250000px;}
.y1c{bottom:530.850000px;}
.y11b{bottom:531.150000px;}
.ybd{bottom:532.350000px;}
.y75{bottom:541.950000px;}
.y119{bottom:550.050000px;}
.ybb{bottom:551.250000px;}
.y118{bottom:553.050000px;}
.y13f{bottom:554.550000px;}
.y1b{bottom:554.850000px;}
.y117{bottom:557.550000px;}
.yba{bottom:558.750000px;}
.y79{bottom:562.950000px;}
.y115{bottom:577.050000px;}
.yb4{bottom:578.550000px;}
.y1a{bottom:579.150000px;}
.y114{bottom:580.050000px;}
.yb7{bottom:583.050000px;}
.yb6{bottom:587.550000px;}
.y74{bottom:598.050000px;}
.y13e{bottom:602.850000px;}
.y19{bottom:603.150000px;}
.y113{bottom:609.150000px;}
.yb3{bottom:612.150000px;}
.y73{bottom:622.350000px;}
.y13d{bottom:626.850000px;}
.y18{bottom:627.450000px;}
.yb2{bottom:631.050000px;}
.y112{bottom:637.950000px;}
.y72{bottom:641.850000px;}
.y71{bottom:646.350000px;}
.y111{bottom:646.950000px;}
.y13c{bottom:651.150000px;}
.y17{bottom:651.450000px;}
.y70{bottom:665.550000px;}
.y110{bottom:671.580000px;}
.y16{bottom:675.195000px;}
.y10f{bottom:695.880000px;}
.y15{bottom:699.195000px;}
.y13b{bottom:699.480000px;}
.y6c{bottom:718.350000px;}
.y6f{bottom:718.380000px;}
.y10e{bottom:719.880000px;}
.y13a{bottom:723.480000px;}
.y14{bottom:724.080000px;}
.y6e{bottom:727.380000px;}
.y10d{bottom:738.750000px;}
.y10c{bottom:746.280000px;}
.y139{bottom:747.780000px;}
.y13{bottom:748.080000px;}
.y6b{bottom:751.980000px;}
.y109{bottom:766.050000px;}
.y10b{bottom:769.050000px;}
.y62{bottom:770.850000px;}
.y66{bottom:770.880000px;}
.y138{bottom:771.795000px;}
.y12{bottom:772.380000px;}
.y10a{bottom:787.080000px;}
.y11{bottom:796.380000px;}
.y107{bottom:814.950000px;}
.y137{bottom:820.080000px;}
.y10{bottom:820.695000px;}
.y108{bottom:823.980000px;}
.y61{bottom:826.080000px;}
.y134{bottom:838.950000px;}
.y135{bottom:838.980000px;}
.y132{bottom:840.450000px;}
.y133{bottom:840.525000px;}
.y102{bottom:843.450000px;}
.yf{bottom:844.725000px;}
.y5e{bottom:845.250000px;}
.y60{bottom:845.325000px;}
.y136{bottom:848.025000px;}
.y5d{bottom:852.825000px;}
.y106{bottom:855.450000px;}
.y105{bottom:864.525000px;}
.y131{bottom:867.150000px;}
.ye{bottom:869.025000px;}
.y5b{bottom:873.150000px;}
.y5c{bottom:873.225000px;}
.y130{bottom:874.725000px;}
.y100{bottom:891.750000px;}
.yd{bottom:893.025000px;}
.y12e{bottom:894.750000px;}
.y12d{bottom:899.325000px;}
.y101{bottom:900.825000px;}
.y5a{bottom:904.425000px;}
.yb0{bottom:911.850000px;}
.yc{bottom:917.325000px;}
.y143{bottom:918.375000px;}
.y12c{bottom:918.525000px;}
.yfd{bottom:920.250000px;}
.yff{bottom:920.325000px;}
.yaf{bottom:920.925000px;}
.y149{bottom:923.490908px;}
.y59{bottom:928.425000px;}
.yfe{bottom:938.325000px;}
.yac{bottom:940.650000px;}
.yb{bottom:941.325000px;}
.ya9{bottom:943.650000px;}
.yab{bottom:943.725000px;}
.y57{bottom:947.550000px;}
.yad{bottom:948.225000px;}
.y56{bottom:955.125000px;}
.ya{bottom:965.625000px;}
.yfb{bottom:966.150000px;}
.ya8{bottom:972.825000px;}
.y54{bottom:974.550000px;}
.yfc{bottom:975.225000px;}
.y53{bottom:982.125000px;}
.y14d{bottom:988.475333px;}
.y9{bottom:989.025000px;}
.yf5{bottom:994.650000px;}
.yfa{bottom:994.725000px;}
.ya7{bottom:997.125000px;}
.y4f{bottom:1002.450000px;}
.y52{bottom:1010.070000px;}
.yf9{bottom:1012.755000px;}
.y8{bottom:1013.355000px;}
.ya4{bottom:1016.550000px;}
.ya6{bottom:1016.670000px;}
.ya3{bottom:1021.170000px;}
.y14b{bottom:1033.530756px;}
.y4e{bottom:1035.855000px;}
.y7{bottom:1037.955000px;}
.yf3{bottom:1040.850000px;}
.ya2{bottom:1045.455000px;}
.yf4{bottom:1049.955000px;}
.y4d{bottom:1059.855000px;}
.y6{bottom:1062.255000px;}
.y9e{bottom:1064.250000px;}
.yf1{bottom:1069.350000px;}
.y9d{bottom:1074.870000px;}
.y47{bottom:1079.655000px;}
.y46{bottom:1081.050000px;}
.y4a{bottom:1084.050000px;}
.y45{bottom:1084.155000px;}
.y49{bottom:1088.655000px;}
.yf2{bottom:1090.455000px;}
.y9c{bottom:1101.570000px;}
.y43{bottom:1107.450000px;}
.y5{bottom:1109.955000px;}
.y9a{bottom:1120.350000px;}
.y44{bottom:1125.570000px;}
.y99{bottom:1127.955000px;}
.yf0{bottom:1129.455000px;}
.y4{bottom:1133.955000px;}
.y96{bottom:1147.650000px;}
.yef{bottom:1149.150000px;}
.yed{bottom:1153.650000px;}
.yee{bottom:1153.755000px;}
.y3{bottom:1158.255000px;}
.y42{bottom:1158.870000px;}
.h9c{height:15.899331px;}
.h25{height:17.099179px;}
.h6b{height:17.100151px;}
.h23{height:17.999809px;}
.h6e{height:18.900565px;}
.h65{height:20.099678px;}
.h63{height:20.099964px;}
.h9{height:20.999608px;}
.h6{height:21.900020px;}
.h20{height:23.100097px;}
.ha6{height:23.169527px;}
.h2c{height:23.999736px;}
.h97{height:24.899375px;}
.h13{height:26.099953px;}
.h18{height:26.100334px;}
.h5b{height:27.899400px;}
.hb{height:27.899471px;}
.h15{height:27.899834px;}
.ha2{height:30.229493px;}
.h5f{height:32.099484px;}
.h11{height:37.221262px;}
.h8e{height:37.755485px;}
.h86{height:38.432902px;}
.h7c{height:38.942375px;}
.h7a{height:38.961759px;}
.h39{height:39.367804px;}
.he{height:39.954802px;}
.hc{height:39.974690px;}
.h51{height:39.984591px;}
.h50{height:40.004494px;}
.h84{height:40.702003px;}
.h83{height:40.722263px;}
.h74{height:41.232637px;}
.h72{height:41.253161px;}
.h27{height:42.050611px;}
.h30{height:42.195208px;}
.h58{height:42.483853px;}
.h57{height:42.505000px;}
.ha1{height:43.081277px;}
.ha7{height:44.950313px;}
.h1a{height:45.901083px;}
.h34{height:48.000090px;}
.h4a{height:48.000653px;}
.ha5{height:48.783954px;}
.h4f{height:49.402193px;}
.h38{height:50.099327px;}
.h93{height:50.978543px;}
.h79{height:50.998724px;}
.h71{height:50.999211px;}
.h46{height:51.000366px;}
.ha3{height:52.426457px;}
.h14{height:53.301871px;}
.h59{height:54.297929px;}
.ha4{height:57.891726px;}
.h5{height:58.898438px;}
.h3{height:61.670545px;}
.h9b{height:62.660632px;}
.h7f{height:63.070654px;}
.h3b{height:63.727953px;}
.h56{height:64.600065px;}
.h41{height:64.728282px;}
.h37{height:64.758616px;}
.h5d{height:65.155813px;}
.h1e{height:65.791241px;}
.h67{height:66.360153px;}
.h66{height:66.393184px;}
.h9a{height:66.478562px;}
.h22{height:66.775649px;}
.h77{height:66.779937px;}
.h7d{height:66.794383px;}
.h7b{height:66.827630px;}
.h7e{height:67.009235px;}
.h21{height:67.032116px;}
.h3a{height:67.490489px;}
.h2a{height:68.053136px;}
.h32{height:68.188475px;}
.h6c{height:68.199665px;}
.hf{height:68.260063px;}
.h70{height:68.403837px;}
.h6d{height:68.405636px;}
.h2b{height:68.414091px;}
.h9e{height:68.420852px;}
.h94{height:68.425225px;}
.h55{height:68.427546px;}
.h42{height:68.429143px;}
.h54{height:68.448144px;}
.h12{height:68.468906px;}
.h40{height:68.521725px;}
.h8f{height:68.522598px;}
.h91{height:68.526379px;}
.h3f{height:68.549878px;}
.h36{height:68.582003px;}
.h53{height:68.582830px;}
.h3e{height:68.583999px;}
.h35{height:68.616140px;}
.h8d{height:68.642559px;}
.h52{height:68.660866px;}
.h4e{height:68.800610px;}
.h49{height:68.806394px;}
.h24{height:68.911580px;}
.h87{height:69.485175px;}
.h90{height:69.530005px;}
.h89{height:69.546650px;}
.h8a{height:69.574191px;}
.h85{height:69.602058px;}
.h2d{height:69.608050px;}
.h1f{height:69.611929px;}
.h1d{height:69.616759px;}
.h1c{height:69.675595px;}
.h9d{height:69.692969px;}
.h1b{height:69.710276px;}
.h76{height:70.458512px;}
.h80{height:70.476222px;}
.h81{height:70.557330px;}
.h75{height:70.722664px;}
.h73{height:70.757867px;}
.h64{height:71.171962px;}
.h5e{height:71.390062px;}
.h2f{height:71.480316px;}
.h99{height:71.548367px;}
.h29{height:71.703760px;}
.h31{height:71.774376px;}
.h6a{height:72.071033px;}
.h28{height:72.106907px;}
.h69{height:72.214363px;}
.h3d{height:72.250308px;}
.h98{height:72.253281px;}
.h45{height:72.304077px;}
.h44{height:72.340067px;}
.h5a{height:72.392686px;}
.h7{height:72.448734px;}
.h4d{height:72.862638px;}
.h48{height:72.868764px;}
.h4c{height:72.898907px;}
.h47{height:72.905035px;}
.ha{height:74.357511px;}
.h26{height:74.542151px;}
.h2e{height:74.928060px;}
.h62{height:74.964622px;}
.h96{height:75.119303px;}
.h6f{height:75.380164px;}
.h19{height:75.738237px;}
.h5c{height:81.134392px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.h9f{height:86.338763px;}
.hd{height:86.488139px;}
.h10{height:86.764148px;}
.h78{height:88.898438px;}
.h92{height:89.343301px;}
.h68{height:91.149598px;}
.h16{height:91.292390px;}
.h60{height:93.348678px;}
.h4b{height:94.139605px;}
.h61{height:96.735531px;}
.h95{height:96.881516px;}
.h8{height:100.441406px;}
.h8c{height:103.665648px;}
.h82{height:105.396351px;}
.h33{height:112.441406px;}
.h17{height:118.441406px;}
.h43{height:118.561406px;}
.h8b{height:154.441406px;}
.h88{height:154.561406px;}
.h3c{height:166.441406px;}
.ha0{height:259.280481px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:8.100021px;}
.wf{width:9.899954px;}
.w10{width:14.999554px;}
.w4f{width:15.899160px;}
.w3{width:20.999951px;}
.w3d{width:23.099763px;}
.w2f{width:23.099995px;}
.w28{width:27.899041px;}
.w2e{width:27.899167px;}
.w14{width:27.899804px;}
.w54{width:29.002680px;}
.w43{width:30.000514px;}
.w40{width:33.899561px;}
.w4d{width:33.899813px;}
.w6{width:36.900159px;}
.w1c{width:39.898886px;}
.w1b{width:42.900496px;}
.w2d{width:45.899517px;}
.w32{width:47.999260px;}
.w7{width:47.999827px;}
.w53{width:48.294928px;}
.w8{width:50.100441px;}
.we{width:50.998746px;}
.w13{width:51.000060px;}
.w35{width:51.000440px;}
.w4c{width:53.998414px;}
.w4{width:54.000317px;}
.wd{width:54.001134px;}
.w49{width:57.900220px;}
.wc{width:57.901095px;}
.w5{width:59.098484px;}
.w4e{width:60.900478px;}
.w37{width:62.099111px;}
.w30{width:62.101526px;}
.w2c{width:69.001523px;}
.w2b{width:69.900207px;}
.w4b{width:81.898549px;}
.w29{width:84.002708px;}
.w48{width:84.900895px;}
.w16{width:86.101547px;}
.w4a{width:96.901577px;}
.w12{width:99.901291px;}
.w31{width:101.996696px;}
.w34{width:104.097730px;}
.w22{width:104.099889px;}
.wa{width:105.000269px;}
.wb{width:107.995041px;}
.w21{width:111.003201px;}
.w19{width:114.004535px;}
.w2a{width:122.105198px;}
.w17{width:122.105517px;}
.w18{width:123.002140px;}
.w1a{width:128.100014px;}
.w11{width:140.097135px;}
.w39{width:146.102269px;}
.w46{width:151.202016px;}
.w50{width:167.998161px;}
.w41{width:185.998053px;}
.w25{width:191.095203px;}
.w15{width:194.095906px;}
.w1e{width:197.107159px;}
.w26{width:198.902420px;}
.w1f{width:206.998948px;}
.w1d{width:207.898725px;}
.w20{width:213.003579px;}
.w3e{width:231.004965px;}
.w27{width:234.905221px;}
.w9{width:235.801641px;}
.w47{width:240.901823px;}
.w33{width:241.803311px;}
.w3f{width:243.892513px;}
.w44{width:243.902348px;}
.w36{width:244.802275px;}
.w42{width:246.894865px;}
.w51{width:246.904821px;}
.w24{width:255.007139px;}
.w3b{width:258.890332px;}
.w23{width:266.096641px;}
.w55{width:283.274511px;}
.w45{width:290.096443px;}
.w38{width:351.895165px;}
.w3a{width:426.002511px;}
.w3c{width:430.211766px;}
.w52{width:558.819261px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:1.697176px;}
.xc{left:3.592488px;}
.x42{left:5.604135px;}
.x24{left:6.710894px;}
.xc3{left:8.012569px;}
.x58{left:10.824091px;}
.x1d{left:12.846646px;}
.xf{left:14.500061px;}
.xe{left:15.928225px;}
.x3e{left:19.412231px;}
.x10{left:21.535445px;}
.x62{left:25.249698px;}
.x1f{left:26.970276px;}
.x23{left:28.958536px;}
.x51{left:30.350581px;}
.x1b{left:33.320944px;}
.xc0{left:36.508912px;}
.x61{left:37.803028px;}
.x5e{left:40.390562px;}
.x3f{left:42.882688px;}
.x9e{left:45.534532px;}
.xd5{left:46.553199px;}
.x5a{left:48.655254px;}
.x1e{left:50.474195px;}
.x4b{left:52.075914px;}
.x32{left:53.260343px;}
.x4f{left:54.863762px;}
.x77{left:58.447004px;}
.x3b{left:59.621537px;}
.x9c{left:60.821553px;}
.x22{left:64.228471px;}
.x4e{left:66.022568px;}
.x5b{left:68.347404px;}
.xa0{left:70.400761px;}
.xd7{left:71.477780px;}
.xa7{left:73.194632px;}
.x5c{left:75.181094px;}
.x30{left:76.243834px;}
.x4a{left:77.951585px;}
.x49{left:79.368586px;}
.x4d{left:80.448453px;}
.x44{left:81.978470px;}
.x2{left:84.937500px;}
.x31{left:86.470001px;}
.xaa{left:87.600553px;}
.x3a{left:89.469315px;}
.x5d{left:90.880272px;}
.x47{left:92.325364px;}
.x3{left:94.237500px;}
.x21{left:95.740220px;}
.xbc{left:97.284708px;}
.xae{left:100.654759px;}
.xb6{left:102.837600px;}
.xa1{left:105.440164px;}
.xaf{left:106.605706px;}
.x9d{left:108.238878px;}
.xab{left:110.365190px;}
.xb3{left:115.682627px;}
.xa5{left:117.228674px;}
.x6d{left:119.241681px;}
.x96{left:122.655545px;}
.xb0{left:123.775265px;}
.x67{left:125.548988px;}
.x5{left:127.537500px;}
.x59{left:128.846761px;}
.x54{left:130.077277px;}
.x55{left:131.491258px;}
.xb5{left:134.116952px;}
.x8d{left:135.937500px;}
.x6f{left:137.572809px;}
.x11{left:138.937500px;}
.xc1{left:144.492753px;}
.x6a{left:147.096159px;}
.x69{left:148.521138px;}
.xa9{left:150.645000px;}
.x6c{left:152.129005px;}
.x6b{left:154.224074px;}
.x89{left:155.728022px;}
.x6e{left:158.025940px;}
.xb2{left:161.430000px;}
.x97{left:165.621340px;}
.x87{left:167.027946px;}
.x86{left:168.444203px;}
.x8f{left:170.451793px;}
.xbd{left:171.591834px;}
.x88{left:172.647775px;}
.x90{left:174.488651px;}
.xc6{left:178.350000px;}
.x94{left:180.118225px;}
.x93{left:181.515874px;}
.x16{left:182.550000px;}
.x95{left:187.136205px;}
.x80{left:189.675000px;}
.xba{left:192.051994px;}
.x8{left:196.050000px;}
.x78{left:200.250000px;}
.x68{left:202.810248px;}
.xa{left:204.075000px;}
.x65{left:205.366874px;}
.x4{left:206.475000px;}
.xb8{left:208.154236px;}
.xb9{left:212.703232px;}
.x34{left:215.250000px;}
.x63{left:217.929571px;}
.x66{left:219.472010px;}
.x64{left:221.991308px;}
.x3d{left:229.350000px;}
.x17{left:230.475000px;}
.x20{left:232.575000px;}
.x25{left:235.575000px;}
.x5f{left:238.575000px;}
.x45{left:241.575000px;}
.x60{left:244.350000px;}
.x40{left:249.675000px;}
.xd2{left:252.975000px;}
.x4c{left:255.150000px;}
.xd3{left:258.450000px;}
.x9f{left:259.650000px;}
.x33{left:267.675000px;}
.x79{left:269.175000px;}
.x8e{left:277.875000px;}
.xd9{left:287.893582px;}
.xa3{left:291.364736px;}
.x41{left:297.450000px;}
.x8a{left:300.150000px;}
.x6{left:302.520000px;}
.xa6{left:309.843509px;}
.xb4{left:313.620000px;}
.x35{left:315.120000px;}
.x26{left:318.450000px;}
.x3c{left:321.720000px;}
.xa2{left:324.493891px;}
.x70{left:326.520000px;}
.xa4{left:330.432420px;}
.x75{left:333.450000px;}
.x56{left:335.520000px;}
.x57{left:340.950000px;}
.x84{left:343.950000px;}
.x7{left:347.220000px;}
.xb{left:349.050000px;}
.x46{left:350.550000px;}
.x9a{left:351.709326px;}
.x18{left:352.950000px;}
.x9b{left:357.281315px;}
.xac{left:358.620000px;}
.x8b{left:362.220000px;}
.xad{left:364.050000px;}
.xd{left:370.020000px;}
.x91{left:372.405000px;}
.x27{left:376.320000px;}
.xbb{left:377.850000px;}
.xc7{left:379.950000px;}
.x50{left:383.220000px;}
.x28{left:385.350000px;}
.x85{left:386.820000px;}
.x52{left:392.820000px;}
.x19{left:403.005000px;}
.xc2{left:410.550000px;}
.x92{left:412.050000px;}
.xd4{left:414.750000px;}
.x43{left:420.450000px;}
.xcf{left:423.750000px;}
.x1{left:430.650000px;}
.x74{left:433.350000px;}
.x81{left:437.550000px;}
.x29{left:439.350000px;}
.x12{left:442.950000px;}
.x98{left:444.750000px;}
.x2a{left:448.350000px;}
.x76{left:455.550000px;}
.x7d{left:475.050000px;}
.x48{left:478.650000px;}
.x53{left:479.850000px;}
.x1a{left:489.450000px;}
.x2b{left:499.350000px;}
.x13{left:502.050000px;}
.x8c{left:507.750000px;}
.x14{left:516.150000px;}
.x2c{left:527.850000px;}
.x7e{left:530.850000px;}
.x2d{left:537.750000px;}
.x15{left:553.095000px;}
.xa8{left:557.880000px;}
.xd8{left:562.808119px;}
.xb7{left:565.995000px;}
.xcc{left:582.195000px;}
.x7f{left:587.550000px;}
.x99{left:590.880000px;}
.xb1{left:607.995000px;}
.x2e{left:611.550000px;}
.x71{left:620.880000px;}
.x2f{left:626.595000px;}
.x82{left:642.750000px;}
.xc8{left:650.595000px;}
.xbf{left:656.550000px;}
.xd6{left:661.725000px;}
.x7a{left:673.350000px;}
.xd0{left:680.550000px;}
.xc9{left:682.650000px;}
.x38{left:686.250000px;}
.x83{left:690.825000px;}
.xc4{left:692.850000px;}
.xca{left:694.650000px;}
.x39{left:714.225000px;}
.x7b{left:719.325000px;}
.x1c{left:725.325000px;}
.xbe{left:737.925000px;}
.xcd{left:744.750000px;}
.xc5{left:746.925000px;}
.xcb{left:748.725000px;}
.x72{left:752.850000px;}
.x36{left:756.750000px;}
.x7c{left:764.850000px;}
.xce{left:778.755000px;}
.x73{left:780.870000px;}
.xd1{left:802.755000px;}
.x37{left:807.870000px;}
@media print{
.v11{vertical-align:-87.466667pt;}
.v1{vertical-align:-86.400000pt;}
.vb{vertical-align:-66.163777pt;}
.vf{vertical-align:-49.512233pt;}
.ve{vertical-align:-44.624389pt;}
.va{vertical-align:-39.154986pt;}
.v8{vertical-align:-29.259795pt;}
.v3{vertical-align:-27.847658pt;}
.v6{vertical-align:-16.000000pt;}
.v7{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v4{vertical-align:16.926295pt;}
.v9{vertical-align:26.666667pt;}
.v5{vertical-align:32.000000pt;}
.v10{vertical-align:43.883210pt;}
.vd{vertical-align:64.106667pt;}
.vc{vertical-align:74.666667pt;}
.ls31{letter-spacing:-1.594639pt;}
.ls59{letter-spacing:-1.288862pt;}
.ls41{letter-spacing:-1.243391pt;}
.ls98{letter-spacing:-1.081523pt;}
.ls36{letter-spacing:-0.604715pt;}
.lsac{letter-spacing:-0.569542pt;}
.lsab{letter-spacing:-0.533333pt;}
.ls2e{letter-spacing:-0.490667pt;}
.ls2f{letter-spacing:-0.481808pt;}
.lsaa{letter-spacing:-0.472908pt;}
.ls5c{letter-spacing:-0.330667pt;}
.ls47{letter-spacing:-0.196240pt;}
.lsc{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.160000pt;}
.lsa9{letter-spacing:0.368202pt;}
.ls99{letter-spacing:0.386120pt;}
.ls9a{letter-spacing:0.416195pt;}
.lsa3{letter-spacing:0.490667pt;}
.lsa{letter-spacing:0.533333pt;}
.lsa8{letter-spacing:0.586667pt;}
.lsa1{letter-spacing:0.650667pt;}
.ls7a{letter-spacing:2.666667pt;}
.ls53{letter-spacing:3.469625pt;}
.ls56{letter-spacing:3.733333pt;}
.ls3{letter-spacing:4.800000pt;}
.lsa0{letter-spacing:4.853333pt;}
.lsa2{letter-spacing:5.066667pt;}
.ls54{letter-spacing:6.283098pt;}
.ls6{letter-spacing:6.933333pt;}
.ls9{letter-spacing:7.457408pt;}
.lsb{letter-spacing:7.591074pt;}
.ls1b{letter-spacing:8.000000pt;}
.ls77{letter-spacing:8.045511pt;}
.ls79{letter-spacing:8.672180pt;}
.ls51{letter-spacing:9.066667pt;}
.ls1f{letter-spacing:9.967749pt;}
.ls6f{letter-spacing:10.133333pt;}
.ls50{letter-spacing:10.186667pt;}
.ls1{letter-spacing:12.320000pt;}
.ls19{letter-spacing:13.333333pt;}
.ls1a{letter-spacing:14.400000pt;}
.ls76{letter-spacing:15.466667pt;}
.ls1c{letter-spacing:16.533333pt;}
.ls25{letter-spacing:16.610930pt;}
.ls78{letter-spacing:17.590995pt;}
.ls55{letter-spacing:17.623244pt;}
.ls68{letter-spacing:20.081147pt;}
.ls60{letter-spacing:21.071077pt;}
.lse{letter-spacing:21.378684pt;}
.ls10{letter-spacing:21.481220pt;}
.ls75{letter-spacing:21.920000pt;}
.ls2c{letter-spacing:22.179218pt;}
.ls63{letter-spacing:23.531933pt;}
.ls7b{letter-spacing:25.066667pt;}
.ls57{letter-spacing:25.120000pt;}
.ls52{letter-spacing:27.200000pt;}
.ls1e{letter-spacing:27.807376pt;}
.ls58{letter-spacing:28.142278pt;}
.ls3a{letter-spacing:28.248573pt;}
.ls94{letter-spacing:28.351109pt;}
.ls87{letter-spacing:28.484423pt;}
.ls66{letter-spacing:28.698666pt;}
.lsd{letter-spacing:28.863787pt;}
.ls22{letter-spacing:29.333333pt;}
.ls9e{letter-spacing:30.196537pt;}
.ls26{letter-spacing:30.400000pt;}
.ls21{letter-spacing:32.328964pt;}
.ls1d{letter-spacing:32.684284pt;}
.lsa7{letter-spacing:35.749333pt;}
.ls11{letter-spacing:35.932796pt;}
.ls8a{letter-spacing:40.729311pt;}
.ls8d{letter-spacing:41.116798pt;}
.ls3b{letter-spacing:41.270601pt;}
.ls7f{letter-spacing:42.000602pt;}
.lsf{letter-spacing:42.142154pt;}
.ls5{letter-spacing:43.398472pt;}
.ls4e{letter-spacing:43.436999pt;}
.ls9d{letter-spacing:45.314464pt;}
.ls4{letter-spacing:47.238945pt;}
.ls9f{letter-spacing:47.520035pt;}
.ls8{letter-spacing:48.573382pt;}
.ls13{letter-spacing:50.165214pt;}
.ls12{letter-spacing:52.870997pt;}
.ls7{letter-spacing:60.629076pt;}
.ls5f{letter-spacing:65.528938pt;}
.ls3c{letter-spacing:66.413658pt;}
.ls5a{letter-spacing:69.425368pt;}
.ls5b{letter-spacing:70.277520pt;}
.ls62{letter-spacing:71.425231pt;}
.ls7c{letter-spacing:72.428246pt;}
.ls5e{letter-spacing:90.264916pt;}
.ls7e{letter-spacing:95.027094pt;}
.ls65{letter-spacing:97.516414pt;}
.ls16{letter-spacing:97.705188pt;}
.ls67{letter-spacing:104.544769pt;}
.ls29{letter-spacing:104.735826pt;}
.ls28{letter-spacing:107.098674pt;}
.ls83{letter-spacing:117.987138pt;}
.ls81{letter-spacing:118.951270pt;}
.ls2b{letter-spacing:121.330199pt;}
.ls61{letter-spacing:121.543766pt;}
.ls5d{letter-spacing:122.680195pt;}
.ls30{letter-spacing:123.654277pt;}
.ls7d{letter-spacing:124.357780pt;}
.ls18{letter-spacing:125.569260pt;}
.ls64{letter-spacing:125.656556pt;}
.ls15{letter-spacing:128.722708pt;}
.ls4c{letter-spacing:130.934522pt;}
.ls85{letter-spacing:131.698552pt;}
.ls82{letter-spacing:131.824460pt;}
.ls80{letter-spacing:132.599898pt;}
.ls6e{letter-spacing:132.705143pt;}
.ls96{letter-spacing:133.040012pt;}
.ls27{letter-spacing:134.977908pt;}
.ls4a{letter-spacing:134.989060pt;}
.ls4b{letter-spacing:135.421544pt;}
.ls46{letter-spacing:137.205540pt;}
.ls14{letter-spacing:137.459309pt;}
.ls48{letter-spacing:138.286750pt;}
.ls42{letter-spacing:140.881654pt;}
.ls44{letter-spacing:141.260077pt;}
.ls45{letter-spacing:141.692561pt;}
.ls49{letter-spacing:145.206493pt;}
.ls17{letter-spacing:146.144215pt;}
.ls2a{letter-spacing:146.247607pt;}
.ls84{letter-spacing:149.452751pt;}
.ls43{letter-spacing:151.477511pt;}
.ls9b{letter-spacing:154.067276pt;}
.ls32{letter-spacing:154.994835pt;}
.ls33{letter-spacing:155.350328pt;}
.ls95{letter-spacing:158.622658pt;}
.ls37{letter-spacing:163.672762pt;}
.ls4f{letter-spacing:164.035376pt;}
.ls9c{letter-spacing:167.072022pt;}
.ls4d{letter-spacing:167.594528pt;}
.ls35{letter-spacing:173.429673pt;}
.lsa4{letter-spacing:173.753801pt;}
.ls39{letter-spacing:173.917928pt;}
.ls71{letter-spacing:174.162732pt;}
.ls24{letter-spacing:176.160869pt;}
.ls23{letter-spacing:178.947428pt;}
.ls34{letter-spacing:184.399163pt;}
.ls3e{letter-spacing:190.421330pt;}
.ls3d{letter-spacing:190.691125pt;}
.ls38{letter-spacing:192.209296pt;}
.ls2d{letter-spacing:208.967664pt;}
.ls86{letter-spacing:214.486151pt;}
.ls93{letter-spacing:228.914881pt;}
.lsad{letter-spacing:231.461900pt;}
.ls91{letter-spacing:233.096663pt;}
.ls72{letter-spacing:233.964575pt;}
.ls8c{letter-spacing:236.555027pt;}
.ls8b{letter-spacing:238.332491pt;}
.ls3f{letter-spacing:254.246515pt;}
.ls70{letter-spacing:273.754356pt;}
.ls40{letter-spacing:285.115058pt;}
.ls73{letter-spacing:313.136199pt;}
.ls6c{letter-spacing:319.613058pt;}
.ls6b{letter-spacing:324.797671pt;}
.ls6d{letter-spacing:328.516023pt;}
.ls6a{letter-spacing:357.404842pt;}
.ls69{letter-spacing:378.524669pt;}
.ls89{letter-spacing:380.584970pt;}
.ls88{letter-spacing:382.394326pt;}
.ls8e{letter-spacing:392.108494pt;}
.ls90{letter-spacing:392.974646pt;}
.ls97{letter-spacing:436.494282pt;}
.lsae{letter-spacing:446.542776pt;}
.ls74{letter-spacing:458.144942pt;}
.lsa5{letter-spacing:468.065267pt;}
.ls8f{letter-spacing:484.841315pt;}
.ls92{letter-spacing:646.043246pt;}
.ls0{letter-spacing:822.160000pt;}
.lsa6{letter-spacing:834.960000pt;}
.ws8c{word-spacing:-167.132154pt;}
.ws4d{word-spacing:-97.581851pt;}
.ws5d{word-spacing:-95.092531pt;}
.ws44{word-spacing:-90.330223pt;}
.ws1f{word-spacing:-66.479176pt;}
.ws84{word-spacing:-62.116100pt;}
.ws1{word-spacing:-37.529835pt;}
.ws2{word-spacing:-35.998233pt;}
.ws8f{word-spacing:-30.234753pt;}
.ws19{word-spacing:-28.399507pt;}
.ws82{word-spacing:-23.596903pt;}
.ws88{word-spacing:-21.470438pt;}
.ws86{word-spacing:-19.899771pt;}
.ws97{word-spacing:-19.157333pt;}
.ws93{word-spacing:-19.048813pt;}
.ws0{word-spacing:-18.666667pt;}
.ws43{word-spacing:-18.336000pt;}
.ws96{word-spacing:-18.176000pt;}
.ws3c{word-spacing:-17.606340pt;}
.ws91{word-spacing:-17.241801pt;}
.ws95{word-spacing:-15.932216pt;}
.ws98{word-spacing:-14.622888pt;}
.ws1e{word-spacing:-0.065518pt;}
.ws12{word-spacing:-0.065437pt;}
.ws42{word-spacing:-0.065307pt;}
.wsf{word-spacing:-0.060711pt;}
.ws3d{word-spacing:-0.060132pt;}
.ws6{word-spacing:0.000000pt;}
.ws8a{word-spacing:1.013488pt;}
.ws39{word-spacing:1.220967pt;}
.ws2c{word-spacing:1.725089pt;}
.ws27{word-spacing:4.704457pt;}
.ws5{word-spacing:13.444747pt;}
.ws55{word-spacing:17.310255pt;}
.ws1c{word-spacing:19.628687pt;}
.ws37{word-spacing:20.299857pt;}
.ws33{word-spacing:20.535216pt;}
.ws41{word-spacing:20.578694pt;}
.ws1a{word-spacing:20.622545pt;}
.ws40{word-spacing:20.715886pt;}
.ws65{word-spacing:21.022682pt;}
.ws77{word-spacing:21.067226pt;}
.ws68{word-spacing:21.340023pt;}
.ws7a{word-spacing:21.367938pt;}
.ws59{word-spacing:21.408844pt;}
.ws6d{word-spacing:21.466295pt;}
.ws50{word-spacing:21.724801pt;}
.wsb{word-spacing:21.916515pt;}
.ws22{word-spacing:22.384046pt;}
.ws21{word-spacing:22.516105pt;}
.ws25{word-spacing:22.580237pt;}
.wsd{word-spacing:22.857371pt;}
.ws38{word-spacing:23.014373pt;}
.ws4{word-spacing:23.939881pt;}
.ws1d{word-spacing:24.038931pt;}
.ws11{word-spacing:24.077072pt;}
.ws5f{word-spacing:24.352284pt;}
.ws36{word-spacing:24.725698pt;}
.ws4a{word-spacing:24.763029pt;}
.ws8{word-spacing:24.900220pt;}
.ws34{word-spacing:25.223321pt;}
.ws2f{word-spacing:25.852407pt;}
.ws54{word-spacing:26.226966pt;}
.ws46{word-spacing:26.285056pt;}
.ws75{word-spacing:26.349569pt;}
.ws53{word-spacing:26.530518pt;}
.ws79{word-spacing:26.647807pt;}
.ws31{word-spacing:26.781001pt;}
.ws67{word-spacing:26.832869pt;}
.ws2a{word-spacing:26.908876pt;}
.wsa{word-spacing:27.016203pt;}
.ws9{word-spacing:27.137624pt;}
.ws4e{word-spacing:27.172022pt;}
.ws5a{word-spacing:27.300192pt;}
.ws4b{word-spacing:27.648903pt;}
.ws7c{word-spacing:27.898502pt;}
.ws20{word-spacing:28.128624pt;}
.ws24{word-spacing:28.192284pt;}
.ws70{word-spacing:28.288417pt;}
.wsc{word-spacing:28.408447pt;}
.ws17{word-spacing:28.792127pt;}
.ws3{word-spacing:29.015959pt;}
.ws3a{word-spacing:29.126951pt;}
.ws10{word-spacing:29.839107pt;}
.ws49{word-spacing:30.525063pt;}
.ws7{word-spacing:30.662255pt;}
.ws29{word-spacing:32.501945pt;}
.ws2e{word-spacing:32.750525pt;}
.ws18{word-spacing:34.092496pt;}
.ws16{word-spacing:34.485116pt;}
.ws8d{word-spacing:42.573380pt;}
.ws45{word-spacing:50.180590pt;}
.ws3e{word-spacing:53.096461pt;}
.ws3f{word-spacing:53.938308pt;}
.ws48{word-spacing:54.439345pt;}
.ws5c{word-spacing:55.463925pt;}
.ws7f{word-spacing:56.696273pt;}
.ws56{word-spacing:58.285929pt;}
.ws52{word-spacing:58.637737pt;}
.ws58{word-spacing:58.830657pt;}
.ws5b{word-spacing:58.894076pt;}
.ws5e{word-spacing:61.713815pt;}
.ws14{word-spacing:63.663542pt;}
.ws89{word-spacing:65.255594pt;}
.ws3b{word-spacing:66.104390pt;}
.ws81{word-spacing:69.350200pt;}
.ws92{word-spacing:69.576764pt;}
.ws47{word-spacing:71.725967pt;}
.ws32{word-spacing:73.647752pt;}
.ws1b{word-spacing:73.731810pt;}
.ws90{word-spacing:74.370447pt;}
.ws4c{word-spacing:75.569536pt;}
.ws13{word-spacing:78.613690pt;}
.ws15{word-spacing:80.787261pt;}
.ws8b{word-spacing:82.842802pt;}
.ws78{word-spacing:86.816858pt;}
.ws8e{word-spacing:87.161622pt;}
.ws57{word-spacing:91.453830pt;}
.ws7d{word-spacing:92.969234pt;}
.ws85{word-spacing:97.081127pt;}
.ws94{word-spacing:99.064905pt;}
.wse{word-spacing:106.504072pt;}
.ws80{word-spacing:107.773428pt;}
.ws87{word-spacing:107.969550pt;}
.ws6f{word-spacing:108.025973pt;}
.ws6a{word-spacing:108.657335pt;}
.ws73{word-spacing:109.162424pt;}
.ws6e{word-spacing:109.244185pt;}
.ws69{word-spacing:109.981823pt;}
.ws63{word-spacing:117.659983pt;}
.ws2b{word-spacing:125.036162pt;}
.ws30{word-spacing:125.906195pt;}
.ws6c{word-spacing:131.262679pt;}
.ws66{word-spacing:132.000317pt;}
.ws51{word-spacing:150.407397pt;}
.ws60{word-spacing:156.687722pt;}
.ws28{word-spacing:174.746069pt;}
.ws2d{word-spacing:175.760560pt;}
.ws83{word-spacing:194.468662pt;}
.ws9a{word-spacing:205.477374pt;}
.ws62{word-spacing:213.851505pt;}
.ws99{word-spacing:216.224954pt;}
.ws76{word-spacing:221.919899pt;}
.ws72{word-spacing:246.666141pt;}
.ws4f{word-spacing:295.880251pt;}
.ws61{word-spacing:329.012175pt;}
.ws6b{word-spacing:356.254680pt;}
.ws64{word-spacing:356.893337pt;}
.ws7e{word-spacing:379.809333pt;}
.ws71{word-spacing:380.011014pt;}
.ws74{word-spacing:426.740782pt;}
.ws7b{word-spacing:426.963674pt;}
.ws26{word-spacing:466.228447pt;}
.ws23{word-spacing:467.173678pt;}
.ws35{word-spacing:765.222403pt;}
._d6{margin-left:-1033.237545pt;}
._d9{margin-left:-1009.665651pt;}
._1c{margin-left:-870.384364pt;}
._20{margin-left:-766.019008pt;}
._34{margin-left:-707.219585pt;}
._72{margin-left:-662.264095pt;}
._e8{margin-left:-604.003859pt;}
._6e{margin-left:-538.323256pt;}
._e9{margin-left:-524.398837pt;}
._98{margin-left:-472.464812pt;}
._2b{margin-left:-471.326292pt;}
._57{margin-left:-465.015407pt;}
._40{margin-left:-445.797019pt;}
._3d{margin-left:-381.356688pt;}
._e6{margin-left:-349.084640pt;}
._e7{margin-left:-345.636469pt;}
._77{margin-left:-341.052122pt;}
._af{margin-left:-294.356810pt;}
._87{margin-left:-293.332230pt;}
._3a{margin-left:-276.540750pt;}
._81{margin-left:-266.073442pt;}
._df{margin-left:-260.832468pt;}
._e0{margin-left:-235.735827pt;}
._76{margin-left:-228.749847pt;}
._9b{margin-left:-225.338012pt;}
._79{margin-left:-216.150494pt;}
._e1{margin-left:-209.580421pt;}
._8c{margin-left:-207.857417pt;}
._b0{margin-left:-205.362685pt;}
._7f{margin-left:-200.494138pt;}
._30{margin-left:-198.252750pt;}
._43{margin-left:-193.886573pt;}
._26{margin-left:-183.846912pt;}
._19{margin-left:-182.455116pt;}
._18{margin-left:-174.207349pt;}
._88{margin-left:-167.662303pt;}
._7b{margin-left:-165.019035pt;}
._75{margin-left:-160.423487pt;}
._28{margin-left:-155.503680pt;}
._82{margin-left:-143.921592pt;}
._4d{margin-left:-134.561455pt;}
._4c{margin-left:-129.444370pt;}
._7c{margin-left:-117.984484pt;}
._83{margin-left:-111.911293pt;}
._27{margin-left:-105.336245pt;}
._e2{margin-left:-97.826540pt;}
._de{margin-left:-92.947171pt;}
._7e{margin-left:-86.640250pt;}
._7a{margin-left:-85.689451pt;}
._7d{margin-left:-79.410398pt;}
._e3{margin-left:-65.297172pt;}
._31{margin-left:-62.356367pt;}
._e4{margin-left:-50.296488pt;}
._2{margin-left:-2.016000pt;}
._1{margin-left:-0.970667pt;}
._0{width:1.125333pt;}
._7{width:2.282667pt;}
._13{width:3.189333pt;}
._f{width:4.261333pt;}
._e{width:5.584000pt;}
._10{width:6.618667pt;}
._12{width:7.525333pt;}
._17{width:8.480000pt;}
._d{width:9.664000pt;}
._4{width:10.773333pt;}
._11{width:11.674667pt;}
._5{width:12.672000pt;}
._15{width:14.256000pt;}
._16{width:15.173333pt;}
._14{width:16.197333pt;}
._2f{width:17.546667pt;}
._6{width:20.085333pt;}
._3{width:21.578667pt;}
._24{width:22.933333pt;}
._6c{width:23.836698pt;}
._29{width:24.891333pt;}
._45{width:25.840297pt;}
._48{width:26.834155pt;}
._50{width:27.996565pt;}
._c{width:29.040000pt;}
._39{width:30.016000pt;}
._a{width:31.429333pt;}
._b{width:32.341333pt;}
._52{width:33.332009pt;}
._8{width:34.485333pt;}
._9{width:36.218667pt;}
._38{width:37.590415pt;}
._35{width:39.236711pt;}
._ce{width:41.021178pt;}
._eb{width:42.389333pt;}
._ea{width:43.386667pt;}
._db{width:46.437333pt;}
._5f{width:47.363180pt;}
._63{width:48.481794pt;}
._c0{width:50.256385pt;}
._53{width:51.200000pt;}
._3e{width:52.820501pt;}
._4b{width:53.866667pt;}
._9a{width:54.760933pt;}
._64{width:56.000000pt;}
._70{width:57.004832pt;}
._42{width:58.500368pt;}
._80{width:59.550642pt;}
._65{width:61.771072pt;}
._33{width:62.696258pt;}
._aa{width:64.042444pt;}
._22{width:65.028674pt;}
._78{width:65.975405pt;}
._1e{width:66.884738pt;}
._e5{width:68.394667pt;}
._3c{width:72.225402pt;}
._67{width:75.073592pt;}
._68{width:79.165134pt;}
._3b{width:80.415901pt;}
._5a{width:82.672751pt;}
._56{width:83.729136pt;}
._99{width:84.664828pt;}
._84{width:85.917294pt;}
._2e{width:86.933333pt;}
._54{width:88.025683pt;}
._c9{width:89.150036pt;}
._2c{width:90.144865pt;}
._93{width:91.064725pt;}
._44{width:92.266667pt;}
._6a{width:94.400000pt;}
._96{width:96.886766pt;}
._37{width:98.777733pt;}
._4f{width:99.717788pt;}
._a6{width:101.622092pt;}
._bd{width:102.944588pt;}
._66{width:105.574176pt;}
._2d{width:107.821486pt;}
._36{width:109.547250pt;}
._a5{width:111.790354pt;}
._9e{width:113.000861pt;}
._74{width:114.894831pt;}
._a7{width:116.168099pt;}
._5c{width:123.259162pt;}
._1d{width:124.912675pt;}
._9f{width:128.374304pt;}
._a1{width:129.282185pt;}
._d5{width:131.446740pt;}
._95{width:132.399523pt;}
._89{width:133.381533pt;}
._23{width:134.584661pt;}
._71{width:135.489744pt;}
._60{width:137.651639pt;}
._d2{width:138.993775pt;}
._3f{width:142.304000pt;}
._41{width:144.811313pt;}
._a0{width:147.060977pt;}
._51{width:150.151390pt;}
._5e{width:152.069328pt;}
._1f{width:153.174082pt;}
._8a{width:155.369191pt;}
._bb{width:157.047561pt;}
._cb{width:159.466667pt;}
._8f{width:160.818526pt;}
._55{width:162.152798pt;}
._6f{width:163.419989pt;}
._c2{width:164.862089pt;}
._46{width:166.471147pt;}
._86{width:168.873555pt;}
._25{width:170.133333pt;}
._32{width:171.900529pt;}
._2a{width:174.888188pt;}
._a8{width:177.128236pt;}
._cd{width:178.274619pt;}
._49{width:179.888225pt;}
._a2{width:183.541642pt;}
._c6{width:185.737244pt;}
._92{width:187.063993pt;}
._4e{width:188.483787pt;}
._1a{width:190.623324pt;}
._ae{width:192.318959pt;}
._59{width:193.215026pt;}
._d1{width:194.137811pt;}
._1b{width:195.396218pt;}
._5d{width:197.124605pt;}
._61{width:198.629320pt;}
._58{width:203.034212pt;}
._ba{width:206.738075pt;}
._94{width:208.468369pt;}
._47{width:211.318971pt;}
._dc{width:213.504088pt;}
._d7{width:215.131281pt;}
._8d{width:218.658712pt;}
._97{width:221.990295pt;}
._4a{width:224.784241pt;}
._73{width:231.382965pt;}
._a4{width:234.142245pt;}
._a3{width:238.258003pt;}
._62{width:240.812687pt;}
._ed{width:242.578823pt;}
._69{width:243.694706pt;}
._ee{width:245.556949pt;}
._b3{width:251.166619pt;}
._5b{width:253.043032pt;}
._85{width:255.609326pt;}
._8b{width:257.392755pt;}
._b9{width:259.881156pt;}
._9d{width:261.530113pt;}
._ac{width:265.384373pt;}
._9c{width:266.935533pt;}
._b4{width:268.510299pt;}
._6b{width:271.805673pt;}
._c7{width:273.072071pt;}
._bc{width:276.965498pt;}
._21{width:277.949565pt;}
._d8{width:282.226720pt;}
._dd{width:286.841874pt;}
._a9{width:290.520707pt;}
._bf{width:294.206909pt;}
._ad{width:303.057767pt;}
._b7{width:313.055020pt;}
._da{width:317.803637pt;}
._6d{width:319.328690pt;}
._c4{width:323.970602pt;}
._d0{width:328.394377pt;}
._90{width:361.695503pt;}
._b6{width:370.923737pt;}
._91{width:373.211580pt;}
._ca{width:375.533891pt;}
._b1{width:382.480267pt;}
._8e{width:416.616312pt;}
._ab{width:443.724250pt;}
._b8{width:481.085780pt;}
._b5{width:498.179748pt;}
._c1{width:499.217633pt;}
._c5{width:522.516652pt;}
._d4{width:554.398638pt;}
._be{width:564.989895pt;}
._d3{width:609.753434pt;}
._c8{width:612.278880pt;}
._c3{width:614.109829pt;}
._cc{width:615.191573pt;}
._cf{width:621.592530pt;}
._ec{width:749.626667pt;}
._b2{width:750.883454pt;}
.fs39{font-size:35.287422pt;}
.fs1b{font-size:35.655174pt;}
.fs4{font-size:36.204827pt;}
.fs24{font-size:36.231820pt;}
.fs3f{font-size:36.881899pt;}
.fs36{font-size:37.362730pt;}
.fs14{font-size:38.084976pt;}
.fsa{font-size:38.215936pt;}
.fs28{font-size:38.496513pt;}
.fs23{font-size:47.408512pt;}
.fs50{font-size:48.000000pt;}
.fs52{font-size:52.600316pt;}
.fs1{font-size:53.333333pt;}
.fs55{font-size:54.882326pt;}
.fs2b{font-size:59.011213pt;}
.fs54{font-size:59.563030pt;}
.fs31{font-size:60.131892pt;}
.fs3a{font-size:60.525367pt;}
.fs10{font-size:60.710569pt;}
.fs1c{font-size:61.156140pt;}
.fs32{font-size:61.798756pt;}
.fs5{font-size:61.993057pt;}
.fs7{font-size:62.116100pt;}
.fs1a{font-size:62.145210pt;}
.fs12{font-size:62.443855pt;}
.fs17{font-size:63.074957pt;}
.fsd{font-size:63.136162pt;}
.fs4e{font-size:63.795746pt;}
.fs53{font-size:64.010363pt;}
.fs11{font-size:64.080843pt;}
.fs37{font-size:64.084958pt;}
.fs3b{font-size:64.305002pt;}
.fs30{font-size:64.492087pt;}
.fs2c{font-size:64.689717pt;}
.fs9{font-size:64.818367pt;}
.fs15{font-size:65.306775pt;}
.fsb{font-size:65.436653pt;}
.fs4c{font-size:65.439345pt;}
.fs6{font-size:65.505352pt;}
.fs1f{font-size:65.517947pt;}
.fs35{font-size:65.643324pt;}
.fs33{font-size:65.645051pt;}
.fs2{font-size:65.649027pt;}
.fs51{font-size:65.659652pt;}
.fs49{font-size:65.663848pt;}
.fs27{font-size:65.666076pt;}
.fs1e{font-size:65.667609pt;}
.fs8{font-size:65.705767pt;}
.fs1d{font-size:65.756454pt;}
.fs46{font-size:65.757292pt;}
.fs48{font-size:65.760921pt;}
.fs26{font-size:65.815093pt;}
.fs45{font-size:65.872412pt;}
.fs25{font-size:65.889980pt;}
.fs22{font-size:66.024084pt;}
.fs20{font-size:66.029635pt;}
.fs41{font-size:66.681023pt;}
.fs47{font-size:66.724044pt;}
.fs42{font-size:66.740017pt;}
.fs43{font-size:66.766447pt;}
.fs40{font-size:66.793189pt;}
.fsf{font-size:66.802661pt;}
.fse{font-size:66.807297pt;}
.fs4f{font-size:66.880432pt;}
.fs3{font-size:67.378655pt;}
.fs13{font-size:67.545965pt;}
.fs38{font-size:67.615080pt;}
.fs3c{font-size:67.632076pt;}
.fs3d{font-size:67.709911pt;}
.fs2f{font-size:67.894990pt;}
.fs4b{font-size:68.035083pt;}
.fs34{font-size:68.305326pt;}
.fsc{font-size:68.595648pt;}
.fs4d{font-size:68.660952pt;}
.fs16{font-size:68.810074pt;}
.fs19{font-size:68.877841pt;}
.fs29{font-size:69.471198pt;}
.fs18{font-size:71.904254pt;}
.fs0{font-size:74.666667pt;}
.fs2a{font-size:77.860123pt;}
.fs2d{font-size:89.581488pt;}
.fs21{font-size:90.340496pt;}
.fs2e{font-size:92.831660pt;}
.fs4a{font-size:92.971754pt;}
.fs44{font-size:99.482104pt;}
.fs3e{font-size:101.142963pt;}
.y0{bottom:0.000000pt;}
.y14c{bottom:2.282009pt;}
.y28{bottom:3.179436pt;}
.y40{bottom:3.352994pt;}
.y80{bottom:3.506364pt;}
.yb8{bottom:3.590002pt;}
.y12f{bottom:3.628340pt;}
.ye5{bottom:3.837675pt;}
.y4c{bottom:3.902154pt;}
.y2e{bottom:3.915708pt;}
.y2b{bottom:3.946854pt;}
.yc1{bottom:3.967980pt;}
.yaa{bottom:4.041208pt;}
.yd3{bottom:4.095190pt;}
.y34{bottom:4.166094pt;}
.yb1{bottom:4.198834pt;}
.y4b{bottom:4.254096pt;}
.ya5{bottom:4.384809pt;}
.y25{bottom:4.403182pt;}
.y14e{bottom:4.564019pt;}
.ye4{bottom:5.096951pt;}
.y69{bottom:5.725673pt;}
.y64{bottom:5.879850pt;}
.yd0{bottom:6.031564pt;}
.y78{bottom:6.247374pt;}
.yb9{bottom:6.569459pt;}
.y48{bottom:6.599956pt;}
.y55{bottom:6.681608pt;}
.y58{bottom:6.825308pt;}
.ydf{bottom:6.925894pt;}
.y30{bottom:6.953689pt;}
.y9b{bottom:6.986120pt;}
.y51{bottom:7.052758pt;}
.y11a{bottom:7.114029pt;}
.y14a{bottom:7.417101pt;}
.yae{bottom:7.422700pt;}
.y39{bottom:7.457157pt;}
.y97{bottom:7.705770pt;}
.y2c{bottom:7.955741pt;}
.y6d{bottom:8.397668pt;}
.yb5{bottom:8.430543pt;}
.y116{bottom:8.560003pt;}
.ya0{bottom:8.594045pt;}
.y98{bottom:8.768640pt;}
.y9f{bottom:8.865827pt;}
.ya1{bottom:10.088705pt;}
.yf8{bottom:11.657289pt;}
.yf6{bottom:13.474528pt;}
.ye3{bottom:13.941806pt;}
.y8a{bottom:14.006414pt;}
.yd2{bottom:14.189605pt;}
.y5f{bottom:14.367707pt;}
.y50{bottom:14.400176pt;}
.ycd{bottom:14.412177pt;}
.ye2{bottom:14.631786pt;}
.ydc{bottom:14.870435pt;}
.y94{bottom:14.881894pt;}
.y2a{bottom:14.917656pt;}
.y7d{bottom:14.976109pt;}
.y3e{bottom:15.731052pt;}
.y103{bottom:15.792765pt;}
.y7f{bottom:16.450609pt;}
.y6a{bottom:17.691651pt;}
.y65{bottom:18.039987pt;}
.y148{bottom:18.268626pt;}
.yce{bottom:18.570341pt;}
.ydd{bottom:18.769195pt;}
.y76{bottom:19.167588pt;}
.yf7{bottom:22.813386pt;}
.y104{bottom:24.997488pt;}
.y89{bottom:25.120641pt;}
.ydb{bottom:25.575022pt;}
.y3f{bottom:25.696723pt;}
.ycc{bottom:25.745007pt;}
.y8b{bottom:25.766876pt;}
.y93{bottom:26.559971pt;}
.y7e{bottom:26.872121pt;}
.ye1{bottom:27.223308pt;}
.y68{bottom:27.355841pt;}
.yd1{bottom:27.522963pt;}
.y63{bottom:27.828734pt;}
.yde{bottom:28.332470pt;}
.ye0{bottom:28.513003pt;}
.ycf{bottom:28.697356pt;}
.y77{bottom:29.568186pt;}
.y67{bottom:34.232596pt;}
.y144{bottom:37.152254pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y3d{bottom:93.733333pt;}
.yeb{bottom:94.000000pt;}
.y145{bottom:94.345114pt;}
.y41{bottom:109.633333pt;}
.y95{bottom:111.500000pt;}
.y92{bottom:111.600000pt;}
.yec{bottom:112.566667pt;}
.y3c{bottom:139.226667pt;}
.yea{bottom:143.773333pt;}
.y146{bottom:151.536834pt;}
.y91{bottom:156.866667pt;}
.y90{bottom:156.933333pt;}
.y3b{bottom:160.600000pt;}
.ye9{bottom:160.866667pt;}
.ye8{bottom:160.933333pt;}
.ye7{bottom:168.866667pt;}
.y3a{bottom:182.200000pt;}
.yda{bottom:186.266667pt;}
.y8f{bottom:187.000000pt;}
.y38{bottom:199.066667pt;}
.y8e{bottom:203.800000pt;}
.y8d{bottom:203.866667pt;}
.y37{bottom:205.666667pt;}
.ye6{bottom:206.200000pt;}
.y147{bottom:208.735399pt;}
.y36{bottom:227.800000pt;}
.yd9{bottom:236.066667pt;}
.y35{bottom:244.600000pt;}
.y33{bottom:244.666667pt;}
.y8c{bottom:246.466667pt;}
.y88{bottom:246.533333pt;}
.y32{bottom:252.600000pt;}
.yd8{bottom:253.133333pt;}
.yd7{bottom:253.200000pt;}
.yd5{bottom:255.866667pt;}
.yd6{bottom:259.800000pt;}
.y31{bottom:274.466667pt;}
.ycb{bottom:277.200000pt;}
.y12b{bottom:287.533333pt;}
.y29{bottom:291.600000pt;}
.y2f{bottom:292.933333pt;}
.y87{bottom:293.666667pt;}
.yd4{bottom:295.840000pt;}
.y2d{bottom:299.560000pt;}
.y12a{bottom:305.173333pt;}
.y129{bottom:305.200000pt;}
.y128{bottom:309.173333pt;}
.y85{bottom:310.506667pt;}
.y84{bottom:310.533333pt;}
.y26{bottom:317.440000pt;}
.y24{bottom:317.466667pt;}
.y27{bottom:318.800000pt;}
.y23{bottom:321.440000pt;}
.y86{bottom:326.506667pt;}
.yca{bottom:327.026667pt;}
.y127{bottom:330.506667pt;}
.y22{bottom:343.026667pt;}
.yc7{bottom:343.866667pt;}
.y125{bottom:347.600000pt;}
.yc9{bottom:347.866667pt;}
.y126{bottom:348.933333pt;}
.yc8{bottom:351.840000pt;}
.y124{bottom:355.560000pt;}
.y83{bottom:357.960000pt;}
.y21{bottom:364.360000pt;}
.yc5{bottom:369.466667pt;}
.y123{bottom:373.733333pt;}
.yc6{bottom:377.440000pt;}
.y82{bottom:379.293333pt;}
.y122{bottom:381.693333pt;}
.y20{bottom:385.960000pt;}
.y7c{bottom:396.133333pt;}
.yc4{bottom:398.773333pt;}
.y121{bottom:399.560000pt;}
.y120{bottom:399.600000pt;}
.y11f{bottom:403.560000pt;}
.y1f{bottom:407.293333pt;}
.y81{bottom:412.106667pt;}
.yc2{bottom:415.600000pt;}
.y11e{bottom:420.666667pt;}
.yc3{bottom:422.226667pt;}
.y142{bottom:427.840000pt;}
.y11d{bottom:428.626667pt;}
.y1e{bottom:428.893333pt;}
.ybf{bottom:439.866667pt;}
.y7b{bottom:443.560000pt;}
.yc0{bottom:443.866667pt;}
.ybe{bottom:447.866667pt;}
.y141{bottom:450.000000pt;}
.y1d{bottom:450.266667pt;}
.y11c{bottom:450.533333pt;}
.y7a{bottom:464.933333pt;}
.ybc{bottom:465.200000pt;}
.y140{bottom:471.333333pt;}
.y1c{bottom:471.866667pt;}
.y11b{bottom:472.133333pt;}
.ybd{bottom:473.200000pt;}
.y75{bottom:481.733333pt;}
.y119{bottom:488.933333pt;}
.ybb{bottom:490.000000pt;}
.y118{bottom:491.600000pt;}
.y13f{bottom:492.933333pt;}
.y1b{bottom:493.200000pt;}
.y117{bottom:495.600000pt;}
.yba{bottom:496.666667pt;}
.y79{bottom:500.400000pt;}
.y115{bottom:512.933333pt;}
.yb4{bottom:514.266667pt;}
.y1a{bottom:514.800000pt;}
.y114{bottom:515.600000pt;}
.yb7{bottom:518.266667pt;}
.yb6{bottom:522.266667pt;}
.y74{bottom:531.600000pt;}
.y13e{bottom:535.866667pt;}
.y19{bottom:536.133333pt;}
.y113{bottom:541.466667pt;}
.yb3{bottom:544.133333pt;}
.y73{bottom:553.200000pt;}
.y13d{bottom:557.200000pt;}
.y18{bottom:557.733333pt;}
.yb2{bottom:560.933333pt;}
.y112{bottom:567.066667pt;}
.y72{bottom:570.533333pt;}
.y71{bottom:574.533333pt;}
.y111{bottom:575.066667pt;}
.y13c{bottom:578.800000pt;}
.y17{bottom:579.066667pt;}
.y70{bottom:591.600000pt;}
.y110{bottom:596.960000pt;}
.y16{bottom:600.173333pt;}
.y10f{bottom:618.560000pt;}
.y15{bottom:621.506667pt;}
.y13b{bottom:621.760000pt;}
.y6c{bottom:638.533333pt;}
.y6f{bottom:638.560000pt;}
.y10e{bottom:639.893333pt;}
.y13a{bottom:643.093333pt;}
.y14{bottom:643.626667pt;}
.y6e{bottom:646.560000pt;}
.y10d{bottom:656.666667pt;}
.y10c{bottom:663.360000pt;}
.y139{bottom:664.693333pt;}
.y13{bottom:664.960000pt;}
.y6b{bottom:668.426667pt;}
.y109{bottom:680.933333pt;}
.y10b{bottom:683.600000pt;}
.y62{bottom:685.200000pt;}
.y66{bottom:685.226667pt;}
.y138{bottom:686.040000pt;}
.y12{bottom:686.560000pt;}
.y10a{bottom:699.626667pt;}
.y11{bottom:707.893333pt;}
.y107{bottom:724.400000pt;}
.y137{bottom:728.960000pt;}
.y10{bottom:729.506667pt;}
.y108{bottom:732.426667pt;}
.y61{bottom:734.293333pt;}
.y134{bottom:745.733333pt;}
.y135{bottom:745.760000pt;}
.y132{bottom:747.066667pt;}
.y133{bottom:747.133333pt;}
.y102{bottom:749.733333pt;}
.yf{bottom:750.866667pt;}
.y5e{bottom:751.333333pt;}
.y60{bottom:751.400000pt;}
.y136{bottom:753.800000pt;}
.y5d{bottom:758.066667pt;}
.y106{bottom:760.400000pt;}
.y105{bottom:768.466667pt;}
.y131{bottom:770.800000pt;}
.ye{bottom:772.466667pt;}
.y5b{bottom:776.133333pt;}
.y5c{bottom:776.200000pt;}
.y130{bottom:777.533333pt;}
.y100{bottom:792.666667pt;}
.yd{bottom:793.800000pt;}
.y12e{bottom:795.333333pt;}
.y12d{bottom:799.400000pt;}
.y101{bottom:800.733333pt;}
.y5a{bottom:803.933333pt;}
.yb0{bottom:810.533333pt;}
.yc{bottom:815.400000pt;}
.y143{bottom:816.333333pt;}
.y12c{bottom:816.466667pt;}
.yfd{bottom:818.000000pt;}
.yff{bottom:818.066667pt;}
.yaf{bottom:818.600000pt;}
.y149{bottom:820.880808pt;}
.y59{bottom:825.266667pt;}
.yfe{bottom:834.066667pt;}
.yac{bottom:836.133333pt;}
.yb{bottom:836.733333pt;}
.ya9{bottom:838.800000pt;}
.yab{bottom:838.866667pt;}
.y57{bottom:842.266667pt;}
.yad{bottom:842.866667pt;}
.y56{bottom:849.000000pt;}
.ya{bottom:858.333333pt;}
.yfb{bottom:858.800000pt;}
.ya8{bottom:864.733333pt;}
.y54{bottom:866.266667pt;}
.yfc{bottom:866.866667pt;}
.y53{bottom:873.000000pt;}
.y14d{bottom:878.644741pt;}
.y9{bottom:879.133333pt;}
.yf5{bottom:884.133333pt;}
.yfa{bottom:884.200000pt;}
.ya7{bottom:886.333333pt;}
.y4f{bottom:891.066667pt;}
.y52{bottom:897.840000pt;}
.yf9{bottom:900.226667pt;}
.y8{bottom:900.760000pt;}
.ya4{bottom:903.600000pt;}
.ya6{bottom:903.706667pt;}
.ya3{bottom:907.706667pt;}
.y14b{bottom:918.694006pt;}
.y4e{bottom:920.760000pt;}
.y7{bottom:922.626667pt;}
.yf3{bottom:925.200000pt;}
.ya2{bottom:929.293333pt;}
.yf4{bottom:933.293333pt;}
.y4d{bottom:942.093333pt;}
.y6{bottom:944.226667pt;}
.y9e{bottom:946.000000pt;}
.yf1{bottom:950.533333pt;}
.y9d{bottom:955.440000pt;}
.y47{bottom:959.693333pt;}
.y46{bottom:960.933333pt;}
.y4a{bottom:963.600000pt;}
.y45{bottom:963.693333pt;}
.y49{bottom:967.693333pt;}
.yf2{bottom:969.293333pt;}
.y9c{bottom:979.173333pt;}
.y43{bottom:984.400000pt;}
.y5{bottom:986.626667pt;}
.y9a{bottom:995.866667pt;}
.y44{bottom:1000.506667pt;}
.y99{bottom:1002.626667pt;}
.yf0{bottom:1003.960000pt;}
.y4{bottom:1007.960000pt;}
.y96{bottom:1020.133333pt;}
.yef{bottom:1021.466667pt;}
.yed{bottom:1025.466667pt;}
.yee{bottom:1025.560000pt;}
.y3{bottom:1029.560000pt;}
.y42{bottom:1030.106667pt;}
.h9c{height:14.132739pt;}
.h25{height:15.199270pt;}
.h6b{height:15.200135pt;}
.h23{height:15.999830pt;}
.h6e{height:16.800502pt;}
.h65{height:17.866380pt;}
.h63{height:17.866635pt;}
.h9{height:18.666318pt;}
.h6{height:19.466684pt;}
.h20{height:20.533419pt;}
.ha6{height:20.595135pt;}
.h2c{height:21.333098pt;}
.h97{height:22.132778pt;}
.h13{height:23.199958pt;}
.h18{height:23.200297pt;}
.h5b{height:24.799467pt;}
.hb{height:24.799530pt;}
.h15{height:24.799853pt;}
.ha2{height:26.870661pt;}
.h5f{height:28.532875pt;}
.h11{height:33.085566pt;}
.h8e{height:33.560431pt;}
.h86{height:34.162579pt;}
.h7c{height:34.615445pt;}
.h7a{height:34.632675pt;}
.h39{height:34.993604pt;}
.he{height:35.515380pt;}
.hc{height:35.533058pt;}
.h51{height:35.541859pt;}
.h50{height:35.559550pt;}
.h84{height:36.179558pt;}
.h83{height:36.197567pt;}
.h74{height:36.651233pt;}
.h72{height:36.669476pt;}
.h27{height:37.378321pt;}
.h30{height:37.506851pt;}
.h58{height:37.763425pt;}
.h57{height:37.782222pt;}
.ha1{height:38.294469pt;}
.ha7{height:39.955834pt;}
.h1a{height:40.800963pt;}
.h34{height:42.666747pt;}
.h4a{height:42.667247pt;}
.ha5{height:43.363514pt;}
.h4f{height:43.913060pt;}
.h38{height:44.532735pt;}
.h93{height:45.314261pt;}
.h79{height:45.332199pt;}
.h71{height:45.332632pt;}
.h46{height:45.333658pt;}
.ha3{height:46.601295pt;}
.h14{height:47.379441pt;}
.h59{height:48.264826pt;}
.ha4{height:51.459312pt;}
.h5{height:52.354167pt;}
.h3{height:54.818262pt;}
.h9b{height:55.698340pt;}
.h7f{height:56.062804pt;}
.h3b{height:56.647069pt;}
.h56{height:57.422280pt;}
.h41{height:57.536250pt;}
.h37{height:57.563214pt;}
.h5d{height:57.916278pt;}
.h1e{height:58.481103pt;}
.h67{height:58.986803pt;}
.h66{height:59.016164pt;}
.h9a{height:59.092055pt;}
.h22{height:59.356132pt;}
.h77{height:59.359944pt;}
.h7d{height:59.372785pt;}
.h7b{height:59.402338pt;}
.h7e{height:59.563764pt;}
.h21{height:59.584103pt;}
.h3a{height:59.991546pt;}
.h2a{height:60.491676pt;}
.h32{height:60.611978pt;}
.h6c{height:60.621924pt;}
.hf{height:60.675612pt;}
.h70{height:60.803411pt;}
.h6d{height:60.805010pt;}
.h2b{height:60.812525pt;}
.h9e{height:60.818535pt;}
.h94{height:60.822422pt;}
.h55{height:60.824485pt;}
.h42{height:60.825905pt;}
.h54{height:60.842795pt;}
.h12{height:60.861250pt;}
.h40{height:60.908200pt;}
.h8f{height:60.908976pt;}
.h91{height:60.912337pt;}
.h3f{height:60.933225pt;}
.h36{height:60.961780pt;}
.h53{height:60.962516pt;}
.h3e{height:60.963555pt;}
.h35{height:60.992125pt;}
.h8d{height:61.015608pt;}
.h52{height:61.031881pt;}
.h4e{height:61.156098pt;}
.h49{height:61.161239pt;}
.h24{height:61.254738pt;}
.h87{height:61.764600pt;}
.h90{height:61.804449pt;}
.h89{height:61.819245pt;}
.h8a{height:61.843726pt;}
.h85{height:61.868496pt;}
.h2d{height:61.873823pt;}
.h1f{height:61.877270pt;}
.h1d{height:61.881563pt;}
.h1c{height:61.933862pt;}
.h9d{height:61.949306pt;}
.h1b{height:61.964690pt;}
.h76{height:62.629789pt;}
.h80{height:62.645531pt;}
.h81{height:62.717627pt;}
.h75{height:62.864590pt;}
.h73{height:62.895882pt;}
.h64{height:63.263967pt;}
.h5e{height:63.457832pt;}
.h2f{height:63.538059pt;}
.h99{height:63.598548pt;}
.h29{height:63.736675pt;}
.h31{height:63.799445pt;}
.h6a{height:64.063140pt;}
.h28{height:64.095028pt;}
.h69{height:64.190545pt;}
.h3d{height:64.222496pt;}
.h98{height:64.225139pt;}
.h45{height:64.270291pt;}
.h44{height:64.302282pt;}
.h5a{height:64.349054pt;}
.h7{height:64.398874pt;}
.h4d{height:64.766790pt;}
.h48{height:64.772235pt;}
.h4c{height:64.799028pt;}
.h47{height:64.804476pt;}
.ha{height:66.095565pt;}
.h26{height:66.259689pt;}
.h2e{height:66.602720pt;}
.h62{height:66.635219pt;}
.h96{height:66.772714pt;}
.h6f{height:67.004590pt;}
.h19{height:67.322877pt;}
.h5c{height:72.119459pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.h9f{height:76.745567pt;}
.hd{height:76.878346pt;}
.h10{height:77.123687pt;}
.h78{height:79.020833pt;}
.h92{height:79.416267pt;}
.h68{height:81.021865pt;}
.h16{height:81.148791pt;}
.h60{height:82.976602pt;}
.h4b{height:83.679648pt;}
.h61{height:85.987139pt;}
.h95{height:86.116903pt;}
.h8{height:89.281250pt;}
.h8c{height:92.147242pt;}
.h82{height:93.685645pt;}
.h33{height:99.947917pt;}
.h17{height:105.281250pt;}
.h43{height:105.387917pt;}
.h8b{height:137.281250pt;}
.h88{height:137.387917pt;}
.h3c{height:147.947917pt;}
.ha0{height:230.471539pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:7.200019pt;}
.wf{width:8.799959pt;}
.w10{width:13.332937pt;}
.w4f{width:14.132586pt;}
.w3{width:18.666623pt;}
.w3d{width:20.533122pt;}
.w2f{width:20.533329pt;}
.w28{width:24.799147pt;}
.w2e{width:24.799260pt;}
.w14{width:24.799826pt;}
.w54{width:25.780160pt;}
.w43{width:26.667123pt;}
.w40{width:30.132943pt;}
.w4d{width:30.133167pt;}
.w6{width:32.800142pt;}
.w1c{width:35.465677pt;}
.w1b{width:38.133774pt;}
.w2d{width:40.799570pt;}
.w32{width:42.666009pt;}
.w7{width:42.666513pt;}
.w53{width:42.928825pt;}
.w8{width:44.533725pt;}
.we{width:45.332218pt;}
.w13{width:45.333386pt;}
.w35{width:45.333724pt;}
.w4c{width:47.998590pt;}
.w4{width:48.000282pt;}
.wd{width:48.001008pt;}
.w49{width:51.466862pt;}
.wc{width:51.467640pt;}
.w5{width:52.531985pt;}
.w4e{width:54.133758pt;}
.w37{width:55.199210pt;}
.w30{width:55.201357pt;}
.w2c{width:61.334687pt;}
.w2b{width:62.133518pt;}
.w4b{width:72.798710pt;}
.w29{width:74.669074pt;}
.w48{width:75.467462pt;}
.w16{width:76.534708pt;}
.w4a{width:86.134735pt;}
.w12{width:88.801147pt;}
.w31{width:90.663729pt;}
.w34{width:92.531316pt;}
.w22{width:92.533235pt;}
.wa{width:93.333573pt;}
.wb{width:95.995592pt;}
.w21{width:98.669512pt;}
.w19{width:101.337364pt;}
.w2a{width:108.537954pt;}
.w17{width:108.538238pt;}
.w18{width:109.335236pt;}
.w1a{width:113.866679pt;}
.w11{width:124.530787pt;}
.w39{width:129.868684pt;}
.w46{width:134.401792pt;}
.w50{width:149.331699pt;}
.w41{width:165.331602pt;}
.w25{width:169.862402pt;}
.w15{width:172.529694pt;}
.w1e{width:175.206364pt;}
.w26{width:176.802151pt;}
.w1f{width:183.999065pt;}
.w1d{width:184.798867pt;}
.w20{width:189.336514pt;}
.w3e{width:205.337746pt;}
.w27{width:208.804641pt;}
.w9{width:209.601459pt;}
.w47{width:214.134954pt;}
.w33{width:214.936277pt;}
.w3f{width:216.793345pt;}
.w44{width:216.802087pt;}
.w36{width:217.602023pt;}
.w42{width:219.462102pt;}
.w51{width:219.470952pt;}
.w24{width:226.673012pt;}
.w3b{width:230.124740pt;}
.w23{width:236.530348pt;}
.w55{width:251.799565pt;}
.w45{width:257.863505pt;}
.w38{width:312.795703pt;}
.w3a{width:378.668898pt;}
.w3c{width:382.410459pt;}
.w52{width:496.728232pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:1.508601pt;}
.xc{left:3.193322pt;}
.x42{left:4.981453pt;}
.x24{left:5.965239pt;}
.xc3{left:7.122283pt;}
.x58{left:9.621415pt;}
.x1d{left:11.419241pt;}
.xf{left:12.888943pt;}
.xe{left:14.158423pt;}
.x3e{left:17.255316pt;}
.x10{left:19.142618pt;}
.x62{left:22.444176pt;}
.x1f{left:23.973578pt;}
.x23{left:25.740921pt;}
.x51{left:26.978295pt;}
.x1b{left:29.618617pt;}
.xc0{left:32.452366pt;}
.x61{left:33.602692pt;}
.x5e{left:35.902722pt;}
.x3f{left:38.117945pt;}
.x9e{left:40.475140pt;}
.xd5{left:41.380621pt;}
.x5a{left:43.249115pt;}
.x1e{left:44.865951pt;}
.x4b{left:46.289702pt;}
.x32{left:47.342527pt;}
.x4f{left:48.767788pt;}
.x77{left:51.952892pt;}
.x3b{left:52.996922pt;}
.x9c{left:54.063603pt;}
.x22{left:57.091974pt;}
.x4e{left:58.686727pt;}
.x5b{left:60.753248pt;}
.xa0{left:62.578454pt;}
.xd7{left:63.535804pt;}
.xa7{left:65.061895pt;}
.x5c{left:66.827639pt;}
.x30{left:67.772297pt;}
.x4a{left:69.290298pt;}
.x49{left:70.549854pt;}
.x4d{left:71.509736pt;}
.x44{left:72.869751pt;}
.x2{left:75.500000pt;}
.x31{left:76.862224pt;}
.xaa{left:77.867158pt;}
.x3a{left:79.528280pt;}
.x5d{left:80.782464pt;}
.x47{left:82.066990pt;}
.x3{left:83.766667pt;}
.x21{left:85.102418pt;}
.xbc{left:86.475296pt;}
.xae{left:89.470897pt;}
.xb6{left:91.411200pt;}
.xa1{left:93.724590pt;}
.xaf{left:94.760628pt;}
.x9d{left:96.212336pt;}
.xab{left:98.102391pt;}
.xb3{left:102.829002pt;}
.xa5{left:104.203266pt;}
.x6d{left:105.992605pt;}
.x96{left:109.027151pt;}
.xb0{left:110.022458pt;}
.x67{left:111.599100pt;}
.x5{left:113.366667pt;}
.x59{left:114.530454pt;}
.x54{left:115.624246pt;}
.x55{left:116.881118pt;}
.xb5{left:119.215068pt;}
.x8d{left:120.833333pt;}
.x6f{left:122.286941pt;}
.x11{left:123.500000pt;}
.xc1{left:128.438003pt;}
.x6a{left:130.752142pt;}
.x69{left:132.018789pt;}
.xa9{left:133.906667pt;}
.x6c{left:135.225782pt;}
.x6b{left:137.088066pt;}
.x89{left:138.424909pt;}
.x6e{left:140.467502pt;}
.xb2{left:143.493333pt;}
.x97{left:147.218969pt;}
.x87{left:148.469286pt;}
.x86{left:149.728181pt;}
.x8f{left:151.512705pt;}
.xbd{left:152.526074pt;}
.x88{left:153.464689pt;}
.x90{left:155.101023pt;}
.xc6{left:158.533333pt;}
.x94{left:160.105089pt;}
.x93{left:161.347443pt;}
.x16{left:162.266667pt;}
.x95{left:166.343293pt;}
.x80{left:168.600000pt;}
.xba{left:170.712884pt;}
.x8{left:174.266667pt;}
.x78{left:178.000000pt;}
.x68{left:180.275776pt;}
.xa{left:181.400000pt;}
.x65{left:182.548332pt;}
.x4{left:183.533333pt;}
.xb8{left:185.025988pt;}
.xb9{left:189.069540pt;}
.x34{left:191.333333pt;}
.x63{left:193.715174pt;}
.x66{left:195.086231pt;}
.x64{left:197.325607pt;}
.x3d{left:203.866667pt;}
.x17{left:204.866667pt;}
.x20{left:206.733333pt;}
.x25{left:209.400000pt;}
.x5f{left:212.066667pt;}
.x45{left:214.733333pt;}
.x60{left:217.200000pt;}
.x40{left:221.933333pt;}
.xd2{left:224.866667pt;}
.x4c{left:226.800000pt;}
.xd3{left:229.733333pt;}
.x9f{left:230.800000pt;}
.x33{left:237.933333pt;}
.x79{left:239.266667pt;}
.x8e{left:247.000000pt;}
.xd9{left:255.905407pt;}
.xa3{left:258.990876pt;}
.x41{left:264.400000pt;}
.x8a{left:266.800000pt;}
.x6{left:268.906667pt;}
.xa6{left:275.416453pt;}
.xb4{left:278.773333pt;}
.x35{left:280.106667pt;}
.x26{left:283.066667pt;}
.x3c{left:285.973333pt;}
.xa2{left:288.439014pt;}
.x70{left:290.240000pt;}
.xa4{left:293.717706pt;}
.x75{left:296.400000pt;}
.x56{left:298.240000pt;}
.x57{left:303.066667pt;}
.x84{left:305.733333pt;}
.x7{left:308.640000pt;}
.xb{left:310.266667pt;}
.x46{left:311.600000pt;}
.x9a{left:312.630512pt;}
.x18{left:313.733333pt;}
.x9b{left:317.583391pt;}
.xac{left:318.773333pt;}
.x8b{left:321.973333pt;}
.xad{left:323.600000pt;}
.xd{left:328.906667pt;}
.x91{left:331.026667pt;}
.x27{left:334.506667pt;}
.xbb{left:335.866667pt;}
.xc7{left:337.733333pt;}
.x50{left:340.640000pt;}
.x28{left:342.533333pt;}
.x85{left:343.840000pt;}
.x52{left:349.173333pt;}
.x19{left:358.226667pt;}
.xc2{left:364.933333pt;}
.x92{left:366.266667pt;}
.xd4{left:368.666667pt;}
.x43{left:373.733333pt;}
.xcf{left:376.666667pt;}
.x1{left:382.800000pt;}
.x74{left:385.200000pt;}
.x81{left:388.933333pt;}
.x29{left:390.533333pt;}
.x12{left:393.733333pt;}
.x98{left:395.333333pt;}
.x2a{left:398.533333pt;}
.x76{left:404.933333pt;}
.x7d{left:422.266667pt;}
.x48{left:425.466667pt;}
.x53{left:426.533333pt;}
.x1a{left:435.066667pt;}
.x2b{left:443.866667pt;}
.x13{left:446.266667pt;}
.x8c{left:451.333333pt;}
.x14{left:458.800000pt;}
.x2c{left:469.200000pt;}
.x7e{left:471.866667pt;}
.x2d{left:478.000000pt;}
.x15{left:491.640000pt;}
.xa8{left:495.893333pt;}
.xd8{left:500.273884pt;}
.xb7{left:503.106667pt;}
.xcc{left:517.506667pt;}
.x7f{left:522.266667pt;}
.x99{left:525.226667pt;}
.xb1{left:540.440000pt;}
.x2e{left:543.600000pt;}
.x71{left:551.893333pt;}
.x2f{left:556.973333pt;}
.x82{left:571.333333pt;}
.xc8{left:578.306667pt;}
.xbf{left:583.600000pt;}
.xd6{left:588.200000pt;}
.x7a{left:598.533333pt;}
.xd0{left:604.933333pt;}
.xc9{left:606.800000pt;}
.x38{left:610.000000pt;}
.x83{left:614.066667pt;}
.xc4{left:615.866667pt;}
.xca{left:617.466667pt;}
.x39{left:634.866667pt;}
.x7b{left:639.400000pt;}
.x1c{left:644.733333pt;}
.xbe{left:655.933333pt;}
.xcd{left:662.000000pt;}
.xc5{left:663.933333pt;}
.xcb{left:665.533333pt;}
.x72{left:669.200000pt;}
.x36{left:672.666667pt;}
.x7c{left:679.866667pt;}
.xce{left:692.226667pt;}
.x73{left:694.106667pt;}
.xd1{left:713.560000pt;}
.x37{left:718.106667pt;}
}




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