
    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_920c8d8d3ec8b6d268513beb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179800;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_c47931eb6c18ca915db4628a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.186000;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_baa182623bbf1df7901eabdf.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939000;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;}
.m1a{transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243265,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.244921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244921,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.245035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245035,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.245421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245421,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245603,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245679,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246082,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246224,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246300,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246306,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.246626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246626,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246682,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246685,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246724,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247012,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.247156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247156,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.247194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247194,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247529,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247997,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248203,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248285,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248288,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248438,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248471,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248632,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248674,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248685,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248771,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248832,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248859,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248903,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248909,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249026,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249088,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249097,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249171,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249259,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249265,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249338,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249382,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249462,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249565,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249671,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249712,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249788,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249826,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249856,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249935,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m85{transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249971,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);}
.m38{transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250006,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250074,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250088,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250106,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250121,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250153,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250159,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250171,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250332,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250435,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250471,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250512,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250526,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250556,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250556,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250556,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250588,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m9d{transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250656,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250824,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251126,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251191,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251238,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251291,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251326,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251444,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251476,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251538,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m9a{transform:matrix(0.251726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251726,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251738,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251759,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.251824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251824,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251938,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251962,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252021,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252062,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252068,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252179,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252332,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252371,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252385,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252465,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.252576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252576,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252956,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.253176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253176,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253329,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253482,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.253691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253691,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254188,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254300,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.254485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254485,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.254641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254641,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254956,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.254959,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254959,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254959,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255032,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.255150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255150,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255376,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.256259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256259,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.840000px;}
.ls7{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.051000px;}
.ls0{letter-spacing:0.078000px;}
.ls19{letter-spacing:0.102000px;}
.ls18{letter-spacing:0.153000px;}
.lsd{letter-spacing:0.204000px;}
.ls1a{letter-spacing:0.255000px;}
.lse{letter-spacing:0.306000px;}
.ls13{letter-spacing:0.357000px;}
.lsb{letter-spacing:0.408000px;}
.ls9{letter-spacing:0.459000px;}
.ls3{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.510000px;}
.ls2{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.561000px;}
.ls1b{letter-spacing:0.570000px;}
.lsc{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.663000px;}
.ls5{letter-spacing:0.714000px;}
.ls10{letter-spacing:0.765000px;}
.ls8{letter-spacing:0.840000px;}
.ls14{letter-spacing:0.867000px;}
.lsf{letter-spacing:0.918000px;}
.ls12{letter-spacing:0.969000px;}
.ls11{letter-spacing:1.020000px;}
.ls17{letter-spacing:1.071000px;}
.ls16{letter-spacing:1.122000px;}
.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;}
}
.wsa{word-spacing:-14.331000px;}
.ws9{word-spacing:-14.178000px;}
.ws1{word-spacing:-13.776000px;}
.ws5{word-spacing:-12.516000px;}
.ws0{word-spacing:-7.739520px;}
.ws2{word-spacing:-6.772080px;}
.ws3{word-spacing:0.000000px;}
.ws6{word-spacing:132.912000px;}
.ws7{word-spacing:266.592000px;}
.ws8{word-spacing:269.232000px;}
.ws4{word-spacing:1096.685400px;}
._4{margin-left:-13.968000px;}
._3{margin-left:-10.332000px;}
._e{margin-left:-5.847000px;}
._1{margin-left:-4.368000px;}
._0{margin-left:-2.886000px;}
._2{margin-left:-1.008000px;}
._9{width:1.488000px;}
._6{width:2.544000px;}
._5{width:3.600000px;}
._a{width:4.656000px;}
._7{width:5.712000px;}
._8{width:9.408000px;}
._c{width:35.952000px;}
._b{width:48.132000px;}
._11{width:279.936000px;}
._38{width:306.624000px;}
._3b{width:512.202000px;}
._3c{width:541.272000px;}
._3a{width:555.009000px;}
._27{width:606.384000px;}
._10{width:612.528000px;}
._2e{width:669.504000px;}
._25{width:722.880000px;}
._35{width:873.984000px;}
._d{width:938.379000px;}
._14{width:975.408000px;}
._1d{width:996.006000px;}
._15{width:1014.480000px;}
._29{width:1062.480000px;}
._28{width:1111.440000px;}
._34{width:1126.512000px;}
._18{width:1144.224000px;}
._31{width:1224.288000px;}
._37{width:1235.046000px;}
._22{width:1277.616000px;}
._26{width:1280.406000px;}
._f{width:1294.847400px;}
._1b{width:1309.632000px;}
._39{width:1311.360000px;}
._12{width:1346.976000px;}
._21{width:1377.216000px;}
._1e{width:1383.360000px;}
._32{width:1392.336000px;}
._24{width:1442.928000px;}
._2f{width:1453.584000px;}
._2c{width:1461.600000px;}
._1a{width:1463.376000px;}
._2a{width:1465.152000px;}
._16{width:1487.424000px;}
._33{width:1498.032000px;}
._36{width:1523.760000px;}
._19{width:1535.376000px;}
._23{width:1608.240000px;}
._17{width:1643.856000px;}
._2b{width:1647.360000px;}
._1c{width:1653.600000px;}
._30{width:1657.152000px;}
._2d{width:1671.456000px;}
._20{width:1686.528000px;}
._13{width:1690.128000px;}
._1f{width:1720.320000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.360000px;}
.fs2{font-size:27.840000px;}
.fs0{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.846500px;}
.y94{bottom:85.031850px;}
.y148{bottom:85.032600px;}
.y5f{bottom:85.037550px;}
.y1c9{bottom:85.039500px;}
.y28{bottom:85.039650px;}
.y111{bottom:88.313100px;}
.ye7{bottom:100.047450px;}
.y5e{bottom:100.083600px;}
.y147{bottom:100.307100px;}
.y93{bottom:100.370100px;}
.y171{bottom:100.372950px;}
.y27{bottom:100.842150px;}
.y1c8{bottom:101.783250px;}
.y110{bottom:104.159550px;}
.y26{bottom:109.714650px;}
.ye6{bottom:115.054200px;}
.y5d{bottom:115.129650px;}
.y146{bottom:115.581600px;}
.y92{bottom:115.708350px;}
.y1c7{bottom:118.527000px;}
.y10f{bottom:123.839550px;}
.y25{bottom:125.517150px;}
.ye5{bottom:130.062600px;}
.y5c{bottom:130.175700px;}
.y19a{bottom:130.176900px;}
.y145{bottom:130.853700px;}
.y91{bottom:131.043750px;}
.y1c6{bottom:135.270750px;}
.y10e{bottom:143.519550px;}
.ye4{bottom:145.070850px;}
.y199{bottom:145.221900px;}
.y5b{bottom:145.228200px;}
.y144{bottom:146.125650px;}
.y170{bottom:146.370750px;}
.y90{bottom:146.373600px;}
.y24{bottom:158.988750px;}
.ye3{bottom:160.084050px;}
.y198{bottom:160.267950px;}
.y5a{bottom:160.273200px;}
.y143{bottom:161.395200px;}
.y16f{bottom:161.709000px;}
.y8f{bottom:161.711850px;}
.y10d{bottom:163.199550px;}
.y23{bottom:173.970000px;}
.ye2{bottom:175.090800px;}
.y197{bottom:175.315050px;}
.y59{bottom:175.318200px;}
.y142{bottom:176.669700px;}
.y16e{bottom:177.047250px;}
.y8e{bottom:177.050100px;}
.y10c{bottom:182.879550px;}
.y22{bottom:188.951250px;}
.ye1{bottom:190.097550px;}
.y196{bottom:190.360050px;}
.y58{bottom:190.363200px;}
.y141{bottom:191.941650px;}
.y8d{bottom:192.385500px;}
.y10b{bottom:202.559550px;}
.y21{bottom:203.932500px;}
.ye0{bottom:205.104300px;}
.y195{bottom:205.406100px;}
.y57{bottom:205.408200px;}
.y140{bottom:207.211200px;}
.y8c{bottom:207.715200px;}
.y16d{bottom:207.720900px;}
.ydf{bottom:220.112550px;}
.y194{bottom:220.452150px;}
.y56{bottom:220.453200px;}
.y10a{bottom:222.239550px;}
.y13f{bottom:222.485700px;}
.y8b{bottom:223.053450px;}
.y16c{bottom:223.056300px;}
.y20{bottom:231.669600px;}
.yde{bottom:235.120950px;}
.y55{bottom:235.498200px;}
.y193{bottom:235.499250px;}
.y13e{bottom:237.757800px;}
.y8a{bottom:238.391700px;}
.y109{bottom:241.919550px;}
.ydd{bottom:250.129200px;}
.y54{bottom:250.544250px;}
.y13d{bottom:253.027350px;}
.y16b{bottom:253.724250px;}
.y89{bottom:253.727100px;}
.y108{bottom:261.599550px;}
.ydc{bottom:265.137600px;}
.y53{bottom:265.590300px;}
.y13c{bottom:268.301850px;}
.y88{bottom:269.059650px;}
.y16a{bottom:269.062500px;}
.y1f{bottom:271.169250px;}
.ydb{bottom:280.145850px;}
.y52{bottom:280.636350px;}
.y192{bottom:280.638450px;}
.y1c5{bottom:280.804800px;}
.y107{bottom:281.279550px;}
.y13b{bottom:283.573800px;}
.y87{bottom:284.397900px;}
.y1e{bottom:290.417250px;}
.y191{bottom:295.683450px;}
.y51{bottom:295.685550px;}
.y1c4{bottom:295.786050px;}
.y13a{bottom:298.845900px;}
.y86{bottom:299.733300px;}
.y106{bottom:300.959550px;}
.y1d{bottom:305.417250px;}
.yda{bottom:307.905900px;}
.y190{bottom:310.728450px;}
.y50{bottom:310.730550px;}
.y1c3{bottom:310.767300px;}
.y139{bottom:314.117850px;}
.y85{bottom:315.068700px;}
.y1c{bottom:320.417250px;}
.y105{bottom:320.639550px;}
.y1c2{bottom:325.748550px;}
.y18f{bottom:325.774500px;}
.y4f{bottom:325.775550px;}
.y138{bottom:329.389800px;}
.y84{bottom:330.404100px;}
.y1b{bottom:335.417250px;}
.y104{bottom:340.319550px;}
.y1c1{bottom:340.729800px;}
.y4e{bottom:340.820550px;}
.y18e{bottom:340.821750px;}
.y137{bottom:344.661900px;}
.y83{bottom:345.722550px;}
.y1a{bottom:350.417250px;}
.yd9{bottom:352.683900px;}
.y1c0{bottom:355.711050px;}
.y4d{bottom:355.866750px;}
.y169{bottom:358.483650px;}
.y136{bottom:359.933850px;}
.y103{bottom:359.999550px;}
.y82{bottom:361.060800px;}
.y19{bottom:365.417250px;}
.yd8{bottom:367.690650px;}
.y1bf{bottom:370.692300px;}
.y4c{bottom:370.912800px;}
.y135{bottom:375.205950px;}
.y81{bottom:376.399050px;}
.y102{bottom:379.679550px;}
.y18{bottom:380.417250px;}
.yd7{bottom:382.698900px;}
.y1be{bottom:385.673550px;}
.y4b{bottom:385.958850px;}
.y18d{bottom:385.959900px;}
.y134{bottom:390.477900px;}
.y80{bottom:391.737300px;}
.y17{bottom:395.417250px;}
.yd6{bottom:397.707300px;}
.y101{bottom:399.359550px;}
.y1bd{bottom:400.654800px;}
.y18c{bottom:401.004900px;}
.y4a{bottom:401.005950px;}
.y168{bottom:403.580400px;}
.y133{bottom:405.750000px;}
.y7f{bottom:407.075550px;}
.yd5{bottom:412.722000px;}
.y16{bottom:414.665250px;}
.yb4{bottom:414.890250px;}
.y1bc{bottom:415.636050px;}
.y49{bottom:416.050950px;}
.y167{bottom:418.918650px;}
.y100{bottom:419.039550px;}
.y132{bottom:421.021950px;}
.y7e{bottom:422.413800px;}
.yd4{bottom:427.728750px;}
.y1bb{bottom:430.617300px;}
.y48{bottom:431.097000px;}
.y18b{bottom:431.100150px;}
.y166{bottom:434.256900px;}
.y131{bottom:436.294050px;}
.y7d{bottom:437.752050px;}
.yff{bottom:438.719550px;}
.yd3{bottom:442.735500px;}
.y1ba{bottom:445.598550px;}
.y15{bottom:445.685250px;}
.y47{bottom:446.143050px;}
.y18a{bottom:446.145150px;}
.y165{bottom:449.595150px;}
.yb3{bottom:451.457250px;}
.y130{bottom:451.558500px;}
.y7c{bottom:453.087450px;}
.yd2{bottom:457.742250px;}
.yfe{bottom:458.399550px;}
.y1b9{bottom:460.579800px;}
.y189{bottom:461.190150px;}
.y14{bottom:464.933250px;}
.y164{bottom:464.933400px;}
.yb2{bottom:466.770000px;}
.y12f{bottom:466.833000px;}
.y7b{bottom:468.422850px;}
.yd1{bottom:472.749000px;}
.y46{bottom:473.940750px;}
.y1b8{bottom:475.561050px;}
.y188{bottom:476.235150px;}
.yfd{bottom:478.079550px;}
.y13{bottom:479.933250px;}
.y163{bottom:480.271650px;}
.yb1{bottom:482.082750px;}
.y12e{bottom:482.107500px;}
.y7a{bottom:483.758250px;}
.yd0{bottom:487.757250px;}
.y1b7{bottom:490.542300px;}
.y187{bottom:491.281200px;}
.y12{bottom:494.933250px;}
.y162{bottom:495.607050px;}
.y12d{bottom:497.382000px;}
.yb0{bottom:497.395500px;}
.yfc{bottom:497.759550px;}
.y79{bottom:499.093650px;}
.ycf{bottom:502.765650px;}
.y1b6{bottom:505.523550px;}
.y186{bottom:506.328300px;}
.y11{bottom:509.933250px;}
.y161{bottom:510.936750px;}
.y12c{bottom:512.654100px;}
.yaf{bottom:512.703150px;}
.y78{bottom:514.429050px;}
.yfb{bottom:517.439550px;}
.yce{bottom:517.773900px;}
.y45{bottom:518.757000px;}
.y1b5{bottom:520.504800px;}
.y185{bottom:521.373300px;}
.y10{bottom:524.933250px;}
.ya9{bottom:525.310200px;}
.y160{bottom:526.275000px;}
.y12b{bottom:527.926050px;}
.yae{bottom:528.010800px;}
.y77{bottom:529.764450px;}
.ycd{bottom:532.782300px;}
.y44{bottom:533.802000px;}
.y1b4{bottom:535.486050px;}
.y184{bottom:536.419350px;}
.yfa{bottom:537.119550px;}
.yf{bottom:539.933250px;}
.y15f{bottom:541.613250px;}
.y12a{bottom:543.198150px;}
.yad{bottom:543.318450px;}
.y76{bottom:545.099850px;}
.ycc{bottom:547.795350px;}
.y43{bottom:548.847000px;}
.y1b3{bottom:550.467300px;}
.y183{bottom:551.466600px;}
.ye{bottom:554.933250px;}
.yf9{bottom:556.799550px;}
.y15e{bottom:556.948650px;}
.y129{bottom:558.465150px;}
.y75{bottom:560.435250px;}
.ycb{bottom:562.802100px;}
.y42{bottom:563.893050px;}
.y1b2{bottom:565.448550px;}
.y182{bottom:566.511600px;}
.yd{bottom:569.933250px;}
.ya8{bottom:570.661950px;}
.y15d{bottom:572.284200px;}
.y128{bottom:573.739650px;}
.y74{bottom:575.770650px;}
.yf8{bottom:576.479550px;}
.yca{bottom:577.808850px;}
.y41{bottom:578.940150px;}
.yac{bottom:579.886050px;}
.y1b1{bottom:580.429800px;}
.y181{bottom:581.557650px;}
.yc{bottom:584.933250px;}
.ya7{bottom:586.255200px;}
.y15c{bottom:587.619600px;}
.y127{bottom:589.014150px;}
.y73{bottom:591.106050px;}
.yc9{bottom:592.815600px;}
.y40{bottom:593.985150px;}
.y1b0{bottom:595.411050px;}
.yf7{bottom:596.159550px;}
.y180{bottom:596.606850px;}
.yb{bottom:599.933250px;}
.ya6{bottom:601.848450px;}
.y15b{bottom:602.955000px;}
.y126{bottom:604.286250px;}
.y72{bottom:606.441450px;}
.yc8{bottom:607.824000px;}
.y3f{bottom:609.031200px;}
.y1af{bottom:610.392300px;}
.y17f{bottom:611.651850px;}
.ya{bottom:614.933250px;}
.yf6{bottom:615.839550px;}
.ya5{bottom:617.441700px;}
.y15a{bottom:618.290400px;}
.y125{bottom:619.558200px;}
.y71{bottom:621.774000px;}
.yc7{bottom:622.832400px;}
.y3e{bottom:624.078300px;}
.y1ae{bottom:625.373550px;}
.y17e{bottom:626.696850px;}
.ya4{bottom:633.032100px;}
.y159{bottom:633.622950px;}
.y124{bottom:634.830300px;}
.yf5{bottom:635.519550px;}
.y70{bottom:637.112250px;}
.yc6{bottom:637.841550px;}
.y3d{bottom:639.123300px;}
.y1ad{bottom:640.354800px;}
.y17d{bottom:641.741850px;}
.ya3{bottom:648.622500px;}
.y158{bottom:648.961200px;}
.y123{bottom:650.094750px;}
.y6f{bottom:652.447650px;}
.y3c{bottom:654.169500px;}
.yf4{bottom:655.199550px;}
.y1ac{bottom:655.336050px;}
.y17c{bottom:656.787900px;}
.ya2{bottom:664.207350px;}
.y157{bottom:664.296600px;}
.y122{bottom:665.369250px;}
.y8{bottom:667.461000px;}
.y6e{bottom:667.783200px;}
.y3b{bottom:669.215550px;}
.yc5{bottom:669.856800px;}
.y1ab{bottom:670.317300px;}
.y17b{bottom:671.833950px;}
.yf3{bottom:674.879550px;}
.y156{bottom:679.632000px;}
.ya1{bottom:679.800600px;}
.y121{bottom:680.643750px;}
.y6d{bottom:683.118600px;}
.y3a{bottom:684.261600px;}
.yc4{bottom:684.865200px;}
.y1aa{bottom:685.298550px;}
.y17a{bottom:686.881050px;}
.y7{bottom:690.039000px;}
.yf2{bottom:694.559550px;}
.y155{bottom:694.967400px;}
.ya0{bottom:695.393850px;}
.y120{bottom:695.918250px;}
.y6c{bottom:698.454000px;}
.y39{bottom:699.307650px;}
.yc3{bottom:699.873450px;}
.y1a9{bottom:700.279800px;}
.y179{bottom:701.926050px;}
.y154{bottom:710.302800px;}
.y9f{bottom:710.984250px;}
.y11f{bottom:711.190350px;}
.y6b{bottom:713.789400px;}
.yf1{bottom:714.239550px;}
.y38{bottom:714.353700px;}
.yc2{bottom:714.881850px;}
.y1a8{bottom:715.261050px;}
.y178{bottom:716.972100px;}
.y6{bottom:722.596650px;}
.y153{bottom:725.638200px;}
.y11e{bottom:726.462300px;}
.y9e{bottom:726.574650px;}
.y6a{bottom:729.121800px;}
.y37{bottom:729.399750px;}
.yc1{bottom:729.890100px;}
.y1a7{bottom:730.242300px;}
.y177{bottom:732.009150px;}
.yf0{bottom:733.919550px;}
.y152{bottom:740.962200px;}
.y11d{bottom:741.734400px;}
.y9d{bottom:742.165050px;}
.y36{bottom:744.445800px;}
.y69{bottom:744.460050px;}
.yc0{bottom:744.898500px;}
.y1a6{bottom:745.223550px;}
.y5{bottom:746.599650px;}
.y176{bottom:747.054150px;}
.yef{bottom:753.599550px;}
.y151{bottom:756.300450px;}
.y11c{bottom:757.006350px;}
.y9c{bottom:757.755450px;}
.y35{bottom:759.491850px;}
.y68{bottom:759.798300px;}
.ybf{bottom:759.906900px;}
.y1a5{bottom:760.204800px;}
.y175{bottom:762.099150px;}
.y150{bottom:771.638700px;}
.y11b{bottom:772.278300px;}
.yee{bottom:773.279550px;}
.y9b{bottom:773.346000px;}
.y34{bottom:774.537900px;}
.ybe{bottom:774.915150px;}
.y1a4{bottom:775.186050px;}
.y174{bottom:777.144150px;}
.y14f{bottom:786.976950px;}
.y11a{bottom:787.548000px;}
.y67{bottom:787.886550px;}
.y9a{bottom:788.936400px;}
.y33{bottom:789.583950px;}
.ybd{bottom:789.923550px;}
.y1a3{bottom:790.167300px;}
.y4{bottom:791.854650px;}
.yed{bottom:792.959550px;}
.y14e{bottom:802.315200px;}
.y119{bottom:802.822500px;}
.y99{bottom:804.526800px;}
.y32{bottom:804.630000px;}
.ybc{bottom:804.931800px;}
.y173{bottom:804.951900px;}
.y1a2{bottom:805.148550px;}
.yec{bottom:812.639550px;}
.y14d{bottom:817.650750px;}
.y118{bottom:818.094450px;}
.y31{bottom:819.676050px;}
.ybb{bottom:819.940200px;}
.y98{bottom:820.117200px;}
.y1a1{bottom:820.129800px;}
.yeb{bottom:832.319550px;}
.y66{bottom:832.983300px;}
.y14c{bottom:832.986150px;}
.y117{bottom:833.364000px;}
.y30{bottom:834.722100px;}
.yba{bottom:834.948600px;}
.y1a0{bottom:835.111050px;}
.y97{bottom:835.713150px;}
.y9{bottom:846.950850px;}
.y65{bottom:848.321550px;}
.y116{bottom:848.638500px;}
.y2f{bottom:849.768150px;}
.yb9{bottom:849.956850px;}
.y19f{bottom:850.092300px;}
.yea{bottom:851.999550px;}
.y64{bottom:863.656950px;}
.y115{bottom:863.910450px;}
.y96{bottom:864.056400px;}
.y172{bottom:864.814200px;}
.y2e{bottom:864.815400px;}
.yb8{bottom:864.970050px;}
.y19e{bottom:865.073550px;}
.ye9{bottom:871.679550px;}
.y63{bottom:878.986650px;}
.y14b{bottom:878.992350px;}
.y114{bottom:879.182400px;}
.y2d{bottom:879.860400px;}
.yb7{bottom:879.976800px;}
.y19d{bottom:880.054800px;}
.y3{bottom:888.218550px;}
.ye8{bottom:891.395550px;}
.y14a{bottom:894.322050px;}
.y62{bottom:894.324900px;}
.y113{bottom:894.454500px;}
.y2c{bottom:894.906450px;}
.yb6{bottom:894.983550px;}
.y19c{bottom:895.036050px;}
.y95{bottom:909.408150px;}
.y149{bottom:909.660300px;}
.y61{bottom:909.663150px;}
.y112{bottom:909.726600px;}
.yab{bottom:909.748200px;}
.y2b{bottom:909.952500px;}
.yb5{bottom:909.990300px;}
.y19b{bottom:910.017300px;}
.y2a{bottom:924.998550px;}
.yaa{bottom:925.060950px;}
.y2{bottom:941.158500px;}
.y29{bottom:969.501000px;}
.y60{bottom:969.657750px;}
.hc{height:27.300000px;}
.h2{height:38.220000px;}
.he{height:40.533000px;}
.hd{height:41.160000px;}
.hf{height:41.580000px;}
.h10{height:42.294000px;}
.h3{height:46.123200px;}
.h4{height:47.040000px;}
.h9{height:47.520000px;}
.hb{height:49.980000px;}
.ha{height:50.490000px;}
.h8{height:52.920000px;}
.h7{height:65.340000px;}
.h6{height:82.320000px;}
.h5{height:83.160000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xb{left:66.935100px;}
.xf{left:68.901450px;}
.x3{left:76.820550px;}
.x9{left:80.787450px;}
.xa{left:82.700550px;}
.xd{left:101.698050px;}
.x7{left:113.326050px;}
.x8{left:187.829550px;}
.x6{left:196.127550px;}
.x5{left:213.242550px;}
.xc{left:218.048100px;}
.x4{left:250.412550px;}
.x10{left:372.259800px;}
.xe{left:482.109450px;}
.x2{left:503.592450px;}
@media print{
.v2{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.746667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.045333pt;}
.ls0{letter-spacing:0.069333pt;}
.ls19{letter-spacing:0.090667pt;}
.ls18{letter-spacing:0.136000pt;}
.lsd{letter-spacing:0.181333pt;}
.ls1a{letter-spacing:0.226667pt;}
.lse{letter-spacing:0.272000pt;}
.ls13{letter-spacing:0.317333pt;}
.lsb{letter-spacing:0.362667pt;}
.ls9{letter-spacing:0.408000pt;}
.ls3{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.453333pt;}
.ls2{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.498667pt;}
.ls1b{letter-spacing:0.506667pt;}
.lsc{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.589333pt;}
.ls5{letter-spacing:0.634667pt;}
.ls10{letter-spacing:0.680000pt;}
.ls8{letter-spacing:0.746667pt;}
.ls14{letter-spacing:0.770667pt;}
.lsf{letter-spacing:0.816000pt;}
.ls12{letter-spacing:0.861333pt;}
.ls11{letter-spacing:0.906667pt;}
.ls17{letter-spacing:0.952000pt;}
.ls16{letter-spacing:0.997333pt;}
.wsa{word-spacing:-12.738667pt;}
.ws9{word-spacing:-12.602667pt;}
.ws1{word-spacing:-12.245333pt;}
.ws5{word-spacing:-11.125333pt;}
.ws0{word-spacing:-6.879573pt;}
.ws2{word-spacing:-6.019627pt;}
.ws3{word-spacing:0.000000pt;}
.ws6{word-spacing:118.144000pt;}
.ws7{word-spacing:236.970667pt;}
.ws8{word-spacing:239.317333pt;}
.ws4{word-spacing:974.831467pt;}
._4{margin-left:-12.416000pt;}
._3{margin-left:-9.184000pt;}
._e{margin-left:-5.197333pt;}
._1{margin-left:-3.882667pt;}
._0{margin-left:-2.565333pt;}
._2{margin-left:-0.896000pt;}
._9{width:1.322667pt;}
._6{width:2.261333pt;}
._5{width:3.200000pt;}
._a{width:4.138667pt;}
._7{width:5.077333pt;}
._8{width:8.362667pt;}
._c{width:31.957333pt;}
._b{width:42.784000pt;}
._11{width:248.832000pt;}
._38{width:272.554667pt;}
._3b{width:455.290667pt;}
._3c{width:481.130667pt;}
._3a{width:493.341333pt;}
._27{width:539.008000pt;}
._10{width:544.469333pt;}
._2e{width:595.114667pt;}
._25{width:642.560000pt;}
._35{width:776.874667pt;}
._d{width:834.114667pt;}
._14{width:867.029333pt;}
._1d{width:885.338667pt;}
._15{width:901.760000pt;}
._29{width:944.426667pt;}
._28{width:987.946667pt;}
._34{width:1001.344000pt;}
._18{width:1017.088000pt;}
._31{width:1088.256000pt;}
._37{width:1097.818667pt;}
._22{width:1135.658667pt;}
._26{width:1138.138667pt;}
._f{width:1150.975467pt;}
._1b{width:1164.117333pt;}
._39{width:1165.653333pt;}
._12{width:1197.312000pt;}
._21{width:1224.192000pt;}
._1e{width:1229.653333pt;}
._32{width:1237.632000pt;}
._24{width:1282.602667pt;}
._2f{width:1292.074667pt;}
._2c{width:1299.200000pt;}
._1a{width:1300.778667pt;}
._2a{width:1302.357333pt;}
._16{width:1322.154667pt;}
._33{width:1331.584000pt;}
._36{width:1354.453333pt;}
._19{width:1364.778667pt;}
._23{width:1429.546667pt;}
._17{width:1461.205333pt;}
._2b{width:1464.320000pt;}
._1c{width:1469.866667pt;}
._30{width:1473.024000pt;}
._2d{width:1485.738667pt;}
._20{width:1499.136000pt;}
._13{width:1502.336000pt;}
._1f{width:1529.173333pt;}
.fs8{font-size:21.653333pt;}
.fs2{font-size:24.746667pt;}
.fs0{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.974667pt;}
.y94{bottom:75.583867pt;}
.y148{bottom:75.584533pt;}
.y5f{bottom:75.588933pt;}
.y1c9{bottom:75.590667pt;}
.y28{bottom:75.590800pt;}
.y111{bottom:78.500533pt;}
.ye7{bottom:88.931067pt;}
.y5e{bottom:88.963200pt;}
.y147{bottom:89.161867pt;}
.y93{bottom:89.217867pt;}
.y171{bottom:89.220400pt;}
.y27{bottom:89.637467pt;}
.y1c8{bottom:90.474000pt;}
.y110{bottom:92.586267pt;}
.y26{bottom:97.524133pt;}
.ye6{bottom:102.270400pt;}
.y5d{bottom:102.337467pt;}
.y146{bottom:102.739200pt;}
.y92{bottom:102.851867pt;}
.y1c7{bottom:105.357333pt;}
.y10f{bottom:110.079600pt;}
.y25{bottom:111.570800pt;}
.ye5{bottom:115.611200pt;}
.y5c{bottom:115.711733pt;}
.y19a{bottom:115.712800pt;}
.y145{bottom:116.314400pt;}
.y91{bottom:116.483333pt;}
.y1c6{bottom:120.240667pt;}
.y10e{bottom:127.572933pt;}
.ye4{bottom:128.951867pt;}
.y199{bottom:129.086133pt;}
.y5b{bottom:129.091733pt;}
.y144{bottom:129.889467pt;}
.y170{bottom:130.107333pt;}
.y90{bottom:130.109867pt;}
.y24{bottom:141.323333pt;}
.ye3{bottom:142.296933pt;}
.y198{bottom:142.460400pt;}
.y5a{bottom:142.465067pt;}
.y143{bottom:143.462400pt;}
.y16f{bottom:143.741333pt;}
.y8f{bottom:143.743867pt;}
.y10d{bottom:145.066267pt;}
.y23{bottom:154.640000pt;}
.ye2{bottom:155.636267pt;}
.y197{bottom:155.835600pt;}
.y59{bottom:155.838400pt;}
.y142{bottom:157.039733pt;}
.y16e{bottom:157.375333pt;}
.y8e{bottom:157.377867pt;}
.y10c{bottom:162.559600pt;}
.y22{bottom:167.956667pt;}
.ye1{bottom:168.975600pt;}
.y196{bottom:169.208933pt;}
.y58{bottom:169.211733pt;}
.y141{bottom:170.614800pt;}
.y8d{bottom:171.009333pt;}
.y10b{bottom:180.052933pt;}
.y21{bottom:181.273333pt;}
.ye0{bottom:182.314933pt;}
.y195{bottom:182.583200pt;}
.y57{bottom:182.585067pt;}
.y140{bottom:184.187733pt;}
.y8c{bottom:184.635733pt;}
.y16d{bottom:184.640800pt;}
.ydf{bottom:195.655600pt;}
.y194{bottom:195.957467pt;}
.y56{bottom:195.958400pt;}
.y10a{bottom:197.546267pt;}
.y13f{bottom:197.765067pt;}
.y8b{bottom:198.269733pt;}
.y16c{bottom:198.272267pt;}
.y20{bottom:205.928533pt;}
.yde{bottom:208.996400pt;}
.y55{bottom:209.331733pt;}
.y193{bottom:209.332667pt;}
.y13e{bottom:211.340267pt;}
.y8a{bottom:211.903733pt;}
.y109{bottom:215.039600pt;}
.ydd{bottom:222.337067pt;}
.y54{bottom:222.706000pt;}
.y13d{bottom:224.913200pt;}
.y16b{bottom:225.532667pt;}
.y89{bottom:225.535200pt;}
.y108{bottom:232.532933pt;}
.ydc{bottom:235.677867pt;}
.y53{bottom:236.080267pt;}
.y13c{bottom:238.490533pt;}
.y88{bottom:239.164133pt;}
.y16a{bottom:239.166667pt;}
.y1f{bottom:241.039333pt;}
.ydb{bottom:249.018533pt;}
.y52{bottom:249.454533pt;}
.y192{bottom:249.456400pt;}
.y1c5{bottom:249.604267pt;}
.y107{bottom:250.026267pt;}
.y13b{bottom:252.065600pt;}
.y87{bottom:252.798133pt;}
.y1e{bottom:258.148667pt;}
.y191{bottom:262.829733pt;}
.y51{bottom:262.831600pt;}
.y1c4{bottom:262.920933pt;}
.y13a{bottom:265.640800pt;}
.y86{bottom:266.429600pt;}
.y106{bottom:267.519600pt;}
.y1d{bottom:271.482000pt;}
.yda{bottom:273.694133pt;}
.y190{bottom:276.203067pt;}
.y50{bottom:276.204933pt;}
.y1c3{bottom:276.237600pt;}
.y139{bottom:279.215867pt;}
.y85{bottom:280.061067pt;}
.y1c{bottom:284.815333pt;}
.y105{bottom:285.012933pt;}
.y1c2{bottom:289.554267pt;}
.y18f{bottom:289.577333pt;}
.y4f{bottom:289.578267pt;}
.y138{bottom:292.790933pt;}
.y84{bottom:293.692533pt;}
.y1b{bottom:298.148667pt;}
.y104{bottom:302.506267pt;}
.y1c1{bottom:302.870933pt;}
.y4e{bottom:302.951600pt;}
.y18e{bottom:302.952667pt;}
.y137{bottom:306.366133pt;}
.y83{bottom:307.308933pt;}
.y1a{bottom:311.482000pt;}
.yd9{bottom:313.496800pt;}
.y1c0{bottom:316.187600pt;}
.y4d{bottom:316.326000pt;}
.y169{bottom:318.652133pt;}
.y136{bottom:319.941200pt;}
.y103{bottom:319.999600pt;}
.y82{bottom:320.942933pt;}
.y19{bottom:324.815333pt;}
.yd8{bottom:326.836133pt;}
.y1bf{bottom:329.504267pt;}
.y4c{bottom:329.700267pt;}
.y135{bottom:333.516400pt;}
.y81{bottom:334.576933pt;}
.y102{bottom:337.492933pt;}
.y18{bottom:338.148667pt;}
.yd7{bottom:340.176800pt;}
.y1be{bottom:342.820933pt;}
.y4b{bottom:343.074533pt;}
.y18d{bottom:343.075467pt;}
.y134{bottom:347.091467pt;}
.y80{bottom:348.210933pt;}
.y17{bottom:351.482000pt;}
.yd6{bottom:353.517600pt;}
.y101{bottom:354.986267pt;}
.y1bd{bottom:356.137600pt;}
.y18c{bottom:356.448800pt;}
.y4a{bottom:356.449733pt;}
.y168{bottom:358.738133pt;}
.y133{bottom:360.666667pt;}
.y7f{bottom:361.844933pt;}
.yd5{bottom:366.864000pt;}
.y16{bottom:368.591333pt;}
.yb4{bottom:368.791333pt;}
.y1bc{bottom:369.454267pt;}
.y49{bottom:369.823067pt;}
.y167{bottom:372.372133pt;}
.y100{bottom:372.479600pt;}
.y132{bottom:374.241733pt;}
.y7e{bottom:375.478933pt;}
.yd4{bottom:380.203333pt;}
.y1bb{bottom:382.770933pt;}
.y48{bottom:383.197333pt;}
.y18b{bottom:383.200133pt;}
.y166{bottom:386.006133pt;}
.y131{bottom:387.816933pt;}
.y7d{bottom:389.112933pt;}
.yff{bottom:389.972933pt;}
.yd3{bottom:393.542667pt;}
.y1ba{bottom:396.087600pt;}
.y15{bottom:396.164667pt;}
.y47{bottom:396.571600pt;}
.y18a{bottom:396.573467pt;}
.y165{bottom:399.640133pt;}
.yb3{bottom:401.295333pt;}
.y130{bottom:401.385333pt;}
.y7c{bottom:402.744400pt;}
.yd2{bottom:406.882000pt;}
.yfe{bottom:407.466267pt;}
.y1b9{bottom:409.404267pt;}
.y189{bottom:409.946800pt;}
.y14{bottom:413.274000pt;}
.y164{bottom:413.274133pt;}
.yb2{bottom:414.906667pt;}
.y12f{bottom:414.962667pt;}
.y7b{bottom:416.375867pt;}
.yd1{bottom:420.221333pt;}
.y46{bottom:421.280667pt;}
.y1b8{bottom:422.720933pt;}
.y188{bottom:423.320133pt;}
.yfd{bottom:424.959600pt;}
.y13{bottom:426.607333pt;}
.y163{bottom:426.908133pt;}
.yb1{bottom:428.518000pt;}
.y12e{bottom:428.540000pt;}
.y7a{bottom:430.007333pt;}
.yd0{bottom:433.562000pt;}
.y1b7{bottom:436.037600pt;}
.y187{bottom:436.694400pt;}
.y12{bottom:439.940667pt;}
.y162{bottom:440.539600pt;}
.y12d{bottom:442.117333pt;}
.yb0{bottom:442.129333pt;}
.yfc{bottom:442.452933pt;}
.y79{bottom:443.638800pt;}
.ycf{bottom:446.902800pt;}
.y1b6{bottom:449.354267pt;}
.y186{bottom:450.069600pt;}
.y11{bottom:453.274000pt;}
.y161{bottom:454.166000pt;}
.y12c{bottom:455.692533pt;}
.yaf{bottom:455.736133pt;}
.y78{bottom:457.270267pt;}
.yfb{bottom:459.946267pt;}
.yce{bottom:460.243467pt;}
.y45{bottom:461.117333pt;}
.y1b5{bottom:462.670933pt;}
.y185{bottom:463.442933pt;}
.y10{bottom:466.607333pt;}
.ya9{bottom:466.942400pt;}
.y160{bottom:467.800000pt;}
.y12b{bottom:469.267600pt;}
.yae{bottom:469.342933pt;}
.y77{bottom:470.901733pt;}
.ycd{bottom:473.584267pt;}
.y44{bottom:474.490667pt;}
.y1b4{bottom:475.987600pt;}
.y184{bottom:476.817200pt;}
.yfa{bottom:477.439600pt;}
.yf{bottom:479.940667pt;}
.y15f{bottom:481.434000pt;}
.y12a{bottom:482.842800pt;}
.yad{bottom:482.949733pt;}
.y76{bottom:484.533200pt;}
.ycc{bottom:486.929200pt;}
.y43{bottom:487.864000pt;}
.y1b3{bottom:489.304267pt;}
.y183{bottom:490.192533pt;}
.ye{bottom:493.274000pt;}
.yf9{bottom:494.932933pt;}
.y15e{bottom:495.065467pt;}
.y129{bottom:496.413467pt;}
.y75{bottom:498.164667pt;}
.ycb{bottom:500.268533pt;}
.y42{bottom:501.238267pt;}
.y1b2{bottom:502.620933pt;}
.y182{bottom:503.565867pt;}
.yd{bottom:506.607333pt;}
.ya8{bottom:507.255067pt;}
.y15d{bottom:508.697067pt;}
.y128{bottom:509.990800pt;}
.y74{bottom:511.796133pt;}
.yf8{bottom:512.426267pt;}
.yca{bottom:513.607867pt;}
.y41{bottom:514.613467pt;}
.yac{bottom:515.454267pt;}
.y1b1{bottom:515.937600pt;}
.y181{bottom:516.940133pt;}
.yc{bottom:519.940667pt;}
.ya7{bottom:521.115733pt;}
.y15c{bottom:522.328533pt;}
.y127{bottom:523.568133pt;}
.y73{bottom:525.427600pt;}
.yc9{bottom:526.947200pt;}
.y40{bottom:527.986800pt;}
.y1b0{bottom:529.254267pt;}
.yf7{bottom:529.919600pt;}
.y180{bottom:530.317200pt;}
.yb{bottom:533.274000pt;}
.ya6{bottom:534.976400pt;}
.y15b{bottom:535.960000pt;}
.y126{bottom:537.143333pt;}
.y72{bottom:539.059067pt;}
.yc8{bottom:540.288000pt;}
.y3f{bottom:541.361067pt;}
.y1af{bottom:542.570933pt;}
.y17f{bottom:543.690533pt;}
.ya{bottom:546.607333pt;}
.yf6{bottom:547.412933pt;}
.ya5{bottom:548.837067pt;}
.y15a{bottom:549.591467pt;}
.y125{bottom:550.718400pt;}
.y71{bottom:552.688000pt;}
.yc7{bottom:553.628800pt;}
.y3e{bottom:554.736267pt;}
.y1ae{bottom:555.887600pt;}
.y17e{bottom:557.063867pt;}
.ya4{bottom:562.695200pt;}
.y159{bottom:563.220400pt;}
.y124{bottom:564.293600pt;}
.yf5{bottom:564.906267pt;}
.y70{bottom:566.322000pt;}
.yc6{bottom:566.970267pt;}
.y3d{bottom:568.109600pt;}
.y1ad{bottom:569.204267pt;}
.y17d{bottom:570.437200pt;}
.ya3{bottom:576.553333pt;}
.y158{bottom:576.854400pt;}
.y123{bottom:577.862000pt;}
.y6f{bottom:579.953467pt;}
.y3c{bottom:581.484000pt;}
.yf4{bottom:582.399600pt;}
.y1ac{bottom:582.520933pt;}
.y17c{bottom:583.811467pt;}
.ya2{bottom:590.406533pt;}
.y157{bottom:590.485867pt;}
.y122{bottom:591.439333pt;}
.y8{bottom:593.298667pt;}
.y6e{bottom:593.585067pt;}
.y3b{bottom:594.858267pt;}
.yc5{bottom:595.428267pt;}
.y1ab{bottom:595.837600pt;}
.y17b{bottom:597.185733pt;}
.yf3{bottom:599.892933pt;}
.y156{bottom:604.117333pt;}
.ya1{bottom:604.267200pt;}
.y121{bottom:605.016667pt;}
.y6d{bottom:607.216533pt;}
.y3a{bottom:608.232533pt;}
.yc4{bottom:608.769067pt;}
.y1aa{bottom:609.154267pt;}
.y17a{bottom:610.560933pt;}
.y7{bottom:613.368000pt;}
.yf2{bottom:617.386267pt;}
.y155{bottom:617.748800pt;}
.ya0{bottom:618.127867pt;}
.y120{bottom:618.594000pt;}
.y6c{bottom:620.848000pt;}
.y39{bottom:621.606800pt;}
.yc3{bottom:622.109733pt;}
.y1a9{bottom:622.470933pt;}
.y179{bottom:623.934267pt;}
.y154{bottom:631.380267pt;}
.y9f{bottom:631.986000pt;}
.y11f{bottom:632.169200pt;}
.y6b{bottom:634.479467pt;}
.yf1{bottom:634.879600pt;}
.y38{bottom:634.981067pt;}
.yc2{bottom:635.450533pt;}
.y1a8{bottom:635.787600pt;}
.y178{bottom:637.308533pt;}
.y6{bottom:642.308133pt;}
.y153{bottom:645.011733pt;}
.y11e{bottom:645.744267pt;}
.y9e{bottom:645.844133pt;}
.y6a{bottom:648.108267pt;}
.y37{bottom:648.355333pt;}
.yc1{bottom:648.791200pt;}
.y1a7{bottom:649.104267pt;}
.y177{bottom:650.674800pt;}
.yf0{bottom:652.372933pt;}
.y152{bottom:658.633067pt;}
.y11d{bottom:659.319467pt;}
.y9d{bottom:659.702267pt;}
.y36{bottom:661.729600pt;}
.y69{bottom:661.742267pt;}
.yc0{bottom:662.132000pt;}
.y1a6{bottom:662.420933pt;}
.y5{bottom:663.644133pt;}
.y176{bottom:664.048133pt;}
.yef{bottom:669.866267pt;}
.y151{bottom:672.267067pt;}
.y11c{bottom:672.894533pt;}
.y9c{bottom:673.560400pt;}
.y35{bottom:675.103867pt;}
.y68{bottom:675.376267pt;}
.ybf{bottom:675.472800pt;}
.y1a5{bottom:675.737600pt;}
.y175{bottom:677.421467pt;}
.y150{bottom:685.901067pt;}
.y11b{bottom:686.469600pt;}
.yee{bottom:687.359600pt;}
.y9b{bottom:687.418667pt;}
.y34{bottom:688.478133pt;}
.ybe{bottom:688.813467pt;}
.y1a4{bottom:689.054267pt;}
.y174{bottom:690.794800pt;}
.y14f{bottom:699.535067pt;}
.y11a{bottom:700.042667pt;}
.y67{bottom:700.343600pt;}
.y9a{bottom:701.276800pt;}
.y33{bottom:701.852400pt;}
.ybd{bottom:702.154267pt;}
.y1a3{bottom:702.370933pt;}
.y4{bottom:703.870800pt;}
.yed{bottom:704.852933pt;}
.y14e{bottom:713.169067pt;}
.y119{bottom:713.620000pt;}
.y99{bottom:715.134933pt;}
.y32{bottom:715.226667pt;}
.ybc{bottom:715.494933pt;}
.y173{bottom:715.512800pt;}
.y1a2{bottom:715.687600pt;}
.yec{bottom:722.346267pt;}
.y14d{bottom:726.800667pt;}
.y118{bottom:727.195067pt;}
.y31{bottom:728.600933pt;}
.ybb{bottom:728.835733pt;}
.y98{bottom:728.993067pt;}
.y1a1{bottom:729.004267pt;}
.yeb{bottom:739.839600pt;}
.y66{bottom:740.429600pt;}
.y14c{bottom:740.432133pt;}
.y117{bottom:740.768000pt;}
.y30{bottom:741.975200pt;}
.yba{bottom:742.176533pt;}
.y1a0{bottom:742.320933pt;}
.y97{bottom:742.856133pt;}
.y9{bottom:752.845200pt;}
.y65{bottom:754.063600pt;}
.y116{bottom:754.345333pt;}
.y2f{bottom:755.349467pt;}
.yb9{bottom:755.517200pt;}
.y19f{bottom:755.637600pt;}
.yea{bottom:757.332933pt;}
.y64{bottom:767.695067pt;}
.y115{bottom:767.920400pt;}
.y96{bottom:768.050133pt;}
.y172{bottom:768.723733pt;}
.y2e{bottom:768.724800pt;}
.yb8{bottom:768.862267pt;}
.y19e{bottom:768.954267pt;}
.ye9{bottom:774.826267pt;}
.y63{bottom:781.321467pt;}
.y14b{bottom:781.326533pt;}
.y114{bottom:781.495467pt;}
.y2d{bottom:782.098133pt;}
.yb7{bottom:782.201600pt;}
.y19d{bottom:782.270933pt;}
.y3{bottom:789.527600pt;}
.ye8{bottom:792.351600pt;}
.y14a{bottom:794.952933pt;}
.y62{bottom:794.955467pt;}
.y113{bottom:795.070667pt;}
.y2c{bottom:795.472400pt;}
.yb6{bottom:795.540933pt;}
.y19c{bottom:795.587600pt;}
.y95{bottom:808.362800pt;}
.y149{bottom:808.586933pt;}
.y61{bottom:808.589467pt;}
.y112{bottom:808.645867pt;}
.yab{bottom:808.665067pt;}
.y2b{bottom:808.846667pt;}
.yb5{bottom:808.880267pt;}
.y19b{bottom:808.904267pt;}
.y2a{bottom:822.220933pt;}
.yaa{bottom:822.276400pt;}
.y2{bottom:836.585333pt;}
.y29{bottom:861.778667pt;}
.y60{bottom:861.918000pt;}
.hc{height:24.266667pt;}
.h2{height:33.973333pt;}
.he{height:36.029333pt;}
.hd{height:36.586667pt;}
.hf{height:36.960000pt;}
.h10{height:37.594667pt;}
.h3{height:40.998400pt;}
.h4{height:41.813333pt;}
.h9{height:42.240000pt;}
.hb{height:44.426667pt;}
.ha{height:44.880000pt;}
.h8{height:47.040000pt;}
.h7{height:58.080000pt;}
.h6{height:73.173333pt;}
.h5{height:73.920000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xb{left:59.497867pt;}
.xf{left:61.245733pt;}
.x3{left:68.284933pt;}
.x9{left:71.811067pt;}
.xa{left:73.511600pt;}
.xd{left:90.398267pt;}
.x7{left:100.734267pt;}
.x8{left:166.959600pt;}
.x6{left:174.335600pt;}
.x5{left:189.548933pt;}
.xc{left:193.820533pt;}
.x4{left:222.588933pt;}
.x10{left:330.897600pt;}
.xe{left:428.541733pt;}
.x2{left:447.637733pt;}
}




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