
    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_1f8088c799579d4ac470b010.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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;}
.m2d{transform:matrix(0.054996,0.000660,-0.003000,0.249982,0,0);-ms-transform:matrix(0.054996,0.000660,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.054996,0.000660,-0.003000,0.249982,0,0);}
.m138{transform:matrix(0.186144,0.001489,-0.002000,0.249992,0,0);-ms-transform:matrix(0.186144,0.001489,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.186144,0.001489,-0.002000,0.249992,0,0);}
.m137{transform:matrix(0.225009,0.002700,-0.003000,0.249982,0,0);-ms-transform:matrix(0.225009,0.002700,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.225009,0.002700,-0.003000,0.249982,0,0);}
.mc1{transform:matrix(0.228184,0.002738,-0.003000,0.249982,0,0);-ms-transform:matrix(0.228184,0.002738,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.228184,0.002738,-0.003000,0.249982,0,0);}
.m124{transform:matrix(0.244140,0.002197,-0.002250,0.249990,0,0);-ms-transform:matrix(0.244140,0.002197,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.244140,0.002197,-0.002250,0.249990,0,0);}
.m107{transform:matrix(0.245113,0.002451,-0.002500,0.249987,0,0);-ms-transform:matrix(0.245113,0.002451,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.245113,0.002451,-0.002500,0.249987,0,0);}
.m84{transform:matrix(0.249307,0.002992,-0.003000,0.249982,0,0);-ms-transform:matrix(0.249307,0.002992,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.249307,0.002992,-0.003000,0.249982,0,0);}
.m3{transform:matrix(0.249313,0.002493,-0.002500,0.249987,0,0);-ms-transform:matrix(0.249313,0.002493,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.249313,0.002493,-0.002500,0.249987,0,0);}
.m128{transform:matrix(0.253165,0.002279,-0.002250,0.249990,0,0);-ms-transform:matrix(0.253165,0.002279,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.253165,0.002279,-0.002250,0.249990,0,0);}
.m140{transform:matrix(0.254442,0.002036,-0.002000,0.249992,0,0);-ms-transform:matrix(0.254442,0.002036,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.254442,0.002036,-0.002000,0.249992,0,0);}
.m5c{transform:matrix(0.258553,0.003361,-0.003250,0.249979,0,0);-ms-transform:matrix(0.258553,0.003361,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.258553,0.003361,-0.003250,0.249979,0,0);}
.m12e{transform:matrix(0.259187,0.002592,-0.002500,0.249987,0,0);-ms-transform:matrix(0.259187,0.002592,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.259187,0.002592,-0.002500,0.249987,0,0);}
.m14b{transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259700,0.000000,0.000000,0.250000,0,0);}
.m12a{transform:matrix(0.260414,0.002344,-0.002250,0.249990,0,0);-ms-transform:matrix(0.260414,0.002344,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.260414,0.002344,-0.002250,0.249990,0,0);}
.m5e{transform:matrix(0.261928,0.003405,-0.003250,0.249979,0,0);-ms-transform:matrix(0.261928,0.003405,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.261928,0.003405,-0.003250,0.249979,0,0);}
.mc7{transform:matrix(0.262559,0.002888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.262559,0.002888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.262559,0.002888,-0.002750,0.249985,0,0);}
.m6{transform:matrix(0.263987,0.002640,-0.002500,0.249987,0,0);-ms-transform:matrix(0.263987,0.002640,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.263987,0.002640,-0.002500,0.249987,0,0);}
.mcb{transform:matrix(0.264184,0.002906,-0.002750,0.249985,0,0);-ms-transform:matrix(0.264184,0.002906,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.264184,0.002906,-0.002750,0.249985,0,0);}
.mc8{transform:matrix(0.265309,0.002918,-0.002750,0.249985,0,0);-ms-transform:matrix(0.265309,0.002918,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.265309,0.002918,-0.002750,0.249985,0,0);}
.mb9{transform:matrix(0.267009,0.002937,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267009,0.002937,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267009,0.002937,-0.002750,0.249985,0,0);}
.mb8{transform:matrix(0.267184,0.002939,-0.002750,0.249985,0,0);-ms-transform:matrix(0.267184,0.002939,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.267184,0.002939,-0.002750,0.249985,0,0);}
.m132{transform:matrix(0.268437,0.002684,-0.002500,0.249987,0,0);-ms-transform:matrix(0.268437,0.002684,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.268437,0.002684,-0.002500,0.249987,0,0);}
.m62{transform:matrix(0.269227,0.003500,-0.003250,0.249979,0,0);-ms-transform:matrix(0.269227,0.003500,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.269227,0.003500,-0.003250,0.249979,0,0);}
.mbb{transform:matrix(0.269809,0.002968,-0.002750,0.249985,0,0);-ms-transform:matrix(0.269809,0.002968,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.269809,0.002968,-0.002750,0.249985,0,0);}
.m148{transform:matrix(0.269991,0.002160,-0.002000,0.249992,0,0);-ms-transform:matrix(0.269991,0.002160,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.269991,0.002160,-0.002000,0.249992,0,0);}
.m9c{transform:matrix(0.270031,0.003240,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270031,0.003240,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270031,0.003240,-0.003000,0.249982,0,0);}
.m85{transform:matrix(0.270531,0.003246,-0.003000,0.249982,0,0);-ms-transform:matrix(0.270531,0.003246,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.270531,0.003246,-0.003000,0.249982,0,0);}
.mbc{transform:matrix(0.271134,0.002982,-0.002750,0.249985,0,0);-ms-transform:matrix(0.271134,0.002982,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.271134,0.002982,-0.002750,0.249985,0,0);}
.m5{transform:matrix(0.272011,0.002720,-0.002500,0.249987,0,0);-ms-transform:matrix(0.272011,0.002720,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.272011,0.002720,-0.002500,0.249987,0,0);}
.mfd{transform:matrix(0.272136,0.002721,-0.002500,0.249987,0,0);-ms-transform:matrix(0.272136,0.002721,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.272136,0.002721,-0.002500,0.249987,0,0);}
.m5b{transform:matrix(0.272327,0.003540,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272327,0.003540,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272327,0.003540,-0.003250,0.249979,0,0);}
.m5f{transform:matrix(0.272402,0.003541,-0.003250,0.249979,0,0);-ms-transform:matrix(0.272402,0.003541,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.272402,0.003541,-0.003250,0.249979,0,0);}
.m88{transform:matrix(0.272530,0.003270,-0.003000,0.249982,0,0);-ms-transform:matrix(0.272530,0.003270,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.272530,0.003270,-0.003000,0.249982,0,0);}
.m125{transform:matrix(0.273139,0.002458,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273139,0.002458,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273139,0.002458,-0.002250,0.249990,0,0);}
.mc6{transform:matrix(0.273408,0.003007,-0.002750,0.249985,0,0);-ms-transform:matrix(0.273408,0.003007,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.273408,0.003007,-0.002750,0.249985,0,0);}
.m127{transform:matrix(0.273539,0.002462,-0.002250,0.249990,0,0);-ms-transform:matrix(0.273539,0.002462,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.273539,0.002462,-0.002250,0.249990,0,0);}
.m108{transform:matrix(0.275886,0.002759,-0.002500,0.249987,0,0);-ms-transform:matrix(0.275886,0.002759,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.275886,0.002759,-0.002500,0.249987,0,0);}
.mc5{transform:matrix(0.276058,0.003037,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276058,0.003037,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276058,0.003037,-0.002750,0.249985,0,0);}
.m143{transform:matrix(0.276541,0.002212,-0.002000,0.249992,0,0);-ms-transform:matrix(0.276541,0.002212,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.276541,0.002212,-0.002000,0.249992,0,0);}
.m86{transform:matrix(0.276655,0.003320,-0.003000,0.249982,0,0);-ms-transform:matrix(0.276655,0.003320,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.276655,0.003320,-0.003000,0.249982,0,0);}
.mb7{transform:matrix(0.276858,0.003045,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276858,0.003045,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276858,0.003045,-0.002750,0.249985,0,0);}
.mac{transform:matrix(0.276958,0.003046,-0.002750,0.249985,0,0);-ms-transform:matrix(0.276958,0.003046,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.276958,0.003046,-0.002750,0.249985,0,0);}
.m129{transform:matrix(0.278589,0.002507,-0.002250,0.249990,0,0);-ms-transform:matrix(0.278589,0.002507,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.278589,0.002507,-0.002250,0.249990,0,0);}
.mba{transform:matrix(0.278733,0.003066,-0.002750,0.249985,0,0);-ms-transform:matrix(0.278733,0.003066,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.278733,0.003066,-0.002750,0.249985,0,0);}
.m83{transform:matrix(0.279105,0.003349,-0.003000,0.249982,0,0);-ms-transform:matrix(0.279105,0.003349,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.279105,0.003349,-0.003000,0.249982,0,0);}
.m5d{transform:matrix(0.279351,0.003632,-0.003250,0.249979,0,0);-ms-transform:matrix(0.279351,0.003632,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.279351,0.003632,-0.003250,0.249979,0,0);}
.m100{transform:matrix(0.279511,0.002795,-0.002500,0.249987,0,0);-ms-transform:matrix(0.279511,0.002795,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.279511,0.002795,-0.002500,0.249987,0,0);}
.m126{transform:matrix(0.279564,0.002516,-0.002250,0.249990,0,0);-ms-transform:matrix(0.279564,0.002516,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.279564,0.002516,-0.002250,0.249990,0,0);}
.m142{transform:matrix(0.280391,0.002243,-0.002000,0.249992,0,0);-ms-transform:matrix(0.280391,0.002243,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.280391,0.002243,-0.002000,0.249992,0,0);}
.m106{transform:matrix(0.281036,0.002810,-0.002500,0.249987,0,0);-ms-transform:matrix(0.281036,0.002810,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.281036,0.002810,-0.002500,0.249987,0,0);}
.m41{transform:matrix(0.281086,0.002811,-0.002500,0.249987,0,0);-ms-transform:matrix(0.281086,0.002811,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.281086,0.002811,-0.002500,0.249987,0,0);}
.m4{transform:matrix(0.281286,0.002813,-0.002500,0.249987,0,0);-ms-transform:matrix(0.281286,0.002813,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.281286,0.002813,-0.002500,0.249987,0,0);}
.m2{transform:matrix(0.281411,0.002814,-0.002500,0.249987,0,0);-ms-transform:matrix(0.281411,0.002814,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.281411,0.002814,-0.002500,0.249987,0,0);}
.m141{transform:matrix(0.281916,0.002255,-0.002000,0.249992,0,0);-ms-transform:matrix(0.281916,0.002255,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.281916,0.002255,-0.002000,0.249992,0,0);}
.mc0{transform:matrix(0.282180,0.003386,-0.003000,0.249982,0,0);-ms-transform:matrix(0.282180,0.003386,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.282180,0.003386,-0.003000,0.249982,0,0);}
.mc9{transform:matrix(0.282358,0.003106,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282358,0.003106,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282358,0.003106,-0.002750,0.249985,0,0);}
.m4a{transform:matrix(0.282608,0.003109,-0.002750,0.249985,0,0);-ms-transform:matrix(0.282608,0.003109,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.282608,0.003109,-0.002750,0.249985,0,0);}
.m3c{transform:matrix(0.283411,0.002834,-0.002500,0.249987,0,0);-ms-transform:matrix(0.283411,0.002834,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.283411,0.002834,-0.002500,0.249987,0,0);}
.m123{transform:matrix(0.283439,0.002551,-0.002250,0.249990,0,0);-ms-transform:matrix(0.283439,0.002551,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.283439,0.002551,-0.002250,0.249990,0,0);}
.m82{transform:matrix(0.283580,0.003403,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283580,0.003403,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283580,0.003403,-0.003000,0.249982,0,0);}
.m5a{transform:matrix(0.283601,0.003687,-0.003250,0.249979,0,0);-ms-transform:matrix(0.283601,0.003687,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.283601,0.003687,-0.003250,0.249979,0,0);}
.m99{transform:matrix(0.283655,0.003404,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283655,0.003404,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283655,0.003404,-0.003000,0.249982,0,0);}
.m81{transform:matrix(0.283755,0.003405,-0.003000,0.249982,0,0);-ms-transform:matrix(0.283755,0.003405,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.283755,0.003405,-0.003000,0.249982,0,0);}
.m1{transform:matrix(0.283836,0.002838,-0.002500,0.249987,0,0);-ms-transform:matrix(0.283836,0.002838,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.283836,0.002838,-0.002500,0.249987,0,0);}
.m0{transform:matrix(0.285286,0.002853,-0.002500,0.249987,0,0);-ms-transform:matrix(0.285286,0.002853,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.285286,0.002853,-0.002500,0.249987,0,0);}
.m3f{transform:matrix(0.285661,0.002857,-0.002500,0.249987,0,0);-ms-transform:matrix(0.285661,0.002857,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.285661,0.002857,-0.002500,0.249987,0,0);}
.m135{transform:matrix(0.285804,0.003430,-0.003000,0.249982,0,0);-ms-transform:matrix(0.285804,0.003430,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.285804,0.003430,-0.003000,0.249982,0,0);}
.mad{transform:matrix(0.286083,0.003147,-0.002750,0.249985,0,0);-ms-transform:matrix(0.286083,0.003147,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.286083,0.003147,-0.002750,0.249985,0,0);}
.m104{transform:matrix(0.286386,0.002864,-0.002500,0.249987,0,0);-ms-transform:matrix(0.286386,0.002864,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.286386,0.002864,-0.002500,0.249987,0,0);}
.m60{transform:matrix(0.286651,0.003726,-0.003250,0.249979,0,0);-ms-transform:matrix(0.286651,0.003726,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.286651,0.003726,-0.003250,0.249979,0,0);}
.m3b{transform:matrix(0.286686,0.002867,-0.002500,0.249987,0,0);-ms-transform:matrix(0.286686,0.002867,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.286686,0.002867,-0.002500,0.249987,0,0);}
.m105{transform:matrix(0.286836,0.002868,-0.002500,0.249987,0,0);-ms-transform:matrix(0.286836,0.002868,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.286836,0.002868,-0.002500,0.249987,0,0);}
.m72{transform:matrix(0.286954,0.003443,-0.003000,0.249982,0,0);-ms-transform:matrix(0.286954,0.003443,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.286954,0.003443,-0.003000,0.249982,0,0);}
.m10f{transform:matrix(0.287661,0.002877,-0.002500,0.249987,0,0);-ms-transform:matrix(0.287661,0.002877,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.287661,0.002877,-0.002500,0.249987,0,0);}
.ma8{transform:matrix(0.287833,0.003166,-0.002750,0.249985,0,0);-ms-transform:matrix(0.287833,0.003166,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.287833,0.003166,-0.002750,0.249985,0,0);}
.m98{transform:matrix(0.288279,0.003459,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288279,0.003459,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288279,0.003459,-0.003000,0.249982,0,0);}
.m145{transform:matrix(0.288441,0.002308,-0.002000,0.249992,0,0);-ms-transform:matrix(0.288441,0.002308,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.288441,0.002308,-0.002000,0.249992,0,0);}
.m94{transform:matrix(0.288529,0.003462,-0.003000,0.249982,0,0);-ms-transform:matrix(0.288529,0.003462,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.288529,0.003462,-0.003000,0.249982,0,0);}
.m10a{transform:matrix(0.289286,0.002893,-0.002500,0.249987,0,0);-ms-transform:matrix(0.289286,0.002893,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.289286,0.002893,-0.002500,0.249987,0,0);}
.mc2{transform:matrix(0.289529,0.003474,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289529,0.003474,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289529,0.003474,-0.003000,0.249982,0,0);}
.maa{transform:matrix(0.289532,0.003185,-0.002750,0.249985,0,0);-ms-transform:matrix(0.289532,0.003185,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.289532,0.003185,-0.002750,0.249985,0,0);}
.m87{transform:matrix(0.289629,0.003476,-0.003000,0.249982,0,0);-ms-transform:matrix(0.289629,0.003476,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.289629,0.003476,-0.003000,0.249982,0,0);}
.m31{transform:matrix(0.289657,0.003186,-0.002750,0.249985,0,0);-ms-transform:matrix(0.289657,0.003186,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.289657,0.003186,-0.002750,0.249985,0,0);}
.m111{transform:matrix(0.289686,0.002897,-0.002500,0.249987,0,0);-ms-transform:matrix(0.289686,0.002897,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.289686,0.002897,-0.002500,0.249987,0,0);}
.m144{transform:matrix(0.290616,0.002325,-0.002000,0.249992,0,0);-ms-transform:matrix(0.290616,0.002325,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.290616,0.002325,-0.002000,0.249992,0,0);}
.mbe{transform:matrix(0.290879,0.003491,-0.003000,0.249982,0,0);-ms-transform:matrix(0.290879,0.003491,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.290879,0.003491,-0.003000,0.249982,0,0);}
.mae{transform:matrix(0.290932,0.003200,-0.002750,0.249985,0,0);-ms-transform:matrix(0.290932,0.003200,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.290932,0.003200,-0.002750,0.249985,0,0);}
.m35{transform:matrix(0.291107,0.003202,-0.002750,0.249985,0,0);-ms-transform:matrix(0.291107,0.003202,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.291107,0.003202,-0.002750,0.249985,0,0);}
.m10d{transform:matrix(0.291110,0.002911,-0.002500,0.249987,0,0);-ms-transform:matrix(0.291110,0.002911,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.291110,0.002911,-0.002500,0.249987,0,0);}
.m40{transform:matrix(0.291410,0.002914,-0.002500,0.249987,0,0);-ms-transform:matrix(0.291410,0.002914,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.291410,0.002914,-0.002500,0.249987,0,0);}
.m96{transform:matrix(0.292504,0.003510,-0.003000,0.249982,0,0);-ms-transform:matrix(0.292504,0.003510,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.292504,0.003510,-0.003000,0.249982,0,0);}
.mc4{transform:matrix(0.292707,0.003220,-0.002750,0.249985,0,0);-ms-transform:matrix(0.292707,0.003220,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.292707,0.003220,-0.002750,0.249985,0,0);}
.mcd{transform:matrix(0.292857,0.003221,-0.002750,0.249985,0,0);-ms-transform:matrix(0.292857,0.003221,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.292857,0.003221,-0.002750,0.249985,0,0);}
.m3d{transform:matrix(0.292935,0.002929,-0.002500,0.249987,0,0);-ms-transform:matrix(0.292935,0.002929,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.292935,0.002929,-0.002500,0.249987,0,0);}
.m30{transform:matrix(0.293307,0.003226,-0.002750,0.249985,0,0);-ms-transform:matrix(0.293307,0.003226,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.293307,0.003226,-0.002750,0.249985,0,0);}
.m70{transform:matrix(0.293479,0.003522,-0.003000,0.249982,0,0);-ms-transform:matrix(0.293479,0.003522,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.293479,0.003522,-0.003000,0.249982,0,0);}
.m10e{transform:matrix(0.293535,0.002935,-0.002500,0.249987,0,0);-ms-transform:matrix(0.293535,0.002935,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.293535,0.002935,-0.002500,0.249987,0,0);}
.m61{transform:matrix(0.294050,0.003823,-0.003250,0.249979,0,0);-ms-transform:matrix(0.294050,0.003823,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.294050,0.003823,-0.003250,0.249979,0,0);}
.mb6{transform:matrix(0.294407,0.003238,-0.002750,0.249985,0,0);-ms-transform:matrix(0.294407,0.003238,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.294407,0.003238,-0.002750,0.249985,0,0);}
.m6a{transform:matrix(0.295029,0.003540,-0.003000,0.249982,0,0);-ms-transform:matrix(0.295029,0.003540,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.295029,0.003540,-0.003000,0.249982,0,0);}
.mca{transform:matrix(0.295882,0.003255,-0.002750,0.249985,0,0);-ms-transform:matrix(0.295882,0.003255,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.295882,0.003255,-0.002750,0.249985,0,0);}
.m95{transform:matrix(0.296004,0.003552,-0.003000,0.249982,0,0);-ms-transform:matrix(0.296004,0.003552,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.296004,0.003552,-0.003000,0.249982,0,0);}
.mab{transform:matrix(0.296132,0.003257,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296132,0.003257,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296132,0.003257,-0.002750,0.249985,0,0);}
.ma6{transform:matrix(0.296307,0.003259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296307,0.003259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296307,0.003259,-0.002750,0.249985,0,0);}
.m52{transform:matrix(0.296382,0.003260,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296382,0.003260,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296382,0.003260,-0.002750,0.249985,0,0);}
.mbf{transform:matrix(0.296654,0.003560,-0.003000,0.249982,0,0);-ms-transform:matrix(0.296654,0.003560,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.296654,0.003560,-0.003000,0.249982,0,0);}
.me5{transform:matrix(0.296707,0.003264,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296707,0.003264,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296707,0.003264,-0.002750,0.249985,0,0);}
.m6e{transform:matrix(0.296729,0.003561,-0.003000,0.249982,0,0);-ms-transform:matrix(0.296729,0.003561,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.296729,0.003561,-0.003000,0.249982,0,0);}
.m2f{transform:matrix(0.296857,0.003265,-0.002750,0.249985,0,0);-ms-transform:matrix(0.296857,0.003265,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.296857,0.003265,-0.002750,0.249985,0,0);}
.m69{transform:matrix(0.297079,0.003565,-0.003000,0.249982,0,0);-ms-transform:matrix(0.297079,0.003565,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.297079,0.003565,-0.003000,0.249982,0,0);}
.m97{transform:matrix(0.297104,0.003565,-0.003000,0.249982,0,0);-ms-transform:matrix(0.297104,0.003565,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.297104,0.003565,-0.003000,0.249982,0,0);}
.mbd{transform:matrix(0.297254,0.003567,-0.003000,0.249982,0,0);-ms-transform:matrix(0.297254,0.003567,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.297254,0.003567,-0.003000,0.249982,0,0);}
.m7{transform:matrix(0.297735,0.002977,-0.002500,0.249987,0,0);-ms-transform:matrix(0.297735,0.002977,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.297735,0.002977,-0.002500,0.249987,0,0);}
.m139{transform:matrix(0.298065,0.002385,-0.002000,0.249992,0,0);-ms-transform:matrix(0.298065,0.002385,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.298065,0.002385,-0.002000,0.249992,0,0);}
.ma9{transform:matrix(0.298407,0.003282,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298407,0.003282,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298407,0.003282,-0.002750,0.249985,0,0);}
.mcc{transform:matrix(0.298732,0.003286,-0.002750,0.249985,0,0);-ms-transform:matrix(0.298732,0.003286,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.298732,0.003286,-0.002750,0.249985,0,0);}
.m110{transform:matrix(0.298835,0.002988,-0.002500,0.249987,0,0);-ms-transform:matrix(0.298835,0.002988,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.298835,0.002988,-0.002500,0.249987,0,0);}
.m9d{transform:matrix(0.299153,0.003590,-0.003000,0.249982,0,0);-ms-transform:matrix(0.299153,0.003590,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.299153,0.003590,-0.003000,0.249982,0,0);}
.m47{transform:matrix(0.299232,0.003291,-0.002750,0.249985,0,0);-ms-transform:matrix(0.299232,0.003291,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.299232,0.003291,-0.002750,0.249985,0,0);}
.m102{transform:matrix(0.299585,0.002996,-0.002500,0.249987,0,0);-ms-transform:matrix(0.299585,0.002996,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.299585,0.002996,-0.002500,0.249987,0,0);}
.m6c{transform:matrix(0.300028,0.003600,-0.003000,0.249982,0,0);-ms-transform:matrix(0.300028,0.003600,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.300028,0.003600,-0.003000,0.249982,0,0);}
.m68{transform:matrix(0.300453,0.003605,-0.003000,0.249982,0,0);-ms-transform:matrix(0.300453,0.003605,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.300453,0.003605,-0.003000,0.249982,0,0);}
.m122{transform:matrix(0.301063,0.002710,-0.002250,0.249990,0,0);-ms-transform:matrix(0.301063,0.002710,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.301063,0.002710,-0.002250,0.249990,0,0);}
.m9b{transform:matrix(0.301253,0.003615,-0.003000,0.249982,0,0);-ms-transform:matrix(0.301253,0.003615,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.301253,0.003615,-0.003000,0.249982,0,0);}
.m32{transform:matrix(0.302107,0.003323,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302107,0.003323,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302107,0.003323,-0.002750,0.249985,0,0);}
.m10b{transform:matrix(0.302160,0.003022,-0.002500,0.249987,0,0);-ms-transform:matrix(0.302160,0.003022,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.302160,0.003022,-0.002500,0.249987,0,0);}
.ma7{transform:matrix(0.302257,0.003325,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302257,0.003325,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302257,0.003325,-0.002750,0.249985,0,0);}
.m33{transform:matrix(0.302282,0.003325,-0.002750,0.249985,0,0);-ms-transform:matrix(0.302282,0.003325,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.302282,0.003325,-0.002750,0.249985,0,0);}
.m14a{transform:matrix(0.302590,0.002421,-0.002000,0.249992,0,0);-ms-transform:matrix(0.302590,0.002421,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.302590,0.002421,-0.002000,0.249992,0,0);}
.m10c{transform:matrix(0.303160,0.003032,-0.002500,0.249987,0,0);-ms-transform:matrix(0.303160,0.003032,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.303160,0.003032,-0.002500,0.249987,0,0);}
.m6b{transform:matrix(0.303253,0.003639,-0.003000,0.249982,0,0);-ms-transform:matrix(0.303253,0.003639,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.303253,0.003639,-0.003000,0.249982,0,0);}
.m149{transform:matrix(0.303415,0.002427,-0.002000,0.249992,0,0);-ms-transform:matrix(0.303415,0.002427,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.303415,0.002427,-0.002000,0.249992,0,0);}
.m3e{transform:matrix(0.303785,0.003038,-0.002500,0.249987,0,0);-ms-transform:matrix(0.303785,0.003038,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.303785,0.003038,-0.002500,0.249987,0,0);}
.m6f{transform:matrix(0.304103,0.003649,-0.003000,0.249982,0,0);-ms-transform:matrix(0.304103,0.003649,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.304103,0.003649,-0.003000,0.249982,0,0);}
.m109{transform:matrix(0.304135,0.003041,-0.002500,0.249987,0,0);-ms-transform:matrix(0.304135,0.003041,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.304135,0.003041,-0.002500,0.249987,0,0);}
.m101{transform:matrix(0.304310,0.003043,-0.002500,0.249987,0,0);-ms-transform:matrix(0.304310,0.003043,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.304310,0.003043,-0.002500,0.249987,0,0);}
.m146{transform:matrix(0.305665,0.002445,-0.002000,0.249992,0,0);-ms-transform:matrix(0.305665,0.002445,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.305665,0.002445,-0.002000,0.249992,0,0);}
.m44{transform:matrix(0.305906,0.003365,-0.002750,0.249985,0,0);-ms-transform:matrix(0.305906,0.003365,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.305906,0.003365,-0.002750,0.249985,0,0);}
.ma3{transform:matrix(0.306124,0.003980,-0.003250,0.249979,0,0);-ms-transform:matrix(0.306124,0.003980,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.306124,0.003980,-0.003250,0.249979,0,0);}
.m13f{transform:matrix(0.306265,0.002450,-0.002000,0.249992,0,0);-ms-transform:matrix(0.306265,0.002450,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.306265,0.002450,-0.002000,0.249992,0,0);}
.m43{transform:matrix(0.306781,0.003374,-0.002750,0.249985,0,0);-ms-transform:matrix(0.306781,0.003374,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.306781,0.003374,-0.002750,0.249985,0,0);}
.m9a{transform:matrix(0.307203,0.003686,-0.003000,0.249982,0,0);-ms-transform:matrix(0.307203,0.003686,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.307203,0.003686,-0.003000,0.249982,0,0);}
.m76{transform:matrix(0.307503,0.003690,-0.003000,0.249982,0,0);-ms-transform:matrix(0.307503,0.003690,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.307503,0.003690,-0.003000,0.249982,0,0);}
.m77{transform:matrix(0.307803,0.003694,-0.003000,0.249982,0,0);-ms-transform:matrix(0.307803,0.003694,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.307803,0.003694,-0.003000,0.249982,0,0);}
.mc3{transform:matrix(0.309356,0.003403,-0.002750,0.249985,0,0);-ms-transform:matrix(0.309356,0.003403,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.309356,0.003403,-0.002750,0.249985,0,0);}
.m13b{transform:matrix(0.309365,0.002475,-0.002000,0.249992,0,0);-ms-transform:matrix(0.309365,0.002475,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.309365,0.002475,-0.002000,0.249992,0,0);}
.m48{transform:matrix(0.309406,0.003403,-0.002750,0.249985,0,0);-ms-transform:matrix(0.309406,0.003403,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.309406,0.003403,-0.002750,0.249985,0,0);}
.m130{transform:matrix(0.309610,0.003096,-0.002500,0.249987,0,0);-ms-transform:matrix(0.309610,0.003096,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.309610,0.003096,-0.002500,0.249987,0,0);}
.m147{transform:matrix(0.309890,0.002479,-0.002000,0.249992,0,0);-ms-transform:matrix(0.309890,0.002479,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.309890,0.002479,-0.002000,0.249992,0,0);}
.m34{transform:matrix(0.311006,0.003421,-0.002750,0.249985,0,0);-ms-transform:matrix(0.311006,0.003421,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.311006,0.003421,-0.002750,0.249985,0,0);}
.m79{transform:matrix(0.311078,0.003733,-0.003000,0.249982,0,0);-ms-transform:matrix(0.311078,0.003733,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.311078,0.003733,-0.003000,0.249982,0,0);}
.m12f{transform:matrix(0.313709,0.003137,-0.002500,0.249987,0,0);-ms-transform:matrix(0.313709,0.003137,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.313709,0.003137,-0.002500,0.249987,0,0);}
.ma2{transform:matrix(0.314148,0.004084,-0.003250,0.249979,0,0);-ms-transform:matrix(0.314148,0.004084,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.314148,0.004084,-0.003250,0.249979,0,0);}
.m4b{transform:matrix(0.314256,0.003457,-0.002750,0.249985,0,0);-ms-transform:matrix(0.314256,0.003457,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.314256,0.003457,-0.002750,0.249985,0,0);}
.m9f{transform:matrix(0.314798,0.004092,-0.003250,0.249979,0,0);-ms-transform:matrix(0.314798,0.004092,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.314798,0.004092,-0.003250,0.249979,0,0);}
.m49{transform:matrix(0.315231,0.003467,-0.002750,0.249985,0,0);-ms-transform:matrix(0.315231,0.003467,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.315231,0.003467,-0.002750,0.249985,0,0);}
.m42{transform:matrix(0.315506,0.003470,-0.002750,0.249985,0,0);-ms-transform:matrix(0.315506,0.003470,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.315506,0.003470,-0.002750,0.249985,0,0);}
.ma0{transform:matrix(0.316423,0.004114,-0.003250,0.249979,0,0);-ms-transform:matrix(0.316423,0.004114,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.316423,0.004114,-0.003250,0.249979,0,0);}
.m134{transform:matrix(0.316952,0.003803,-0.003000,0.249982,0,0);-ms-transform:matrix(0.316952,0.003803,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.316952,0.003803,-0.003000,0.249982,0,0);}
.m73{transform:matrix(0.317102,0.003805,-0.003000,0.249982,0,0);-ms-transform:matrix(0.317102,0.003805,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.317102,0.003805,-0.003000,0.249982,0,0);}
.m103{transform:matrix(0.317334,0.003173,-0.002500,0.249987,0,0);-ms-transform:matrix(0.317334,0.003173,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.317334,0.003173,-0.002500,0.249987,0,0);}
.ma5{transform:matrix(0.317706,0.003495,-0.002750,0.249985,0,0);-ms-transform:matrix(0.317706,0.003495,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.317706,0.003495,-0.002750,0.249985,0,0);}
.m131{transform:matrix(0.318634,0.003186,-0.002500,0.249987,0,0);-ms-transform:matrix(0.318634,0.003186,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.318634,0.003186,-0.002500,0.249987,0,0);}
.m71{transform:matrix(0.319677,0.003836,-0.003000,0.249982,0,0);-ms-transform:matrix(0.319677,0.003836,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.319677,0.003836,-0.003000,0.249982,0,0);}
.m133{transform:matrix(0.320359,0.003204,-0.002500,0.249987,0,0);-ms-transform:matrix(0.320359,0.003204,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.320359,0.003204,-0.002500,0.249987,0,0);}
.m6d{transform:matrix(0.320627,0.003847,-0.003000,0.249982,0,0);-ms-transform:matrix(0.320627,0.003847,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.320627,0.003847,-0.003000,0.249982,0,0);}
.m78{transform:matrix(0.320727,0.003849,-0.003000,0.249982,0,0);-ms-transform:matrix(0.320727,0.003849,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.320727,0.003849,-0.003000,0.249982,0,0);}
.ma4{transform:matrix(0.321348,0.004178,-0.003250,0.249979,0,0);-ms-transform:matrix(0.321348,0.004178,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.321348,0.004178,-0.003250,0.249979,0,0);}
.m59{transform:matrix(0.321606,0.003538,-0.002750,0.249985,0,0);-ms-transform:matrix(0.321606,0.003538,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.321606,0.003538,-0.002750,0.249985,0,0);}
.m12d{transform:matrix(0.321959,0.003220,-0.002500,0.249987,0,0);-ms-transform:matrix(0.321959,0.003220,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.321959,0.003220,-0.002500,0.249987,0,0);}
.ma1{transform:matrix(0.322398,0.004191,-0.003250,0.249979,0,0);-ms-transform:matrix(0.322398,0.004191,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.322398,0.004191,-0.003250,0.249979,0,0);}
.m119{transform:matrix(0.322409,0.003224,-0.002500,0.249987,0,0);-ms-transform:matrix(0.322409,0.003224,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.322409,0.003224,-0.002500,0.249987,0,0);}
.md3{transform:matrix(0.323730,0.003561,-0.002750,0.249985,0,0);-ms-transform:matrix(0.323730,0.003561,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.323730,0.003561,-0.002750,0.249985,0,0);}
.m58{transform:matrix(0.323955,0.003563,-0.002750,0.249985,0,0);-ms-transform:matrix(0.323955,0.003563,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.323955,0.003563,-0.002750,0.249985,0,0);}
.mce{transform:matrix(0.324180,0.003566,-0.002750,0.249985,0,0);-ms-transform:matrix(0.324180,0.003566,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.324180,0.003566,-0.002750,0.249985,0,0);}
.m93{transform:matrix(0.324377,0.003892,-0.003000,0.249982,0,0);-ms-transform:matrix(0.324377,0.003892,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.324377,0.003892,-0.003000,0.249982,0,0);}
.m9e{transform:matrix(0.324523,0.004219,-0.003250,0.249979,0,0);-ms-transform:matrix(0.324523,0.004219,-0.003250,0.249979,0,0);-webkit-transform:matrix(0.324523,0.004219,-0.003250,0.249979,0,0);}
.m75{transform:matrix(0.324702,0.003896,-0.003000,0.249982,0,0);-ms-transform:matrix(0.324702,0.003896,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.324702,0.003896,-0.003000,0.249982,0,0);}
.m13e{transform:matrix(0.325090,0.002601,-0.002000,0.249992,0,0);-ms-transform:matrix(0.325090,0.002601,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.325090,0.002601,-0.002000,0.249992,0,0);}
.m56{transform:matrix(0.325505,0.003580,-0.002750,0.249985,0,0);-ms-transform:matrix(0.325505,0.003580,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.325505,0.003580,-0.002750,0.249985,0,0);}
.mee{transform:matrix(0.325609,0.003256,-0.002500,0.249987,0,0);-ms-transform:matrix(0.325609,0.003256,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.325609,0.003256,-0.002500,0.249987,0,0);}
.m50{transform:matrix(0.326105,0.003587,-0.002750,0.249985,0,0);-ms-transform:matrix(0.326105,0.003587,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.326105,0.003587,-0.002750,0.249985,0,0);}
.m51{transform:matrix(0.326155,0.003588,-0.002750,0.249985,0,0);-ms-transform:matrix(0.326155,0.003588,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.326155,0.003588,-0.002750,0.249985,0,0);}
.me3{transform:matrix(0.326530,0.003592,-0.002750,0.249985,0,0);-ms-transform:matrix(0.326530,0.003592,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.326530,0.003592,-0.002750,0.249985,0,0);}
.m54{transform:matrix(0.326680,0.003593,-0.002750,0.249985,0,0);-ms-transform:matrix(0.326680,0.003593,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.326680,0.003593,-0.002750,0.249985,0,0);}
.m7a{transform:matrix(0.327980,0.003608,-0.002750,0.249985,0,0);-ms-transform:matrix(0.327980,0.003608,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.327980,0.003608,-0.002750,0.249985,0,0);}
.m4e{transform:matrix(0.328905,0.003618,-0.002750,0.249985,0,0);-ms-transform:matrix(0.328905,0.003618,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.328905,0.003618,-0.002750,0.249985,0,0);}
.m12c{transform:matrix(0.329009,0.003290,-0.002500,0.249987,0,0);-ms-transform:matrix(0.329009,0.003290,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.329009,0.003290,-0.002500,0.249987,0,0);}
.m57{transform:matrix(0.329555,0.003625,-0.002750,0.249985,0,0);-ms-transform:matrix(0.329555,0.003625,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.329555,0.003625,-0.002750,0.249985,0,0);}
.mcf{transform:matrix(0.330080,0.003631,-0.002750,0.249985,0,0);-ms-transform:matrix(0.330080,0.003631,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.330080,0.003631,-0.002750,0.249985,0,0);}
.m4f{transform:matrix(0.330180,0.003632,-0.002750,0.249985,0,0);-ms-transform:matrix(0.330180,0.003632,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.330180,0.003632,-0.002750,0.249985,0,0);}
.m4d{transform:matrix(0.331580,0.003647,-0.002750,0.249985,0,0);-ms-transform:matrix(0.331580,0.003647,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.331580,0.003647,-0.002750,0.249985,0,0);}
.m26{transform:matrix(0.331605,0.003648,-0.002750,0.249985,0,0);-ms-transform:matrix(0.331605,0.003648,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.331605,0.003648,-0.002750,0.249985,0,0);}
.meb{transform:matrix(0.331833,0.003318,-0.002500,0.249987,0,0);-ms-transform:matrix(0.331833,0.003318,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.331833,0.003318,-0.002500,0.249987,0,0);}
.m136{transform:matrix(0.332576,0.003991,-0.003000,0.249982,0,0);-ms-transform:matrix(0.332576,0.003991,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.332576,0.003991,-0.003000,0.249982,0,0);}
.m46{transform:matrix(0.333080,0.003664,-0.002750,0.249985,0,0);-ms-transform:matrix(0.333080,0.003664,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.333080,0.003664,-0.002750,0.249985,0,0);}
.m53{transform:matrix(0.333680,0.003670,-0.002750,0.249985,0,0);-ms-transform:matrix(0.333680,0.003670,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.333680,0.003670,-0.002750,0.249985,0,0);}
.mfe{transform:matrix(0.333883,0.003339,-0.002500,0.249987,0,0);-ms-transform:matrix(0.333883,0.003339,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.333883,0.003339,-0.002500,0.249987,0,0);}
.mdc{transform:matrix(0.334117,0.002339,-0.001750,0.249994,0,0);-ms-transform:matrix(0.334117,0.002339,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.334117,0.002339,-0.001750,0.249994,0,0);}
.mfc{transform:matrix(0.334133,0.003341,-0.002500,0.249987,0,0);-ms-transform:matrix(0.334133,0.003341,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.334133,0.003341,-0.002500,0.249987,0,0);}
.m65{transform:matrix(0.334526,0.004014,-0.003000,0.249982,0,0);-ms-transform:matrix(0.334526,0.004014,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.334526,0.004014,-0.003000,0.249982,0,0);}
.m115{transform:matrix(0.334808,0.003348,-0.002500,0.249987,0,0);-ms-transform:matrix(0.334808,0.003348,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.334808,0.003348,-0.002500,0.249987,0,0);}
.mec{transform:matrix(0.335108,0.003351,-0.002500,0.249987,0,0);-ms-transform:matrix(0.335108,0.003351,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.335108,0.003351,-0.002500,0.249987,0,0);}
.md1{transform:matrix(0.335230,0.003687,-0.002750,0.249985,0,0);-ms-transform:matrix(0.335230,0.003687,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.335230,0.003687,-0.002750,0.249985,0,0);}
.m74{transform:matrix(0.335501,0.004026,-0.003000,0.249982,0,0);-ms-transform:matrix(0.335501,0.004026,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.335501,0.004026,-0.003000,0.249982,0,0);}
.m4c{transform:matrix(0.336205,0.003698,-0.002750,0.249985,0,0);-ms-transform:matrix(0.336205,0.003698,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.336205,0.003698,-0.002750,0.249985,0,0);}
.m2e{transform:matrix(0.337330,0.003711,-0.002750,0.249985,0,0);-ms-transform:matrix(0.337330,0.003711,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.337330,0.003711,-0.002750,0.249985,0,0);}
.md2{transform:matrix(0.337355,0.003711,-0.002750,0.249985,0,0);-ms-transform:matrix(0.337355,0.003711,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.337355,0.003711,-0.002750,0.249985,0,0);}
.m66{transform:matrix(0.338076,0.004057,-0.003000,0.249982,0,0);-ms-transform:matrix(0.338076,0.004057,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.338076,0.004057,-0.003000,0.249982,0,0);}
.mdb{transform:matrix(0.338292,0.002368,-0.001750,0.249994,0,0);-ms-transform:matrix(0.338292,0.002368,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.338292,0.002368,-0.001750,0.249994,0,0);}
.mfb{transform:matrix(0.339108,0.003391,-0.002500,0.249987,0,0);-ms-transform:matrix(0.339108,0.003391,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.339108,0.003391,-0.002500,0.249987,0,0);}
.m12b{transform:matrix(0.339536,0.003056,-0.002250,0.249990,0,0);-ms-transform:matrix(0.339536,0.003056,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.339536,0.003056,-0.002250,0.249990,0,0);}
.md7{transform:matrix(0.340192,0.002381,-0.001750,0.249994,0,0);-ms-transform:matrix(0.340192,0.002381,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.340192,0.002381,-0.001750,0.249994,0,0);}
.mf0{transform:matrix(0.340483,0.003405,-0.002500,0.249987,0,0);-ms-transform:matrix(0.340483,0.003405,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.340483,0.003405,-0.002500,0.249987,0,0);}
.m16{transform:matrix(0.340783,0.003408,-0.002500,0.249987,0,0);-ms-transform:matrix(0.340783,0.003408,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.340783,0.003408,-0.002500,0.249987,0,0);}
.m67{transform:matrix(0.341375,0.004096,-0.003000,0.249982,0,0);-ms-transform:matrix(0.341375,0.004096,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.341375,0.004096,-0.003000,0.249982,0,0);}
.md0{transform:matrix(0.341604,0.003758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.341604,0.003758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.341604,0.003758,-0.002750,0.249985,0,0);}
.m91{transform:matrix(0.341650,0.004100,-0.003000,0.249982,0,0);-ms-transform:matrix(0.341650,0.004100,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.341650,0.004100,-0.003000,0.249982,0,0);}
.mc{transform:matrix(0.341654,0.003758,-0.002750,0.249985,0,0);-ms-transform:matrix(0.341654,0.003758,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.341654,0.003758,-0.002750,0.249985,0,0);}
.me9{transform:matrix(0.342279,0.003765,-0.002750,0.249985,0,0);-ms-transform:matrix(0.342279,0.003765,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.342279,0.003765,-0.002750,0.249985,0,0);}
.me8{transform:matrix(0.342404,0.003766,-0.002750,0.249985,0,0);-ms-transform:matrix(0.342404,0.003766,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.342404,0.003766,-0.002750,0.249985,0,0);}
.md6{transform:matrix(0.342467,0.002397,-0.001750,0.249994,0,0);-ms-transform:matrix(0.342467,0.002397,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.342467,0.002397,-0.001750,0.249994,0,0);}
.mfa{transform:matrix(0.343008,0.003430,-0.002500,0.249987,0,0);-ms-transform:matrix(0.343008,0.003430,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.343008,0.003430,-0.002500,0.249987,0,0);}
.m64{transform:matrix(0.343350,0.004120,-0.003000,0.249982,0,0);-ms-transform:matrix(0.343350,0.004120,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.343350,0.004120,-0.003000,0.249982,0,0);}
.mff{transform:matrix(0.343633,0.003436,-0.002500,0.249987,0,0);-ms-transform:matrix(0.343633,0.003436,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.343633,0.003436,-0.002500,0.249987,0,0);}
.med{transform:matrix(0.343733,0.003437,-0.002500,0.249987,0,0);-ms-transform:matrix(0.343733,0.003437,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.343733,0.003437,-0.002500,0.249987,0,0);}
.m63{transform:matrix(0.344250,0.004131,-0.003000,0.249982,0,0);-ms-transform:matrix(0.344250,0.004131,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.344250,0.004131,-0.003000,0.249982,0,0);}
.m1a{transform:matrix(0.344254,0.003787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.344254,0.003787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.344254,0.003787,-0.002750,0.249985,0,0);}
.m1d{transform:matrix(0.344304,0.003787,-0.002750,0.249985,0,0);-ms-transform:matrix(0.344304,0.003787,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.344304,0.003787,-0.002750,0.249985,0,0);}
.m11f{transform:matrix(0.344933,0.003449,-0.002500,0.249987,0,0);-ms-transform:matrix(0.344933,0.003449,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.344933,0.003449,-0.002500,0.249987,0,0);}
.md5{transform:matrix(0.347141,0.002430,-0.001750,0.249994,0,0);-ms-transform:matrix(0.347141,0.002430,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.347141,0.002430,-0.001750,0.249994,0,0);}
.me6{transform:matrix(0.348029,0.003828,-0.002750,0.249985,0,0);-ms-transform:matrix(0.348029,0.003828,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.348029,0.003828,-0.002750,0.249985,0,0);}
.m13{transform:matrix(0.348558,0.003486,-0.002500,0.249987,0,0);-ms-transform:matrix(0.348558,0.003486,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.348558,0.003486,-0.002500,0.249987,0,0);}
.md9{transform:matrix(0.348941,0.002443,-0.001750,0.249994,0,0);-ms-transform:matrix(0.348941,0.002443,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.348941,0.002443,-0.001750,0.249994,0,0);}
.mf4{transform:matrix(0.348958,0.003490,-0.002500,0.249987,0,0);-ms-transform:matrix(0.348958,0.003490,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.348958,0.003490,-0.002500,0.249987,0,0);}
.mef{transform:matrix(0.349033,0.003490,-0.002500,0.249987,0,0);-ms-transform:matrix(0.349033,0.003490,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.349033,0.003490,-0.002500,0.249987,0,0);}
.m21{transform:matrix(0.350379,0.003854,-0.002750,0.249985,0,0);-ms-transform:matrix(0.350379,0.003854,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.350379,0.003854,-0.002750,0.249985,0,0);}
.m18{transform:matrix(0.350407,0.003504,-0.002500,0.249987,0,0);-ms-transform:matrix(0.350407,0.003504,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.350407,0.003504,-0.002500,0.249987,0,0);}
.me4{transform:matrix(0.350954,0.003860,-0.002750,0.249985,0,0);-ms-transform:matrix(0.350954,0.003860,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.350954,0.003860,-0.002750,0.249985,0,0);}
.m1b{transform:matrix(0.353454,0.003888,-0.002750,0.249985,0,0);-ms-transform:matrix(0.353454,0.003888,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.353454,0.003888,-0.002750,0.249985,0,0);}
.mdd{transform:matrix(0.353566,0.002475,-0.001750,0.249994,0,0);-ms-transform:matrix(0.353566,0.002475,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.353566,0.002475,-0.001750,0.249994,0,0);}
.md4{transform:matrix(0.353616,0.002475,-0.001750,0.249994,0,0);-ms-transform:matrix(0.353616,0.002475,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.353616,0.002475,-0.001750,0.249994,0,0);}
.m11d{transform:matrix(0.354032,0.003540,-0.002500,0.249987,0,0);-ms-transform:matrix(0.354032,0.003540,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.354032,0.003540,-0.002500,0.249987,0,0);}
.m7b{transform:matrix(0.354479,0.003899,-0.002750,0.249985,0,0);-ms-transform:matrix(0.354479,0.003899,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.354479,0.003899,-0.002750,0.249985,0,0);}
.m14{transform:matrix(0.354557,0.003546,-0.002500,0.249987,0,0);-ms-transform:matrix(0.354557,0.003546,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.354557,0.003546,-0.002500,0.249987,0,0);}
.m17{transform:matrix(0.355032,0.003550,-0.002500,0.249987,0,0);-ms-transform:matrix(0.355032,0.003550,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.355032,0.003550,-0.002500,0.249987,0,0);}
.me7{transform:matrix(0.355653,0.003912,-0.002750,0.249985,0,0);-ms-transform:matrix(0.355653,0.003912,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.355653,0.003912,-0.002750,0.249985,0,0);}
.m12{transform:matrix(0.356932,0.003569,-0.002500,0.249987,0,0);-ms-transform:matrix(0.356932,0.003569,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.356932,0.003569,-0.002500,0.249987,0,0);}
.m55{transform:matrix(0.357078,0.003928,-0.002750,0.249985,0,0);-ms-transform:matrix(0.357078,0.003928,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.357078,0.003928,-0.002750,0.249985,0,0);}
.m1f{transform:matrix(0.360103,0.003961,-0.002750,0.249985,0,0);-ms-transform:matrix(0.360103,0.003961,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.360103,0.003961,-0.002750,0.249985,0,0);}
.m1e{transform:matrix(0.360628,0.003967,-0.002750,0.249985,0,0);-ms-transform:matrix(0.360628,0.003967,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.360628,0.003967,-0.002750,0.249985,0,0);}
.m19{transform:matrix(0.360882,0.003609,-0.002500,0.249987,0,0);-ms-transform:matrix(0.360882,0.003609,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.360882,0.003609,-0.002500,0.249987,0,0);}
.m11e{transform:matrix(0.361682,0.003617,-0.002500,0.249987,0,0);-ms-transform:matrix(0.361682,0.003617,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.361682,0.003617,-0.002500,0.249987,0,0);}
.m15{transform:matrix(0.362432,0.003624,-0.002500,0.249987,0,0);-ms-transform:matrix(0.362432,0.003624,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.362432,0.003624,-0.002500,0.249987,0,0);}
.m2a{transform:matrix(0.364928,0.004014,-0.002750,0.249985,0,0);-ms-transform:matrix(0.364928,0.004014,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.364928,0.004014,-0.002750,0.249985,0,0);}
.m8b{transform:matrix(0.365224,0.004383,-0.003000,0.249982,0,0);-ms-transform:matrix(0.365224,0.004383,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.365224,0.004383,-0.003000,0.249982,0,0);}
.m38{transform:matrix(0.365578,0.004021,-0.002750,0.249985,0,0);-ms-transform:matrix(0.365578,0.004021,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.365578,0.004021,-0.002750,0.249985,0,0);}
.m20{transform:matrix(0.366328,0.004029,-0.002750,0.249985,0,0);-ms-transform:matrix(0.366328,0.004029,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.366328,0.004029,-0.002750,0.249985,0,0);}
.mea{transform:matrix(0.367228,0.004039,-0.002750,0.249985,0,0);-ms-transform:matrix(0.367228,0.004039,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.367228,0.004039,-0.002750,0.249985,0,0);}
.me2{transform:matrix(0.368810,0.003319,-0.002250,0.249990,0,0);-ms-transform:matrix(0.368810,0.003319,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.368810,0.003319,-0.002250,0.249990,0,0);}
.mdf{transform:matrix(0.369510,0.003326,-0.002250,0.249990,0,0);-ms-transform:matrix(0.369510,0.003326,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.369510,0.003326,-0.002250,0.249990,0,0);}
.mb1{transform:matrix(0.370928,0.004080,-0.002750,0.249985,0,0);-ms-transform:matrix(0.370928,0.004080,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.370928,0.004080,-0.002750,0.249985,0,0);}
.mf2{transform:matrix(0.370931,0.003709,-0.002500,0.249987,0,0);-ms-transform:matrix(0.370931,0.003709,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.370931,0.003709,-0.002500,0.249987,0,0);}
.me1{transform:matrix(0.371235,0.003341,-0.002250,0.249990,0,0);-ms-transform:matrix(0.371235,0.003341,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.371235,0.003341,-0.002250,0.249990,0,0);}
.m1c{transform:matrix(0.371328,0.004084,-0.002750,0.249985,0,0);-ms-transform:matrix(0.371328,0.004084,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.371328,0.004084,-0.002750,0.249985,0,0);}
.m114{transform:matrix(0.372231,0.003722,-0.002500,0.249987,0,0);-ms-transform:matrix(0.372231,0.003722,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.372231,0.003722,-0.002500,0.249987,0,0);}
.m36{transform:matrix(0.372702,0.004100,-0.002750,0.249985,0,0);-ms-transform:matrix(0.372702,0.004100,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.372702,0.004100,-0.002750,0.249985,0,0);}
.md8{transform:matrix(0.375641,0.002630,-0.001750,0.249994,0,0);-ms-transform:matrix(0.375641,0.002630,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.375641,0.002630,-0.001750,0.249994,0,0);}
.m116{transform:matrix(0.375681,0.003757,-0.002500,0.249987,0,0);-ms-transform:matrix(0.375681,0.003757,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.375681,0.003757,-0.002500,0.249987,0,0);}
.m3a{transform:matrix(0.375827,0.004134,-0.002750,0.249985,0,0);-ms-transform:matrix(0.375827,0.004134,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.375827,0.004134,-0.002750,0.249985,0,0);}
.m121{transform:matrix(0.376256,0.003763,-0.002500,0.249987,0,0);-ms-transform:matrix(0.376256,0.003763,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.376256,0.003763,-0.002500,0.249987,0,0);}
.m37{transform:matrix(0.377077,0.004148,-0.002750,0.249985,0,0);-ms-transform:matrix(0.377077,0.004148,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.377077,0.004148,-0.002750,0.249985,0,0);}
.m120{transform:matrix(0.377481,0.003775,-0.002500,0.249987,0,0);-ms-transform:matrix(0.377481,0.003775,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.377481,0.003775,-0.002500,0.249987,0,0);}
.m90{transform:matrix(0.377748,0.004533,-0.003000,0.249982,0,0);-ms-transform:matrix(0.377748,0.004533,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.377748,0.004533,-0.003000,0.249982,0,0);}
.m39{transform:matrix(0.378852,0.004167,-0.002750,0.249985,0,0);-ms-transform:matrix(0.378852,0.004167,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.378852,0.004167,-0.002750,0.249985,0,0);}
.m118{transform:matrix(0.380181,0.003802,-0.002500,0.249987,0,0);-ms-transform:matrix(0.380181,0.003802,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.380181,0.003802,-0.002500,0.249987,0,0);}
.m28{transform:matrix(0.380677,0.004187,-0.002750,0.249985,0,0);-ms-transform:matrix(0.380677,0.004187,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.380677,0.004187,-0.002750,0.249985,0,0);}
.m113{transform:matrix(0.382431,0.003824,-0.002500,0.249987,0,0);-ms-transform:matrix(0.382431,0.003824,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.382431,0.003824,-0.002500,0.249987,0,0);}
.m11b{transform:matrix(0.385131,0.003851,-0.002500,0.249987,0,0);-ms-transform:matrix(0.385131,0.003851,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.385131,0.003851,-0.002500,0.249987,0,0);}
.m80{transform:matrix(0.385202,0.004237,-0.002750,0.249985,0,0);-ms-transform:matrix(0.385202,0.004237,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.385202,0.004237,-0.002750,0.249985,0,0);}
.mda{transform:matrix(0.385416,0.002698,-0.001750,0.249994,0,0);-ms-transform:matrix(0.385416,0.002698,-0.001750,0.249994,0,0);-webkit-transform:matrix(0.385416,0.002698,-0.001750,0.249994,0,0);}
.m27{transform:matrix(0.386002,0.004246,-0.002750,0.249985,0,0);-ms-transform:matrix(0.386002,0.004246,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.386002,0.004246,-0.002750,0.249985,0,0);}
.m7f{transform:matrix(0.386027,0.004246,-0.002750,0.249985,0,0);-ms-transform:matrix(0.386027,0.004246,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.386027,0.004246,-0.002750,0.249985,0,0);}
.mf1{transform:matrix(0.386856,0.003869,-0.002500,0.249987,0,0);-ms-transform:matrix(0.386856,0.003869,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.386856,0.003869,-0.002500,0.249987,0,0);}
.m22{transform:matrix(0.387202,0.004259,-0.002750,0.249985,0,0);-ms-transform:matrix(0.387202,0.004259,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.387202,0.004259,-0.002750,0.249985,0,0);}
.m23{transform:matrix(0.387402,0.004261,-0.002750,0.249985,0,0);-ms-transform:matrix(0.387402,0.004261,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.387402,0.004261,-0.002750,0.249985,0,0);}
.mf6{transform:matrix(0.387606,0.003876,-0.002500,0.249987,0,0);-ms-transform:matrix(0.387606,0.003876,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.387606,0.003876,-0.002500,0.249987,0,0);}
.m11{transform:matrix(0.388331,0.003883,-0.002500,0.249987,0,0);-ms-transform:matrix(0.388331,0.003883,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.388331,0.003883,-0.002500,0.249987,0,0);}
.mde{transform:matrix(0.388809,0.003499,-0.002250,0.249990,0,0);-ms-transform:matrix(0.388809,0.003499,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.388809,0.003499,-0.002250,0.249990,0,0);}
.m25{transform:matrix(0.389026,0.004279,-0.002750,0.249985,0,0);-ms-transform:matrix(0.389026,0.004279,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.389026,0.004279,-0.002750,0.249985,0,0);}
.mf3{transform:matrix(0.390005,0.003900,-0.002500,0.249987,0,0);-ms-transform:matrix(0.390005,0.003900,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.390005,0.003900,-0.002500,0.249987,0,0);}
.m7c{transform:matrix(0.390026,0.004290,-0.002750,0.249985,0,0);-ms-transform:matrix(0.390026,0.004290,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.390026,0.004290,-0.002750,0.249985,0,0);}
.mb4{transform:matrix(0.391501,0.004306,-0.002750,0.249985,0,0);-ms-transform:matrix(0.391501,0.004306,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.391501,0.004306,-0.002750,0.249985,0,0);}
.mb3{transform:matrix(0.393351,0.004327,-0.002750,0.249985,0,0);-ms-transform:matrix(0.393351,0.004327,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.393351,0.004327,-0.002750,0.249985,0,0);}
.me0{transform:matrix(0.393534,0.003542,-0.002250,0.249990,0,0);-ms-transform:matrix(0.393534,0.003542,-0.002250,0.249990,0,0);-webkit-transform:matrix(0.393534,0.003542,-0.002250,0.249990,0,0);}
.m45{transform:matrix(0.393776,0.004331,-0.002750,0.249985,0,0);-ms-transform:matrix(0.393776,0.004331,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.393776,0.004331,-0.002750,0.249985,0,0);}
.m11a{transform:matrix(0.394005,0.003940,-0.002500,0.249987,0,0);-ms-transform:matrix(0.394005,0.003940,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.394005,0.003940,-0.002500,0.249987,0,0);}
.m8{transform:matrix(0.394576,0.004340,-0.002750,0.249985,0,0);-ms-transform:matrix(0.394576,0.004340,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.394576,0.004340,-0.002750,0.249985,0,0);}
.m8f{transform:matrix(0.394647,0.004736,-0.003000,0.249982,0,0);-ms-transform:matrix(0.394647,0.004736,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.394647,0.004736,-0.003000,0.249982,0,0);}
.m29{transform:matrix(0.395276,0.004348,-0.002750,0.249985,0,0);-ms-transform:matrix(0.395276,0.004348,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.395276,0.004348,-0.002750,0.249985,0,0);}
.m13a{transform:matrix(0.395337,0.003163,-0.002000,0.249992,0,0);-ms-transform:matrix(0.395337,0.003163,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.395337,0.003163,-0.002000,0.249992,0,0);}
.md{transform:matrix(0.396676,0.004363,-0.002750,0.249985,0,0);-ms-transform:matrix(0.396676,0.004363,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.396676,0.004363,-0.002750,0.249985,0,0);}
.m11c{transform:matrix(0.397605,0.003976,-0.002500,0.249987,0,0);-ms-transform:matrix(0.397605,0.003976,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.397605,0.003976,-0.002500,0.249987,0,0);}
.m2c{transform:matrix(0.397796,0.004774,-0.003000,0.249982,0,0);-ms-transform:matrix(0.397796,0.004774,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.397796,0.004774,-0.003000,0.249982,0,0);}
.mf8{transform:matrix(0.397955,0.003980,-0.002500,0.249987,0,0);-ms-transform:matrix(0.397955,0.003980,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.397955,0.003980,-0.002500,0.249987,0,0);}
.m7e{transform:matrix(0.398801,0.004387,-0.002750,0.249985,0,0);-ms-transform:matrix(0.398801,0.004387,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.398801,0.004387,-0.002750,0.249985,0,0);}
.m7d{transform:matrix(0.398901,0.004388,-0.002750,0.249985,0,0);-ms-transform:matrix(0.398901,0.004388,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.398901,0.004388,-0.002750,0.249985,0,0);}
.m8c{transform:matrix(0.399121,0.004789,-0.003000,0.249982,0,0);-ms-transform:matrix(0.399121,0.004789,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.399121,0.004789,-0.003000,0.249982,0,0);}
.m13d{transform:matrix(0.399437,0.003196,-0.002000,0.249992,0,0);-ms-transform:matrix(0.399437,0.003196,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.399437,0.003196,-0.002000,0.249992,0,0);}
.m10{transform:matrix(0.399526,0.004395,-0.002750,0.249985,0,0);-ms-transform:matrix(0.399526,0.004395,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.399526,0.004395,-0.002750,0.249985,0,0);}
.m2b{transform:matrix(0.400196,0.004802,-0.003000,0.249982,0,0);-ms-transform:matrix(0.400196,0.004802,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.400196,0.004802,-0.003000,0.249982,0,0);}
.m92{transform:matrix(0.400246,0.004803,-0.003000,0.249982,0,0);-ms-transform:matrix(0.400246,0.004803,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.400246,0.004803,-0.003000,0.249982,0,0);}
.mb0{transform:matrix(0.400376,0.004404,-0.002750,0.249985,0,0);-ms-transform:matrix(0.400376,0.004404,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.400376,0.004404,-0.002750,0.249985,0,0);}
.m117{transform:matrix(0.400505,0.004005,-0.002500,0.249987,0,0);-ms-transform:matrix(0.400505,0.004005,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.400505,0.004005,-0.002500,0.249987,0,0);}
.mb{transform:matrix(0.400651,0.004407,-0.002750,0.249985,0,0);-ms-transform:matrix(0.400651,0.004407,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.400651,0.004407,-0.002750,0.249985,0,0);}
.mf7{transform:matrix(0.400805,0.004008,-0.002500,0.249987,0,0);-ms-transform:matrix(0.400805,0.004008,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.400805,0.004008,-0.002500,0.249987,0,0);}
.mf9{transform:matrix(0.401730,0.004017,-0.002500,0.249987,0,0);-ms-transform:matrix(0.401730,0.004017,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.401730,0.004017,-0.002500,0.249987,0,0);}
.m112{transform:matrix(0.402355,0.004024,-0.002500,0.249987,0,0);-ms-transform:matrix(0.402355,0.004024,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.402355,0.004024,-0.002500,0.249987,0,0);}
.m89{transform:matrix(0.402671,0.004832,-0.003000,0.249982,0,0);-ms-transform:matrix(0.402671,0.004832,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.402671,0.004832,-0.003000,0.249982,0,0);}
.me{transform:matrix(0.403051,0.004433,-0.002750,0.249985,0,0);-ms-transform:matrix(0.403051,0.004433,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.403051,0.004433,-0.002750,0.249985,0,0);}
.mb5{transform:matrix(0.404626,0.004451,-0.002750,0.249985,0,0);-ms-transform:matrix(0.404626,0.004451,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.404626,0.004451,-0.002750,0.249985,0,0);}
.m24{transform:matrix(0.405525,0.004461,-0.002750,0.249985,0,0);-ms-transform:matrix(0.405525,0.004461,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.405525,0.004461,-0.002750,0.249985,0,0);}
.mf5{transform:matrix(0.406080,0.004061,-0.002500,0.249987,0,0);-ms-transform:matrix(0.406080,0.004061,-0.002500,0.249987,0,0);-webkit-transform:matrix(0.406080,0.004061,-0.002500,0.249987,0,0);}
.ma{transform:matrix(0.409925,0.004509,-0.002750,0.249985,0,0);-ms-transform:matrix(0.409925,0.004509,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.409925,0.004509,-0.002750,0.249985,0,0);}
.m9{transform:matrix(0.411425,0.004526,-0.002750,0.249985,0,0);-ms-transform:matrix(0.411425,0.004526,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.411425,0.004526,-0.002750,0.249985,0,0);}
.mb2{transform:matrix(0.411975,0.004532,-0.002750,0.249985,0,0);-ms-transform:matrix(0.411975,0.004532,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.411975,0.004532,-0.002750,0.249985,0,0);}
.m8d{transform:matrix(0.415445,0.004985,-0.003000,0.249982,0,0);-ms-transform:matrix(0.415445,0.004985,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.415445,0.004985,-0.003000,0.249982,0,0);}
.maf{transform:matrix(0.415550,0.004571,-0.002750,0.249985,0,0);-ms-transform:matrix(0.415550,0.004571,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.415550,0.004571,-0.002750,0.249985,0,0);}
.m13c{transform:matrix(0.420087,0.003361,-0.002000,0.249992,0,0);-ms-transform:matrix(0.420087,0.003361,-0.002000,0.249992,0,0);-webkit-transform:matrix(0.420087,0.003361,-0.002000,0.249992,0,0);}
.m8a{transform:matrix(0.424244,0.005091,-0.003000,0.249982,0,0);-ms-transform:matrix(0.424244,0.005091,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.424244,0.005091,-0.003000,0.249982,0,0);}
.m8e{transform:matrix(0.432244,0.005187,-0.003000,0.249982,0,0);-ms-transform:matrix(0.432244,0.005187,-0.003000,0.249982,0,0);-webkit-transform:matrix(0.432244,0.005187,-0.003000,0.249982,0,0);}
.mf{transform:matrix(0.435149,0.004786,-0.002750,0.249985,0,0);-ms-transform:matrix(0.435149,0.004786,-0.002750,0.249985,0,0);-webkit-transform:matrix(0.435149,0.004786,-0.002750,0.249985,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;}
.fs5{font-size:35.640000px;}
.fs1{font-size:35.640017px;}
.fs15{font-size:36.720000px;}
.fs4{font-size:36.720018px;}
.fs17{font-size:37.800000px;}
.fs1a{font-size:38.880000px;}
.fs7{font-size:38.880019px;}
.fs2{font-size:41.040000px;}
.fs3{font-size:41.040020px;}
.fsd{font-size:42.120000px;}
.fs14{font-size:42.120021px;}
.fs16{font-size:43.200000px;}
.fsb{font-size:43.200021px;}
.fs19{font-size:44.280000px;}
.fsa{font-size:44.280022px;}
.fsf{font-size:45.360000px;}
.fs11{font-size:45.360022px;}
.fs9{font-size:46.440023px;}
.fse{font-size:47.520000px;}
.fs10{font-size:48.600000px;}
.fs6{font-size:48.600024px;}
.fs8{font-size:49.680000px;}
.fs12{font-size:49.680024px;}
.fs0{font-size:50.760000px;}
.fsc{font-size:50.760025px;}
.fs18{font-size:51.840026px;}
.fs13{font-size:52.920026px;}
.y0{bottom:0.000000px;}
.y153{bottom:73.710000px;}
.y152{bottom:109.916280px;}
.y151{bottom:110.914320px;}
.y150{bottom:111.041640px;}
.y14f{bottom:111.391680px;}
.y14e{bottom:112.737240px;}
.y14d{bottom:113.396280px;}
.y14c{bottom:113.670480px;}
.y14b{bottom:126.589680px;}
.y14a{bottom:127.084080px;}
.y149{bottom:127.645680px;}
.y148{bottom:127.812480px;}
.y147{bottom:127.961280px;}
.y146{bottom:128.151360px;}
.y145{bottom:128.814480px;}
.y144{bottom:129.013200px;}
.y143{bottom:129.209760px;}
.y142{bottom:129.795120px;}
.y141{bottom:130.050000px;}
.y140{bottom:130.140720px;}
.y13f{bottom:161.941370px;}
.y13e{bottom:163.531717px;}
.y13d{bottom:163.690464px;}
.y13c{bottom:164.701620px;}
.y13b{bottom:180.441600px;}
.y13a{bottom:180.622500px;}
.y139{bottom:181.780950px;}
.y138{bottom:182.599050px;}
.y137{bottom:183.206700px;}
.y136{bottom:183.382200px;}
.y135{bottom:183.792600px;}
.y134{bottom:184.681200px;}
.y133{bottom:199.078020px;}
.y132{bottom:199.204110px;}
.y131{bottom:199.624500px;}
.y130{bottom:199.753290px;}
.y12f{bottom:200.732580px;}
.y12e{bottom:201.498300px;}
.y12d{bottom:202.419135px;}
.y12c{bottom:202.545495px;}
.y12b{bottom:203.029065px;}
.y12a{bottom:203.581080px;}
.y129{bottom:224.621850px;}
.y128{bottom:225.588450px;}
.y127{bottom:225.826050px;}
.y126{bottom:226.190550px;}
.y125{bottom:226.530900px;}
.y124{bottom:241.653600px;}
.y123{bottom:243.041400px;}
.y122{bottom:243.338400px;}
.y121{bottom:243.473400px;}
.y120{bottom:244.097100px;}
.y11f{bottom:244.826400px;}
.y11e{bottom:245.115000px;}
.y11d{bottom:245.255400px;}
.y11c{bottom:245.695500px;}
.y11b{bottom:246.303000px;}
.y11a{bottom:246.780900px;}
.y119{bottom:261.555000px;}
.y118{bottom:262.286700px;}
.y117{bottom:262.810500px;}
.y116{bottom:263.142600px;}
.y115{bottom:263.680200px;}
.y114{bottom:264.030900px;}
.y113{bottom:264.927300px;}
.y112{bottom:265.877850px;}
.y111{bottom:266.139750px;}
.y110{bottom:266.761200px;}
.y10f{bottom:281.575350px;}
.y10e{bottom:281.756250px;}
.y10d{bottom:282.669300px;}
.y10c{bottom:283.319700px;}
.y10b{bottom:283.989300px;}
.y10a{bottom:284.540100px;}
.y109{bottom:285.404250px;}
.y108{bottom:286.090050px;}
.y107{bottom:286.471200px;}
.y106{bottom:301.218150px;}
.y105{bottom:302.311650px;}
.y104{bottom:302.489850px;}
.y103{bottom:303.915450px;}
.y102{bottom:305.349600px;}
.y101{bottom:306.180900px;}
.y100{bottom:320.536500px;}
.yff{bottom:321.543600px;}
.yfe{bottom:322.113300px;}
.yfd{bottom:322.526700px;}
.yfc{bottom:323.187900px;}
.yfb{bottom:323.409300px;}
.yfa{bottom:324.880950px;}
.yf9{bottom:325.118550px;}
.yf8{bottom:325.620900px;}
.yf7{bottom:341.399850px;}
.yf6{bottom:341.917950px;}
.yf5{bottom:342.619950px;}
.yf4{bottom:343.297650px;}
.yf3{bottom:343.605900px;}
.yf2{bottom:344.839500px;}
.yf1{bottom:345.601050px;}
.yf0{bottom:359.855185px;}
.yef{bottom:360.380828px;}
.yee{bottom:360.642164px;}
.yed{bottom:361.993391px;}
.yec{bottom:362.685338px;}
.yeb{bottom:362.848673px;}
.yea{bottom:364.473281px;}
.ye9{bottom:364.728677px;}
.ye8{bottom:365.581320px;}
.ye7{bottom:380.432430px;}
.ye6{bottom:381.919590px;}
.ye5{bottom:382.560975px;}
.ye4{bottom:383.457645px;}
.ye3{bottom:384.480810px;}
.ye2{bottom:399.921615px;}
.ye1{bottom:400.286385px;}
.ye0{bottom:400.562430px;}
.ydf{bottom:400.685385px;}
.yde{bottom:401.306985px;}
.ydd{bottom:401.412825px;}
.ydc{bottom:402.446760px;}
.ydb{bottom:403.059225px;}
.yda{bottom:403.214205px;}
.yd9{bottom:403.380525px;}
.yd8{bottom:419.258566px;}
.yd7{bottom:420.612763px;}
.yd6{bottom:421.931653px;}
.yd5{bottom:423.092487px;}
.yd4{bottom:423.764141px;}
.yd3{bottom:424.711155px;}
.yd2{bottom:438.345083px;}
.yd1{bottom:439.322454px;}
.yd0{bottom:439.476550px;}
.ycf{bottom:440.442043px;}
.yce{bottom:441.567405px;}
.ycd{bottom:441.816863px;}
.ycc{bottom:442.164321px;}
.ycb{bottom:442.407839px;}
.yca{bottom:442.942720px;}
.yc9{bottom:443.702806px;}
.yc8{bottom:443.881485px;}
.yc7{bottom:462.808438px;}
.yc6{bottom:462.999402px;}
.yc5{bottom:464.110809px;}
.yc4{bottom:464.949899px;}
.yc3{bottom:465.902380px;}
.yc2{bottom:467.101800px;}
.yc1{bottom:481.248356px;}
.yc0{bottom:482.379988px;}
.ybf{bottom:482.834356px;}
.ybe{bottom:484.054915px;}
.ybd{bottom:484.827045px;}
.ybc{bottom:486.015102px;}
.ybb{bottom:486.811650px;}
.yba{bottom:501.709697px;}
.yb9{bottom:502.499646px;}
.yb8{bottom:503.774155px;}
.yb7{bottom:504.676623px;}
.yb6{bottom:504.934989px;}
.yb5{bottom:505.858740px;}
.yb4{bottom:506.521155px;}
.yb3{bottom:520.071931px;}
.yb2{bottom:520.799515px;}
.yb1{bottom:521.164791px;}
.yb0{bottom:522.230924px;}
.yaf{bottom:523.383345px;}
.yae{bottom:523.710015px;}
.yad{bottom:524.381339px;}
.yac{bottom:525.177722px;}
.yab{bottom:525.506867px;}
.yaa{bottom:525.691485px;}
.ya9{bottom:544.271448px;}
.ya8{bottom:545.180663px;}
.ya7{bottom:546.876057px;}
.ya6{bottom:547.057783px;}
.ya5{bottom:547.938920px;}
.ya4{bottom:548.729195px;}
.ya3{bottom:549.181560px;}
.ya2{bottom:562.893597px;}
.ya1{bottom:563.084201px;}
.ya0{bottom:564.082038px;}
.y9f{bottom:564.924908px;}
.y9e{bottom:566.126488px;}
.y9d{bottom:566.852727px;}
.y9c{bottom:568.621800px;}
.y9b{bottom:582.463569px;}
.y9a{bottom:584.605210px;}
.y99{bottom:585.684220px;}
.y98{bottom:586.510352px;}
.y97{bottom:587.155058px;}
.y96{bottom:588.331800px;}
.y95{bottom:605.045455px;}
.y94{bottom:605.220400px;}
.y93{bottom:605.609168px;}
.y92{bottom:606.069209px;}
.y91{bottom:606.597285px;}
.y90{bottom:608.343680px;}
.y8f{bottom:608.887954px;}
.y8e{bottom:609.053181px;}
.y8d{bottom:610.090074px;}
.y8c{bottom:610.741260px;}
.y8b{bottom:624.175363px;}
.y8a{bottom:625.095446px;}
.y89{bottom:625.808187px;}
.y88{bottom:626.433815px;}
.y87{bottom:626.605160px;}
.y86{bottom:627.833198px;}
.y85{bottom:629.268578px;}
.y84{bottom:630.451800px;}
.y83{bottom:645.558154px;}
.y82{bottom:646.502198px;}
.y81{bottom:647.550678px;}
.y80{bottom:647.743710px;}
.y7f{bottom:648.388307px;}
.y7e{bottom:649.133874px;}
.y7d{bottom:649.335650px;}
.y7c{bottom:649.891155px;}
.y7b{bottom:663.855441px;}
.y7a{bottom:665.283622px;}
.y79{bottom:666.440206px;}
.y78{bottom:666.825734px;}
.y77{bottom:667.681022px;}
.y76{bottom:668.436419px;}
.y75{bottom:668.789010px;}
.y74{bottom:668.989873px;}
.y73{bottom:669.871620px;}
.y72{bottom:683.749386px;}
.y71{bottom:684.900030px;}
.y70{bottom:685.774937px;}
.y6f{bottom:686.724178px;}
.y6e{bottom:687.371584px;}
.y6d{bottom:688.670896px;}
.y6c{bottom:689.581800px;}
.y6b{bottom:702.514240px;}
.y6a{bottom:702.676226px;}
.y69{bottom:704.121506px;}
.y68{bottom:705.323266px;}
.y67{bottom:706.827040px;}
.y66{bottom:707.390393px;}
.y65{bottom:708.751440px;}
.y64{bottom:722.104605px;}
.y63{bottom:723.066271px;}
.y62{bottom:723.691003px;}
.y61{bottom:725.024895px;}
.y60{bottom:725.354810px;}
.y5f{bottom:726.783465px;}
.y5e{bottom:726.987029px;}
.y5d{bottom:727.727972px;}
.y5c{bottom:728.732145px;}
.y5b{bottom:745.611328px;}
.y5a{bottom:746.167163px;}
.y59{bottom:747.004461px;}
.y58{bottom:747.167467px;}
.y57{bottom:747.901155px;}
.y56{bottom:762.451913px;}
.y55{bottom:763.586350px;}
.y54{bottom:763.755625px;}
.y53{bottom:764.281432px;}
.y52{bottom:764.997137px;}
.y51{bottom:765.656417px;}
.y50{bottom:766.226605px;}
.y4f{bottom:766.978442px;}
.y4e{bottom:768.151155px;}
.y4d{bottom:781.900822px;}
.y4c{bottom:782.046339px;}
.y4b{bottom:782.551193px;}
.y4a{bottom:783.558262px;}
.y49{bottom:784.157982px;}
.y48{bottom:784.366853px;}
.y47{bottom:784.868242px;}
.y46{bottom:785.509704px;}
.y45{bottom:786.338259px;}
.y44{bottom:787.591485px;}
.y43{bottom:801.981600px;}
.y42{bottom:802.651200px;}
.y41{bottom:803.609700px;}
.y40{bottom:804.177150px;}
.y3f{bottom:805.354350px;}
.y3e{bottom:806.174850px;}
.y3d{bottom:806.761200px;}
.y3c{bottom:821.335751px;}
.y3b{bottom:822.571324px;}
.y3a{bottom:823.295938px;}
.y39{bottom:824.534810px;}
.y38{bottom:825.743161px;}
.y37{bottom:826.740990px;}
.y36{bottom:840.370134px;}
.y35{bottom:841.343710px;}
.y34{bottom:842.305903px;}
.y33{bottom:843.339369px;}
.y32{bottom:844.203560px;}
.y31{bottom:844.797506px;}
.y30{bottom:845.471635px;}
.y2f{bottom:845.911485px;}
.y2e{bottom:861.892331px;}
.y2d{bottom:864.260393px;}
.y2c{bottom:865.621260px;}
.y2b{bottom:879.210457px;}
.y2a{bottom:879.766126px;}
.y29{bottom:880.799262px;}
.y28{bottom:881.286298px;}
.y27{bottom:881.479331px;}
.y26{bottom:883.187090px;}
.y25{bottom:884.170236px;}
.y24{bottom:884.701818px;}
.y23{bottom:885.061155px;}
.y22{bottom:899.418961px;}
.y21{bottom:900.378679px;}
.y20{bottom:901.729906px;}
.y1f{bottom:901.898851px;}
.y1e{bottom:903.271361px;}
.y1d{bottom:903.853098px;}
.y1c{bottom:904.485650px;}
.y1b{bottom:905.041155px;}
.y1a{bottom:918.969900px;}
.y19{bottom:919.458600px;}
.y18{bottom:920.404050px;}
.y17{bottom:920.719650px;}
.y16{bottom:921.386550px;}
.y15{bottom:921.929700px;}
.y14{bottom:923.241600px;}
.y13{bottom:923.792400px;}
.y12{bottom:923.940900px;}
.y11{bottom:938.640645px;}
.y10{bottom:938.999982px;}
.yf{bottom:939.873083px;}
.ye{bottom:940.692728px;}
.yd{bottom:940.859033px;}
.yc{bottom:941.586617px;}
.yb{bottom:942.709340px;}
.ya{bottom:943.327044px;}
.y9{bottom:943.921155px;}
.y8{bottom:957.979500px;}
.y7{bottom:958.217100px;}
.y6{bottom:958.862400px;}
.y5{bottom:959.469900px;}
.y4{bottom:959.618400px;}
.y3{bottom:960.749850px;}
.y2{bottom:961.910850px;}
.y1{bottom:963.091200px;}
.h6{height:27.264600px;}
.h2{height:27.264613px;}
.h16{height:28.090800px;}
.h5{height:28.090814px;}
.h18{height:28.917000px;}
.h1b{height:29.743200px;}
.h8{height:29.743215px;}
.h3{height:31.395600px;}
.h4{height:31.395615px;}
.he{height:32.221800px;}
.h15{height:32.221816px;}
.h17{height:33.048000px;}
.hc{height:33.048016px;}
.h1a{height:33.874200px;}
.hb{height:33.874217px;}
.h10{height:34.700400px;}
.h12{height:34.700417px;}
.ha{height:35.526617px;}
.hf{height:36.352800px;}
.h11{height:37.179000px;}
.h7{height:37.179018px;}
.h9{height:38.005200px;}
.h13{height:38.005219px;}
.h1{height:38.831400px;}
.hd{height:38.831419px;}
.h19{height:39.657620px;}
.h14{height:40.483820px;}
.h0{height:1039.500000px;}
.w1{width:693.000000px;}
.w0{width:693.360000px;}
.x0{left:0.000000px;}
.x91{left:37.440004px;}
.x9{left:40.395006px;}
.x12{left:54.449262px;}
.x2a{left:56.295008px;}
.x1{left:57.390006px;}
.xbc{left:59.850003px;}
.x89{left:63.914432px;}
.xbd{left:71.189640px;}
.x20{left:73.333046px;}
.x70{left:75.177087px;}
.xa3{left:78.223100px;}
.x8a{left:86.053900px;}
.xab{left:88.197615px;}
.x19{left:90.626976px;}
.xa{left:94.406765px;}
.x2b{left:96.282609px;}
.x33{left:99.012074px;}
.xa7{left:102.251899px;}
.x74{left:103.812206px;}
.x45{left:107.366004px;}
.x13{left:109.526508px;}
.xb0{left:111.161480px;}
.x7a{left:112.765664px;}
.x58{left:114.114719px;}
.x52{left:115.989545px;}
.x93{left:118.165356px;}
.x21{left:121.660146px;}
.xa2{left:122.995848px;}
.xba{left:124.358942px;}
.x86{left:126.489840px;}
.xa8{left:128.440589px;}
.x30{left:131.124562px;}
.x48{left:134.318525px;}
.x71{left:135.966980px;}
.xbb{left:137.587990px;}
.x61{left:139.222911px;}
.x7e{left:140.842814px;}
.x81{left:142.449887px;}
.x3e{left:146.738609px;}
.x1a{left:148.133525px;}
.xb{left:150.563396px;}
.x28{left:153.801842px;}
.x2c{left:157.568931px;}
.x59{left:160.236398px;}
.xb7{left:170.273511px;}
.xb2{left:171.370402px;}
.x8b{left:173.546800px;}
.x2{left:175.419104px;}
.x5d{left:176.751808px;}
.x34{left:181.057972px;}
.x78{left:183.786354px;}
.xb3{left:185.409841px;}
.x6c{left:186.964395px;}
.x49{left:191.313737px;}
.xac{left:192.952377px;}
.x65{left:194.568887px;}
.x46{left:198.305547px;}
.x1b{left:201.020352px;}
.x72{left:203.746286px;}
.x4a{left:206.972421px;}
.x6a{left:208.339081px;}
.x22{left:211.039783px;}
.x82{left:213.215641px;}
.x3f{left:215.089508px;}
.x73{left:217.725112px;}
.x7b{left:220.774183px;}
.x5a{left:223.186865px;}
.x53{left:224.266748px;}
.xbe{left:225.624698px;}
.x39{left:229.893652px;}
.xb1{left:231.575459px;}
.xa4{left:233.210351px;}
.x5e{left:235.353292px;}
.x75{left:237.244199px;}
.x98{left:239.630029px;}
.x14{left:240.709948px;}
.x83{left:244.803746px;}
.x6d{left:247.485038px;}
.x47{left:248.837515px;}
.x92{left:250.746471px;}
.xc{left:252.632271px;}
.x62{left:258.839298px;}
.x9c{left:261.018946px;}
.x40{left:266.926397px;}
.x99{left:270.453488px;}
.x6b{left:277.184124px;}
.x54{left:278.217864px;}
.x9d{left:283.157839px;}
.x3a{left:288.210153px;}
.x2d{left:290.130977px;}
.x3{left:291.513299px;}
.x87{left:293.084844px;}
.x15{left:295.022233px;}
.x35{left:298.772086px;}
.x94{left:303.929210px;}
.xad{left:308.776586px;}
.xa9{left:313.126354px;}
.x4b{left:316.868189px;}
.xd{left:318.778302px;}
.x8c{left:321.248255px;}
.x1c{left:325.797865px;}
.x41{left:326.862801px;}
.xb8{left:330.390505px;}
.xbf{left:332.271285px;}
.xe{left:333.897395px;}
.x8d{left:336.367893px;}
.x9a{left:338.220100px;}
.x1d{left:341.156943px;}
.x4c{left:342.246057px;}
.x5f{left:348.221519px;}
.x9e{left:349.274533px;}
.x29{left:351.142632px;}
.x31{left:353.606213px;}
.x36{left:355.514248px;}
.x55{left:357.322168px;}
.x16{left:361.708898px;}
.x23{left:366.295467px;}
.x84{left:369.791246px;}
.x76{left:371.711131px;}
.xb4{left:372.797345px;}
.x63{left:375.455901px;}
.x7f{left:382.760394px;}
.x24{left:383.844414px;}
.x66{left:385.460142px;}
.x9f{left:390.612466px;}
.x42{left:391.928897px;}
.x17{left:393.267320px;}
.x80{left:398.674248px;}
.x7c{left:401.933313px;}
.x4{left:404.652642px;}
.x3b{left:407.303007px;}
.xf{left:408.412924px;}
.x88{left:412.987649px;}
.xae{left:414.341307px;}
.x6e{left:417.857770px;}
.x5{left:419.501899px;}
.x5b{left:422.972479px;}
.x8e{left:425.165761px;}
.x50{left:426.212227px;}
.x25{left:428.121758px;}
.x56{left:430.231918px;}
.x60{left:434.046370px;}
.xaa{left:435.160253px;}
.x43{left:439.731029px;}
.xc0{left:441.917776px;}
.x7d{left:443.240834px;}
.x4d{left:444.852438px;}
.xb9{left:446.229713px;}
.xa0{left:447.579618px;}
.x37{left:451.359456px;}
.x44{left:455.120105px;}
.x85{left:457.565979px;}
.x9b{left:460.223999px;}
.x1e{left:463.999572px;}
.x67{left:467.804212px;}
.x2e{left:471.560091px;}
.x79{left:477.003760px;}
.x6{left:480.248862px;}
.x8f{left:482.164393px;}
.x10{left:487.788161px;}
.x95{left:489.678064px;}
.x4e{left:492.908401px;}
.xb5{left:495.912420px;}
.x3c{left:498.857513px;}
.x68{left:500.201880px;}
.x77{left:501.843322px;}
.xc1{left:503.715799px;}
.xc2{left:510.239985px;}
.xa5{left:511.581431px;}
.x96{left:513.436638px;}
.x69{left:514.780830px;}
.x6f{left:516.895639px;}
.x38{left:518.316108px;}
.x11{left:520.456201px;}
.x26{left:522.046122px;}
.x57{left:526.120013px;}
.xa6{left:529.670527px;}
.x32{left:531.810520px;}
.x90{left:534.273143px;}
.x18{left:536.675149px;}
.x5c{left:541.988910px;}
.x7{left:544.775636px;}
.x51{left:546.653554px;}
.xa1{left:548.284582px;}
.x1f{left:551.249337px;}
.xaf{left:553.114368px;}
.xb6{left:556.629991px;}
.x3d{left:557.983965px;}
.x2f{left:560.069780px;}
.x97{left:561.223771px;}
.x64{left:563.662349px;}
.x4f{left:566.882186px;}
.x8{left:568.534447px;}
.x27{left:572.563091px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs5{font-size:31.680000pt;}
.fs1{font-size:31.680016pt;}
.fs15{font-size:32.640000pt;}
.fs4{font-size:32.640016pt;}
.fs17{font-size:33.600000pt;}
.fs1a{font-size:34.560000pt;}
.fs7{font-size:34.560017pt;}
.fs2{font-size:36.480000pt;}
.fs3{font-size:36.480018pt;}
.fsd{font-size:37.440000pt;}
.fs14{font-size:37.440019pt;}
.fs16{font-size:38.400000pt;}
.fsb{font-size:38.400019pt;}
.fs19{font-size:39.360000pt;}
.fsa{font-size:39.360019pt;}
.fsf{font-size:40.320000pt;}
.fs11{font-size:40.320020pt;}
.fs9{font-size:41.280020pt;}
.fse{font-size:42.240000pt;}
.fs10{font-size:43.200000pt;}
.fs6{font-size:43.200021pt;}
.fs8{font-size:44.160000pt;}
.fs12{font-size:44.160022pt;}
.fs0{font-size:45.120000pt;}
.fsc{font-size:45.120022pt;}
.fs18{font-size:46.080023pt;}
.fs13{font-size:47.040023pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:65.520000pt;}
.y152{bottom:97.703360pt;}
.y151{bottom:98.590507pt;}
.y150{bottom:98.703680pt;}
.y14f{bottom:99.014827pt;}
.y14e{bottom:100.210880pt;}
.y14d{bottom:100.796693pt;}
.y14c{bottom:101.040427pt;}
.y14b{bottom:112.524160pt;}
.y14a{bottom:112.963627pt;}
.y149{bottom:113.462827pt;}
.y148{bottom:113.611093pt;}
.y147{bottom:113.743360pt;}
.y146{bottom:113.912320pt;}
.y145{bottom:114.501760pt;}
.y144{bottom:114.678400pt;}
.y143{bottom:114.853120pt;}
.y142{bottom:115.373440pt;}
.y141{bottom:115.600000pt;}
.y140{bottom:115.680640pt;}
.y13f{bottom:143.947884pt;}
.y13e{bottom:145.361527pt;}
.y13d{bottom:145.502635pt;}
.y13c{bottom:146.401440pt;}
.y13b{bottom:160.392533pt;}
.y13a{bottom:160.553333pt;}
.y139{bottom:161.583067pt;}
.y138{bottom:162.310267pt;}
.y137{bottom:162.850400pt;}
.y136{bottom:163.006400pt;}
.y135{bottom:163.371200pt;}
.y134{bottom:164.161067pt;}
.y133{bottom:176.958240pt;}
.y132{bottom:177.070320pt;}
.y131{bottom:177.444000pt;}
.y130{bottom:177.558480pt;}
.y12f{bottom:178.428960pt;}
.y12e{bottom:179.109600pt;}
.y12d{bottom:179.928120pt;}
.y12c{bottom:180.040440pt;}
.y12b{bottom:180.470280pt;}
.y12a{bottom:180.960960pt;}
.y129{bottom:199.663867pt;}
.y128{bottom:200.523067pt;}
.y127{bottom:200.734267pt;}
.y126{bottom:201.058267pt;}
.y125{bottom:201.360800pt;}
.y124{bottom:214.803200pt;}
.y123{bottom:216.036800pt;}
.y122{bottom:216.300800pt;}
.y121{bottom:216.420800pt;}
.y120{bottom:216.975200pt;}
.y11f{bottom:217.623467pt;}
.y11e{bottom:217.880000pt;}
.y11d{bottom:218.004800pt;}
.y11c{bottom:218.396000pt;}
.y11b{bottom:218.936000pt;}
.y11a{bottom:219.360800pt;}
.y119{bottom:232.493333pt;}
.y118{bottom:233.143733pt;}
.y117{bottom:233.609333pt;}
.y116{bottom:233.904533pt;}
.y115{bottom:234.382400pt;}
.y114{bottom:234.694133pt;}
.y113{bottom:235.490933pt;}
.y112{bottom:236.335867pt;}
.y111{bottom:236.568667pt;}
.y110{bottom:237.121067pt;}
.y10f{bottom:250.289200pt;}
.y10e{bottom:250.450000pt;}
.y10d{bottom:251.261600pt;}
.y10c{bottom:251.839733pt;}
.y10b{bottom:252.434933pt;}
.y10a{bottom:252.924533pt;}
.y109{bottom:253.692667pt;}
.y108{bottom:254.302267pt;}
.y107{bottom:254.641067pt;}
.y106{bottom:267.749467pt;}
.y105{bottom:268.721467pt;}
.y104{bottom:268.879867pt;}
.y103{bottom:270.147067pt;}
.y102{bottom:271.421867pt;}
.y101{bottom:272.160800pt;}
.y100{bottom:284.921333pt;}
.yff{bottom:285.816533pt;}
.yfe{bottom:286.322933pt;}
.yfd{bottom:286.690400pt;}
.yfc{bottom:287.278133pt;}
.yfb{bottom:287.474933pt;}
.yfa{bottom:288.783067pt;}
.yf9{bottom:288.994267pt;}
.yf8{bottom:289.440800pt;}
.yf7{bottom:303.466533pt;}
.yf6{bottom:303.927067pt;}
.yf5{bottom:304.551067pt;}
.yf4{bottom:305.153467pt;}
.yf3{bottom:305.427467pt;}
.yf2{bottom:306.524000pt;}
.yf1{bottom:307.200933pt;}
.yf0{bottom:319.871276pt;}
.yef{bottom:320.338514pt;}
.yee{bottom:320.570812pt;}
.yed{bottom:321.771903pt;}
.yec{bottom:322.386967pt;}
.yeb{bottom:322.532154pt;}
.yea{bottom:323.976249pt;}
.ye9{bottom:324.203269pt;}
.ye8{bottom:324.961173pt;}
.ye7{bottom:338.162160pt;}
.ye6{bottom:339.484080pt;}
.ye5{bottom:340.054200pt;}
.ye4{bottom:340.851240pt;}
.ye3{bottom:341.760720pt;}
.ye2{bottom:355.485880pt;}
.ye1{bottom:355.810120pt;}
.ye0{bottom:356.055493pt;}
.ydf{bottom:356.164787pt;}
.yde{bottom:356.717320pt;}
.ydd{bottom:356.811400pt;}
.ydc{bottom:357.730453pt;}
.ydb{bottom:358.274867pt;}
.yda{bottom:358.412627pt;}
.yd9{bottom:358.560467pt;}
.yd8{bottom:372.674281pt;}
.yd7{bottom:373.878011pt;}
.yd6{bottom:375.050358pt;}
.yd5{bottom:376.082211pt;}
.yd4{bottom:376.679236pt;}
.yd3{bottom:377.521027pt;}
.yd2{bottom:389.640074pt;}
.yd1{bottom:390.508848pt;}
.yd0{bottom:390.645823pt;}
.ycf{bottom:391.504038pt;}
.yce{bottom:392.504360pt;}
.ycd{bottom:392.726100pt;}
.ycc{bottom:393.034952pt;}
.ycb{bottom:393.251412pt;}
.yca{bottom:393.726862pt;}
.yc9{bottom:394.402494pt;}
.yc8{bottom:394.561320pt;}
.yc7{bottom:411.385278pt;}
.yc6{bottom:411.555024pt;}
.yc5{bottom:412.542941pt;}
.yc4{bottom:413.288799pt;}
.yc3{bottom:414.135449pt;}
.yc2{bottom:415.201600pt;}
.yc1{bottom:427.776316pt;}
.yc0{bottom:428.782211pt;}
.ybf{bottom:429.186095pt;}
.ybe{bottom:430.271036pt;}
.ybd{bottom:430.957374pt;}
.ybc{bottom:432.013424pt;}
.ybb{bottom:432.721467pt;}
.yba{bottom:445.964175pt;}
.yb9{bottom:446.666352pt;}
.yb8{bottom:447.799249pt;}
.yb7{bottom:448.601442pt;}
.yb6{bottom:448.831101pt;}
.yb5{bottom:449.652213pt;}
.yb4{bottom:450.241027pt;}
.yb3{bottom:462.286161pt;}
.yb2{bottom:462.932902pt;}
.yb1{bottom:463.257592pt;}
.yb0{bottom:464.205266pt;}
.yaf{bottom:465.229640pt;}
.yae{bottom:465.520013pt;}
.yad{bottom:466.116746pt;}
.yac{bottom:466.824641pt;}
.yab{bottom:467.117215pt;}
.yaa{bottom:467.281320pt;}
.ya9{bottom:483.796842pt;}
.ya8{bottom:484.605033pt;}
.ya7{bottom:486.112051pt;}
.ya6{bottom:486.273585pt;}
.ya5{bottom:487.056818pt;}
.ya4{bottom:487.759284pt;}
.ya3{bottom:488.161387pt;}
.ya2{bottom:500.349864pt;}
.ya1{bottom:500.519290pt;}
.ya0{bottom:501.406256pt;}
.y9f{bottom:502.155474pt;}
.y9e{bottom:503.223545pt;}
.y9d{bottom:503.869091pt;}
.y9c{bottom:505.441600pt;}
.y9b{bottom:517.745395pt;}
.y9a{bottom:519.649076pt;}
.y99{bottom:520.608196pt;}
.y98{bottom:521.342535pt;}
.y97{bottom:521.915607pt;}
.y96{bottom:522.961600pt;}
.y95{bottom:537.818182pt;}
.y94{bottom:537.973689pt;}
.y93{bottom:538.319260pt;}
.y92{bottom:538.728186pt;}
.y91{bottom:539.197587pt;}
.y90{bottom:540.749938pt;}
.y8f{bottom:541.233737pt;}
.y8e{bottom:541.380605pt;}
.y8d{bottom:542.302288pt;}
.y8c{bottom:542.881120pt;}
.y8b{bottom:554.822545pt;}
.y8a{bottom:555.640397pt;}
.y89{bottom:556.273944pt;}
.y88{bottom:556.830058pt;}
.y87{bottom:556.982365pt;}
.y86{bottom:558.073954pt;}
.y85{bottom:559.349848pt;}
.y84{bottom:560.401600pt;}
.y83{bottom:573.829470pt;}
.y82{bottom:574.668620pt;}
.y81{bottom:575.600602pt;}
.y80{bottom:575.772187pt;}
.y7f{bottom:576.345161pt;}
.y7e{bottom:577.007888pt;}
.y7d{bottom:577.187245pt;}
.y7c{bottom:577.681027pt;}
.y7b{bottom:590.093726pt;}
.y7a{bottom:591.363220pt;}
.y79{bottom:592.391294pt;}
.y78{bottom:592.733986pt;}
.y77{bottom:593.494242pt;}
.y76{bottom:594.165706pt;}
.y75{bottom:594.479120pt;}
.y74{bottom:594.657665pt;}
.y73{bottom:595.441440pt;}
.y72{bottom:607.777232pt;}
.y71{bottom:608.800027pt;}
.y70{bottom:609.577722pt;}
.y6f{bottom:610.421492pt;}
.y6e{bottom:610.996964pt;}
.y6d{bottom:612.151907pt;}
.y6c{bottom:612.961600pt;}
.y6b{bottom:624.457102pt;}
.y6a{bottom:624.601090pt;}
.y69{bottom:625.885783pt;}
.y68{bottom:626.954014pt;}
.y67{bottom:628.290702pt;}
.y66{bottom:628.791461pt;}
.y65{bottom:630.001280pt;}
.y64{bottom:641.870760pt;}
.y63{bottom:642.725574pt;}
.y62{bottom:643.280891pt;}
.y61{bottom:644.466573pt;}
.y60{bottom:644.759831pt;}
.y5f{bottom:646.029746pt;}
.y5e{bottom:646.210693pt;}
.y5d{bottom:646.869309pt;}
.y5c{bottom:647.761907pt;}
.y5b{bottom:662.765625pt;}
.y5a{bottom:663.259700pt;}
.y59{bottom:664.003966pt;}
.y58{bottom:664.148859pt;}
.y57{bottom:664.801027pt;}
.y56{bottom:677.735034pt;}
.y55{bottom:678.743422pt;}
.y54{bottom:678.893888pt;}
.y53{bottom:679.361273pt;}
.y52{bottom:679.997455pt;}
.y51{bottom:680.583482pt;}
.y50{bottom:681.090315pt;}
.y4f{bottom:681.758615pt;}
.y4e{bottom:682.801027pt;}
.y4d{bottom:695.022953pt;}
.y4c{bottom:695.152301pt;}
.y4b{bottom:695.601061pt;}
.y4a{bottom:696.496232pt;}
.y49{bottom:697.029317pt;}
.y48{bottom:697.214980pt;}
.y47{bottom:697.660660pt;}
.y46{bottom:698.230848pt;}
.y45{bottom:698.967341pt;}
.y44{bottom:700.081320pt;}
.y43{bottom:712.872533pt;}
.y42{bottom:713.467733pt;}
.y41{bottom:714.319733pt;}
.y40{bottom:714.824133pt;}
.y3f{bottom:715.870533pt;}
.y3e{bottom:716.599867pt;}
.y3d{bottom:717.121067pt;}
.y3c{bottom:730.076223pt;}
.y3b{bottom:731.174510pt;}
.y3a{bottom:731.818612pt;}
.y39{bottom:732.919832pt;}
.y38{bottom:733.993921pt;}
.y37{bottom:734.880880pt;}
.y36{bottom:746.995674pt;}
.y35{bottom:747.861076pt;}
.y34{bottom:748.716358pt;}
.y33{bottom:749.634994pt;}
.y32{bottom:750.403165pt;}
.y31{bottom:750.931117pt;}
.y30{bottom:751.530342pt;}
.y2f{bottom:751.921320pt;}
.y2e{bottom:766.126516pt;}
.y2d{bottom:768.231461pt;}
.y2c{bottom:769.441120pt;}
.y2b{bottom:781.520406pt;}
.y2a{bottom:782.014334pt;}
.y29{bottom:782.932678pt;}
.y28{bottom:783.365598pt;}
.y27{bottom:783.537183pt;}
.y26{bottom:785.055191pt;}
.y25{bottom:785.929099pt;}
.y24{bottom:786.401616pt;}
.y23{bottom:786.721027pt;}
.y22{bottom:799.483521pt;}
.y21{bottom:800.336603pt;}
.y20{bottom:801.537694pt;}
.y1f{bottom:801.687867pt;}
.y1e{bottom:802.907876pt;}
.y1d{bottom:803.424976pt;}
.y1c{bottom:803.987245pt;}
.y1b{bottom:804.481027pt;}
.y1a{bottom:816.862133pt;}
.y19{bottom:817.296533pt;}
.y18{bottom:818.136933pt;}
.y17{bottom:818.417467pt;}
.y16{bottom:819.010267pt;}
.y15{bottom:819.493067pt;}
.y14{bottom:820.659200pt;}
.y13{bottom:821.148800pt;}
.y12{bottom:821.280800pt;}
.y11{bottom:834.347240pt;}
.y10{bottom:834.666651pt;}
.yf{bottom:835.442740pt;}
.ye{bottom:836.171314pt;}
.yd{bottom:836.319141pt;}
.yc{bottom:836.965882pt;}
.yb{bottom:837.963858pt;}
.ya{bottom:838.512928pt;}
.y9{bottom:839.041027pt;}
.y8{bottom:851.537333pt;}
.y7{bottom:851.748533pt;}
.y6{bottom:852.322133pt;}
.y5{bottom:852.862133pt;}
.y4{bottom:852.994133pt;}
.y3{bottom:853.999867pt;}
.y2{bottom:855.031867pt;}
.y1{bottom:856.081067pt;}
.h6{height:24.235200pt;}
.h2{height:24.235212pt;}
.h16{height:24.969600pt;}
.h5{height:24.969612pt;}
.h18{height:25.704000pt;}
.h1b{height:26.438400pt;}
.h8{height:26.438413pt;}
.h3{height:27.907200pt;}
.h4{height:27.907214pt;}
.he{height:28.641600pt;}
.h15{height:28.641614pt;}
.h17{height:29.376000pt;}
.hc{height:29.376014pt;}
.h1a{height:30.110400pt;}
.hb{height:30.110415pt;}
.h10{height:30.844800pt;}
.h12{height:30.844815pt;}
.ha{height:31.579215pt;}
.hf{height:32.313600pt;}
.h11{height:33.048000pt;}
.h7{height:33.048016pt;}
.h9{height:33.782400pt;}
.h13{height:33.782417pt;}
.h1{height:34.516800pt;}
.hd{height:34.516817pt;}
.h19{height:35.251218pt;}
.h14{height:35.985618pt;}
.h0{height:924.000000pt;}
.w1{width:616.000000pt;}
.w0{width:616.320000pt;}
.x0{left:0.000000pt;}
.x91{left:33.280003pt;}
.x9{left:35.906672pt;}
.x12{left:48.399344pt;}
.x2a{left:50.040007pt;}
.x1{left:51.013339pt;}
.xbc{left:53.200003pt;}
.x89{left:56.812828pt;}
.xbd{left:63.279680pt;}
.x20{left:65.184930pt;}
.x70{left:66.824077pt;}
.xa3{left:69.531645pt;}
.x8a{left:76.492356pt;}
.xab{left:78.397880pt;}
.x19{left:80.557312pt;}
.xa{left:83.917125pt;}
.x2b{left:85.584541pt;}
.x33{left:88.010733pt;}
.xa7{left:90.890577pt;}
.x74{left:92.277516pt;}
.x45{left:95.436448pt;}
.x13{left:97.356896pt;}
.xb0{left:98.810205pt;}
.x7a{left:100.236146pt;}
.x58{left:101.435306pt;}
.x52{left:103.101818pt;}
.x93{left:105.035872pt;}
.x21{left:108.142352pt;}
.xa2{left:109.329643pt;}
.xba{left:110.541282pt;}
.x86{left:112.435414pt;}
.xa8{left:114.169413pt;}
.x30{left:116.555166pt;}
.x48{left:119.394244pt;}
.x71{left:120.859538pt;}
.xbb{left:122.300435pt;}
.x61{left:123.753699pt;}
.x7e{left:125.193612pt;}
.x81{left:126.622122pt;}
.x3e{left:130.434319pt;}
.x1a{left:131.674245pt;}
.xb{left:133.834130pt;}
.x28{left:136.712748pt;}
.x2c{left:140.061272pt;}
.x59{left:142.432354pt;}
.xb7{left:151.354232pt;}
.xb2{left:152.329246pt;}
.x8b{left:154.263823pt;}
.x2{left:155.928093pt;}
.x5d{left:157.112718pt;}
.x34{left:160.940419pt;}
.x78{left:163.365648pt;}
.xb3{left:164.808747pt;}
.x6c{left:166.190574pt;}
.x49{left:170.056655pt;}
.xac{left:171.513224pt;}
.x65{left:172.950122pt;}
.x46{left:176.271598pt;}
.x1b{left:178.684757pt;}
.x72{left:181.107810pt;}
.x4a{left:183.975486pt;}
.x6a{left:185.190294pt;}
.x22{left:187.590918pt;}
.x82{left:189.525014pt;}
.x3f{left:191.190674pt;}
.x73{left:193.533433pt;}
.x7b{left:196.243718pt;}
.x5a{left:198.388324pt;}
.x53{left:199.348221pt;}
.xbe{left:200.555287pt;}
.x39{left:204.349913pt;}
.xb1{left:205.844853pt;}
.xa4{left:207.298089pt;}
.x5e{left:209.202926pt;}
.x75{left:210.883733pt;}
.x98{left:213.004471pt;}
.x14{left:213.964399pt;}
.x83{left:217.603329pt;}
.x6d{left:219.986700pt;}
.x47{left:221.188902pt;}
.x92{left:222.885752pt;}
.xc{left:224.562019pt;}
.x62{left:230.079376pt;}
.x9c{left:232.016841pt;}
.x40{left:237.267909pt;}
.x99{left:240.403101pt;}
.x6b{left:246.385888pt;}
.x54{left:247.304768pt;}
.x9d{left:251.695857pt;}
.x3a{left:256.186802pt;}
.x2d{left:257.894202pt;}
.x3{left:259.122933pt;}
.x87{left:260.519861pt;}
.x15{left:262.241985pt;}
.x35{left:265.575187pt;}
.x94{left:270.159297pt;}
.xad{left:274.468076pt;}
.xa9{left:278.334537pt;}
.x4b{left:281.660613pt;}
.xd{left:283.358491pt;}
.x8c{left:285.554005pt;}
.x1c{left:289.598102pt;}
.x41{left:290.544712pt;}
.xb8{left:293.680449pt;}
.xbf{left:295.352253pt;}
.xe{left:296.797685pt;}
.x8d{left:298.993682pt;}
.x9a{left:300.640089pt;}
.x1d{left:303.250616pt;}
.x4c{left:304.218718pt;}
.x5f{left:309.530239pt;}
.x9e{left:310.466252pt;}
.x29{left:312.126784pt;}
.x31{left:314.316633pt;}
.x36{left:316.012665pt;}
.x55{left:317.619705pt;}
.x16{left:321.519021pt;}
.x23{left:325.595971pt;}
.x84{left:328.703330pt;}
.x76{left:330.409894pt;}
.xb4{left:331.375418pt;}
.x63{left:333.738579pt;}
.x7f{left:340.231462pt;}
.x24{left:341.195035pt;}
.x66{left:342.631237pt;}
.x9f{left:347.211081pt;}
.x42{left:348.381242pt;}
.x17{left:349.570951pt;}
.x80{left:354.377110pt;}
.x7c{left:357.274056pt;}
.x4{left:359.691237pt;}
.x3b{left:362.047117pt;}
.xf{left:363.033710pt;}
.x88{left:367.100133pt;}
.xae{left:368.303384pt;}
.x6e{left:371.429129pt;}
.x5{left:372.890577pt;}
.x5b{left:375.975537pt;}
.x8e{left:377.925121pt;}
.x50{left:378.855313pt;}
.x25{left:380.552673pt;}
.x56{left:382.428371pt;}
.x60{left:385.818995pt;}
.xaa{left:386.809113pt;}
.x43{left:390.872025pt;}
.xc0{left:392.815801pt;}
.x7d{left:393.991853pt;}
.x4d{left:395.424389pt;}
.xb9{left:396.648633pt;}
.xa0{left:397.848549pt;}
.x37{left:401.208405pt;}
.x44{left:404.551205pt;}
.x85{left:406.725315pt;}
.x9b{left:409.087999pt;}
.x1e{left:412.444064pt;}
.x67{left:415.825967pt;}
.x2e{left:419.164525pt;}
.x79{left:424.003342pt;}
.x6{left:426.887877pt;}
.x8f{left:428.590572pt;}
.x10{left:433.589477pt;}
.x95{left:435.269390pt;}
.x4e{left:438.140801pt;}
.xb5{left:440.811040pt;}
.x3c{left:443.428901pt;}
.x68{left:444.623893pt;}
.x77{left:446.082953pt;}
.xc1{left:447.747377pt;}
.xc2{left:453.546653pt;}
.xa5{left:454.739050pt;}
.x96{left:456.388123pt;}
.x69{left:457.582960pt;}
.x6f{left:459.462790pt;}
.x38{left:460.725429pt;}
.x11{left:462.627734pt;}
.x26{left:464.040997pt;}
.x57{left:467.662234pt;}
.xa6{left:470.818246pt;}
.x32{left:472.720462pt;}
.x90{left:474.909460pt;}
.x18{left:477.044577pt;}
.x5c{left:481.767920pt;}
.x7{left:484.245009pt;}
.x51{left:485.914271pt;}
.xa1{left:487.364073pt;}
.x1f{left:489.999411pt;}
.xaf{left:491.657216pt;}
.xb6{left:494.782214pt;}
.x3d{left:495.985747pt;}
.x2f{left:497.839804pt;}
.x97{left:498.865574pt;}
.x64{left:501.033199pt;}
.x4f{left:503.895277pt;}
.x8{left:505.363953pt;}
.x27{left:508.944969pt;}
}

