
    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_017d779dff6d6dc8ad2e21c2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_74b6fb42aa571108b7b66653.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a5caa3b38801f54b99533441.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f6ddddf72244fe0050433cf8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5bef4f3cee44aacd2e7294e9.woff')format("woff");}.ff5{font-family:ff5;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;}
.m156{transform:matrix(0.105250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105250,0.000000,0.000000,0.250000,0,0);}
.m155{transform:matrix(0.132773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132773,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.154122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154122,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.m1b0{transform:matrix(0.213873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213873,0.000000,0.000000,0.250000,0,0);}
.m1b3{transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234375,0.000000,0.000000,0.250000,0,0);}
.m1b5{transform:matrix(0.238248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238248,0.000000,0.000000,0.250000,0,0);}
.m139{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);}
.m18a{transform:matrix(0.256373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256373,0.000000,0.000000,0.250000,0,0);}
.m145{transform:matrix(0.258022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258022,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.259325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259325,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.259848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259848,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.260522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260522,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.261200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261200,0.000000,0.000000,0.250000,0,0);}
.m1b4{transform:matrix(0.261447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261447,0.000000,0.000000,0.250000,0,0);}
.m143{transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261900,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1b8{transform:matrix(0.263173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263173,0.000000,0.000000,0.250000,0,0);}
.m137{transform:matrix(0.265047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265047,0.000000,0.000000,0.250000,0,0);}
.m1ad{transform:matrix(0.265425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265425,0.000000,0.000000,0.250000,0,0);}
.m1b2{transform:matrix(0.265450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265450,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.265748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265748,0.000000,0.000000,0.250000,0,0);}
.m1a9{transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266550,0.000000,0.000000,0.250000,0,0);}
.m1af{transform:matrix(0.266722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266722,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.266848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266848,0.000000,0.000000,0.250000,0,0);}
.m1aa{transform:matrix(0.267600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267600,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.268173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268173,0.000000,0.000000,0.250000,0,0);}
.m1a6{transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268425,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.268900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268900,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.269147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269147,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.269423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269423,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269547,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271275,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.271373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271373,0.000000,0.000000,0.250000,0,0);}
.m138{transform:matrix(0.271423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271423,0.000000,0.000000,0.250000,0,0);}
.m121{transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271600,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.271647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271647,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.271923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271923,0.000000,0.000000,0.250000,0,0);}
.m1a7{transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273075,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.273723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273723,0.000000,0.000000,0.250000,0,0);}
.m18e{transform:matrix(0.273923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273923,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.274072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274072,0.000000,0.000000,0.250000,0,0);}
.m132{transform:matrix(0.274423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274423,0.000000,0.000000,0.250000,0,0);}
.m13e{transform:matrix(0.274697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274697,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.275425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275425,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m10e{transform:matrix(0.275625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275625,0.000000,0.000000,0.250000,0,0);}
.m144{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);}
.m99{transform:matrix(0.276875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276875,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277025,0.000000,0.000000,0.250000,0,0);}
.m142{transform:matrix(0.277375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277375,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277650,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.278048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278048,0.000000,0.000000,0.250000,0,0);}
.m15f{transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278225,0.000000,0.000000,0.250000,0,0);}
.m159{transform:matrix(0.278373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278373,0.000000,0.000000,0.250000,0,0);}
.m131{transform:matrix(0.278398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278398,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.279050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279050,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.279073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279073,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279147,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.279325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279325,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279400,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.279573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279573,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.279647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279647,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279750,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m192{transform:matrix(0.280197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280197,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280225,0.000000,0.000000,0.250000,0,0);}
.m152{transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280300,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280350,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.280523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280523,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.280597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280597,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.280625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280625,0.000000,0.000000,0.250000,0,0);}
.m13a{transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280798,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.281050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281050,0.000000,0.000000,0.250000,0,0);}
.m1b1{transform:matrix(0.281147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281147,0.000000,0.000000,0.250000,0,0);}
.m12d{transform:matrix(0.281448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281448,0.000000,0.000000,0.250000,0,0);}
.m119{transform:matrix(0.281722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281722,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.281773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281773,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281848,0.000000,0.000000,0.250000,0,0);}
.m153{transform:matrix(0.281975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281975,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282175,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282398,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.282423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282423,0.000000,0.000000,0.250000,0,0);}
.m14a{transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282450,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.282473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282473,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.282672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282672,0.000000,0.000000,0.250000,0,0);}
.m123{transform:matrix(0.282748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282748,0.000000,0.000000,0.250000,0,0);}
.m149{transform:matrix(0.282897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282897,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m1a5{transform:matrix(0.283023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283023,0.000000,0.000000,0.250000,0,0);}
.m146{transform:matrix(0.283048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283048,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.283098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283098,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283200,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.283350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283350,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.283397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283397,0.000000,0.000000,0.250000,0,0);}
.m14e{transform:matrix(0.283425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283425,0.000000,0.000000,0.250000,0,0);}
.m13b{transform:matrix(0.283723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283723,0.000000,0.000000,0.250000,0,0);}
.m14f{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1a8{transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283775,0.000000,0.000000,0.250000,0,0);}
.m172{transform:matrix(0.283850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283850,0.000000,0.000000,0.250000,0,0);}
.m15a{transform:matrix(0.283923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283923,0.000000,0.000000,0.250000,0,0);}
.m10d{transform:matrix(0.283947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283947,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.283975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283975,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.284023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284023,0.000000,0.000000,0.250000,0,0);}
.m100{transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284125,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.284147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284147,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);}
.m141{transform:matrix(0.284400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284400,0.000000,0.000000,0.250000,0,0);}
.m148{transform:matrix(0.284423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284423,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.284498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284498,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.284573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284573,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.284600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284600,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.284623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284623,0.000000,0.000000,0.250000,0,0);}
.m18c{transform:matrix(0.284697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284697,0.000000,0.000000,0.250000,0,0);}
.m134{transform:matrix(0.284923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284923,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284973,0.000000,0.000000,0.250000,0,0);}
.m110{transform:matrix(0.285075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285075,0.000000,0.000000,0.250000,0,0);}
.m106{transform:matrix(0.285150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285150,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.285197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285197,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.285248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285248,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285300,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285350,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.285375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285375,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.285397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285397,0.000000,0.000000,0.250000,0,0);}
.m193{transform:matrix(0.285425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285425,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.285598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285598,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285625,0.000000,0.000000,0.250000,0,0);}
.m105{transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285650,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.285672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285672,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.285775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285775,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285798,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.285850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285850,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285873,0.000000,0.000000,0.250000,0,0);}
.m160{transform:matrix(0.285897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285897,0.000000,0.000000,0.250000,0,0);}
.m135{transform:matrix(0.286023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286023,0.000000,0.000000,0.250000,0,0);}
.m1ac{transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286050,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.286075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286075,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286173,0.000000,0.000000,0.250000,0,0);}
.m14d{transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286200,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.286222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286222,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286325,0.000000,0.000000,0.250000,0,0);}
.m15b{transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286350,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.286498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286498,0.000000,0.000000,0.250000,0,0);}
.m130{transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286523,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.286573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286573,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.286600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286600,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.286700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286700,0.000000,0.000000,0.250000,0,0);}
.m179{transform:matrix(0.286722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286722,0.000000,0.000000,0.250000,0,0);}
.m120{transform:matrix(0.286825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286825,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286848,0.000000,0.000000,0.250000,0,0);}
.m13f{transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286875,0.000000,0.000000,0.250000,0,0);}
.m126{transform:matrix(0.286900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286900,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286923,0.000000,0.000000,0.250000,0,0);}
.m150{transform:matrix(0.287048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287048,0.000000,0.000000,0.250000,0,0);}
.m18b{transform:matrix(0.287073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287073,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287100,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.287175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287175,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.287197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287197,0.000000,0.000000,0.250000,0,0);}
.m14b{transform:matrix(0.287225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287225,0.000000,0.000000,0.250000,0,0);}
.m151{transform:matrix(0.287450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287450,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287525,0.000000,0.000000,0.250000,0,0);}
.m158{transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287575,0.000000,0.000000,0.250000,0,0);}
.m187{transform:matrix(0.287623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287623,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.287672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287672,0.000000,0.000000,0.250000,0,0);}
.m17c{transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287697,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287725,0.000000,0.000000,0.250000,0,0);}
.m154{transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287772,0.000000,0.000000,0.250000,0,0);}
.m16a{transform:matrix(0.287822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287822,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.287850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287850,0.000000,0.000000,0.250000,0,0);}
.m196{transform:matrix(0.287875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287875,0.000000,0.000000,0.250000,0,0);}
.m11c{transform:matrix(0.287897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287897,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287925,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.287972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287972,0.000000,0.000000,0.250000,0,0);}
.m166{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.288048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288048,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.288125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288125,0.000000,0.000000,0.250000,0,0);}
.m19c{transform:matrix(0.288172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288172,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.288200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288200,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.288248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288248,0.000000,0.000000,0.250000,0,0);}
.m12c{transform:matrix(0.288275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288275,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.288322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288322,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.288350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288350,0.000000,0.000000,0.250000,0,0);}
.m103{transform:matrix(0.288373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288373,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.288397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288397,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.288425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288425,0.000000,0.000000,0.250000,0,0);}
.m199{transform:matrix(0.288447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288447,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.288475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288475,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.288523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288523,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288550,0.000000,0.000000,0.250000,0,0);}
.m197{transform:matrix(0.288575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288575,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.288598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288598,0.000000,0.000000,0.250000,0,0);}
.m185{transform:matrix(0.288673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288673,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288775,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288825,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.288923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288923,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.289023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289023,0.000000,0.000000,0.250000,0,0);}
.m11f{transform:matrix(0.289050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289050,0.000000,0.000000,0.250000,0,0);}
.m133{transform:matrix(0.289148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289148,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289175,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.289272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289272,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.289298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289298,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289348,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289375,0.000000,0.000000,0.250000,0,0);}
.m12f{transform:matrix(0.289423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289423,0.000000,0.000000,0.250000,0,0);}
.m182{transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289475,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.289525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289525,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.289548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289548,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.289600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289600,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.289623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289623,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.289675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289675,0.000000,0.000000,0.250000,0,0);}
.m163{transform:matrix(0.289697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289697,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.289725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289725,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.289825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289825,0.000000,0.000000,0.250000,0,0);}
.m147{transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289875,0.000000,0.000000,0.250000,0,0);}
.m112{transform:matrix(0.289898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289898,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.289923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289923,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.290025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290025,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.290100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290100,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290225,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.290247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290247,0.000000,0.000000,0.250000,0,0);}
.m10b{transform:matrix(0.290322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290322,0.000000,0.000000,0.250000,0,0);}
.m188{transform:matrix(0.290425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290425,0.000000,0.000000,0.250000,0,0);}
.m184{transform:matrix(0.290450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290450,0.000000,0.000000,0.250000,0,0);}
.m1b7{transform:matrix(0.290548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290548,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.290598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290598,0.000000,0.000000,0.250000,0,0);}
.m108{transform:matrix(0.290700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290700,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290775,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.290797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290797,0.000000,0.000000,0.250000,0,0);}
.m194{transform:matrix(0.290850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290850,0.000000,0.000000,0.250000,0,0);}
.m178{transform:matrix(0.290897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290897,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290947,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290975,0.000000,0.000000,0.250000,0,0);}
.m117{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m19b{transform:matrix(0.291023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291023,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.291098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291098,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.291148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291148,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.291173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291173,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.291200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291200,0.000000,0.000000,0.250000,0,0);}
.m102{transform:matrix(0.291298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291298,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.291325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291325,0.000000,0.000000,0.250000,0,0);}
.m113{transform:matrix(0.291373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291373,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.291423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291423,0.000000,0.000000,0.250000,0,0);}
.m18f{transform:matrix(0.291475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291475,0.000000,0.000000,0.250000,0,0);}
.m12b{transform:matrix(0.291523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291523,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.291572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291572,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.291600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291600,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m173{transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291825,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.291848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291848,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.291923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291923,0.000000,0.000000,0.250000,0,0);}
.m1a1{transform:matrix(0.291975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291975,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292025,0.000000,0.000000,0.250000,0,0);}
.m13c{transform:matrix(0.292048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292048,0.000000,0.000000,0.250000,0,0);}
.m17e{transform:matrix(0.292073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292073,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.292100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292100,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.292123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292123,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.292175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292175,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.292197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292197,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292300,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292375,0.000000,0.000000,0.250000,0,0);}
.md6{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);}
.m86{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13d{transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292548,0.000000,0.000000,0.250000,0,0);}
.m15c{transform:matrix(0.292650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292650,0.000000,0.000000,0.250000,0,0);}
.m19f{transform:matrix(0.292725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292725,0.000000,0.000000,0.250000,0,0);}
.m6f{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);}
.m83{transform:matrix(0.292875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292875,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292897,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.292925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292925,0.000000,0.000000,0.250000,0,0);}
.m198{transform:matrix(0.292972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292972,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.293023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293023,0.000000,0.000000,0.250000,0,0);}
.m15d{transform:matrix(0.293075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293075,0.000000,0.000000,0.250000,0,0);}
.m19e{transform:matrix(0.293125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293125,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.293150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293150,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.293173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293173,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.293373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293373,0.000000,0.000000,0.250000,0,0);}
.m176{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m16e{transform:matrix(0.293523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293523,0.000000,0.000000,0.250000,0,0);}
.m101{transform:matrix(0.293550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293550,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.293648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293648,0.000000,0.000000,0.250000,0,0);}
.m1a0{transform:matrix(0.293798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293798,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.293825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293825,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.293850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293850,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.293873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293873,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293900,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.293923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293923,0.000000,0.000000,0.250000,0,0);}
.m115{transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293947,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294050,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.294100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294100,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.294175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294175,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294200,0.000000,0.000000,0.250000,0,0);}
.m19a{transform:matrix(0.294222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294222,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.294325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294325,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.294348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294348,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294423,0.000000,0.000000,0.250000,0,0);}
.m174{transform:matrix(0.294450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294450,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.294498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294498,0.000000,0.000000,0.250000,0,0);}
.m11e{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);}
.m168{transform:matrix(0.294573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294573,0.000000,0.000000,0.250000,0,0);}
.m114{transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294600,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.294648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294648,0.000000,0.000000,0.250000,0,0);}
.m183{transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294675,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.294698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294698,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.294773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294773,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294898,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.294923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294923,0.000000,0.000000,0.250000,0,0);}
.m18d{transform:matrix(0.295025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295025,0.000000,0.000000,0.250000,0,0);}
.m10a{transform:matrix(0.295100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295100,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295150,0.000000,0.000000,0.250000,0,0);}
.m165{transform:matrix(0.295173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295173,0.000000,0.000000,0.250000,0,0);}
.m169{transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295198,0.000000,0.000000,0.250000,0,0);}
.m111{transform:matrix(0.295225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295225,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295247,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.295397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295397,0.000000,0.000000,0.250000,0,0);}
.m1a2{transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295425,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.mf9{transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295548,0.000000,0.000000,0.250000,0,0);}
.m191{transform:matrix(0.295575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295575,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.295598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295598,0.000000,0.000000,0.250000,0,0);}
.m186{transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295897,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.296050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296050,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.296075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296075,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.296148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296148,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.296173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296173,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.296200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296200,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.296275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296275,0.000000,0.000000,0.250000,0,0);}
.m170{transform:matrix(0.296373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296373,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296423,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.296447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296447,0.000000,0.000000,0.250000,0,0);}
.m167{transform:matrix(0.296475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296475,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.296572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296572,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m95{transform:matrix(0.296648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296648,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.296798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296798,0.000000,0.000000,0.250000,0,0);}
.m118{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);}
.m7c{transform:matrix(0.296950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296950,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.296975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296975,0.000000,0.000000,0.250000,0,0);}
.m162{transform:matrix(0.297025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297025,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.297148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297148,0.000000,0.000000,0.250000,0,0);}
.m161{transform:matrix(0.297348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297348,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297450,0.000000,0.000000,0.250000,0,0);}
.m10f{transform:matrix(0.297473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297473,0.000000,0.000000,0.250000,0,0);}
.m195{transform:matrix(0.297650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297650,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.297673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297673,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.297698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297698,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.297772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297772,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297875,0.000000,0.000000,0.250000,0,0);}
.m17f{transform:matrix(0.298048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298048,0.000000,0.000000,0.250000,0,0);}
.m190{transform:matrix(0.298150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298150,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.298173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298173,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298350,0.000000,0.000000,0.250000,0,0);}
.m181{transform:matrix(0.298475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298475,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);}
.m19d{transform:matrix(0.298550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298550,0.000000,0.000000,0.250000,0,0);}
.m1a3{transform:matrix(0.298648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298648,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.298700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298700,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.299148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299148,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.299223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299223,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.299375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299375,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299548,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299725,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.299750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299750,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.299898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299898,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.300075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300075,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.300173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300173,0.000000,0.000000,0.250000,0,0);}
.m11d{transform:matrix(0.300397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300397,0.000000,0.000000,0.250000,0,0);}
.m10c{transform:matrix(0.300472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300472,0.000000,0.000000,0.250000,0,0);}
.m164{transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300625,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.300797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300797,0.000000,0.000000,0.250000,0,0);}
.m127{transform:matrix(0.300873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300873,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300975,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.301148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301148,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.301173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301173,0.000000,0.000000,0.250000,0,0);}
.m104{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.301275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301275,0.000000,0.000000,0.250000,0,0);}
.m1b6{transform:matrix(0.301423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301423,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.301675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301675,0.000000,0.000000,0.250000,0,0);}
.m16d{transform:matrix(0.301825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301825,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301847,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.301923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301923,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.301975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301975,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302025,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.302123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302123,0.000000,0.000000,0.250000,0,0);}
.m175{transform:matrix(0.302148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302148,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.302423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302423,0.000000,0.000000,0.250000,0,0);}
.m1a4{transform:matrix(0.302473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302473,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.302623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302623,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.302650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302650,0.000000,0.000000,0.250000,0,0);}
.m157{transform:matrix(0.302772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302772,0.000000,0.000000,0.250000,0,0);}
.m122{transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302800,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.302822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302822,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.303098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303098,0.000000,0.000000,0.250000,0,0);}
.m17d{transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303150,0.000000,0.000000,0.250000,0,0);}
.m11b{transform:matrix(0.303225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303225,0.000000,0.000000,0.250000,0,0);}
.m14c{transform:matrix(0.303275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303275,0.000000,0.000000,0.250000,0,0);}
.m16c{transform:matrix(0.303350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303350,0.000000,0.000000,0.250000,0,0);}
.m16f{transform:matrix(0.303550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303550,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.303598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303598,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.303673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303673,0.000000,0.000000,0.250000,0,0);}
.m16b{transform:matrix(0.303975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303975,0.000000,0.000000,0.250000,0,0);}
.m15e{transform:matrix(0.304022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304022,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.304050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304050,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304223,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.304298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304298,0.000000,0.000000,0.250000,0,0);}
.m1ab{transform:matrix(0.304400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304400,0.000000,0.000000,0.250000,0,0);}
.m180{transform:matrix(0.304548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304548,0.000000,0.000000,0.250000,0,0);}
.m107{transform:matrix(0.304572,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304572,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304572,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.304897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304897,0.000000,0.000000,0.250000,0,0);}
.m171{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11a{transform:matrix(0.305123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305123,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.305397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305397,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.305472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305472,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305975,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.306023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306023,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306700,0.000000,0.000000,0.250000,0,0);}
.m177{transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307025,0.000000,0.000000,0.250000,0,0);}
.m109{transform:matrix(0.307175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307175,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.307325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307325,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.307650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307650,0.000000,0.000000,0.250000,0,0);}
.m140{transform:matrix(0.307875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307875,0.000000,0.000000,0.250000,0,0);}
.m129{transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307925,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.308075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308075,0.000000,0.000000,0.250000,0,0);}
.m124{transform:matrix(0.308200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308200,0.000000,0.000000,0.250000,0,0);}
.m12e{transform:matrix(0.308372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308372,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.308625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308625,0.000000,0.000000,0.250000,0,0);}
.m116{transform:matrix(0.308648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308648,0.000000,0.000000,0.250000,0,0);}
.m128{transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309950,0.000000,0.000000,0.250000,0,0);}
.m17a{transform:matrix(0.311200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311200,0.000000,0.000000,0.250000,0,0);}
.m17b{transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313225,0.000000,0.000000,0.250000,0,0);}
.m189{transform:matrix(0.314147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314147,0.000000,0.000000,0.250000,0,0);}
.m125{transform:matrix(0.316848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316848,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1ae{transform:matrix(0.330973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330973,0.000000,0.000000,0.250000,0,0);}
.m136{transform:matrix(0.695725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695725,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,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;}
.fc0{color:transparent;}
.fs3{font-size:33.000000px;}
.fs2{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs0{font-size:51.000000px;}
.fs4{font-size:57.000000px;}
.y0{bottom:0.000000px;}
.y17e{bottom:82.800000px;}
.y155{bottom:83.323500px;}
.y17d{bottom:83.550000px;}
.y17c{bottom:84.150000px;}
.y20{bottom:84.525000px;}
.y11f{bottom:88.050000px;}
.yeb{bottom:88.275000px;}
.yea{bottom:89.400000px;}
.y1a7{bottom:89.775000px;}
.ya5{bottom:96.300000px;}
.y65{bottom:96.598500px;}
.y1f{bottom:97.500000px;}
.y64{bottom:98.175000px;}
.y154{bottom:100.875000px;}
.y1d4{bottom:101.098500px;}
.ye9{bottom:105.598500px;}
.y11e{bottom:105.823500px;}
.y1a6{bottom:106.275000px;}
.y1e{bottom:110.175000px;}
.ya4{bottom:113.848500px;}
.y63{bottom:115.500000px;}
.y153{bottom:117.598500px;}
.y1d3{bottom:118.650000px;}
.y1d{bottom:122.323500px;}
.y11d{bottom:123.375000px;}
.ye8{bottom:123.675000px;}
.y1a5{bottom:123.823500px;}
.ya2{bottom:128.698500px;}
.ya3{bottom:130.348500px;}
.y62{bottom:132.750000px;}
.y1c{bottom:135.000000px;}
.y152{bottom:135.150000px;}
.y1d2{bottom:136.198500px;}
.ye7{bottom:139.875000px;}
.y1a4{bottom:140.848500px;}
.y11c{bottom:140.925000px;}
.y1a3{bottom:141.073500px;}
.y1a2{bottom:141.375000px;}
.ya0{bottom:147.300000px;}
.ya1{bottom:148.948500px;}
.y213{bottom:150.150000px;}
.y61{bottom:150.300000px;}
.y212{bottom:151.500000px;}
.y151{bottom:152.698500px;}
.y211{bottom:152.848500px;}
.y1d1{bottom:153.750000px;}
.ye6{bottom:157.425000px;}
.y11b{bottom:158.473500px;}
.y17b{bottom:158.625000px;}
.y1a1{bottom:158.925000px;}
.y1a0{bottom:159.150000px;}
.y9f{bottom:165.150000px;}
.y60{bottom:166.800000px;}
.y210{bottom:167.400000px;}
.y20f{bottom:168.750000px;}
.y150{bottom:170.250000px;}
.y20e{bottom:170.400000px;}
.y1d0{bottom:171.300000px;}
.ye5{bottom:174.973500px;}
.y11a{bottom:176.025000px;}
.y19f{bottom:176.175000px;}
.y19e{bottom:176.473500px;}
.y1b{bottom:176.625000px;}
.y9c{bottom:181.050000px;}
.y9d{bottom:181.650000px;}
.y9e{bottom:183.223500px;}
.y5f{bottom:184.348500px;}
.y20d{bottom:186.300000px;}
.y20c{bottom:187.425000px;}
.y14f{bottom:187.800000px;}
.y1cf{bottom:189.150000px;}
.ye4{bottom:192.525000px;}
.y17a{bottom:193.723500px;}
.y119{bottom:193.875000px;}
.y1a{bottom:194.400000px;}
.y5e{bottom:201.300000px;}
.y9b{bottom:202.650000px;}
.y20b{bottom:202.800000px;}
.y20a{bottom:204.150000px;}
.y14e{bottom:204.525000px;}
.y209{bottom:205.198500px;}
.y1ce{bottom:206.698500px;}
.ye3{bottom:210.300000px;}
.y179{bottom:211.275000px;}
.y118{bottom:211.425000px;}
.y19{bottom:211.948500px;}
.y5d{bottom:216.973500px;}
.y5c{bottom:219.150000px;}
.y208{bottom:220.348500px;}
.y9a{bottom:220.500000px;}
.y207{bottom:220.650000px;}
.y206{bottom:221.175000px;}
.y14d{bottom:221.550000px;}
.y205{bottom:222.000000px;}
.y19d{bottom:224.250000px;}
.y1cd{bottom:224.550000px;}
.ye2{bottom:227.625000px;}
.y117{bottom:228.973500px;}
.y18{bottom:229.500000px;}
.y5b{bottom:235.875000px;}
.y204{bottom:237.598500px;}
.y5a{bottom:238.048500px;}
.y14c{bottom:239.098500px;}
.y203{bottom:239.250000px;}
.y1cc{bottom:242.098500px;}
.y17{bottom:246.000000px;}
.y178{bottom:246.375000px;}
.ye1{bottom:252.973500px;}
.y59{bottom:253.200000px;}
.y202{bottom:254.400000px;}
.y201{bottom:255.150000px;}
.y58{bottom:255.298500px;}
.y200{bottom:255.973500px;}
.y19c{bottom:256.125000px;}
.y1ff{bottom:256.500000px;}
.y14b{bottom:256.950000px;}
.y1cb{bottom:259.348500px;}
.y116{bottom:262.723500px;}
.y16{bottom:263.548500px;}
.ye0{bottom:268.650000px;}
.y57{bottom:269.625000px;}
.y56{bottom:270.973500px;}
.y98{bottom:272.325000px;}
.y99{bottom:273.450000px;}
.y14a{bottom:274.500000px;}
.y1ca{bottom:277.200000px;}
.y115{bottom:279.973500px;}
.y177{bottom:280.125000px;}
.y15{bottom:281.400000px;}
.ydf{bottom:286.200000px;}
.y55{bottom:288.298500px;}
.y96{bottom:290.700000px;}
.y19b{bottom:290.923500px;}
.y148{bottom:291.750000px;}
.y149{bottom:292.048500px;}
.y97{bottom:292.348500px;}
.y1fe{bottom:292.423500px;}
.y1c9{bottom:294.973500px;}
.y113{bottom:297.000000px;}
.y114{bottom:297.525000px;}
.y14{bottom:298.650000px;}
.yde{bottom:303.750000px;}
.y54{bottom:305.250000px;}
.y95{bottom:307.950000px;}
.y146{bottom:309.298500px;}
.y147{bottom:310.125000px;}
.y1c8{bottom:311.700000px;}
.y112{bottom:314.848500px;}
.y176{bottom:315.223500px;}
.y13{bottom:316.500000px;}
.ydd{bottom:320.473500px;}
.ydc{bottom:321.598500px;}
.ydb{bottom:322.950000px;}
.y53{bottom:323.098500px;}
.y94{bottom:325.798500px;}
.y145{bottom:326.848500px;}
.y1c7{bottom:328.723500px;}
.y111{bottom:332.400000px;}
.y175{bottom:332.775000px;}
.y12{bottom:334.048500px;}
.yda{bottom:338.848500px;}
.y52{bottom:340.950000px;}
.y19a{bottom:342.750000px;}
.y1fd{bottom:343.500000px;}
.y93{bottom:343.650000px;}
.y144{bottom:344.400000px;}
.y1c6{bottom:345.750000px;}
.y110{bottom:350.173500px;}
.y174{bottom:350.325000px;}
.y11{bottom:350.473500px;}
.yd9{bottom:355.575000px;}
.yd8{bottom:356.923500px;}
.yd7{bottom:358.048500px;}
.y51{bottom:358.500000px;}
.y92{bottom:360.598500px;}
.y1fc{bottom:360.750000px;}
.y143{bottom:362.250000px;}
.y1c5{bottom:363.598500px;}
.y10f{bottom:367.500000px;}
.y10{bottom:368.025000px;}
.yd6{bottom:373.950000px;}
.y50{bottom:376.048500px;}
.y1fb{bottom:376.950000px;}
.y90{bottom:377.098500px;}
.y199{bottom:377.848500px;}
.y91{bottom:378.973500px;}
.y142{bottom:379.798500px;}
.y1c4{bottom:381.150000px;}
.y10e{bottom:385.048500px;}
.y173{bottom:385.200000px;}
.yf{bottom:385.575000px;}
.yd5{bottom:391.500000px;}
.y4f{bottom:393.598500px;}
.y1fa{bottom:394.200000px;}
.y8c{bottom:394.348500px;}
.y8d{bottom:395.700000px;}
.y141{bottom:396.525000px;}
.y8e{bottom:396.825000px;}
.y1c3{bottom:397.875000px;}
.y8f{bottom:398.173500px;}
.y10c{bottom:401.775000px;}
.y10d{bottom:402.298500px;}
.ye{bottom:403.125000px;}
.yd4{bottom:407.700000px;}
.y4e{bottom:410.848500px;}
.y1f9{bottom:411.750000px;}
.y198{bottom:411.900000px;}
.y140{bottom:413.775000px;}
.y8b{bottom:414.075000px;}
.y1c2{bottom:415.650000px;}
.y10a{bottom:419.025000px;}
.y10b{bottom:419.548500px;}
.y172{bottom:420.525000px;}
.yd{bottom:420.673500px;}
.yd3{bottom:423.900000px;}
.yd2{bottom:424.950000px;}
.yd1{bottom:425.775000px;}
.yd0{bottom:426.598500px;}
.y4d{bottom:426.750000px;}
.y4c{bottom:428.400000px;}
.y4b{bottom:429.223500px;}
.y1f8{bottom:429.298500px;}
.y13f{bottom:431.325000px;}
.y8a{bottom:431.400000px;}
.y1c1{bottom:432.973500px;}
.y108{bottom:436.048500px;}
.y109{bottom:436.575000px;}
.y170{bottom:437.848500px;}
.y171{bottom:438.075000px;}
.yc{bottom:438.223500px;}
.ycf{bottom:442.500000px;}
.y197{bottom:446.173500px;}
.y4a{bottom:446.473500px;}
.y1f7{bottom:446.848500px;}
.y89{bottom:449.173500px;}
.y1c0{bottom:450.525000px;}
.y16f{bottom:455.625000px;}
.yb{bottom:456.598500px;}
.yce{bottom:460.048500px;}
.y49{bottom:462.450000px;}
.y1f6{bottom:464.400000px;}
.y88{bottom:466.500000px;}
.y13e{bottom:466.723500px;}
.y1bf{bottom:467.548500px;}
.y107{bottom:468.973500px;}
.ya{bottom:472.798500px;}
.ycd{bottom:477.598500px;}
.y48{bottom:479.400000px;}
.y47{bottom:481.048500px;}
.y196{bottom:481.275000px;}
.y46{bottom:481.348500px;}
.y1f5{bottom:482.250000px;}
.y87{bottom:484.275000px;}
.y1be{bottom:484.798500px;}
.y9{bottom:490.048500px;}
.y16e{bottom:491.025000px;}
.ycc{bottom:495.150000px;}
.y45{bottom:496.200000px;}
.y44{bottom:496.723500px;}
.y43{bottom:498.075000px;}
.y106{bottom:498.973500px;}
.y1f4{bottom:500.098500px;}
.y1f3{bottom:500.625000px;}
.y86{bottom:501.825000px;}
.y1bd{bottom:502.048500px;}
.y8{bottom:507.598500px;}
.y16d{bottom:508.575000px;}
.ycb{bottom:511.650000px;}
.yca{bottom:512.473500px;}
.yc9{bottom:513.298500px;}
.yc8{bottom:514.348500px;}
.y42{bottom:514.798500px;}
.y195{bottom:516.375000px;}
.y105{bottom:516.750000px;}
.y1f2{bottom:517.048500px;}
.y85{bottom:519.375000px;}
.y7{bottom:525.150000px;}
.y13d{bottom:529.650000px;}
.yc7{bottom:530.548500px;}
.y41{bottom:531.525000px;}
.y40{bottom:532.348500px;}
.y3f{bottom:533.173500px;}
.y104{bottom:534.298500px;}
.y1f1{bottom:534.598500px;}
.y84{bottom:536.923500px;}
.y16c{bottom:542.848500px;}
.y13c{bottom:547.200000px;}
.yc6{bottom:548.098500px;}
.y3e{bottom:549.375000px;}
.y3d{bottom:550.723500px;}
.y3c{bottom:550.950000px;}
.y103{bottom:551.848500px;}
.y1f0{bottom:551.923500px;}
.y81{bottom:552.598500px;}
.y82{bottom:553.650000px;}
.y1bc{bottom:554.473500px;}
.y83{bottom:555.598500px;}
.y16b{bottom:560.098500px;}
.y6{bottom:561.598500px;}
.y13b{bottom:564.750000px;}
.yc5{bottom:565.125000px;}
.y3b{bottom:567.750000px;}
.y194{bottom:567.973500px;}
.y193{bottom:568.200000px;}
.y102{bottom:569.400000px;}
.y1ef{bottom:569.473500px;}
.y80{bottom:570.973500px;}
.y1bb{bottom:572.025000px;}
.y13a{bottom:582.298500px;}
.yc4{bottom:582.375000px;}
.y3a{bottom:586.650000px;}
.y1ee{bottom:587.025000px;}
.y7f{bottom:588.525000px;}
.y1ba{bottom:589.798500px;}
.y139{bottom:600.075000px;}
.y101{bottom:601.798500px;}
.y192{bottom:603.075000px;}
.y39{bottom:603.375000px;}
.y1ed{bottom:604.575000px;}
.y7e{bottom:606.298500px;}
.y1b9{bottom:610.348500px;}
.y138{bottom:617.400000px;}
.yc3{bottom:618.298500px;}
.y100{bottom:620.173500px;}
.y38{bottom:620.923500px;}
.y1ec{bottom:622.125000px;}
.y7d{bottom:623.098500px;}
.y5{bottom:625.048500px;}
.y1b8{bottom:628.200000px;}
.y16a{bottom:629.548500px;}
.y137{bottom:633.598500px;}
.yff{bottom:637.723500px;}
.y191{bottom:637.875000px;}
.y37{bottom:637.950000px;}
.y190{bottom:638.173500px;}
.y1eb{bottom:638.848500px;}
.y7c{bottom:641.400000px;}
.y4{bottom:642.598500px;}
.y1b7{bottom:645.750000px;}
.y169{bottom:646.798500px;}
.y136{bottom:650.848500px;}
.yfe{bottom:655.048500px;}
.y36{bottom:655.200000px;}
.y1ea{bottom:655.875000px;}
.y7b{bottom:659.250000px;}
.y1b6{bottom:661.650000px;}
.y168{bottom:664.348500px;}
.y134{bottom:667.348500px;}
.y135{bottom:668.700000px;}
.yc2{bottom:669.598500px;}
.y35{bottom:672.750000px;}
.yfd{bottom:672.825000px;}
.y1e9{bottom:673.125000px;}
.y7a{bottom:676.500000px;}
.y1b5{bottom:679.200000px;}
.y167{bottom:681.900000px;}
.yc1{bottom:685.275000px;}
.y133{bottom:685.650000px;}
.yc0{bottom:686.325000px;}
.ybf{bottom:687.450000px;}
.yfc{bottom:690.150000px;}
.y1e8{bottom:690.450000px;}
.y34{bottom:690.825000px;}
.y79{bottom:694.048500px;}
.y3{bottom:694.200000px;}
.y1b4{bottom:696.750000px;}
.y166{bottom:699.150000px;}
.ybe{bottom:703.650000px;}
.y132{bottom:704.025000px;}
.ybd{bottom:705.525000px;}
.yfb{bottom:706.348500px;}
.y33{bottom:707.548500px;}
.y18f{bottom:707.848500px;}
.y1e7{bottom:708.223500px;}
.y76{bottom:710.025000px;}
.y77{bottom:710.548500px;}
.y78{bottom:712.423500px;}
.y1b3{bottom:714.000000px;}
.y165{bottom:716.700000px;}
.ybc{bottom:720.375000px;}
.y131{bottom:721.575000px;}
.ybb{bottom:722.250000px;}
.yf9{bottom:722.775000px;}
.yfa{bottom:723.598500px;}
.y1e6{bottom:724.200000px;}
.y32{bottom:724.348500px;}
.y18e{bottom:725.400000px;}
.y73{bottom:726.450000px;}
.y74{bottom:727.575000px;}
.y75{bottom:729.450000px;}
.y1b2{bottom:731.548500px;}
.y164{bottom:734.548500px;}
.yba{bottom:738.750000px;}
.y130{bottom:739.423500px;}
.yf8{bottom:740.325000px;}
.y31{bottom:740.548500px;}
.y1e5{bottom:741.450000px;}
.y72{bottom:745.348500px;}
.y2{bottom:746.548500px;}
.y1b1{bottom:749.098500px;}
.y163{bottom:751.798500px;}
.y12e{bottom:755.325000px;}
.yb9{bottom:756.298500px;}
.y12f{bottom:756.673500px;}
.y30{bottom:757.798500px;}
.yf7{bottom:758.400000px;}
.y1e4{bottom:758.700000px;}
.y18d{bottom:759.375000px;}
.y18c{bottom:759.673500px;}
.y71{bottom:763.200000px;}
.y1{bottom:763.875000px;}
.y1b0{bottom:766.650000px;}
.y162{bottom:769.650000px;}
.yb8{bottom:773.550000px;}
.y12d{bottom:774.000000px;}
.y2f{bottom:775.050000px;}
.yf6{bottom:775.948500px;}
.y1e3{bottom:776.025000px;}
.y70{bottom:779.925000px;}
.y1af{bottom:785.025000px;}
.y161{bottom:787.198500px;}
.y160{bottom:787.500000px;}
.yb7{bottom:790.800000px;}
.y12c{bottom:792.598500px;}
.y2e{bottom:792.900000px;}
.yf5{bottom:792.973500px;}
.y18b{bottom:793.948500px;}
.y1e2{bottom:794.098500px;}
.y6f{bottom:798.000000px;}
.y1ae{bottom:801.750000px;}
.y15f{bottom:804.750000px;}
.yb6{bottom:808.348500px;}
.y2d{bottom:809.098500px;}
.yf3{bottom:809.698500px;}
.y12b{bottom:810.150000px;}
.y1e1{bottom:810.300000px;}
.y2c{bottom:810.448500px;}
.y1e0{bottom:810.598500px;}
.yf4{bottom:810.823500px;}
.y2b{bottom:811.275000px;}
.y1df{bottom:811.948500px;}
.y6e{bottom:815.550000px;}
.y1ad{bottom:819.300000px;}
.y15e{bottom:822.000000px;}
.y15d{bottom:822.598500px;}
.y12a{bottom:826.050000px;}
.yb5{bottom:826.198500px;}
.yf1{bottom:827.250000px;}
.yf2{bottom:828.375000px;}
.y18a{bottom:828.525000px;}
.y1de{bottom:829.198500px;}
.y6d{bottom:832.875000px;}
.y1ac{bottom:836.848500px;}
.y15c{bottom:838.500000px;}
.yb4{bottom:842.098500px;}
.y128{bottom:842.250000px;}
.y129{bottom:843.375000px;}
.yb3{bottom:843.448500px;}
.yf0{bottom:845.625000px;}
.y189{bottom:846.073500px;}
.y1dd{bottom:846.750000px;}
.y2a{bottom:847.723500px;}
.y6c{bottom:850.425000px;}
.y1ab{bottom:854.698500px;}
.y15b{bottom:855.525000px;}
.y15a{bottom:856.050000px;}
.yb2{bottom:859.125000px;}
.yb1{bottom:860.473500px;}
.yef{bottom:862.125000px;}
.y187{bottom:863.625000px;}
.y188{bottom:863.848500px;}
.y1dc{bottom:864.000000px;}
.y6b{bottom:868.198500px;}
.y1aa{bottom:872.250000px;}
.y159{bottom:873.073500px;}
.y127{bottom:875.250000px;}
.yb0{bottom:878.025000px;}
.yee{bottom:880.500000px;}
.y1db{bottom:880.800000px;}
.y186{bottom:881.175000px;}
.y1da{bottom:882.675000px;}
.y6a{bottom:885.525000px;}
.y1a9{bottom:889.800000px;}
.y158{bottom:890.848500px;}
.y126{bottom:893.025000px;}
.yaf{bottom:895.050000px;}
.yae{bottom:895.573500px;}
.yad{bottom:896.400000px;}
.yed{bottom:898.050000px;}
.y184{bottom:898.723500px;}
.y1d9{bottom:898.875000px;}
.y185{bottom:898.948500px;}
.y69{bottom:902.775000px;}
.y29{bottom:904.650000px;}
.y1a8{bottom:907.348500px;}
.y157{bottom:907.875000px;}
.y156{bottom:908.698500px;}
.y125{bottom:910.573500px;}
.yac{bottom:911.775000px;}
.yab{bottom:912.300000px;}
.yaa{bottom:913.650000px;}
.yec{bottom:915.300000px;}
.y183{bottom:915.448500px;}
.y1d8{bottom:916.650000px;}
.y1d7{bottom:917.775000px;}
.y66{bottom:918.750000px;}
.y67{bottom:919.800000px;}
.y68{bottom:921.150000px;}
.y28{bottom:921.675000px;}
.y182{bottom:942.973500px;}
.y181{bottom:943.275000px;}
.y120{bottom:944.625000px;}
.y121{bottom:945.448500px;}
.y124{bottom:946.198500px;}
.y123{bottom:946.500000px;}
.ya8{bottom:948.000000px;}
.ya7{bottom:948.525000px;}
.ya9{bottom:948.750000px;}
.y180{bottom:949.500000px;}
.ya6{bottom:949.573500px;}
.y17f{bottom:950.025000px;}
.y1d6{bottom:951.750000px;}
.y1d5{bottom:953.098500px;}
.y122{bottom:953.925000px;}
.y25{bottom:954.375000px;}
.y23{bottom:955.425000px;}
.y26{bottom:955.723500px;}
.y27{bottom:956.250000px;}
.y21{bottom:957.073500px;}
.y24{bottom:961.500000px;}
.y22{bottom:964.800000px;}
.h8{height:34.417969px;}
.h7{height:35.211000px;}
.h4{height:40.675781px;}
.h2{height:43.804688px;}
.h1{height:53.191406px;}
.h9{height:55.942383px;}
.h5{height:999.000000px;}
.h6{height:1000.500000px;}
.h0{height:1002.000000px;}
.h3{height:1003.500000px;}
.w0{width:1399.500000px;}
.w1{width:1410.000000px;}
.w2{width:1414.500000px;}
.w3{width:1416.000000px;}
.x0{left:0.000000px;}
.x27{left:94.887000px;}
.x29{left:96.370500px;}
.x25{left:97.420500px;}
.x1b{left:98.545500px;}
.x1a{left:99.909000px;}
.xf{left:100.921500px;}
.x16{left:102.082500px;}
.x59{left:103.467000px;}
.x52{left:104.529000px;}
.x41{left:106.321500px;}
.x4f{left:107.496000px;}
.x4e{left:108.520500px;}
.x93{left:111.118500px;}
.x92{left:112.416000px;}
.x8f{left:113.427000px;}
.x23{left:114.489000px;}
.x1c{left:119.524500px;}
.x17{left:120.874500px;}
.x10{left:122.323500px;}
.x5b{left:123.492000px;}
.x68{left:124.500000px;}
.x6e{left:125.521500px;}
.x7a{left:126.574500px;}
.x42{left:127.725000px;}
.x94{left:131.226000px;}
.x97{left:132.306000px;}
.x8e{left:135.867000px;}
.x1d{left:139.539000px;}
.x7b{left:146.992500px;}
.x5c{left:148.093500px;}
.x6f{left:150.687000px;}
.x8d{left:160.132500px;}
.x71{left:161.529000px;}
.x57{left:174.663000px;}
.x28{left:179.916000px;}
.x5a{left:185.769000px;}
.x9c{left:197.317500px;}
.x53{left:200.944500px;}
.x99{left:212.967000px;}
.x2a{left:216.264000px;}
.x9a{left:217.612500px;}
.x4d{left:222.589500px;}
.x9e{left:224.113500px;}
.x82{left:227.077500px;}
.x90{left:235.663500px;}
.x7d{left:241.710000px;}
.x98{left:247.207500px;}
.x7c{left:251.158500px;}
.x80{left:253.554000px;}
.x88{left:257.908500px;}
.x1e{left:260.617500px;}
.x18{left:266.053500px;}
.x1f{left:274.314000px;}
.x11{left:313.209000px;}
.x69{left:315.384000px;}
.x43{left:318.084000px;}
.x87{left:326.184000px;}
.x24{left:328.870500px;}
.x81{left:333.514500px;}
.x95{left:347.353500px;}
.x56{left:353.496000px;}
.x91{left:355.635000px;}
.x21{left:360.712500px;}
.x83{left:363.177000px;}
.x84{left:370.138500px;}
.x4a{left:390.387000px;}
.x54{left:396.129000px;}
.x20{left:398.841000px;}
.x58{left:412.603500px;}
.x12{left:418.500000px;}
.x6a{left:421.500000px;}
.x44{left:423.900000px;}
.x50{left:427.719000px;}
.x19{left:431.014500px;}
.x7f{left:447.673500px;}
.x7e{left:449.376000px;}
.x48{left:450.969000px;}
.x51{left:457.216500px;}
.x96{left:482.448000px;}
.x9b{left:493.243500px;}
.x9f{left:495.291000px;}
.x26{left:506.662500px;}
.x4b{left:509.802000px;}
.x89{left:513.513000px;}
.x70{left:526.251000px;}
.x8b{left:528.955500px;}
.x2b{left:534.135000px;}
.x85{left:539.695500px;}
.x22{left:546.666000px;}
.x55{left:548.095500px;}
.x2c{left:591.666000px;}
.x4c{left:593.244000px;}
.x2d{left:596.400000px;}
.x9d{left:602.371500px;}
.x49{left:604.602000px;}
.x8a{left:611.415000px;}
.x8c{left:617.833500px;}
.xb{left:765.786000px;}
.xd{left:766.882500px;}
.x6{left:768.108000px;}
.x2e{left:774.927000px;}
.x31{left:775.971000px;}
.x35{left:777.117000px;}
.x3d{left:778.420500px;}
.xe{left:782.370000px;}
.x62{left:784.432500px;}
.x7{left:789.343500px;}
.x1{left:797.406000px;}
.x3e{left:799.618500px;}
.x77{left:801.801000px;}
.x5e{left:803.026500px;}
.x61{left:804.442500px;}
.x63{left:805.543500px;}
.x5{left:808.413000px;}
.x74{left:815.103000px;}
.x34{left:819.712500px;}
.x75{left:822.973500px;}
.x76{left:824.367000px;}
.x5d{left:828.139500px;}
.x86{left:829.173000px;}
.x64{left:830.368500px;}
.x67{left:831.517500px;}
.x36{left:841.564500px;}
.x3a{left:861.139500px;}
.x13{left:866.287500px;}
.x45{left:875.437500px;}
.x60{left:876.765000px;}
.x79{left:878.137500px;}
.x6b{left:879.487500px;}
.x3{left:887.905500px;}
.x32{left:890.437500px;}
.x40{left:891.820500px;}
.x3c{left:896.253000px;}
.x37{left:901.569000px;}
.x73{left:906.994500px;}
.x2{left:908.968500px;}
.x72{left:937.099500px;}
.x66{left:954.343500px;}
.x2f{left:971.841000px;}
.x3f{left:973.677000px;}
.x30{left:976.050000px;}
.x4{left:979.003500px;}
.x78{left:1047.895500px;}
.x38{left:1064.845500px;}
.x33{left:1080.021000px;}
.xc{left:1089.252000px;}
.x8{left:1109.769000px;}
.x39{left:1162.339500px;}
.x5f{left:1203.337500px;}
.x14{left:1212.300000px;}
.x46{left:1220.400000px;}
.x6c{left:1224.973500px;}
.x65{left:1260.877500px;}
.x9{left:1262.353500px;}
.xa{left:1264.944000px;}
.x3b{left:1267.087500px;}
.x15{left:1284.346500px;}
.x47{left:1292.221500px;}
.x6d{left:1295.673000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs3{font-size:29.333333pt;}
.fs2{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs0{font-size:45.333333pt;}
.fs4{font-size:50.666667pt;}
.y0{bottom:0.000000pt;}
.y17e{bottom:73.600000pt;}
.y155{bottom:74.065333pt;}
.y17d{bottom:74.266667pt;}
.y17c{bottom:74.800000pt;}
.y20{bottom:75.133333pt;}
.y11f{bottom:78.266667pt;}
.yeb{bottom:78.466667pt;}
.yea{bottom:79.466667pt;}
.y1a7{bottom:79.800000pt;}
.ya5{bottom:85.600000pt;}
.y65{bottom:85.865333pt;}
.y1f{bottom:86.666667pt;}
.y64{bottom:87.266667pt;}
.y154{bottom:89.666667pt;}
.y1d4{bottom:89.865333pt;}
.ye9{bottom:93.865333pt;}
.y11e{bottom:94.065333pt;}
.y1a6{bottom:94.466667pt;}
.y1e{bottom:97.933333pt;}
.ya4{bottom:101.198667pt;}
.y63{bottom:102.666667pt;}
.y153{bottom:104.532000pt;}
.y1d3{bottom:105.466667pt;}
.y1d{bottom:108.732000pt;}
.y11d{bottom:109.666667pt;}
.ye8{bottom:109.933333pt;}
.y1a5{bottom:110.065333pt;}
.ya2{bottom:114.398667pt;}
.ya3{bottom:115.865333pt;}
.y62{bottom:118.000000pt;}
.y1c{bottom:120.000000pt;}
.y152{bottom:120.133333pt;}
.y1d2{bottom:121.065333pt;}
.ye7{bottom:124.333333pt;}
.y1a4{bottom:125.198667pt;}
.y11c{bottom:125.266667pt;}
.y1a3{bottom:125.398667pt;}
.y1a2{bottom:125.666667pt;}
.ya0{bottom:130.933333pt;}
.ya1{bottom:132.398667pt;}
.y213{bottom:133.466667pt;}
.y61{bottom:133.600000pt;}
.y212{bottom:134.666667pt;}
.y151{bottom:135.732000pt;}
.y211{bottom:135.865333pt;}
.y1d1{bottom:136.666667pt;}
.ye6{bottom:139.933333pt;}
.y11b{bottom:140.865333pt;}
.y17b{bottom:141.000000pt;}
.y1a1{bottom:141.266667pt;}
.y1a0{bottom:141.466667pt;}
.y9f{bottom:146.800000pt;}
.y60{bottom:148.266667pt;}
.y210{bottom:148.800000pt;}
.y20f{bottom:150.000000pt;}
.y150{bottom:151.333333pt;}
.y20e{bottom:151.466667pt;}
.y1d0{bottom:152.266667pt;}
.ye5{bottom:155.532000pt;}
.y11a{bottom:156.466667pt;}
.y19f{bottom:156.600000pt;}
.y19e{bottom:156.865333pt;}
.y1b{bottom:157.000000pt;}
.y9c{bottom:160.933333pt;}
.y9d{bottom:161.466667pt;}
.y9e{bottom:162.865333pt;}
.y5f{bottom:163.865333pt;}
.y20d{bottom:165.600000pt;}
.y20c{bottom:166.600000pt;}
.y14f{bottom:166.933333pt;}
.y1cf{bottom:168.133333pt;}
.ye4{bottom:171.133333pt;}
.y17a{bottom:172.198667pt;}
.y119{bottom:172.333333pt;}
.y1a{bottom:172.800000pt;}
.y5e{bottom:178.933333pt;}
.y9b{bottom:180.133333pt;}
.y20b{bottom:180.266667pt;}
.y20a{bottom:181.466667pt;}
.y14e{bottom:181.800000pt;}
.y209{bottom:182.398667pt;}
.y1ce{bottom:183.732000pt;}
.ye3{bottom:186.933333pt;}
.y179{bottom:187.800000pt;}
.y118{bottom:187.933333pt;}
.y19{bottom:188.398667pt;}
.y5d{bottom:192.865333pt;}
.y5c{bottom:194.800000pt;}
.y208{bottom:195.865333pt;}
.y9a{bottom:196.000000pt;}
.y207{bottom:196.133333pt;}
.y206{bottom:196.600000pt;}
.y14d{bottom:196.933333pt;}
.y205{bottom:197.333333pt;}
.y19d{bottom:199.333333pt;}
.y1cd{bottom:199.600000pt;}
.ye2{bottom:202.333333pt;}
.y117{bottom:203.532000pt;}
.y18{bottom:204.000000pt;}
.y5b{bottom:209.666667pt;}
.y204{bottom:211.198667pt;}
.y5a{bottom:211.598667pt;}
.y14c{bottom:212.532000pt;}
.y203{bottom:212.666667pt;}
.y1cc{bottom:215.198667pt;}
.y17{bottom:218.666667pt;}
.y178{bottom:219.000000pt;}
.ye1{bottom:224.865333pt;}
.y59{bottom:225.066667pt;}
.y202{bottom:226.133333pt;}
.y201{bottom:226.800000pt;}
.y58{bottom:226.932000pt;}
.y200{bottom:227.532000pt;}
.y19c{bottom:227.666667pt;}
.y1ff{bottom:228.000000pt;}
.y14b{bottom:228.400000pt;}
.y1cb{bottom:230.532000pt;}
.y116{bottom:233.532000pt;}
.y16{bottom:234.265333pt;}
.ye0{bottom:238.800000pt;}
.y57{bottom:239.666667pt;}
.y56{bottom:240.865333pt;}
.y98{bottom:242.066667pt;}
.y99{bottom:243.066667pt;}
.y14a{bottom:244.000000pt;}
.y1ca{bottom:246.400000pt;}
.y115{bottom:248.865333pt;}
.y177{bottom:249.000000pt;}
.y15{bottom:250.133333pt;}
.ydf{bottom:254.400000pt;}
.y55{bottom:256.265333pt;}
.y96{bottom:258.400000pt;}
.y19b{bottom:258.598667pt;}
.y148{bottom:259.333333pt;}
.y149{bottom:259.598667pt;}
.y97{bottom:259.865333pt;}
.y1fe{bottom:259.932000pt;}
.y1c9{bottom:262.198667pt;}
.y113{bottom:264.000000pt;}
.y114{bottom:264.466667pt;}
.y14{bottom:265.466667pt;}
.yde{bottom:270.000000pt;}
.y54{bottom:271.333333pt;}
.y95{bottom:273.733333pt;}
.y146{bottom:274.932000pt;}
.y147{bottom:275.666667pt;}
.y1c8{bottom:277.066667pt;}
.y112{bottom:279.865333pt;}
.y176{bottom:280.198667pt;}
.y13{bottom:281.333333pt;}
.ydd{bottom:284.865333pt;}
.ydc{bottom:285.865333pt;}
.ydb{bottom:287.066667pt;}
.y53{bottom:287.198667pt;}
.y94{bottom:289.598667pt;}
.y145{bottom:290.532000pt;}
.y1c7{bottom:292.198667pt;}
.y111{bottom:295.466667pt;}
.y175{bottom:295.800000pt;}
.y12{bottom:296.932000pt;}
.yda{bottom:301.198667pt;}
.y52{bottom:303.066667pt;}
.y19a{bottom:304.666667pt;}
.y1fd{bottom:305.333333pt;}
.y93{bottom:305.466667pt;}
.y144{bottom:306.133333pt;}
.y1c6{bottom:307.333333pt;}
.y110{bottom:311.265333pt;}
.y174{bottom:311.400000pt;}
.y11{bottom:311.532000pt;}
.yd9{bottom:316.066667pt;}
.yd8{bottom:317.265333pt;}
.yd7{bottom:318.265333pt;}
.y51{bottom:318.666667pt;}
.y92{bottom:320.532000pt;}
.y1fc{bottom:320.666667pt;}
.y143{bottom:322.000000pt;}
.y1c5{bottom:323.198667pt;}
.y10f{bottom:326.666667pt;}
.y10{bottom:327.133333pt;}
.yd6{bottom:332.400000pt;}
.y50{bottom:334.265333pt;}
.y1fb{bottom:335.066667pt;}
.y90{bottom:335.198667pt;}
.y199{bottom:335.865333pt;}
.y91{bottom:336.865333pt;}
.y142{bottom:337.598667pt;}
.y1c4{bottom:338.800000pt;}
.y10e{bottom:342.265333pt;}
.y173{bottom:342.400000pt;}
.yf{bottom:342.733333pt;}
.yd5{bottom:348.000000pt;}
.y4f{bottom:349.865333pt;}
.y1fa{bottom:350.400000pt;}
.y8c{bottom:350.532000pt;}
.y8d{bottom:351.733333pt;}
.y141{bottom:352.466667pt;}
.y8e{bottom:352.733333pt;}
.y1c3{bottom:353.666667pt;}
.y8f{bottom:353.932000pt;}
.y10c{bottom:357.133333pt;}
.y10d{bottom:357.598667pt;}
.ye{bottom:358.333333pt;}
.yd4{bottom:362.400000pt;}
.y4e{bottom:365.198667pt;}
.y1f9{bottom:366.000000pt;}
.y198{bottom:366.133333pt;}
.y140{bottom:367.800000pt;}
.y8b{bottom:368.066667pt;}
.y1c2{bottom:369.466667pt;}
.y10a{bottom:372.466667pt;}
.y10b{bottom:372.932000pt;}
.y172{bottom:373.800000pt;}
.yd{bottom:373.932000pt;}
.yd3{bottom:376.800000pt;}
.yd2{bottom:377.733333pt;}
.yd1{bottom:378.466667pt;}
.yd0{bottom:379.198667pt;}
.y4d{bottom:379.333333pt;}
.y4c{bottom:380.800000pt;}
.y4b{bottom:381.532000pt;}
.y1f8{bottom:381.598667pt;}
.y13f{bottom:383.400000pt;}
.y8a{bottom:383.466667pt;}
.y1c1{bottom:384.865333pt;}
.y108{bottom:387.598667pt;}
.y109{bottom:388.066667pt;}
.y170{bottom:389.198667pt;}
.y171{bottom:389.400000pt;}
.yc{bottom:389.532000pt;}
.ycf{bottom:393.333333pt;}
.y197{bottom:396.598667pt;}
.y4a{bottom:396.865333pt;}
.y1f7{bottom:397.198667pt;}
.y89{bottom:399.265333pt;}
.y1c0{bottom:400.466667pt;}
.y16f{bottom:405.000000pt;}
.yb{bottom:405.865333pt;}
.yce{bottom:408.932000pt;}
.y49{bottom:411.066667pt;}
.y1f6{bottom:412.800000pt;}
.y88{bottom:414.666667pt;}
.y13e{bottom:414.865333pt;}
.y1bf{bottom:415.598667pt;}
.y107{bottom:416.865333pt;}
.ya{bottom:420.265333pt;}
.ycd{bottom:424.532000pt;}
.y48{bottom:426.133333pt;}
.y47{bottom:427.598667pt;}
.y196{bottom:427.800000pt;}
.y46{bottom:427.865333pt;}
.y1f5{bottom:428.666667pt;}
.y87{bottom:430.466667pt;}
.y1be{bottom:430.932000pt;}
.y9{bottom:435.598667pt;}
.y16e{bottom:436.466667pt;}
.ycc{bottom:440.133333pt;}
.y45{bottom:441.066667pt;}
.y44{bottom:441.532000pt;}
.y43{bottom:442.733333pt;}
.y106{bottom:443.532000pt;}
.y1f4{bottom:444.532000pt;}
.y1f3{bottom:445.000000pt;}
.y86{bottom:446.066667pt;}
.y1bd{bottom:446.265333pt;}
.y8{bottom:451.198667pt;}
.y16d{bottom:452.066667pt;}
.ycb{bottom:454.800000pt;}
.yca{bottom:455.532000pt;}
.yc9{bottom:456.265333pt;}
.yc8{bottom:457.198667pt;}
.y42{bottom:457.598667pt;}
.y195{bottom:459.000000pt;}
.y105{bottom:459.333333pt;}
.y1f2{bottom:459.598667pt;}
.y85{bottom:461.666667pt;}
.y7{bottom:466.800000pt;}
.y13d{bottom:470.800000pt;}
.yc7{bottom:471.598667pt;}
.y41{bottom:472.466667pt;}
.y40{bottom:473.198667pt;}
.y3f{bottom:473.932000pt;}
.y104{bottom:474.932000pt;}
.y1f1{bottom:475.198667pt;}
.y84{bottom:477.265333pt;}
.y16c{bottom:482.532000pt;}
.y13c{bottom:486.400000pt;}
.yc6{bottom:487.198667pt;}
.y3e{bottom:488.333333pt;}
.y3d{bottom:489.532000pt;}
.y3c{bottom:489.733333pt;}
.y103{bottom:490.532000pt;}
.y1f0{bottom:490.598667pt;}
.y81{bottom:491.198667pt;}
.y82{bottom:492.133333pt;}
.y1bc{bottom:492.865333pt;}
.y83{bottom:493.865333pt;}
.y16b{bottom:497.865333pt;}
.y6{bottom:499.198667pt;}
.y13b{bottom:502.000000pt;}
.yc5{bottom:502.333333pt;}
.y3b{bottom:504.666667pt;}
.y194{bottom:504.865333pt;}
.y193{bottom:505.066667pt;}
.y102{bottom:506.133333pt;}
.y1ef{bottom:506.198667pt;}
.y80{bottom:507.532000pt;}
.y1bb{bottom:508.466667pt;}
.y13a{bottom:517.598667pt;}
.yc4{bottom:517.666667pt;}
.y3a{bottom:521.466667pt;}
.y1ee{bottom:521.800000pt;}
.y7f{bottom:523.133333pt;}
.y1ba{bottom:524.265333pt;}
.y139{bottom:533.400000pt;}
.y101{bottom:534.932000pt;}
.y192{bottom:536.066667pt;}
.y39{bottom:536.333333pt;}
.y1ed{bottom:537.400000pt;}
.y7e{bottom:538.932000pt;}
.y1b9{bottom:542.532000pt;}
.y138{bottom:548.800000pt;}
.yc3{bottom:549.598667pt;}
.y100{bottom:551.265333pt;}
.y38{bottom:551.932000pt;}
.y1ec{bottom:553.000000pt;}
.y7d{bottom:553.865333pt;}
.y5{bottom:555.598667pt;}
.y1b8{bottom:558.400000pt;}
.y16a{bottom:559.598667pt;}
.y137{bottom:563.198667pt;}
.yff{bottom:566.865333pt;}
.y191{bottom:567.000000pt;}
.y37{bottom:567.066667pt;}
.y190{bottom:567.265333pt;}
.y1eb{bottom:567.865333pt;}
.y7c{bottom:570.133333pt;}
.y4{bottom:571.198667pt;}
.y1b7{bottom:574.000000pt;}
.y169{bottom:574.932000pt;}
.y136{bottom:578.532000pt;}
.yfe{bottom:582.265333pt;}
.y36{bottom:582.400000pt;}
.y1ea{bottom:583.000000pt;}
.y7b{bottom:586.000000pt;}
.y1b6{bottom:588.133333pt;}
.y168{bottom:590.532000pt;}
.y134{bottom:593.198667pt;}
.y135{bottom:594.400000pt;}
.yc2{bottom:595.198667pt;}
.y35{bottom:598.000000pt;}
.yfd{bottom:598.066667pt;}
.y1e9{bottom:598.333333pt;}
.y7a{bottom:601.333333pt;}
.y1b5{bottom:603.733333pt;}
.y167{bottom:606.133333pt;}
.yc1{bottom:609.133333pt;}
.y133{bottom:609.466667pt;}
.yc0{bottom:610.066667pt;}
.ybf{bottom:611.066667pt;}
.yfc{bottom:613.466667pt;}
.y1e8{bottom:613.733333pt;}
.y34{bottom:614.066667pt;}
.y79{bottom:616.932000pt;}
.y3{bottom:617.066667pt;}
.y1b4{bottom:619.333333pt;}
.y166{bottom:621.466667pt;}
.ybe{bottom:625.466667pt;}
.y132{bottom:625.800000pt;}
.ybd{bottom:627.133333pt;}
.yfb{bottom:627.865333pt;}
.y33{bottom:628.932000pt;}
.y18f{bottom:629.198667pt;}
.y1e7{bottom:629.532000pt;}
.y76{bottom:631.133333pt;}
.y77{bottom:631.598667pt;}
.y78{bottom:633.265333pt;}
.y1b3{bottom:634.666667pt;}
.y165{bottom:637.066667pt;}
.ybc{bottom:640.333333pt;}
.y131{bottom:641.400000pt;}
.ybb{bottom:642.000000pt;}
.yf9{bottom:642.466667pt;}
.yfa{bottom:643.198667pt;}
.y1e6{bottom:643.733333pt;}
.y32{bottom:643.865333pt;}
.y18e{bottom:644.800000pt;}
.y73{bottom:645.733333pt;}
.y74{bottom:646.733333pt;}
.y75{bottom:648.400000pt;}
.y1b2{bottom:650.265333pt;}
.y164{bottom:652.932000pt;}
.yba{bottom:656.666667pt;}
.y130{bottom:657.265333pt;}
.yf8{bottom:658.066667pt;}
.y31{bottom:658.265333pt;}
.y1e5{bottom:659.066667pt;}
.y72{bottom:662.532000pt;}
.y2{bottom:663.598667pt;}
.y1b1{bottom:665.865333pt;}
.y163{bottom:668.265333pt;}
.y12e{bottom:671.400000pt;}
.yb9{bottom:672.265333pt;}
.y12f{bottom:672.598667pt;}
.y30{bottom:673.598667pt;}
.yf7{bottom:674.133333pt;}
.y1e4{bottom:674.400000pt;}
.y18d{bottom:675.000000pt;}
.y18c{bottom:675.265333pt;}
.y71{bottom:678.400000pt;}
.y1{bottom:679.000000pt;}
.y1b0{bottom:681.466667pt;}
.y162{bottom:684.133333pt;}
.yb8{bottom:687.600000pt;}
.y12d{bottom:688.000000pt;}
.y2f{bottom:688.933333pt;}
.yf6{bottom:689.732000pt;}
.y1e3{bottom:689.800000pt;}
.y70{bottom:693.266667pt;}
.y1af{bottom:697.800000pt;}
.y161{bottom:699.732000pt;}
.y160{bottom:700.000000pt;}
.yb7{bottom:702.933333pt;}
.y12c{bottom:704.532000pt;}
.y2e{bottom:704.800000pt;}
.yf5{bottom:704.865333pt;}
.y18b{bottom:705.732000pt;}
.y1e2{bottom:705.865333pt;}
.y6f{bottom:709.333333pt;}
.y1ae{bottom:712.666667pt;}
.y15f{bottom:715.333333pt;}
.yb6{bottom:718.532000pt;}
.y2d{bottom:719.198667pt;}
.yf3{bottom:719.732000pt;}
.y12b{bottom:720.133333pt;}
.y1e1{bottom:720.266667pt;}
.y2c{bottom:720.398667pt;}
.y1e0{bottom:720.532000pt;}
.yf4{bottom:720.732000pt;}
.y2b{bottom:721.133333pt;}
.y1df{bottom:721.732000pt;}
.y6e{bottom:724.933333pt;}
.y1ad{bottom:728.266667pt;}
.y15e{bottom:730.666667pt;}
.y15d{bottom:731.198667pt;}
.y12a{bottom:734.266667pt;}
.yb5{bottom:734.398667pt;}
.yf1{bottom:735.333333pt;}
.yf2{bottom:736.333333pt;}
.y18a{bottom:736.466667pt;}
.y1de{bottom:737.065333pt;}
.y6d{bottom:740.333333pt;}
.y1ac{bottom:743.865333pt;}
.y15c{bottom:745.333333pt;}
.yb4{bottom:748.532000pt;}
.y128{bottom:748.666667pt;}
.y129{bottom:749.666667pt;}
.yb3{bottom:749.732000pt;}
.yf0{bottom:751.666667pt;}
.y189{bottom:752.065333pt;}
.y1dd{bottom:752.666667pt;}
.y2a{bottom:753.532000pt;}
.y6c{bottom:755.933333pt;}
.y1ab{bottom:759.732000pt;}
.y15b{bottom:760.466667pt;}
.y15a{bottom:760.933333pt;}
.yb2{bottom:763.666667pt;}
.yb1{bottom:764.865333pt;}
.yef{bottom:766.333333pt;}
.y187{bottom:767.666667pt;}
.y188{bottom:767.865333pt;}
.y1dc{bottom:768.000000pt;}
.y6b{bottom:771.732000pt;}
.y1aa{bottom:775.333333pt;}
.y159{bottom:776.065333pt;}
.y127{bottom:778.000000pt;}
.yb0{bottom:780.466667pt;}
.yee{bottom:782.666667pt;}
.y1db{bottom:782.933333pt;}
.y186{bottom:783.266667pt;}
.y1da{bottom:784.600000pt;}
.y6a{bottom:787.133333pt;}
.y1a9{bottom:790.933333pt;}
.y158{bottom:791.865333pt;}
.y126{bottom:793.800000pt;}
.yaf{bottom:795.600000pt;}
.yae{bottom:796.065333pt;}
.yad{bottom:796.800000pt;}
.yed{bottom:798.266667pt;}
.y184{bottom:798.865333pt;}
.y1d9{bottom:799.000000pt;}
.y185{bottom:799.065333pt;}
.y69{bottom:802.466667pt;}
.y29{bottom:804.133333pt;}
.y1a8{bottom:806.532000pt;}
.y157{bottom:807.000000pt;}
.y156{bottom:807.732000pt;}
.y125{bottom:809.398667pt;}
.yac{bottom:810.466667pt;}
.yab{bottom:810.933333pt;}
.yaa{bottom:812.133333pt;}
.yec{bottom:813.600000pt;}
.y183{bottom:813.732000pt;}
.y1d8{bottom:814.800000pt;}
.y1d7{bottom:815.800000pt;}
.y66{bottom:816.666667pt;}
.y67{bottom:817.600000pt;}
.y68{bottom:818.800000pt;}
.y28{bottom:819.266667pt;}
.y182{bottom:838.198667pt;}
.y181{bottom:838.466667pt;}
.y120{bottom:839.666667pt;}
.y121{bottom:840.398667pt;}
.y124{bottom:841.065333pt;}
.y123{bottom:841.333333pt;}
.ya8{bottom:842.666667pt;}
.ya7{bottom:843.133333pt;}
.ya9{bottom:843.333333pt;}
.y180{bottom:844.000000pt;}
.ya6{bottom:844.065333pt;}
.y17f{bottom:844.466667pt;}
.y1d6{bottom:846.000000pt;}
.y1d5{bottom:847.198667pt;}
.y122{bottom:847.933333pt;}
.y25{bottom:848.333333pt;}
.y23{bottom:849.266667pt;}
.y26{bottom:849.532000pt;}
.y27{bottom:850.000000pt;}
.y21{bottom:850.732000pt;}
.y24{bottom:854.666667pt;}
.y22{bottom:857.600000pt;}
.h8{height:30.593750pt;}
.h7{height:31.298667pt;}
.h4{height:36.156250pt;}
.h2{height:38.937500pt;}
.h1{height:47.281250pt;}
.h9{height:49.726562pt;}
.h5{height:888.000000pt;}
.h6{height:889.333333pt;}
.h0{height:890.666667pt;}
.h3{height:892.000000pt;}
.w0{width:1244.000000pt;}
.w1{width:1253.333333pt;}
.w2{width:1257.333333pt;}
.w3{width:1258.666667pt;}
.x0{left:0.000000pt;}
.x27{left:84.344000pt;}
.x29{left:85.662667pt;}
.x25{left:86.596000pt;}
.x1b{left:87.596000pt;}
.x1a{left:88.808000pt;}
.xf{left:89.708000pt;}
.x16{left:90.740000pt;}
.x59{left:91.970667pt;}
.x52{left:92.914667pt;}
.x41{left:94.508000pt;}
.x4f{left:95.552000pt;}
.x4e{left:96.462667pt;}
.x93{left:98.772000pt;}
.x92{left:99.925333pt;}
.x8f{left:100.824000pt;}
.x23{left:101.768000pt;}
.x1c{left:106.244000pt;}
.x17{left:107.444000pt;}
.x10{left:108.732000pt;}
.x5b{left:109.770667pt;}
.x68{left:110.666667pt;}
.x6e{left:111.574667pt;}
.x7a{left:112.510667pt;}
.x42{left:113.533333pt;}
.x94{left:116.645333pt;}
.x97{left:117.605333pt;}
.x8e{left:120.770667pt;}
.x1d{left:124.034667pt;}
.x7b{left:130.660000pt;}
.x5c{left:131.638667pt;}
.x6f{left:133.944000pt;}
.x8d{left:142.340000pt;}
.x71{left:143.581333pt;}
.x57{left:155.256000pt;}
.x28{left:159.925333pt;}
.x5a{left:165.128000pt;}
.x9c{left:175.393333pt;}
.x53{left:178.617333pt;}
.x99{left:189.304000pt;}
.x2a{left:192.234667pt;}
.x9a{left:193.433333pt;}
.x4d{left:197.857333pt;}
.x9e{left:199.212000pt;}
.x82{left:201.846667pt;}
.x90{left:209.478667pt;}
.x7d{left:214.853333pt;}
.x98{left:219.740000pt;}
.x7c{left:223.252000pt;}
.x80{left:225.381333pt;}
.x88{left:229.252000pt;}
.x1e{left:231.660000pt;}
.x18{left:236.492000pt;}
.x1f{left:243.834667pt;}
.x11{left:278.408000pt;}
.x69{left:280.341333pt;}
.x43{left:282.741333pt;}
.x87{left:289.941333pt;}
.x24{left:292.329333pt;}
.x81{left:296.457333pt;}
.x95{left:308.758667pt;}
.x56{left:314.218667pt;}
.x91{left:316.120000pt;}
.x21{left:320.633333pt;}
.x83{left:322.824000pt;}
.x84{left:329.012000pt;}
.x4a{left:347.010667pt;}
.x54{left:352.114667pt;}
.x20{left:354.525333pt;}
.x58{left:366.758667pt;}
.x12{left:372.000000pt;}
.x6a{left:374.666667pt;}
.x44{left:376.800000pt;}
.x50{left:380.194667pt;}
.x19{left:383.124000pt;}
.x7f{left:397.932000pt;}
.x7e{left:399.445333pt;}
.x48{left:400.861333pt;}
.x51{left:406.414667pt;}
.x96{left:428.842667pt;}
.x9b{left:438.438667pt;}
.x9f{left:440.258667pt;}
.x26{left:450.366667pt;}
.x4b{left:453.157333pt;}
.x89{left:456.456000pt;}
.x70{left:467.778667pt;}
.x8b{left:470.182667pt;}
.x2b{left:474.786667pt;}
.x85{left:479.729333pt;}
.x22{left:485.925333pt;}
.x55{left:487.196000pt;}
.x2c{left:525.925333pt;}
.x4c{left:527.328000pt;}
.x2d{left:530.133333pt;}
.x9d{left:535.441333pt;}
.x49{left:537.424000pt;}
.x8a{left:543.480000pt;}
.x8c{left:549.185333pt;}
.xb{left:680.698667pt;}
.xd{left:681.673333pt;}
.x6{left:682.762667pt;}
.x2e{left:688.824000pt;}
.x31{left:689.752000pt;}
.x35{left:690.770667pt;}
.x3d{left:691.929333pt;}
.xe{left:695.440000pt;}
.x62{left:697.273333pt;}
.x7{left:701.638667pt;}
.x1{left:708.805333pt;}
.x3e{left:710.772000pt;}
.x77{left:712.712000pt;}
.x5e{left:713.801333pt;}
.x61{left:715.060000pt;}
.x63{left:716.038667pt;}
.x5{left:718.589333pt;}
.x74{left:724.536000pt;}
.x34{left:728.633333pt;}
.x75{left:731.532000pt;}
.x76{left:732.770667pt;}
.x5d{left:736.124000pt;}
.x86{left:737.042667pt;}
.x64{left:738.105333pt;}
.x67{left:739.126667pt;}
.x36{left:748.057333pt;}
.x3a{left:765.457333pt;}
.x13{left:770.033333pt;}
.x45{left:778.166667pt;}
.x60{left:779.346667pt;}
.x79{left:780.566667pt;}
.x6b{left:781.766667pt;}
.x3{left:789.249333pt;}
.x32{left:791.500000pt;}
.x40{left:792.729333pt;}
.x3c{left:796.669333pt;}
.x37{left:801.394667pt;}
.x73{left:806.217333pt;}
.x2{left:807.972000pt;}
.x72{left:832.977333pt;}
.x66{left:848.305333pt;}
.x2f{left:863.858667pt;}
.x3f{left:865.490667pt;}
.x30{left:867.600000pt;}
.x4{left:870.225333pt;}
.x78{left:931.462667pt;}
.x38{left:946.529333pt;}
.x33{left:960.018667pt;}
.xc{left:968.224000pt;}
.x8{left:986.461333pt;}
.x39{left:1033.190667pt;}
.x5f{left:1069.633333pt;}
.x14{left:1077.600000pt;}
.x46{left:1084.800000pt;}
.x6c{left:1088.865333pt;}
.x65{left:1120.780000pt;}
.x9{left:1122.092000pt;}
.xa{left:1124.394667pt;}
.x3b{left:1126.300000pt;}
.x15{left:1141.641333pt;}
.x47{left:1148.641333pt;}
.x6d{left:1151.709333pt;}
}




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