
    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_b5e7577be74e4d2d4c57ee16.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_64fee08ff7a9b458605ec1ea.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_b36c9ff028b888bc18b45884.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_8b64615db8df6fdd56ffb283.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_814cbb0a92fe9f918142059c.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fcdc83aa846067055ba873b9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_de317ceae8f09a06eef85ff7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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;}
.mdc{transform:matrix(0.228023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228023,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241675,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.242123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242123,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254375,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254950,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.256223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256223,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.256447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256447,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.259348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259348,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.259400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259400,0.000000,0.000000,0.250000,0,0);}
.me4{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);}
.m59{transform:matrix(0.259923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259923,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.260075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260075,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.260197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260197,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260650,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.260775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260775,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.260823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260823,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260850,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.261173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261173,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261350,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.261475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261475,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.261497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261497,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.261600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261600,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261647,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261798,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.261825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261825,0.000000,0.000000,0.250000,0,0);}
.m4b{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);}
.me8{transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261950,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.261997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261997,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.262072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262072,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262175,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.262197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262197,0.000000,0.000000,0.250000,0,0);}
.mc4{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);}
.m66{transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262300,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262450,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262575,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262600,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.262623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262623,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262850,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262950,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263022,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263075,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263150,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.263200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263200,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.263323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263323,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.263350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263350,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263373,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263425,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.263522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263522,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263550,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263598,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263625,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.263673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263673,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263700,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263775,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.263798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263798,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.263948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263948,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263975,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264022,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264050,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.264100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264100,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.264273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264273,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264400,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264475,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.264497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264497,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.264547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264547,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.264800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264800,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264875,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.264923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264923,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.265322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265322,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.265548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265548,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.266022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266022,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266098,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266200,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.266298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266298,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.266325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266325,0.000000,0.000000,0.250000,0,0);}
.m7c{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);}
.m72{transform:matrix(0.266647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266647,0.000000,0.000000,0.250000,0,0);}
.m7e{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);}
.m79{transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266773,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.266950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266950,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267100,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267525,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267850,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268225,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.268373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268373,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.268598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268598,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.269348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269348,0.000000,0.000000,0.250000,0,0);}
.m5e{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);}
.me6{transform:matrix(0.269800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269800,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270375,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.270425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270425,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.270625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270625,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.270948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270948,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272325,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.272623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272623,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.272897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272897,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.273048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273048,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.273873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273873,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.274547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274547,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.275172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275172,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m69{transform:matrix(0.276098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276098,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.276173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276173,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.276325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276325,0.000000,0.000000,0.250000,0,0);}
.m33{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);}
.m31{transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277423,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277800,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.278298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278298,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.278447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278447,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.278575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278575,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.278700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278700,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278975,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.279023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279023,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.279100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279100,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.279222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279222,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279348,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.279375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279375,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.279423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279423,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279600,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.279622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279622,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.ma4{transform:matrix(0.279725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279725,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279848,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.279898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279898,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.280048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280048,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.280122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280122,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.280375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280375,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.280397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280397,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m3f{transform:matrix(0.280575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280575,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280650,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.280725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280725,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.280975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280975,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.281023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281023,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.281075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281075,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.281298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281298,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m2e{transform:matrix(0.281875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281875,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281950,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.282025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282025,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.282048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282048,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.282073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282073,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.282375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282375,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.m6{transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282650,0.000000,0.000000,0.250000,0,0);}
.mad{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);}
.ma5{transform:matrix(0.282697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282697,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.282800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282800,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.282850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282850,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.282925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282925,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.282973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282973,0.000000,0.000000,0.250000,0,0);}
.m87{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);}
.m36{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);}
.mb3{transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283900,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.284073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284073,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.284200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284200,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.284222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284222,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.284325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284325,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.284725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284725,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.284950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284950,0.000000,0.000000,0.250000,0,0);}
.mb7{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);}
.m40{transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285100,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285123,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.285272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285272,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.mb1{transform:matrix(0.285450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285450,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.285748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285748,0.000000,0.000000,0.250000,0,0);}
.m92{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);}
.maa{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);}
.mbb{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);}
.m2b{transform:matrix(0.286275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286275,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m7d{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);}
.ma1{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);}
.m25{transform:matrix(0.287398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287398,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.287800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287800,0.000000,0.000000,0.250000,0,0);}
.m4f{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);}
.ma8{transform:matrix(0.288225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288225,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.ma0{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);}
.m2a{transform:matrix(0.288975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288975,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.288998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288998,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.mb9{transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289200,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.289222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289222,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.289325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289325,0.000000,0.000000,0.250000,0,0);}
.mb0{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);}
.m21{transform:matrix(0.289800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289800,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m19{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);}
.m23{transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290272,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.290523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290523,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290625,0.000000,0.000000,0.250000,0,0);}
.mb6{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);}
.m9c{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);}
.m10{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);}
.m12{transform:matrix(0.292600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292600,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292623,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m9b{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);}
.ma6{transform:matrix(0.293575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293575,0.000000,0.000000,0.250000,0,0);}
.m8b{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);}
.m8a{transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294875,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.295075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295075,0.000000,0.000000,0.250000,0,0);}
.m46{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);}
.mae{transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296675,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297423,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.298425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298425,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298850,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.298900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298900,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.299875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299875,0.000000,0.000000,0.250000,0,0);}
.m8c{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);}
.mb5{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301075,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.301900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301900,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.304175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304175,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305100,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.307525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307525,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.314923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314923,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.328072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328072,0.000000,0.000000,0.250000,0,0);}
.m1{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;}
.fs7{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y85{bottom:57.525000px;}
.y49{bottom:60.973500px;}
.yfe{bottom:64.348500px;}
.yc5{bottom:67.275000px;}
.yc6{bottom:67.573500px;}
.y84{bottom:86.698500px;}
.y48{bottom:90.675000px;}
.yfd{bottom:94.573500px;}
.yc4{bottom:96.150000px;}
.y83{bottom:101.250000px;}
.y47{bottom:105.223500px;}
.yfc{bottom:109.425000px;}
.yc3{bottom:110.775000px;}
.y82{bottom:115.875000px;}
.y46{bottom:119.550000px;}
.yfb{bottom:124.275000px;}
.yc2{bottom:125.625000px;}
.y45{bottom:134.098500px;}
.yfa{bottom:138.900000px;}
.y81{bottom:139.875000px;}
.yc1{bottom:140.175000px;}
.y44{bottom:148.425000px;}
.yf9{bottom:153.750000px;}
.y80{bottom:154.500000px;}
.y43{bottom:162.750000px;}
.yf8{bottom:168.300000px;}
.y7f{bottom:168.750000px;}
.yc0{bottom:169.650000px;}
.yf7{bottom:183.150000px;}
.y7e{bottom:183.375000px;}
.ybf{bottom:184.198500px;}
.y42{bottom:191.400000px;}
.yf6{bottom:197.698500px;}
.y7d{bottom:197.925000px;}
.ybe{bottom:199.050000px;}
.y41{bottom:204.900000px;}
.y7c{bottom:212.250000px;}
.yf5{bottom:212.550000px;}
.ybd{bottom:213.598500px;}
.y40{bottom:219.448500px;}
.y7b{bottom:226.798500px;}
.yf4{bottom:227.400000px;}
.ybc{bottom:228.223500px;}
.y7a{bottom:241.423500px;}
.yf3{bottom:241.500000px;}
.ybb{bottom:243.075000px;}
.y3f{bottom:246.973500px;}
.y79{bottom:255.750000px;}
.yf2{bottom:256.875000px;}
.yba{bottom:257.625000px;}
.y3e{bottom:261.298500px;}
.y78{bottom:270.298500px;}
.yf1{bottom:271.423500px;}
.yb9{bottom:272.473500px;}
.y3d{bottom:275.325000px;}
.y77{bottom:284.625000px;}
.yb8{bottom:287.098500px;}
.yf0{bottom:298.423500px;}
.y76{bottom:299.173500px;}
.yb6{bottom:301.125000px;}
.yb7{bottom:301.950000px;}
.y3c{bottom:303.973500px;}
.y75{bottom:313.798500px;}
.yb5{bottom:316.200000px;}
.yef{bottom:325.423500px;}
.y74{bottom:328.048500px;}
.yb4{bottom:331.048500px;}
.y3b{bottom:334.723500px;}
.y3a{bottom:335.025000px;}
.yee{bottom:341.400000px;}
.y73{bottom:342.673500px;}
.yb3{bottom:345.900000px;}
.yed{bottom:355.950000px;}
.y72{bottom:357.000000px;}
.yb2{bottom:360.525000px;}
.y39{bottom:362.848500px;}
.yec{bottom:370.798500px;}
.y71{bottom:371.548500px;}
.y70{bottom:371.848500px;}
.yb0{bottom:374.848500px;}
.yb1{bottom:375.075000px;}
.y38{bottom:377.400000px;}
.y6f{bottom:386.098500px;}
.yaf{bottom:389.923500px;}
.y37{bottom:391.723500px;}
.yeb{bottom:397.275000px;}
.y6e{bottom:400.423500px;}
.yae{bottom:404.548500px;}
.y36{bottom:406.275000px;}
.y6d{bottom:415.048500px;}
.yad{bottom:419.098500px;}
.y35{bottom:420.598500px;}
.y6c{bottom:429.298500px;}
.ye9{bottom:431.548500px;}
.yea{bottom:432.375000px;}
.yac{bottom:433.950000px;}
.y34{bottom:435.150000px;}
.y6b{bottom:443.923500px;}
.yab{bottom:448.500000px;}
.y33{bottom:449.473500px;}
.y6a{bottom:458.250000px;}
.yaa{bottom:463.125000px;}
.y32{bottom:463.798500px;}
.y69{bottom:472.798500px;}
.y68{bottom:473.098500px;}
.ya9{bottom:477.973500px;}
.ye8{bottom:478.275000px;}
.y31{bottom:478.348500px;}
.y67{bottom:487.125000px;}
.ya8{bottom:492.525000px;}
.y30{bottom:493.798500px;}
.y66{bottom:501.673500px;}
.ye7{bottom:504.450000px;}
.ya6{bottom:506.548500px;}
.ya7{bottom:507.150000px;}
.y2f{bottom:507.298500px;}
.y65{bottom:516.298500px;}
.ye6{bottom:519.598500px;}
.ya4{bottom:521.700000px;}
.y2e{bottom:521.848500px;}
.ya5{bottom:522.223500px;}
.y64{bottom:530.548500px;}
.ye5{bottom:534.450000px;}
.y2d{bottom:535.348500px;}
.y2c{bottom:535.650000px;}
.y2b{bottom:536.400000px;}
.ya3{bottom:536.548500px;}
.y63{bottom:545.173500px;}
.ye4{bottom:549.298500px;}
.y2a{bottom:550.200000px;}
.y29{bottom:550.723500px;}
.ya2{bottom:551.098500px;}
.y28{bottom:551.250000px;}
.y62{bottom:559.723500px;}
.ye3{bottom:563.548500px;}
.y27{bottom:565.048500px;}
.ya1{bottom:565.950000px;}
.y61{bottom:574.048500px;}
.ye2{bottom:578.700000px;}
.y26{bottom:579.598500px;}
.ya0{bottom:580.575000px;}
.y60{bottom:588.598500px;}
.y5f{bottom:588.900000px;}
.ye1{bottom:593.250000px;}
.y25{bottom:593.923500px;}
.y9f{bottom:595.125000px;}
.ye0{bottom:608.098500px;}
.y24{bottom:608.548500px;}
.y5e{bottom:609.450000px;}
.y9e{bottom:609.973500px;}
.ydf{bottom:622.723500px;}
.y23{bottom:622.798500px;}
.y5d{bottom:623.700000px;}
.y9d{bottom:624.598500px;}
.y22{bottom:637.125000px;}
.yde{bottom:637.275000px;}
.y5c{bottom:638.325000px;}
.y9c{bottom:639.150000px;}
.y21{bottom:651.750000px;}
.ydd{bottom:652.125000px;}
.y5b{bottom:652.875000px;}
.y9b{bottom:654.000000px;}
.y20{bottom:666.000000px;}
.ydc{bottom:666.750000px;}
.y1f{bottom:667.125000px;}
.y5a{bottom:667.200000px;}
.y1e{bottom:667.348500px;}
.y9a{bottom:668.548500px;}
.y1d{bottom:680.325000px;}
.ydb{bottom:681.298500px;}
.y1c{bottom:681.450000px;}
.y59{bottom:681.525000px;}
.y1b{bottom:681.673500px;}
.y99{bottom:682.875000px;}
.y1a{bottom:693.825000px;}
.y19{bottom:694.125000px;}
.y18{bottom:694.348500px;}
.y17{bottom:694.950000px;}
.y16{bottom:695.473500px;}
.y15{bottom:695.700000px;}
.y14{bottom:696.000000px;}
.y58{bottom:696.075000px;}
.yda{bottom:696.150000px;}
.y98{bottom:697.723500px;}
.y13{bottom:708.973500px;}
.y12{bottom:710.025000px;}
.y11{bottom:710.325000px;}
.y57{bottom:710.700000px;}
.yd9{bottom:711.000000px;}
.y96{bottom:712.048500px;}
.y97{bottom:712.575000px;}
.y10{bottom:723.825000px;}
.y56{bottom:724.950000px;}
.yd8{bottom:725.548500px;}
.y95{bottom:727.200000px;}
.yf{bottom:738.375000px;}
.y55{bottom:739.575000px;}
.yd7{bottom:740.400000px;}
.y94{bottom:741.750000px;}
.ye{bottom:752.700000px;}
.y54{bottom:753.900000px;}
.y53{bottom:754.125000px;}
.yd5{bottom:754.500000px;}
.yd6{bottom:754.723500px;}
.y93{bottom:756.598500px;}
.yd{bottom:767.025000px;}
.yd2{bottom:768.750000px;}
.yd3{bottom:769.050000px;}
.yd4{bottom:769.875000px;}
.y92{bottom:771.150000px;}
.y52{bottom:781.125000px;}
.y51{bottom:781.425000px;}
.yc{bottom:781.573500px;}
.yd1{bottom:784.425000px;}
.y91{bottom:785.775000px;}
.yb{bottom:796.948500px;}
.yd0{bottom:799.050000px;}
.y8e{bottom:799.800000px;}
.y8f{bottom:800.098500px;}
.y90{bottom:800.625000px;}
.y50{bottom:808.650000px;}
.ya{bottom:810.448500px;}
.ycd{bottom:813.300000px;}
.yce{bottom:814.125000px;}
.ycf{bottom:814.650000px;}
.y8d{bottom:814.948500px;}
.y4f{bottom:822.750000px;}
.y4e{bottom:822.973500px;}
.y9{bottom:824.550000px;}
.y8{bottom:825.073500px;}
.y7{bottom:825.598500px;}
.ycc{bottom:828.448500px;}
.y8c{bottom:829.800000px;}
.y6{bottom:839.400000px;}
.ycb{bottom:843.000000px;}
.y8b{bottom:844.348500px;}
.y4d{bottom:850.275000px;}
.y5{bottom:853.650000px;}
.yca{bottom:857.848500px;}
.y8a{bottom:858.900000px;}
.y4c{bottom:864.598500px;}
.y4{bottom:867.973500px;}
.yc9{bottom:872.473500px;}
.y89{bottom:873.525000px;}
.y4b{bottom:894.300000px;}
.y4a{bottom:894.525000px;}
.y3{bottom:896.848500px;}
.y1{bottom:897.973500px;}
.yc7{bottom:901.050000px;}
.yc8{bottom:902.400000px;}
.y86{bottom:903.448500px;}
.y88{bottom:904.050000px;}
.y2{bottom:906.598500px;}
.y87{bottom:913.198500px;}
.he{height:35.314453px;}
.h7{height:38.257324px;}
.hf{height:41.200195px;}
.h1{height:41.220703px;}
.h4{height:43.804688px;}
.h5{height:44.143066px;}
.hc{height:47.085938px;}
.h3{height:47.109375px;}
.ha{height:50.028809px;}
.hb{height:50.053711px;}
.h6{height:51.398438px;}
.h2{height:61.831055px;}
.h9{height:64.775391px;}
.h8{height:988.500000px;}
.hd{height:991.500000px;}
.h0{height:993.000000px;}
.h10{height:994.500000px;}
.w2{width:697.500000px;}
.w0{width:702.000000px;}
.w1{width:708.000000px;}
.w3{width:711.000000px;}
.x0{left:0.000000px;}
.x1c{left:53.827500px;}
.x1d{left:55.453500px;}
.x1a{left:56.514000px;}
.x17{left:57.642000px;}
.x12{left:58.692000px;}
.x4{left:59.827500px;}
.x1b{left:75.283500px;}
.x16{left:77.281500px;}
.x7{left:79.266000px;}
.x10{left:93.247500px;}
.x37{left:96.718500px;}
.xe{left:98.611500px;}
.x4a{left:99.669000px;}
.x31{left:101.866500px;}
.x28{left:102.991500px;}
.x1f{left:104.128500px;}
.x35{left:114.117000px;}
.x41{left:116.989500px;}
.x4b{left:118.885500px;}
.x30{left:121.513500px;}
.x24{left:122.970000px;}
.x39{left:125.658000px;}
.x29{left:129.564000px;}
.x3e{left:136.438500px;}
.x11{left:140.734500px;}
.x20{left:142.890000px;}
.x22{left:147.412500px;}
.x2b{left:148.768500px;}
.x26{left:150.420000px;}
.x25{left:158.332500px;}
.x2a{left:167.257500px;}
.x44{left:172.779000px;}
.x8{left:173.860500px;}
.xf{left:175.536000px;}
.x23{left:181.885500px;}
.xa{left:190.983000px;}
.x9{left:204.090000px;}
.x42{left:206.755500px;}
.x48{left:210.631500px;}
.x43{left:220.845000px;}
.x36{left:222.486000px;}
.x1{left:226.095000px;}
.x49{left:234.130500px;}
.x32{left:243.646500px;}
.xb{left:256.336500px;}
.x13{left:268.198500px;}
.x3a{left:275.662500px;}
.x45{left:277.153500px;}
.x46{left:286.582500px;}
.x5{left:289.368000px;}
.x6{left:326.280000px;}
.x3b{left:328.296000px;}
.x2c{left:331.537500px;}
.x14{left:357.486000px;}
.x2d{left:387.307500px;}
.x38{left:398.212500px;}
.x18{left:407.208000px;}
.x47{left:420.169500px;}
.xc{left:429.561000px;}
.x2{left:432.298500px;}
.x3f{left:447.655500px;}
.x33{left:449.848500px;}
.x1e{left:456.513000px;}
.x19{left:461.190000px;}
.x3c{left:478.921500px;}
.x40{left:484.807500px;}
.x15{left:499.195500px;}
.x21{left:506.569500px;}
.x27{left:507.897000px;}
.x2e{left:527.062500px;}
.xd{left:542.905500px;}
.x2f{left:564.982500px;}
.x3{left:571.543500px;}
.x34{left:589.618500px;}
.x3d{left:608.391000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y85{bottom:51.133333pt;}
.y49{bottom:54.198667pt;}
.yfe{bottom:57.198667pt;}
.yc5{bottom:59.800000pt;}
.yc6{bottom:60.065333pt;}
.y84{bottom:77.065333pt;}
.y48{bottom:80.600000pt;}
.yfd{bottom:84.065333pt;}
.yc4{bottom:85.466667pt;}
.y83{bottom:90.000000pt;}
.y47{bottom:93.532000pt;}
.yfc{bottom:97.266667pt;}
.yc3{bottom:98.466667pt;}
.y82{bottom:103.000000pt;}
.y46{bottom:106.266667pt;}
.yfb{bottom:110.466667pt;}
.yc2{bottom:111.666667pt;}
.y45{bottom:119.198667pt;}
.yfa{bottom:123.466667pt;}
.y81{bottom:124.333333pt;}
.yc1{bottom:124.600000pt;}
.y44{bottom:131.933333pt;}
.yf9{bottom:136.666667pt;}
.y80{bottom:137.333333pt;}
.y43{bottom:144.666667pt;}
.yf8{bottom:149.600000pt;}
.y7f{bottom:150.000000pt;}
.yc0{bottom:150.800000pt;}
.yf7{bottom:162.800000pt;}
.y7e{bottom:163.000000pt;}
.ybf{bottom:163.732000pt;}
.y42{bottom:170.133333pt;}
.yf6{bottom:175.732000pt;}
.y7d{bottom:175.933333pt;}
.ybe{bottom:176.933333pt;}
.y41{bottom:182.133333pt;}
.y7c{bottom:188.666667pt;}
.yf5{bottom:188.933333pt;}
.ybd{bottom:189.865333pt;}
.y40{bottom:195.065333pt;}
.y7b{bottom:201.598667pt;}
.yf4{bottom:202.133333pt;}
.ybc{bottom:202.865333pt;}
.y7a{bottom:214.598667pt;}
.yf3{bottom:214.666667pt;}
.ybb{bottom:216.066667pt;}
.y3f{bottom:219.532000pt;}
.y79{bottom:227.333333pt;}
.yf2{bottom:228.333333pt;}
.yba{bottom:229.000000pt;}
.y3e{bottom:232.265333pt;}
.y78{bottom:240.265333pt;}
.yf1{bottom:241.265333pt;}
.yb9{bottom:242.198667pt;}
.y3d{bottom:244.733333pt;}
.y77{bottom:253.000000pt;}
.yb8{bottom:255.198667pt;}
.yf0{bottom:265.265333pt;}
.y76{bottom:265.932000pt;}
.yb6{bottom:267.666667pt;}
.yb7{bottom:268.400000pt;}
.y3c{bottom:270.198667pt;}
.y75{bottom:278.932000pt;}
.yb5{bottom:281.066667pt;}
.yef{bottom:289.265333pt;}
.y74{bottom:291.598667pt;}
.yb4{bottom:294.265333pt;}
.y3b{bottom:297.532000pt;}
.y3a{bottom:297.800000pt;}
.yee{bottom:303.466667pt;}
.y73{bottom:304.598667pt;}
.yb3{bottom:307.466667pt;}
.yed{bottom:316.400000pt;}
.y72{bottom:317.333333pt;}
.yb2{bottom:320.466667pt;}
.y39{bottom:322.532000pt;}
.yec{bottom:329.598667pt;}
.y71{bottom:330.265333pt;}
.y70{bottom:330.532000pt;}
.yb0{bottom:333.198667pt;}
.yb1{bottom:333.400000pt;}
.y38{bottom:335.466667pt;}
.y6f{bottom:343.198667pt;}
.yaf{bottom:346.598667pt;}
.y37{bottom:348.198667pt;}
.yeb{bottom:353.133333pt;}
.y6e{bottom:355.932000pt;}
.yae{bottom:359.598667pt;}
.y36{bottom:361.133333pt;}
.y6d{bottom:368.932000pt;}
.yad{bottom:372.532000pt;}
.y35{bottom:373.865333pt;}
.y6c{bottom:381.598667pt;}
.ye9{bottom:383.598667pt;}
.yea{bottom:384.333333pt;}
.yac{bottom:385.733333pt;}
.y34{bottom:386.800000pt;}
.y6b{bottom:394.598667pt;}
.yab{bottom:398.666667pt;}
.y33{bottom:399.532000pt;}
.y6a{bottom:407.333333pt;}
.yaa{bottom:411.666667pt;}
.y32{bottom:412.265333pt;}
.y69{bottom:420.265333pt;}
.y68{bottom:420.532000pt;}
.ya9{bottom:424.865333pt;}
.ye8{bottom:425.133333pt;}
.y31{bottom:425.198667pt;}
.y67{bottom:433.000000pt;}
.ya8{bottom:437.800000pt;}
.y30{bottom:438.932000pt;}
.y66{bottom:445.932000pt;}
.ye7{bottom:448.400000pt;}
.ya6{bottom:450.265333pt;}
.ya7{bottom:450.800000pt;}
.y2f{bottom:450.932000pt;}
.y65{bottom:458.932000pt;}
.ye6{bottom:461.865333pt;}
.ya4{bottom:463.733333pt;}
.y2e{bottom:463.865333pt;}
.ya5{bottom:464.198667pt;}
.y64{bottom:471.598667pt;}
.ye5{bottom:475.066667pt;}
.y2d{bottom:475.865333pt;}
.y2c{bottom:476.133333pt;}
.y2b{bottom:476.800000pt;}
.ya3{bottom:476.932000pt;}
.y63{bottom:484.598667pt;}
.ye4{bottom:488.265333pt;}
.y2a{bottom:489.066667pt;}
.y29{bottom:489.532000pt;}
.ya2{bottom:489.865333pt;}
.y28{bottom:490.000000pt;}
.y62{bottom:497.532000pt;}
.ye3{bottom:500.932000pt;}
.y27{bottom:502.265333pt;}
.ya1{bottom:503.066667pt;}
.y61{bottom:510.265333pt;}
.ye2{bottom:514.400000pt;}
.y26{bottom:515.198667pt;}
.ya0{bottom:516.066667pt;}
.y60{bottom:523.198667pt;}
.y5f{bottom:523.466667pt;}
.ye1{bottom:527.333333pt;}
.y25{bottom:527.932000pt;}
.y9f{bottom:529.000000pt;}
.ye0{bottom:540.532000pt;}
.y24{bottom:540.932000pt;}
.y5e{bottom:541.733333pt;}
.y9e{bottom:542.198667pt;}
.ydf{bottom:553.532000pt;}
.y23{bottom:553.598667pt;}
.y5d{bottom:554.400000pt;}
.y9d{bottom:555.198667pt;}
.y22{bottom:566.333333pt;}
.yde{bottom:566.466667pt;}
.y5c{bottom:567.400000pt;}
.y9c{bottom:568.133333pt;}
.y21{bottom:579.333333pt;}
.ydd{bottom:579.666667pt;}
.y5b{bottom:580.333333pt;}
.y9b{bottom:581.333333pt;}
.y20{bottom:592.000000pt;}
.ydc{bottom:592.666667pt;}
.y1f{bottom:593.000000pt;}
.y5a{bottom:593.066667pt;}
.y1e{bottom:593.198667pt;}
.y9a{bottom:594.265333pt;}
.y1d{bottom:604.733333pt;}
.ydb{bottom:605.598667pt;}
.y1c{bottom:605.733333pt;}
.y59{bottom:605.800000pt;}
.y1b{bottom:605.932000pt;}
.y99{bottom:607.000000pt;}
.y1a{bottom:616.733333pt;}
.y19{bottom:617.000000pt;}
.y18{bottom:617.198667pt;}
.y17{bottom:617.733333pt;}
.y16{bottom:618.198667pt;}
.y15{bottom:618.400000pt;}
.y14{bottom:618.666667pt;}
.y58{bottom:618.733333pt;}
.yda{bottom:618.800000pt;}
.y98{bottom:620.198667pt;}
.y13{bottom:630.198667pt;}
.y12{bottom:631.133333pt;}
.y11{bottom:631.400000pt;}
.y57{bottom:631.733333pt;}
.yd9{bottom:632.000000pt;}
.y96{bottom:632.932000pt;}
.y97{bottom:633.400000pt;}
.y10{bottom:643.400000pt;}
.y56{bottom:644.400000pt;}
.yd8{bottom:644.932000pt;}
.y95{bottom:646.400000pt;}
.yf{bottom:656.333333pt;}
.y55{bottom:657.400000pt;}
.yd7{bottom:658.133333pt;}
.y94{bottom:659.333333pt;}
.ye{bottom:669.066667pt;}
.y54{bottom:670.133333pt;}
.y53{bottom:670.333333pt;}
.yd5{bottom:670.666667pt;}
.yd6{bottom:670.865333pt;}
.y93{bottom:672.532000pt;}
.yd{bottom:681.800000pt;}
.yd2{bottom:683.333333pt;}
.yd3{bottom:683.600000pt;}
.yd4{bottom:684.333333pt;}
.y92{bottom:685.466667pt;}
.y52{bottom:694.333333pt;}
.y51{bottom:694.600000pt;}
.yc{bottom:694.732000pt;}
.yd1{bottom:697.266667pt;}
.y91{bottom:698.466667pt;}
.yb{bottom:708.398667pt;}
.yd0{bottom:710.266667pt;}
.y8e{bottom:710.933333pt;}
.y8f{bottom:711.198667pt;}
.y90{bottom:711.666667pt;}
.y50{bottom:718.800000pt;}
.ya{bottom:720.398667pt;}
.ycd{bottom:722.933333pt;}
.yce{bottom:723.666667pt;}
.ycf{bottom:724.133333pt;}
.y8d{bottom:724.398667pt;}
.y4f{bottom:731.333333pt;}
.y4e{bottom:731.532000pt;}
.y9{bottom:732.933333pt;}
.y8{bottom:733.398667pt;}
.y7{bottom:733.865333pt;}
.ycc{bottom:736.398667pt;}
.y8c{bottom:737.600000pt;}
.y6{bottom:746.133333pt;}
.ycb{bottom:749.333333pt;}
.y8b{bottom:750.532000pt;}
.y4d{bottom:755.800000pt;}
.y5{bottom:758.800000pt;}
.yca{bottom:762.532000pt;}
.y8a{bottom:763.466667pt;}
.y4c{bottom:768.532000pt;}
.y4{bottom:771.532000pt;}
.yc9{bottom:775.532000pt;}
.y89{bottom:776.466667pt;}
.y4b{bottom:794.933333pt;}
.y4a{bottom:795.133333pt;}
.y3{bottom:797.198667pt;}
.y1{bottom:798.198667pt;}
.yc7{bottom:800.933333pt;}
.yc8{bottom:802.133333pt;}
.y86{bottom:803.065333pt;}
.y88{bottom:803.600000pt;}
.y2{bottom:805.865333pt;}
.y87{bottom:811.732000pt;}
.he{height:31.390625pt;}
.h7{height:34.006510pt;}
.hf{height:36.622396pt;}
.h1{height:36.640625pt;}
.h4{height:38.937500pt;}
.h5{height:39.238281pt;}
.hc{height:41.854167pt;}
.h3{height:41.875000pt;}
.ha{height:44.470052pt;}
.hb{height:44.492188pt;}
.h6{height:45.687500pt;}
.h2{height:54.960938pt;}
.h9{height:57.578125pt;}
.h8{height:878.666667pt;}
.hd{height:881.333333pt;}
.h0{height:882.666667pt;}
.h10{height:884.000000pt;}
.w2{width:620.000000pt;}
.w0{width:624.000000pt;}
.w1{width:629.333333pt;}
.w3{width:632.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:47.846667pt;}
.x1d{left:49.292000pt;}
.x1a{left:50.234667pt;}
.x17{left:51.237333pt;}
.x12{left:52.170667pt;}
.x4{left:53.180000pt;}
.x1b{left:66.918667pt;}
.x16{left:68.694667pt;}
.x7{left:70.458667pt;}
.x10{left:82.886667pt;}
.x37{left:85.972000pt;}
.xe{left:87.654667pt;}
.x4a{left:88.594667pt;}
.x31{left:90.548000pt;}
.x28{left:91.548000pt;}
.x1f{left:92.558667pt;}
.x35{left:101.437333pt;}
.x41{left:103.990667pt;}
.x4b{left:105.676000pt;}
.x30{left:108.012000pt;}
.x24{left:109.306667pt;}
.x39{left:111.696000pt;}
.x29{left:115.168000pt;}
.x3e{left:121.278667pt;}
.x11{left:125.097333pt;}
.x20{left:127.013333pt;}
.x22{left:131.033333pt;}
.x2b{left:132.238667pt;}
.x26{left:133.706667pt;}
.x25{left:140.740000pt;}
.x2a{left:148.673333pt;}
.x44{left:153.581333pt;}
.x8{left:154.542667pt;}
.xf{left:156.032000pt;}
.x23{left:161.676000pt;}
.xa{left:169.762667pt;}
.x9{left:181.413333pt;}
.x42{left:183.782667pt;}
.x48{left:187.228000pt;}
.x43{left:196.306667pt;}
.x36{left:197.765333pt;}
.x1{left:200.973333pt;}
.x49{left:208.116000pt;}
.x32{left:216.574667pt;}
.xb{left:227.854667pt;}
.x13{left:238.398667pt;}
.x3a{left:245.033333pt;}
.x45{left:246.358667pt;}
.x46{left:254.740000pt;}
.x5{left:257.216000pt;}
.x6{left:290.026667pt;}
.x3b{left:291.818667pt;}
.x2c{left:294.700000pt;}
.x14{left:317.765333pt;}
.x2d{left:344.273333pt;}
.x38{left:353.966667pt;}
.x18{left:361.962667pt;}
.x47{left:373.484000pt;}
.xc{left:381.832000pt;}
.x2{left:384.265333pt;}
.x3f{left:397.916000pt;}
.x33{left:399.865333pt;}
.x1e{left:405.789333pt;}
.x19{left:409.946667pt;}
.x3c{left:425.708000pt;}
.x40{left:430.940000pt;}
.x15{left:443.729333pt;}
.x21{left:450.284000pt;}
.x27{left:451.464000pt;}
.x2e{left:468.500000pt;}
.xd{left:482.582667pt;}
.x2f{left:502.206667pt;}
.x3{left:508.038667pt;}
.x34{left:524.105333pt;}
.x3d{left:540.792000pt;}
}

