
    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_c444d7634c37544cc7af2858.woff')format("woff");}.ff1{font-family:ff1;line-height:1.052734;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_28ad888e5261774321d5836e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_81a1ab085ffac873444c3fd5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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;}
.mc0{transform:matrix(0.030975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030975,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.231675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231675,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,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);}
.mb{transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262900,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.265875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265875,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266725,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.267075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267075,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.269025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269025,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269775,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.271575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271575,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274525,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276200,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.276275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276275,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.276575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276575,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277275,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.279575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279575,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279925,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280450,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.280925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280925,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.281150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281150,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281175,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281425,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.281475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281475,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.281675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281675,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283625,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283950,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.284150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284150,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.284200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284200,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.284925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284925,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286850,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.286975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286975,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.287700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287700,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.289950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289950,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.290125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290125,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290525,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291075,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.291575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291575,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.292125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292125,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292450,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292850,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293650,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.293975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293975,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294400,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.294525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294525,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.294700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294700,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294975,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295450,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.296100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296100,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.296125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296125,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296175,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.296625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296625,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296700,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296850,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.296900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296900,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.297325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297325,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.297775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297775,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.298525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298525,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299050,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299100,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299200,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.300350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300350,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.300525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300525,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.301150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301150,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.301925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301925,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302300,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.302325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302325,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.302700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302700,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.302925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302925,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303100,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.303575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303575,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.304475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304475,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.304550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304550,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304800,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.304850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304850,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305050,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.305900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305900,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306275,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306300,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.306425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306425,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.306800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306800,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.307075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307075,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307100,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.307125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307125,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307400,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.309375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309375,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.309925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309925,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.310100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310100,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.310300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310300,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.311575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311575,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.311875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311875,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.314125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314125,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.314425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314425,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.314825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314825,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315275,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316725,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.317450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317450,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.318850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318850,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.321825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321825,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.322775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322775,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.323400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323400,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.325625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325625,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.326775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326775,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.335650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335650,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.365550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365550,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.374100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374100,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.399325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399325,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.399800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399800,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.407875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407875,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.413275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413275,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.415375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415375,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.549650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.549650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.549650,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.581500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581500,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.581875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.581875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.581875,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.583775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.583775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.583775,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.584225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.584225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.584225,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.598700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598700,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.634050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634050,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.636850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636850,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.670325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670325,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.674525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.674525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.674525,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.705600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705600,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.727550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727550,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.743100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.743100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.743100,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.747875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747875,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.748775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.748775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.748775,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.757850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757850,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.762600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762600,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.767475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767475,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.788550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788550,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.796300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.796300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.796300,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.797350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.797350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.797350,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.810025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810025,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.811775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.811775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.811775,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.812700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812700,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.813450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.813450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.813450,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.828550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.828550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.828550,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.835525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835525,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.853700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.853700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.853700,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.869075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.869075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.869075,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.895350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895350,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.896800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.896800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.896800,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.905275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905275,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.911150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.911150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.911150,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.919375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.919375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.919375,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.920150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920150,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.925850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925850,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.927850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927850,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.928525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.928525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.928525,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.929575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.929575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.929575,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.932725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932725,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.941150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.941150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.941150,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.958825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.958825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.958825,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.971400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.971400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.971400,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.972075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972075,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.991650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.991650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.991650,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(1.000525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000525,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(1.008925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.008925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.008925,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(1.014325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.014325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.014325,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(1.016375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.016375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.016375,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(1.022525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022525,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(1.022775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022775,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(1.024600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.024600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.024600,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(1.025600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025600,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(1.034975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.034975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.034975,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(1.052600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052600,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(1.069900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.069900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.069900,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(1.091150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.091150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.091150,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(1.100700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100700,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(1.112850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.112850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.112850,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(1.119850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.119850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.119850,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(1.123175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.123175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.123175,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(1.130750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130750,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(1.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.136575,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(1.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.174100,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(1.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.180000,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(1.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.184250,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(1.257850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.257850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.257850,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(1.303975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.303975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.303975,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(1.321625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.321625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.321625,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(1.354375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.354375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.354375,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(1.475825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.475825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.475825,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m7e{transform:matrix(1.518600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.518600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.518600,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(1.582875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.582875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.582875,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(1.658875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.658875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.658875,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(2.564725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.564725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.564725,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(2.999450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.999450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.999450,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:0.000000px;}
._1{width:50.916000px;}
._0{width:2846.904000px;}
.fc2{color:transparent;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs23{font-size:6.000000px;}
.fs27{font-size:8.520000px;}
.fs26{font-size:9.660000px;}
.fs28{font-size:12.000000px;}
.fs25{font-size:24.000000px;}
.fs1a{font-size:31.620000px;}
.fs19{font-size:33.120000px;}
.fs15{font-size:33.420000px;}
.fs13{font-size:33.960000px;}
.fs6{font-size:35.220000px;}
.fs1e{font-size:35.280000px;}
.fs1b{font-size:35.460000px;}
.fs5{font-size:35.760000px;}
.fs14{font-size:36.300000px;}
.fs1d{font-size:37.800000px;}
.fs1c{font-size:38.700000px;}
.fsd{font-size:41.040000px;}
.fse{font-size:42.360000px;}
.fs10{font-size:42.780000px;}
.fsf{font-size:43.380000px;}
.fs12{font-size:44.580000px;}
.fs11{font-size:44.820000px;}
.fs29{font-size:45.120000px;}
.fs16{font-size:45.720000px;}
.fs18{font-size:47.040000px;}
.fs21{font-size:47.160000px;}
.fs17{font-size:47.460000px;}
.fs4{font-size:48.000000px;}
.fsa{font-size:48.060000px;}
.fsc{font-size:49.200000px;}
.fsb{font-size:52.140000px;}
.fs1f{font-size:52.740000px;}
.fs20{font-size:53.880000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:55.206431px;}
.fs22{font-size:56.820000px;}
.fs2a{font-size:60.000000px;}
.fs9{font-size:67.980000px;}
.fs7{font-size:71.460000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:72.660000px;}
.fs1{font-size:73.608574px;}
.fs24{font-size:196.860000px;}
.y0{bottom:0.000000px;}
.y11{bottom:50.640000px;}
.y10{bottom:62.640000px;}
.yf{bottom:74.640000px;}
.y33{bottom:107.520000px;}
.ye6{bottom:138.390000px;}
.y5c{bottom:142.440000px;}
.y111{bottom:142.530000px;}
.y137{bottom:142.620000px;}
.y16b{bottom:142.710000px;}
.y32{bottom:142.980000px;}
.y16a{bottom:156.300000px;}
.ye5{bottom:158.190000px;}
.y99{bottom:159.450000px;}
.y5b{bottom:161.790000px;}
.yc9{bottom:161.880000px;}
.y110{bottom:162.960000px;}
.y169{bottom:169.710000px;}
.y98{bottom:173.400000px;}
.y5a{bottom:180.960000px;}
.yc8{bottom:181.140000px;}
.y136{bottom:182.130000px;}
.y10f{bottom:182.400000px;}
.y168{bottom:183.120000px;}
.y97{bottom:186.720000px;}
.ye4{bottom:188.610000px;}
.ye{bottom:191.340000px;}
.y167{bottom:196.800000px;}
.y96{bottom:200.130000px;}
.yc7{bottom:200.760000px;}
.y1a6{bottom:202.020000px;}
.y135{bottom:202.110000px;}
.y10e{bottom:202.560000px;}
.yd{bottom:204.840000px;}
.y31{bottom:207.330000px;}
.y59{bottom:209.220000px;}
.y166{bottom:209.940000px;}
.y1a5{bottom:215.520000px;}
.yc6{bottom:220.200000px;}
.y95{bottom:220.830000px;}
.y134{bottom:222.000000px;}
.y10d{bottom:222.360000px;}
.y165{bottom:223.440000px;}
.y30{bottom:226.860000px;}
.y1a4{bottom:228.840000px;}
.y94{bottom:232.260000px;}
.y164{bottom:236.760000px;}
.yc5{bottom:239.640000px;}
.y133{bottom:241.440000px;}
.y10c{bottom:241.980000px;}
.y1a3{bottom:242.340000px;}
.y93{bottom:245.760000px;}
.y2f{bottom:246.390000px;}
.y163{bottom:250.440000px;}
.y1a2{bottom:255.750000px;}
.y58{bottom:258.090000px;}
.yc4{bottom:258.990000px;}
.y92{bottom:259.260000px;}
.y10b{bottom:261.780000px;}
.y162{bottom:263.940000px;}
.y2e{bottom:265.650000px;}
.y1a1{bottom:269.070000px;}
.y91{bottom:274.740000px;}
.y161{bottom:277.170000px;}
.y57{bottom:277.800000px;}
.yc3{bottom:278.250000px;}
.y132{bottom:281.580000px;}
.y10a{bottom:281.940000px;}
.y1a0{bottom:282.660000px;}
.y90{bottom:288.240000px;}
.y160{bottom:290.760000px;}
.y2d{bottom:293.820000px;}
.y19f{bottom:296.340000px;}
.y56{bottom:297.150000px;}
.yc2{bottom:297.870000px;}
.y131{bottom:301.110000px;}
.y109{bottom:301.560000px;}
.y8f{bottom:301.740000px;}
.y15f{bottom:304.080000px;}
.y19e{bottom:309.480000px;}
.y15d{bottom:314.880000px;}
.y8e{bottom:315.150000px;}
.y55{bottom:316.680000px;}
.yc1{bottom:317.130000px;}
.y15c{bottom:317.400000px;}
.y15e{bottom:317.580000px;}
.y130{bottom:321.360000px;}
.y108{bottom:321.720000px;}
.y19d{bottom:322.530000px;}
.y8d{bottom:328.650000px;}
.y15b{bottom:330.900000px;}
.y54{bottom:335.940000px;}
.y19c{bottom:336.480000px;}
.yc0{bottom:336.930000px;}
.y12f{bottom:340.800000px;}
.y107{bottom:341.430000px;}
.y8c{bottom:342.150000px;}
.y2c{bottom:343.770000px;}
.y15a{bottom:344.310000px;}
.y19b{bottom:349.620000px;}
.y53{bottom:355.200000px;}
.y8b{bottom:355.650000px;}
.ybf{bottom:356.100000px;}
.y159{bottom:357.810000px;}
.y2b{bottom:360.600000px;}
.y12e{bottom:361.140000px;}
.y106{bottom:361.500000px;}
.y19a{bottom:363.300000px;}
.y8a{bottom:368.970000px;}
.y158{bottom:371.310000px;}
.ye3{bottom:374.370000px;}
.y52{bottom:374.910000px;}
.ybe{bottom:375.450000px;}
.y199{bottom:376.620000px;}
.y12d{bottom:380.940000px;}
.y105{bottom:381.210000px;}
.y89{bottom:382.650000px;}
.y157{bottom:384.810000px;}
.y198{bottom:390.480000px;}
.y2a{bottom:391.110000px;}
.y51{bottom:394.260000px;}
.ybd{bottom:395.070000px;}
.y88{bottom:395.970000px;}
.y156{bottom:398.220000px;}
.y12c{bottom:400.740000px;}
.y104{bottom:401.460000px;}
.y197{bottom:403.980000px;}
.y29{bottom:407.670000px;}
.y87{bottom:409.470000px;}
.y155{bottom:411.810000px;}
.ybc{bottom:412.710000px;}
.y50{bottom:413.700000px;}
.ydd{bottom:415.050000px;}
.y196{bottom:417.480000px;}
.y12b{bottom:421.080000px;}
.y103{bottom:421.170000px;}
.y86{bottom:423.060000px;}
.y28{bottom:424.320000px;}
.y154{bottom:425.400000px;}
.y195{bottom:430.620000px;}
.y4f{bottom:433.320000px;}
.ybb{bottom:434.310000px;}
.y85{bottom:436.650000px;}
.y153{bottom:438.900000px;}
.y27{bottom:440.880000px;}
.y102{bottom:441.420000px;}
.y194{bottom:444.210000px;}
.y84{bottom:450.330000px;}
.y152{bottom:452.400000px;}
.y4e{bottom:452.760000px;}
.yba{bottom:453.750000px;}
.y26{bottom:457.260000px;}
.y193{bottom:457.800000px;}
.y12a{bottom:460.860000px;}
.y101{bottom:460.950000px;}
.y83{bottom:463.650000px;}
.y151{bottom:465.900000px;}
.y192{bottom:471.480000px;}
.y4d{bottom:472.380000px;}
.yb9{bottom:473.190000px;}
.y25{bottom:473.730000px;}
.ye2{bottom:475.350000px;}
.y82{bottom:477.150000px;}
.y150{bottom:479.310000px;}
.y129{bottom:480.840000px;}
.y100{bottom:481.110000px;}
.y191{bottom:484.890000px;}
.y24{bottom:490.200000px;}
.y81{bottom:490.470000px;}
.y4c{bottom:491.820000px;}
.yb8{bottom:492.450000px;}
.y14f{bottom:492.630000px;}
.ye1{bottom:496.680000px;}
.y190{bottom:498.300000px;}
.y128{bottom:500.100000px;}
.yff{bottom:500.820000px;}
.y80{bottom:503.880000px;}
.y14e{bottom:506.130000px;}
.y23{bottom:506.580000px;}
.y4b{bottom:511.260000px;}
.y18f{bottom:511.440000px;}
.yb7{bottom:511.890000px;}
.y7f{bottom:516.120000px;}
.y14d{bottom:519.540000px;}
.y127{bottom:520.350000px;}
.yfe{bottom:520.530000px;}
.y22{bottom:523.230000px;}
.y18e{bottom:524.940000px;}
.y4a{bottom:530.340000px;}
.y7e{bottom:530.970000px;}
.y14c{bottom:532.590000px;}
.ye0{bottom:535.200000px;}
.ydf{bottom:536.460000px;}
.y18d{bottom:538.350000px;}
.y21{bottom:539.610000px;}
.y126{bottom:540.060000px;}
.yfd{bottom:540.330000px;}
.yde{bottom:543.660000px;}
.y7d{bottom:544.200000px;}
.y14b{bottom:546.450000px;}
.y49{bottom:549.960000px;}
.y18c{bottom:551.850000px;}
.y20{bottom:555.990000px;}
.y7c{bottom:557.700000px;}
.y14a{bottom:559.680000px;}
.y125{bottom:559.860000px;}
.yfc{bottom:560.220000px;}
.yb6{bottom:562.650000px;}
.y18b{bottom:565.440000px;}
.ydc{bottom:568.770000px;}
.y48{bottom:569.400000px;}
.y7b{bottom:571.290000px;}
.y1f{bottom:572.370000px;}
.y149{bottom:573.360000px;}
.yb5{bottom:577.770000px;}
.y18a{bottom:578.940000px;}
.y124{bottom:579.660000px;}
.yfb{bottom:580.380000px;}
.y7a{bottom:584.700000px;}
.y148{bottom:586.320000px;}
.y1e{bottom:588.840000px;}
.y47{bottom:588.930000px;}
.y189{bottom:592.440000px;}
.y79{bottom:598.200000px;}
.yb4{bottom:598.830000px;}
.y123{bottom:599.910000px;}
.y147{bottom:600.000000px;}
.yfa{bottom:600.360000px;}
.y1d{bottom:605.310000px;}
.y188{bottom:605.670000px;}
.ydb{bottom:607.560000px;}
.y46{bottom:608.460000px;}
.y78{bottom:611.520000px;}
.yb3{bottom:612.240000px;}
.y146{bottom:613.770000px;}
.y187{bottom:619.170000px;}
.y122{bottom:619.530000px;}
.yf9{bottom:620.160000px;}
.y1c{bottom:622.140000px;}
.y77{bottom:625.200000px;}
.yb2{bottom:625.470000px;}
.y145{bottom:627.180000px;}
.y186{bottom:632.760000px;}
.y45{bottom:636.180000px;}
.y76{bottom:638.520000px;}
.yb1{bottom:639.240000px;}
.y121{bottom:639.510000px;}
.yf8{bottom:639.960000px;}
.y144{bottom:640.860000px;}
.y185{bottom:646.170000px;}
.y75{bottom:652.200000px;}
.yb0{bottom:652.920000px;}
.y143{bottom:654.000000px;}
.y120{bottom:659.400000px;}
.y184{bottom:659.670000px;}
.yf7{bottom:659.940000px;}
.y74{bottom:665.700000px;}
.yaf{bottom:666.150000px;}
.y142{bottom:667.680000px;}
.yda{bottom:671.820000px;}
.y183{bottom:672.990000px;}
.y73{bottom:679.110000px;}
.y11f{bottom:679.200000px;}
.yae{bottom:679.740000px;}
.yf6{bottom:679.920000px;}
.y141{bottom:681.270000px;}
.y44{bottom:685.230000px;}
.y182{bottom:686.490000px;}
.yd9{bottom:691.980000px;}
.y72{bottom:692.610000px;}
.yad{bottom:692.970000px;}
.y11e{bottom:699.000000px;}
.yf5{bottom:699.540000px;}
.y181{bottom:699.990000px;}
.y140{bottom:703.590000px;}
.y1b{bottom:704.040000px;}
.y43{bottom:704.760000px;}
.y71{bottom:705.840000px;}
.yac{bottom:706.470000px;}
.yd8{bottom:711.510000px;}
.y180{bottom:713.760000px;}
.yab{bottom:718.710000px;}
.y11d{bottom:719.340000px;}
.y70{bottom:719.430000px;}
.yf4{bottom:719.520000px;}
.y1a{bottom:722.490000px;}
.y42{bottom:724.380000px;}
.y17f{bottom:727.080000px;}
.yd7{bottom:727.800000px;}
.y6f{bottom:733.110000px;}
.yaa{bottom:733.560000px;}
.y11c{bottom:739.320000px;}
.yf3{bottom:739.500000px;}
.y17e{bottom:740.670000px;}
.y41{bottom:743.820000px;}
.y19{bottom:744.720000px;}
.y6e{bottom:746.610000px;}
.ya9{bottom:747.060000px;}
.yd6{bottom:751.290000px;}
.y17d{bottom:754.260000px;}
.yf2{bottom:759.300000px;}
.y6d{bottom:760.110000px;}
.ya8{bottom:760.560000px;}
.y13f{bottom:761.190000px;}
.y40{bottom:763.440000px;}
.y18{bottom:764.340000px;}
.y17c{bottom:767.760000px;}
.yd5{bottom:771.090000px;}
.y6c{bottom:773.790000px;}
.ya7{bottom:773.880000px;}
.y13e{bottom:778.200000px;}
.yf1{bottom:779.190000px;}
.y11b{bottom:779.280000px;}
.y17b{bottom:781.080000px;}
.y3f{bottom:782.970000px;}
.y6b{bottom:787.290000px;}
.ya6{bottom:787.560000px;}
.yd4{bottom:790.710000px;}
.y17a{bottom:794.850000px;}
.y13d{bottom:797.730000px;}
.y11a{bottom:799.170000px;}
.yf0{bottom:799.440000px;}
.y6a{bottom:800.790000px;}
.ya5{bottom:801.240000px;}
.y3e{bottom:802.770000px;}
.y17{bottom:803.490000px;}
.y179{bottom:808.260000px;}
.yd3{bottom:810.330000px;}
.y69{bottom:814.470000px;}
.ya4{bottom:814.560000px;}
.y119{bottom:819.240000px;}
.yef{bottom:819.330000px;}
.y178{bottom:821.580000px;}
.y3d{bottom:821.940000px;}
.y13c{bottom:825.360000px;}
.y68{bottom:827.790000px;}
.ya3{bottom:828.150000px;}
.yd2{bottom:830.310000px;}
.y177{bottom:835.260000px;}
.yc{bottom:836.700000px;}
.y118{bottom:838.860000px;}
.yee{bottom:839.310000px;}
.y67{bottom:841.110000px;}
.y3c{bottom:841.290000px;}
.ya2{bottom:841.380000px;}
.yd1{bottom:848.400000px;}
.y176{bottom:848.670000px;}
.yb{bottom:850.200000px;}
.y66{bottom:854.610000px;}
.ya1{bottom:854.880000px;}
.y117{bottom:858.840000px;}
.yed{bottom:859.110000px;}
.y3b{bottom:860.910000px;}
.y175{bottom:862.080000px;}
.ya{bottom:863.700000px;}
.y65{bottom:868.110000px;}
.ya0{bottom:868.560000px;}
.yd0{bottom:870.000000px;}
.y16{bottom:873.780000px;}
.y174{bottom:875.850000px;}
.y9{bottom:877.200000px;}
.yec{bottom:878.640000px;}
.y13b{bottom:880.260000px;}
.y3a{bottom:880.440000px;}
.y64{bottom:881.430000px;}
.y9f{bottom:881.970000px;}
.y173{bottom:889.080000px;}
.ycf{bottom:889.710000px;}
.y8{bottom:890.700000px;}
.y63{bottom:894.930000px;}
.y9e{bottom:895.470000px;}
.yeb{bottom:898.620000px;}
.y116{bottom:898.710000px;}
.y13a{bottom:899.700000px;}
.y39{bottom:899.790000px;}
.y15{bottom:900.240000px;}
.y172{bottom:902.130000px;}
.y7{bottom:904.200000px;}
.y9d{bottom:908.430000px;}
.y62{bottom:908.610000px;}
.yce{bottom:909.420000px;}
.y171{bottom:916.080000px;}
.y115{bottom:918.060000px;}
.yea{bottom:918.330000px;}
.y38{bottom:919.320000px;}
.y61{bottom:922.200000px;}
.y9c{bottom:922.290000px;}
.y14{bottom:927.600000px;}
.ycd{bottom:929.220000px;}
.y170{bottom:929.490000px;}
.y60{bottom:935.520000px;}
.ye9{bottom:937.860000px;}
.y114{bottom:938.040000px;}
.y37{bottom:938.580000px;}
.y16f{bottom:942.900000px;}
.y9b{bottom:943.260000px;}
.ycc{bottom:948.840000px;}
.y6{bottom:955.605000px;}
.y16e{bottom:956.310000px;}
.y5f{bottom:956.490000px;}
.y9a{bottom:956.760000px;}
.ye8{bottom:957.660000px;}
.y113{bottom:957.750000px;}
.y139{bottom:957.840000px;}
.y36{bottom:958.020000px;}
.ycb{bottom:968.730000px;}
.y16d{bottom:969.900000px;}
.y112{bottom:977.190000px;}
.ye7{bottom:977.280000px;}
.y35{bottom:977.460000px;}
.y16c{bottom:983.130000px;}
.y5e{bottom:983.400000px;}
.y5{bottom:991.605000px;}
.y13{bottom:1006.800000px;}
.yca{bottom:1011.480000px;}
.y138{bottom:1019.220000px;}
.y34{bottom:1019.310000px;}
.y5d{bottom:1019.400000px;}
.y4{bottom:1021.605000px;}
.y12{bottom:1021.740000px;}
.y3{bottom:1051.605000px;}
.y2{bottom:1081.605000px;}
.y1{bottom:1099.605000px;}
.h28{height:4.945312px;}
.h2c{height:7.022344px;}
.h2b{height:7.961953px;}
.h2d{height:9.890625px;}
.h2a{height:19.781250px;}
.h1d{height:26.061797px;}
.h1c{height:27.298125px;}
.h18{height:27.545391px;}
.h16{height:27.990469px;}
.h9{height:29.028984px;}
.h21{height:29.078437px;}
.h1e{height:29.226797px;}
.h8{height:29.474062px;}
.h17{height:29.919141px;}
.h20{height:31.155469px;}
.h1f{height:31.897266px;}
.h10{height:33.825938px;}
.h11{height:34.913906px;}
.h13{height:35.260078px;}
.h12{height:35.754609px;}
.h15{height:36.743672px;}
.h14{height:36.941484px;}
.h2e{height:37.188750px;}
.h19{height:37.683281px;}
.h1b{height:38.771250px;}
.h26{height:38.870156px;}
.h1a{height:39.117422px;}
.h30{height:39.562500px;}
.hd{height:39.611953px;}
.hf{height:40.551562px;}
.h3{height:41.554688px;}
.h4{height:42.483074px;}
.he{height:42.974766px;}
.h22{height:43.469297px;}
.h25{height:44.408906px;}
.h27{height:46.832109px;}
.h5{height:47.109375px;}
.h2f{height:49.453125px;}
.h1{height:55.406250px;}
.hc{height:56.030391px;}
.h2{height:56.644098px;}
.ha{height:58.898672px;}
.hb{height:59.887734px;}
.h29{height:162.255703px;}
.h24{height:1069.500000px;}
.h23{height:1069.800000px;}
.h6{height:1107.600000px;}
.h7{height:1107.750000px;}
.h0{height:1323.000000px;}
.w3{width:691.200000px;}
.w4{width:691.500000px;}
.w2{width:734.250000px;}
.w1{width:734.400000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1e{left:46.440000px;}
.x1d{left:51.300000px;}
.x1f{left:52.740000px;}
.x1{left:54.000000px;}
.x1c{left:67.590000px;}
.x22{left:69.120000px;}
.x9{left:87.570000px;}
.x14{left:88.740000px;}
.xa{left:90.900000px;}
.xc{left:92.340000px;}
.xb{left:93.960000px;}
.x1a{left:97.380000px;}
.x19{left:100.260000px;}
.x2f{left:102.510000px;}
.x15{left:104.580000px;}
.x1b{left:105.840000px;}
.x2a{left:107.820000px;}
.x24{left:108.990000px;}
.xd{left:117.540000px;}
.xe{left:118.800000px;}
.x2{left:122.325000px;}
.x20{left:123.840000px;}
.x23{left:129.690000px;}
.x21{left:130.860000px;}
.x4{left:136.890000px;}
.x6{left:155.670000px;}
.x27{left:182.985000px;}
.x18{left:190.350000px;}
.x12{left:204.585000px;}
.x28{left:235.590000px;}
.x17{left:239.040000px;}
.x29{left:240.480000px;}
.x13{left:257.190000px;}
.x26{left:271.770000px;}
.x7{left:283.635000px;}
.x2b{left:285.480000px;}
.x25{left:290.160000px;}
.x11{left:293.370000px;}
.x2c{left:295.560000px;}
.xf{left:313.470000px;}
.x5{left:325.050000px;}
.x16{left:331.380000px;}
.x8{left:336.240000px;}
.x10{left:361.620000px;}
.x3{left:372.225000px;}
.x2d{left:449.010000px;}
.x2e{left:483.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._1{width:45.258667pt;}
._0{width:2530.581333pt;}
.fs23{font-size:5.333333pt;}
.fs27{font-size:7.573333pt;}
.fs26{font-size:8.586667pt;}
.fs28{font-size:10.666667pt;}
.fs25{font-size:21.333333pt;}
.fs1a{font-size:28.106667pt;}
.fs19{font-size:29.440000pt;}
.fs15{font-size:29.706667pt;}
.fs13{font-size:30.186667pt;}
.fs6{font-size:31.306667pt;}
.fs1e{font-size:31.360000pt;}
.fs1b{font-size:31.520000pt;}
.fs5{font-size:31.786667pt;}
.fs14{font-size:32.266667pt;}
.fs1d{font-size:33.600000pt;}
.fs1c{font-size:34.400000pt;}
.fsd{font-size:36.480000pt;}
.fse{font-size:37.653333pt;}
.fs10{font-size:38.026667pt;}
.fsf{font-size:38.560000pt;}
.fs12{font-size:39.626667pt;}
.fs11{font-size:39.840000pt;}
.fs29{font-size:40.106667pt;}
.fs16{font-size:40.640000pt;}
.fs18{font-size:41.813333pt;}
.fs21{font-size:41.920000pt;}
.fs17{font-size:42.186667pt;}
.fs4{font-size:42.666667pt;}
.fsa{font-size:42.720000pt;}
.fsc{font-size:43.733333pt;}
.fsb{font-size:46.346667pt;}
.fs1f{font-size:46.880000pt;}
.fs20{font-size:47.893333pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:49.072383pt;}
.fs22{font-size:50.506667pt;}
.fs2a{font-size:53.333333pt;}
.fs9{font-size:60.426667pt;}
.fs7{font-size:63.520000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:64.586667pt;}
.fs1{font-size:65.429844pt;}
.fs24{font-size:174.986667pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:45.013333pt;}
.y10{bottom:55.680000pt;}
.yf{bottom:66.346667pt;}
.y33{bottom:95.573333pt;}
.ye6{bottom:123.013333pt;}
.y5c{bottom:126.613333pt;}
.y111{bottom:126.693333pt;}
.y137{bottom:126.773333pt;}
.y16b{bottom:126.853333pt;}
.y32{bottom:127.093333pt;}
.y16a{bottom:138.933333pt;}
.ye5{bottom:140.613333pt;}
.y99{bottom:141.733333pt;}
.y5b{bottom:143.813333pt;}
.yc9{bottom:143.893333pt;}
.y110{bottom:144.853333pt;}
.y169{bottom:150.853333pt;}
.y98{bottom:154.133333pt;}
.y5a{bottom:160.853333pt;}
.yc8{bottom:161.013333pt;}
.y136{bottom:161.893333pt;}
.y10f{bottom:162.133333pt;}
.y168{bottom:162.773333pt;}
.y97{bottom:165.973333pt;}
.ye4{bottom:167.653333pt;}
.ye{bottom:170.080000pt;}
.y167{bottom:174.933333pt;}
.y96{bottom:177.893333pt;}
.yc7{bottom:178.453333pt;}
.y1a6{bottom:179.573333pt;}
.y135{bottom:179.653333pt;}
.y10e{bottom:180.053333pt;}
.yd{bottom:182.080000pt;}
.y31{bottom:184.293333pt;}
.y59{bottom:185.973333pt;}
.y166{bottom:186.613333pt;}
.y1a5{bottom:191.573333pt;}
.yc6{bottom:195.733333pt;}
.y95{bottom:196.293333pt;}
.y134{bottom:197.333333pt;}
.y10d{bottom:197.653333pt;}
.y165{bottom:198.613333pt;}
.y30{bottom:201.653333pt;}
.y1a4{bottom:203.413333pt;}
.y94{bottom:206.453333pt;}
.y164{bottom:210.453333pt;}
.yc5{bottom:213.013333pt;}
.y133{bottom:214.613333pt;}
.y10c{bottom:215.093333pt;}
.y1a3{bottom:215.413333pt;}
.y93{bottom:218.453333pt;}
.y2f{bottom:219.013333pt;}
.y163{bottom:222.613333pt;}
.y1a2{bottom:227.333333pt;}
.y58{bottom:229.413333pt;}
.yc4{bottom:230.213333pt;}
.y92{bottom:230.453333pt;}
.y10b{bottom:232.693333pt;}
.y162{bottom:234.613333pt;}
.y2e{bottom:236.133333pt;}
.y1a1{bottom:239.173333pt;}
.y91{bottom:244.213333pt;}
.y161{bottom:246.373333pt;}
.y57{bottom:246.933333pt;}
.yc3{bottom:247.333333pt;}
.y132{bottom:250.293333pt;}
.y10a{bottom:250.613333pt;}
.y1a0{bottom:251.253333pt;}
.y90{bottom:256.213333pt;}
.y160{bottom:258.453333pt;}
.y2d{bottom:261.173333pt;}
.y19f{bottom:263.413333pt;}
.y56{bottom:264.133333pt;}
.yc2{bottom:264.773333pt;}
.y131{bottom:267.653333pt;}
.y109{bottom:268.053333pt;}
.y8f{bottom:268.213333pt;}
.y15f{bottom:270.293333pt;}
.y19e{bottom:275.093333pt;}
.y15d{bottom:279.893333pt;}
.y8e{bottom:280.133333pt;}
.y55{bottom:281.493333pt;}
.yc1{bottom:281.893333pt;}
.y15c{bottom:282.133333pt;}
.y15e{bottom:282.293333pt;}
.y130{bottom:285.653333pt;}
.y108{bottom:285.973333pt;}
.y19d{bottom:286.693333pt;}
.y8d{bottom:292.133333pt;}
.y15b{bottom:294.133333pt;}
.y54{bottom:298.613333pt;}
.y19c{bottom:299.093333pt;}
.yc0{bottom:299.493333pt;}
.y12f{bottom:302.933333pt;}
.y107{bottom:303.493333pt;}
.y8c{bottom:304.133333pt;}
.y2c{bottom:305.573333pt;}
.y15a{bottom:306.053333pt;}
.y19b{bottom:310.773333pt;}
.y53{bottom:315.733333pt;}
.y8b{bottom:316.133333pt;}
.ybf{bottom:316.533333pt;}
.y159{bottom:318.053333pt;}
.y2b{bottom:320.533333pt;}
.y12e{bottom:321.013333pt;}
.y106{bottom:321.333333pt;}
.y19a{bottom:322.933333pt;}
.y8a{bottom:327.973333pt;}
.y158{bottom:330.053333pt;}
.ye3{bottom:332.773333pt;}
.y52{bottom:333.253333pt;}
.ybe{bottom:333.733333pt;}
.y199{bottom:334.773333pt;}
.y12d{bottom:338.613333pt;}
.y105{bottom:338.853333pt;}
.y89{bottom:340.133333pt;}
.y157{bottom:342.053333pt;}
.y198{bottom:347.093333pt;}
.y2a{bottom:347.653333pt;}
.y51{bottom:350.453333pt;}
.ybd{bottom:351.173333pt;}
.y88{bottom:351.973333pt;}
.y156{bottom:353.973333pt;}
.y12c{bottom:356.213333pt;}
.y104{bottom:356.853333pt;}
.y197{bottom:359.093333pt;}
.y29{bottom:362.373333pt;}
.y87{bottom:363.973333pt;}
.y155{bottom:366.053333pt;}
.ybc{bottom:366.853333pt;}
.y50{bottom:367.733333pt;}
.ydd{bottom:368.933333pt;}
.y196{bottom:371.093333pt;}
.y12b{bottom:374.293333pt;}
.y103{bottom:374.373333pt;}
.y86{bottom:376.053333pt;}
.y28{bottom:377.173333pt;}
.y154{bottom:378.133333pt;}
.y195{bottom:382.773333pt;}
.y4f{bottom:385.173333pt;}
.ybb{bottom:386.053333pt;}
.y85{bottom:388.133333pt;}
.y153{bottom:390.133333pt;}
.y27{bottom:391.893333pt;}
.y102{bottom:392.373333pt;}
.y194{bottom:394.853333pt;}
.y84{bottom:400.293333pt;}
.y152{bottom:402.133333pt;}
.y4e{bottom:402.453333pt;}
.yba{bottom:403.333333pt;}
.y26{bottom:406.453333pt;}
.y193{bottom:406.933333pt;}
.y12a{bottom:409.653333pt;}
.y101{bottom:409.733333pt;}
.y83{bottom:412.133333pt;}
.y151{bottom:414.133333pt;}
.y192{bottom:419.093333pt;}
.y4d{bottom:419.893333pt;}
.yb9{bottom:420.613333pt;}
.y25{bottom:421.093333pt;}
.ye2{bottom:422.533333pt;}
.y82{bottom:424.133333pt;}
.y150{bottom:426.053333pt;}
.y129{bottom:427.413333pt;}
.y100{bottom:427.653333pt;}
.y191{bottom:431.013333pt;}
.y24{bottom:435.733333pt;}
.y81{bottom:435.973333pt;}
.y4c{bottom:437.173333pt;}
.yb8{bottom:437.733333pt;}
.y14f{bottom:437.893333pt;}
.ye1{bottom:441.493333pt;}
.y190{bottom:442.933333pt;}
.y128{bottom:444.533333pt;}
.yff{bottom:445.173333pt;}
.y80{bottom:447.893333pt;}
.y14e{bottom:449.893333pt;}
.y23{bottom:450.293333pt;}
.y4b{bottom:454.453333pt;}
.y18f{bottom:454.613333pt;}
.yb7{bottom:455.013333pt;}
.y7f{bottom:458.773333pt;}
.y14d{bottom:461.813333pt;}
.y127{bottom:462.533333pt;}
.yfe{bottom:462.693333pt;}
.y22{bottom:465.093333pt;}
.y18e{bottom:466.613333pt;}
.y4a{bottom:471.413333pt;}
.y7e{bottom:471.973333pt;}
.y14c{bottom:473.413333pt;}
.ye0{bottom:475.733333pt;}
.ydf{bottom:476.853333pt;}
.y18d{bottom:478.533333pt;}
.y21{bottom:479.653333pt;}
.y126{bottom:480.053333pt;}
.yfd{bottom:480.293333pt;}
.yde{bottom:483.253333pt;}
.y7d{bottom:483.733333pt;}
.y14b{bottom:485.733333pt;}
.y49{bottom:488.853333pt;}
.y18c{bottom:490.533333pt;}
.y20{bottom:494.213333pt;}
.y7c{bottom:495.733333pt;}
.y14a{bottom:497.493333pt;}
.y125{bottom:497.653333pt;}
.yfc{bottom:497.973333pt;}
.yb6{bottom:500.133333pt;}
.y18b{bottom:502.613333pt;}
.ydc{bottom:505.573333pt;}
.y48{bottom:506.133333pt;}
.y7b{bottom:507.813333pt;}
.y1f{bottom:508.773333pt;}
.y149{bottom:509.653333pt;}
.yb5{bottom:513.573333pt;}
.y18a{bottom:514.613333pt;}
.y124{bottom:515.253333pt;}
.yfb{bottom:515.893333pt;}
.y7a{bottom:519.733333pt;}
.y148{bottom:521.173333pt;}
.y1e{bottom:523.413333pt;}
.y47{bottom:523.493333pt;}
.y189{bottom:526.613333pt;}
.y79{bottom:531.733333pt;}
.yb4{bottom:532.293333pt;}
.y123{bottom:533.253333pt;}
.y147{bottom:533.333333pt;}
.yfa{bottom:533.653333pt;}
.y1d{bottom:538.053333pt;}
.y188{bottom:538.373333pt;}
.ydb{bottom:540.053333pt;}
.y46{bottom:540.853333pt;}
.y78{bottom:543.573333pt;}
.yb3{bottom:544.213333pt;}
.y146{bottom:545.573333pt;}
.y187{bottom:550.373333pt;}
.y122{bottom:550.693333pt;}
.yf9{bottom:551.253333pt;}
.y1c{bottom:553.013333pt;}
.y77{bottom:555.733333pt;}
.yb2{bottom:555.973333pt;}
.y145{bottom:557.493333pt;}
.y186{bottom:562.453333pt;}
.y45{bottom:565.493333pt;}
.y76{bottom:567.573333pt;}
.yb1{bottom:568.213333pt;}
.y121{bottom:568.453333pt;}
.yf8{bottom:568.853333pt;}
.y144{bottom:569.653333pt;}
.y185{bottom:574.373333pt;}
.y75{bottom:579.733333pt;}
.yb0{bottom:580.373333pt;}
.y143{bottom:581.333333pt;}
.y120{bottom:586.133333pt;}
.y184{bottom:586.373333pt;}
.yf7{bottom:586.613333pt;}
.y74{bottom:591.733333pt;}
.yaf{bottom:592.133333pt;}
.y142{bottom:593.493333pt;}
.yda{bottom:597.173333pt;}
.y183{bottom:598.213333pt;}
.y73{bottom:603.653333pt;}
.y11f{bottom:603.733333pt;}
.yae{bottom:604.213333pt;}
.yf6{bottom:604.373333pt;}
.y141{bottom:605.573333pt;}
.y44{bottom:609.093333pt;}
.y182{bottom:610.213333pt;}
.yd9{bottom:615.093333pt;}
.y72{bottom:615.653333pt;}
.yad{bottom:615.973333pt;}
.y11e{bottom:621.333333pt;}
.yf5{bottom:621.813333pt;}
.y181{bottom:622.213333pt;}
.y140{bottom:625.413333pt;}
.y1b{bottom:625.813333pt;}
.y43{bottom:626.453333pt;}
.y71{bottom:627.413333pt;}
.yac{bottom:627.973333pt;}
.yd8{bottom:632.453333pt;}
.y180{bottom:634.453333pt;}
.yab{bottom:638.853333pt;}
.y11d{bottom:639.413333pt;}
.y70{bottom:639.493333pt;}
.yf4{bottom:639.573333pt;}
.y1a{bottom:642.213333pt;}
.y42{bottom:643.893333pt;}
.y17f{bottom:646.293333pt;}
.yd7{bottom:646.933333pt;}
.y6f{bottom:651.653333pt;}
.yaa{bottom:652.053333pt;}
.y11c{bottom:657.173333pt;}
.yf3{bottom:657.333333pt;}
.y17e{bottom:658.373333pt;}
.y41{bottom:661.173333pt;}
.y19{bottom:661.973333pt;}
.y6e{bottom:663.653333pt;}
.ya9{bottom:664.053333pt;}
.yd6{bottom:667.813333pt;}
.y17d{bottom:670.453333pt;}
.yf2{bottom:674.933333pt;}
.y6d{bottom:675.653333pt;}
.ya8{bottom:676.053333pt;}
.y13f{bottom:676.613333pt;}
.y40{bottom:678.613333pt;}
.y18{bottom:679.413333pt;}
.y17c{bottom:682.453333pt;}
.yd5{bottom:685.413333pt;}
.y6c{bottom:687.813333pt;}
.ya7{bottom:687.893333pt;}
.y13e{bottom:691.733333pt;}
.yf1{bottom:692.613333pt;}
.y11b{bottom:692.693333pt;}
.y17b{bottom:694.293333pt;}
.y3f{bottom:695.973333pt;}
.y6b{bottom:699.813333pt;}
.ya6{bottom:700.053333pt;}
.yd4{bottom:702.853333pt;}
.y17a{bottom:706.533333pt;}
.y13d{bottom:709.093333pt;}
.y11a{bottom:710.373333pt;}
.yf0{bottom:710.613333pt;}
.y6a{bottom:711.813333pt;}
.ya5{bottom:712.213333pt;}
.y3e{bottom:713.573333pt;}
.y17{bottom:714.213333pt;}
.y179{bottom:718.453333pt;}
.yd3{bottom:720.293333pt;}
.y69{bottom:723.973333pt;}
.ya4{bottom:724.053333pt;}
.y119{bottom:728.213333pt;}
.yef{bottom:728.293333pt;}
.y178{bottom:730.293333pt;}
.y3d{bottom:730.613333pt;}
.y13c{bottom:733.653333pt;}
.y68{bottom:735.813333pt;}
.ya3{bottom:736.133333pt;}
.yd2{bottom:738.053333pt;}
.y177{bottom:742.453333pt;}
.yc{bottom:743.733333pt;}
.y118{bottom:745.653333pt;}
.yee{bottom:746.053333pt;}
.y67{bottom:747.653333pt;}
.y3c{bottom:747.813333pt;}
.ya2{bottom:747.893333pt;}
.yd1{bottom:754.133333pt;}
.y176{bottom:754.373333pt;}
.yb{bottom:755.733333pt;}
.y66{bottom:759.653333pt;}
.ya1{bottom:759.893333pt;}
.y117{bottom:763.413333pt;}
.yed{bottom:763.653333pt;}
.y3b{bottom:765.253333pt;}
.y175{bottom:766.293333pt;}
.ya{bottom:767.733333pt;}
.y65{bottom:771.653333pt;}
.ya0{bottom:772.053333pt;}
.yd0{bottom:773.333333pt;}
.y16{bottom:776.693333pt;}
.y174{bottom:778.533333pt;}
.y9{bottom:779.733333pt;}
.yec{bottom:781.013333pt;}
.y13b{bottom:782.453333pt;}
.y3a{bottom:782.613333pt;}
.y64{bottom:783.493333pt;}
.y9f{bottom:783.973333pt;}
.y173{bottom:790.293333pt;}
.ycf{bottom:790.853333pt;}
.y8{bottom:791.733333pt;}
.y63{bottom:795.493333pt;}
.y9e{bottom:795.973333pt;}
.yeb{bottom:798.773333pt;}
.y116{bottom:798.853333pt;}
.y13a{bottom:799.733333pt;}
.y39{bottom:799.813333pt;}
.y15{bottom:800.213333pt;}
.y172{bottom:801.893333pt;}
.y7{bottom:803.733333pt;}
.y9d{bottom:807.493333pt;}
.y62{bottom:807.653333pt;}
.yce{bottom:808.373333pt;}
.y171{bottom:814.293333pt;}
.y115{bottom:816.053333pt;}
.yea{bottom:816.293333pt;}
.y38{bottom:817.173333pt;}
.y61{bottom:819.733333pt;}
.y9c{bottom:819.813333pt;}
.y14{bottom:824.533333pt;}
.ycd{bottom:825.973333pt;}
.y170{bottom:826.213333pt;}
.y60{bottom:831.573333pt;}
.ye9{bottom:833.653333pt;}
.y114{bottom:833.813333pt;}
.y37{bottom:834.293333pt;}
.y16f{bottom:838.133333pt;}
.y9b{bottom:838.453333pt;}
.ycc{bottom:843.413333pt;}
.y6{bottom:849.426667pt;}
.y16e{bottom:850.053333pt;}
.y5f{bottom:850.213333pt;}
.y9a{bottom:850.453333pt;}
.ye8{bottom:851.253333pt;}
.y113{bottom:851.333333pt;}
.y139{bottom:851.413333pt;}
.y36{bottom:851.573333pt;}
.ycb{bottom:861.093333pt;}
.y16d{bottom:862.133333pt;}
.y112{bottom:868.613333pt;}
.ye7{bottom:868.693333pt;}
.y35{bottom:868.853333pt;}
.y16c{bottom:873.893333pt;}
.y5e{bottom:874.133333pt;}
.y5{bottom:881.426667pt;}
.y13{bottom:894.933333pt;}
.yca{bottom:899.093333pt;}
.y138{bottom:905.973333pt;}
.y34{bottom:906.053333pt;}
.y5d{bottom:906.133333pt;}
.y4{bottom:908.093333pt;}
.y12{bottom:908.213333pt;}
.y3{bottom:934.760000pt;}
.y2{bottom:961.426667pt;}
.y1{bottom:977.426667pt;}
.h28{height:4.395833pt;}
.h2c{height:6.242083pt;}
.h2b{height:7.077292pt;}
.h2d{height:8.791667pt;}
.h2a{height:17.583333pt;}
.h1d{height:23.166042pt;}
.h1c{height:24.265000pt;}
.h18{height:24.484792pt;}
.h16{height:24.880417pt;}
.h9{height:25.803542pt;}
.h21{height:25.847500pt;}
.h1e{height:25.979375pt;}
.h8{height:26.199167pt;}
.h17{height:26.594792pt;}
.h20{height:27.693750pt;}
.h1f{height:28.353125pt;}
.h10{height:30.067500pt;}
.h11{height:31.034583pt;}
.h13{height:31.342292pt;}
.h12{height:31.781875pt;}
.h15{height:32.661042pt;}
.h14{height:32.836875pt;}
.h2e{height:33.056667pt;}
.h19{height:33.496250pt;}
.h1b{height:34.463333pt;}
.h26{height:34.551250pt;}
.h1a{height:34.771042pt;}
.h30{height:35.166667pt;}
.hd{height:35.210625pt;}
.hf{height:36.045833pt;}
.h3{height:36.937500pt;}
.h4{height:37.762732pt;}
.he{height:38.199792pt;}
.h22{height:38.639375pt;}
.h25{height:39.474583pt;}
.h27{height:41.628542pt;}
.h5{height:41.875000pt;}
.h2f{height:43.958333pt;}
.h1{height:49.250000pt;}
.hc{height:49.804792pt;}
.h2{height:50.350310pt;}
.ha{height:52.354375pt;}
.hb{height:53.233542pt;}
.h29{height:144.227292pt;}
.h24{height:950.666667pt;}
.h23{height:950.933333pt;}
.h6{height:984.533333pt;}
.h7{height:984.666667pt;}
.h0{height:1176.000000pt;}
.w3{width:614.400000pt;}
.w4{width:614.666667pt;}
.w2{width:652.666667pt;}
.w1{width:652.800000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1e{left:41.280000pt;}
.x1d{left:45.600000pt;}
.x1f{left:46.880000pt;}
.x1{left:48.000000pt;}
.x1c{left:60.080000pt;}
.x22{left:61.440000pt;}
.x9{left:77.840000pt;}
.x14{left:78.880000pt;}
.xa{left:80.800000pt;}
.xc{left:82.080000pt;}
.xb{left:83.520000pt;}
.x1a{left:86.560000pt;}
.x19{left:89.120000pt;}
.x2f{left:91.120000pt;}
.x15{left:92.960000pt;}
.x1b{left:94.080000pt;}
.x2a{left:95.840000pt;}
.x24{left:96.880000pt;}
.xd{left:104.480000pt;}
.xe{left:105.600000pt;}
.x2{left:108.733333pt;}
.x20{left:110.080000pt;}
.x23{left:115.280000pt;}
.x21{left:116.320000pt;}
.x4{left:121.680000pt;}
.x6{left:138.373333pt;}
.x27{left:162.653333pt;}
.x18{left:169.200000pt;}
.x12{left:181.853333pt;}
.x28{left:209.413333pt;}
.x17{left:212.480000pt;}
.x29{left:213.760000pt;}
.x13{left:228.613333pt;}
.x26{left:241.573333pt;}
.x7{left:252.120000pt;}
.x2b{left:253.760000pt;}
.x25{left:257.920000pt;}
.x11{left:260.773333pt;}
.x2c{left:262.720000pt;}
.xf{left:278.640000pt;}
.x5{left:288.933333pt;}
.x16{left:294.560000pt;}
.x8{left:298.880000pt;}
.x10{left:321.440000pt;}
.x3{left:330.866667pt;}
.x2d{left:399.120000pt;}
.x2e{left:429.440000pt;}
}




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