
    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_3971806501d48abc5a16fd98.woff')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_1e2aed50f12f66ef3906fa1e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7c56b4376ab5fdde37d1943c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e64a99862f9d2d1bef2138b4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_c1053c769c6d608c3bb42aba.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893066;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_1eb18044388728f738cdcdd9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.049805;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_38ca919fb609dd9897193bb9.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e9938e9a06cd8c6edd87af40.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_033a4d3fe54ca8e79f4480a3.woff')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_2f244141c7c3c2ce747ab502.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2dd9f25d2305ea8a898281d7.woff')format("woff");}.ffb{font-family:ffb;line-height:0.716000;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;}
.m75{transform:matrix(0.000000,-0.247980,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247980,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247980,0.250000,0.000000,0,0);}
.m74{transform:matrix(0.000000,-0.248220,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.248220,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.248220,0.250000,0.000000,0,0);}
.m61{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m73{transform:matrix(0.000000,-0.250670,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250670,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250670,0.250000,0.000000,0,0);}
.m60{transform:matrix(0.000000,-0.251759,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.251759,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.251759,0.250000,0.000000,0,0);}
.m5f{transform:matrix(0.000000,-0.252500,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.252500,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.252500,0.250000,0.000000,0,0);}
.m41{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.247534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247534,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247545,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247555,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247605,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247630,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247668,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247730,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247932,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.247968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247968,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248034,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248123,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248130,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248161,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248216,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248245,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248320,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248439,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248468,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248527,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248536,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.248618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248618,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248655,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248698,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248743,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248798,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248814,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248855,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248886,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248891,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248995,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249002,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249141,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249170,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249232,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249236,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249236,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249236,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249280,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249361,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249370,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249384,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249477,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249534,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249539,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249545,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249609,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249611,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249618,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249798,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,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);}
.m92{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250030,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250157,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250264,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250330,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250370,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250398,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250423,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250439,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250455,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250486,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250509,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250670,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250711,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250877,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250959,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250964,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251052,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251102,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251114,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251130,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251239,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251257,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251277,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251280,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251282,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.251311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251311,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251341,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251361,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251407,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251411,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251480,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251541,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251577,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251591,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251609,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251618,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251780,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251795,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.251830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251830,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251909,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251934,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.251986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251986,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251998,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252057,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252098,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252141,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252186,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252207,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252209,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252245,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252248,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252305,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252370,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252373,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.252393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252393,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252409,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252445,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252499,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v2{vertical-align:-23.975400px;}
.v3{vertical-align:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v1{vertical-align:23.975400px;}
.v5{vertical-align:27.000000px;}
.v6{vertical-align:54.023400px;}
.ls37{letter-spacing:-2.442000px;}
.ls23{letter-spacing:-0.924000px;}
.ls41{letter-spacing:-0.858000px;}
.ls24{letter-spacing:-0.792000px;}
.ls7{letter-spacing:-0.660000px;}
.ls22{letter-spacing:-0.462000px;}
.ls36{letter-spacing:-0.396000px;}
.ls6{letter-spacing:-0.384780px;}
.ls19{letter-spacing:-0.330000px;}
.ls1a{letter-spacing:-0.264000px;}
.ls18{letter-spacing:-0.198000px;}
.ls17{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.132000px;}
.ls16{letter-spacing:-0.066000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.004503px;}
.lsc{letter-spacing:0.008400px;}
.ls26{letter-spacing:0.010800px;}
.ls2f{letter-spacing:0.011400px;}
.ls2a{letter-spacing:0.033000px;}
.ls2b{letter-spacing:0.034763px;}
.ls4{letter-spacing:0.039553px;}
.lsa{letter-spacing:0.066000px;}
.ls11{letter-spacing:0.132000px;}
.ls12{letter-spacing:0.198000px;}
.ls38{letter-spacing:0.201856px;}
.ls10{letter-spacing:0.202800px;}
.ls25{letter-spacing:0.210901px;}
.ls9{letter-spacing:0.264000px;}
.ls1f{letter-spacing:0.286881px;}
.ls2d{letter-spacing:0.309259px;}
.ls2e{letter-spacing:0.321524px;}
.ls20{letter-spacing:0.330000px;}
.ls3{letter-spacing:0.396000px;}
.ls3c{letter-spacing:0.415800px;}
.ls1b{letter-spacing:0.462000px;}
.ls27{letter-spacing:0.496218px;}
.lsb{letter-spacing:0.528000px;}
.ls21{letter-spacing:0.594000px;}
.ls1e{letter-spacing:0.660000px;}
.ls13{letter-spacing:0.726000px;}
.ls15{letter-spacing:0.792000px;}
.ls3e{letter-spacing:0.911287px;}
.ls3d{letter-spacing:0.924000px;}
.ls35{letter-spacing:0.990000px;}
.ls39{letter-spacing:1.056000px;}
.lse{letter-spacing:1.080000px;}
.ls3a{letter-spacing:1.122000px;}
.ls1c{letter-spacing:1.144200px;}
.ls40{letter-spacing:1.518000px;}
.ls3b{letter-spacing:1.650000px;}
.ls1d{letter-spacing:1.990800px;}
.ls33{letter-spacing:2.016000px;}
.ls3f{letter-spacing:2.087400px;}
.ls42{letter-spacing:2.193000px;}
.ls2c{letter-spacing:2.965800px;}
.ls34{letter-spacing:3.487805px;}
.ls29{letter-spacing:3.533822px;}
.ls14{letter-spacing:3.546988px;}
.ls28{letter-spacing:4.943168px;}
.ls30{letter-spacing:6.498416px;}
.lsf{letter-spacing:6.765891px;}
.ls0{letter-spacing:13.200000px;}
.ls2{letter-spacing:35.220600px;}
.ls1{letter-spacing:44.241192px;}
.ls32{letter-spacing:116.193600px;}
.ls31{letter-spacing:220.708200px;}
.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;}
}
.ws12{word-spacing:-19.500000px;}
.ws7e{word-spacing:-17.556000px;}
.ws62{word-spacing:-17.490000px;}
.ws6c{word-spacing:-17.226000px;}
.ws84{word-spacing:-17.160000px;}
.ws4e{word-spacing:-17.094000px;}
.ws49{word-spacing:-16.962000px;}
.ws4{word-spacing:-16.896000px;}
.ws9e{word-spacing:-16.830000px;}
.ws4a{word-spacing:-16.764000px;}
.ws47{word-spacing:-16.698000px;}
.ws3f{word-spacing:-16.632000px;}
.ws85{word-spacing:-16.566000px;}
.ws0{word-spacing:-16.500000px;}
.ws2e{word-spacing:-16.434000px;}
.ws3{word-spacing:-16.368000px;}
.ws7d{word-spacing:-16.302000px;}
.ws6d{word-spacing:-16.236000px;}
.ws2d{word-spacing:-16.170000px;}
.ws95{word-spacing:-16.104000px;}
.ws11{word-spacing:-15.000000px;}
.ws52{word-spacing:-12.000000px;}
.ws1{word-spacing:-10.494000px;}
.ws2{word-spacing:-9.619500px;}
.wsa{word-spacing:-8.250000px;}
.ws60{word-spacing:-6.000000px;}
.ws74{word-spacing:-4.488000px;}
.ws7{word-spacing:-3.960000px;}
.ws78{word-spacing:-3.630000px;}
.ws8{word-spacing:-2.664000px;}
.ws61{word-spacing:-2.016000px;}
.ws8f{word-spacing:-1.650000px;}
.ws6{word-spacing:-1.296000px;}
.ws7f{word-spacing:-1.254000px;}
.ws4c{word-spacing:-1.122000px;}
.ws82{word-spacing:-1.056000px;}
.ws67{word-spacing:-0.990000px;}
.ws48{word-spacing:-0.924000px;}
.wsb{word-spacing:-0.858000px;}
.ws1d{word-spacing:-0.792000px;}
.ws66{word-spacing:-0.726000px;}
.ws1b{word-spacing:-0.720000px;}
.ws34{word-spacing:-0.660000px;}
.ws5f{word-spacing:-0.594000px;}
.ws1f{word-spacing:-0.528000px;}
.ws21{word-spacing:-0.462000px;}
.ws16{word-spacing:-0.396000px;}
.ws38{word-spacing:-0.330000px;}
.wsd{word-spacing:-0.264000px;}
.ws28{word-spacing:-0.198000px;}
.ws1c{word-spacing:-0.132000px;}
.ws3a{word-spacing:-0.066000px;}
.ws5{word-spacing:0.000000px;}
.ws2b{word-spacing:0.066000px;}
.ws25{word-spacing:0.132000px;}
.ws1a{word-spacing:0.180000px;}
.ws1e{word-spacing:0.198000px;}
.ws31{word-spacing:0.264000px;}
.ws2a{word-spacing:0.330000px;}
.ws19{word-spacing:0.360000px;}
.ws9{word-spacing:0.384780px;}
.ws83{word-spacing:0.396000px;}
.ws41{word-spacing:0.462000px;}
.ws72{word-spacing:0.528000px;}
.ws44{word-spacing:0.792000px;}
.ws37{word-spacing:0.858000px;}
.ws43{word-spacing:0.924000px;}
.ws91{word-spacing:0.990000px;}
.ws3d{word-spacing:1.056000px;}
.ws32{word-spacing:1.122000px;}
.ws4b{word-spacing:1.188000px;}
.ws15{word-spacing:1.254000px;}
.ws8a{word-spacing:1.320000px;}
.ws77{word-spacing:1.452000px;}
.ws96{word-spacing:1.518000px;}
.ws24{word-spacing:1.650000px;}
.ws3b{word-spacing:1.716000px;}
.ws73{word-spacing:1.848000px;}
.ws26{word-spacing:1.914000px;}
.ws23{word-spacing:1.980000px;}
.ws80{word-spacing:2.046000px;}
.ws65{word-spacing:2.112000px;}
.ws98{word-spacing:2.178000px;}
.ws6f{word-spacing:2.244000px;}
.ws7c{word-spacing:2.310000px;}
.ws6b{word-spacing:2.442000px;}
.ws81{word-spacing:2.508000px;}
.ws79{word-spacing:2.574000px;}
.ws35{word-spacing:2.706000px;}
.wsc{word-spacing:2.772000px;}
.ws76{word-spacing:2.838000px;}
.ws20{word-spacing:2.904000px;}
.ws4d{word-spacing:2.970000px;}
.ws9c{word-spacing:3.036000px;}
.ws6e{word-spacing:3.168000px;}
.wse{word-spacing:3.234000px;}
.ws10{word-spacing:3.300000px;}
.ws3c{word-spacing:3.366000px;}
.ws94{word-spacing:3.432000px;}
.ws71{word-spacing:3.498000px;}
.ws45{word-spacing:3.564000px;}
.ws9f{word-spacing:3.630000px;}
.ws13{word-spacing:3.762000px;}
.ws6a{word-spacing:3.828000px;}
.ws9d{word-spacing:3.960000px;}
.ws92{word-spacing:4.026000px;}
.ws2f{word-spacing:4.092000px;}
.wsf{word-spacing:4.158000px;}
.ws63{word-spacing:4.224000px;}
.ws27{word-spacing:4.290000px;}
.ws7b{word-spacing:4.422000px;}
.ws39{word-spacing:4.488000px;}
.ws8c{word-spacing:4.620000px;}
.ws69{word-spacing:4.686000px;}
.ws75{word-spacing:4.818000px;}
.ws30{word-spacing:4.884000px;}
.ws42{word-spacing:4.950000px;}
.ws7a{word-spacing:5.016000px;}
.ws64{word-spacing:5.082000px;}
.ws93{word-spacing:5.148000px;}
.ws14{word-spacing:5.412000px;}
.ws22{word-spacing:5.544000px;}
.ws46{word-spacing:5.610000px;}
.ws40{word-spacing:5.676000px;}
.ws89{word-spacing:5.874000px;}
.ws5e{word-spacing:5.940000px;}
.ws68{word-spacing:6.468000px;}
.ws36{word-spacing:6.534000px;}
.ws87{word-spacing:6.600000px;}
.ws33{word-spacing:6.732000px;}
.ws86{word-spacing:6.864000px;}
.ws88{word-spacing:6.996000px;}
.ws18{word-spacing:7.200000px;}
.ws70{word-spacing:7.260000px;}
.ws29{word-spacing:7.392000px;}
.ws9a{word-spacing:7.788000px;}
.ws8b{word-spacing:8.118000px;}
.ws2c{word-spacing:8.184000px;}
.ws9b{word-spacing:9.108000px;}
.ws99{word-spacing:9.174000px;}
.ws90{word-spacing:9.702000px;}
.ws17{word-spacing:10.500000px;}
.ws8d{word-spacing:10.956000px;}
.ws97{word-spacing:14.850000px;}
.ws8e{word-spacing:16.236000px;}
.ws5d{word-spacing:35.082000px;}
.ws57{word-spacing:35.367000px;}
.ws3e{word-spacing:40.458000px;}
.ws53{word-spacing:46.192200px;}
.ws51{word-spacing:58.686000px;}
.ws56{word-spacing:67.778400px;}
.ws50{word-spacing:74.565600px;}
.ws5a{word-spacing:74.770800px;}
.ws54{word-spacing:107.367000px;}
.ws58{word-spacing:142.344000px;}
.ws5b{word-spacing:155.319000px;}
.ws55{word-spacing:173.991000px;}
.ws4f{word-spacing:179.366400px;}
.ws59{word-spacing:231.353400px;}
.ws5c{word-spacing:301.574400px;}
._b{margin-left:-14.221349px;}
._c{margin-left:-9.892080px;}
._4{margin-left:-8.374800px;}
._9{margin-left:-7.306200px;}
._1{margin-left:-6.078600px;}
._3{margin-left:-4.375800px;}
._0{margin-left:-2.448600px;}
._2{margin-left:-1.247400px;}
._a{width:1.569480px;}
._8{width:3.248400px;}
._e{width:4.554000px;}
._f{width:6.072000px;}
._d{width:7.100304px;}
._10{width:8.165140px;}
._24{width:9.391800px;}
._21{width:10.870200px;}
._23{width:11.885280px;}
._22{width:13.081200px;}
._20{width:14.119824px;}
._3f{width:18.739669px;}
._6{width:32.980200px;}
._5{width:34.398000px;}
._7{width:35.896800px;}
._12{width:40.458000px;}
._35{width:46.192200px;}
._31{width:63.877800px;}
._39{width:86.770800px;}
._25{width:97.555200px;}
._3c{width:109.506600px;}
._17{width:126.126000px;}
._30{width:137.694600px;}
._37{width:144.162600px;}
._32{width:146.611200px;}
._3d{width:152.246400px;}
._3e{width:155.319000px;}
._29{width:157.714200px;}
._27{width:160.467000px;}
._33{width:165.522600px;}
._2f{width:167.319000px;}
._2c{width:169.376400px;}
._36{width:178.344000px;}
._28{width:185.814000px;}
._1f{width:188.496000px;}
._2a{width:196.386000px;}
._3a{width:200.178600px;}
._2e{width:205.574400px;}
._1c{width:206.778000px;}
._16{width:210.474000px;}
._26{width:216.278400px;}
._34{width:218.679000px;}
._38{width:220.606200px;}
._14{width:222.241800px;}
._13{width:228.822000px;}
._1e{width:233.765400px;}
._18{width:234.966600px;}
._19{width:236.148000px;}
._2b{width:247.858200px;}
._1b{width:250.800000px;}
._1d{width:255.743400px;}
._1a{width:256.812600px;}
._11{width:265.518000px;}
._2d{width:270.595200px;}
._15{width:272.844000px;}
._3b{width:347.570400px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:34.980000px;}
.fs5{font-size:38.478000px;}
.fs4{font-size:41.976000px;}
.fs9{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:86.354850px;}
.ye3{bottom:127.559100px;}
.y2f{bottom:128.903700px;}
.y10f{bottom:131.811000px;}
.y164{bottom:132.484350px;}
.y1b3{bottom:136.216200px;}
.y88{bottom:137.674200px;}
.y214{bottom:140.624100px;}
.y18d{bottom:140.751750px;}
.yd9{bottom:143.726700px;}
.ye2{bottom:147.359100px;}
.y2e{bottom:148.703700px;}
.y163{bottom:152.284350px;}
.y1b2{bottom:156.016200px;}
.y87{bottom:157.474200px;}
.y1db{bottom:160.408050px;}
.y213{bottom:160.424100px;}
.y18c{bottom:160.551750px;}
.yd8{bottom:162.626700px;}
.y5c{bottom:163.032000px;}
.yaf{bottom:163.343700px;}
.ye1{bottom:167.159100px;}
.y2d{bottom:168.503700px;}
.y202{bottom:168.928050px;}
.y162{bottom:172.084500px;}
.y10e{bottom:174.172350px;}
.y1b1{bottom:175.816200px;}
.y86{bottom:177.274350px;}
.y1da{bottom:180.208050px;}
.y212{bottom:180.224100px;}
.y18b{bottom:180.351900px;}
.yd7{bottom:181.526700px;}
.y5b{bottom:182.831850px;}
.yae{bottom:183.143700px;}
.ye0{bottom:186.959100px;}
.y2c{bottom:188.303700px;}
.y201{bottom:188.728050px;}
.y10d{bottom:193.072200px;}
.y85{bottom:197.074350px;}
.y18a{bottom:200.151900px;}
.y161{bottom:200.388300px;}
.yd6{bottom:200.426700px;}
.y5a{bottom:202.632000px;}
.yad{bottom:202.943700px;}
.y1b0{bottom:204.120150px;}
.ydf{bottom:206.759100px;}
.y2b{bottom:208.103700px;}
.y1d9{bottom:208.512000px;}
.y200{bottom:208.528050px;}
.y10c{bottom:211.972350px;}
.yd5{bottom:219.326700px;}
.y189{bottom:219.951750px;}
.y59{bottom:222.432000px;}
.yac{bottom:222.743700px;}
.y84{bottom:223.252200px;}
.y1af{bottom:223.920150px;}
.yde{bottom:226.559100px;}
.y1d8{bottom:228.312000px;}
.y1ff{bottom:228.328050px;}
.y13a{bottom:236.515650px;}
.yd4{bottom:238.226700px;}
.y188{bottom:239.751750px;}
.y160{bottom:240.796200px;}
.y58{bottom:242.232000px;}
.yab{bottom:242.543850px;}
.y1ae{bottom:243.720150px;}
.ydd{bottom:246.359100px;}
.y10b{bottom:247.880100px;}
.y1d7{bottom:248.112000px;}
.y211{bottom:248.128050px;}
.y2a{bottom:250.405950px;}
.y1fe{bottom:256.632000px;}
.y187{bottom:259.551750px;}
.y83{bottom:260.060100px;}
.y15f{bottom:260.296200px;}
.y57{bottom:262.032000px;}
.yaa{bottom:262.343700px;}
.ydc{bottom:266.159100px;}
.y10a{bottom:266.780250px;}
.y29{bottom:270.206100px;}
.y1ad{bottom:272.024100px;}
.yd3{bottom:274.134600px;}
.y1d6{bottom:276.415950px;}
.y1fd{bottom:276.432000px;}
.y186{bottom:279.351900px;}
.y15e{bottom:279.796200px;}
.y82{bottom:279.860100px;}
.y56{bottom:281.831850px;}
.ya9{bottom:282.143700px;}
.y109{bottom:285.680100px;}
.ydb{bottom:285.959100px;}
.y28{bottom:290.005950px;}
.y1ac{bottom:291.824100px;}
.yd2{bottom:293.034600px;}
.y1d5{bottom:296.215950px;}
.y1fc{bottom:296.232000px;}
.y185{bottom:299.151900px;}
.y15d{bottom:299.296200px;}
.y55{bottom:301.632000px;}
.ya8{bottom:301.943700px;}
.y108{bottom:304.580250px;}
.yda{bottom:305.759100px;}
.y27{bottom:309.806100px;}
.y1ab{bottom:311.624100px;}
.y1d4{bottom:316.015950px;}
.y1fb{bottom:316.032000px;}
.y81{bottom:316.668000px;}
.y15c{bottom:318.796200px;}
.y184{bottom:318.951750px;}
.y54{bottom:321.432000px;}
.ya7{bottom:321.743700px;}
.y218{bottom:324.535800px;}
.yd1{bottom:328.942500px;}
.y26{bottom:329.606100px;}
.y1aa{bottom:331.424100px;}
.y1d3{bottom:335.815950px;}
.y1fa{bottom:335.831850px;}
.y80{bottom:336.468000px;}
.y15b{bottom:338.296200px;}
.y183{bottom:338.751750px;}
.y107{bottom:340.488000px;}
.y53{bottom:341.232000px;}
.ya6{bottom:341.543850px;}
.y210{bottom:344.335950px;}
.yd0{bottom:347.842500px;}
.y25{bottom:349.405950px;}
.y12c{bottom:352.913250px;}
.y110{bottom:352.913400px;}
.y7f{bottom:356.268000px;}
.y15a{bottom:357.796200px;}
.y182{bottom:358.551750px;}
.y106{bottom:359.388000px;}
.y1a9{bottom:359.728050px;}
.y52{bottom:361.032000px;}
.ya5{bottom:361.343700px;}
.y1d2{bottom:364.119900px;}
.y1f9{bottom:364.135950px;}
.y24{bottom:369.206100px;}
.y217{bottom:372.639750px;}
.y7e{bottom:376.068000px;}
.y159{bottom:377.296200px;}
.y105{bottom:378.288000px;}
.y181{bottom:378.351900px;}
.y1a8{bottom:379.528050px;}
.y51{bottom:380.832000px;}
.ya4{bottom:381.143700px;}
.ycf{bottom:383.750400px;}
.y1d1{bottom:383.919900px;}
.y1f8{bottom:383.935800px;}
.y23{bottom:389.005950px;}
.y216{bottom:392.439900px;}
.y7d{bottom:395.868000px;}
.y158{bottom:396.796200px;}
.y104{bottom:397.188000px;}
.y50{bottom:400.632000px;}
.ya3{bottom:400.943700px;}
.yce{bottom:402.650400px;}
.y1a7{bottom:407.832000px;}
.y22{bottom:408.806100px;}
.y1d0{bottom:412.223850px;}
.y1f7{bottom:412.239750px;}
.y180{bottom:415.159650px;}
.y7c{bottom:415.668000px;}
.y103{bottom:416.088000px;}
.y157{bottom:416.296200px;}
.y12d{bottom:418.083000px;}
.y4f{bottom:420.432000px;}
.ya2{bottom:420.743700px;}
.y1a6{bottom:427.632000px;}
.ycd{bottom:427.928250px;}
.y1cf{bottom:432.023850px;}
.y1f6{bottom:432.039900px;}
.y17f{bottom:434.959650px;}
.y102{bottom:434.988000px;}
.y7b{bottom:435.468000px;}
.y156{bottom:435.796200px;}
.y21{bottom:440.119350px;}
.y4e{bottom:440.232000px;}
.ya1{bottom:440.543700px;}
.y1a5{bottom:447.432000px;}
.y1ce{bottom:451.823850px;}
.y1f5{bottom:451.839900px;}
.y101{bottom:453.888000px;}
.y17e{bottom:454.759650px;}
.y7a{bottom:455.268000px;}
.y155{bottom:455.296200px;}
.y4d{bottom:460.032000px;}
.ya0{bottom:460.343700px;}
.ycc{bottom:463.836150px;}
.y20{bottom:465.413850px;}
.y100{bottom:472.788000px;}
.y17d{bottom:474.559650px;}
.y154{bottom:474.796200px;}
.y1a4{bottom:475.735950px;}
.y1f{bottom:479.719500px;}
.y1cd{bottom:480.127650px;}
.y1f4{bottom:480.143700px;}
.y131{bottom:480.543300px;}
.ycb{bottom:482.736150px;}
.y11e{bottom:483.766050px;}
.y111{bottom:485.043300px;}
.y124{bottom:486.543300px;}
.yff{bottom:491.688000px;}
.y79{bottom:492.075900px;}
.y17c{bottom:494.359650px;}
.y1a3{bottom:495.535950px;}
.y4c{bottom:496.839900px;}
.y9f{bottom:497.151600px;}
.y130{bottom:498.039450px;}
.y1cc{bottom:499.927800px;}
.y1f3{bottom:499.943700px;}
.yca{bottom:501.636150px;}
.y153{bottom:502.800150px;}
.y1e{bottom:505.013850px;}
.yfe{bottom:510.588000px;}
.y78{bottom:511.875900px;}
.y17b{bottom:514.159650px;}
.y1a2{bottom:515.335950px;}
.y4b{bottom:516.639750px;}
.y1d{bottom:519.319500px;}
.y1cb{bottom:519.727800px;}
.y1f2{bottom:519.743700px;}
.yc9{bottom:520.536150px;}
.y20f{bottom:528.247650px;}
.y77{bottom:531.675900px;}
.y9e{bottom:533.959500px;}
.y17a{bottom:533.959650px;}
.y4a{bottom:536.439900px;}
.y1c{bottom:539.119350px;}
.yc8{bottom:539.436150px;}
.y1f1{bottom:539.543700px;}
.y152{bottom:541.408050px;}
.y1a1{bottom:543.639750px;}
.y1b{bottom:544.613850px;}
.yfd{bottom:546.495900px;}
.y13b{bottom:547.116300px;}
.y112{bottom:547.596750px;}
.y1ca{bottom:548.031750px;}
.y20e{bottom:548.047650px;}
.y138{bottom:548.393550px;}
.y113{bottom:549.893550px;}
.y76{bottom:551.475900px;}
.y9d{bottom:553.759500px;}
.y49{bottom:556.239750px;}
.y133{bottom:556.391700px;}
.yc7{bottom:558.336150px;}
.y1a{bottom:558.919350px;}
.y134{bottom:559.391700px;}
.y151{bottom:560.908050px;}
.y132{bottom:561.389700px;}
.y1a0{bottom:563.439900px;}
.y11f{bottom:564.389700px;}
.yfc{bottom:565.395900px;}
.y1c9{bottom:567.831600px;}
.y1f0{bottom:567.847650px;}
.y179{bottom:570.767550px;}
.y75{bottom:571.275900px;}
.y9c{bottom:573.559500px;}
.y48{bottom:576.039900px;}
.y150{bottom:580.408050px;}
.y19f{bottom:583.239750px;}
.yc6{bottom:583.614150px;}
.y19{bottom:584.213850px;}
.yfb{bottom:584.295900px;}
.y1c8{bottom:587.631750px;}
.y1ef{bottom:587.647650px;}
.y178{bottom:590.567550px;}
.y74{bottom:591.075900px;}
.y9b{bottom:593.359500px;}
.y47{bottom:595.839900px;}
.y215{bottom:596.151600px;}
.y14f{bottom:599.908050px;}
.yfa{bottom:603.195900px;}
.y18{bottom:604.013850px;}
.y1c7{bottom:607.431600px;}
.y1ee{bottom:607.447650px;}
.y135{bottom:608.433600px;}
.y177{bottom:610.367550px;}
.y19e{bottom:611.543700px;}
.y9a{bottom:613.159500px;}
.y46{bottom:615.639750px;}
.y20d{bottom:615.951600px;}
.y73{bottom:617.253750px;}
.y17{bottom:618.319500px;}
.y14e{bottom:619.408050px;}
.yc5{bottom:619.521900px;}
.yf9{bottom:628.473900px;}
.y176{bottom:630.167550px;}
.y19d{bottom:631.343700px;}
.y99{bottom:632.959500px;}
.y45{bottom:635.439900px;}
.y1c6{bottom:635.735550px;}
.y1ed{bottom:635.751600px;}
.yc4{bottom:638.422050px;}
.y14d{bottom:638.908050px;}
.y16{bottom:643.614000px;}
.y175{bottom:649.967550px;}
.y19c{bottom:651.143700px;}
.y98{bottom:652.759500px;}
.y72{bottom:654.061650px;}
.y44{bottom:655.239750px;}
.y1c5{bottom:655.535550px;}
.y1ec{bottom:655.551600px;}
.y15{bottom:657.919350px;}
.y14c{bottom:658.408050px;}
.yc3{bottom:663.699900px;}
.y20c{bottom:664.055550px;}
.yf8{bottom:664.381800px;}
.y221{bottom:665.387850px;}
.y174{bottom:669.767550px;}
.y117{bottom:669.858150px;}
.y97{bottom:672.559500px;}
.y115{bottom:672.858150px;}
.y71{bottom:673.861650px;}
.y43{bottom:675.039900px;}
.y116{bottom:675.061200px;}
.y1c4{bottom:675.335700px;}
.y1eb{bottom:675.351600px;}
.y114{bottom:678.061200px;}
.y19b{bottom:679.447650px;}
.y14{bottom:683.213850px;}
.yf7{bottom:683.281650px;}
.y20b{bottom:683.855550px;}
.y12e{bottom:684.354150px;}
.y220{bottom:685.187850px;}
.y14b{bottom:686.412000px;}
.y173{bottom:689.567550px;}
.y139{bottom:690.187200px;}
.y120{bottom:690.354150px;}
.y96{bottom:692.359500px;}
.y70{bottom:693.661650px;}
.y42{bottom:694.839900px;}
.y1c3{bottom:695.135550px;}
.y19a{bottom:699.247650px;}
.yc2{bottom:699.607800px;}
.yf6{bottom:702.181800px;}
.y1ea{bottom:703.655550px;}
.y21f{bottom:704.987850px;}
.y172{bottom:709.367550px;}
.y13{bottom:710.275350px;}
.y95{bottom:712.159500px;}
.y6f{bottom:713.461650px;}
.y41{bottom:714.639750px;}
.yc1{bottom:718.507800px;}
.y199{bottom:719.047650px;}
.yf5{bottom:721.081800px;}
.y1c2{bottom:723.439500px;}
.y1e9{bottom:723.455550px;}
.y21e{bottom:724.787850px;}
.y14a{bottom:725.019900px;}
.y12{bottom:731.875350px;}
.y94{bottom:731.959500px;}
.y6e{bottom:733.261650px;}
.y40{bottom:734.439900px;}
.yc0{bottom:737.407800px;}
.yf4{bottom:740.881650px;}
.y1c1{bottom:743.239500px;}
.y1e8{bottom:743.255550px;}
.y149{bottom:744.519900px;}
.y21d{bottom:744.587850px;}
.y171{bottom:746.175450px;}
.y198{bottom:747.351600px;}
.y20a{bottom:751.759500px;}
.y11{bottom:753.475350px;}
.y3f{bottom:754.239750px;}
.y129{bottom:754.820700px;}
.ybf{bottom:757.207800px;}
.y11b{bottom:757.820700px;}
.y119{bottom:759.320700px;}
.y6d{bottom:759.439650px;}
.yf3{bottom:759.781800px;}
.y122{bottom:760.820700px;}
.y118{bottom:763.023900px;}
.y1c0{bottom:763.039650px;}
.y148{bottom:764.019900px;}
.y21c{bottom:764.387850px;}
.y170{bottom:765.975450px;}
.y197{bottom:767.151600px;}
.y11a{bottom:767.523900px;}
.y93{bottom:768.767400px;}
.y136{bottom:769.820700px;}
.y1e7{bottom:771.559500px;}
.y12f{bottom:772.316850px;}
.y10{bottom:775.075350px;}
.y125{bottom:775.316850px;}
.ybe{bottom:776.107800px;}
.y126{bottom:778.149750px;}
.y121{bottom:778.316850px;}
.yf2{bottom:778.681800px;}
.y209{bottom:780.063450px;}
.y3e{bottom:782.543850px;}
.y147{bottom:783.519900px;}
.y21b{bottom:784.187850px;}
.y16f{bottom:785.775450px;}
.y196{bottom:786.951600px;}
.y6c{bottom:787.743600px;}
.y92{bottom:788.567400px;}
.y1bf{bottom:791.343450px;}
.y1e6{bottom:791.359500px;}
.ybd{bottom:795.007800px;}
.yf1{bottom:797.581800px;}
.y208{bottom:799.863450px;}
.y21a{bottom:803.987850px;}
.y16e{bottom:805.575450px;}
.y195{bottom:806.751600px;}
.y91{bottom:808.367400px;}
.y1be{bottom:811.143450px;}
.y1e5{bottom:811.159500px;}
.yf0{bottom:816.481800px;}
.y207{bottom:819.663450px;}
.y146{bottom:820.027800px;}
.ybc{bottom:820.285800px;}
.y16d{bottom:825.375450px;}
.y6b{bottom:828.151350px;}
.y90{bottom:828.167400px;}
.y1bd{bottom:830.943450px;}
.y1e4{bottom:830.959500px;}
.y194{bottom:835.055550px;}
.yef{bottom:835.381650px;}
.y206{bottom:839.463450px;}
.y145{bottom:839.527800px;}
.y3d{bottom:839.959500px;}
.y16c{bottom:845.175450px;}
.yf{bottom:847.698900px;}
.y6a{bottom:847.951350px;}
.y8f{bottom:847.967400px;}
.y11c{bottom:848.357400px;}
.y12a{bottom:849.822300px;}
.y1e3{bottom:850.759500px;}
.y137{bottom:852.822300px;}
.y11d{bottom:853.967700px;}
.y12b{bottom:854.155200px;}
.yee{bottom:854.281800px;}
.ybb{bottom:856.193700px;}
.y3c{bottom:857.959500px;}
.y144{bottom:859.027800px;}
.y1bc{bottom:859.247400px;}
.y127{bottom:860.155200px;}
.y123{bottom:861.467700px;}
.y16b{bottom:864.975450px;}
.y69{bottom:867.751350px;}
.y8e{bottom:867.767400px;}
.ye{bottom:874.698900px;}
.yba{bottom:875.093700px;}
.y193{bottom:875.463450px;}
.y3b{bottom:875.959500px;}
.y1bb{bottom:879.047400px;}
.y1e2{bottom:879.063450px;}
.y16a{bottom:884.775300px;}
.y68{bottom:887.551350px;}
.y8d{bottom:887.567400px;}
.yed{bottom:890.189550px;}
.y3a{bottom:893.959500px;}
.yb9{bottom:893.993550px;}
.y192{bottom:895.263450px;}
.y143{bottom:895.535550px;}
.y1ba{bottom:898.847400px;}
.y1e1{bottom:898.863450px;}
.yd{bottom:901.698900px;}
.y169{bottom:904.575300px;}
.y205{bottom:907.367400px;}
.yec{bottom:909.089550px;}
.y39{bottom:911.959500px;}
.y142{bottom:915.035550px;}
.y191{bottom:915.063600px;}
.y1e0{bottom:918.663450px;}
.y67{bottom:924.359250px;}
.y8c{bottom:924.375300px;}
.y1b9{bottom:927.151350px;}
.y204{bottom:927.167400px;}
.yeb{bottom:927.989550px;}
.yc{bottom:928.698900px;}
.yb8{bottom:929.901450px;}
.y190{bottom:934.863600px;}
.y66{bottom:944.159250px;}
.y8b{bottom:944.175300px;}
.y168{bottom:944.175450px;}
.yea{bottom:946.889550px;}
.y1b8{bottom:946.951350px;}
.y38{bottom:946.967400px;}
.yb7{bottom:948.801600px;}
.y141{bottom:951.543450px;}
.y18f{bottom:954.663600px;}
.y128{bottom:962.017800px;}
.y65{bottom:963.959250px;}
.y8a{bottom:963.975150px;}
.y167{bottom:963.975300px;}
.ye9{bottom:965.789550px;}
.y1b7{bottom:966.751350px;}
.y1df{bottom:966.767400px;}
.yb6{bottom:967.701450px;}
.y140{bottom:971.043450px;}
.y203{bottom:975.271350px;}
.y18e{bottom:982.967400px;}
.y64{bottom:983.759250px;}
.y37{bottom:983.775300px;}
.ye8{bottom:984.689550px;}
.y219{bottom:986.567400px;}
.yb5{bottom:986.601600px;}
.y1b6{bottom:995.055300px;}
.y1de{bottom:995.071350px;}
.y63{bottom:1003.559250px;}
.y36{bottom:1003.575300px;}
.ye7{bottom:1003.589550px;}
.yb4{bottom:1005.501600px;}
.y13f{bottom:1007.551350px;}
.y1b5{bottom:1014.855300px;}
.y1dd{bottom:1014.871350px;}
.yb{bottom:1021.339650px;}
.ye6{bottom:1022.489550px;}
.y62{bottom:1023.359250px;}
.y35{bottom:1023.375300px;}
.yb3{bottom:1024.401600px;}
.y13e{bottom:1027.051350px;}
.y1b4{bottom:1034.655300px;}
.y1dc{bottom:1034.671350px;}
.y61{bottom:1043.159250px;}
.y34{bottom:1043.175300px;}
.y166{bottom:1043.175450px;}
.yb2{bottom:1043.301600px;}
.ye5{bottom:1047.767550px;}
.ya{bottom:1049.643600px;}
.y60{bottom:1062.959250px;}
.y33{bottom:1062.975150px;}
.y165{bottom:1062.975300px;}
.y13d{bottom:1063.559250px;}
.yb1{bottom:1070.705550px;}
.y9{bottom:1080.451500px;}
.y5f{bottom:1082.759250px;}
.y32{bottom:1082.775300px;}
.y13c{bottom:1083.059250px;}
.ye4{bottom:1083.675450px;}
.y89{bottom:1088.269800px;}
.yb0{bottom:1100.809500px;}
.y5e{bottom:1102.559250px;}
.y31{bottom:1102.575300px;}
.y8{bottom:1105.155450px;}
.y7{bottom:1142.615250px;}
.y30{bottom:1143.779550px;}
.y5d{bottom:1143.795600px;}
.y6{bottom:1160.770500px;}
.y3{bottom:1180.554450px;}
.y5{bottom:1180.570650px;}
.y2{bottom:1200.354450px;}
.y4{bottom:1200.370650px;}
.h10{height:33.328125px;}
.h9{height:33.762190px;}
.h8{height:35.933133px;}
.ha{height:35.933733px;}
.h4{height:37.494141px;}
.h16{height:40.031250px;}
.h12{height:42.117188px;}
.h5{height:45.181641px;}
.h18{height:45.826172px;}
.h3{height:47.381836px;}
.he{height:48.761719px;}
.hc{height:52.646484px;}
.hd{height:53.396484px;}
.hb{height:55.042969px;}
.h2{height:57.911133px;}
.hf{height:59.859375px;}
.h17{height:60.328125px;}
.h6{height:61.611328px;}
.h7{height:63.175781px;}
.h15{height:69.093787px;}
.h13{height:69.117188px;}
.h14{height:69.140588px;}
.h11{height:96.140587px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:106.299300px;}
.x1c{left:109.929450px;}
.x31{left:117.755700px;}
.xc{left:131.374350px;}
.x32{left:137.555700px;}
.x1a{left:144.012900px;}
.x13{left:146.255100px;}
.xf{left:149.620200px;}
.x18{left:155.820750px;}
.x2{left:157.786800px;}
.x15{left:161.242500px;}
.x1e{left:166.183200px;}
.x17{left:169.704000px;}
.x10{left:175.087950px;}
.x14{left:176.978100px;}
.x20{left:182.733000px;}
.xb{left:193.315200px;}
.x7{left:196.736100px;}
.xa{left:198.114900px;}
.x2f{left:205.768500px;}
.x28{left:208.985250px;}
.x33{left:219.533850px;}
.xe{left:222.637650px;}
.x34{left:226.283850px;}
.x11{left:240.506550px;}
.x37{left:243.108150px;}
.x1d{left:247.332600px;}
.x12{left:252.114750px;}
.x1b{left:254.277450px;}
.x35{left:256.614000px;}
.xd{left:265.132800px;}
.x36{left:270.114000px;}
.x8{left:271.539900px;}
.x38{left:283.608150px;}
.x3c{left:300.432450px;}
.x29{left:309.424500px;}
.x3b{left:313.932450px;}
.x24{left:317.726100px;}
.x39{left:320.688300px;}
.x19{left:322.722750px;}
.x3a{left:327.432450px;}
.x2d{left:330.050250px;}
.x16{left:331.653450px;}
.x22{left:334.226100px;}
.x2c{left:336.930750px;}
.x23{left:340.042950px;}
.x25{left:342.939450px;}
.x26{left:345.231450px;}
.x1f{left:351.210900px;}
.x2e{left:354.163800px;}
.x21{left:358.057650px;}
.x27{left:360.801000px;}
.x9{left:364.822800px;}
.x3f{left:371.256750px;}
.x3d{left:378.012600px;}
.x3e{left:384.756750px;}
.x30{left:389.206200px;}
.x41{left:391.506750px;}
.x40{left:398.256750px;}
.x2a{left:403.941000px;}
.x2b{left:411.388800px;}
.x44{left:415.080900px;}
.x43{left:428.580900px;}
.x42{left:435.336750px;}
.x5b{left:438.206700px;}
.x1{left:442.331700px;}
.x45{left:455.580900px;}
.x47{left:472.405200px;}
.x4a{left:479.155200px;}
.x46{left:485.911050px;}
.x49{left:492.655200px;}
.x48{left:499.405200px;}
.x50{left:516.229500px;}
.x4e{left:522.979500px;}
.x4d{left:529.729500px;}
.x5{left:534.618600px;}
.x4b{left:536.485350px;}
.x4c{left:543.229500px;}
.x4f{left:549.979500px;}
.x51{left:556.729500px;}
.x54{left:573.553650px;}
.x3{left:581.049000px;}
.x52{left:587.059500px;}
.x53{left:593.803650px;}
.x55{left:600.553650px;}
.x59{left:617.377950px;}
.x5c{left:629.418900px;}
.x58{left:630.877950px;}
.x56{left:637.633800px;}
.x57{left:644.383800px;}
.x5d{left:649.218900px;}
.x5a{left:657.877950px;}
.x5e{left:669.018900px;}
.x4{left:675.843450px;}
.x5f{left:688.818900px;}
@media print{
.v2{vertical-align:-21.311467pt;}
.v3{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v1{vertical-align:21.311467pt;}
.v5{vertical-align:24.000000pt;}
.v6{vertical-align:48.020800pt;}
.ls37{letter-spacing:-2.170667pt;}
.ls23{letter-spacing:-0.821333pt;}
.ls41{letter-spacing:-0.762667pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls7{letter-spacing:-0.586667pt;}
.ls22{letter-spacing:-0.410667pt;}
.ls36{letter-spacing:-0.352000pt;}
.ls6{letter-spacing:-0.342027pt;}
.ls19{letter-spacing:-0.293333pt;}
.ls1a{letter-spacing:-0.234667pt;}
.ls18{letter-spacing:-0.176000pt;}
.ls17{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.117333pt;}
.ls16{letter-spacing:-0.058667pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.004003pt;}
.lsc{letter-spacing:0.007467pt;}
.ls26{letter-spacing:0.009600pt;}
.ls2f{letter-spacing:0.010133pt;}
.ls2a{letter-spacing:0.029333pt;}
.ls2b{letter-spacing:0.030901pt;}
.ls4{letter-spacing:0.035158pt;}
.lsa{letter-spacing:0.058667pt;}
.ls11{letter-spacing:0.117333pt;}
.ls12{letter-spacing:0.176000pt;}
.ls38{letter-spacing:0.179427pt;}
.ls10{letter-spacing:0.180267pt;}
.ls25{letter-spacing:0.187468pt;}
.ls9{letter-spacing:0.234667pt;}
.ls1f{letter-spacing:0.255006pt;}
.ls2d{letter-spacing:0.274897pt;}
.ls2e{letter-spacing:0.285799pt;}
.ls20{letter-spacing:0.293333pt;}
.ls3{letter-spacing:0.352000pt;}
.ls3c{letter-spacing:0.369600pt;}
.ls1b{letter-spacing:0.410667pt;}
.ls27{letter-spacing:0.441083pt;}
.lsb{letter-spacing:0.469333pt;}
.ls21{letter-spacing:0.528000pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls13{letter-spacing:0.645333pt;}
.ls15{letter-spacing:0.704000pt;}
.ls3e{letter-spacing:0.810033pt;}
.ls3d{letter-spacing:0.821333pt;}
.ls35{letter-spacing:0.880000pt;}
.ls39{letter-spacing:0.938667pt;}
.lse{letter-spacing:0.960000pt;}
.ls3a{letter-spacing:0.997333pt;}
.ls1c{letter-spacing:1.017067pt;}
.ls40{letter-spacing:1.349333pt;}
.ls3b{letter-spacing:1.466667pt;}
.ls1d{letter-spacing:1.769600pt;}
.ls33{letter-spacing:1.792000pt;}
.ls3f{letter-spacing:1.855467pt;}
.ls42{letter-spacing:1.949333pt;}
.ls2c{letter-spacing:2.636267pt;}
.ls34{letter-spacing:3.100271pt;}
.ls29{letter-spacing:3.141175pt;}
.ls14{letter-spacing:3.152878pt;}
.ls28{letter-spacing:4.393927pt;}
.ls30{letter-spacing:5.776370pt;}
.lsf{letter-spacing:6.014125pt;}
.ls0{letter-spacing:11.733333pt;}
.ls2{letter-spacing:31.307200pt;}
.ls1{letter-spacing:39.325504pt;}
.ls32{letter-spacing:103.283200pt;}
.ls31{letter-spacing:196.185067pt;}
.ws12{word-spacing:-17.333333pt;}
.ws7e{word-spacing:-15.605333pt;}
.ws62{word-spacing:-15.546667pt;}
.ws6c{word-spacing:-15.312000pt;}
.ws84{word-spacing:-15.253333pt;}
.ws4e{word-spacing:-15.194667pt;}
.ws49{word-spacing:-15.077333pt;}
.ws4{word-spacing:-15.018667pt;}
.ws9e{word-spacing:-14.960000pt;}
.ws4a{word-spacing:-14.901333pt;}
.ws47{word-spacing:-14.842667pt;}
.ws3f{word-spacing:-14.784000pt;}
.ws85{word-spacing:-14.725333pt;}
.ws0{word-spacing:-14.666667pt;}
.ws2e{word-spacing:-14.608000pt;}
.ws3{word-spacing:-14.549333pt;}
.ws7d{word-spacing:-14.490667pt;}
.ws6d{word-spacing:-14.432000pt;}
.ws2d{word-spacing:-14.373333pt;}
.ws95{word-spacing:-14.314667pt;}
.ws11{word-spacing:-13.333333pt;}
.ws52{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.328000pt;}
.ws2{word-spacing:-8.550667pt;}
.wsa{word-spacing:-7.333333pt;}
.ws60{word-spacing:-5.333333pt;}
.ws74{word-spacing:-3.989333pt;}
.ws7{word-spacing:-3.520000pt;}
.ws78{word-spacing:-3.226667pt;}
.ws8{word-spacing:-2.368000pt;}
.ws61{word-spacing:-1.792000pt;}
.ws8f{word-spacing:-1.466667pt;}
.ws6{word-spacing:-1.152000pt;}
.ws7f{word-spacing:-1.114667pt;}
.ws4c{word-spacing:-0.997333pt;}
.ws82{word-spacing:-0.938667pt;}
.ws67{word-spacing:-0.880000pt;}
.ws48{word-spacing:-0.821333pt;}
.wsb{word-spacing:-0.762667pt;}
.ws1d{word-spacing:-0.704000pt;}
.ws66{word-spacing:-0.645333pt;}
.ws1b{word-spacing:-0.640000pt;}
.ws34{word-spacing:-0.586667pt;}
.ws5f{word-spacing:-0.528000pt;}
.ws1f{word-spacing:-0.469333pt;}
.ws21{word-spacing:-0.410667pt;}
.ws16{word-spacing:-0.352000pt;}
.ws38{word-spacing:-0.293333pt;}
.wsd{word-spacing:-0.234667pt;}
.ws28{word-spacing:-0.176000pt;}
.ws1c{word-spacing:-0.117333pt;}
.ws3a{word-spacing:-0.058667pt;}
.ws5{word-spacing:0.000000pt;}
.ws2b{word-spacing:0.058667pt;}
.ws25{word-spacing:0.117333pt;}
.ws1a{word-spacing:0.160000pt;}
.ws1e{word-spacing:0.176000pt;}
.ws31{word-spacing:0.234667pt;}
.ws2a{word-spacing:0.293333pt;}
.ws19{word-spacing:0.320000pt;}
.ws9{word-spacing:0.342027pt;}
.ws83{word-spacing:0.352000pt;}
.ws41{word-spacing:0.410667pt;}
.ws72{word-spacing:0.469333pt;}
.ws44{word-spacing:0.704000pt;}
.ws37{word-spacing:0.762667pt;}
.ws43{word-spacing:0.821333pt;}
.ws91{word-spacing:0.880000pt;}
.ws3d{word-spacing:0.938667pt;}
.ws32{word-spacing:0.997333pt;}
.ws4b{word-spacing:1.056000pt;}
.ws15{word-spacing:1.114667pt;}
.ws8a{word-spacing:1.173333pt;}
.ws77{word-spacing:1.290667pt;}
.ws96{word-spacing:1.349333pt;}
.ws24{word-spacing:1.466667pt;}
.ws3b{word-spacing:1.525333pt;}
.ws73{word-spacing:1.642667pt;}
.ws26{word-spacing:1.701333pt;}
.ws23{word-spacing:1.760000pt;}
.ws80{word-spacing:1.818667pt;}
.ws65{word-spacing:1.877333pt;}
.ws98{word-spacing:1.936000pt;}
.ws6f{word-spacing:1.994667pt;}
.ws7c{word-spacing:2.053333pt;}
.ws6b{word-spacing:2.170667pt;}
.ws81{word-spacing:2.229333pt;}
.ws79{word-spacing:2.288000pt;}
.ws35{word-spacing:2.405333pt;}
.wsc{word-spacing:2.464000pt;}
.ws76{word-spacing:2.522667pt;}
.ws20{word-spacing:2.581333pt;}
.ws4d{word-spacing:2.640000pt;}
.ws9c{word-spacing:2.698667pt;}
.ws6e{word-spacing:2.816000pt;}
.wse{word-spacing:2.874667pt;}
.ws10{word-spacing:2.933333pt;}
.ws3c{word-spacing:2.992000pt;}
.ws94{word-spacing:3.050667pt;}
.ws71{word-spacing:3.109333pt;}
.ws45{word-spacing:3.168000pt;}
.ws9f{word-spacing:3.226667pt;}
.ws13{word-spacing:3.344000pt;}
.ws6a{word-spacing:3.402667pt;}
.ws9d{word-spacing:3.520000pt;}
.ws92{word-spacing:3.578667pt;}
.ws2f{word-spacing:3.637333pt;}
.wsf{word-spacing:3.696000pt;}
.ws63{word-spacing:3.754667pt;}
.ws27{word-spacing:3.813333pt;}
.ws7b{word-spacing:3.930667pt;}
.ws39{word-spacing:3.989333pt;}
.ws8c{word-spacing:4.106667pt;}
.ws69{word-spacing:4.165333pt;}
.ws75{word-spacing:4.282667pt;}
.ws30{word-spacing:4.341333pt;}
.ws42{word-spacing:4.400000pt;}
.ws7a{word-spacing:4.458667pt;}
.ws64{word-spacing:4.517333pt;}
.ws93{word-spacing:4.576000pt;}
.ws14{word-spacing:4.810667pt;}
.ws22{word-spacing:4.928000pt;}
.ws46{word-spacing:4.986667pt;}
.ws40{word-spacing:5.045333pt;}
.ws89{word-spacing:5.221333pt;}
.ws5e{word-spacing:5.280000pt;}
.ws68{word-spacing:5.749333pt;}
.ws36{word-spacing:5.808000pt;}
.ws87{word-spacing:5.866667pt;}
.ws33{word-spacing:5.984000pt;}
.ws86{word-spacing:6.101333pt;}
.ws88{word-spacing:6.218667pt;}
.ws18{word-spacing:6.400000pt;}
.ws70{word-spacing:6.453333pt;}
.ws29{word-spacing:6.570667pt;}
.ws9a{word-spacing:6.922667pt;}
.ws8b{word-spacing:7.216000pt;}
.ws2c{word-spacing:7.274667pt;}
.ws9b{word-spacing:8.096000pt;}
.ws99{word-spacing:8.154667pt;}
.ws90{word-spacing:8.624000pt;}
.ws17{word-spacing:9.333333pt;}
.ws8d{word-spacing:9.738667pt;}
.ws97{word-spacing:13.200000pt;}
.ws8e{word-spacing:14.432000pt;}
.ws5d{word-spacing:31.184000pt;}
.ws57{word-spacing:31.437333pt;}
.ws3e{word-spacing:35.962667pt;}
.ws53{word-spacing:41.059733pt;}
.ws51{word-spacing:52.165333pt;}
.ws56{word-spacing:60.247467pt;}
.ws50{word-spacing:66.280533pt;}
.ws5a{word-spacing:66.462933pt;}
.ws54{word-spacing:95.437333pt;}
.ws58{word-spacing:126.528000pt;}
.ws5b{word-spacing:138.061333pt;}
.ws55{word-spacing:154.658667pt;}
.ws4f{word-spacing:159.436800pt;}
.ws59{word-spacing:205.647467pt;}
.ws5c{word-spacing:268.066133pt;}
._b{margin-left:-12.641199pt;}
._c{margin-left:-8.792960pt;}
._4{margin-left:-7.444267pt;}
._9{margin-left:-6.494400pt;}
._1{margin-left:-5.403200pt;}
._3{margin-left:-3.889600pt;}
._0{margin-left:-2.176533pt;}
._2{margin-left:-1.108800pt;}
._a{width:1.395093pt;}
._8{width:2.887467pt;}
._e{width:4.048000pt;}
._f{width:5.397333pt;}
._d{width:6.311381pt;}
._10{width:7.257902pt;}
._24{width:8.348267pt;}
._21{width:9.662400pt;}
._23{width:10.564693pt;}
._22{width:11.627733pt;}
._20{width:12.550954pt;}
._3f{width:16.657484pt;}
._6{width:29.315733pt;}
._5{width:30.576000pt;}
._7{width:31.908267pt;}
._12{width:35.962667pt;}
._35{width:41.059733pt;}
._31{width:56.780267pt;}
._39{width:77.129600pt;}
._25{width:86.715733pt;}
._3c{width:97.339200pt;}
._17{width:112.112000pt;}
._30{width:122.395200pt;}
._37{width:128.144533pt;}
._32{width:130.321067pt;}
._3d{width:135.330133pt;}
._3e{width:138.061333pt;}
._29{width:140.190400pt;}
._27{width:142.637333pt;}
._33{width:147.131200pt;}
._2f{width:148.728000pt;}
._2c{width:150.556800pt;}
._36{width:158.528000pt;}
._28{width:165.168000pt;}
._1f{width:167.552000pt;}
._2a{width:174.565333pt;}
._3a{width:177.936533pt;}
._2e{width:182.732800pt;}
._1c{width:183.802667pt;}
._16{width:187.088000pt;}
._26{width:192.247467pt;}
._34{width:194.381333pt;}
._38{width:196.094400pt;}
._14{width:197.548267pt;}
._13{width:203.397333pt;}
._1e{width:207.791467pt;}
._18{width:208.859200pt;}
._19{width:209.909333pt;}
._2b{width:220.318400pt;}
._1b{width:222.933333pt;}
._1d{width:227.327467pt;}
._1a{width:228.277867pt;}
._11{width:236.016000pt;}
._2d{width:240.529067pt;}
._15{width:242.528000pt;}
._3b{width:308.951467pt;}
.fs7{font-size:31.093333pt;}
.fs5{font-size:34.202667pt;}
.fs4{font-size:37.312000pt;}
.fs9{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:76.759867pt;}
.ye3{bottom:113.385867pt;}
.y2f{bottom:114.581067pt;}
.y10f{bottom:117.165333pt;}
.y164{bottom:117.763867pt;}
.y1b3{bottom:121.081067pt;}
.y88{bottom:122.377067pt;}
.y214{bottom:124.999200pt;}
.y18d{bottom:125.112667pt;}
.yd9{bottom:127.757067pt;}
.ye2{bottom:130.985867pt;}
.y2e{bottom:132.181067pt;}
.y163{bottom:135.363867pt;}
.y1b2{bottom:138.681067pt;}
.y87{bottom:139.977067pt;}
.y1db{bottom:142.584933pt;}
.y213{bottom:142.599200pt;}
.y18c{bottom:142.712667pt;}
.yd8{bottom:144.557067pt;}
.y5c{bottom:144.917333pt;}
.yaf{bottom:145.194400pt;}
.ye1{bottom:148.585867pt;}
.y2d{bottom:149.781067pt;}
.y202{bottom:150.158267pt;}
.y162{bottom:152.964000pt;}
.y10e{bottom:154.819867pt;}
.y1b1{bottom:156.281067pt;}
.y86{bottom:157.577200pt;}
.y1da{bottom:160.184933pt;}
.y212{bottom:160.199200pt;}
.y18b{bottom:160.312800pt;}
.yd7{bottom:161.357067pt;}
.y5b{bottom:162.517200pt;}
.yae{bottom:162.794400pt;}
.ye0{bottom:166.185867pt;}
.y2c{bottom:167.381067pt;}
.y201{bottom:167.758267pt;}
.y10d{bottom:171.619733pt;}
.y85{bottom:175.177200pt;}
.y18a{bottom:177.912800pt;}
.y161{bottom:178.122933pt;}
.yd6{bottom:178.157067pt;}
.y5a{bottom:180.117333pt;}
.yad{bottom:180.394400pt;}
.y1b0{bottom:181.440133pt;}
.ydf{bottom:183.785867pt;}
.y2b{bottom:184.981067pt;}
.y1d9{bottom:185.344000pt;}
.y200{bottom:185.358267pt;}
.y10c{bottom:188.419867pt;}
.yd5{bottom:194.957067pt;}
.y189{bottom:195.512667pt;}
.y59{bottom:197.717333pt;}
.yac{bottom:197.994400pt;}
.y84{bottom:198.446400pt;}
.y1af{bottom:199.040133pt;}
.yde{bottom:201.385867pt;}
.y1d8{bottom:202.944000pt;}
.y1ff{bottom:202.958267pt;}
.y13a{bottom:210.236133pt;}
.yd4{bottom:211.757067pt;}
.y188{bottom:213.112667pt;}
.y160{bottom:214.041067pt;}
.y58{bottom:215.317333pt;}
.yab{bottom:215.594533pt;}
.y1ae{bottom:216.640133pt;}
.ydd{bottom:218.985867pt;}
.y10b{bottom:220.337867pt;}
.y1d7{bottom:220.544000pt;}
.y211{bottom:220.558267pt;}
.y2a{bottom:222.583067pt;}
.y1fe{bottom:228.117333pt;}
.y187{bottom:230.712667pt;}
.y83{bottom:231.164533pt;}
.y15f{bottom:231.374400pt;}
.y57{bottom:232.917333pt;}
.yaa{bottom:233.194400pt;}
.ydc{bottom:236.585867pt;}
.y10a{bottom:237.138000pt;}
.y29{bottom:240.183200pt;}
.y1ad{bottom:241.799200pt;}
.yd3{bottom:243.675200pt;}
.y1d6{bottom:245.703067pt;}
.y1fd{bottom:245.717333pt;}
.y186{bottom:248.312800pt;}
.y15e{bottom:248.707733pt;}
.y82{bottom:248.764533pt;}
.y56{bottom:250.517200pt;}
.ya9{bottom:250.794400pt;}
.y109{bottom:253.937867pt;}
.ydb{bottom:254.185867pt;}
.y28{bottom:257.783067pt;}
.y1ac{bottom:259.399200pt;}
.yd2{bottom:260.475200pt;}
.y1d5{bottom:263.303067pt;}
.y1fc{bottom:263.317333pt;}
.y185{bottom:265.912800pt;}
.y15d{bottom:266.041067pt;}
.y55{bottom:268.117333pt;}
.ya8{bottom:268.394400pt;}
.y108{bottom:270.738000pt;}
.yda{bottom:271.785867pt;}
.y27{bottom:275.383200pt;}
.y1ab{bottom:276.999200pt;}
.y1d4{bottom:280.903067pt;}
.y1fb{bottom:280.917333pt;}
.y81{bottom:281.482667pt;}
.y15c{bottom:283.374400pt;}
.y184{bottom:283.512667pt;}
.y54{bottom:285.717333pt;}
.ya7{bottom:285.994400pt;}
.y218{bottom:288.476267pt;}
.yd1{bottom:292.393333pt;}
.y26{bottom:292.983200pt;}
.y1aa{bottom:294.599200pt;}
.y1d3{bottom:298.503067pt;}
.y1fa{bottom:298.517200pt;}
.y80{bottom:299.082667pt;}
.y15b{bottom:300.707733pt;}
.y183{bottom:301.112667pt;}
.y107{bottom:302.656000pt;}
.y53{bottom:303.317333pt;}
.ya6{bottom:303.594533pt;}
.y210{bottom:306.076400pt;}
.yd0{bottom:309.193333pt;}
.y25{bottom:310.583067pt;}
.y12c{bottom:313.700667pt;}
.y110{bottom:313.700800pt;}
.y7f{bottom:316.682667pt;}
.y15a{bottom:318.041067pt;}
.y182{bottom:318.712667pt;}
.y106{bottom:319.456000pt;}
.y1a9{bottom:319.758267pt;}
.y52{bottom:320.917333pt;}
.ya5{bottom:321.194400pt;}
.y1d2{bottom:323.662133pt;}
.y1f9{bottom:323.676400pt;}
.y24{bottom:328.183200pt;}
.y217{bottom:331.235333pt;}
.y7e{bottom:334.282667pt;}
.y159{bottom:335.374400pt;}
.y105{bottom:336.256000pt;}
.y181{bottom:336.312800pt;}
.y1a8{bottom:337.358267pt;}
.y51{bottom:338.517333pt;}
.ya4{bottom:338.794400pt;}
.ycf{bottom:341.111467pt;}
.y1d1{bottom:341.262133pt;}
.y1f8{bottom:341.276267pt;}
.y23{bottom:345.783067pt;}
.y216{bottom:348.835467pt;}
.y7d{bottom:351.882667pt;}
.y158{bottom:352.707733pt;}
.y104{bottom:353.056000pt;}
.y50{bottom:356.117333pt;}
.ya3{bottom:356.394400pt;}
.yce{bottom:357.911467pt;}
.y1a7{bottom:362.517333pt;}
.y22{bottom:363.383200pt;}
.y1d0{bottom:366.421200pt;}
.y1f7{bottom:366.435333pt;}
.y180{bottom:369.030800pt;}
.y7c{bottom:369.482667pt;}
.y103{bottom:369.856000pt;}
.y157{bottom:370.041067pt;}
.y12d{bottom:371.629333pt;}
.y4f{bottom:373.717333pt;}
.ya2{bottom:373.994400pt;}
.y1a6{bottom:380.117333pt;}
.ycd{bottom:380.380667pt;}
.y1cf{bottom:384.021200pt;}
.y1f6{bottom:384.035467pt;}
.y17f{bottom:386.630800pt;}
.y102{bottom:386.656000pt;}
.y7b{bottom:387.082667pt;}
.y156{bottom:387.374400pt;}
.y21{bottom:391.217200pt;}
.y4e{bottom:391.317333pt;}
.ya1{bottom:391.594400pt;}
.y1a5{bottom:397.717333pt;}
.y1ce{bottom:401.621200pt;}
.y1f5{bottom:401.635467pt;}
.y101{bottom:403.456000pt;}
.y17e{bottom:404.230800pt;}
.y7a{bottom:404.682667pt;}
.y155{bottom:404.707733pt;}
.y4d{bottom:408.917333pt;}
.ya0{bottom:409.194400pt;}
.ycc{bottom:412.298800pt;}
.y20{bottom:413.701200pt;}
.y100{bottom:420.256000pt;}
.y17d{bottom:421.830800pt;}
.y154{bottom:422.041067pt;}
.y1a4{bottom:422.876400pt;}
.y1f{bottom:426.417333pt;}
.y1cd{bottom:426.780133pt;}
.y1f4{bottom:426.794400pt;}
.y131{bottom:427.149600pt;}
.ycb{bottom:429.098800pt;}
.y11e{bottom:430.014267pt;}
.y111{bottom:431.149600pt;}
.y124{bottom:432.482933pt;}
.yff{bottom:437.056000pt;}
.y79{bottom:437.400800pt;}
.y17c{bottom:439.430800pt;}
.y1a3{bottom:440.476400pt;}
.y4c{bottom:441.635467pt;}
.y9f{bottom:441.912533pt;}
.y130{bottom:442.701733pt;}
.y1cc{bottom:444.380267pt;}
.y1f3{bottom:444.394400pt;}
.yca{bottom:445.898800pt;}
.y153{bottom:446.933467pt;}
.y1e{bottom:448.901200pt;}
.yfe{bottom:453.856000pt;}
.y78{bottom:455.000800pt;}
.y17b{bottom:457.030800pt;}
.y1a2{bottom:458.076400pt;}
.y4b{bottom:459.235333pt;}
.y1d{bottom:461.617333pt;}
.y1cb{bottom:461.980267pt;}
.y1f2{bottom:461.994400pt;}
.yc9{bottom:462.698800pt;}
.y20f{bottom:469.553467pt;}
.y77{bottom:472.600800pt;}
.y9e{bottom:474.630667pt;}
.y17a{bottom:474.630800pt;}
.y4a{bottom:476.835467pt;}
.y1c{bottom:479.217200pt;}
.yc8{bottom:479.498800pt;}
.y1f1{bottom:479.594400pt;}
.y152{bottom:481.251600pt;}
.y1a1{bottom:483.235333pt;}
.y1b{bottom:484.101200pt;}
.yfd{bottom:485.774133pt;}
.y13b{bottom:486.325600pt;}
.y112{bottom:486.752667pt;}
.y1ca{bottom:487.139333pt;}
.y20e{bottom:487.153467pt;}
.y138{bottom:487.460933pt;}
.y113{bottom:488.794267pt;}
.y76{bottom:490.200800pt;}
.y9d{bottom:492.230667pt;}
.y49{bottom:494.435333pt;}
.y133{bottom:494.570400pt;}
.yc7{bottom:496.298800pt;}
.y1a{bottom:496.817200pt;}
.y134{bottom:497.237067pt;}
.y151{bottom:498.584933pt;}
.y132{bottom:499.013067pt;}
.y1a0{bottom:500.835467pt;}
.y11f{bottom:501.679733pt;}
.yfc{bottom:502.574133pt;}
.y1c9{bottom:504.739200pt;}
.y1f0{bottom:504.753467pt;}
.y179{bottom:507.348933pt;}
.y75{bottom:507.800800pt;}
.y9c{bottom:509.830667pt;}
.y48{bottom:512.035467pt;}
.y150{bottom:515.918267pt;}
.y19f{bottom:518.435333pt;}
.yc6{bottom:518.768133pt;}
.y19{bottom:519.301200pt;}
.yfb{bottom:519.374133pt;}
.y1c8{bottom:522.339333pt;}
.y1ef{bottom:522.353467pt;}
.y178{bottom:524.948933pt;}
.y74{bottom:525.400800pt;}
.y9b{bottom:527.430667pt;}
.y47{bottom:529.635467pt;}
.y215{bottom:529.912533pt;}
.y14f{bottom:533.251600pt;}
.yfa{bottom:536.174133pt;}
.y18{bottom:536.901200pt;}
.y1c7{bottom:539.939200pt;}
.y1ee{bottom:539.953467pt;}
.y135{bottom:540.829867pt;}
.y177{bottom:542.548933pt;}
.y19e{bottom:543.594400pt;}
.y9a{bottom:545.030667pt;}
.y46{bottom:547.235333pt;}
.y20d{bottom:547.512533pt;}
.y73{bottom:548.670000pt;}
.y17{bottom:549.617333pt;}
.y14e{bottom:550.584933pt;}
.yc5{bottom:550.686133pt;}
.yf9{bottom:558.643467pt;}
.y176{bottom:560.148933pt;}
.y19d{bottom:561.194400pt;}
.y99{bottom:562.630667pt;}
.y45{bottom:564.835467pt;}
.y1c6{bottom:565.098267pt;}
.y1ed{bottom:565.112533pt;}
.yc4{bottom:567.486267pt;}
.y14d{bottom:567.918267pt;}
.y16{bottom:572.101333pt;}
.y175{bottom:577.748933pt;}
.y19c{bottom:578.794400pt;}
.y98{bottom:580.230667pt;}
.y72{bottom:581.388133pt;}
.y44{bottom:582.435333pt;}
.y1c5{bottom:582.698267pt;}
.y1ec{bottom:582.712533pt;}
.y15{bottom:584.817200pt;}
.y14c{bottom:585.251600pt;}
.yc3{bottom:589.955467pt;}
.y20c{bottom:590.271600pt;}
.yf8{bottom:590.561600pt;}
.y221{bottom:591.455867pt;}
.y174{bottom:595.348933pt;}
.y117{bottom:595.429467pt;}
.y97{bottom:597.830667pt;}
.y115{bottom:598.096133pt;}
.y71{bottom:598.988133pt;}
.y43{bottom:600.035467pt;}
.y116{bottom:600.054400pt;}
.y1c4{bottom:600.298400pt;}
.y1eb{bottom:600.312533pt;}
.y114{bottom:602.721067pt;}
.y19b{bottom:603.953467pt;}
.y14{bottom:607.301200pt;}
.yf7{bottom:607.361467pt;}
.y20b{bottom:607.871600pt;}
.y12e{bottom:608.314800pt;}
.y220{bottom:609.055867pt;}
.y14b{bottom:610.144000pt;}
.y173{bottom:612.948933pt;}
.y139{bottom:613.499733pt;}
.y120{bottom:613.648133pt;}
.y96{bottom:615.430667pt;}
.y70{bottom:616.588133pt;}
.y42{bottom:617.635467pt;}
.y1c3{bottom:617.898267pt;}
.y19a{bottom:621.553467pt;}
.yc2{bottom:621.873600pt;}
.yf6{bottom:624.161600pt;}
.y1ea{bottom:625.471600pt;}
.y21f{bottom:626.655867pt;}
.y172{bottom:630.548933pt;}
.y13{bottom:631.355867pt;}
.y95{bottom:633.030667pt;}
.y6f{bottom:634.188133pt;}
.y41{bottom:635.235333pt;}
.yc1{bottom:638.673600pt;}
.y199{bottom:639.153467pt;}
.yf5{bottom:640.961600pt;}
.y1c2{bottom:643.057333pt;}
.y1e9{bottom:643.071600pt;}
.y21e{bottom:644.255867pt;}
.y14a{bottom:644.462133pt;}
.y12{bottom:650.555867pt;}
.y94{bottom:650.630667pt;}
.y6e{bottom:651.788133pt;}
.y40{bottom:652.835467pt;}
.yc0{bottom:655.473600pt;}
.yf4{bottom:658.561467pt;}
.y1c1{bottom:660.657333pt;}
.y1e8{bottom:660.671600pt;}
.y149{bottom:661.795467pt;}
.y21d{bottom:661.855867pt;}
.y171{bottom:663.267067pt;}
.y198{bottom:664.312533pt;}
.y20a{bottom:668.230667pt;}
.y11{bottom:669.755867pt;}
.y3f{bottom:670.435333pt;}
.y129{bottom:670.951733pt;}
.ybf{bottom:673.073600pt;}
.y11b{bottom:673.618400pt;}
.y119{bottom:674.951733pt;}
.y6d{bottom:675.057467pt;}
.yf3{bottom:675.361600pt;}
.y122{bottom:676.285067pt;}
.y118{bottom:678.243467pt;}
.y1c0{bottom:678.257467pt;}
.y148{bottom:679.128800pt;}
.y21c{bottom:679.455867pt;}
.y170{bottom:680.867067pt;}
.y197{bottom:681.912533pt;}
.y11a{bottom:682.243467pt;}
.y93{bottom:683.348800pt;}
.y136{bottom:684.285067pt;}
.y1e7{bottom:685.830667pt;}
.y12f{bottom:686.503867pt;}
.y10{bottom:688.955867pt;}
.y125{bottom:689.170533pt;}
.ybe{bottom:689.873600pt;}
.y126{bottom:691.688667pt;}
.y121{bottom:691.837200pt;}
.yf2{bottom:692.161600pt;}
.y209{bottom:693.389733pt;}
.y3e{bottom:695.594533pt;}
.y147{bottom:696.462133pt;}
.y21b{bottom:697.055867pt;}
.y16f{bottom:698.467067pt;}
.y196{bottom:699.512533pt;}
.y6c{bottom:700.216533pt;}
.y92{bottom:700.948800pt;}
.y1bf{bottom:703.416400pt;}
.y1e6{bottom:703.430667pt;}
.ybd{bottom:706.673600pt;}
.yf1{bottom:708.961600pt;}
.y208{bottom:710.989733pt;}
.y21a{bottom:714.655867pt;}
.y16e{bottom:716.067067pt;}
.y195{bottom:717.112533pt;}
.y91{bottom:718.548800pt;}
.y1be{bottom:721.016400pt;}
.y1e5{bottom:721.030667pt;}
.yf0{bottom:725.761600pt;}
.y207{bottom:728.589733pt;}
.y146{bottom:728.913600pt;}
.ybc{bottom:729.142933pt;}
.y16d{bottom:733.667067pt;}
.y6b{bottom:736.134533pt;}
.y90{bottom:736.148800pt;}
.y1bd{bottom:738.616400pt;}
.y1e4{bottom:738.630667pt;}
.y194{bottom:742.271600pt;}
.yef{bottom:742.561467pt;}
.y206{bottom:746.189733pt;}
.y145{bottom:746.246933pt;}
.y3d{bottom:746.630667pt;}
.y16c{bottom:751.267067pt;}
.yf{bottom:753.510133pt;}
.y6a{bottom:753.734533pt;}
.y8f{bottom:753.748800pt;}
.y11c{bottom:754.095467pt;}
.y12a{bottom:755.397600pt;}
.y1e3{bottom:756.230667pt;}
.y137{bottom:758.064267pt;}
.y11d{bottom:759.082400pt;}
.y12b{bottom:759.249067pt;}
.yee{bottom:759.361600pt;}
.ybb{bottom:761.061067pt;}
.y3c{bottom:762.630667pt;}
.y144{bottom:763.580267pt;}
.y1bc{bottom:763.775467pt;}
.y127{bottom:764.582400pt;}
.y123{bottom:765.749067pt;}
.y16b{bottom:768.867067pt;}
.y69{bottom:771.334533pt;}
.y8e{bottom:771.348800pt;}
.ye{bottom:777.510133pt;}
.yba{bottom:777.861067pt;}
.y193{bottom:778.189733pt;}
.y3b{bottom:778.630667pt;}
.y1bb{bottom:781.375467pt;}
.y1e2{bottom:781.389733pt;}
.y16a{bottom:786.466933pt;}
.y68{bottom:788.934533pt;}
.y8d{bottom:788.948800pt;}
.yed{bottom:791.279600pt;}
.y3a{bottom:794.630667pt;}
.yb9{bottom:794.660933pt;}
.y192{bottom:795.789733pt;}
.y143{bottom:796.031600pt;}
.y1ba{bottom:798.975467pt;}
.y1e1{bottom:798.989733pt;}
.yd{bottom:801.510133pt;}
.y169{bottom:804.066933pt;}
.y205{bottom:806.548800pt;}
.yec{bottom:808.079600pt;}
.y39{bottom:810.630667pt;}
.y142{bottom:813.364933pt;}
.y191{bottom:813.389867pt;}
.y1e0{bottom:816.589733pt;}
.y67{bottom:821.652667pt;}
.y8c{bottom:821.666933pt;}
.y1b9{bottom:824.134533pt;}
.y204{bottom:824.148800pt;}
.yeb{bottom:824.879600pt;}
.yc{bottom:825.510133pt;}
.yb8{bottom:826.579067pt;}
.y190{bottom:830.989867pt;}
.y66{bottom:839.252667pt;}
.y8b{bottom:839.266933pt;}
.y168{bottom:839.267067pt;}
.yea{bottom:841.679600pt;}
.y1b8{bottom:841.734533pt;}
.y38{bottom:841.748800pt;}
.yb7{bottom:843.379200pt;}
.y141{bottom:845.816400pt;}
.y18f{bottom:848.589867pt;}
.y128{bottom:855.126933pt;}
.y65{bottom:856.852667pt;}
.y8a{bottom:856.866800pt;}
.y167{bottom:856.866933pt;}
.ye9{bottom:858.479600pt;}
.y1b7{bottom:859.334533pt;}
.y1df{bottom:859.348800pt;}
.yb6{bottom:860.179067pt;}
.y140{bottom:863.149733pt;}
.y203{bottom:866.907867pt;}
.y18e{bottom:873.748800pt;}
.y64{bottom:874.452667pt;}
.y37{bottom:874.466933pt;}
.ye8{bottom:875.279600pt;}
.y219{bottom:876.948800pt;}
.yb5{bottom:876.979200pt;}
.y1b6{bottom:884.493600pt;}
.y1de{bottom:884.507867pt;}
.y63{bottom:892.052667pt;}
.y36{bottom:892.066933pt;}
.ye7{bottom:892.079600pt;}
.yb4{bottom:893.779200pt;}
.y13f{bottom:895.601200pt;}
.y1b5{bottom:902.093600pt;}
.y1dd{bottom:902.107867pt;}
.yb{bottom:907.857467pt;}
.ye6{bottom:908.879600pt;}
.y62{bottom:909.652667pt;}
.y35{bottom:909.666933pt;}
.yb3{bottom:910.579200pt;}
.y13e{bottom:912.934533pt;}
.y1b4{bottom:919.693600pt;}
.y1dc{bottom:919.707867pt;}
.y61{bottom:927.252667pt;}
.y34{bottom:927.266933pt;}
.y166{bottom:927.267067pt;}
.yb2{bottom:927.379200pt;}
.ye5{bottom:931.348933pt;}
.ya{bottom:933.016533pt;}
.y60{bottom:944.852667pt;}
.y33{bottom:944.866800pt;}
.y165{bottom:944.866933pt;}
.y13d{bottom:945.386000pt;}
.yb1{bottom:951.738267pt;}
.y9{bottom:960.401333pt;}
.y5f{bottom:962.452667pt;}
.y32{bottom:962.466933pt;}
.y13c{bottom:962.719333pt;}
.ye4{bottom:963.267067pt;}
.y89{bottom:967.350933pt;}
.yb0{bottom:978.497333pt;}
.y5e{bottom:980.052667pt;}
.y31{bottom:980.066933pt;}
.y8{bottom:982.360400pt;}
.y7{bottom:1015.658000pt;}
.y30{bottom:1016.692933pt;}
.y5d{bottom:1016.707200pt;}
.y6{bottom:1031.796000pt;}
.y3{bottom:1049.381733pt;}
.y5{bottom:1049.396133pt;}
.y2{bottom:1066.981733pt;}
.y4{bottom:1066.996133pt;}
.h10{height:29.625000pt;}
.h9{height:30.010836pt;}
.h8{height:31.940563pt;}
.ha{height:31.941096pt;}
.h4{height:33.328125pt;}
.h16{height:35.583333pt;}
.h12{height:37.437500pt;}
.h5{height:40.161458pt;}
.h18{height:40.734375pt;}
.h3{height:42.117188pt;}
.he{height:43.343750pt;}
.hc{height:46.796875pt;}
.hd{height:47.463542pt;}
.hb{height:48.927083pt;}
.h2{height:51.476562pt;}
.hf{height:53.208333pt;}
.h17{height:53.625000pt;}
.h6{height:54.765625pt;}
.h7{height:56.156250pt;}
.h15{height:61.416700pt;}
.h13{height:61.437500pt;}
.h14{height:61.458300pt;}
.h11{height:85.458300pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:94.488267pt;}
.x1c{left:97.715067pt;}
.x31{left:104.671733pt;}
.xc{left:116.777200pt;}
.x32{left:122.271733pt;}
.x1a{left:128.011467pt;}
.x13{left:130.004533pt;}
.xf{left:132.995733pt;}
.x18{left:138.507333pt;}
.x2{left:140.254933pt;}
.x15{left:143.326667pt;}
.x1e{left:147.718400pt;}
.x17{left:150.848000pt;}
.x10{left:155.633733pt;}
.x14{left:157.313867pt;}
.x20{left:162.429333pt;}
.xb{left:171.835733pt;}
.x7{left:174.876533pt;}
.xa{left:176.102133pt;}
.x2f{left:182.905333pt;}
.x28{left:185.764667pt;}
.x33{left:195.141200pt;}
.xe{left:197.900133pt;}
.x34{left:201.141200pt;}
.x11{left:213.783600pt;}
.x37{left:216.096133pt;}
.x1d{left:219.851200pt;}
.x12{left:224.102000pt;}
.x1b{left:226.024400pt;}
.x35{left:228.101333pt;}
.xd{left:235.673600pt;}
.x36{left:240.101333pt;}
.x8{left:241.368800pt;}
.x38{left:252.096133pt;}
.x3c{left:267.051067pt;}
.x29{left:275.044000pt;}
.x3b{left:279.051067pt;}
.x24{left:282.423200pt;}
.x39{left:285.056267pt;}
.x19{left:286.864667pt;}
.x3a{left:291.051067pt;}
.x2d{left:293.378000pt;}
.x16{left:294.803067pt;}
.x22{left:297.089867pt;}
.x2c{left:299.494000pt;}
.x23{left:302.260400pt;}
.x25{left:304.835067pt;}
.x26{left:306.872400pt;}
.x1f{left:312.187467pt;}
.x2e{left:314.812267pt;}
.x21{left:318.273467pt;}
.x27{left:320.712000pt;}
.x9{left:324.286933pt;}
.x3f{left:330.006000pt;}
.x3d{left:336.011200pt;}
.x3e{left:342.006000pt;}
.x30{left:345.961067pt;}
.x41{left:348.006000pt;}
.x40{left:354.006000pt;}
.x2a{left:359.058667pt;}
.x2b{left:365.678933pt;}
.x44{left:368.960800pt;}
.x43{left:380.960800pt;}
.x42{left:386.966000pt;}
.x5b{left:389.517067pt;}
.x1{left:393.183733pt;}
.x45{left:404.960800pt;}
.x47{left:419.915733pt;}
.x4a{left:425.915733pt;}
.x46{left:431.920933pt;}
.x49{left:437.915733pt;}
.x48{left:443.915733pt;}
.x50{left:458.870667pt;}
.x4e{left:464.870667pt;}
.x4d{left:470.870667pt;}
.x5{left:475.216533pt;}
.x4b{left:476.875867pt;}
.x4c{left:482.870667pt;}
.x4f{left:488.870667pt;}
.x51{left:494.870667pt;}
.x54{left:509.825467pt;}
.x3{left:516.488000pt;}
.x52{left:521.830667pt;}
.x53{left:527.825467pt;}
.x55{left:533.825467pt;}
.x59{left:548.780400pt;}
.x5c{left:559.483467pt;}
.x58{left:560.780400pt;}
.x56{left:566.785600pt;}
.x57{left:572.785600pt;}
.x5d{left:577.083467pt;}
.x5a{left:584.780400pt;}
.x5e{left:594.683467pt;}
.x4{left:600.749733pt;}
.x5f{left:612.283467pt;}
}




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