
    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_26008c1ad1643e03ffaeb7e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.881836;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_9fa4ff48778dd9cb245d5c90.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_239144d35e4bbe587b8b9595.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.931000;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_f2558b425325b4ab09f4ff27.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.945000;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_b947453ca85b989e0197d0f9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.043000;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_42572cbdaf8ffdc8587b1d72.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_3903eaadc388c04c85223673.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_057e742b44065644593500f0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.843000;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_98aa45fb4a1b63ae7bc45c8a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.942000;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;}
.m12{transform:matrix(0.229292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229292,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.229387,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229387,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229387,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.229853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229853,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.230039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230039,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.230779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230779,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.231692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231692,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232155,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.232304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232304,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.232938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232938,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.234246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234246,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.234812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234812,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235035,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235200,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.235242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235242,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.235308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235308,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.235342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235342,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.235568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235568,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.235635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235635,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235935,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.235953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235953,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.236095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236095,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.236171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236171,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.236342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236342,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.236503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236503,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236505,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.236547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236547,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.236611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236611,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.236637,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236637,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236637,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236745,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.236754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236754,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.236763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236763,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.237034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237034,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237045,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.237092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237092,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.237108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237108,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.237111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237111,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237145,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.237147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237147,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.237163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237163,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.237197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237197,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237245,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.237418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237418,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.237447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237447,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.237547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237547,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.237611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237611,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.237613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237613,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.237655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237655,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.237708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237708,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237858,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237858,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237858,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.237916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237916,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.237919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237919,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.237921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237921,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.237927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237927,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.237929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237929,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.237984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237984,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.238016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238016,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.238047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238047,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.238097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238097,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.238179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238179,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.238197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238197,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.238224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238224,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.238258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238258,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.238269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238269,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.238271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238271,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.238297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238297,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.238397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238397,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.238409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238409,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.238411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238411,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.238429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238429,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.238482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238482,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.238483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238483,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238505,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238655,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.238663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238663,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.238824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238824,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.238834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238834,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.238853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238853,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.238861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238861,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.238908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238908,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.238919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238919,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.238921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238921,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.238984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238984,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.239055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239055,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.239158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239158,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.239203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239203,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.239463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239463,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.239579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239579,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.239613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239613,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.239689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239689,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239700,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.239703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239703,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.239876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239876,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.239903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239903,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.239929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239929,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239963,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.239971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239971,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239984,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239984,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239984,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.240032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240032,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.240066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240066,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.240142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240142,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.240147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240147,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240205,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.240274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240274,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.240276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240276,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.240384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240384,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.240408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240408,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.240468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240468,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.240479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240479,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.240553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240553,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.240603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240603,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.240626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240626,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.240687,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240687,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240687,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.240729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240729,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.240739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240739,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.240763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240763,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.240776,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240776,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240776,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.240816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240816,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.240863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240863,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.240905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240905,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241005,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.241342,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241342,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241342,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.241392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241392,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.241426,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241426,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241426,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.241455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241455,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.241518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241518,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.241521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241521,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241600,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.241629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241629,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.241735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241735,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.241737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241737,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.241839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241839,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.241876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241876,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.241884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241884,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.242016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242016,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242045,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.242048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242048,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242050,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.242155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242155,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.242297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242297,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242347,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.242471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242471,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242634,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242795,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.242989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242989,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.243042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243042,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.244023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244023,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.244137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244137,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.244226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244226,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.244616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244616,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.245113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245113,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.246642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246642,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247712,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);}
.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);}
.m13{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);}
.v4{vertical-align:-18.810000px;}
.v5{vertical-align:-12.548400px;}
.v6{vertical-align:-10.560000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.860000px;}
.v2{vertical-align:15.840600px;}
.v3{vertical-align:18.810000px;}
.v7{vertical-align:30.000000px;}
.v8{vertical-align:60.000000px;}
.ls31{letter-spacing:-1.968000px;}
.ls16{letter-spacing:-1.026000px;}
.ls15{letter-spacing:-0.969000px;}
.ls3f{letter-spacing:-0.912000px;}
.ls18{letter-spacing:-0.855000px;}
.ls1a{letter-spacing:-0.798000px;}
.ls1b{letter-spacing:-0.741000px;}
.ls5{letter-spacing:-0.684000px;}
.ls17{letter-spacing:-0.656640px;}
.ls7{letter-spacing:-0.627000px;}
.ls30{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.570000px;}
.ls19{letter-spacing:-0.547200px;}
.ls6{letter-spacing:-0.513000px;}
.ls46{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.456000px;}
.ls20{letter-spacing:-0.399000px;}
.ls1c{letter-spacing:-0.364800px;}
.ls9{letter-spacing:-0.342000px;}
.ls2e{letter-spacing:-0.328320px;}
.ls40{letter-spacing:-0.312000px;}
.ls1f{letter-spacing:-0.285000px;}
.ls41{letter-spacing:-0.234000px;}
.ls1e{letter-spacing:-0.228000px;}
.ls45{letter-spacing:-0.195000px;}
.ls21{letter-spacing:-0.182400px;}
.ls22{letter-spacing:-0.171000px;}
.ls2c{letter-spacing:-0.145920px;}
.ls2d{letter-spacing:-0.114000px;}
.ls23{letter-spacing:-0.109440px;}
.ls44{letter-spacing:-0.078000px;}
.ls1d{letter-spacing:-0.057000px;}
.ls3{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.003000px;}
.ls27{letter-spacing:0.014750px;}
.ls36{letter-spacing:0.039000px;}
.ls11{letter-spacing:0.057000px;}
.lse{letter-spacing:0.072960px;}
.ls34{letter-spacing:0.078000px;}
.ls2b{letter-spacing:0.096900px;}
.ls2f{letter-spacing:0.109440px;}
.lsc{letter-spacing:0.114000px;}
.ls42{letter-spacing:0.117000px;}
.ls32{letter-spacing:0.145920px;}
.ls24{letter-spacing:0.148200px;}
.lsb{letter-spacing:0.155599px;}
.ls3d{letter-spacing:0.156000px;}
.ls10{letter-spacing:0.171000px;}
.lsa{letter-spacing:0.228000px;}
.ls37{letter-spacing:0.234000px;}
.lsf{letter-spacing:0.245468px;}
.ls35{letter-spacing:0.273000px;}
.ls1{letter-spacing:0.285000px;}
.ls43{letter-spacing:0.312000px;}
.ls14{letter-spacing:0.342000px;}
.ls29{letter-spacing:0.345790px;}
.ls3a{letter-spacing:0.390000px;}
.lsd{letter-spacing:0.399000px;}
.ls3e{letter-spacing:0.480000px;}
.ls26{letter-spacing:0.484195px;}
.ls13{letter-spacing:0.490200px;}
.ls38{letter-spacing:0.507000px;}
.ls2a{letter-spacing:0.513000px;}
.ls28{letter-spacing:0.541500px;}
.ls3b{letter-spacing:0.546000px;}
.ls33{letter-spacing:0.570000px;}
.ls12{letter-spacing:0.615600px;}
.ls3c{letter-spacing:0.624000px;}
.ls39{letter-spacing:0.858000px;}
.ls0{letter-spacing:1.320000px;}
.ls2{letter-spacing:2.160000px;}
.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;}
}
.ws1{word-spacing:-14.982000px;}
.ws2{word-spacing:-13.398000px;}
.ws3{word-spacing:-12.483000px;}
.ws6{word-spacing:-12.420000px;}
.ws72{word-spacing:-11.913000px;}
.ws2c{word-spacing:-11.856000px;}
.ws8{word-spacing:-10.980000px;}
.ws4e{word-spacing:-10.512000px;}
.ws4{word-spacing:-10.431000px;}
.ws4f{word-spacing:-9.936000px;}
.ws50{word-spacing:-9.360000px;}
.ws7{word-spacing:-8.694000px;}
.ws2b{word-spacing:-8.062080px;}
.ws29{word-spacing:-7.989120px;}
.ws2d{word-spacing:-7.879680px;}
.ws2a{word-spacing:-7.806720px;}
.ws27{word-spacing:-7.728000px;}
.ws9{word-spacing:-7.686000px;}
.ws4d{word-spacing:-7.660800px;}
.ws28{word-spacing:-7.624320px;}
.ws5{word-spacing:-6.727680px;}
.ws0{word-spacing:-5.886720px;}
.ws3f{word-spacing:-2.565000px;}
.ws10{word-spacing:-2.508000px;}
.ws38{word-spacing:-2.451000px;}
.ws66{word-spacing:-2.337000px;}
.ws42{word-spacing:-2.166000px;}
.ws1a{word-spacing:-2.109000px;}
.ws19{word-spacing:-2.052000px;}
.ws48{word-spacing:-1.995000px;}
.ws60{word-spacing:-1.938000px;}
.wsd{word-spacing:-1.881000px;}
.ws18{word-spacing:-1.824000px;}
.ws79{word-spacing:-1.755000px;}
.ws78{word-spacing:-1.716000px;}
.ws7c{word-spacing:-1.638000px;}
.ws77{word-spacing:-1.521000px;}
.ws6b{word-spacing:-1.482000px;}
.ws83{word-spacing:-1.443000px;}
.ws41{word-spacing:-1.425000px;}
.wse{word-spacing:-1.368000px;}
.ws1e{word-spacing:-1.320000px;}
.ws17{word-spacing:-1.254000px;}
.ws46{word-spacing:-1.197000px;}
.ws32{word-spacing:-1.140000px;}
.ws33{word-spacing:-1.083000px;}
.ws25{word-spacing:-1.080000px;}
.ws3b{word-spacing:-0.912000px;}
.ws34{word-spacing:-0.855000px;}
.ws23{word-spacing:-0.798000px;}
.ws4a{word-spacing:-0.741000px;}
.ws26{word-spacing:-0.720000px;}
.ws16{word-spacing:-0.684000px;}
.ws44{word-spacing:-0.660000px;}
.ws1d{word-spacing:-0.627000px;}
.ws31{word-spacing:-0.570000px;}
.ws39{word-spacing:-0.513000px;}
.ws12{word-spacing:-0.456000px;}
.ws81{word-spacing:-0.390000px;}
.ws84{word-spacing:-0.312000px;}
.ws1f{word-spacing:-0.228000px;}
.ws4c{word-spacing:-0.171000px;}
.ws70{word-spacing:-0.145920px;}
.ws40{word-spacing:-0.114000px;}
.ws62{word-spacing:-0.109440px;}
.ws24{word-spacing:-0.057000px;}
.wsa{word-spacing:0.000000px;}
.ws85{word-spacing:0.096000px;}
.ws5f{word-spacing:0.145920px;}
.ws1b{word-spacing:0.171000px;}
.ws74{word-spacing:0.182400px;}
.ws75{word-spacing:0.228000px;}
.ws15{word-spacing:0.285000px;}
.ws73{word-spacing:0.342000px;}
.ws22{word-spacing:0.399000px;}
.ws64{word-spacing:0.456000px;}
.ws3e{word-spacing:0.513000px;}
.ws2f{word-spacing:0.547200px;}
.ws86{word-spacing:0.624000px;}
.ws45{word-spacing:0.627000px;}
.ws2e{word-spacing:0.656640px;}
.ws7d{word-spacing:0.702000px;}
.ws3d{word-spacing:0.741000px;}
.ws61{word-spacing:0.768000px;}
.ws36{word-spacing:0.798000px;}
.ws11{word-spacing:0.855000px;}
.ws80{word-spacing:0.897000px;}
.ws65{word-spacing:0.912000px;}
.ws43{word-spacing:0.969000px;}
.ws6e{word-spacing:1.140000px;}
.ws30{word-spacing:1.197000px;}
.ws67{word-spacing:1.248000px;}
.ws6d{word-spacing:1.254000px;}
.ws21{word-spacing:1.311000px;}
.ws68{word-spacing:1.344000px;}
.ws13{word-spacing:1.425000px;}
.ws6c{word-spacing:1.482000px;}
.ws3a{word-spacing:1.539000px;}
.ws14{word-spacing:1.596000px;}
.ws7a{word-spacing:1.638000px;}
.ws4b{word-spacing:1.653000px;}
.ws7e{word-spacing:1.677000px;}
.ws47{word-spacing:1.710000px;}
.ws7f{word-spacing:1.716000px;}
.wsf{word-spacing:1.767000px;}
.ws76{word-spacing:1.824000px;}
.ws82{word-spacing:1.872000px;}
.ws6f{word-spacing:1.938000px;}
.ws69{word-spacing:1.968000px;}
.ws20{word-spacing:1.995000px;}
.ws1c{word-spacing:2.052000px;}
.ws35{word-spacing:2.109000px;}
.ws6a{word-spacing:2.112000px;}
.ws37{word-spacing:2.166000px;}
.ws71{word-spacing:2.223000px;}
.ws3c{word-spacing:2.280000px;}
.ws49{word-spacing:2.337000px;}
.ws7b{word-spacing:2.379000px;}
.wsc{word-spacing:2.451000px;}
.ws63{word-spacing:2.460000px;}
.wsb{word-spacing:2.508000px;}
.ws5a{word-spacing:76.800000px;}
.ws58{word-spacing:83.952000px;}
.ws56{word-spacing:88.512000px;}
.ws57{word-spacing:95.664000px;}
.ws5b{word-spacing:100.224000px;}
.ws53{word-spacing:107.376000px;}
.ws5d{word-spacing:110.160000px;}
.ws55{word-spacing:113.760000px;}
.ws5e{word-spacing:114.720000px;}
.ws59{word-spacing:117.312000px;}
.ws5c{word-spacing:121.872000px;}
.ws54{word-spacing:133.584000px;}
.ws51{word-spacing:328.560000px;}
.ws52{word-spacing:395.088000px;}
._4{margin-left:-7.021800px;}
._6{margin-left:-5.949600px;}
._5{margin-left:-4.758000px;}
._3{margin-left:-3.465000px;}
._1{margin-left:-1.722000px;}
._0{width:1.806000px;}
._2{width:3.135000px;}
._8{width:4.925400px;}
._7{width:7.536000px;}
._21{width:19.929000px;}
._f{width:46.560000px;}
._e{width:65.568000px;}
._14{width:73.824000px;}
._1f{width:95.904000px;}
._1a{width:103.488000px;}
._15{width:115.200000px;}
._12{width:126.912000px;}
._1d{width:130.896000px;}
._1e{width:132.768000px;}
._1c{width:137.712000px;}
._19{width:141.648000px;}
._18{width:144.864000px;}
._10{width:149.856000px;}
._11{width:156.576000px;}
._20{width:159.408000px;}
._d{width:160.650000px;}
._1b{width:173.184000px;}
._13{width:175.056000px;}
._16{width:176.928000px;}
._17{width:190.656000px;}
._9{width:292.884000px;}
._c{width:332.688000px;}
._a{width:339.024000px;}
._b{width:395.424000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:26.880000px;}
.fs8{font-size:30.720000px;}
.fsa{font-size:36.000000px;}
.fs9{font-size:36.480000px;}
.fsb{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs4{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.069850px;}
.y4b{bottom:31.146150px;}
.y1{bottom:32.421750px;}
.y186{bottom:59.180400px;}
.yc5{bottom:59.523000px;}
.y13c{bottom:59.525700px;}
.y8a{bottom:59.527650px;}
.y1a9{bottom:59.534250px;}
.y4a{bottom:65.282400px;}
.y49{bottom:65.282550px;}
.y185{bottom:71.533650px;}
.y1a8{bottom:71.985000px;}
.y89{bottom:77.695050px;}
.yff{bottom:77.787300px;}
.yc4{bottom:77.791500px;}
.y13b{bottom:77.794200px;}
.y184{bottom:88.137900px;}
.y1a7{bottom:88.686750px;}
.y88{bottom:95.862450px;}
.yfe{bottom:96.046950px;}
.yc3{bottom:96.055500px;}
.y139{bottom:96.060900px;}
.y2d{bottom:99.921300px;}
.y183{bottom:100.494900px;}
.y182{bottom:100.499700px;}
.y13a{bottom:100.763550px;}
.y1a6{bottom:101.140200px;}
.y1a5{bottom:101.150700px;}
.y87{bottom:114.029850px;}
.yfd{bottom:114.312000px;}
.yc2{bottom:114.319500px;}
.y138{bottom:114.327750px;}
.y181{bottom:117.103950px;}
.y1a4{bottom:117.852450px;}
.y180{bottom:129.460950px;}
.y17f{bottom:129.470400px;}
.y86{bottom:132.197250px;}
.yfc{bottom:132.566250px;}
.yc1{bottom:132.583350px;}
.y137{bottom:132.590850px;}
.y1a3{bottom:134.554200px;}
.y2c{bottom:136.129500px;}
.y17e{bottom:146.074650px;}
.y1a2{bottom:147.004950px;}
.y85{bottom:150.364650px;}
.yc0{bottom:150.847350px;}
.y136{bottom:150.859350px;}
.y2b{bottom:154.240200px;}
.yfb{bottom:155.077950px;}
.y1a1{bottom:159.458550px;}
.y1a0{bottom:159.468900px;}
.y17d{bottom:162.678900px;}
.y84{bottom:168.532050px;}
.ybf{bottom:169.106700px;}
.y135{bottom:169.126200px;}
.y2a{bottom:172.337700px;}
.y17c{bottom:175.035900px;}
.y17b{bottom:175.040700px;}
.y19f{bottom:176.170650px;}
.y83{bottom:186.699450px;}
.ybe{bottom:187.370700px;}
.y134{bottom:187.392900px;}
.yfa{bottom:187.598850px;}
.y19e{bottom:188.621400px;}
.y29{bottom:190.441800px;}
.y17a{bottom:191.644950px;}
.y179{bottom:204.001950px;}
.y178{bottom:204.015150px;}
.y82{bottom:204.865500px;}
.y19d{bottom:205.323150px;}
.ybd{bottom:205.639200px;}
.y133{bottom:205.661400px;}
.yf9{bottom:205.853100px;}
.y28{bottom:208.546050px;}
.y19c{bottom:217.776750px;}
.y19b{bottom:217.780500px;}
.y177{bottom:220.619400px;}
.y81{bottom:223.032900px;}
.ybc{bottom:223.903050px;}
.y132{bottom:223.928100px;}
.yf8{bottom:224.112750px;}
.y27{bottom:226.650150px;}
.y176{bottom:232.972650px;}
.y19a{bottom:234.482250px;}
.y80{bottom:241.200300px;}
.ybb{bottom:242.167050px;}
.y131{bottom:242.194800px;}
.yf7{bottom:242.372400px;}
.y26{bottom:244.760850px;}
.y199{bottom:246.935850px;}
.y198{bottom:246.939750px;}
.y175{bottom:249.576900px;}
.y7f{bottom:259.369050px;}
.yba{bottom:260.431050px;}
.y130{bottom:260.461650px;}
.yf6{bottom:260.632050px;}
.y174{bottom:261.933900px;}
.y173{bottom:261.955650px;}
.y25{bottom:262.858350px;}
.y197{bottom:263.641500px;}
.y196{bottom:276.094950px;}
.y195{bottom:276.098850px;}
.y7e{bottom:277.536600px;}
.y172{bottom:278.559900px;}
.yb9{bottom:278.690400px;}
.y12f{bottom:278.726550px;}
.yf4{bottom:278.891700px;}
.y24{bottom:280.962450px;}
.yf5{bottom:283.594200px;}
.y171{bottom:290.913150px;}
.y194{bottom:292.800600px;}
.y7d{bottom:295.703850px;}
.yb8{bottom:296.958900px;}
.y12e{bottom:296.995050px;}
.yf3{bottom:297.151350px;}
.y23{bottom:299.066550px;}
.y193{bottom:305.254050px;}
.y192{bottom:305.260800px;}
.y170{bottom:307.517400px;}
.y7b{bottom:313.871400px;}
.yb7{bottom:315.222750px;}
.y12d{bottom:315.261750px;}
.yf2{bottom:315.411000px;}
.y22{bottom:317.170650px;}
.y7c{bottom:318.573900px;}
.y16f{bottom:319.870650px;}
.y191{bottom:321.962550px;}
.y7a{bottom:332.038650px;}
.yb6{bottom:333.486750px;}
.y12c{bottom:333.528450px;}
.yf1{bottom:333.670650px;}
.y190{bottom:334.413300px;}
.y21{bottom:335.274900px;}
.y16e{bottom:336.474900px;}
.y16d{bottom:348.831900px;}
.y16c{bottom:348.836700px;}
.y79{bottom:350.206200px;}
.y18f{bottom:351.118800px;}
.yb5{bottom:351.750600px;}
.y12b{bottom:351.795300px;}
.yf0{bottom:351.930300px;}
.y20{bottom:357.630900px;}
.y18e{bottom:363.572400px;}
.y16b{bottom:365.440950px;}
.y78{bottom:368.370900px;}
.yb4{bottom:370.014600px;}
.y12a{bottom:370.062000px;}
.yef{bottom:370.189950px;}
.y18d{bottom:376.026000px;}
.y16a{bottom:377.797950px;}
.y77{bottom:386.539650px;}
.yb3{bottom:388.273950px;}
.y129{bottom:388.328700px;}
.yee{bottom:388.449600px;}
.y1f{bottom:389.991000px;}
.y169{bottom:390.154950px;}
.y18c{bottom:392.731500px;}
.y76{bottom:404.707050px;}
.y18b{bottom:405.185100px;}
.yb2{bottom:406.542450px;}
.y128{bottom:406.595400px;}
.y168{bottom:406.763850px;}
.yed{bottom:410.961300px;}
.y18a{bottom:417.638700px;}
.y167{bottom:419.120850px;}
.y166{bottom:419.129400px;}
.y75{bottom:422.870400px;}
.yb1{bottom:424.806450px;}
.y127{bottom:424.862250px;}
.y1e{bottom:426.199200px;}
.y189{bottom:434.344200px;}
.y165{bottom:435.733650px;}
.yec{bottom:439.241100px;}
.y74{bottom:441.039150px;}
.yb0{bottom:443.070300px;}
.y1d{bottom:444.303300px;}
.y188{bottom:446.797800px;}
.y187{bottom:446.801400px;}
.y126{bottom:447.380850px;}
.y164{bottom:448.086900px;}
.yeb{bottom:457.495350px;}
.y73{bottom:459.207900px;}
.yaf{bottom:461.334300px;}
.y1c{bottom:462.407400px;}
.y163{bottom:464.695800px;}
.yea{bottom:475.749600px;}
.y72{bottom:477.376650px;}
.yae{bottom:479.593650px;}
.y1b{bottom:480.511500px;}
.y125{bottom:481.984200px;}
.ye9{bottom:494.003850px;}
.y71{bottom:495.545400px;}
.y124{bottom:496.383000px;}
.yad{bottom:497.862150px;}
.y1a{bottom:498.615750px;}
.ye8{bottom:512.263500px;}
.y70{bottom:513.712800px;}
.y123{bottom:515.163000px;}
.yac{bottom:516.126150px;}
.y19{bottom:516.719850px;}
.ye7{bottom:530.523150px;}
.y6f{bottom:531.880200px;}
.y122{bottom:533.943000px;}
.yab{bottom:534.385500px;}
.y18{bottom:534.823950px;}
.ye6{bottom:545.647800px;}
.ye5{bottom:548.782800px;}
.y6e{bottom:550.047600px;}
.yaa{bottom:552.654000px;}
.y121{bottom:552.723000px;}
.y17{bottom:552.928050px;}
.ye4{bottom:567.042450px;}
.y6d{bottom:568.215000px;}
.ya9{bottom:570.918000px;}
.y16{bottom:571.032150px;}
.y120{bottom:571.503000px;}
.ye3{bottom:582.167100px;}
.ye2{bottom:585.302100px;}
.y6c{bottom:586.382400px;}
.y15{bottom:589.142850px;}
.ya8{bottom:589.181850px;}
.y11f{bottom:590.283000px;}
.y6b{bottom:604.549800px;}
.y14{bottom:607.240350px;}
.ya7{bottom:607.445850px;}
.y11e{bottom:609.063000px;}
.ye1{bottom:612.067800px;}
.y6a{bottom:622.717200px;}
.y13{bottom:625.344600px;}
.ya6{bottom:625.709850px;}
.y11d{bottom:627.843000px;}
.y45{bottom:630.623550px;}
.ye0{bottom:638.831400px;}
.y69{bottom:640.884600px;}
.ya5{bottom:643.973700px;}
.y11c{bottom:646.623000px;}
.y44{bottom:647.123550px;}
.y12{bottom:647.700600px;}
.y68{bottom:659.052000px;}
.ya4{bottom:662.228550px;}
.y43{bottom:663.623550px;}
.y11b{bottom:665.403000px;}
.ydf{bottom:665.592900px;}
.y67{bottom:677.219400px;}
.y11{bottom:677.940300px;}
.y42{bottom:680.123550px;}
.ya3{bottom:680.497050px;}
.yde{bottom:683.852550px;}
.y119{bottom:684.183000px;}
.y1ab{bottom:691.455750px;}
.y118{bottom:691.683000px;}
.y66{bottom:695.386800px;}
.y41{bottom:696.623550px;}
.ya2{bottom:698.765550px;}
.y11a{bottom:699.183000px;}
.ydd{bottom:702.112200px;}
.y1aa{bottom:704.955750px;}
.y40{bottom:713.123550px;}
.y65{bottom:713.554200px;}
.y10{bottom:714.149550px;}
.ya1{bottom:717.029550px;}
.y117{bottom:720.035400px;}
.ydc{bottom:720.371850px;}
.y3f{bottom:729.623550px;}
.y64{bottom:731.721600px;}
.yf{bottom:732.247050px;}
.ya0{bottom:735.293400px;}
.y154{bottom:741.346350px;}
.ydb{bottom:747.131100px;}
.y162{bottom:749.825550px;}
.y63{bottom:749.889000px;}
.y116{bottom:750.295350px;}
.ye{bottom:750.370950px;}
.y9f{bottom:753.557400px;}
.y153{bottom:759.346350px;}
.yda{bottom:762.395100px;}
.y3e{bottom:762.623550px;}
.y115{bottom:764.261400px;}
.y62{bottom:768.055050px;}
.yd{bottom:768.468450px;}
.y9e{bottom:771.821250px;}
.y152{bottom:777.344100px;}
.y3d{bottom:779.123550px;}
.y114{bottom:781.769400px;}
.yd9{bottom:781.908750px;}
.y61{bottom:786.223800px;}
.yc{bottom:786.565950px;}
.y161{bottom:794.328300px;}
.y9d{bottom:794.337300px;}
.y151{bottom:795.344100px;}
.y3c{bottom:795.623550px;}
.y113{bottom:799.277400px;}
.y60{bottom:804.391350px;}
.yb{bottom:804.663450px;}
.yd8{bottom:808.670250px;}
.y3b{bottom:812.123550px;}
.y160{bottom:812.328300px;}
.y150{bottom:813.344100px;}
.y112{bottom:816.785400px;}
.y5f{bottom:822.558600px;}
.ya{bottom:822.767550px;}
.y10f{bottom:824.285400px;}
.y9c{bottom:826.857000px;}
.yd7{bottom:826.929900px;}
.y3a{bottom:828.623550px;}
.y14f{bottom:831.344100px;}
.y111{bottom:831.785400px;}
.y15f{bottom:834.580200px;}
.y10e{bottom:839.285400px;}
.y5e{bottom:840.726150px;}
.y9{bottom:840.871800px;}
.y9b{bottom:845.121000px;}
.y39{bottom:845.123550px;}
.yd6{bottom:845.194950px;}
.y110{bottom:846.785400px;}
.y14e{bottom:849.344100px;}
.y5d{bottom:858.893400px;}
.y8{bottom:858.989100px;}
.y38{bottom:861.623550px;}
.y9a{bottom:863.385000px;}
.yd5{bottom:863.449200px;}
.y10d{bottom:866.787450px;}
.y15e{bottom:866.838450px;}
.y14d{bottom:867.344100px;}
.y5c{bottom:877.059450px;}
.y7{bottom:877.086600px;}
.y37{bottom:878.123550px;}
.y99{bottom:881.648850px;}
.yd4{bottom:881.708850px;}
.y10c{bottom:881.787450px;}
.y15d{bottom:884.836200px;}
.y14b{bottom:885.344100px;}
.y14c{bottom:890.046600px;}
.y6{bottom:895.184100px;}
.y5b{bottom:895.228200px;}
.y98{bottom:899.912850px;}
.yd3{bottom:899.968500px;}
.y15c{bottom:902.836200px;}
.y14a{bottom:903.344100px;}
.y10b{bottom:912.047400px;}
.y36{bottom:912.371550px;}
.y5{bottom:913.288200px;}
.y5a{bottom:913.395750px;}
.y97{bottom:918.172200px;}
.yd2{bottom:918.228150px;}
.y15b{bottom:920.836200px;}
.y149{bottom:921.344100px;}
.y35{bottom:925.875450px;}
.y10a{bottom:930.822000px;}
.y4{bottom:931.392300px;}
.y59{bottom:931.561800px;}
.y96{bottom:936.440700px;}
.yd1{bottom:936.487950px;}
.y15a{bottom:938.836200px;}
.y148{bottom:939.344100px;}
.y34{bottom:943.623450px;}
.y109{bottom:949.590000px;}
.y58{bottom:949.730550px;}
.y3{bottom:953.748450px;}
.y95{bottom:954.704700px;}
.yd0{bottom:954.747600px;}
.y33{bottom:957.123450px;}
.y147{bottom:957.344100px;}
.y159{bottom:961.088250px;}
.y57{bottom:967.897950px;}
.y108{bottom:968.371500px;}
.y94{bottom:972.968700px;}
.yce{bottom:973.007100px;}
.y146{bottom:975.344100px;}
.ycf{bottom:977.709750px;}
.y56{bottom:986.065350px;}
.y107{bottom:987.146250px;}
.y93{bottom:991.232550px;}
.ycd{bottom:991.266750px;}
.y32{bottom:993.147000px;}
.y145{bottom:993.346350px;}
.y158{bottom:993.350850px;}
.y55{bottom:1004.232750px;}
.y106{bottom:1005.921000px;}
.y92{bottom:1009.496550px;}
.ycc{bottom:1009.526400px;}
.y144{bottom:1011.344100px;}
.y157{bottom:1011.348600px;}
.y31{bottom:1017.146850px;}
.y48{bottom:1019.829750px;}
.y54{bottom:1022.400150px;}
.y105{bottom:1024.695600px;}
.y91{bottom:1027.760400px;}
.ycb{bottom:1027.786050px;}
.y142{bottom:1029.344100px;}
.y156{bottom:1029.346350px;}
.y143{bottom:1034.046600px;}
.y47{bottom:1034.829750px;}
.y52{bottom:1040.567550px;}
.y104{bottom:1043.470500px;}
.y53{bottom:1045.270050px;}
.y90{bottom:1046.024250px;}
.yca{bottom:1046.051250px;}
.y155{bottom:1047.344100px;}
.y141{bottom:1047.346350px;}
.y46{bottom:1051.329750px;}
.y30{bottom:1053.902850px;}
.y51{bottom:1058.734950px;}
.y103{bottom:1062.245250px;}
.y8f{bottom:1064.288250px;}
.yc9{bottom:1064.305500px;}
.y140{bottom:1065.344100px;}
.y4f{bottom:1076.902350px;}
.y102{bottom:1081.019850px;}
.y50{bottom:1081.604850px;}
.y8e{bottom:1082.552250px;}
.yc8{bottom:1082.565150px;}
.y13f{bottom:1083.344100px;}
.y2f{bottom:1090.667850px;}
.y4e{bottom:1095.069750px;}
.y101{bottom:1099.794600px;}
.y8d{bottom:1100.811600px;}
.yc7{bottom:1100.824800px;}
.y13e{bottom:1101.344100px;}
.y4d{bottom:1113.237150px;}
.y100{bottom:1118.569350px;}
.y8c{bottom:1119.080100px;}
.yc6{bottom:1119.084450px;}
.y13d{bottom:1119.344100px;}
.y2e{bottom:1126.658850px;}
.y4c{bottom:1135.656600px;}
.y8b{bottom:1137.344100px;}
.h1d{height:25.956000px;}
.h11{height:26.302080px;}
.h23{height:28.119000px;}
.h3{height:33.240480px;}
.he{height:34.080000px;}
.hc{height:34.608000px;}
.hd{height:37.973520px;}
.hb{height:37.989720px;}
.h1b{height:38.006520px;}
.h5{height:41.097000px;}
.h15{height:41.103000px;}
.h18{height:41.115600px;}
.hf{height:42.000000px;}
.h2{height:42.304688px;}
.h1c{height:42.600000px;}
.h22{height:45.103080px;}
.h1a{height:45.103680px;}
.h17{height:45.111480px;}
.h12{height:45.112080px;}
.h13{height:45.117480px;}
.h14{height:45.118080px;}
.h21{height:45.118680px;}
.h20{height:45.119280px;}
.h19{height:45.130080px;}
.h16{height:45.133680px;}
.h4{height:46.860000px;}
.h7{height:46.911000px;}
.h6{height:47.586000px;}
.h10{height:49.920000px;}
.h9{height:59.256000px;}
.ha{height:59.256600px;}
.h1e{height:64.080000px;}
.h8{height:76.680000px;}
.h1f{height:94.080000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x9{left:46.309800px;}
.x45{left:55.385850px;}
.x43{left:59.529330px;}
.x2{left:63.900000px;}
.xb{left:68.151900px;}
.x15{left:84.577650px;}
.x1d{left:90.726600px;}
.x1e{left:95.402700px;}
.x1b{left:118.224480px;}
.x1a{left:147.668580px;}
.x1c{left:178.445040px;}
.x16{left:204.905400px;}
.x17{left:209.500500px;}
.x18{left:221.488650px;}
.x1f{left:226.626600px;}
.x19{left:228.261000px;}
.x20{left:233.109900px;}
.x25{left:235.476000px;}
.x3{left:251.155500px;}
.x21{left:257.203650px;}
.x22{left:263.458200px;}
.x3f{left:265.190550px;}
.x40{left:269.397750px;}
.x4{left:272.250450px;}
.x11{left:281.703000px;}
.x12{left:330.828600px;}
.x41{left:345.026100px;}
.x42{left:359.299650px;}
.x23{left:362.320950px;}
.x24{left:366.333750px;}
.xe{left:367.717050px;}
.xf{left:377.313000px;}
.xc{left:417.833850px;}
.x10{left:423.415950px;}
.xd{left:427.443300px;}
.x13{left:448.582650px;}
.x44{left:461.338650px;}
.x26{left:465.590550px;}
.x14{left:469.842450px;}
.x3c{left:474.102810px;}
.x3b{left:476.674650px;}
.x38{left:478.637370px;}
.x31{left:479.663850px;}
.x39{left:484.390170px;}
.x27{left:486.850350px;}
.x3a{left:488.044890px;}
.x28{left:496.099350px;}
.x2e{left:497.114550px;}
.x2f{left:506.601030px;}
.x29{left:512.263590px;}
.x30{left:520.757430px;}
.x3d{left:539.609550px;}
.x3e{left:548.285550px;}
.x32{left:584.082810px;}
.x8{left:586.813800px;}
.x2a{left:607.906710px;}
.xa{left:621.119700px;}
.x2b{left:630.974310px;}
.x33{left:689.122170px;}
.x2c{left:730.102950px;}
.x35{left:744.856650px;}
.x34{left:748.646730px;}
.x7{left:754.370850px;}
.x5{left:756.569400px;}
.x6{left:759.531600px;}
.x2d{left:763.615830px;}
.x37{left:798.887850px;}
.x36{left:803.027610px;}
.x1{left:821.201550px;}
@media print{
.v4{vertical-align:-16.720000pt;}
.v5{vertical-align:-11.154133pt;}
.v6{vertical-align:-9.386667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.320000pt;}
.v2{vertical-align:14.080533pt;}
.v3{vertical-align:16.720000pt;}
.v7{vertical-align:26.666667pt;}
.v8{vertical-align:53.333333pt;}
.ls31{letter-spacing:-1.749333pt;}
.ls16{letter-spacing:-0.912000pt;}
.ls15{letter-spacing:-0.861333pt;}
.ls3f{letter-spacing:-0.810667pt;}
.ls18{letter-spacing:-0.760000pt;}
.ls1a{letter-spacing:-0.709333pt;}
.ls1b{letter-spacing:-0.658667pt;}
.ls5{letter-spacing:-0.608000pt;}
.ls17{letter-spacing:-0.583680pt;}
.ls7{letter-spacing:-0.557333pt;}
.ls30{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.506667pt;}
.ls19{letter-spacing:-0.486400pt;}
.ls6{letter-spacing:-0.456000pt;}
.ls46{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.405333pt;}
.ls20{letter-spacing:-0.354667pt;}
.ls1c{letter-spacing:-0.324267pt;}
.ls9{letter-spacing:-0.304000pt;}
.ls2e{letter-spacing:-0.291840pt;}
.ls40{letter-spacing:-0.277333pt;}
.ls1f{letter-spacing:-0.253333pt;}
.ls41{letter-spacing:-0.208000pt;}
.ls1e{letter-spacing:-0.202667pt;}
.ls45{letter-spacing:-0.173333pt;}
.ls21{letter-spacing:-0.162133pt;}
.ls22{letter-spacing:-0.152000pt;}
.ls2c{letter-spacing:-0.129707pt;}
.ls2d{letter-spacing:-0.101333pt;}
.ls23{letter-spacing:-0.097280pt;}
.ls44{letter-spacing:-0.069333pt;}
.ls1d{letter-spacing:-0.050667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.002667pt;}
.ls27{letter-spacing:0.013111pt;}
.ls36{letter-spacing:0.034667pt;}
.ls11{letter-spacing:0.050667pt;}
.lse{letter-spacing:0.064853pt;}
.ls34{letter-spacing:0.069333pt;}
.ls2b{letter-spacing:0.086133pt;}
.ls2f{letter-spacing:0.097280pt;}
.lsc{letter-spacing:0.101333pt;}
.ls42{letter-spacing:0.104000pt;}
.ls32{letter-spacing:0.129707pt;}
.ls24{letter-spacing:0.131733pt;}
.lsb{letter-spacing:0.138310pt;}
.ls3d{letter-spacing:0.138667pt;}
.ls10{letter-spacing:0.152000pt;}
.lsa{letter-spacing:0.202667pt;}
.ls37{letter-spacing:0.208000pt;}
.lsf{letter-spacing:0.218193pt;}
.ls35{letter-spacing:0.242667pt;}
.ls1{letter-spacing:0.253333pt;}
.ls43{letter-spacing:0.277333pt;}
.ls14{letter-spacing:0.304000pt;}
.ls29{letter-spacing:0.307369pt;}
.ls3a{letter-spacing:0.346667pt;}
.lsd{letter-spacing:0.354667pt;}
.ls3e{letter-spacing:0.426667pt;}
.ls26{letter-spacing:0.430396pt;}
.ls13{letter-spacing:0.435733pt;}
.ls38{letter-spacing:0.450667pt;}
.ls2a{letter-spacing:0.456000pt;}
.ls28{letter-spacing:0.481333pt;}
.ls3b{letter-spacing:0.485333pt;}
.ls33{letter-spacing:0.506667pt;}
.ls12{letter-spacing:0.547200pt;}
.ls3c{letter-spacing:0.554667pt;}
.ls39{letter-spacing:0.762667pt;}
.ls0{letter-spacing:1.173333pt;}
.ls2{letter-spacing:1.920000pt;}
.ws1{word-spacing:-13.317333pt;}
.ws2{word-spacing:-11.909333pt;}
.ws3{word-spacing:-11.096000pt;}
.ws6{word-spacing:-11.040000pt;}
.ws72{word-spacing:-10.589333pt;}
.ws2c{word-spacing:-10.538667pt;}
.ws8{word-spacing:-9.760000pt;}
.ws4e{word-spacing:-9.344000pt;}
.ws4{word-spacing:-9.272000pt;}
.ws4f{word-spacing:-8.832000pt;}
.ws50{word-spacing:-8.320000pt;}
.ws7{word-spacing:-7.728000pt;}
.ws2b{word-spacing:-7.166293pt;}
.ws29{word-spacing:-7.101440pt;}
.ws2d{word-spacing:-7.004160pt;}
.ws2a{word-spacing:-6.939307pt;}
.ws27{word-spacing:-6.869333pt;}
.ws9{word-spacing:-6.832000pt;}
.ws4d{word-spacing:-6.809600pt;}
.ws28{word-spacing:-6.777173pt;}
.ws5{word-spacing:-5.980160pt;}
.ws0{word-spacing:-5.232640pt;}
.ws3f{word-spacing:-2.280000pt;}
.ws10{word-spacing:-2.229333pt;}
.ws38{word-spacing:-2.178667pt;}
.ws66{word-spacing:-2.077333pt;}
.ws42{word-spacing:-1.925333pt;}
.ws1a{word-spacing:-1.874667pt;}
.ws19{word-spacing:-1.824000pt;}
.ws48{word-spacing:-1.773333pt;}
.ws60{word-spacing:-1.722667pt;}
.wsd{word-spacing:-1.672000pt;}
.ws18{word-spacing:-1.621333pt;}
.ws79{word-spacing:-1.560000pt;}
.ws78{word-spacing:-1.525333pt;}
.ws7c{word-spacing:-1.456000pt;}
.ws77{word-spacing:-1.352000pt;}
.ws6b{word-spacing:-1.317333pt;}
.ws83{word-spacing:-1.282667pt;}
.ws41{word-spacing:-1.266667pt;}
.wse{word-spacing:-1.216000pt;}
.ws1e{word-spacing:-1.173333pt;}
.ws17{word-spacing:-1.114667pt;}
.ws46{word-spacing:-1.064000pt;}
.ws32{word-spacing:-1.013333pt;}
.ws33{word-spacing:-0.962667pt;}
.ws25{word-spacing:-0.960000pt;}
.ws3b{word-spacing:-0.810667pt;}
.ws34{word-spacing:-0.760000pt;}
.ws23{word-spacing:-0.709333pt;}
.ws4a{word-spacing:-0.658667pt;}
.ws26{word-spacing:-0.640000pt;}
.ws16{word-spacing:-0.608000pt;}
.ws44{word-spacing:-0.586667pt;}
.ws1d{word-spacing:-0.557333pt;}
.ws31{word-spacing:-0.506667pt;}
.ws39{word-spacing:-0.456000pt;}
.ws12{word-spacing:-0.405333pt;}
.ws81{word-spacing:-0.346667pt;}
.ws84{word-spacing:-0.277333pt;}
.ws1f{word-spacing:-0.202667pt;}
.ws4c{word-spacing:-0.152000pt;}
.ws70{word-spacing:-0.129707pt;}
.ws40{word-spacing:-0.101333pt;}
.ws62{word-spacing:-0.097280pt;}
.ws24{word-spacing:-0.050667pt;}
.wsa{word-spacing:0.000000pt;}
.ws85{word-spacing:0.085333pt;}
.ws5f{word-spacing:0.129707pt;}
.ws1b{word-spacing:0.152000pt;}
.ws74{word-spacing:0.162133pt;}
.ws75{word-spacing:0.202667pt;}
.ws15{word-spacing:0.253333pt;}
.ws73{word-spacing:0.304000pt;}
.ws22{word-spacing:0.354667pt;}
.ws64{word-spacing:0.405333pt;}
.ws3e{word-spacing:0.456000pt;}
.ws2f{word-spacing:0.486400pt;}
.ws86{word-spacing:0.554667pt;}
.ws45{word-spacing:0.557333pt;}
.ws2e{word-spacing:0.583680pt;}
.ws7d{word-spacing:0.624000pt;}
.ws3d{word-spacing:0.658667pt;}
.ws61{word-spacing:0.682667pt;}
.ws36{word-spacing:0.709333pt;}
.ws11{word-spacing:0.760000pt;}
.ws80{word-spacing:0.797333pt;}
.ws65{word-spacing:0.810667pt;}
.ws43{word-spacing:0.861333pt;}
.ws6e{word-spacing:1.013333pt;}
.ws30{word-spacing:1.064000pt;}
.ws67{word-spacing:1.109333pt;}
.ws6d{word-spacing:1.114667pt;}
.ws21{word-spacing:1.165333pt;}
.ws68{word-spacing:1.194667pt;}
.ws13{word-spacing:1.266667pt;}
.ws6c{word-spacing:1.317333pt;}
.ws3a{word-spacing:1.368000pt;}
.ws14{word-spacing:1.418667pt;}
.ws7a{word-spacing:1.456000pt;}
.ws4b{word-spacing:1.469333pt;}
.ws7e{word-spacing:1.490667pt;}
.ws47{word-spacing:1.520000pt;}
.ws7f{word-spacing:1.525333pt;}
.wsf{word-spacing:1.570667pt;}
.ws76{word-spacing:1.621333pt;}
.ws82{word-spacing:1.664000pt;}
.ws6f{word-spacing:1.722667pt;}
.ws69{word-spacing:1.749333pt;}
.ws20{word-spacing:1.773333pt;}
.ws1c{word-spacing:1.824000pt;}
.ws35{word-spacing:1.874667pt;}
.ws6a{word-spacing:1.877333pt;}
.ws37{word-spacing:1.925333pt;}
.ws71{word-spacing:1.976000pt;}
.ws3c{word-spacing:2.026667pt;}
.ws49{word-spacing:2.077333pt;}
.ws7b{word-spacing:2.114667pt;}
.wsc{word-spacing:2.178667pt;}
.ws63{word-spacing:2.186667pt;}
.wsb{word-spacing:2.229333pt;}
.ws5a{word-spacing:68.266667pt;}
.ws58{word-spacing:74.624000pt;}
.ws56{word-spacing:78.677333pt;}
.ws57{word-spacing:85.034667pt;}
.ws5b{word-spacing:89.088000pt;}
.ws53{word-spacing:95.445333pt;}
.ws5d{word-spacing:97.920000pt;}
.ws55{word-spacing:101.120000pt;}
.ws5e{word-spacing:101.973333pt;}
.ws59{word-spacing:104.277333pt;}
.ws5c{word-spacing:108.330667pt;}
.ws54{word-spacing:118.741333pt;}
.ws51{word-spacing:292.053333pt;}
.ws52{word-spacing:351.189333pt;}
._4{margin-left:-6.241600pt;}
._6{margin-left:-5.288533pt;}
._5{margin-left:-4.229333pt;}
._3{margin-left:-3.080000pt;}
._1{margin-left:-1.530667pt;}
._0{width:1.605333pt;}
._2{width:2.786667pt;}
._8{width:4.378133pt;}
._7{width:6.698667pt;}
._21{width:17.714667pt;}
._f{width:41.386667pt;}
._e{width:58.282667pt;}
._14{width:65.621333pt;}
._1f{width:85.248000pt;}
._1a{width:91.989333pt;}
._15{width:102.400000pt;}
._12{width:112.810667pt;}
._1d{width:116.352000pt;}
._1e{width:118.016000pt;}
._1c{width:122.410667pt;}
._19{width:125.909333pt;}
._18{width:128.768000pt;}
._10{width:133.205333pt;}
._11{width:139.178667pt;}
._20{width:141.696000pt;}
._d{width:142.800000pt;}
._1b{width:153.941333pt;}
._13{width:155.605333pt;}
._16{width:157.269333pt;}
._17{width:169.472000pt;}
._9{width:260.341333pt;}
._c{width:295.722667pt;}
._a{width:301.354667pt;}
._b{width:351.488000pt;}
.fs2{font-size:23.893333pt;}
.fs8{font-size:27.306667pt;}
.fsa{font-size:32.000000pt;}
.fs9{font-size:32.426667pt;}
.fsb{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs4{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:25.839867pt;}
.y4b{bottom:27.685467pt;}
.y1{bottom:28.819333pt;}
.y186{bottom:52.604800pt;}
.yc5{bottom:52.909333pt;}
.y13c{bottom:52.911733pt;}
.y8a{bottom:52.913467pt;}
.y1a9{bottom:52.919333pt;}
.y4a{bottom:58.028800pt;}
.y49{bottom:58.028933pt;}
.y185{bottom:63.585467pt;}
.y1a8{bottom:63.986667pt;}
.y89{bottom:69.062267pt;}
.yff{bottom:69.144267pt;}
.yc4{bottom:69.148000pt;}
.y13b{bottom:69.150400pt;}
.y184{bottom:78.344800pt;}
.y1a7{bottom:78.832667pt;}
.y88{bottom:85.211067pt;}
.yfe{bottom:85.375067pt;}
.yc3{bottom:85.382667pt;}
.y139{bottom:85.387467pt;}
.y2d{bottom:88.818933pt;}
.y183{bottom:89.328800pt;}
.y182{bottom:89.333067pt;}
.y13a{bottom:89.567600pt;}
.y1a6{bottom:89.902400pt;}
.y1a5{bottom:89.911733pt;}
.y87{bottom:101.359867pt;}
.yfd{bottom:101.610667pt;}
.yc2{bottom:101.617333pt;}
.y138{bottom:101.624667pt;}
.y181{bottom:104.092400pt;}
.y1a4{bottom:104.757733pt;}
.y180{bottom:115.076400pt;}
.y17f{bottom:115.084800pt;}
.y86{bottom:117.508667pt;}
.yfc{bottom:117.836667pt;}
.yc1{bottom:117.851867pt;}
.y137{bottom:117.858533pt;}
.y1a3{bottom:119.603733pt;}
.y2c{bottom:121.004000pt;}
.y17e{bottom:129.844133pt;}
.y1a2{bottom:130.671067pt;}
.y85{bottom:133.657467pt;}
.yc0{bottom:134.086533pt;}
.y136{bottom:134.097200pt;}
.y2b{bottom:137.102400pt;}
.yfb{bottom:137.847067pt;}
.y1a1{bottom:141.740933pt;}
.y1a0{bottom:141.750133pt;}
.y17d{bottom:144.603467pt;}
.y84{bottom:149.806267pt;}
.ybf{bottom:150.317067pt;}
.y135{bottom:150.334400pt;}
.y2a{bottom:153.189067pt;}
.y17c{bottom:155.587467pt;}
.y17b{bottom:155.591733pt;}
.y19f{bottom:156.596133pt;}
.y83{bottom:165.955067pt;}
.ybe{bottom:166.551733pt;}
.y134{bottom:166.571467pt;}
.yfa{bottom:166.754533pt;}
.y19e{bottom:167.663467pt;}
.y29{bottom:169.281600pt;}
.y17a{bottom:170.351067pt;}
.y179{bottom:181.335067pt;}
.y178{bottom:181.346800pt;}
.y82{bottom:182.102667pt;}
.y19d{bottom:182.509467pt;}
.ybd{bottom:182.790400pt;}
.y133{bottom:182.810133pt;}
.yf9{bottom:182.980533pt;}
.y28{bottom:185.374267pt;}
.y19c{bottom:193.579333pt;}
.y19b{bottom:193.582667pt;}
.y177{bottom:196.106133pt;}
.y81{bottom:198.251467pt;}
.ybc{bottom:199.024933pt;}
.y132{bottom:199.047200pt;}
.yf8{bottom:199.211333pt;}
.y27{bottom:201.466800pt;}
.y176{bottom:207.086800pt;}
.y19a{bottom:208.428667pt;}
.y80{bottom:214.400267pt;}
.ybb{bottom:215.259600pt;}
.y131{bottom:215.284267pt;}
.yf7{bottom:215.442133pt;}
.y26{bottom:217.565200pt;}
.y199{bottom:219.498533pt;}
.y198{bottom:219.502000pt;}
.y175{bottom:221.846133pt;}
.y7f{bottom:230.550267pt;}
.yba{bottom:231.494267pt;}
.y130{bottom:231.521467pt;}
.yf6{bottom:231.672933pt;}
.y174{bottom:232.830133pt;}
.y173{bottom:232.849467pt;}
.y25{bottom:233.651867pt;}
.y197{bottom:234.348000pt;}
.y196{bottom:245.417733pt;}
.y195{bottom:245.421200pt;}
.y7e{bottom:246.699200pt;}
.y172{bottom:247.608800pt;}
.yb9{bottom:247.724800pt;}
.y12f{bottom:247.756933pt;}
.yf4{bottom:247.903733pt;}
.y24{bottom:249.744400pt;}
.yf5{bottom:252.083733pt;}
.y171{bottom:258.589467pt;}
.y194{bottom:260.267200pt;}
.y7d{bottom:262.847867pt;}
.yb8{bottom:263.963467pt;}
.y12e{bottom:263.995600pt;}
.yf3{bottom:264.134533pt;}
.y23{bottom:265.836933pt;}
.y193{bottom:271.336933pt;}
.y192{bottom:271.342933pt;}
.y170{bottom:273.348800pt;}
.y7b{bottom:278.996800pt;}
.yb7{bottom:280.198000pt;}
.y12d{bottom:280.232667pt;}
.yf2{bottom:280.365333pt;}
.y22{bottom:281.929467pt;}
.y7c{bottom:283.176800pt;}
.y16f{bottom:284.329467pt;}
.y191{bottom:286.188933pt;}
.y7a{bottom:295.145467pt;}
.yb6{bottom:296.432667pt;}
.y12c{bottom:296.469733pt;}
.yf1{bottom:296.596133pt;}
.y190{bottom:297.256267pt;}
.y21{bottom:298.022133pt;}
.y16e{bottom:299.088800pt;}
.y16d{bottom:310.072800pt;}
.y16c{bottom:310.077067pt;}
.y79{bottom:311.294400pt;}
.y18f{bottom:312.105600pt;}
.yb5{bottom:312.667200pt;}
.y12b{bottom:312.706933pt;}
.yf0{bottom:312.826933pt;}
.y20{bottom:317.894133pt;}
.y18e{bottom:323.175467pt;}
.y16b{bottom:324.836400pt;}
.y78{bottom:327.440800pt;}
.yb4{bottom:328.901867pt;}
.y12a{bottom:328.944000pt;}
.yef{bottom:329.057733pt;}
.y18d{bottom:334.245333pt;}
.y16a{bottom:335.820400pt;}
.y77{bottom:343.590800pt;}
.yb3{bottom:345.132400pt;}
.y129{bottom:345.181067pt;}
.yee{bottom:345.288533pt;}
.y1f{bottom:346.658667pt;}
.y169{bottom:346.804400pt;}
.y18c{bottom:349.094667pt;}
.y76{bottom:359.739600pt;}
.y18b{bottom:360.164533pt;}
.yb2{bottom:361.371067pt;}
.y128{bottom:361.418133pt;}
.y168{bottom:361.567867pt;}
.yed{bottom:365.298933pt;}
.y18a{bottom:371.234400pt;}
.y167{bottom:372.551867pt;}
.y166{bottom:372.559467pt;}
.y75{bottom:375.884800pt;}
.yb1{bottom:377.605733pt;}
.y127{bottom:377.655333pt;}
.y1e{bottom:378.843733pt;}
.y189{bottom:386.083733pt;}
.y165{bottom:387.318800pt;}
.yec{bottom:390.436533pt;}
.y74{bottom:392.034800pt;}
.yb0{bottom:393.840267pt;}
.y1d{bottom:394.936267pt;}
.y188{bottom:397.153600pt;}
.y187{bottom:397.156800pt;}
.y126{bottom:397.671867pt;}
.y164{bottom:398.299467pt;}
.yeb{bottom:406.662533pt;}
.y73{bottom:408.184800pt;}
.yaf{bottom:410.074933pt;}
.y1c{bottom:411.028800pt;}
.y163{bottom:413.062933pt;}
.yea{bottom:422.888533pt;}
.y72{bottom:424.334800pt;}
.yae{bottom:426.305467pt;}
.y1b{bottom:427.121333pt;}
.y125{bottom:428.430400pt;}
.ye9{bottom:439.114533pt;}
.y71{bottom:440.484800pt;}
.y124{bottom:441.229333pt;}
.yad{bottom:442.544133pt;}
.y1a{bottom:443.214000pt;}
.ye8{bottom:455.345333pt;}
.y70{bottom:456.633600pt;}
.y123{bottom:457.922667pt;}
.yac{bottom:458.778800pt;}
.y19{bottom:459.306533pt;}
.ye7{bottom:471.576133pt;}
.y6f{bottom:472.782400pt;}
.y122{bottom:474.616000pt;}
.yab{bottom:475.009333pt;}
.y18{bottom:475.399067pt;}
.ye6{bottom:485.020267pt;}
.ye5{bottom:487.806933pt;}
.y6e{bottom:488.931200pt;}
.yaa{bottom:491.248000pt;}
.y121{bottom:491.309333pt;}
.y17{bottom:491.491600pt;}
.ye4{bottom:504.037733pt;}
.y6d{bottom:505.080000pt;}
.ya9{bottom:507.482667pt;}
.y16{bottom:507.584133pt;}
.y120{bottom:508.002667pt;}
.ye3{bottom:517.481867pt;}
.ye2{bottom:520.268533pt;}
.y6c{bottom:521.228800pt;}
.y15{bottom:523.682533pt;}
.ya8{bottom:523.717200pt;}
.y11f{bottom:524.696000pt;}
.y6b{bottom:537.377600pt;}
.y14{bottom:539.769200pt;}
.ya7{bottom:539.951867pt;}
.y11e{bottom:541.389333pt;}
.ye1{bottom:544.060267pt;}
.y6a{bottom:553.526400pt;}
.y13{bottom:555.861867pt;}
.ya6{bottom:556.186533pt;}
.y11d{bottom:558.082667pt;}
.y45{bottom:560.554267pt;}
.ye0{bottom:567.850133pt;}
.y69{bottom:569.675200pt;}
.ya5{bottom:572.421067pt;}
.y11c{bottom:574.776000pt;}
.y44{bottom:575.220933pt;}
.y12{bottom:575.733867pt;}
.y68{bottom:585.824000pt;}
.ya4{bottom:588.647600pt;}
.y43{bottom:589.887600pt;}
.y11b{bottom:591.469333pt;}
.ydf{bottom:591.638133pt;}
.y67{bottom:601.972800pt;}
.y11{bottom:602.613600pt;}
.y42{bottom:604.554267pt;}
.ya3{bottom:604.886267pt;}
.yde{bottom:607.868933pt;}
.y119{bottom:608.162667pt;}
.y1ab{bottom:614.627333pt;}
.y118{bottom:614.829333pt;}
.y66{bottom:618.121600pt;}
.y41{bottom:619.220933pt;}
.ya2{bottom:621.124933pt;}
.y11a{bottom:621.496000pt;}
.ydd{bottom:624.099733pt;}
.y1aa{bottom:626.627333pt;}
.y40{bottom:633.887600pt;}
.y65{bottom:634.270400pt;}
.y10{bottom:634.799600pt;}
.ya1{bottom:637.359600pt;}
.y117{bottom:640.031467pt;}
.ydc{bottom:640.330533pt;}
.y3f{bottom:648.554267pt;}
.y64{bottom:650.419200pt;}
.yf{bottom:650.886267pt;}
.ya0{bottom:653.594133pt;}
.y154{bottom:658.974533pt;}
.ydb{bottom:664.116533pt;}
.y162{bottom:666.511600pt;}
.y63{bottom:666.568000pt;}
.y116{bottom:666.929200pt;}
.ye{bottom:666.996400pt;}
.y9f{bottom:669.828800pt;}
.y153{bottom:674.974533pt;}
.yda{bottom:677.684533pt;}
.y3e{bottom:677.887600pt;}
.y115{bottom:679.343467pt;}
.y62{bottom:682.715600pt;}
.yd{bottom:683.083067pt;}
.y9e{bottom:686.063333pt;}
.y152{bottom:690.972533pt;}
.y3d{bottom:692.554267pt;}
.y114{bottom:694.906133pt;}
.yd9{bottom:695.030000pt;}
.y61{bottom:698.865600pt;}
.yc{bottom:699.169733pt;}
.y161{bottom:706.069600pt;}
.y9d{bottom:706.077600pt;}
.y151{bottom:706.972533pt;}
.y3c{bottom:707.220933pt;}
.y113{bottom:710.468800pt;}
.y60{bottom:715.014533pt;}
.yb{bottom:715.256400pt;}
.yd8{bottom:718.818000pt;}
.y3b{bottom:721.887600pt;}
.y160{bottom:722.069600pt;}
.y150{bottom:722.972533pt;}
.y112{bottom:726.031467pt;}
.y5f{bottom:731.163200pt;}
.ya{bottom:731.348933pt;}
.y10f{bottom:732.698133pt;}
.y9c{bottom:734.984000pt;}
.yd7{bottom:735.048800pt;}
.y3a{bottom:736.554267pt;}
.y14f{bottom:738.972533pt;}
.y111{bottom:739.364800pt;}
.y15f{bottom:741.849067pt;}
.y10e{bottom:746.031467pt;}
.y5e{bottom:747.312133pt;}
.y9{bottom:747.441600pt;}
.y9b{bottom:751.218667pt;}
.y39{bottom:751.220933pt;}
.yd6{bottom:751.284400pt;}
.y110{bottom:752.698133pt;}
.y14e{bottom:754.972533pt;}
.y5d{bottom:763.460800pt;}
.y8{bottom:763.545867pt;}
.y38{bottom:765.887600pt;}
.y9a{bottom:767.453333pt;}
.yd5{bottom:767.510400pt;}
.y10d{bottom:770.477733pt;}
.y15e{bottom:770.523067pt;}
.y14d{bottom:770.972533pt;}
.y5c{bottom:779.608400pt;}
.y7{bottom:779.632533pt;}
.y37{bottom:780.554267pt;}
.y99{bottom:783.687867pt;}
.yd4{bottom:783.741200pt;}
.y10c{bottom:783.811067pt;}
.y15d{bottom:786.521067pt;}
.y14b{bottom:786.972533pt;}
.y14c{bottom:791.152533pt;}
.y6{bottom:795.719200pt;}
.y5b{bottom:795.758400pt;}
.y98{bottom:799.922533pt;}
.yd3{bottom:799.972000pt;}
.y15c{bottom:802.521067pt;}
.y14a{bottom:802.972533pt;}
.y10b{bottom:810.708800pt;}
.y36{bottom:810.996933pt;}
.y5{bottom:811.811733pt;}
.y5a{bottom:811.907333pt;}
.y97{bottom:816.153067pt;}
.yd2{bottom:816.202800pt;}
.y15b{bottom:818.521067pt;}
.y149{bottom:818.972533pt;}
.y35{bottom:823.000400pt;}
.y10a{bottom:827.397333pt;}
.y4{bottom:827.904267pt;}
.y59{bottom:828.054933pt;}
.y96{bottom:832.391733pt;}
.yd1{bottom:832.433733pt;}
.y15a{bottom:834.521067pt;}
.y148{bottom:834.972533pt;}
.y34{bottom:838.776400pt;}
.y109{bottom:844.080000pt;}
.y58{bottom:844.204933pt;}
.y3{bottom:847.776400pt;}
.y95{bottom:848.626400pt;}
.yd0{bottom:848.664533pt;}
.y33{bottom:850.776400pt;}
.y147{bottom:850.972533pt;}
.y159{bottom:854.300667pt;}
.y57{bottom:860.353733pt;}
.y108{bottom:860.774667pt;}
.y94{bottom:864.861067pt;}
.yce{bottom:864.895200pt;}
.y146{bottom:866.972533pt;}
.ycf{bottom:869.075333pt;}
.y56{bottom:876.502533pt;}
.y107{bottom:877.463333pt;}
.y93{bottom:881.095600pt;}
.ycd{bottom:881.126000pt;}
.y32{bottom:882.797333pt;}
.y145{bottom:882.974533pt;}
.y158{bottom:882.978533pt;}
.y55{bottom:892.651333pt;}
.y106{bottom:894.152000pt;}
.y92{bottom:897.330267pt;}
.ycc{bottom:897.356800pt;}
.y144{bottom:898.972533pt;}
.y157{bottom:898.976533pt;}
.y31{bottom:904.130533pt;}
.y48{bottom:906.515333pt;}
.y54{bottom:908.800133pt;}
.y105{bottom:910.840533pt;}
.y91{bottom:913.564800pt;}
.ycb{bottom:913.587600pt;}
.y142{bottom:914.972533pt;}
.y156{bottom:914.974533pt;}
.y143{bottom:919.152533pt;}
.y47{bottom:919.848667pt;}
.y52{bottom:924.948933pt;}
.y104{bottom:927.529333pt;}
.y53{bottom:929.128933pt;}
.y90{bottom:929.799333pt;}
.yca{bottom:929.823333pt;}
.y155{bottom:930.972533pt;}
.y141{bottom:930.974533pt;}
.y46{bottom:934.515333pt;}
.y30{bottom:936.802533pt;}
.y51{bottom:941.097733pt;}
.y103{bottom:944.218000pt;}
.y8f{bottom:946.034000pt;}
.yc9{bottom:946.049333pt;}
.y140{bottom:946.972533pt;}
.y4f{bottom:957.246533pt;}
.y102{bottom:960.906533pt;}
.y50{bottom:961.426533pt;}
.y8e{bottom:962.268667pt;}
.yc8{bottom:962.280133pt;}
.y13f{bottom:962.972533pt;}
.y2f{bottom:969.482533pt;}
.y4e{bottom:973.395333pt;}
.y101{bottom:977.595200pt;}
.y8d{bottom:978.499200pt;}
.yc7{bottom:978.510933pt;}
.y13e{bottom:978.972533pt;}
.y4d{bottom:989.544133pt;}
.y100{bottom:994.283867pt;}
.y8c{bottom:994.737867pt;}
.yc6{bottom:994.741733pt;}
.y13d{bottom:994.972533pt;}
.y2e{bottom:1001.474533pt;}
.y4c{bottom:1009.472533pt;}
.y8b{bottom:1010.972533pt;}
.h1d{height:23.072000pt;}
.h11{height:23.379627pt;}
.h23{height:24.994667pt;}
.h3{height:29.547093pt;}
.he{height:30.293333pt;}
.hc{height:30.762667pt;}
.hd{height:33.754240pt;}
.hb{height:33.768640pt;}
.h1b{height:33.783573pt;}
.h5{height:36.530667pt;}
.h15{height:36.536000pt;}
.h18{height:36.547200pt;}
.hf{height:37.333333pt;}
.h2{height:37.604167pt;}
.h1c{height:37.866667pt;}
.h22{height:40.091627pt;}
.h1a{height:40.092160pt;}
.h17{height:40.099093pt;}
.h12{height:40.099627pt;}
.h13{height:40.104427pt;}
.h14{height:40.104960pt;}
.h21{height:40.105493pt;}
.h20{height:40.106027pt;}
.h19{height:40.115627pt;}
.h16{height:40.118827pt;}
.h4{height:41.653333pt;}
.h7{height:41.698667pt;}
.h6{height:42.298667pt;}
.h10{height:44.373333pt;}
.h9{height:52.672000pt;}
.ha{height:52.672533pt;}
.h1e{height:56.960000pt;}
.h8{height:68.160000pt;}
.h1f{height:83.626667pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x9{left:41.164267pt;}
.x45{left:49.231867pt;}
.x43{left:52.914960pt;}
.x2{left:56.800000pt;}
.xb{left:60.579467pt;}
.x15{left:75.180133pt;}
.x1d{left:80.645867pt;}
.x1e{left:84.802400pt;}
.x1b{left:105.088427pt;}
.x1a{left:131.260960pt;}
.x1c{left:158.617813pt;}
.x16{left:182.138133pt;}
.x17{left:186.222667pt;}
.x18{left:196.878800pt;}
.x1f{left:201.445867pt;}
.x19{left:202.898667pt;}
.x20{left:207.208800pt;}
.x25{left:209.312000pt;}
.x3{left:223.249333pt;}
.x21{left:228.625467pt;}
.x22{left:234.185067pt;}
.x3f{left:235.724933pt;}
.x40{left:239.464667pt;}
.x4{left:242.000400pt;}
.x11{left:250.402667pt;}
.x12{left:294.069867pt;}
.x41{left:306.689867pt;}
.x42{left:319.377467pt;}
.x23{left:322.063067pt;}
.x24{left:325.630000pt;}
.xe{left:326.859600pt;}
.xf{left:335.389333pt;}
.xc{left:371.407867pt;}
.x10{left:376.369733pt;}
.xd{left:379.949600pt;}
.x13{left:398.740133pt;}
.x44{left:410.078800pt;}
.x26{left:413.858267pt;}
.x14{left:417.637733pt;}
.x3c{left:421.424720pt;}
.x3b{left:423.710800pt;}
.x38{left:425.455440pt;}
.x31{left:426.367867pt;}
.x39{left:430.569040pt;}
.x27{left:432.755867pt;}
.x3a{left:433.817680pt;}
.x28{left:440.977200pt;}
.x2e{left:441.879600pt;}
.x2f{left:450.312027pt;}
.x29{left:455.345413pt;}
.x30{left:462.895493pt;}
.x3d{left:479.652933pt;}
.x3e{left:487.364933pt;}
.x32{left:519.184720pt;}
.x8{left:521.612267pt;}
.x2a{left:540.361520pt;}
.xa{left:552.106400pt;}
.x2b{left:560.866053pt;}
.x33{left:612.553040pt;}
.x2c{left:648.980400pt;}
.x35{left:662.094800pt;}
.x34{left:665.463760pt;}
.x7{left:670.551867pt;}
.x5{left:672.506133pt;}
.x6{left:675.139200pt;}
.x2d{left:678.769627pt;}
.x37{left:710.122533pt;}
.x36{left:713.802320pt;}
.x1{left:729.956933pt;}
}




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