
    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_cf62999d5b4d2b97e18c5163.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.057000;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_4779b47d32ae88e435383e4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959633;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_75f23caca27a5bc38c268f91.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.131000;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_30fb945edef5cc2180faf8c2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.125000;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_a8e8fff15a5a9b158ba21473.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.677000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3378dfc64691e959c71b32f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.846000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_49b0c52d429c83aeedce64ae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_65e4b5ab5ce39378e2940bab.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_47b46eda3b5506064c0b8ed7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0aeeef2dae6578c2045b23d9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a8e8fff15a5a9b158ba21473.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.677000;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:ffc;src:url('chunks/assets/font_24d5648e59e892c597ff111e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666000;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:ffd;src:url('chunks/assets/font_9f760149585abc9cde86dfac.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.693359;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:ffe;src:url('chunks/assets/font_45600f28a00ad83e857b4292.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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;}
.m21{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m52{transform:matrix(0.240189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240189,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242650,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.242823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242823,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.242856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242856,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.242930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242930,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.243036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243036,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.243083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243083,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.243248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243248,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.243407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243407,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.243445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243445,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.243705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243705,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.243866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243866,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243880,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.244327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244327,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.244523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244523,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.244782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244782,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.244993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244993,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245057,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245095,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.245261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245261,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.245341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245341,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.245382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245382,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.245457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245457,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.245598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245598,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245655,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245700,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245870,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.245873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245873,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.245905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245905,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245930,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.246089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246089,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.246252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246252,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.246416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246416,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.246439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246439,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.246456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246456,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246477,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246541,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246557,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246600,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.246786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246786,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.246891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246891,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246905,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246941,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.247102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247102,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247170,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.247195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247195,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247411,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247532,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247768,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247816,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.247884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247884,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248059,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248111,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.248114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248114,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248195,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248227,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248368,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248382,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248432,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248441,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248459,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248505,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248509,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248541,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248552,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248573,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248648,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.248661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248661,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248720,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248745,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248786,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249018,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249045,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249145,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249220,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249493,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249555,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249566,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249593,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249682,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249768,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249802,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249848,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250084,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250186,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250205,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250211,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250314,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250391,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250443,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250498,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250566,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250716,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250743,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250786,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.250816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250816,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250914,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251139,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251157,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251336,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251375,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251380,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251464,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251584,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251630,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251714,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251864,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.251877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251877,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251886,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251973,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252134,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.252277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252277,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252302,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252375,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252475,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252548,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252570,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.252602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252602,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252632,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.252673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252673,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.252761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252761,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252766,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252830,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.252934,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252934,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252934,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252964,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253055,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253184,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253198,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.253370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253370,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.253384,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253384,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253384,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.253411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253411,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253502,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253816,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.253961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253961,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.254093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254093,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.254186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254186,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254286,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.254316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254316,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254639,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.254677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254677,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254855,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.254861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254861,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254952,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.254973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254973,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254986,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.255014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255014,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.255291,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255291,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255291,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.255523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255523,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.255609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255609,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.255698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255698,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255882,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.256286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256286,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.256755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256755,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257280,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.257355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257355,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.257480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257480,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.980000px;}
.v2{vertical-align:21.978000px;}
.v3{vertical-align:25.973400px;}
.v1{vertical-align:180.000000px;}
.ls11{letter-spacing:-0.924000px;}
.ls1c{letter-spacing:-0.858000px;}
.ls7{letter-spacing:-0.792000px;}
.ls12{letter-spacing:-0.726000px;}
.ls19{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.660000px;}
.lsc{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.528000px;}
.ls17{letter-spacing:-0.486000px;}
.ls1b{letter-spacing:-0.462000px;}
.ls1{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.264000px;}
.lsa{letter-spacing:-0.198000px;}
.ls5{letter-spacing:-0.132000px;}
.ls9{letter-spacing:-0.066000px;}
.ls0{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.033000px;}
.lse{letter-spacing:0.043557px;}
.ls10{letter-spacing:0.054000px;}
.ls2{letter-spacing:0.066000px;}
.ls1a{letter-spacing:0.099000px;}
.ls14{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.132000px;}
.ls1d{letter-spacing:0.165000px;}
.ls4{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.264000px;}
.ls15{letter-spacing:0.923400px;}
.ls16{letter-spacing:1.857806px;}
.lsf{letter-spacing:2.394985px;}
.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;}
}
.ws3{word-spacing:-79.503570px;}
.ws2d{word-spacing:-14.619000px;}
.ws24{word-spacing:-14.586000px;}
.ws23{word-spacing:-14.553000px;}
.ws28{word-spacing:-14.520000px;}
.ws1a{word-spacing:-14.454000px;}
.ws2b{word-spacing:-14.388000px;}
.ws20{word-spacing:-14.322000px;}
.ws22{word-spacing:-14.256000px;}
.ws25{word-spacing:-13.992000px;}
.ws4{word-spacing:-13.332000px;}
.ws21{word-spacing:-13.266000px;}
.ws12{word-spacing:-13.200000px;}
.ws17{word-spacing:-13.134000px;}
.ws27{word-spacing:-12.540000px;}
.ws26{word-spacing:-12.408000px;}
.ws11{word-spacing:-12.276000px;}
.ws2c{word-spacing:-11.826000px;}
.ws1b{word-spacing:-10.800000px;}
.ws2{word-spacing:-3.498000px;}
.ws15{word-spacing:-0.264000px;}
.ws8{word-spacing:-0.198000px;}
.ws6{word-spacing:-0.132000px;}
.ws18{word-spacing:-0.108000px;}
.ws5{word-spacing:-0.066000px;}
.ws16{word-spacing:-0.054000px;}
.ws0{word-spacing:-0.048000px;}
.ws10{word-spacing:-0.039000px;}
.ws19{word-spacing:-0.034980px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.066000px;}
.ws7{word-spacing:0.132000px;}
.wsd{word-spacing:0.198000px;}
.wsb{word-spacing:0.264000px;}
.ws1c{word-spacing:0.432000px;}
.ws29{word-spacing:0.462000px;}
.ws1d{word-spacing:0.486000px;}
.wse{word-spacing:0.528000px;}
.ws1e{word-spacing:0.540000px;}
.wsf{word-spacing:0.594000px;}
.ws9{word-spacing:0.660000px;}
.ws1f{word-spacing:0.702000px;}
.ws14{word-spacing:0.726000px;}
.wsa{word-spacing:0.792000px;}
.ws2a{word-spacing:0.858000px;}
.ws13{word-spacing:0.924000px;}
._7{margin-left:-14.610000px;}
._6{margin-left:-13.569000px;}
._8{margin-left:-12.240600px;}
._a{margin-left:-10.983600px;}
._3{margin-left:-6.624000px;}
._2{margin-left:-3.840000px;}
._0{margin-left:-2.028000px;}
._9{margin-left:-1.004400px;}
._4{width:1.528800px;}
._1{width:2.673600px;}
._5{width:3.714000px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs6{font-size:38.478000px;}
.fs5{font-size:39.000000px;}
.fs7{font-size:45.474000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:78.000000px;}
.fs3{font-size:363.030000px;}
.y0{bottom:0.000000px;}
.y40{bottom:106.299150px;}
.y2a{bottom:106.299300px;}
.yac{bottom:125.049150px;}
.y63{bottom:125.799150px;}
.y83{bottom:125.799300px;}
.y129{bottom:128.616750px;}
.y109{bottom:128.625900px;}
.y3f{bottom:128.846250px;}
.y148{bottom:129.057900px;}
.y29{bottom:129.163350px;}
.ycb{bottom:129.323550px;}
.ye9{bottom:129.792000px;}
.yab{bottom:143.799150px;}
.y82{bottom:145.299300px;}
.y16e{bottom:150.229500px;}
.y128{bottom:150.934350px;}
.y108{bottom:150.952500px;}
.y3e{bottom:151.393200px;}
.y147{bottom:151.816500px;}
.y28{bottom:152.027550px;}
.yca{bottom:152.347950px;}
.ye8{bottom:153.284700px;}
.yaa{bottom:162.549150px;}
.y81{bottom:164.799300px;}
.y62{bottom:167.237250px;}
.y16d{bottom:172.579350px;}
.y127{bottom:173.251950px;}
.y107{bottom:173.279250px;}
.y3d{bottom:173.940150px;}
.y146{bottom:174.575250px;}
.y27{bottom:174.891750px;}
.yc9{bottom:175.372350px;}
.ya9{bottom:181.299150px;}
.y80{bottom:184.299300px;}
.ye7{bottom:185.281500px;}
.y61{bottom:189.587250px;}
.y16c{bottom:194.929500px;}
.y126{bottom:195.569550px;}
.y106{bottom:195.605850px;}
.y3c{bottom:196.487100px;}
.y145{bottom:197.333850px;}
.y26{bottom:197.755800px;}
.yc8{bottom:198.396750px;}
.ya8{bottom:200.049150px;}
.y7f{bottom:203.799300px;}
.ye6{bottom:208.774200px;}
.y60{bottom:211.937250px;}
.y16b{bottom:217.279500px;}
.y125{bottom:217.887150px;}
.y105{bottom:217.932600px;}
.ya7{bottom:218.799150px;}
.y3b{bottom:219.034050px;}
.y144{bottom:220.092450px;}
.y25{bottom:220.620000px;}
.yc7{bottom:221.421150px;}
.ye5{bottom:232.267050px;}
.y5f{bottom:234.287250px;}
.y187{bottom:235.579350px;}
.ya6{bottom:237.549150px;}
.y16a{bottom:239.629500px;}
.y124{bottom:240.204600px;}
.y104{bottom:240.259200px;}
.y3a{bottom:241.581000px;}
.y143{bottom:242.851050px;}
.y24{bottom:243.484050px;}
.yc6{bottom:244.445550px;}
.y7e{bottom:248.537250px;}
.ye4{bottom:255.759900px;}
.ya5{bottom:256.299150px;}
.y5e{bottom:256.637250px;}
.y186{bottom:258.079350px;}
.y169{bottom:261.979500px;}
.y123{bottom:262.522200px;}
.y103{bottom:262.585950px;}
.y39{bottom:264.127950px;}
.y142{bottom:265.609800px;}
.y23{bottom:266.348250px;}
.yc5{bottom:267.469800px;}
.y7d{bottom:271.187250px;}
.ya4{bottom:275.049150px;}
.y5d{bottom:278.987250px;}
.ye3{bottom:279.252600px;}
.y185{bottom:280.579350px;}
.y168{bottom:284.329350px;}
.y122{bottom:284.839800px;}
.y102{bottom:284.912550px;}
.y38{bottom:286.674900px;}
.y141{bottom:288.368400px;}
.y22{bottom:289.212300px;}
.yc4{bottom:290.494200px;}
.ya3{bottom:293.799150px;}
.y7c{bottom:293.837250px;}
.y5c{bottom:301.337250px;}
.ye2{bottom:302.745450px;}
.y184{bottom:303.079350px;}
.y167{bottom:306.679500px;}
.y121{bottom:307.157400px;}
.y101{bottom:307.239300px;}
.y37{bottom:309.221850px;}
.y140{bottom:311.127000px;}
.y21{bottom:312.076500px;}
.ya2{bottom:312.549150px;}
.yc3{bottom:313.518600px;}
.y7b{bottom:316.487250px;}
.y5b{bottom:323.687250px;}
.y183{bottom:325.579350px;}
.ye1{bottom:326.238150px;}
.y166{bottom:329.029500px;}
.y120{bottom:329.475000px;}
.y100{bottom:329.565900px;}
.ya1{bottom:331.299150px;}
.y36{bottom:331.768800px;}
.y13f{bottom:333.885600px;}
.y20{bottom:334.940550px;}
.yc2{bottom:336.543000px;}
.y7a{bottom:339.137250px;}
.y5a{bottom:346.037250px;}
.y182{bottom:348.079350px;}
.ye0{bottom:349.731000px;}
.y165{bottom:351.379500px;}
.y11f{bottom:351.792600px;}
.yff{bottom:351.892650px;}
.y35{bottom:354.315750px;}
.y1f{bottom:357.804750px;}
.yc1{bottom:359.567400px;}
.y79{bottom:361.787250px;}
.y13e{bottom:365.148150px;}
.ya0{bottom:367.059750px;}
.y59{bottom:368.387250px;}
.y181{bottom:370.579350px;}
.y164{bottom:373.729500px;}
.y11e{bottom:374.110200px;}
.yfe{bottom:374.219250px;}
.y34{bottom:376.862850px;}
.y1e{bottom:380.668800px;}
.ydf{bottom:381.727650px;}
.yc0{bottom:382.591800px;}
.y78{bottom:384.437250px;}
.y13d{bottom:387.906900px;}
.y9f{bottom:389.559750px;}
.y58{bottom:390.737250px;}
.y180{bottom:393.079350px;}
.y163{bottom:396.079350px;}
.y11d{bottom:396.427800px;}
.yfd{bottom:396.546000px;}
.y33{bottom:399.409800px;}
.y1d{bottom:403.533000px;}
.yde{bottom:405.220500px;}
.ybf{bottom:405.616200px;}
.y77{bottom:407.087250px;}
.y13c{bottom:410.665350px;}
.y9e{bottom:412.059750px;}
.y57{bottom:413.087250px;}
.y17f{bottom:415.579350px;}
.y162{bottom:418.429500px;}
.y11c{bottom:418.745250px;}
.yfc{bottom:418.872600px;}
.y32{bottom:421.956750px;}
.y1c{bottom:426.397050px;}
.y150{bottom:427.376550px;}
.ydd{bottom:428.713200px;}
.y76{bottom:429.737250px;}
.y13b{bottom:433.424100px;}
.y56{bottom:435.437250px;}
.ybe{bottom:437.144400px;}
.y17e{bottom:438.079350px;}
.y9{bottom:438.839850px;}
.y161{bottom:440.779500px;}
.y11b{bottom:441.062850px;}
.yfb{bottom:441.199200px;}
.y9d{bottom:443.063550px;}
.y31{bottom:444.503700px;}
.y1b{bottom:449.261250px;}
.y14f{bottom:449.703150px;}
.ydc{bottom:452.206050px;}
.y75{bottom:452.387250px;}
.y13a{bottom:456.182700px;}
.y55{bottom:457.787250px;}
.y7{bottom:457.869750px;}
.ybd{bottom:460.168800px;}
.y17d{bottom:460.579350px;}
.y15f{bottom:463.129500px;}
.y11a{bottom:463.380450px;}
.yfa{bottom:463.525950px;}
.y9c{bottom:465.563550px;}
.y30{bottom:467.050650px;}
.y160{bottom:468.624000px;}
.y14e{bottom:472.029900px;}
.y1a{bottom:472.125300px;}
.y74{bottom:475.037250px;}
.y6{bottom:475.869750px;}
.y139{bottom:478.941300px;}
.y54{bottom:480.137250px;}
.y17c{bottom:483.079350px;}
.ybc{bottom:483.193200px;}
.ydb{bottom:484.202700px;}
.y15e{bottom:485.479500px;}
.y119{bottom:485.698050px;}
.yf9{bottom:485.852550px;}
.y9b{bottom:488.063550px;}
.y2f{bottom:489.597600px;}
.y19{bottom:494.989500px;}
.y73{bottom:497.687250px;}
.y138{bottom:501.699900px;}
.y53{bottom:502.487250px;}
.y14d{bottom:502.860450px;}
.y17b{bottom:505.579350px;}
.yda{bottom:507.695550px;}
.y15d{bottom:507.829500px;}
.y118{bottom:508.015650px;}
.y9a{bottom:510.563550px;}
.y2e{bottom:512.144550px;}
.ybb{bottom:514.721550px;}
.yf8{bottom:516.683250px;}
.y18{bottom:517.853550px;}
.y72{bottom:520.337250px;}
.y137{bottom:524.458650px;}
.y52{bottom:524.837250px;}
.y14c{bottom:525.187200px;}
.y5{bottom:527.655150px;}
.y17a{bottom:528.079350px;}
.y15c{bottom:530.179350px;}
.y117{bottom:530.333250px;}
.yd9{bottom:531.188250px;}
.y99{bottom:533.063550px;}
.y2d{bottom:534.691500px;}
.yba{bottom:537.745950px;}
.yf7{bottom:539.009850px;}
.y17{bottom:540.717750px;}
.y71{bottom:542.987250px;}
.y4{bottom:545.655150px;}
.y51{bottom:547.187250px;}
.y136{bottom:547.217250px;}
.y14b{bottom:547.513800px;}
.y179{bottom:550.579350px;}
.y15b{bottom:552.529500px;}
.yd8{bottom:554.681100px;}
.y98{bottom:555.563550px;}
.y2c{bottom:557.238450px;}
.yb9{bottom:560.770350px;}
.y116{bottom:561.154650px;}
.yf6{bottom:561.336600px;}
.y16{bottom:563.581950px;}
.y70{bottom:565.637250px;}
.y3{bottom:568.151250px;}
.y50{bottom:569.537250px;}
.y14a{bottom:569.840550px;}
.y135{bottom:569.975850px;}
.y15a{bottom:574.879500px;}
.y97{bottom:578.063550px;}
.yd7{bottom:578.173800px;}
.y178{bottom:581.583300px;}
.y115{bottom:583.472400px;}
.yf5{bottom:583.663200px;}
.yb8{bottom:583.794600px;}
.y15{bottom:586.446000px;}
.y6f{bottom:588.287250px;}
.y4f{bottom:591.887250px;}
.y149{bottom:592.167150px;}
.y134{bottom:592.734450px;}
.y159{bottom:597.229500px;}
.y96{bottom:600.563550px;}
.yd6{bottom:601.666650px;}
.y177{bottom:604.083300px;}
.y114{bottom:605.789850px;}
.yb7{bottom:606.819000px;}
.y14{bottom:609.310200px;}
.y6e{bottom:610.937250px;}
.y41{bottom:611.324400px;}
.y8d{bottom:612.437250px;}
.y4e{bottom:614.237250px;}
.yf4{bottom:614.493750px;}
.y133{bottom:615.493050px;}
.yd5{bottom:625.159350px;}
.y176{bottom:626.583300px;}
.y158{bottom:628.083300px;}
.y113{bottom:628.107450px;}
.yb6{bottom:629.843400px;}
.y95{bottom:631.567500px;}
.y13{bottom:632.174250px;}
.y6d{bottom:633.587250px;}
.y8c{bottom:634.937250px;}
.y4d{bottom:636.587250px;}
.yf3{bottom:636.820500px;}
.y132{bottom:638.251800px;}
.yd4{bottom:648.652200px;}
.y175{bottom:649.083300px;}
.y112{bottom:650.425050px;}
.y157{bottom:650.433450px;}
.yb5{bottom:652.867800px;}
.y94{bottom:654.067500px;}
.y12{bottom:655.038450px;}
.y6c{bottom:656.237250px;}
.y8b{bottom:657.437250px;}
.y4c{bottom:658.937250px;}
.yf2{bottom:659.147250px;}
.y131{bottom:669.514350px;}
.y174{bottom:671.583300px;}
.yd3{bottom:672.144900px;}
.y111{bottom:672.742650px;}
.y156{bottom:672.783300px;}
.yb4{bottom:675.892200px;}
.y93{bottom:676.567500px;}
.y11{bottom:677.902500px;}
.y6b{bottom:678.887250px;}
.y8a{bottom:679.937250px;}
.y4b{bottom:681.287250px;}
.yf1{bottom:681.473850px;}
.y130{bottom:692.272950px;}
.y173{bottom:694.083300px;}
.y110{bottom:695.060250px;}
.y155{bottom:695.133300px;}
.yd2{bottom:695.637750px;}
.yb3{bottom:698.916600px;}
.y92{bottom:699.067500px;}
.y10{bottom:700.766700px;}
.y6a{bottom:701.537250px;}
.y89{bottom:702.437250px;}
.y4a{bottom:703.637250px;}
.yf0{bottom:703.800450px;}
.y12f{bottom:715.031550px;}
.y172{bottom:716.583300px;}
.y154{bottom:717.483450px;}
.yd1{bottom:719.130450px;}
.y91{bottom:721.567500px;}
.yb2{bottom:721.940850px;}
.yf{bottom:723.630750px;}
.y69{bottom:724.187250px;}
.y88{bottom:724.937250px;}
.y10f{bottom:725.881650px;}
.y49{bottom:725.987250px;}
.yef{bottom:726.127200px;}
.y12e{bottom:737.790150px;}
.y153{bottom:739.833450px;}
.yd0{bottom:742.623300px;}
.yb1{bottom:744.965400px;}
.ye{bottom:746.494950px;}
.y68{bottom:746.837250px;}
.y87{bottom:747.437250px;}
.y171{bottom:747.587250px;}
.y10e{bottom:748.199400px;}
.y48{bottom:748.337250px;}
.yee{bottom:748.453800px;}
.y12d{bottom:760.548900px;}
.y152{bottom:762.183450px;}
.ycf{bottom:766.116150px;}
.yb0{bottom:767.989650px;}
.yd{bottom:769.359000px;}
.y67{bottom:769.487250px;}
.y86{bottom:769.937250px;}
.y170{bottom:770.087250px;}
.y10d{bottom:770.516850px;}
.y47{bottom:770.687250px;}
.yed{bottom:770.780550px;}
.y90{bottom:778.083300px;}
.y12c{bottom:783.307500px;}
.y151{bottom:784.533300px;}
.yce{bottom:789.608850px;}
.yaf{bottom:791.014050px;}
.y66{bottom:792.137250px;}
.yc{bottom:792.223050px;}
.y85{bottom:792.437250px;}
.y16f{bottom:792.587250px;}
.y10c{bottom:792.834450px;}
.y46{bottom:793.037250px;}
.yec{bottom:793.107300px;}
.y8f{bottom:800.583300px;}
.ycd{bottom:813.101550px;}
.yae{bottom:814.038450px;}
.y12b{bottom:814.569900px;}
.y65{bottom:814.787250px;}
.y84{bottom:814.937250px;}
.ya{bottom:815.087250px;}
.y10b{bottom:815.152050px;}
.y45{bottom:815.387250px;}
.yeb{bottom:815.433900px;}
.y8e{bottom:826.083300px;}
.y2{bottom:832.484250px;}
.ycc{bottom:836.594400px;}
.yad{bottom:837.062850px;}
.y12a{bottom:837.328650px;}
.y64{bottom:837.437250px;}
.y10a{bottom:837.469650px;}
.yb{bottom:837.587250px;}
.y44{bottom:837.737250px;}
.yea{bottom:837.760500px;}
.y1{bottom:857.984250px;}
.y43{bottom:860.087250px;}
.y42{bottom:871.653600px;}
.y2b{bottom:930.708000px;}
.y8{bottom:946.311000px;}
.he{height:33.168036px;}
.ha{height:33.618000px;}
.h6{height:34.080000px;}
.h5{height:41.376000px;}
.h4{height:42.768000px;}
.hb{height:46.548000px;}
.h9{height:50.760000px;}
.hd{height:51.720000px;}
.hc{height:52.404000px;}
.h8{height:56.892000px;}
.h2{height:61.932000px;}
.h3{height:62.040000px;}
.h7{height:254.484030px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x5{left:40.749900px;}
.x3{left:104.393250px;}
.x1{left:106.299150px;}
.x2{left:136.577850px;}
.x4{left:153.402300px;}
.x7{left:182.451450px;}
.xb{left:327.788100px;}
.xc{left:332.242800px;}
.x6{left:589.578600px;}
.x8{left:636.039000px;}
.xa{left:637.625400px;}
.x9{left:645.842550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.760000pt;}
.v2{vertical-align:19.536000pt;}
.v3{vertical-align:23.087467pt;}
.v1{vertical-align:160.000000pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls1c{letter-spacing:-0.762667pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls12{letter-spacing:-0.645333pt;}
.ls19{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.586667pt;}
.lsc{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.469333pt;}
.ls17{letter-spacing:-0.432000pt;}
.ls1b{letter-spacing:-0.410667pt;}
.ls1{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.234667pt;}
.lsa{letter-spacing:-0.176000pt;}
.ls5{letter-spacing:-0.117333pt;}
.ls9{letter-spacing:-0.058667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.029333pt;}
.lse{letter-spacing:0.038718pt;}
.ls10{letter-spacing:0.048000pt;}
.ls2{letter-spacing:0.058667pt;}
.ls1a{letter-spacing:0.088000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.117333pt;}
.ls1d{letter-spacing:0.146667pt;}
.ls4{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.234667pt;}
.ls15{letter-spacing:0.820800pt;}
.ls16{letter-spacing:1.651383pt;}
.lsf{letter-spacing:2.128875pt;}
.ws3{word-spacing:-70.669840pt;}
.ws2d{word-spacing:-12.994667pt;}
.ws24{word-spacing:-12.965333pt;}
.ws23{word-spacing:-12.936000pt;}
.ws28{word-spacing:-12.906667pt;}
.ws1a{word-spacing:-12.848000pt;}
.ws2b{word-spacing:-12.789333pt;}
.ws20{word-spacing:-12.730667pt;}
.ws22{word-spacing:-12.672000pt;}
.ws25{word-spacing:-12.437333pt;}
.ws4{word-spacing:-11.850667pt;}
.ws21{word-spacing:-11.792000pt;}
.ws12{word-spacing:-11.733333pt;}
.ws17{word-spacing:-11.674667pt;}
.ws27{word-spacing:-11.146667pt;}
.ws26{word-spacing:-11.029333pt;}
.ws11{word-spacing:-10.912000pt;}
.ws2c{word-spacing:-10.512000pt;}
.ws1b{word-spacing:-9.600000pt;}
.ws2{word-spacing:-3.109333pt;}
.ws15{word-spacing:-0.234667pt;}
.ws8{word-spacing:-0.176000pt;}
.ws6{word-spacing:-0.117333pt;}
.ws18{word-spacing:-0.096000pt;}
.ws5{word-spacing:-0.058667pt;}
.ws16{word-spacing:-0.048000pt;}
.ws0{word-spacing:-0.042667pt;}
.ws10{word-spacing:-0.034667pt;}
.ws19{word-spacing:-0.031093pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.058667pt;}
.ws7{word-spacing:0.117333pt;}
.wsd{word-spacing:0.176000pt;}
.wsb{word-spacing:0.234667pt;}
.ws1c{word-spacing:0.384000pt;}
.ws29{word-spacing:0.410667pt;}
.ws1d{word-spacing:0.432000pt;}
.wse{word-spacing:0.469333pt;}
.ws1e{word-spacing:0.480000pt;}
.wsf{word-spacing:0.528000pt;}
.ws9{word-spacing:0.586667pt;}
.ws1f{word-spacing:0.624000pt;}
.ws14{word-spacing:0.645333pt;}
.wsa{word-spacing:0.704000pt;}
.ws2a{word-spacing:0.762667pt;}
.ws13{word-spacing:0.821333pt;}
._7{margin-left:-12.986667pt;}
._6{margin-left:-12.061333pt;}
._8{margin-left:-10.880533pt;}
._a{margin-left:-9.763200pt;}
._3{margin-left:-5.888000pt;}
._2{margin-left:-3.413333pt;}
._0{margin-left:-1.802667pt;}
._9{margin-left:-0.892800pt;}
._4{width:1.358933pt;}
._1{width:2.376533pt;}
._5{width:3.301333pt;}
.fs9{font-size:31.093333pt;}
.fs6{font-size:34.202667pt;}
.fs5{font-size:34.666667pt;}
.fs7{font-size:40.421333pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:69.333333pt;}
.fs3{font-size:322.693333pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:94.488133pt;}
.y2a{bottom:94.488267pt;}
.yac{bottom:111.154800pt;}
.y63{bottom:111.821467pt;}
.y83{bottom:111.821600pt;}
.y129{bottom:114.326000pt;}
.y109{bottom:114.334133pt;}
.y3f{bottom:114.530000pt;}
.y148{bottom:114.718133pt;}
.y29{bottom:114.811867pt;}
.ycb{bottom:114.954267pt;}
.ye9{bottom:115.370667pt;}
.yab{bottom:127.821467pt;}
.y82{bottom:129.154933pt;}
.y16e{bottom:133.537333pt;}
.y128{bottom:134.163867pt;}
.y108{bottom:134.180000pt;}
.y3e{bottom:134.571733pt;}
.y147{bottom:134.948000pt;}
.y28{bottom:135.135600pt;}
.yca{bottom:135.420400pt;}
.ye8{bottom:136.253067pt;}
.yaa{bottom:144.488133pt;}
.y81{bottom:146.488267pt;}
.y62{bottom:148.655333pt;}
.y16d{bottom:153.403867pt;}
.y127{bottom:154.001733pt;}
.y107{bottom:154.026000pt;}
.y3d{bottom:154.613467pt;}
.y146{bottom:155.178000pt;}
.y27{bottom:155.459333pt;}
.yc9{bottom:155.886533pt;}
.ya9{bottom:161.154800pt;}
.y80{bottom:163.821600pt;}
.ye7{bottom:164.694667pt;}
.y61{bottom:168.522000pt;}
.y16c{bottom:173.270667pt;}
.y126{bottom:173.839600pt;}
.y106{bottom:173.871867pt;}
.y3c{bottom:174.655200pt;}
.y145{bottom:175.407867pt;}
.y26{bottom:175.782933pt;}
.yc8{bottom:176.352667pt;}
.ya8{bottom:177.821467pt;}
.y7f{bottom:181.154933pt;}
.ye6{bottom:185.577067pt;}
.y60{bottom:188.388667pt;}
.y16b{bottom:193.137333pt;}
.y125{bottom:193.677467pt;}
.y105{bottom:193.717867pt;}
.ya7{bottom:194.488133pt;}
.y3b{bottom:194.696933pt;}
.y144{bottom:195.637733pt;}
.y25{bottom:196.106667pt;}
.yc7{bottom:196.818800pt;}
.ye5{bottom:206.459600pt;}
.y5f{bottom:208.255333pt;}
.y187{bottom:209.403867pt;}
.ya6{bottom:211.154800pt;}
.y16a{bottom:213.004000pt;}
.y124{bottom:213.515200pt;}
.y104{bottom:213.563733pt;}
.y3a{bottom:214.738667pt;}
.y143{bottom:215.867600pt;}
.y24{bottom:216.430267pt;}
.yc6{bottom:217.284933pt;}
.y7e{bottom:220.922000pt;}
.ye4{bottom:227.342133pt;}
.ya5{bottom:227.821467pt;}
.y5e{bottom:228.122000pt;}
.y186{bottom:229.403867pt;}
.y169{bottom:232.870667pt;}
.y123{bottom:233.353067pt;}
.y103{bottom:233.409733pt;}
.y39{bottom:234.780400pt;}
.y142{bottom:236.097600pt;}
.y23{bottom:236.754000pt;}
.yc5{bottom:237.750933pt;}
.y7d{bottom:241.055333pt;}
.ya4{bottom:244.488133pt;}
.y5d{bottom:247.988667pt;}
.ye3{bottom:248.224533pt;}
.y185{bottom:249.403867pt;}
.y168{bottom:252.737200pt;}
.y122{bottom:253.190933pt;}
.y102{bottom:253.255600pt;}
.y38{bottom:254.822133pt;}
.y141{bottom:256.327467pt;}
.y22{bottom:257.077600pt;}
.yc4{bottom:258.217067pt;}
.ya3{bottom:261.154800pt;}
.y7c{bottom:261.188667pt;}
.y5c{bottom:267.855333pt;}
.ye2{bottom:269.107067pt;}
.y184{bottom:269.403867pt;}
.y167{bottom:272.604000pt;}
.y121{bottom:273.028800pt;}
.y101{bottom:273.101600pt;}
.y37{bottom:274.863867pt;}
.y140{bottom:276.557333pt;}
.y21{bottom:277.401333pt;}
.ya2{bottom:277.821467pt;}
.yc3{bottom:278.683200pt;}
.y7b{bottom:281.322000pt;}
.y5b{bottom:287.722000pt;}
.y183{bottom:289.403867pt;}
.ye1{bottom:289.989467pt;}
.y166{bottom:292.470667pt;}
.y120{bottom:292.866667pt;}
.y100{bottom:292.947467pt;}
.ya1{bottom:294.488133pt;}
.y36{bottom:294.905600pt;}
.y13f{bottom:296.787200pt;}
.y20{bottom:297.724933pt;}
.yc2{bottom:299.149333pt;}
.y7a{bottom:301.455333pt;}
.y5a{bottom:307.588667pt;}
.y182{bottom:309.403867pt;}
.ye0{bottom:310.872000pt;}
.y165{bottom:312.337333pt;}
.y11f{bottom:312.704533pt;}
.yff{bottom:312.793467pt;}
.y35{bottom:314.947333pt;}
.y1f{bottom:318.048667pt;}
.yc1{bottom:319.615467pt;}
.y79{bottom:321.588667pt;}
.y13e{bottom:324.576133pt;}
.ya0{bottom:326.275333pt;}
.y59{bottom:327.455333pt;}
.y181{bottom:329.403867pt;}
.y164{bottom:332.204000pt;}
.y11e{bottom:332.542400pt;}
.yfe{bottom:332.639333pt;}
.y34{bottom:334.989200pt;}
.y1e{bottom:338.372267pt;}
.ydf{bottom:339.313467pt;}
.yc0{bottom:340.081600pt;}
.y78{bottom:341.722000pt;}
.y13d{bottom:344.806133pt;}
.y9f{bottom:346.275333pt;}
.y58{bottom:347.322000pt;}
.y180{bottom:349.403867pt;}
.y163{bottom:352.070533pt;}
.y11d{bottom:352.380267pt;}
.yfd{bottom:352.485333pt;}
.y33{bottom:355.030933pt;}
.y1d{bottom:358.696000pt;}
.yde{bottom:360.196000pt;}
.ybf{bottom:360.547733pt;}
.y77{bottom:361.855333pt;}
.y13c{bottom:365.035867pt;}
.y9e{bottom:366.275333pt;}
.y57{bottom:367.188667pt;}
.y17f{bottom:369.403867pt;}
.y162{bottom:371.937333pt;}
.y11c{bottom:372.218000pt;}
.yfc{bottom:372.331200pt;}
.y32{bottom:375.072667pt;}
.y1c{bottom:379.019600pt;}
.y150{bottom:379.890267pt;}
.ydd{bottom:381.078400pt;}
.y76{bottom:381.988667pt;}
.y13b{bottom:385.265867pt;}
.y56{bottom:387.055333pt;}
.ybe{bottom:388.572800pt;}
.y17e{bottom:389.403867pt;}
.y9{bottom:390.079867pt;}
.y161{bottom:391.804000pt;}
.y11b{bottom:392.055867pt;}
.yfb{bottom:392.177067pt;}
.y9d{bottom:393.834267pt;}
.y31{bottom:395.114400pt;}
.y1b{bottom:399.343333pt;}
.y14f{bottom:399.736133pt;}
.ydc{bottom:401.960933pt;}
.y75{bottom:402.122000pt;}
.y13a{bottom:405.495733pt;}
.y55{bottom:406.922000pt;}
.y7{bottom:406.995333pt;}
.ybd{bottom:409.038933pt;}
.y17d{bottom:409.403867pt;}
.y15f{bottom:411.670667pt;}
.y11a{bottom:411.893733pt;}
.yfa{bottom:412.023067pt;}
.y9c{bottom:413.834267pt;}
.y30{bottom:415.156133pt;}
.y160{bottom:416.554667pt;}
.y14e{bottom:419.582133pt;}
.y1a{bottom:419.666933pt;}
.y74{bottom:422.255333pt;}
.y6{bottom:422.995333pt;}
.y139{bottom:425.725600pt;}
.y54{bottom:426.788667pt;}
.y17c{bottom:429.403867pt;}
.ybc{bottom:429.505067pt;}
.ydb{bottom:430.402400pt;}
.y15e{bottom:431.537333pt;}
.y119{bottom:431.731600pt;}
.yf9{bottom:431.868933pt;}
.y9b{bottom:433.834267pt;}
.y2f{bottom:435.197867pt;}
.y19{bottom:439.990667pt;}
.y73{bottom:442.388667pt;}
.y138{bottom:445.955467pt;}
.y53{bottom:446.655333pt;}
.y14d{bottom:446.987067pt;}
.y17b{bottom:449.403867pt;}
.yda{bottom:451.284933pt;}
.y15d{bottom:451.404000pt;}
.y118{bottom:451.569467pt;}
.y9a{bottom:453.834267pt;}
.y2e{bottom:455.239600pt;}
.ybb{bottom:457.530267pt;}
.yf8{bottom:459.274000pt;}
.y18{bottom:460.314267pt;}
.y72{bottom:462.522000pt;}
.y137{bottom:466.185467pt;}
.y52{bottom:466.522000pt;}
.y14c{bottom:466.833067pt;}
.y5{bottom:469.026800pt;}
.y17a{bottom:469.403867pt;}
.y15c{bottom:471.270533pt;}
.y117{bottom:471.407333pt;}
.yd9{bottom:472.167333pt;}
.y99{bottom:473.834267pt;}
.y2d{bottom:475.281333pt;}
.yba{bottom:477.996400pt;}
.yf7{bottom:479.119867pt;}
.y17{bottom:480.638000pt;}
.y71{bottom:482.655333pt;}
.y4{bottom:485.026800pt;}
.y51{bottom:486.388667pt;}
.y136{bottom:486.415333pt;}
.y14b{bottom:486.678933pt;}
.y179{bottom:489.403867pt;}
.y15b{bottom:491.137333pt;}
.yd8{bottom:493.049867pt;}
.y98{bottom:493.834267pt;}
.y2c{bottom:495.323067pt;}
.yb9{bottom:498.462533pt;}
.y116{bottom:498.804133pt;}
.yf6{bottom:498.965867pt;}
.y16{bottom:500.961733pt;}
.y70{bottom:502.788667pt;}
.y3{bottom:505.023333pt;}
.y50{bottom:506.255333pt;}
.y14a{bottom:506.524933pt;}
.y135{bottom:506.645200pt;}
.y15a{bottom:511.004000pt;}
.y97{bottom:513.834267pt;}
.yd7{bottom:513.932267pt;}
.y178{bottom:516.962933pt;}
.y115{bottom:518.642133pt;}
.yf5{bottom:518.811733pt;}
.yb8{bottom:518.928533pt;}
.y15{bottom:521.285333pt;}
.y6f{bottom:522.922000pt;}
.y4f{bottom:526.122000pt;}
.y149{bottom:526.370800pt;}
.y134{bottom:526.875067pt;}
.y159{bottom:530.870667pt;}
.y96{bottom:533.834267pt;}
.yd6{bottom:534.814800pt;}
.y177{bottom:536.962933pt;}
.y114{bottom:538.479867pt;}
.yb7{bottom:539.394667pt;}
.y14{bottom:541.609067pt;}
.y6e{bottom:543.055333pt;}
.y41{bottom:543.399467pt;}
.y8d{bottom:544.388667pt;}
.y4e{bottom:545.988667pt;}
.yf4{bottom:546.216667pt;}
.y133{bottom:547.104933pt;}
.yd5{bottom:555.697200pt;}
.y176{bottom:556.962933pt;}
.y158{bottom:558.296267pt;}
.y113{bottom:558.317733pt;}
.yb6{bottom:559.860800pt;}
.y95{bottom:561.393333pt;}
.y13{bottom:561.932667pt;}
.y6d{bottom:563.188667pt;}
.y8c{bottom:564.388667pt;}
.y4d{bottom:565.855333pt;}
.yf3{bottom:566.062667pt;}
.y132{bottom:567.334933pt;}
.yd4{bottom:576.579733pt;}
.y175{bottom:576.962933pt;}
.y112{bottom:578.155600pt;}
.y157{bottom:578.163067pt;}
.yb5{bottom:580.326933pt;}
.y94{bottom:581.393333pt;}
.y12{bottom:582.256400pt;}
.y6c{bottom:583.322000pt;}
.y8b{bottom:584.388667pt;}
.y4c{bottom:585.722000pt;}
.yf2{bottom:585.908667pt;}
.y131{bottom:595.123867pt;}
.y174{bottom:596.962933pt;}
.yd3{bottom:597.462133pt;}
.y111{bottom:597.993467pt;}
.y156{bottom:598.029600pt;}
.yb4{bottom:600.793067pt;}
.y93{bottom:601.393333pt;}
.y11{bottom:602.580000pt;}
.y6b{bottom:603.455333pt;}
.y8a{bottom:604.388667pt;}
.y4b{bottom:605.588667pt;}
.yf1{bottom:605.754533pt;}
.y130{bottom:615.353733pt;}
.y173{bottom:616.962933pt;}
.y110{bottom:617.831333pt;}
.y155{bottom:617.896267pt;}
.yd2{bottom:618.344667pt;}
.yb3{bottom:621.259200pt;}
.y92{bottom:621.393333pt;}
.y10{bottom:622.903733pt;}
.y6a{bottom:623.588667pt;}
.y89{bottom:624.388667pt;}
.y4a{bottom:625.455333pt;}
.yf0{bottom:625.600400pt;}
.y12f{bottom:635.583600pt;}
.y172{bottom:636.962933pt;}
.y154{bottom:637.763067pt;}
.yd1{bottom:639.227067pt;}
.y91{bottom:641.393333pt;}
.yb2{bottom:641.725200pt;}
.yf{bottom:643.227333pt;}
.y69{bottom:643.722000pt;}
.y88{bottom:644.388667pt;}
.y10f{bottom:645.228133pt;}
.y49{bottom:645.322000pt;}
.yef{bottom:645.446400pt;}
.y12e{bottom:655.813467pt;}
.y153{bottom:657.629733pt;}
.yd0{bottom:660.109600pt;}
.yb1{bottom:662.191467pt;}
.ye{bottom:663.551067pt;}
.y68{bottom:663.855333pt;}
.y87{bottom:664.388667pt;}
.y171{bottom:664.522000pt;}
.y10e{bottom:665.066133pt;}
.y48{bottom:665.188667pt;}
.yee{bottom:665.292267pt;}
.y12d{bottom:676.043467pt;}
.y152{bottom:677.496400pt;}
.ycf{bottom:680.992133pt;}
.yb0{bottom:682.657467pt;}
.yd{bottom:683.874667pt;}
.y67{bottom:683.988667pt;}
.y86{bottom:684.388667pt;}
.y170{bottom:684.522000pt;}
.y10d{bottom:684.903867pt;}
.y47{bottom:685.055333pt;}
.yed{bottom:685.138267pt;}
.y90{bottom:691.629600pt;}
.y12c{bottom:696.273333pt;}
.y151{bottom:697.362933pt;}
.yce{bottom:701.874533pt;}
.yaf{bottom:703.123600pt;}
.y66{bottom:704.122000pt;}
.yc{bottom:704.198267pt;}
.y85{bottom:704.388667pt;}
.y16f{bottom:704.522000pt;}
.y10c{bottom:704.741733pt;}
.y46{bottom:704.922000pt;}
.yec{bottom:704.984267pt;}
.y8f{bottom:711.629600pt;}
.ycd{bottom:722.756933pt;}
.yae{bottom:723.589733pt;}
.y12b{bottom:724.062133pt;}
.y65{bottom:724.255333pt;}
.y84{bottom:724.388667pt;}
.ya{bottom:724.522000pt;}
.y10b{bottom:724.579600pt;}
.y45{bottom:724.788667pt;}
.yeb{bottom:724.830133pt;}
.y8e{bottom:734.296267pt;}
.y2{bottom:739.986000pt;}
.ycc{bottom:743.639467pt;}
.yad{bottom:744.055867pt;}
.y12a{bottom:744.292133pt;}
.y64{bottom:744.388667pt;}
.y10a{bottom:744.417467pt;}
.yb{bottom:744.522000pt;}
.y44{bottom:744.655333pt;}
.yea{bottom:744.676000pt;}
.y1{bottom:762.652667pt;}
.y43{bottom:764.522000pt;}
.y42{bottom:774.803200pt;}
.y2b{bottom:827.296000pt;}
.y8{bottom:841.165333pt;}
.he{height:29.482699pt;}
.ha{height:29.882667pt;}
.h6{height:30.293333pt;}
.h5{height:36.778667pt;}
.h4{height:38.016000pt;}
.hb{height:41.376000pt;}
.h9{height:45.120000pt;}
.hd{height:45.973333pt;}
.hc{height:46.581333pt;}
.h8{height:50.570667pt;}
.h2{height:55.050667pt;}
.h3{height:55.146667pt;}
.h7{height:226.208027pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x5{left:36.222133pt;}
.x3{left:92.794000pt;}
.x1{left:94.488133pt;}
.x2{left:121.402533pt;}
.x4{left:136.357600pt;}
.x7{left:162.179067pt;}
.xb{left:291.367200pt;}
.xc{left:295.326933pt;}
.x6{left:524.069867pt;}
.x8{left:565.368000pt;}
.xa{left:566.778133pt;}
.x9{left:574.082267pt;}
}




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